tornado-core/src/cli.js

641 lines
24 KiB
JavaScript
Raw Normal View History

2020-04-17 20:54:27 +02:00
#!/usr/bin/env node
2019-07-17 13:12:57 +02:00
// Temporary demo client
2019-07-18 20:41:18 +02:00
// Works both in browser and node.js
2020-02-27 14:32:10 +01:00
2020-02-27 08:46:43 +01:00
require('dotenv').config()
2019-07-16 19:20:16 +02:00
const fs = require('fs')
2019-11-10 01:48:09 +01:00
const axios = require('axios')
2019-07-16 19:20:16 +02:00
const assert = require('assert')
const snarkjs = require('snarkjs')
2019-07-18 20:27:51 +02:00
const crypto = require('crypto')
const circomlib = require('circomlib')
2019-07-16 19:20:16 +02:00
const bigInt = snarkjs.bigInt
2020-07-31 19:38:50 +02:00
const merkleTree = require('fixed-merkle-tree')
2019-07-16 19:20:16 +02:00
const Web3 = require('web3')
const buildGroth16 = require('websnark/src/groth16')
const websnarkUtils = require('websnark/src/utils')
2020-02-26 14:57:53 +01:00
const { toWei, fromWei, toBN, BN } = require('web3-utils')
2020-02-25 09:04:13 +01:00
const config = require('./config')
2020-02-26 14:57:53 +01:00
const program = require('commander')
2019-07-16 19:20:16 +02:00
2020-02-26 14:57:53 +01:00
let web3, tornado, circuit, proving_key, groth16, erc20, senderAccount, netId
let MERKLE_TREE_HEIGHT, ETH_AMOUNT, TOKEN_AMOUNT, PRIVATE_KEY
2019-11-10 01:48:09 +01:00
/** Whether we are in a browser or node.js */
2019-07-16 19:20:16 +02:00
const inBrowser = (typeof window !== 'undefined')
2020-02-26 14:57:53 +01:00
let isLocalRPC = false
2019-07-13 16:45:08 +02:00
/** Generate random number of specified byte length */
2019-11-10 01:48:09 +01:00
const rbigint = nbytes => snarkjs.bigInt.leBuff2int(crypto.randomBytes(nbytes))
/** Compute pedersen hash */
2019-11-10 01:48:09 +01:00
const pedersenHash = data => circomlib.babyJub.unpackPoint(circomlib.pedersenHash.hash(data))[0]
/** BigNumber to hex string of specified length */
function toHex(number, length = 32) {
2020-02-25 09:04:13 +01:00
const str = number instanceof Buffer ? number.toString('hex') : bigInt(number).toString(16)
2019-11-10 01:48:09 +01:00
return '0x' + str.padStart(length * 2, '0')
}
2020-02-26 14:57:53 +01:00
/** Display ETH account balance */
async function printETHBalance({ address, name }) {
console.log(`${name} ETH balance is`, web3.utils.fromWei(await web3.eth.getBalance(address)))
}
/** Display ERC20 account balance */
async function printERC20Balance({ address, name, tokenAddress }) {
2021-10-29 19:58:55 +02:00
const erc20ContractJson = require(__dirname + '/../build/contracts/ERC20Mock.json')
2020-02-26 14:57:53 +01:00
erc20 = tokenAddress ? new web3.eth.Contract(erc20ContractJson.abi, tokenAddress) : erc20
console.log(`${name} Token Balance is`, web3.utils.fromWei(await erc20.methods.balanceOf(address).call()))
2019-11-10 01:48:09 +01:00
}
2019-07-18 20:27:51 +02:00
/**
* Create deposit object from secret and nullifier
*/
2020-02-26 14:57:53 +01:00
function createDeposit({ nullifier, secret }) {
2020-02-25 09:04:13 +01:00
const deposit = { nullifier, secret }
2019-08-01 16:49:34 +02:00
deposit.preimage = Buffer.concat([deposit.nullifier.leInt2Buff(31), deposit.secret.leInt2Buff(31)])
2019-07-18 20:27:51 +02:00
deposit.commitment = pedersenHash(deposit.preimage)
2020-05-14 15:40:31 +02:00
deposit.commitmentHex = toHex(deposit.commitment)
2019-11-10 01:48:09 +01:00
deposit.nullifierHash = pedersenHash(deposit.nullifier.leInt2Buff(31))
2020-05-14 15:40:31 +02:00
deposit.nullifierHex = toHex(deposit.nullifierHash)
2019-07-16 19:20:16 +02:00
return deposit
2019-07-13 16:45:08 +02:00
}
2019-07-13 13:57:49 +02:00
/**
2020-02-26 14:57:53 +01:00
* Make a deposit
* @param currency Сurrency
* @param amount Deposit amount
*/
2020-02-26 14:57:53 +01:00
async function deposit({ currency, amount }) {
const deposit = createDeposit({ nullifier: rbigint(31), secret: rbigint(31) })
2019-11-10 01:48:09 +01:00
const note = toHex(deposit.preimage, 62)
2020-02-26 14:57:53 +01:00
const noteString = `tornado-${currency}-${amount}-${netId}-${note}`
console.log(`Your note: ${noteString}`)
if (currency === 'eth') {
await printETHBalance({ address: tornado._address, name: 'Tornado' })
await printETHBalance({ address: senderAccount, name: 'Sender account' })
const value = isLocalRPC ? ETH_AMOUNT : fromDecimals({ amount, decimals: 18 })
console.log('Submitting deposit transaction')
2020-05-22 11:24:53 +02:00
await tornado.methods.deposit(toHex(deposit.commitment)).send({ value, from: senderAccount, gas: 2e6 })
2020-02-26 14:57:53 +01:00
await printETHBalance({ address: tornado._address, name: 'Tornado' })
await printETHBalance({ address: senderAccount, name: 'Sender account' })
2020-02-27 08:46:43 +01:00
} else { // a token
2020-02-26 14:57:53 +01:00
await printERC20Balance({ address: tornado._address, name: 'Tornado' })
await printERC20Balance({ address: senderAccount, name: 'Sender account' })
const decimals = isLocalRPC ? 18 : config.deployments[`netId${netId}`][currency].decimals
const tokenAmount = isLocalRPC ? TOKEN_AMOUNT : fromDecimals({ amount, decimals })
2020-05-22 11:24:53 +02:00
if (isLocalRPC) {
2020-02-26 14:57:53 +01:00
console.log('Minting some test tokens to deposit')
await erc20.methods.mint(senderAccount, tokenAmount).send({ from: senderAccount, gas: 2e6 })
}
2019-07-13 13:57:49 +02:00
2020-02-26 14:57:53 +01:00
const allowance = await erc20.methods.allowance(senderAccount, tornado._address).call({ from: senderAccount })
console.log('Current allowance is', fromWei(allowance))
if (toBN(allowance).lt(toBN(tokenAmount))) {
console.log('Approving tokens for deposit')
2020-05-22 11:24:53 +02:00
await erc20.methods.approve(tornado._address, tokenAmount).send({ from: senderAccount, gas: 1e6 })
2020-02-26 14:57:53 +01:00
}
2019-09-14 03:05:08 +02:00
2020-02-26 14:57:53 +01:00
console.log('Submitting deposit transaction')
2020-05-22 11:24:53 +02:00
await tornado.methods.deposit(toHex(deposit.commitment)).send({ from: senderAccount, gas: 2e6 })
2020-02-26 14:57:53 +01:00
await printERC20Balance({ address: tornado._address, name: 'Tornado' })
await printERC20Balance({ address: senderAccount, name: 'Sender account' })
2019-09-14 03:05:08 +02:00
}
2020-02-26 14:57:53 +01:00
return noteString
2019-11-04 20:42:41 +01:00
}
2019-11-10 01:48:09 +01:00
/**
* Generate merkle tree for a deposit.
2020-02-26 14:57:53 +01:00
* Download deposit events from the tornado, reconstructs merkle tree, finds our deposit leaf
2019-11-10 01:48:09 +01:00
* in it and generates merkle proof
* @param deposit Deposit object
*/
2020-02-26 14:57:53 +01:00
async function generateMerkleProof(deposit) {
// Get all deposit events from smart contract and assemble merkle tree from them
2019-12-13 14:49:19 +01:00
console.log('Getting current state from tornado contract')
2020-02-26 14:57:53 +01:00
const events = await tornado.getPastEvents('Deposit', { fromBlock: 0, toBlock: 'latest' })
2019-07-24 18:57:51 +02:00
const leaves = events
.sort((a, b) => a.returnValues.leafIndex - b.returnValues.leafIndex) // Sort events in chronological order
.map(e => e.returnValues.commitment)
2019-11-02 13:35:22 +01:00
const tree = new merkleTree(MERKLE_TREE_HEIGHT, leaves)
2019-07-13 13:57:49 +02:00
// Find current commitment in the tree
2020-02-25 09:04:13 +01:00
const depositEvent = events.find(e => e.returnValues.commitment === toHex(deposit.commitment))
const leafIndex = depositEvent ? depositEvent.returnValues.leafIndex : -1
// Validate that our data is correct
2020-07-31 19:38:50 +02:00
const root = tree.root()
2020-05-14 11:52:47 +02:00
const isValidRoot = await tornado.methods.isKnownRoot(toHex(root)).call()
2020-02-26 14:57:53 +01:00
const isSpent = await tornado.methods.isSpent(toHex(deposit.nullifierHash)).call()
2019-11-10 01:48:09 +01:00
assert(isValidRoot === true, 'Merkle tree is corrupted')
assert(isSpent === false, 'The note is already spent')
assert(leafIndex >= 0, 'The deposit is not found in the tree')
// Compute merkle proof of our commitment
2020-08-01 04:28:14 +02:00
const { pathElements, pathIndices } = tree.path(leafIndex)
return { pathElements, pathIndices, root: tree.root() }
2019-11-10 01:48:09 +01:00
}
/**
* Generate SNARK proof for withdrawal
2020-02-27 08:46:43 +01:00
* @param deposit Deposit object
2019-11-10 01:48:09 +01:00
* @param recipient Funds recipient
* @param relayer Relayer address
* @param fee Relayer fee
* @param refund Receive ether for exchanged tokens
*/
2020-02-26 14:57:53 +01:00
async function generateProof({ deposit, recipient, relayerAddress = 0, fee = 0, refund = 0 }) {
// Compute merkle proof of our commitment
2020-07-31 19:38:50 +02:00
const { root, pathElements, pathIndices } = await generateMerkleProof(deposit)
// Prepare circuit input
2019-07-13 13:57:49 +02:00
const input = {
// Public snark inputs
2019-07-13 13:57:49 +02:00
root: root,
2020-02-26 14:57:53 +01:00
nullifierHash: deposit.nullifierHash,
2019-11-07 08:04:29 +01:00
recipient: bigInt(recipient),
2020-02-26 14:57:53 +01:00
relayer: bigInt(relayerAddress),
2019-11-10 01:48:09 +01:00
fee: bigInt(fee),
refund: bigInt(refund),
2019-07-13 13:57:49 +02:00
// Private snark inputs
2020-02-26 14:57:53 +01:00
nullifier: deposit.nullifier,
secret: deposit.secret,
2020-07-31 19:38:50 +02:00
pathElements: pathElements,
pathIndices: pathIndices,
2019-07-16 19:20:16 +02:00
}
2019-07-13 13:57:49 +02:00
2019-07-16 19:20:16 +02:00
console.log('Generating SNARK proof')
2019-07-17 13:12:57 +02:00
console.time('Proof time')
2019-10-04 17:20:20 +02:00
const proofData = await websnarkUtils.genWitnessAndProve(groth16, input, circuit, proving_key)
2019-11-04 20:42:41 +01:00
const { proof } = websnarkUtils.toSolidityInput(proofData)
2019-07-17 13:12:57 +02:00
console.timeEnd('Proof time')
2019-07-13 13:57:49 +02:00
2019-11-04 20:42:41 +01:00
const args = [
toHex(input.root),
toHex(input.nullifierHash),
2019-11-07 08:04:29 +01:00
toHex(input.recipient, 20),
2019-11-04 20:42:41 +01:00
toHex(input.relayer, 20),
toHex(input.fee),
2021-02-11 07:23:18 +01:00
toHex(input.refund),
2019-11-04 20:42:41 +01:00
]
2019-11-10 01:48:09 +01:00
return { proof, args }
}
/**
* Do an ETH withdrawal
2020-02-25 09:04:13 +01:00
* @param noteString Note to withdraw
2019-11-10 01:48:09 +01:00
* @param recipient Recipient address
*/
2020-02-26 14:57:53 +01:00
async function withdraw({ deposit, currency, amount, recipient, relayerURL, refund = '0' }) {
if (currency === 'eth' && refund !== '0') {
throw new Error('The ETH purchase is supposted to be 0 for ETH withdrawals')
}
refund = toWei(refund)
if (relayerURL) {
2020-05-22 11:24:53 +02:00
if (relayerURL.endsWith('.eth')) {
2020-05-14 11:52:47 +02:00
throw new Error('ENS name resolving is not supported. Please provide DNS name of the relayer. See instuctions in README.md')
}
2020-02-26 14:57:53 +01:00
const relayerStatus = await axios.get(relayerURL + '/status')
const { relayerAddress, netId, gasPrices, ethPrices, relayerServiceFee } = relayerStatus.data
assert(netId === await web3.eth.net.getId() || netId === '*', 'This relay is for different network')
console.log('Relay address: ', relayerAddress)
const decimals = isLocalRPC ? 18 : config.deployments[`netId${netId}`][currency].decimals
const fee = calculateFee({ gasPrices, currency, amount, refund, ethPrices, relayerServiceFee, decimals })
if (fee.gt(fromDecimals({ amount, decimals }))) {
throw new Error('Too high refund')
}
const { proof, args } = await generateProof({ deposit, recipient, relayerAddress, fee, refund })
2019-11-10 01:48:09 +01:00
2020-02-26 14:57:53 +01:00
console.log('Sending withdraw transaction through relay')
2020-05-22 11:24:53 +02:00
try {
2020-02-26 14:57:53 +01:00
const relay = await axios.post(relayerURL + '/relay', { contract: tornado._address, proof, args })
if (netId === 1 || netId === 42) {
2020-05-22 11:24:53 +02:00
console.log(`Transaction submitted through the relay. View transaction on etherscan https://${getCurrentNetworkName()}etherscan.io/tx/${relay.data.txHash}`)
2020-02-26 14:57:53 +01:00
} else {
console.log(`Transaction submitted through the relay. The transaction hash is ${relay.data.txHash}`)
}
2019-07-13 13:57:49 +02:00
2020-02-26 14:57:53 +01:00
const receipt = await waitForTxReceipt({ txHash: relay.data.txHash })
console.log('Transaction mined in block', receipt.blockNumber)
2020-05-22 11:24:53 +02:00
} catch (e) {
2020-02-26 14:57:53 +01:00
if (e.response) {
console.error(e.response.data.error)
} else {
console.error(e.message)
}
}
2020-02-27 08:46:43 +01:00
} else { // using private key
2020-02-26 14:57:53 +01:00
const { proof, args } = await generateProof({ deposit, recipient, refund })
2019-11-10 01:48:09 +01:00
2020-02-26 14:57:53 +01:00
console.log('Submitting withdraw transaction')
await tornado.methods.withdraw(proof, ...args).send({ from: senderAccount, value: refund.toString(), gas: 1e6 })
2020-05-22 11:24:53 +02:00
.on('transactionHash', function (txHash) {
2020-02-26 14:57:53 +01:00
if (netId === 1 || netId === 42) {
2020-05-22 11:24:53 +02:00
console.log(`View transaction on etherscan https://${getCurrentNetworkName()}etherscan.io/tx/${txHash}`)
2020-02-26 14:57:53 +01:00
} else {
console.log(`The transaction hash is ${txHash}`)
}
2020-05-22 11:24:53 +02:00
}).on('error', function (e) {
2020-02-26 14:57:53 +01:00
console.error('on transactionHash error', e.message)
})
}
2019-11-10 01:48:09 +01:00
console.log('Done')
}
2020-02-26 14:57:53 +01:00
function fromDecimals({ amount, decimals }) {
amount = amount.toString()
let ether = amount.toString()
const base = new BN('10').pow(new BN(decimals))
const baseLength = base.toString(10).length - 1 || 1
const negative = ether.substring(0, 1) === '-'
if (negative) {
ether = ether.substring(1)
}
if (ether === '.') {
throw new Error('[ethjs-unit] while converting number ' + amount + ' to wei, invalid value')
}
// Split it into a whole and fractional part
const comps = ether.split('.')
if (comps.length > 2) {
throw new Error(
2021-02-11 07:23:18 +01:00
'[ethjs-unit] while converting number ' + amount + ' to wei, too many decimal points',
2020-02-26 14:57:53 +01:00
)
}
let whole = comps[0]
let fraction = comps[1]
if (!whole) {
whole = '0'
}
if (!fraction) {
fraction = '0'
}
if (fraction.length > baseLength) {
throw new Error(
2021-02-11 07:23:18 +01:00
'[ethjs-unit] while converting number ' + amount + ' to wei, too many decimal places',
2020-02-26 14:57:53 +01:00
)
}
while (fraction.length < baseLength) {
fraction += '0'
}
whole = new BN(whole)
fraction = new BN(fraction)
let wei = whole.mul(base).add(fraction)
if (negative) {
wei = wei.mul(negative)
}
return new BN(wei.toString(10), 10)
2019-11-10 01:48:09 +01:00
}
2020-05-15 12:59:38 +02:00
function toDecimals(value, decimals, fixed) {
const zero = new BN(0)
const negative1 = new BN(-1)
decimals = decimals || 18
fixed = fixed || 7
value = new BN(value)
const negative = value.lt(zero)
const base = new BN('10').pow(new BN(decimals))
const baseLength = base.toString(10).length - 1 || 1
if (negative) {
value = value.mul(negative1)
}
let fraction = value.mod(base).toString(10)
while (fraction.length < baseLength) {
fraction = `0${fraction}`
}
fraction = fraction.match(/^([0-9]*[1-9]|0)(0*)/)[1]
const whole = value.div(base).toString(10)
value = `${whole}${fraction === '0' ? '' : `.${fraction}`}`
if (negative) {
value = `-${value}`
}
if (fixed) {
value = value.slice(0, fixed)
}
return value
}
function getCurrentNetworkName() {
2020-05-22 11:24:53 +02:00
switch (netId) {
2020-05-15 12:59:38 +02:00
case 1:
return ''
case 42:
return 'kovan.'
}
}
2020-02-26 14:57:53 +01:00
function calculateFee({ gasPrices, currency, amount, refund, ethPrices, relayerServiceFee, decimals }) {
2020-05-22 11:24:53 +02:00
const decimalsPoint = Math.floor(relayerServiceFee) === Number(relayerServiceFee) ?
0 :
relayerServiceFee.toString().split('.')[1].length
const roundDecimal = 10 ** decimalsPoint
const total = toBN(fromDecimals({ amount, decimals }))
const feePercent = total.mul(toBN(relayerServiceFee * roundDecimal)).div(toBN(roundDecimal * 100))
2020-02-26 14:57:53 +01:00
const expense = toBN(toWei(gasPrices.fast.toString(), 'gwei')).mul(toBN(5e5))
let desiredFee
switch (currency) {
case 'eth': {
desiredFee = expense.add(feePercent)
break
}
default: {
2020-05-22 11:24:53 +02:00
desiredFee = expense.add(toBN(refund))
.mul(toBN(10 ** decimals))
.div(toBN(ethPrices[currency]))
2020-02-26 14:57:53 +01:00
desiredFee = desiredFee.add(feePercent)
break
}
}
return desiredFee
2019-11-10 01:48:09 +01:00
}
/**
* Waits for transaction to be mined
* @param txHash Hash of transaction
* @param attempts
* @param delay
*/
2020-02-26 14:57:53 +01:00
function waitForTxReceipt({ txHash, attempts = 60, delay = 1000 }) {
2019-11-10 01:48:09 +01:00
return new Promise((resolve, reject) => {
const checkForTx = async (txHash, retryAttempt = 0) => {
const result = await web3.eth.getTransactionReceipt(txHash)
if (!result || !result.blockNumber) {
if (retryAttempt <= attempts) {
setTimeout(() => checkForTx(txHash, retryAttempt + 1), delay)
} else {
reject(new Error('tx was not mined'))
}
} else {
resolve(result)
}
}
checkForTx(txHash)
})
}
2020-02-26 14:57:53 +01:00
/**
* Parses Tornado.cash note
* @param noteString the note
*/
2020-02-25 09:04:13 +01:00
function parseNote(noteString) {
const noteRegex = /tornado-(?<currency>\w+)-(?<amount>[\d.]+)-(?<netId>\d+)-0x(?<note>[0-9a-fA-F]{124})/g
const match = noteRegex.exec(noteString)
if (!match) {
throw new Error('The note has invalid format')
}
const buf = Buffer.from(match.groups.note, 'hex')
const nullifier = bigInt.leBuff2int(buf.slice(0, 31))
const secret = bigInt.leBuff2int(buf.slice(31, 62))
2020-02-26 14:57:53 +01:00
const deposit = createDeposit({ nullifier, secret })
2020-02-25 09:04:13 +01:00
const netId = Number(match.groups.netId)
2020-02-26 14:57:53 +01:00
return { currency: match.groups.currency, amount: match.groups.amount, netId, deposit }
2020-02-25 09:04:13 +01:00
}
2020-05-14 15:40:31 +02:00
async function loadDepositData({ deposit }) {
try {
const eventWhenHappened = await tornado.getPastEvents('Deposit', {
filter: {
2021-02-11 07:23:18 +01:00
commitment: deposit.commitmentHex,
2020-05-14 15:40:31 +02:00
},
fromBlock: 0,
2021-02-11 07:23:18 +01:00
toBlock: 'latest',
2020-05-14 15:40:31 +02:00
})
if (eventWhenHappened.length === 0) {
throw new Error('There is no related deposit, the note is invalid')
}
const { timestamp } = eventWhenHappened[0].returnValues
const txHash = eventWhenHappened[0].transactionHash
const isSpent = await tornado.methods.isSpent(deposit.nullifierHex).call()
const receipt = await web3.eth.getTransactionReceipt(txHash)
return { timestamp, txHash, isSpent, from: receipt.from, commitment: deposit.commitmentHex }
} catch (e) {
console.error('loadDepositData', e)
}
return {}
}
2020-05-15 12:59:38 +02:00
async function loadWithdrawalData({ amount, currency, deposit }) {
try {
2020-08-01 04:28:14 +02:00
const events = await tornado.getPastEvents('Withdrawal', {
2020-05-15 12:59:38 +02:00
fromBlock: 0,
2021-02-11 07:23:18 +01:00
toBlock: 'latest',
2020-05-15 12:59:38 +02:00
})
const withdrawEvent = events.filter((event) => {
return event.returnValues.nullifierHash === deposit.nullifierHex
})[0]
const fee = withdrawEvent.returnValues.fee
const decimals = config.deployments[`netId${netId}`][currency].decimals
const withdrawalAmount = toBN(fromDecimals({ amount, decimals })).sub(
2021-02-11 07:23:18 +01:00
toBN(fee),
2020-05-15 12:59:38 +02:00
)
const { timestamp } = await web3.eth.getBlock(withdrawEvent.blockHash)
return {
amount: toDecimals(withdrawalAmount, decimals, 9),
txHash: withdrawEvent.transactionHash,
to: withdrawEvent.returnValues.to,
timestamp,
nullifier: deposit.nullifierHex,
2021-02-11 07:23:18 +01:00
fee: toDecimals(fee, decimals, 9),
2020-05-15 12:59:38 +02:00
}
} catch (e) {
console.error('loadWithdrawalData', e)
}
}
2020-05-14 15:40:31 +02:00
/**
* Init web3, contracts, and snark
*/
2020-02-26 14:57:53 +01:00
async function init({ rpc, noteNetId, currency = 'dai', amount = '100' }) {
let contractJson, erc20ContractJson, erc20tornadoJson, tornadoAddress, tokenAddress
// TODO do we need this? should it work in browser really?
2019-07-15 18:23:03 +02:00
if (inBrowser) {
// Initialize using injected web3 (Metamask)
// To assemble web version run `npm run browserify`
2020-02-27 14:32:10 +01:00
web3 = new Web3(window.web3.currentProvider, null, { transactionConfirmationBlocks: 1 })
contractJson = await (await fetch('build/contracts/ETHTornado.json')).json()
circuit = await (await fetch('build/circuits/withdraw.json')).json()
proving_key = await (await fetch('build/circuits/withdraw_proving_key.bin')).arrayBuffer()
MERKLE_TREE_HEIGHT = 20
ETH_AMOUNT = 1e18
TOKEN_AMOUNT = 1e19
senderAccount = (await web3.eth.getAccounts())[0]
2019-07-15 18:23:03 +02:00
} else {
// Initialize from local node
2020-02-26 14:57:53 +01:00
web3 = new Web3(rpc, null, { transactionConfirmationBlocks: 1 })
2020-08-01 04:28:14 +02:00
contractJson = require(__dirname + '/../build/contracts/ETHTornado.json')
circuit = require(__dirname + '/../build/circuits/withdraw.json')
proving_key = fs.readFileSync(__dirname + '/../build/circuits/withdraw_proving_key.bin').buffer
2020-05-14 11:52:47 +02:00
MERKLE_TREE_HEIGHT = process.env.MERKLE_TREE_HEIGHT || 20
2019-08-27 22:42:24 +02:00
ETH_AMOUNT = process.env.ETH_AMOUNT
2019-11-10 01:48:09 +01:00
TOKEN_AMOUNT = process.env.TOKEN_AMOUNT
2020-02-26 14:57:53 +01:00
PRIVATE_KEY = process.env.PRIVATE_KEY
2020-05-14 11:52:47 +02:00
if (PRIVATE_KEY) {
const account = web3.eth.accounts.privateKeyToAccount('0x' + PRIVATE_KEY)
web3.eth.accounts.wallet.add('0x' + PRIVATE_KEY)
web3.eth.defaultAccount = account.address
senderAccount = account.address
} else {
console.log('Warning! PRIVATE_KEY not found. Please provide PRIVATE_KEY in .env file if you deposit')
}
2020-08-01 04:28:14 +02:00
erc20ContractJson = require(__dirname + '/../build/contracts/ERC20Mock.json')
erc20tornadoJson = require(__dirname + '/../build/contracts/ERC20Tornado.json')
2019-07-15 18:23:03 +02:00
}
2020-02-27 08:46:43 +01:00
// groth16 initialises a lot of Promises that will never be resolved, that's why we need to use process.exit to terminate the CLI
2019-07-16 19:20:16 +02:00
groth16 = await buildGroth16()
2020-02-26 14:57:53 +01:00
netId = await web3.eth.net.getId()
if (noteNetId && Number(noteNetId) !== netId) {
throw new Error('This note is for a different network. Specify the --rpc option explicitly')
2019-09-14 20:21:53 +02:00
}
2020-02-26 14:57:53 +01:00
isLocalRPC = netId > 42
2019-09-14 03:05:08 +02:00
2020-02-26 14:57:53 +01:00
if (isLocalRPC) {
tornadoAddress = currency === 'eth' ? contractJson.networks[netId].address : erc20tornadoJson.networks[netId].address
tokenAddress = currency !== 'eth' ? erc20ContractJson.networks[netId].address : null
senderAccount = (await web3.eth.getAccounts())[0]
} else {
2020-04-15 15:14:05 +02:00
try {
2020-02-26 14:57:53 +01:00
tornadoAddress = config.deployments[`netId${netId}`][currency].instanceAddress[amount]
if (!tornadoAddress) {
throw new Error()
}
tokenAddress = config.deployments[`netId${netId}`][currency].tokenAddress
2020-05-22 11:24:53 +02:00
} catch (e) {
2020-02-26 14:57:53 +01:00
console.error('There is no such tornado instance, check the currency and amount you provide')
process.exit(1)
}
2019-09-14 03:05:08 +02:00
}
2020-02-26 14:57:53 +01:00
tornado = new web3.eth.Contract(contractJson.abi, tornadoAddress)
erc20 = currency !== 'eth' ? new web3.eth.Contract(erc20ContractJson.abi, tokenAddress) : {}
2019-07-13 16:52:42 +02:00
}
2020-02-26 14:57:53 +01:00
async function main() {
if (inBrowser) {
2020-02-27 14:32:10 +01:00
const instance = { currency: 'eth', amount: '0.1' }
await init(instance)
window.deposit = async () => {
await deposit(instance)
}
window.withdraw = async () => {
const noteString = prompt('Enter the note to withdraw')
const recipient = (await web3.eth.getAccounts())[0]
const { currency, amount, netId, deposit } = parseNote(noteString)
await init({ noteNetId: netId, currency, amount })
await withdraw({ deposit, currency, amount, recipient })
}
2019-07-15 18:25:54 +02:00
} else {
2020-02-26 14:57:53 +01:00
program
.option('-r, --rpc <URL>', 'The RPC, CLI should interact with', 'http://localhost:8545')
.option('-R, --relayer <URL>', 'Withdraw via relayer')
program
.command('deposit <currency> <amount>')
.description('Submit a deposit of specified currency and amount from default eth account and return the resulting note. The currency is one of (ETH|DAI|cDAI|USDC|cUSDC|USDT). The amount depends on currency, see config.js file or visit https://tornado.cash.')
.action(async (currency, amount) => {
currency = currency.toLowerCase()
await init({ rpc: program.rpc, currency, amount })
await deposit({ currency, amount })
})
program
.command('withdraw <note> <recipient> [ETH_purchase]')
.description('Withdraw a note to a recipient account using relayer or specified private key. You can exchange some of your deposit`s tokens to ETH during the withdrawal by specifing ETH_purchase (e.g. 0.01) to pay for gas in future transactions. Also see the --relayer option.')
.action(async (noteString, recipient, refund) => {
const { currency, amount, netId, deposit } = parseNote(noteString)
await init({ rpc: program.rpc, noteNetId: netId, currency, amount })
await withdraw({ deposit, currency, amount, recipient, refund, relayerURL: program.relayer })
})
program
.command('balance <address> [token_address]')
.description('Check ETH and ERC20 balance')
.action(async (address, tokenAddress) => {
await init({ rpc: program.rpc })
await printETHBalance({ address, name: '' })
if (tokenAddress) {
await printERC20Balance({ address, name: '', tokenAddress })
2019-11-10 01:48:09 +01:00
}
2020-02-26 14:57:53 +01:00
})
2020-05-14 15:40:31 +02:00
program
.command('compliance <note>')
.description('Shows the deposit and withdrawal of the provided note. This might be necessary to show the origin of assets held in your withdrawal address.')
.action(async (noteString) => {
const { currency, amount, netId, deposit } = parseNote(noteString)
await init({ rpc: program.rpc, noteNetId: netId, currency, amount })
2020-05-22 11:24:53 +02:00
const depositInfo = await loadDepositData({ deposit })
2020-05-15 12:59:38 +02:00
const depositDate = new Date(depositInfo.timestamp * 1000)
console.log('\n=============Deposit=================')
console.log('Deposit :', amount, currency)
console.log('Date :', depositDate.toLocaleDateString(), depositDate.toLocaleTimeString())
console.log('From :', `https://${getCurrentNetworkName()}etherscan.io/address/${depositInfo.from}`)
console.log('Transaction :', `https://${getCurrentNetworkName()}etherscan.io/tx/${depositInfo.txHash}`)
console.log('Commitment :', depositInfo.commitment)
2020-05-14 15:40:31 +02:00
if (deposit.isSpent) {
console.log('The note was not spent')
}
2020-05-15 12:59:38 +02:00
2020-05-22 11:24:53 +02:00
const withdrawInfo = await loadWithdrawalData({ amount, currency, deposit })
2020-05-15 12:59:38 +02:00
const withdrawalDate = new Date(withdrawInfo.timestamp * 1000)
console.log('\n=============Withdrawal==============')
console.log('Withdrawal :', withdrawInfo.amount, currency)
console.log('Relayer Fee :', withdrawInfo.fee, currency)
console.log('Date :', withdrawalDate.toLocaleDateString(), withdrawalDate.toLocaleTimeString())
console.log('To :', `https://${getCurrentNetworkName()}etherscan.io/address/${withdrawInfo.to}`)
console.log('Transaction :', `https://${getCurrentNetworkName()}etherscan.io/tx/${withdrawInfo.txHash}`)
console.log('Nullifier :', withdrawInfo.nullifier)
2020-05-14 15:40:31 +02:00
})
2020-02-26 14:57:53 +01:00
program
.command('test')
.description('Perform an automated test. It deposits and withdraws one ETH and one ERC20 note. Uses ganache.')
.action(async () => {
console.log('Start performing ETH deposit-withdraw test')
let currency = 'eth'
let amount = '0.1'
await init({ rpc: program.rpc, currency, amount })
let noteString = await deposit({ currency, amount })
let parsedNote = parseNote(noteString)
await withdraw({ deposit: parsedNote.deposit, currency, amount, recipient: senderAccount, relayerURL: program.relayer })
console.log('\nStart performing DAI deposit-withdraw test')
currency = 'dai'
amount = '100'
await init({ rpc: program.rpc, currency, amount })
noteString = await deposit({ currency, amount })
2020-05-22 11:24:53 +02:00
; (parsedNote = parseNote(noteString))
2020-02-26 14:57:53 +01:00
await withdraw({ deposit: parsedNote.deposit, currency, amount, recipient: senderAccount, refund: '0.02', relayerURL: program.relayer })
})
try {
await program.parseAsync(process.argv)
2020-02-27 14:32:10 +01:00
process.exit(0)
2020-05-22 11:24:53 +02:00
} catch (e) {
2020-02-26 14:57:53 +01:00
console.log('Error:', e)
process.exit(1)
2019-07-15 18:25:54 +02:00
}
}
}
2019-11-10 01:48:09 +01:00
2020-02-27 14:32:10 +01:00
main()