-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
32 lines (32 loc) · 2.2 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
{
"name": "multisig",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"prepare:mainnet": "mustache config/mainnet.json subgraph.template.yaml > subgraph.yaml",
"prepare:rinkeby": "mustache config/rinkeby.json subgraph.template.yaml > subgraph.yaml",
"prepare:ropsten": "mustache config/ropsten.json subgraph.template.yaml > subgraph.yaml",
"prepare:kovan": "mustache config/kovan.json subgraph.template.yaml > subgraph.yaml",
"prepare:goerli": "mustache config/goerli.json subgraph.template.yaml > subgraph.yaml",
"prepare:polygon": "mustache config/polygon.json subgraph-L2.template.yaml > subgraph.yaml",
"prepare:mumbai": "mustache config/mumbai.json subgraph-L2.template.yaml > subgraph.yaml",
"deploy:mainnet": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ gjeanmart/gnosis-safe-mainnet",
"deploy:rinkeby": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ gjeanmart/gnosis-safe-rinkeby",
"deploy:ropsten": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ gjeanmart/gnosis-safe-ropsten",
"deploy:kovan": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ gjeanmart/gnosis-safe-kovan",
"deploy:goerli": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ gjeanmart/gnosis-safe-goerli",
"deploy:polygon": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ gjeanmart/gnosis-safe-polygon",
"deploy:mumbai": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ gjeanmart/gnosis-safe-mumbai",
"create-local": "graph create --node http://localhost:8020/ gjeanmart/gnosis-safe",
"remove-local": "graph remove --node http://localhost:8020/ gjeanmart/gnosis-safe",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 gjeanmart/gnosis-safe"
},
"dependencies": {
"@graphprotocol/graph-cli": "^0.33.0",
"@graphprotocol/graph-ts": "^0.27.0"
},
"devDependencies": {
"mustache": "^3.1.0"
}
}