tornado-core/cli.js

432 lines
17 KiB
JavaScript
Raw Permalink Normal View History

2019-07-13 13:57:49 +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
2019-07-16 19:20:16 +02:00
const fs = require('fs')
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
const merkleTree = require('./lib/MerkleTree')
const Web3 = require('web3')
const buildGroth16 = require('websnark/src/groth16')
const websnarkUtils = require('websnark/src/utils')
2019-09-23 20:45:20 +02:00
const { GSNProvider, GSNDevProvider } = require('@openzeppelin/gsn-provider')
const { ephemeral } = require('@openzeppelin/network')
2019-07-16 19:20:16 +02:00
2019-09-14 03:05:08 +02:00
let web3, mixer, erc20mixer, circuit, proving_key, groth16, erc20
let MERKLE_TREE_HEIGHT, ETH_AMOUNT, EMPTY_ELEMENT, ERC20_TOKEN
2019-07-16 19:20:16 +02:00
const inBrowser = (typeof window !== 'undefined')
2019-07-13 16:45:08 +02:00
/** Generate random number of specified byte length */
2019-07-18 20:27:51 +02:00
const rbigint = (nbytes) => snarkjs.bigInt.leBuff2int(crypto.randomBytes(nbytes))
/** Compute pedersen hash */
2019-07-18 20:27:51 +02:00
const pedersenHash = (data) => circomlib.babyJub.unpackPoint(circomlib.pedersenHash.hash(data))[0]
/**
* Create deposit object from secret and nullifier
*/
2019-07-13 16:45:08 +02:00
function createDeposit(nullifier, secret) {
2019-07-16 19:20:16 +02:00
let 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)
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
/**
* Make a deposit
* @returns {Promise<string>}
*/
2019-07-13 13:57:49 +02:00
async function deposit() {
2019-07-18 20:27:51 +02:00
const deposit = createDeposit(rbigint(31), rbigint(31))
2019-07-13 13:57:49 +02:00
2019-07-16 19:20:16 +02:00
console.log('Submitting deposit transaction')
2019-08-27 22:42:24 +02:00
await mixer.methods.deposit('0x' + deposit.commitment.toString(16)).send({ value: ETH_AMOUNT, from: (await web3.eth.getAccounts())[0], gas:1e6 })
2019-07-13 13:57:49 +02:00
2019-07-16 19:20:16 +02:00
const note = '0x' + deposit.preimage.toString('hex')
console.log('Your note:', note)
return note
2019-07-13 13:57:49 +02:00
}
2019-09-14 03:05:08 +02:00
async function depositErc20() {
const account = (await web3.eth.getAccounts())[0]
const tokenAmount = process.env.TOKEN_AMOUNT
await erc20.methods.mint(account, tokenAmount).send({ from: account, gas:1e6 })
await erc20.methods.approve(erc20mixer.address, tokenAmount).send({ from: account, gas:1e6 })
2019-09-14 20:21:53 +02:00
const allowance = await erc20.methods.allowance(account, erc20mixer.address).call()
console.log('erc20mixer allowance', allowance.toString(10))
2019-09-14 03:05:08 +02:00
const deposit = createDeposit(rbigint(31), rbigint(31))
await erc20mixer.methods.deposit('0x' + deposit.commitment.toString(16)).send({ value: ETH_AMOUNT, from: account, gas:1e6 })
const balance = await erc20.methods.balanceOf(erc20mixer.address).call()
console.log('erc20mixer balance', balance.toString(10))
const note = '0x' + deposit.preimage.toString('hex')
console.log('Your note:', note)
return note
}
2019-09-14 20:21:53 +02:00
async function withdrawErc20(note, receiver, relayer) {
2019-09-14 03:05:08 +02:00
let buf = Buffer.from(note.slice(2), 'hex')
let deposit = createDeposit(bigInt.leBuff2int(buf.slice(0, 31)), bigInt.leBuff2int(buf.slice(31, 62)))
console.log('Getting current state from mixer contract')
const events = await erc20mixer.getPastEvents('Deposit', { fromBlock: erc20mixer.deployedBlock, toBlock: 'latest' })
let leafIndex
const commitment = deposit.commitment.toString(16).padStart('66', '0x000000')
const leaves = events
.sort((a, b) => a.returnValues.leafIndex.sub(b.returnValues.leafIndex))
.map(e => {
if (e.returnValues.commitment.eq(commitment)) {
leafIndex = e.returnValues.leafIndex.toNumber()
}
return e.returnValues.commitment
})
const tree = new merkleTree(MERKLE_TREE_HEIGHT, EMPTY_ELEMENT, leaves)
const validRoot = await erc20mixer.methods.isKnownRoot(await tree.root()).call()
const nullifierHash = pedersenHash(deposit.nullifier.leInt2Buff(31))
const nullifierHashToCheck = nullifierHash.toString(16).padStart('66', '0x000000')
2019-09-14 20:21:53 +02:00
const isSpent = await erc20mixer.methods.isSpent(nullifierHashToCheck).call()
2019-09-14 03:05:08 +02:00
assert(validRoot === true)
assert(isSpent === false)
assert(leafIndex >= 0)
const { root, path_elements, path_index } = await tree.path(leafIndex)
// Circuit input
const input = {
// public
root: root,
nullifierHash,
receiver: bigInt(receiver),
2019-09-14 20:21:53 +02:00
relayer: bigInt(relayer),
fee: bigInt(web3.utils.toWei('0.01')),
2019-09-14 03:05:08 +02:00
// private
nullifier: deposit.nullifier,
secret: deposit.secret,
pathElements: path_elements,
pathIndex: path_index,
}
console.log('Generating SNARK proof')
console.time('Proof time')
const proof = await websnarkUtils.genWitnessAndProve(groth16, input, circuit, proving_key)
const { pi_a, pi_b, pi_c, publicSignals } = websnarkUtils.toSolidityInput(proof)
console.timeEnd('Proof time')
console.log('Submitting withdraw transaction')
2019-09-14 20:21:53 +02:00
await erc20mixer.methods.withdraw(pi_a, pi_b, pi_c, publicSignals).send({ from: (await web3.eth.getAccounts())[0], gas: 1e6 })
2019-09-14 03:05:08 +02:00
console.log('Done')
}
2019-07-15 21:19:34 +02:00
async function getBalance(receiver) {
const balance = await web3.eth.getBalance(receiver)
2019-07-17 23:59:04 +02:00
console.log('Balance is ', web3.utils.fromWei(balance))
2019-07-15 21:19:34 +02:00
}
2019-09-14 20:21:53 +02:00
async function getBalanceErc20(receiver, relayer) {
const balanceReceiver = await web3.eth.getBalance(receiver)
const balanceRelayer = await web3.eth.getBalance(relayer)
const tokenBalanceReceiver = await erc20.methods.balanceOf(receiver).call()
const tokenBalanceRelayer = await erc20.methods.balanceOf(relayer).call()
console.log('Receiver eth Balance is ', web3.utils.fromWei(balanceReceiver))
console.log('Relayer eth Balance is ', web3.utils.fromWei(balanceRelayer))
console.log('Receiver token Balance is ', web3.utils.fromWei(tokenBalanceReceiver.toString()))
console.log('Relayer token Balance is ', web3.utils.fromWei(tokenBalanceRelayer.toString()))
}
2019-07-13 13:57:49 +02:00
async function withdraw(note, receiver) {
// Decode hex string and restore the deposit object
2019-07-16 19:20:16 +02:00
let buf = Buffer.from(note.slice(2), 'hex')
2019-08-06 07:20:45 +02:00
let deposit = createDeposit(bigInt.leBuff2int(buf.slice(0, 31)), bigInt.leBuff2int(buf.slice(31, 62)))
const nullifierHash = pedersenHash(deposit.nullifier.leInt2Buff(31))
const paddedNullifierHash = nullifierHash.toString(16).padStart('66', '0x000000')
const paddedCommitment = deposit.commitment.toString(16).padStart('66', '0x000000')
2019-07-16 19:20:16 +02:00
// Get all deposit events from smart contract and assemble merkle tree from them
2019-07-16 19:20:16 +02:00
console.log('Getting current state from mixer contract')
2019-07-19 19:08:47 +02:00
const events = await mixer.getPastEvents('Deposit', { fromBlock: mixer.deployedBlock, toBlock: 'latest' })
2019-07-24 18:57:51 +02:00
const leaves = events
.sort((a, b) => a.returnValues.leafIndex.sub(b.returnValues.leafIndex)) // Sort events in chronological order
.map(e => e.returnValues.commitment)
2019-07-16 19:20:16 +02:00
const tree = new merkleTree(MERKLE_TREE_HEIGHT, EMPTY_ELEMENT, leaves)
2019-07-13 13:57:49 +02:00
// Find current commitment in the tree
let depositEvent = events.find(e => e.returnValues.commitment.eq(paddedCommitment))
let leafIndex = depositEvent ? depositEvent.returnValues.leafIndex.toNumber() : -1
// Validate that our data is correct
const isValidRoot = await mixer.methods.isKnownRoot(await tree.root()).call()
const isSpent = await mixer.methods.isSpent(paddedNullifierHash).call()
assert(isValidRoot === true) // Merkle tree assembled correctly
assert(isSpent === false) // The note is not spent
assert(leafIndex >= 0) // Our deposit is present in the tree
// Compute merkle proof of our commitment
2019-07-16 19:20:16 +02:00
const { root, path_elements, path_index } = await tree.path(leafIndex)
// 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,
2019-07-25 14:16:09 +02:00
nullifierHash,
2019-07-13 13:57:49 +02:00
receiver: bigInt(receiver),
2019-09-06 22:54:37 +02:00
relayer: bigInt(0),
2019-07-13 13:57:49 +02:00
fee: bigInt(0),
// Private snark inputs
2019-07-19 18:37:38 +02:00
nullifier: deposit.nullifier,
2019-07-13 13:57:49 +02:00
secret: deposit.secret,
pathElements: path_elements,
pathIndex: path_index,
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-07-16 19:20:16 +02:00
const proof = await websnarkUtils.genWitnessAndProve(groth16, input, circuit, proving_key)
const { pi_a, pi_b, pi_c, publicSignals } = websnarkUtils.toSolidityInput(proof)
2019-07-17 13:12:57 +02:00
console.timeEnd('Proof time')
2019-07-13 13:57:49 +02:00
2019-07-16 19:20:16 +02:00
console.log('Submitting withdraw transaction')
await mixer.methods.withdraw(pi_a, pi_b, pi_c, publicSignals).send({ from: (await web3.eth.getAccounts())[0], gas: 1e6 })
console.log('Done')
2019-07-13 13:57:49 +02:00
}
2019-09-23 20:45:20 +02:00
async function withdrawViaRelayer(note, receiver) {
// Decode hex string and restore the deposit object
let buf = Buffer.from(note.slice(2), 'hex')
let deposit = createDeposit(bigInt.leBuff2int(buf.slice(0, 31)), bigInt.leBuff2int(buf.slice(31, 62)))
const nullifierHash = pedersenHash(deposit.nullifier.leInt2Buff(31))
const paddedNullifierHash = nullifierHash.toString(16).padStart('66', '0x000000')
const paddedCommitment = deposit.commitment.toString(16).padStart('66', '0x000000')
// Get all deposit events from smart contract and assemble merkle tree from them
console.log('Getting current state from mixer contract')
const events = await mixer.getPastEvents('Deposit', { fromBlock: mixer.deployedBlock, toBlock: 'latest' })
const leaves = events
.sort((a, b) => a.returnValues.leafIndex.sub(b.returnValues.leafIndex)) // Sort events in chronological order
.map(e => e.returnValues.commitment)
const tree = new merkleTree(MERKLE_TREE_HEIGHT, EMPTY_ELEMENT, leaves)
// Find current commitment in the tree
let depositEvent = events.find(e => e.returnValues.commitment.eq(paddedCommitment))
let leafIndex = depositEvent ? depositEvent.returnValues.leafIndex.toNumber() : -1
// Validate that our data is correct
const isValidRoot = await mixer.methods.isKnownRoot(await tree.root()).call()
const isSpent = await mixer.methods.isSpent(paddedNullifierHash).call()
assert(isValidRoot === true, 'Merkle tree assembled incorrectly') // Merkle tree assembled correctly
assert(isSpent === false, 'The note is spent') // The note is not spent
assert(leafIndex >= 0, 'Our deposit is not present in the tree') // Our deposit is present in the tree
// Compute merkle proof of our commitment
const { root, path_elements, path_index } = await tree.path(leafIndex)
// Prepare circuit input
const input = {
// Public snark inputs
root: root,
nullifierHash,
receiver: bigInt(receiver),
2019-09-26 17:46:49 +02:00
relayer: bigInt(0),
fee: bigInt(web3.utils.toWei('0.01')),
2019-09-23 20:45:20 +02:00
// Private snark inputs
nullifier: deposit.nullifier,
secret: deposit.secret,
pathElements: path_elements,
pathIndex: path_index,
}
console.log('Generating SNARK proof')
console.time('Proof time')
const proof = await websnarkUtils.genWitnessAndProve(groth16, input, circuit, proving_key)
const { pi_a, pi_b, pi_c, publicSignals } = websnarkUtils.toSolidityInput(proof)
console.timeEnd('Proof time')
console.log('Submitting withdraw transaction via relayer')
const account = ephemeral()
const HARDCODED_RELAYER_OPTS = {
txFee: 90,
fixedGasPrice: 22000000001,
gasPrice: 22000000001,
fixedGasLimit: 5000000,
gasLimit: 5000000,
verbose: true,
}
2019-09-26 17:46:49 +02:00
const provider = new GSNProvider('https://rinkeby.infura.io/v3/c7463beadf2144e68646ff049917b716', { signKey: account })
// const provider = new GSNDevProvider('http://localhost:8545', { signKey: account, HARDCODED_RELAYER_OPTS })
2019-09-23 20:45:20 +02:00
web3 = new Web3(provider)
const netId = await web3.eth.net.getId()
2019-09-26 17:46:49 +02:00
console.log('netId', netId)
2019-09-23 20:45:20 +02:00
// eslint-disable-next-line require-atomic-updates
mixer = new web3.eth.Contract(contractJson.abi, contractJson.networks[netId].address)
console.log('mixer address', contractJson.networks[netId].address)
2019-09-25 20:29:41 +02:00
const tx = await mixer.methods.withdrawViaRelayer(pi_a, pi_b, pi_c, publicSignals).send({ from: account.address, gas: '2000000' })
2019-09-23 20:45:20 +02:00
console.log('tx', tx)
console.log('Done')
}
/**
* Init web3, contracts, and snark
*/
2019-09-23 20:45:20 +02:00
let contractJson, erc20ContractJson, erc20mixerJson
2019-07-13 16:52:42 +02:00
async function init() {
2019-07-15 18:23:03 +02:00
if (inBrowser) {
// Initialize using injected web3 (Metamask)
// To assemble web version run `npm run browserify`
2019-07-16 22:49:45 +02:00
web3 = new Web3(window.web3.currentProvider, null, { transactionConfirmationBlocks: 1 })
2019-09-02 16:56:10 +02:00
contractJson = await (await fetch('build/contracts/ETHMixer.json')).json()
2019-07-16 19:20:16 +02:00
circuit = await (await fetch('build/circuits/withdraw.json')).json()
proving_key = await (await fetch('build/circuits/withdraw_proving_key.bin')).arrayBuffer()
MERKLE_TREE_HEIGHT = 16
2019-09-23 20:45:20 +02:00
ETH_AMOUNT = '30000000000000000'
EMPTY_ELEMENT = 1
2019-07-15 18:23:03 +02:00
} else {
// Initialize from local node
2019-07-16 22:49:45 +02:00
web3 = new Web3('http://localhost:8545', null, { transactionConfirmationBlocks: 1 })
2019-09-02 16:56:10 +02:00
contractJson = require('./build/contracts/ETHMixer.json')
2019-07-16 19:20:16 +02:00
circuit = require('./build/circuits/withdraw.json')
proving_key = fs.readFileSync('build/circuits/withdraw_proving_key.bin').buffer
require('dotenv').config()
MERKLE_TREE_HEIGHT = process.env.MERKLE_TREE_HEIGHT
2019-08-27 22:42:24 +02:00
ETH_AMOUNT = process.env.ETH_AMOUNT
2019-07-16 19:20:16 +02:00
EMPTY_ELEMENT = process.env.EMPTY_ELEMENT
2019-09-14 03:05:08 +02:00
ERC20_TOKEN = process.env.ERC20_TOKEN
erc20ContractJson = require('./build/contracts/ERC20Mock.json')
erc20mixerJson = require('./build/contracts/ERC20Mixer.json')
2019-07-15 18:23:03 +02:00
}
2019-07-16 19:20:16 +02:00
groth16 = await buildGroth16()
let netId = await web3.eth.net.getId()
2019-09-14 20:21:53 +02:00
if (contractJson.networks[netId]) {
const tx = await web3.eth.getTransaction(contractJson.networks[netId].transactionHash)
mixer = new web3.eth.Contract(contractJson.abi, contractJson.networks[netId].address)
mixer.deployedBlock = tx.blockNumber
}
2019-09-14 03:05:08 +02:00
2019-09-23 20:45:20 +02:00
if (erc20mixerJson) {
const tx3 = await web3.eth.getTransaction(erc20mixerJson.networks[netId].transactionHash)
erc20mixer = new web3.eth.Contract(erc20mixerJson.abi, erc20mixerJson.networks[netId].address)
erc20mixer.deployedBlock = tx3.blockNumber
}
2019-09-14 03:05:08 +02:00
if(ERC20_TOKEN === '') {
erc20 = new web3.eth.Contract(erc20ContractJson.abi, erc20ContractJson.networks[netId].address)
const tx2 = await web3.eth.getTransaction(erc20ContractJson.networks[netId].transactionHash)
erc20.deployedBlock = tx2.blockNumber
}
2019-07-16 19:20:16 +02:00
console.log('Loaded')
2019-07-13 16:52:42 +02:00
}
// ========== CLI related stuff below ==============
2019-07-13 16:45:08 +02:00
function printHelp(code = 0) {
console.log(`Usage:
2019-07-15 21:19:34 +02:00
Submit a deposit from default eth account and return the resulting note
2019-07-13 13:57:49 +02:00
$ ./cli.js deposit
2019-07-15 21:19:34 +02:00
2019-07-13 13:57:49 +02:00
Withdraw a note to 'receiver' account
2019-07-13 16:45:08 +02:00
$ ./cli.js withdraw <note> <receiver>
2019-07-19 19:08:47 +02:00
2019-07-17 23:59:04 +02:00
Check address balance
$ ./cli.js balance <address>
2019-07-15 21:19:34 +02:00
2019-07-13 13:57:49 +02:00
Example:
$ ./cli.js deposit
...
Your note: 0x1941fa999e2b4bfeec3ce53c2440c3bc991b1b84c9bb650ea19f8331baf621001e696487e2a2ee54541fa12f49498d71e24d00b1731a8ccd4f5f5126f3d9f400
2019-07-15 21:19:34 +02:00
2019-07-13 13:57:49 +02:00
$ ./cli.js withdraw 0x1941fa999e2b4bfeec3ce53c2440c3bc991b1b84c9bb650ea19f8331baf621001e696487e2a2ee54541fa12f49498d71e24d00b1731a8ccd4f5f5126f3d9f400 0xee6249BA80596A4890D1BD84dbf5E4322eA4E7f0
2019-07-16 19:20:16 +02:00
`)
process.exit(code)
2019-07-13 13:57:49 +02:00
}
2019-07-15 18:25:54 +02:00
if (inBrowser) {
2019-07-16 19:20:16 +02:00
window.deposit = deposit
2019-07-15 18:25:54 +02:00
window.withdraw = async () => {
2019-07-16 19:20:16 +02:00
const note = prompt('Enter the note to withdraw')
const receiver = (await web3.eth.getAccounts())[0]
await withdraw(note, receiver)
}
2019-09-23 20:45:20 +02:00
window.withdrawViaRelayer = async () => {
const note = prompt('Enter the note to withdrawViaRelayer')
const receiver = (await web3.eth.getAccounts())[0]
await withdrawViaRelayer(note, receiver)
}
2019-07-16 19:20:16 +02:00
init()
2019-07-15 18:25:54 +02:00
} else {
2019-07-16 19:20:16 +02:00
const args = process.argv.slice(2)
2019-07-15 18:25:54 +02:00
if (args.length === 0) {
2019-07-16 19:20:16 +02:00
printHelp()
2019-07-15 18:25:54 +02:00
} else {
switch (args[0]) {
2019-07-16 19:20:16 +02:00
case 'deposit':
if (args.length === 1) {
2019-07-16 22:49:45 +02:00
init().then(() => deposit()).then(() => process.exit(0)).catch(err => {console.log(err); process.exit(1)})
2019-09-14 03:05:08 +02:00
}
else
printHelp(1)
break
case 'depositErc20':
if (args.length === 1) {
init().then(() => depositErc20()).then(() => process.exit(0)).catch(err => {console.log(err); process.exit(1)})
2019-07-16 19:20:16 +02:00
}
2019-07-15 18:25:54 +02:00
else
2019-07-16 19:20:16 +02:00
printHelp(1)
break
case 'balance':
if (args.length === 2 && /^0x[0-9a-fA-F]{40}$/.test(args[1])) {
2019-07-16 22:49:45 +02:00
init().then(() => getBalance(args[1])).then(() => process.exit(0)).catch(err => {console.log(err); process.exit(1)})
2019-07-17 23:59:04 +02:00
} else
printHelp(1)
2019-07-16 19:20:16 +02:00
break
2019-09-14 20:21:53 +02:00
case 'balanceErc20':
if (args.length === 3 && /^0x[0-9a-fA-F]{40}$/.test(args[1]) && /^0x[0-9a-fA-F]{40}$/.test(args[2])) {
init().then(() => getBalanceErc20(args[1], args[2])).then(() => process.exit(0)).catch(err => {console.log(err); process.exit(1)})
} else
printHelp(1)
break
2019-07-16 19:20:16 +02:00
case 'withdraw':
2019-08-06 07:20:45 +02:00
if (args.length === 3 && /^0x[0-9a-fA-F]{124}$/.test(args[1]) && /^0x[0-9a-fA-F]{40}$/.test(args[2])) {
2019-07-16 22:49:45 +02:00
init().then(() => withdraw(args[1], args[2])).then(() => process.exit(0)).catch(err => {console.log(err); process.exit(1)})
2019-07-16 19:20:16 +02:00
}
2019-07-15 18:25:54 +02:00
else
2019-07-16 19:20:16 +02:00
printHelp(1)
break
2019-09-14 20:21:53 +02:00
case 'withdrawErc20':
if (args.length === 4 && /^0x[0-9a-fA-F]{124}$/.test(args[1]) && /^0x[0-9a-fA-F]{40}$/.test(args[2]) && /^0x[0-9a-fA-F]{40}$/.test(args[3])) {
init().then(() => withdrawErc20(args[1], args[2], args[3])).then(() => process.exit(0)).catch(err => {console.log(err); process.exit(1)})
}
else
printHelp(1)
break
2019-09-23 20:45:20 +02:00
case 'withdrawViaRelayer':
if (args.length === 3 && /^0x[0-9a-fA-F]{124}$/.test(args[1]) && /^0x[0-9a-fA-F]{40}$/.test(args[2])) {
init().then(() => withdrawViaRelayer(args[1], args[2])).then(() => process.exit(0)).catch(err => {console.log(err); process.exit(1)})
}
else
printHelp(1)
break
2019-08-01 15:46:41 +02:00
case 'auto':
if (args.length === 1) {
(async () => {
await init()
const note = await deposit()
await withdraw(note, (await web3.eth.getAccounts())[0])
process.exit(0)
})()
}
else
printHelp(1)
break
2019-07-15 18:25:54 +02:00
2019-07-16 19:20:16 +02:00
default:
printHelp(1)
2019-07-15 18:25:54 +02:00
}
}
}