-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·22 lines (22 loc) · 1.46 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
{
"name": "ethereum-blocks",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen --output-dir src/types/",
"build": "graph build",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ 1hive/ethereum-blocks",
"create-local": "graph create --node http://localhost:8020/ 1hive/ethereum-blocks",
"remove-local": "graph remove --node http://localhost:8020/ 1hive/ethereum-blocks",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 1hive/ethereum-blocks",
"deploy-rinkeby": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ 1hive/rinkeby-blocks",
"deploy-kovan": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ 1hive/kovan-blocks",
"deploy-goerli": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ 1hive/goerli-blocks",
"deploy-ropsten": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ 1hive/ropsten-blocks",
"deploy-poa": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ 1hive/poa-core-blocks",
"deploy-xdai": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ 1hive/xdai-blocks"
},
"dependencies": {
"@graphprotocol/graph-cli": "^0.19.0",
"@graphprotocol/graph-ts": "0.17.0"
}
}