설명 없음

poma 51b06ed661 test cli in travis 5 년 전
circuits 1498c3a739 split extra constraints back to 2 5 년 전
contracts 7997fe2582 fix bugs (public verifier) 5 년 전
lib 754172a5a4 fix a bug 5 년 전
migrations e1e989986f skip migrations 5 년 전
test 9b4d3bc34e operator role 5 년 전
.editorconfig b5b3474165 Move contracts to repository root 5 년 전
.env.example 8d50fe1992 remove PAUSEACCOUNT from .env 5 년 전
.eslintrc.json b0c896c681 styling final 5 년 전
.gitattributes 641c76fa39 add dummy test 5 년 전
.gitignore d91435dd00 add pauseDeposits 5 년 전
.nvmrc e8fa073caf fix tests 5 년 전
.solhint.json d91435dd00 add pauseDeposits 5 년 전
.travis.yml 51b06ed661 test cli in travis 5 년 전
LICENSE 21a9545b54 Create LICENSE 5 년 전
README.md 787d1cc5d0 Update README.md 5 년 전
cli.js 11b3c98ea2 fix splitting note in cli 5 년 전
index.html 1e8a16f759 readme 5 년 전
mixer.png 1e8a16f759 readme 5 년 전
package-lock.json 67ebbfbcb4 update snarkjs version 5 년 전
package.json 7997fe2582 fix bugs (public verifier) 5 년 전
truffle-config.js 7997fe2582 fix bugs (public verifier) 5 년 전

README.md

Tornado mixer Build Status

mixer image

Specs

  • Deposit gas cost: deposit 888054
  • Withdraw gas cost: 692133
  • Circuit constraints: 22617
  • Circuit proving time: 6116ms
  • Serverless

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. To drain funds attacker needs to be able to generate arbitrary hash collisions, which is a pretty strong assumption.
  • 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
  • Nullifier griefing. when you submit a withdraw transaction you reveal the nullifier for your note. If someone manages to make a deposit with the same nullifier and withdraw it while your transaction is still in tx pool, your note will be considered spent since it has the same nullifier and it will prevent you from withdrawing your funds
    • Fixed by sending nullifier hash instead of plain nullifier

Requirements

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

Usage

  1. npm i
  2. cp .env.example .env
  3. npm run build:circuit - may take 10 minutes or more
  4. npm run build:contract
  5. npm run browserify
  6. npx ganache-cli
  7. npm run test - optionally run tests. It may fail for the first time, just run one more time.
  8. npm run migrate:dev
  9. ./cli.js deposit
  10. ./cli.js withdraw <note from previous step> <destination eth address>
  11. ./cli.js balance <destination eth address>
  12. vi .env - add your Kovan private key to deploy contracts
  13. npm run migrate
  14. npx http-server - serve current dir, you can use any other http server
  15. Open localhost:8080

Credits

Special thanks to @barryWhiteHat and @kobigurk for valuable input, and to @jbaylina for awesome Circom & Websnark framework