mirror of
https://github.com/tornadocash/tornado-core.git
synced 2024-11-22 09:47:13 +01:00
styling final
This commit is contained in:
parent
7eaa5fcb4f
commit
b0c896c681
@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"env": {
|
"env": {
|
||||||
"node": true,
|
"node": true,
|
||||||
|
"browser": true,
|
||||||
"es6": true,
|
"es6": true,
|
||||||
"mocha": true
|
"mocha": true
|
||||||
},
|
},
|
||||||
|
10
cli.js
10
cli.js
@ -79,7 +79,7 @@ async function withdraw(note, receiver) {
|
|||||||
async function init() {
|
async function init() {
|
||||||
let contractJson
|
let contractJson
|
||||||
if (inBrowser) {
|
if (inBrowser) {
|
||||||
web3 = new Web3(window.web3.currentProvider, null, {transactionConfirmationBlocks: 1})
|
web3 = new Web3(window.web3.currentProvider, null, { transactionConfirmationBlocks: 1 })
|
||||||
contractJson = await (await fetch('build/contracts/Mixer.json')).json()
|
contractJson = await (await fetch('build/contracts/Mixer.json')).json()
|
||||||
circuit = await (await fetch('build/circuits/withdraw.json')).json()
|
circuit = await (await fetch('build/circuits/withdraw.json')).json()
|
||||||
proving_key = await (await fetch('build/circuits/withdraw_proving_key.bin')).arrayBuffer()
|
proving_key = await (await fetch('build/circuits/withdraw_proving_key.bin')).arrayBuffer()
|
||||||
@ -87,7 +87,7 @@ async function init() {
|
|||||||
AMOUNT = 1e18
|
AMOUNT = 1e18
|
||||||
EMPTY_ELEMENT = 0
|
EMPTY_ELEMENT = 0
|
||||||
} else {
|
} else {
|
||||||
web3 = new Web3('http://localhost:8545', null, {transactionConfirmationBlocks: 1})
|
web3 = new Web3('http://localhost:8545', null, { transactionConfirmationBlocks: 1 })
|
||||||
contractJson = require('./build/contracts/Mixer.json')
|
contractJson = require('./build/contracts/Mixer.json')
|
||||||
circuit = require('./build/circuits/withdraw.json')
|
circuit = require('./build/circuits/withdraw.json')
|
||||||
proving_key = fs.readFileSync('build/circuits/withdraw_proving_key.bin').buffer
|
proving_key = fs.readFileSync('build/circuits/withdraw_proving_key.bin').buffer
|
||||||
@ -140,19 +140,19 @@ if (inBrowser) {
|
|||||||
switch (args[0]) {
|
switch (args[0]) {
|
||||||
case 'deposit':
|
case 'deposit':
|
||||||
if (args.length === 1) {
|
if (args.length === 1) {
|
||||||
init().then(async () => deposit()).then(() => process.exit(0)).catch(err => {console.log(err); process.exit(1)})
|
init().then(() => deposit()).then(() => process.exit(0)).catch(err => {console.log(err); process.exit(1)})
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
printHelp(1)
|
printHelp(1)
|
||||||
break
|
break
|
||||||
case 'balance':
|
case 'balance':
|
||||||
if (args.length === 2 && /^0x[0-9a-fA-F]{40}$/.test(args[1])) {
|
if (args.length === 2 && /^0x[0-9a-fA-F]{40}$/.test(args[1])) {
|
||||||
init().then(async () => getBalance(args[1])).then(() => process.exit(0)).catch(err => {console.log(err); process.exit(1)})
|
init().then(() => getBalance(args[1])).then(() => process.exit(0)).catch(err => {console.log(err); process.exit(1)})
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
case 'withdraw':
|
case 'withdraw':
|
||||||
if (args.length === 3 && /^0x[0-9a-fA-F]{128}$/.test(args[1]) && /^0x[0-9a-fA-F]{40}$/.test(args[2])) {
|
if (args.length === 3 && /^0x[0-9a-fA-F]{128}$/.test(args[1]) && /^0x[0-9a-fA-F]{40}$/.test(args[2])) {
|
||||||
init().then(async () => withdraw(args[1], args[2])).then(() => process.exit(0)).catch(err => {console.log(err); process.exit(1)})
|
init().then(() => withdraw(args[1], args[2])).then(() => process.exit(0)).catch(err => {console.log(err); process.exit(1)})
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
printHelp(1)
|
printHelp(1)
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
/* global artifacts */
|
||||||
const Migrations = artifacts.require('Migrations')
|
const Migrations = artifacts.require('Migrations')
|
||||||
|
|
||||||
module.exports = function(deployer) {
|
module.exports = function(deployer) {
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
/* global artifacts */
|
||||||
const path = require('path')
|
const path = require('path')
|
||||||
|
|
||||||
const mimcGenContract = require('circomlib/src/mimcsponge_gencontract.js')
|
const mimcGenContract = require('circomlib/src/mimcsponge_gencontract.js')
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
/* global artifacts */
|
||||||
require('dotenv').config()
|
require('dotenv').config()
|
||||||
const Verifier = artifacts.require('Verifier')
|
const Verifier = artifacts.require('Verifier')
|
||||||
|
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
/* global artifacts */
|
||||||
require('dotenv').config({ path: '../.env' })
|
require('dotenv').config({ path: '../.env' })
|
||||||
const Mixer = artifacts.require('Mixer')
|
const Mixer = artifacts.require('Mixer')
|
||||||
const Verifier = artifacts.require('Verifier')
|
const Verifier = artifacts.require('Verifier')
|
||||||
|
@ -13,7 +13,8 @@
|
|||||||
"test": "npx truffle test",
|
"test": "npx truffle test",
|
||||||
"migrate": "npx truffle migrate --network kovan --reset",
|
"migrate": "npx truffle migrate --network kovan --reset",
|
||||||
"migrate:dev": "npx truffle migrate --network development --reset",
|
"migrate:dev": "npx truffle migrate --network development --reset",
|
||||||
"browserify": "npx browserify cli.js -o index.js --exclude worker_threads"
|
"browserify": "npx browserify cli.js -o index.js --exclude worker_threads",
|
||||||
|
"eslint": "npx eslint ."
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "",
|
"author": "",
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
let bigInt = require('snarkjs/src/bigint')
|
let bigInt = require('snarkjs/src/bigint')
|
||||||
|
const utils = require('../scripts/utils')
|
||||||
|
|
||||||
const express = require('express')
|
const express = require('express')
|
||||||
const app = express()
|
const app = express()
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/*global artifacts, web3, contract, assert*/
|
/* global artifacts, web3, contract, assert */
|
||||||
require('chai')
|
require('chai')
|
||||||
.use(require('bn-chai')(web3.utils.BN))
|
.use(require('bn-chai')(web3.utils.BN))
|
||||||
.use(require('chai-as-promised'))
|
.use(require('chai-as-promised'))
|
||||||
|
Loading…
Reference in New Issue
Block a user