-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (46 loc) · 4.73 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "subgraph-pangolin",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"template:testnet-pangolin": "mustache config/testnet.json subgraph-pangolin.template.yaml > subgraph.yaml && mustache config/testnet.json schema-pangolin.template.graphql > schema.graphql && mustache config/testnet.json src/mappings/helpers.template.ts > src/mappings/helpers.ts && mustache config/testnet.json src/mappings/pricing.template.ts > src/mappings/pricing.ts",
"template:testnet-blocks": "mustache config/testnet.json subgraph-blocks.template.yaml > subgraph.yaml && mustache config/testnet.json schema-blocks.template.graphql > schema.graphql",
"template:testnet-governor": "mustache config/testnet.json subgraph-governor.template.yaml > subgraph.yaml && mustache config/testnet.json schema-governor.template.graphql > schema.graphql",
"template:mainnet-pangolin": "mustache config/mainnet.json subgraph-pangolin.template.yaml > subgraph.yaml && mustache config/mainnet.json schema-pangolin.template.graphql > schema.graphql&& mustache config/mainnet.json src/mappings/helpers.template.ts > src/mappings/helpers.ts && mustache config/mainnet.json src/mappings/pricing.template.ts > src/mappings/pricing.ts",
"template:mainnet-blocks": "mustache config/mainnet.json subgraph-blocks.template.yaml > subgraph.yaml && mustache config/mainnet.json schema-blocks.template.graphql > schema.graphql",
"template:mainnet-governor": "mustache config/mainnet.json subgraph-governor.template.yaml > subgraph.yaml && mustache config/mainnet.json schema-governor.template.graphql > schema.graphql",
"build": "graph codegen && graph build",
"create:testnet-pangolin": "graph create --node https://graph-hedera-test.pangolin.network/admin pangolin",
"deploy:testnet-pangolin": "graph deploy --node https://graph-hedera-test.pangolin.network/admin --ipfs https://ipfs.pangolin.network pangolin",
"remove:testnet-pangolin": "graph remove --node https://graph-hedera-test.pangolin.network/admin pangolin",
"create:testnet-blocks": "graph create --node https://graph-hedera-test.pangolin.network/admin blocks",
"deploy:testnet-blocks": "graph deploy --node https://graph-hedera-test.pangolin.network/admin --ipfs https://ipfs.pangolin.network blocks",
"remove:testnet-blocks": "graph remove --node https://graph-hedera-test.pangolin.network/admin blocks",
"create:testnet-governor": "graph create --node https://graph-hedera-test.pangolin.network/admin governor",
"deploy:testnet-governor": "graph deploy --node https://graph-hedera-test.pangolin.network/admin --ipfs https://ipfs.pangolin.network governor",
"remove:testnet-governor": "graph remove --node https://graph-hedera-test.pangolin.network/admin governor",
"create:mainnet-pangolin": "graph create --node https://graph-hedera-main.pangolin.network/admin pangolin",
"deploy:mainnet-pangolin": "graph deploy --node https://graph-hedera-main.pangolin.network/admin --ipfs https://ipfs.pangolin.network pangolin",
"remove:mainnet-pangolin": "graph remove --node https://graph-hedera-main.pangolin.network/admin pangolin",
"create:mainnet-blocks": "graph create --node https://graph-hedera-main.pangolin.network/admin blocks",
"deploy:mainnet-blocks": "graph deploy --node https://graph-hedera-main.pangolin.network/admin --ipfs https://ipfs.pangolin.network blocks",
"remove:mainnet-blocks": "graph remove --node https://graph-hedera-main.pangolin.network/admin blocks",
"create:mainnet-governor": "graph create --node https://graph-hedera-main.pangolin.network/admin governor",
"deploy:mainnet-governor": "graph deploy --node https://graph-hedera-main.pangolin.network/admin --ipfs https://ipfs.pangolin.network governor",
"remove:mainnet-governor": "graph remove --node https://graph-hedera-main.pangolin.network/admin governor",
"create:local-pangolin": "graph create --node http://localhost:8020 pangolin",
"deploy:local-pangolin": "graph deploy --node http://localhost:8020 --ipfs http://localhost:5001 pangolin",
"remove:local-pangolin": "graph remove --node http://localhost:8020 pangolin",
"create:local-blocks": "graph create --node http://localhost:8020 blocks",
"deploy:local-blocks": "graph deploy --node http://localhost:8020 --ipfs http://localhost:5001 blocks",
"remove:local-blocks": "graph remove --node http://localhost:8020 blocks",
"create:local-governor": "graph create --node http://localhost:8020 governor",
"deploy:local-governor": "graph deploy --node http://localhost:8020 --ipfs http://localhost:5001 governor",
"remove:local-governor": "graph remove --node http://localhost:8020 governor"
},
"devDependencies": {
"@graphprotocol/graph-cli": "0.44.0",
"@graphprotocol/graph-ts": "0.29.3",
"mustache": "4.2.0"
}
}