-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
20 lines (20 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "dydx-subgraph",
"license": "Apache 2.0",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"prepare:ropsten": "mustache config/ropsten.json subgraph.template.yaml > subgraph.yaml",
"prepare:mainnet": "mustache config/mainnet.json subgraph.template.yaml > subgraph.yaml",
"deploy:ropsten": "yarn prepare:ropsten && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ dydxfoundation/dydx-ropsten",
"deploy:mainnet": "yarn prepare:mainnet && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ dydxfoundation/dydx",
"create-local": "graph create --node http://localhost:8020/ fraypoint/merkle",
"remove-local": "graph remove --node http://localhost:8020/ fraypoint/merkle",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 fraypoint/merkle"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.22.1",
"@graphprotocol/graph-ts": "0.22.0",
"mustache": "^4.2.0"
}
}