-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.37 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
{
"name": "chainsaw",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"besu:docker": "docker run -p 8545:8545 --mount type=bind,source=/tmp/besu/dev,target=/var/lib/besu hyperledger/besu:latest --miner-enabled --miner-coinbase fe3b557e8fb62b89f4916b721be55ceb828dbd73 --rpc-http-enabled --rpc-http-cors-origins=\"all\" --host-allowlist=\"*\" --network=dev --data-path=/var/lib/besu",
"besu:test": "besu --config-file=./besu_conf/besu_test_conf.toml",
"besu:ropsten": "besu --network=ropsten --rpc-http-enabled --rpc-http-cors-origins 'http://remix.ethereum.org'",
"besu:rinkeby": "besu --network=rinkeby --data-path=<path>/<rinkebydata-path>",
"besu:goerli": "besu --network=goerli --data-path=<path>/<goerlidata-path>",
"besu:main": "besu --rpc-http-enabled",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/siddhantprateek/chainsaw.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/siddhantprateek/chainsaw/issues"
},
"homepage": "https://github.com/siddhantprateek/chainsaw#readme",
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"@truffle/contract": "^4.6.7",
"@truffle/hdwallet-provider": "^2.1.1"
}
}