Tornado cash. Non-custodial private transactions on Ethereum.
Go to file
2019-07-13 01:38:33 +03:00
circuits Snark test 2019-07-12 19:35:15 +03:00
contracts final test 2019-07-13 00:50:26 +03:00
lib merkle tree tidy 2019-07-12 13:24:59 +03:00
migrations fix small bug 2019-07-13 01:26:27 +03:00
scripts final test 2019-07-13 00:50:26 +03:00
test final test 2019-07-13 00:50:26 +03:00
.editorconfig Move contracts to repository root 2019-07-12 12:53:44 +03:00
.env.example mixer deploy WIP 2019-07-12 18:04:45 +03:00
.gitattributes add dummy test 2019-07-10 19:58:21 +03:00
.gitignore tests 2019-07-12 22:11:37 +03:00
package-lock.json bump Verifier solidity version 2019-07-12 19:58:02 +03:00
package.json update readme 2019-07-13 00:56:17 +03:00
README.md readme 2019-07-13 01:38:25 +03:00
truffle-config.js mixer deploy WIP 2019-07-12 18:04:45 +03:00

Testing truffle

  1. npm i
  2. npm run build:circuit
  3. npx truffle compile
  4. npx truffle test - it may fail for the first time, just run one more time.

Testing js

  1. npm i
  2. npm run build:circuit
  3. cd scripts
  4. node test_snark.js

Deploy

  1. npx truffle migrate --network kovan --reset

Requirements

  1. node v11.15.0
  2. npm install -g npx

Specs:

  • Deposit gas cost: deposit 903472
  • Withdraw gas cost: 727821
  • Circuit constraints: 22617
  • Circuit proving time: 8965ms
  • Serverless, executed entirely in the browser

Security risks:

  • Cryptographic tools used by mixer (zkSNARKS, Pedersen commitment, MiMC hash) are not yet extensively audited by cryptographic experts and may be vulnerable
    • Note: we use MiMC hash only for merkle tree, so even if a preimage attack on MiMC is discovered, it will not allow to deanonymize users or drain mixer funds
  • Relayer is frontrunnable. When relayer submits a transaction someone can see it in tx pool and frontrun it with higher gas price to get the fee and drain relayer funds.
    • Workaround: we can set high gas price so that (almost) all fee is used on gas. The relayer will not receive profit this way, but this approach is acceptable until we develop more sophisticated system that prevents frontrunning
  • Bugs in contract. Even though we have an extensive experience in smart contract security audits, we can still make mistakes. An external audit is needed to reduce probablility of bugs