-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
25 lines (25 loc) · 1.09 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
{
"name": "simple-busd-subgraph",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ simple-busd-subgraph",
"create-local": "graph create --node http://localhost:8020/ simple-busd-subgraph",
"remove-local": "graph remove --node http://localhost:8020/ simple-busd-subgraph",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 simple-busd-subgraph",
"test": "graph test",
"randomize": "node -e \"m=require('mustache'); fs.writeFileSync('subgraph.yaml', m.render(fs.readFileSync('subgraph.template.yaml').toString(), {startBlock: Math.floor(Math.sqrt(Math.random())*32_000_000)+176_416}))\"",
"get-peer-id": "node scripts/getPeerIdFromGatewayKey.js query-gateway/keys/busdSubgraphPhaseTwo.key"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.61.0",
"@graphprotocol/graph-ts": "0.30.0",
"mustache": "^4.2.0"
},
"devDependencies": {
"libp2p": "^1.2.3",
"matchstick-as": "0.5.0",
"peer-id": "^0.16.0"
}
}