-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
37 lines (37 loc) · 1.38 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "rollupnc",
"version": "1.0.0",
"description": "An implementation of [rollup](https://github.com/barryWhiteHat/roll_up) in which the relayer **does not** publish transaction data to the main chain, but only publishes the new Merkle root at every update. This provides gas savings but not data availability guarantees: we assume the operator will always provide data to users so they can update their leaf.",
"main": "utils/1_generate_multiple_sample.js",
"directories": {
"test": "test"
},
"scripts": {
"travis": "nohup npx npm run rpc",
"test": "npx truffle test",
"rpc": "npx ganache-cli -d --mnemonic 'close fly dolphin oblige weasel layer sail clock forget tree method effort remove quiz whip'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rollupnc/RollupNC.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rollupnc/RollupNC/issues"
},
"homepage": "https://github.com/rollupnc/RollupNC#readme",
"dependencies": {
"blake-hash": "^1.1.0",
"circom": "0.0.30",
"ethereumjs-tx": "^1.3.7",
"ganache-cli": "^6.4.1",
"npx": "^10.2.0",
"openzeppelin-solidity": "^2.3.0",
"original-require": "^1.0.1",
"snarkjs": "git+https://github.com/adria0/snarkjs.git ",
"truffle": "^5.0.10",
"truffle-hdwallet-provider": "^1.0.10",
"web3": "^1.0.0-beta.52"
}
}