-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
45 lines (42 loc) · 2.53 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
{
"name": "poap-mainnet-subgraph",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"prepare:ethereum": "mustache config/ethereum.json subgraph.template.yaml > subgraph.yaml",
"prepare:gnosis": "mustache config/gnosis.json subgraph.template.yaml > subgraph.yaml",
"prepare:chiado": "mustache config/chiado.json subgraph.template.yaml > subgraph.yaml",
"prepare:sepolia": "mustache config/sepolia.json subgraph.template.yaml > subgraph.yaml",
"prepare:chiliz-dev": "mustache config/chiliz-dev.json subgraph.template.yaml > subgraph.yaml",
"prepare:chiliz": "mustache config/chiliz.json subgraph.template.yaml > subgraph.yaml",
"prepare:base-sepolia": "mustache config/base-sepolia.json subgraph.template.yaml > subgraph.yaml",
"prepare:base": "mustache config/base.json subgraph.template.yaml > subgraph.yaml",
"prepare:ape-curtis": "mustache config/ape-curtis.json subgraph.template.yaml > subgraph.yaml",
"prepare:ape": "mustache config/ape.json subgraph.template.yaml > subgraph.yaml",
"prepare:arbitrium-sepolia": "mustache config/arbitrium-sepolia.json subgraph.template.yaml > subgraph.yaml",
"prepare:arbitrium": "mustache config/arbitrium.json subgraph.template.yaml > subgraph.yaml",
"deploy:ethereum": "goldsky subgraph deploy poaps-ethereum/1.0.0",
"deploy:gnosis": "goldsky subgraph deploy poaps-gnosis/1.0.0",
"deploy:chiado": "goldsky subgraph deploy poaps-chiado/1.0.0",
"deploy:sepolia": "goldsky subgraph deploy poaps-sepolia/1.0.0",
"deploy:chiliz-dev": "goldsky subgraph deploy poaps-chiliz-dev/1.0.0",
"deploy:chiliz": "goldsky subgraph deploy poaps-chiliz/1.0.0",
"deploy:base-sepolia": "goldsky subgraph deploy poaps-base-sepolia/1.0.0",
"deploy:base": "goldsky subgraph deploy poaps-base/1.0.0",
"deploy:ape-curtis": "goldsky subgraph deploy poaps-ape-curtis/1.0.0",
"deploy:ape": "goldsky subgraph deploy poaps-ape/1.0.0",
"deploy:arbitrium-sepolia": "goldsky subgraph deploy poaps-arbitrium-sepolia/1.0.0",
"deploy:arbitrium": "goldsky subgraph deploy poaps-arbitrium/1.0.0",
"create-local": "graph create --node http://localhost:8020/ poap-xyz/poap",
"remove-local": "graph remove --node http://localhost:8020/ poap-xyz/poap",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 poap-xyz/poap"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.18.0",
"@graphprotocol/graph-ts": "0.18.0"
},
"devDependencies": {
"mustache": "^4.0.1"
}
}