forked from rollupnc/RollupNC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1.01 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
{
"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": "deployMimcHash.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"deploy-mimc":"node deployMimcHash.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/barryWhiteHat/RollupNC.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/barryWhiteHat/RollupNC/issues"
},
"homepage": "https://github.com/barryWhiteHat/RollupNC#readme",
"dependencies": {
"ethereumjs-tx": "^1.3.7",
"truffle-hdwallet-provider": "^1.0.5",
"web3": "1.0.0-beta.34"
}
}