-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (39 loc) · 2.82 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
{
"name": "subgraph-pangolin",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"template": "node src/templateExecutor.js",
"codegen": "graph codegen",
"build": "graph codegen && graph build",
"create:avalanche": "graph create --node https://graph-avalanche.pangolin.network/admin",
"remove:avalanche": "graph remove --node https://graph-avalanche.pangolin.network/admin",
"deploy:avalanche": "graph deploy --node https://graph-avalanche.pangolin.network/admin --ipfs https://ipfs.pangolin.network",
"create:flare": "graph create --node https://flare.pangolin.network/admin",
"remove:flare": "graph remove --node https://flare.pangolin.network/admin",
"deploy:flare": "graph deploy --node https://flare.pangolin.network/admin --ipfs https://ipfs.pangolin.network",
"create:evmos-main": "graph create --node https://graph-evmos-main.pangolin.network/admin",
"remove:evmos-main": "graph remove --node https://graph-evmos-main.pangolin.network/admin",
"deploy:evmos-main": "graph deploy --node https://graph-evmos-main.pangolin.network/admin --ipfs https://graph-evmos-main.pangolin.network/ipfs",
"create:evmos-main2": "graph create --node https://graph-evmos-main2.pangolin.network/admin",
"remove:evmos-main2": "graph remove --node https://graph-evmos-main2.pangolin.network/admin",
"deploy:evmos-main2": "graph deploy --node https://graph-evmos-main2.pangolin.network/admin --ipfs https://ipfs.pangolin.network",
"create:evmos-test": "graph create --node https://graph-evmos-test.pangolin.network/admin",
"remove:evmos-test": "graph remove --node https://graph-evmos-test.pangolin.network/admin",
"deploy:evmos-test": "graph deploy --node https://graph-evmos-test.pangolin.network/admin --ipfs https://graph-evmos-test.pangolin.network/ipfs",
"create:evmos-test2": "graph create --node https://graph-evmos-test2.pangolin.network/admin",
"remove:evmos-test2": "graph remove --node https://graph-evmos-test2.pangolin.network/admin",
"deploy:evmos-test2": "graph deploy --node https://graph-evmos-test2.pangolin.network/admin --ipfs https://ipfs.pangolin.network",
"create:skale-bellatrix": "graph create --node https://graph-skale-bellatrix.pangolin.network/admin",
"remove:skale-bellatrix": "graph remove --node https://graph-skale-bellatrix.pangolin.network/admin",
"deploy:skale-bellatrix": "graph deploy --node https://graph-skale-bellatrix.pangolin.network/admin --ipfs https://ipfs.pangolin.network",
"create:local": "graph create --node http://localhost:8020",
"remove:local": "graph remove --node http://localhost:8020",
"deploy:local": "graph deploy --node http://localhost:8020 --ipfs http://localhost:5001"
},
"devDependencies": {
"@graphprotocol/graph-cli": "0.44.0",
"@graphprotocol/graph-ts": "0.29.3",
"mustache": "4.2.0"
}
}