24 lines
654 B
Markdown
24 lines
654 B
Markdown
|
# Offline Tornado Cash Note Generation Tool
|
||
|
|
||
|
This tool allows you to create Tornado Cash deposit transaction data offline (So your note data is never exposed to online!)
|
||
|
|
||
|
### How to use?
|
||
|
|
||
|
```bash
|
||
|
# This will install all the necessary libraries
|
||
|
yarn
|
||
|
|
||
|
node ./tornadoNote.js <CHAIN_ID> <CURRENCY> <AMOUNT>
|
||
|
|
||
|
node ./tornadoNote.js --help
|
||
|
|
||
|
node ./tornadoNote.js 1 eth 0.1
|
||
|
|
||
|
node ./tornadoNote.js 1 dai 10000
|
||
|
|
||
|
node ./tornadoNote.js 56 bnb 100
|
||
|
```
|
||
|
|
||
|
Will also create backup similar with how Tornado UI or tornado-cli generates it
|
||
|
|
||
|
Use Transaction Data to submit ethereum transaction on https://myetherwallet.com, https://mycrypto.com, or https://remix.ethereum.org
|