#!/usr/bin/env node require('dotenv').config(); const fs = require('fs'); const axios = require('axios'); const assert = require('assert'); const snarkjs = require('@tornado/snarkjs'); const crypto = require('crypto'); const circomlib = require('@tornado/circomlib'); const bigInt = snarkjs.bigInt; const merkleTree = require('@tornado/fixed-merkle-tree'); const Web3 = require('web3'); const Web3HttpProvider = require('@tornado/web3-providers-http'); const { serialize } = require('@ethersproject/transactions'); const buildGroth16 = require('@tornado/websnark/src/groth16'); const websnarkUtils = require('@tornado/websnark/src/utils'); const { toWei, fromWei, toBN, BN } = require('web3-utils'); const BigNumber = require('bignumber.js'); const config = require('./config'); const program = require('commander'); const { TornadoFeeOracleV4, TornadoFeeOracleV5, TokenPriceOracle } = require('@tornado/tornado-oracles'); const { SocksProxyAgent } = require('socks-proxy-agent'); const is_ip_private = require('private-ip'); const readline = require('readline'); const prompt = readline.createInterface({ input: process.stdin, output: process.stdout }); const gasSpeedPreferences = ['instant', 'fast', 'standard', 'low']; let web3, torPort, tornado, tornadoProxyAddress, tornadoContract, tornadoInstance, circuit, provingKey, groth16, erc20, senderAccount, netId, netName, netSymbol, multiCall, subgraph, feeOracle; let MERKLE_TREE_HEIGHT, ETH_AMOUNT, TOKEN_AMOUNT, PRIVATE_KEY; /** Command state parameters */ let preferenceSpeed = gasSpeedPreferences[0]; let isTestRPC = false; let shouldPromptConfirmation = true; let doNotSubmitTx, privateRpc; /** ----------------------------------------- **/ /** Generate random number of specified byte length */ const rbigint = (nbytes) => snarkjs.bigInt.leBuff2int(crypto.randomBytes(nbytes)); /** Compute pedersen hash */ const pedersenHash = (data) => circomlib.babyJub.unpackPoint(circomlib.pedersenHash.hash(data))[0]; /** BigNumber to hex string of specified length */ function toHex(number, length = 32) { const str = number instanceof Buffer ? number.toString('hex') : bigInt(number).toString(16); return '0x' + str.padStart(length * 2, '0'); } /** Remove Decimal without rounding with BigNumber */ function rmDecimalBN(bigNum, decimals = 6) { return new BigNumber(bigNum) .times(BigNumber(10).pow(decimals)) .integerValue(BigNumber.ROUND_DOWN) .div(BigNumber(10).pow(decimals)) .toNumber(); } /** Use MultiCall Contract */ async function useMultiCall(queryArray) { const multiCallABI = require('./build/contracts/Multicall.abi.json'); const multiCallContract = new web3.eth.Contract(multiCallABI, multiCall); const { returnData } = await multiCallContract.methods.aggregate(queryArray).call(); return returnData; } /** Display ETH account balance */ async function printETHBalance({ address, name }) { const checkBalance = new BigNumber(await web3.eth.getBalance(address)).div(BigNumber(10).pow(18)); console.log(`${name} balance is`, rmDecimalBN(checkBalance), `${netSymbol}`); } /** Display ERC20 account balance */ async function printERC20Balance({ address, name, tokenAddress }) { let tokenDecimals, tokenBalance, tokenName, tokenSymbol; const erc20ContractJson = require('./build/contracts/ERC20Mock.json'); erc20 = tokenAddress ? new web3.eth.Contract(erc20ContractJson.abi, tokenAddress) : erc20; if (!isTestRPC && !multiCall) { const tokenCall = await useMultiCall([ [tokenAddress, erc20.methods.balanceOf(address).encodeABI()], [tokenAddress, erc20.methods.decimals().encodeABI()], [tokenAddress, erc20.methods.name().encodeABI()], [tokenAddress, erc20.methods.symbol().encodeABI()] ]); tokenDecimals = parseInt(tokenCall[1]); tokenBalance = new BigNumber(tokenCall[0]).div(BigNumber(10).pow(tokenDecimals)); tokenName = web3.eth.abi.decodeParameter('string', tokenCall[2]); tokenSymbol = web3.eth.abi.decodeParameter('string', tokenCall[3]); } else { tokenDecimals = await erc20.methods.decimals().call(); tokenBalance = new BigNumber(await erc20.methods.balanceOf(address).call()).div(BigNumber(10).pow(tokenDecimals)); tokenName = await erc20.methods.name().call(); tokenSymbol = await erc20.methods.symbol().call(); } console.log(`${name}`, tokenName, `Balance is`, rmDecimalBN(tokenBalance), tokenSymbol); } /** * Compute merkle tree and its root from array of cached deposit events * @param {Array} depositEvents Array of deposit event objects * @returns {Object} treeData * @returns {String[]} treeData.leaves Commitment hashes converted to decimals * @returns {MerkleTree} treeData.tree Builded merkle tree * @returns {String} treeData.root Merkle tree root */ function computeDepositEventsTree(depositEvents) { const leaves = depositEvents .sort((a, b) => a.leafIndex - b.leafIndex) // Sort events in chronological order .map((e) => toBN(e.commitment).toString(10)); // Leaf = commitment pedersen hash of deposit console.log('Computing deposit events merkle tree and its root'); const tree = new merkleTree(MERKLE_TREE_HEIGHT, leaves); return { leaves, tree, root: tree.root() }; } /** * Check validity of events merkle tree root via tornado contract * @async * @param {Array} depositEvents * @returns {boolean} True, if root is valid, else false * @throws {Error} */ async function isRootValid(depositEvents) { const { root } = computeDepositEventsTree(depositEvents); const isRootValid = await tornadoContract.methods.isKnownRoot(toHex(root)).call(); return isRootValid; } async function submitTransaction(signedTX) { console.log('Submitting transaction to the remote node'); await web3.eth .sendSignedTransaction(signedTX) .on('transactionHash', function (txHash) { console.log(`View transaction on block explorer https://${getExplorerLink()}/tx/${txHash}`); }) .on('error', function (e) { console.error('on transactionHash error', e.message); }); } async function generateTransaction(to, encodedData, value = 0, txType = 'other') { const nonce = await web3.eth.getTransactionCount(senderAccount); value = toBN(value); let incompletedTx = { to, value: value.toString(), data: encodedData }; if (txType === 'send') incompletedTx['from'] = senderAccount; const { gasPrice, gasLimit, l1Fee } = await feeOracle.getGasParams(incompletedTx, txType); const gasCosts = toBN(gasPrice).mul(toBN(gasLimit)).add(toBN(l1Fee)); const totalCosts = value.add(gasCosts); /** Transaction details */ console.log('Gas price: ', web3.utils.hexToNumber(gasPrice)); console.log('Gas limit: ', gasLimit); if (!toBN(l1Fee).eq(toBN(0))) console.log('Additional gas fees (like L1 data fee): ', rmDecimalBN(fromWei(l1Fee), 12), `${netSymbol}`); console.log('Transaction fee: ', rmDecimalBN(fromWei(gasCosts), 12), `${netSymbol}`); console.log('Transaction cost: ', rmDecimalBN(fromWei(totalCosts), 12), `${netSymbol}`); /** ----------------------------------------- **/ function txoptions() { // Generate EIP-1559 transaction if (netId == 1) { return { to: to, value: value, nonce: nonce, maxFeePerGas: gasPrice, maxPriorityFeePerGas: web3.utils.toHex(web3.utils.toWei('3', 'gwei')), gas: gasLimit, data: encodedData }; } else if (netId == 5 || netId == 137 || netId == 43114) { return { to: to, value: value, nonce: nonce, maxFeePerGas: gasPrice, maxPriorityFeePerGas: gasPrice, gas: gasLimit, data: encodedData }; } else { return { to: to, value: value, nonce: nonce, gasPrice: gasPrice, gas: gasLimit, data: encodedData }; } } if (shouldPromptConfirmation) { await promptConfirmation(); } const tx = txoptions(); const signed = await web3.eth.accounts.signTransaction(tx, PRIVATE_KEY); if (!doNotSubmitTx) { await submitTransaction(signed.rawTransaction); } else { console.log('\n=============Raw TX=================', '\n'); console.log( `Please submit this raw tx to https://${getExplorerLink()}/pushTx, or otherwise broadcast with node cli.js broadcast command.`, `\n` ); console.log(signed.rawTransaction, `\n`); console.log('=====================================', '\n'); } } /** * Create deposit object from secret and nullifier */ function createDeposit({ nullifier, secret }) { const deposit = { nullifier, secret }; deposit.preimage = Buffer.concat([deposit.nullifier.leInt2Buff(31), deposit.secret.leInt2Buff(31)]); deposit.commitment = pedersenHash(deposit.preimage); deposit.commitmentHex = toHex(deposit.commitment); deposit.nullifierHash = pedersenHash(deposit.nullifier.leInt2Buff(31)); deposit.nullifierHex = toHex(deposit.nullifierHash); return deposit; } async function backupNote({ currency, amount, netId, note, noteString }) { try { await fs.writeFileSync(`./backup-tornado-${currency}-${amount}-${netId}-${note.slice(0, 10)}.txt`, noteString, 'utf8'); console.log('Backed up deposit note as', `./backup-tornado-${currency}-${amount}-${netId}-${note.slice(0, 10)}.txt`); } catch (e) { throw new Error('Writing backup note failed:', e); } } async function backupInvoice({ currency, amount, netId, commitmentNote, invoiceString }) { try { await fs.writeFileSync( `./backup-tornadoInvoice-${currency}-${amount}-${netId}-${commitmentNote.slice(0, 10)}.txt`, invoiceString, 'utf8' ); console.log( 'Backed up invoice as', `./backup-tornadoInvoice-${currency}-${amount}-${netId}-${commitmentNote.slice(0, 10)}.txt` ); } catch (e) { throw new Error('Writing backup invoice failed:', e); } } /** * create a deposit invoice. * @param currency Сurrency * @param amount Deposit amount */ async function createInvoice({ currency, amount, chainId }) { const deposit = createDeposit({ nullifier: rbigint(31), secret: rbigint(31) }); const note = toHex(deposit.preimage, 62); const noteString = `tornado-${currency}-${amount}-${chainId}-${note}`; console.log(`Your note: ${noteString}`); const commitmentNote = toHex(deposit.commitment); const invoiceString = `tornadoInvoice-${currency}-${amount}-${chainId}-${commitmentNote}`; console.log(`Your invoice for deposit: ${invoiceString}`); await backupNote({ currency, amount, netId: chainId, note, noteString }); await backupInvoice({ currency, amount, netId: chainId, commitmentNote, invoiceString }); return noteString, invoiceString; } /** * Make a deposit * @param currency Сurrency * @param amount Deposit amount */ async function deposit({ currency, amount, commitmentNote }) { assert(senderAccount != null, 'Error! PRIVATE_KEY not found. Please provide PRIVATE_KEY in .env file if you deposit'); let commitment, noteString; if (!commitmentNote) { console.log('Creating new random deposit note'); const deposit = createDeposit({ nullifier: rbigint(31), secret: rbigint(31) }); const note = toHex(deposit.preimage, 62); noteString = `tornado-${currency}-${amount}-${netId}-${note}`; console.log(`Your note: ${noteString}`); await backupNote({ currency, amount, netId, note, noteString }); commitment = toHex(deposit.commitment); } else { console.log('Using supplied invoice for deposit'); commitment = toHex(commitmentNote); } if (currency === netSymbol.toLowerCase()) { await printETHBalance({ address: tornadoContract._address, name: 'Tornado contract' }); await printETHBalance({ address: senderAccount, name: 'Sender account' }); const value = isTestRPC ? ETH_AMOUNT : fromDecimals({ amount, decimals: 18 }); console.log('Submitting deposit transaction'); await generateTransaction(tornadoProxyAddress, tornado.methods.deposit(tornadoInstance, commitment, []).encodeABI(), value); await printETHBalance({ address: tornadoContract._address, name: 'Tornado contract' }); await printETHBalance({ address: senderAccount, name: 'Sender account' }); } else { // a token await printERC20Balance({ address: tornadoContract._address, name: 'Tornado contract' }); await printERC20Balance({ address: senderAccount, name: 'Sender account' }); const decimals = isTestRPC ? 18 : config.deployments[`netId${netId}`]['tokens'][currency].decimals; const tokenAmount = isTestRPC ? TOKEN_AMOUNT : fromDecimals({ amount, decimals }); if (isTestRPC) { console.log('Minting some test tokens to deposit'); await generateTransaction(erc20Address, erc20.methods.mint(senderAccount, tokenAmount).encodeABI()); } 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'); await generateTransaction(erc20Address, erc20.methods.approve(tornado._address, tokenAmount).encodeABI()); } console.log('Submitting deposit transaction'); await generateTransaction(tornadoProxyAddress, tornado.methods.deposit(tornadoInstance, commitment, []).encodeABI()); await printERC20Balance({ address: tornadoContract._address, name: 'Tornado contract' }); await printERC20Balance({ address: senderAccount, name: 'Sender account' }); } if (!commitmentNote) { return noteString; } } /** * @typedef {Object} MerkleProof Use pregenerated merkle proof * @property {string} root Merkle tree root * @property {Array} pathElements Number of hashes and hashes * @property {Array} pathIndices Indicies */ /** * Generate merkle tree for a deposit. * Download deposit events from the tornado, reconstructs merkle tree, finds our deposit leaf * in it and generates merkle proof * @param {Object} deposit Deposit object * @param {string} currency Currency ticker, like 'ETH' or 'BNB' * @param {number} amount Tornado instance amount, like 0.1 (ETH or BNB) or 10 * @return {Promise} Calculated valid merkle tree (proof) */ async function generateMerkleProof(deposit, currency, amount) { // Get all deposit events from smart contract and assemble merkle tree from them const cachedEvents = await fetchEvents({ type: 'deposit', currency, amount }); const { tree, leaves, root } = computeDepositEventsTree(cachedEvents); // Validate that merkle tree is valid, deposit data is correct and note not spent. const leafIndex = leaves.findIndex((commitment) => toBN(deposit.commitmentHex).toString(10) === commitment); let isValidRoot, isSpent; if (!isTestRPC && !multiCall) { const callContract = await useMultiCall([ [tornadoContract._address, tornadoContract.methods.isKnownRoot(toHex(root)).encodeABI()], [tornadoContract._address, tornadoContract.methods.isSpent(toHex(deposit.nullifierHash)).encodeABI()] ]); isValidRoot = web3.eth.abi.decodeParameter('bool', callContract[0]); isSpent = web3.eth.abi.decodeParameter('bool', callContract[1]); } else { isValidRoot = await tornadoContract.methods.isKnownRoot(toHex(root)).call(); isSpent = await tornadoContract.methods.isSpent(toHex(deposit.nullifierHash)).call(); } 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 const { pathElements, pathIndices } = tree.path(leafIndex); return { root, pathElements, pathIndices }; } /** * @typedef {Object} ProofData * @property {string} proof - ZK-SNARK proof * @property {Array} args - Withdrawal transaction proofed arguments */ /** * Generate SNARK proof for withdrawal * @param {Object} args Arguments * @param {Object} args.deposit Deposit object * @param {string} args.recipient Funds recipient * @param {string | 0 } args.relayer Relayer address * @param {number} args.fee Relayer fee * @param {number} args.refund Receive ether for exchanged tokens * @param {MerkleProof} [args.merkleProof] Valid merkle tree proof * @returns {Promise} Proof data */ async function generateProof({ deposit, currency, amount, recipient, relayerAddress = 0, fee = 0, refund = 0, merkleProof }) { // Compute merkle proof of our commitment if (merkleProof === undefined) merkleProof = await generateMerkleProof(deposit, currency, amount); const { root, pathElements, pathIndices } = merkleProof; // Prepare circuit input const input = { // Public snark inputs root: root, nullifierHash: deposit.nullifierHash, recipient: bigInt(recipient), relayer: bigInt(relayerAddress), fee: bigInt(fee), refund: bigInt(refund), // Private snark inputs nullifier: deposit.nullifier, secret: deposit.secret, pathElements: pathElements, pathIndices: pathIndices }; console.log('Generating SNARK proof'); console.time('Proof time'); const proofData = await websnarkUtils.genWitnessAndProve(groth16, input, circuit, provingKey); const { proof } = websnarkUtils.toSolidityInput(proofData); console.timeEnd('Proof time'); const args = [ toHex(input.root), toHex(input.nullifierHash), toHex(input.recipient, 20), toHex(input.relayer, 20), toHex(input.fee), toHex(input.refund) ]; return { proof, args }; } /** * Do an ETH withdrawal * @param noteString Note to withdraw * @param recipient Recipient address */ async function withdraw({ deposit, currency, amount, recipient, relayerURL, refund = '0' }) { let options = {}; if (currency === netSymbol.toLowerCase() && refund !== '0') { throw new Error('The ETH purchase is supposed to be 0 for ETH withdrawals'); } if (!web3.utils.isAddress(recipient)) { throw new Error('Recipient address is not valid'); } refund = toWei(refund); if (relayerURL) { if (relayerURL.endsWith('.eth')) { throw new Error( 'ENS name resolving is not supported. Please provide DNS name of the relayer. See instuctions in README.md' ); } if (torPort) { options = { httpsAgent: new SocksProxyAgent('socks5h://127.0.0.1:' + torPort), headers: { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; rv:91.0) Gecko/20100101 Firefox/91.0' } }; } const relayerStatus = await axios.get(relayerURL + '/status', options); const { rewardAccount, netId, ethPrices, tornadoServiceFee } = relayerStatus.data; assert(netId === (await web3.eth.net.getId()) || netId === '*', 'This relay is for different network'); console.log('Relay address:', rewardAccount); const decimals = isTestRPC ? 18 : config.deployments[`netId${netId}`]['tokens'][currency].decimals; const merkleWithdrawalProof = await generateMerkleProof(deposit, currency, amount); async function calculateDataForRelayer(totalRelayerFee = 0) { const { proof, args } = await generateProof({ deposit, currency, amount, recipient, relayerAddress: rewardAccount, fee: toBN(totalRelayerFee), refund, merkleProof: merkleWithdrawalProof }); return { proof, args }; } const { proof: dummyProof, args: dummyArgs } = await calculateDataForRelayer(); const withdrawalTxCalldata = tornado.methods.withdraw(tornadoProxyAddress, dummyProof, ...dummyArgs); const incompleteWithdrawalTx = { to: tornadoProxyAddress, data: withdrawalTxCalldata, value: toBN(dummyArgs[5]) || 0 }; const totalWithdrawalFee = await feeOracle.calculateWithdrawalFeeViaRelayer( 'user_withdrawal', incompleteWithdrawalTx, Number(tornadoServiceFee), currency, amount, decimals, refund, ethPrices?.[currency] ); const { proof, args } = await calculateDataForRelayer(totalWithdrawalFee); console.log('Sending withdraw transaction through relay'); /** Relayer fee details **/ console.log('Total fees: ', rmDecimalBN(fromWei(toBN(totalWithdrawalFee)), 12), `${netSymbol}`); /** -------------------- **/ if (shouldPromptConfirmation) { await promptConfirmation(); } try { const response = await axios.post( relayerURL + '/v1/tornadoWithdraw', { contract: tornadoInstance, proof, args }, options ); const { id } = response.data; const result = await getStatus(id, relayerURL, options); console.log('STATUS', result); } catch (e) { if (e.response) { console.error(e.response.data.error); } else { console.error(e.message); } } } else { // using private key // check if the address of recepient matches with the account of provided private key from environment to prevent accidental use of deposit address for withdrawal transaction. assert( recipient.toLowerCase() == senderAccount.toLowerCase(), 'Withdrawal recepient mismatches with the account of provided private key from environment file' ); const checkBalance = await web3.eth.getBalance(senderAccount); assert(checkBalance !== 0, 'You have 0 balance, make sure to fund account by withdrawing from tornado using relayer first'); const { proof, args } = await generateProof({ deposit, currency, amount, recipient, refund }); console.log('Submitting withdraw transaction'); await generateTransaction( tornadoProxyAddress, tornado.methods.withdraw(tornadoInstance, proof, ...args).encodeABI(), toBN(args[5]), 'user_withdrawal' ); } if (currency === netSymbol.toLowerCase()) { await printETHBalance({ address: recipient, name: 'Recipient' }); } else { await printERC20Balance({ address: recipient, name: 'Recipient' }); } console.log('Done withdrawal from Tornado Cash'); } /** * Do an ETH / ERC20 send * @param address Recepient address * @param amount Amount to send * @param tokenAddress ERC20 token address */ async function send({ address, amount, tokenAddress }) { // using private key assert(senderAccount != null, 'Error! PRIVATE_KEY not found. Please provide PRIVATE_KEY in .env file if you send'); if (tokenAddress) { const erc20ContractJson = require('./build/contracts/ERC20Mock.json'); erc20 = new web3.eth.Contract(erc20ContractJson.abi, tokenAddress); let tokenBalance, tokenDecimals, tokenSymbol; if (!isTestRPC && !multiCall) { const callToken = await useMultiCall([ [tokenAddress, erc20.methods.balanceOf(senderAccount).encodeABI()], [tokenAddress, erc20.methods.decimals().encodeABI()], [tokenAddress, erc20.methods.symbol().encodeABI()] ]); tokenBalance = new BigNumber(callToken[0]); tokenDecimals = parseInt(callToken[1]); tokenSymbol = web3.eth.abi.decodeParameter('string', callToken[2]); } else { tokenBalance = new BigNumber(await erc20.methods.balanceOf(senderAccount).call()); tokenDecimals = await erc20.methods.decimals().call(); tokenSymbol = await erc20.methods.symbol().call(); } const toSend = new BigNumber(amount).times(BigNumber(10).pow(tokenDecimals)); if (tokenBalance.lt(toSend)) { console.error( 'You have', rmDecimalBN(tokenBalance.div(BigNumber(10).pow(tokenDecimals))), tokenSymbol, ", you can't send more than you have" ); process.exit(1); } const encodeTransfer = erc20.methods.transfer(address, toSend).encodeABI(); await generateTransaction(tokenAddress, encodeTransfer, 0, 'send'); console.log('Sent', amount, tokenSymbol, 'to', address); } else { const balance = new BigNumber(await web3.eth.getBalance(senderAccount)); assert(balance.toNumber() !== 0, "You have 0 balance, can't send transaction"); let toSend = new BigNumber(0); if (amount) { toSend = new BigNumber(amount).times(BigNumber(10).pow(18)); if (balance.lt(toSend)) { console.error( 'You have', rmDecimalBN(balance.div(BigNumber(10).pow(18))), netSymbol + ", you can't send more than you have." ); process.exit(1); } } else { console.log('Amount not defined, sending all available amounts'); const gasPrice = new BigNumber(await feeOracle.getGasPrice('other')); const gasLimit = new BigNumber(21000); if (netId == 1) { const priorityFee = new BigNumber(await gasPrices(3)); toSend = balance.minus(gasLimit.times(gasPrice.plus(priorityFee))); } else { toSend = balance.minus(gasLimit.times(gasPrice)); } } await generateTransaction(address, null, toSend); console.log('Sent', rmDecimalBN(toSend.div(BigNumber(10).pow(18))), netSymbol, 'to', address); } } function getStatus(id, relayerURL, options) { return new Promise((resolve) => { async function getRelayerStatus() { const responseStatus = await axios.get(relayerURL + '/v1/jobs/' + id, options); if (responseStatus.status === 200) { const { txHash, status, confirmations, failedReason } = responseStatus.data; console.log(`Current job status ${status}, confirmations: ${confirmations}`); if (status === 'FAILED') { throw new Error(status + ' failed reason:' + failedReason); } if (status === 'CONFIRMED') { const receipt = await waitForTxReceipt({ txHash }); console.log( `Transaction submitted through the relay. View transaction on block explorer https://${getExplorerLink()}/tx/${txHash}` ); console.log('Transaction mined in block', receipt.blockNumber); resolve(status); } } setTimeout(() => { getRelayerStatus(id, relayerURL); }, 3000); } getRelayerStatus(); }); } function capitalizeFirstLetter(string) { return string.charAt(0).toUpperCase() + string.slice(1); } 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('[ethjs-unit] while converting number ' + amount + ' to wei, too many decimal points'); } let whole = comps[0]; let fraction = comps[1]; if (!whole) { whole = '0'; } if (!fraction) { fraction = '0'; } if (fraction.length > baseLength) { throw new Error('[ethjs-unit] while converting number ' + amount + ' to wei, too many decimal places'); } 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); } 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; } // List fetched from https://github.com/ethereum-lists/chains/blob/master/_data/chains function getExplorerLink() { switch (netId) { case 56: return 'bscscan.com'; case 100: return 'blockscout.com/poa/xdai'; case 137: return 'polygonscan.com'; case 42161: return 'arbiscan.io'; case 43114: return 'snowtrace.io'; case 5: return 'goerli.etherscan.io'; case 42: return 'kovan.etherscan.io'; case 10: return 'optimistic.etherscan.io'; default: return 'etherscan.io'; } } // List fetched from https://github.com/trustwallet/assets/tree/master/blockchains function getCurrentNetworkName() { switch (netId) { case 1: return 'Ethereum'; case 56: return 'BinanceSmartChain'; case 100: return 'GnosisChain'; case 137: return 'Polygon'; case 42161: return 'Arbitrum'; case 43114: return 'Avalanche'; case 5: return 'Goerli'; case 42: return 'Kovan'; case 10: return 'Optimism'; default: return 'testRPC'; } } function getCurrentNetworkSymbol() { switch (netId) { case 56: return 'BNB'; case 100: return 'xDAI'; case 137: return 'MATIC'; case 43114: return 'AVAX'; default: return 'ETH'; } } /** * Waits for transaction to be mined * @param txHash Hash of transaction * @param attempts * @param delay */ function waitForTxReceipt({ txHash, attempts = 60, delay = 1000 }) { 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); }); } function initJson(file) { return new Promise((resolve, reject) => { fs.readFile(file, 'utf8', (error, data) => { if (error) { resolve([]); } try { resolve(JSON.parse(data)); } catch (error) { resolve([]); } }); }); } /** * Erase all zero events from events tree array * @param events Events tree array */ function filterZeroEvents(events) { return events.filter((event) => event.transactionHash !== null); } function loadCachedEvents({ type, currency, amount }) { try { const module = require(`./cache/${netName.toLowerCase()}/${type}s_${currency.toLowerCase()}_${amount}.json`); if (module) { const events = module; return { events: filterZeroEvents(events), lastBlock: events[events.length - 1].blockNumber }; } } catch (err) { console.log('Error fetching cached files, syncing from block', deployedBlockNumber); return { events: [], lastBlock: deployedBlockNumber }; } } async function fetchEvents({ type, currency, amount, filterEvents }) { if (type === 'withdraw') { type = 'withdrawal'; } if (filterEvents === undefined) filterEvents = true; const cachedEvents = loadCachedEvents({ type, currency, amount }); const startBlock = cachedEvents.lastBlock + 1; console.log('Loaded cached', amount, currency.toUpperCase(), type, 'events for', startBlock, 'block'); console.log('Fetching', amount, currency.toUpperCase(), type, 'events for', netName, 'network'); async function updateCache(fetchedEvents) { if (type === 'deposit') fetchedEvents.sort((firstLeaf, secondLeaf) => firstLeaf.leafIndex - secondLeaf.leafIndex); try { const fileName = `./cache/${netName.toLowerCase()}/${type}s_${currency.toLowerCase()}_${amount}.json`; const localEvents = await initJson(fileName); const events = filterZeroEvents(localEvents).concat(fetchedEvents); fs.writeFileSync(fileName, JSON.stringify(events, null, 2), 'utf8'); } catch (error) { throw new Error('Writing cache file failed:', error); } } /** * Adds an zero (empty) event to the end of the events list * If tornado transactions on the selected currency/amount are rare and the last one was much earlier than the current block, * it helps to quickly synchronize the events tree * @param {number} blockNumber Latest block number on selected chain */ async function addZeroEvent(blockNumber) { const zeroEvent = { blockNumber, transactionHash: null }; await updateCache([zeroEvent]); console.log('Added', amount, currency.toUpperCase(), type, 'zero event to block:', blockNumber); } async function syncEvents() { try { let targetBlock = await web3.eth.getBlockNumber(); let chunks = 10000; console.log('Querying latest events from RPC'); for (let i = startBlock; i < targetBlock; i += chunks) { let fetchedEvents = []; function mapDepositEvents() { fetchedEvents = fetchedEvents.map(({ blockNumber, transactionHash, returnValues }) => { const { commitment, leafIndex, timestamp } = returnValues; return { blockNumber, transactionHash, commitment, leafIndex: Number(leafIndex), timestamp }; }); } function mapWithdrawEvents() { fetchedEvents = fetchedEvents.map(({ blockNumber, transactionHash, returnValues }) => { const { nullifierHash, to, fee } = returnValues; return { blockNumber, transactionHash, nullifierHash, to, fee }; }); } function mapLatestEvents() { if (type === 'deposit') { mapDepositEvents(); } else { mapWithdrawEvents(); } } async function fetchWeb3Events(i) { let j; if (i + chunks - 1 > targetBlock) { j = targetBlock; } else { j = i + chunks - 1; } await tornadoContract .getPastEvents(capitalizeFirstLetter(type), { fromBlock: i, toBlock: j }) .then( (r) => { fetchedEvents = fetchedEvents.concat(r); console.log('Fetched', amount, currency.toUpperCase(), type, 'events to block:', j); }, (err) => { console.error(i + ' failed fetching', type, 'events from node', err); process.exit(1); } ) .catch(console.log); mapLatestEvents(); } await fetchWeb3Events(i); await updateCache(fetchedEvents); } } catch (error) { console.log(error); throw new Error('Error while updating cache'); } } async function syncGraphEvents() { let options = {}; if (torPort) { options = { httpsAgent: new SocksProxyAgent('socks5h://127.0.0.1:' + torPort), headers: { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; rv:91.0) Gecko/20100101 Firefox/91.0' } }; } async function queryLatestTimestamp() { try { const variables = { currency: currency.toString().toLowerCase(), amount: amount.toString().toLowerCase() }; console.log(variables); if (type === 'deposit') { const query = { query: ` query($currency: String, $amount: String){ deposits(first: 1, orderBy: timestamp, orderDirection: desc, where: {currency: $currency, amount: $amount}) { timestamp } } `, variables }; const querySubgraph = await axios.post(subgraph, query, options); const queryResult = querySubgraph.data.data.deposits; const result = queryResult[0].timestamp; return Number(result); } else { const query = { query: ` query($currency: String, $amount: String){ withdrawals(first: 1, orderBy: timestamp, orderDirection: desc, where: {currency: $currency, amount: $amount}) { timestamp } } `, variables }; const querySubgraph = await axios.post(subgraph, query, options); const queryResult = querySubgraph.data.data.withdrawals; const result = queryResult[0].timestamp; return Number(result); } } catch (error) { console.log(error); console.error('Failed to fetch latest event from subgraph'); } } async function queryFromGraph(timestamp) { try { const variables = { currency: currency.toString().toLowerCase(), amount: amount.toString().toLowerCase(), timestamp: timestamp }; if (type === 'deposit') { console.log(variables); const query = { query: ` query($currency: String, $amount: String, $timestamp: Int){ deposits(orderBy: timestamp, first: 1000, where: {currency: $currency, amount: $amount, timestamp_gt: $timestamp}) { blockNumber transactionHash commitment index timestamp } } `, variables }; const querySubgraph = await axios.post(subgraph, query, options); const queryResult = querySubgraph.data.data.deposits; const mapResult = queryResult.map(({ blockNumber, transactionHash, commitment, index, timestamp }) => { return { blockNumber: Number(blockNumber), transactionHash, commitment, leafIndex: Number(index), timestamp: Number(timestamp) }; }); return mapResult; } else { const query = { query: ` query($currency: String, $amount: String, $timestamp: Int){ withdrawals(orderBy: timestamp, first: 1000, where: {currency: $currency, amount: $amount, timestamp_gt: $timestamp}) { blockNumber transactionHash nullifier to fee } } `, variables }; const querySubgraph = await axios.post(subgraph, query, options); const queryResult = querySubgraph.data.data.withdrawals; const mapResult = queryResult.map(({ blockNumber, transactionHash, nullifier, to, fee }) => { return { blockNumber: Number(blockNumber), transactionHash, nullifierHash: nullifier, to, fee }; }); return mapResult; } } catch (error) { console.error(error); } } async function fetchGraphEvents() { console.log('Querying latest events from subgraph'); const latestTimestamp = await queryLatestTimestamp(); if (latestTimestamp) { const getCachedBlock = await web3.eth.getBlock(startBlock); const cachedTimestamp = getCachedBlock.timestamp; for (let i = cachedTimestamp; i < latestTimestamp; ) { const result = await queryFromGraph(i); if (Object.keys(result).length === 0) { i = latestTimestamp; } else { if (type === 'deposit') { const resultBlock = result[result.length - 1].blockNumber; const resultTimestamp = result[result.length - 1].timestamp; await updateCache(result); i = resultTimestamp; console.log('Fetched', amount, currency.toUpperCase(), type, 'events to block:', Number(resultBlock)); } else { const resultBlock = result[result.length - 1].blockNumber; const getResultBlock = await web3.eth.getBlock(resultBlock); const resultTimestamp = getResultBlock.timestamp; await updateCache(result); i = resultTimestamp; console.log('Fetched', amount, currency.toUpperCase(), type, 'events to block:', Number(resultBlock)); } } } } else { console.log('Fallback to web3 events'); await syncEvents(); } } await fetchGraphEvents(); } if (!privateRpc && !subgraph && !isTestRPC) { await syncGraphEvents(); } else { await syncEvents(); } await addZeroEvent(await web3.eth.getBlockNumber()); async function loadUpdatedEvents() { // Don't use loadCachedEvents function, because we need to check zero event block (to which block we updated) const fileName = `./cache/${netName.toLowerCase()}/${type}s_${currency.toLowerCase()}_${amount}.json`; const updatedEvents = await initJson(fileName); const updatedBlock = updatedEvents[updatedEvents.length - 1].blockNumber; console.log('Cache updated for Tornado', type, amount, currency, 'instance to block', updatedBlock, 'successfully'); console.log(`Total ${type}s:`, updatedEvents.length - 1); return updatedEvents; } const events = await loadUpdatedEvents(); return filterEvents ? filterZeroEvents(events) : events; } /** * Parses Tornado.cash note * @param noteString the note */ function parseNote(noteString) { const noteRegex = /tornado-(?\w+)-(?[\d.]+)-(?\d+)-0x(?[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)); const deposit = createDeposit({ nullifier, secret }); const netId = Number(match.groups.netId); return { currency: match.groups.currency, amount: match.groups.amount, netId, deposit }; } /** * Parses Tornado.cash deposit invoice * @param invoiceString the note */ function parseInvoice(invoiceString) { const noteRegex = /tornadoInvoice-(?\w+)-(?[\d.]+)-(?\d+)-0x(?[0-9a-fA-F]{64})/g; const match = noteRegex.exec(invoiceString); if (!match) { throw new Error('The note has invalid format'); } const netId = Number(match.groups.netId); const buf = Buffer.from(match.groups.commitmentNote, 'hex'); const commitmentNote = toHex(buf.slice(0, 32)); return { currency: match.groups.currency, amount: match.groups.amount, netId, commitmentNote }; } async function loadDepositData({ amount, currency, deposit }) { try { const cachedEvents = await fetchEvents({ type: 'deposit', currency, amount }); const eventWhenHappened = await cachedEvents.filter(function (event) { return event.commitment === deposit.commitmentHex; })[0]; if (eventWhenHappened.length === 0) { throw new Error('There is no related deposit, the note is invalid'); } const timestamp = eventWhenHappened.timestamp; const txHash = eventWhenHappened.transactionHash; const isSpent = await tornadoContract.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 {}; } async function loadWithdrawalData({ amount, currency, deposit }) { try { const cachedEvents = await fetchEvents({ type: 'withdrawal', currency, amount }); const withdrawEvent = cachedEvents.filter((event) => { return event.nullifierHash === deposit.nullifierHex; })[0]; if (!withdrawEvent) return null; const fee = withdrawEvent.fee; const decimals = config.deployments[`netId${netId}`]['tokens'][currency].decimals; const withdrawalAmount = toBN(fromDecimals({ amount, decimals })).sub(toBN(fee)); const { timestamp } = await web3.eth.getBlock(withdrawEvent.blockNumber); return { amount: toDecimals(withdrawalAmount, decimals, 9), txHash: withdrawEvent.transactionHash, to: withdrawEvent.to, timestamp, nullifier: deposit.nullifierHex, fee: toDecimals(fee, decimals, 9) }; } catch (e) { console.error('loadWithdrawalData', e); } } function statePreferences(program) { const isPref = gasSpeedPreferences.includes(program.gas_speed); if (program.gas_speed && !isPref) { throw new Error('Invalid gas speed preference'); } else if (program.gas_speed) { preferenceSpeed = program.gas_speed; } if (program.noconfirmation) { shouldPromptConfirmation = false; } if (program.onlyRpc) { privateRpc = true; } if (program.tor) { torPort = program.tor; } } async function promptConfirmation() { const query = 'Confirm the transaction [Y/n] '; const confirmation = await new Promise((resolve) => prompt.question(query, resolve)); if (confirmation.toUpperCase() !== 'Y') { throw new Error('Transaction rejected'); } } /** * Init web3, contracts, and snark */ async function init({ rpc, noteNetId, currency = 'dai', amount = '100', balanceCheck, localMode, privateKey }) { let contractJson, instanceJson, erc20ContractJson, erc20tornadoJson, tokenAddress; let ipOptions = {}; if (noteNetId && !rpc) rpc = config.deployments[`netId${noteNetId}`].defaultRpc; if (torPort && rpc.startsWith('https')) { console.log('Using tor network'); web3Options = { agent: { https: new SocksProxyAgent('socks5h://127.0.0.1:' + torPort) }, timeout: 60000 }; // Use forked web3-providers-http from local file to modify user-agent header value which improves privacy. web3 = new Web3(new Web3HttpProvider(rpc, web3Options), null, { transactionConfirmationBlocks: 1 }); ipOptions = { httpsAgent: new SocksProxyAgent('socks5h://127.0.0.1:' + torPort), headers: { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; rv:91.0) Gecko/20100101 Firefox/91.0' } }; } else if (torPort && rpc.startsWith('http')) { console.log('Using tor network'); web3Options = { agent: { http: new SocksProxyAgent('socks5h://127.0.0.1:' + torPort) }, timeout: 60000 }; // Use forked web3-providers-http from local file to modify user-agent header value which improves privacy. web3 = new Web3(new Web3HttpProvider(rpc, web3Options), null, { transactionConfirmationBlocks: 1 }); ipOptions = { httpsAgent: new SocksProxyAgent('socks5h://127.0.0.1:' + torPort), headers: { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; rv:91.0) Gecko/20100101 Firefox/91.0' } }; } else if (rpc.includes('ipc')) { console.log('Using ipc connection'); web3 = new Web3(new Web3.providers.IpcProvider(rpc, net), null, { transactionConfirmationBlocks: 1 }); } else if (rpc.startsWith('ws') || rpc.startsWith('wss')) { console.log('Using websocket connection (Note: Tor is not supported for Websocket providers)'); web3Options = { clientConfig: { keepalive: true, keepaliveInterval: -1 }, reconnect: { auto: true, delay: 1000, maxAttempts: 10, onTimeout: false } }; web3 = new Web3(new Web3.providers.WebsocketProvider(rpc, web3Options), net, { transactionConfirmationBlocks: 1 }); } else { console.log('Connecting to remote node'); web3 = new Web3(rpc, null, { transactionConfirmationBlocks: 1 }); } const rpcHost = new URL(rpc).hostname; const isIpPrivate = is_ip_private(rpcHost); if (!isIpPrivate && !rpc.includes('localhost') && !privateRpc) { try { const htmlIPInfo = await axios.get('https://check.torproject.org', ipOptions); const ip = htmlIPInfo.data.split('Your IP address appears to be: ').pop().split('', 'The RPC that CLI should interact with') .option('-R, --relayer ', 'Withdraw via relayer') .option('-T, --tor ', 'Optional tor port') .option('-p, --private-key ', "Wallet private key - If you didn't add it to .env file and it is needed for operation") .option('-S --gas-speed ', 'Gas speed preference [ instant, fast, standard, low ]') .option('-N --noconfirmation', 'No confirmation mode - Does not query confirmation ') .option('-L, --local-rpc', 'Local node mode - Does not submit signed transaction to the node') .option('-o, --only-rpc', 'Only rpc mode - Does not enable thegraph api nor remote ip detection'); program .command('createNote ') .description( 'Create deposit note and invoice, allows generating private key like deposit notes from secure, offline environment. 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, chainId) => { currency = currency.toLowerCase(); await createInvoice({ currency, amount, chainId }); }); program .command('depositInvoice ') .description('Submit a deposit of invoice from default eth account and return the resulting note.') .action(async (invoice) => { statePreferences(program); const { currency, amount, netId, commitmentNote } = parseInvoice(invoice); await init({ rpc: program.rpc, currency, amount, localMode: program.localRpc, privateKey: program.privateKey, noteNetId: netId }); console.log('Creating', currency.toUpperCase(), amount, 'deposit for', netName, 'Tornado Cash Instance'); await deposit({ currency, amount, commitmentNote }); }); program .command('deposit ') .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(); statePreferences(program); await init({ rpc: program.rpc, currency, amount, localMode: program.localRpc, privateKey: program.privateKey }); await deposit({ currency, amount }); }); program .command('withdraw [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) => { statePreferences(program); const { currency, amount, netId, deposit } = parseNote(noteString); userAction = 'withdrawal'; await init({ rpc: program.rpc, noteNetId: netId, currency, amount, localMode: program.localRpc, privateKey: program.privateKey }); 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) => { statePreferences(program); await init({ rpc: program.rpc, balanceCheck: true }); if (!address && senderAccount) { console.log('Using address', senderAccount, 'from private key'); address = senderAccount; } await printETHBalance({ address, name: 'Account' }); if (tokenAddress) { await printERC20Balance({ address, name: 'Account', tokenAddress }); } }); program .command('send
[amount] [token_address]') .description('Send ETH or ERC to address') .action(async (address, amount, tokenAddress) => { statePreferences(program); await init({ rpc: program.rpc, balanceCheck: true, localMode: program.localRpc, privateKey: program.privateKey }); await send({ address, amount, tokenAddress }); }); program .command('broadcast ') .description('Submit signed TX to the remote node') .action(async (signedTX) => { statePreferences(program); await init({ rpc: program.rpc, balanceCheck: true }); await submitTransaction(signedTX); }); program .command('compliance ') .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) => { statePreferences(program); const { currency, amount, netId, deposit } = parseNote(noteString); await init({ rpc: program.rpc, noteNetId: netId, currency, amount }); const depositInfo = await loadDepositData({ amount, currency, deposit }); const withdrawInfo = await loadWithdrawalData({ amount, currency, deposit }); const depositDate = new Date(depositInfo.timestamp * 1000); console.log('\n=============Deposit================='); console.log('Deposit :', amount, currency.toUpperCase()); console.log('Date :', depositDate.toLocaleDateString(), depositDate.toLocaleTimeString()); console.log('From :', `https://${getExplorerLink()}/address/${depositInfo.from}`); console.log('Transaction :', `https://${getExplorerLink()}/tx/${depositInfo.txHash}`); console.log('Commitment :', depositInfo.commitment); console.log('Spent :', depositInfo.isSpent); console.log('=====================================', '\n'); if (!depositInfo.isSpent) { console.log('The note was not spent!'); return; } 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://${getExplorerLink()}/address/${withdrawInfo.to}`); console.log('Transaction :', `https://${getExplorerLink()}/tx/${withdrawInfo.txHash}`); console.log('Nullifier :', withdrawInfo.nullifier); console.log('=====================================', '\n'); }); program .command('syncEvents ') .description('Sync the local cache file of deposit / withdrawal events for specific currency.') .action(async (type, currency, amount) => { currency = currency.toLowerCase(); statePreferences(program); console.log('Starting event sync command'); await init({ rpc: program.rpc, type, currency, amount }); const cachedEvents = await fetchEvents({ type, currency, amount, filterEvents: false }); console.log( 'Synced event for', type, amount, currency.toUpperCase(), netName, 'Tornado instance to block', cachedEvents[cachedEvents.length - 1].blockNumber ); }); program .command('checkCacheValidity ') .description('Check cache file of deposit events for specific currency for validity of the root.') .action(async (currency, amount) => { statePreferences(program); const type = 'deposit'; await init({ rpc: program.rpc, type, currency: currency.toLowerCase(), amount }); const depositCachedEvents = await fetchEvents({ type, currency, amount }); const isValidRoot = await isRootValid(depositCachedEvents); console.log( '\nDeposit events tree for', amount, currency.toUpperCase(), 'on', netName, 'chain', isValidRoot ? 'has valid root' : 'is invalid, unknown root. You need to reset cache to zero array or to latest git state' ); }); program.command('parseNote ').action(async (noteString) => { const parse = parseNote(noteString); netId = parse.netId; netName = getCurrentNetworkName(); console.log('\n=============Note================='); console.log('Network:', netName); console.log('Denomination:', parse.amount, parse.currency.toUpperCase()); console.log('Commitment: ', parse.deposit.commitmentHex); console.log('Nullifier Hash: ', parse.deposit.nullifierHex); console.log('=====================================', '\n'); }); program .command('test') .description('Perform an automated test. It deposits and withdraws one ETH and one ERC20 note. Uses ganache.') .action(async () => { privateRpc = true; console.log('Start performing ETH deposit-withdraw test'); let currency = 'eth'; let amount = '0.1'; await init({ rpc: program.rpc, currency, amount, privateKey: program.privateKey }); 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 }); parsedNote = parseNote(noteString); await withdraw({ deposit: parsedNote.deposit, currency, amount, recipient: senderAccount, refund: '0.02', relayerURL: program.relayer }); }); try { await program.parseAsync(process.argv); process.exit(0); } catch (e) { console.log('Error:', e); process.exit(1); } } main();