-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 3.12 KB
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
35
36
37
38
39
{
"name": "maskbox-subgraph",
"license": "MIT",
"scripts": {
"prepare-subgraph:mainnet": "mustache config/mainnet.json templates/subgraph.yaml.template > subgraph.yaml",
"prepare-subgraph:ropsten": "mustache config/ropsten.json templates/subgraph.yaml.template > subgraph.yaml",
"prepare-subgraph:rinkeby": "mustache config/rinkeby.json templates/subgraph.yaml.template > subgraph.yaml",
"prepare-subgraph:arbitrum": "mustache config/arbitrum.json templates/subgraph.yaml.template > subgraph.yaml",
"prepare-subgraph:mumbai": "mustache config/mumbai.json templates/subgraph.yaml.template > subgraph.yaml",
"prepare-subgraph:bsc": "mustache config/bsc.json templates/subgraph.yaml.template > subgraph.yaml",
"prepare-constants:mainnet": "mustache config/mainnet.json templates/constants.ts.template > src/constants.ts",
"prepare-constants:ropsten": "mustache config/ropsten.json templates/constants.ts.template > src/constants.ts",
"prepare-constants:rinkeby": "mustache config/rinkeby.json templates/constants.ts.template > src/constants.ts",
"prepare-constants:mumbai": "mustache config/mumbai.json templates/constants.ts.template > src/constants.ts",
"prepare-constants:bsc": "mustache config/bsc.json templates/constants.ts.template > src/constants.ts",
"prepare-constants:polygon": "mustache config/polygon.json templates/constants.ts.template > src/constants.ts",
"prepare-subgraph:polygon": "mustache config/polygon.json templates/subgraph.yaml.template > subgraph.yaml",
"deploy-thegraph-polygon": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ dimensiondev/mask-box-polygon",
"codegen": "graph codegen",
"build": "graph build",
"deploy-thegraph-mainnet": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ dimensiondev/mask-box-mainnet",
"deploy-thegraph-ropsten": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ dimensiondev/mask-box-ropsten",
"deploy-thegraph-rinkeby": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ dimensiondev/mask-box-rinkeby",
"deploy-thegraph-arbitrum": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ dimensiondev/mask-box-arbitrum",
"deploy-thegraph-mumbai": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ dimensiondev/mask-box-mumbai",
"deploy-thegraph-bsc": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ dimensiondev/mask-box-bsc-mainnet",
"create-local": "graph create --node http://localhost:8020/ dimensiondev/mask-box-ropsten",
"remove-local": "graph remove --node http://localhost:8020/ dimensiondev/mask-box-ropsten",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 dimensiondev/mask-box-ropsten"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.19.0",
"@graphprotocol/graph-ts": "0.19.0",
"mustache": "^4.1.0"
},
"devDependencies": {
"typescript": "^4.1.3"
}
}