-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
26 lines (26 loc) · 1.56 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
{
"name": "drips-subgraph-mainnet-v2",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy --node https://api.studio.thegraph.com/deploy/ drips-subgraph-mainnet-v2",
"deploy:dev": "graph deploy --product hosted-service evvvritt/drips-dev",
"deploy:ethereum": "yarn prepare:ethereum && graph deploy --product hosted-service gh0stwheel/drips-on-ethereum",
"deploy:rinkeby": "yarn prepare:rinkeby && graph deploy --product hosted-service gh0stwheel/drips-on-rinkeby",
"deploy:matic": "yarn prepare:matic && graph deploy --product hosted-service gh0stwheel/drips-on-matic",
"deploy:mumbai": "yarn prepare:mumbai && graph deploy --product hosted-service gh0stwheel/drips-on-mumbai",
"create-local": "graph create --node http://localhost:8020/ drips-subgraph-mainnet-v2",
"remove-local": "graph remove --node http://localhost:8020/ drips-subgraph-mainnet-v2",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 drips-subgraph-mainnet-v2",
"prepare:ethereum": "mustache config/ethereum.json subgraph.template.yaml > subgraph.yaml",
"prepare:rinkeby": "mustache config/rinkeby.json subgraph.template.yaml > subgraph.yaml",
"prepare:matic": "mustache config/matic.json subgraph.template.yaml > subgraph.yaml",
"prepare:mumbai": "mustache config/mumbai.json subgraph.template.yaml > subgraph.yaml"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.26.0",
"@graphprotocol/graph-ts": "^0.24.1",
"mustache": "^4.2.0"
}
}