-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
34 lines (34 loc) · 2.84 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
{
"name": "daohaus-moloch-v2-factory",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy:studio": "node manifests/deploy-prep.js mainnet && graph deploy --studio daohaus",
"create-local": "graph create --node http://localhost:8020/ odyssy-automaton/daohaus",
"remove-local": "graph remove --node http://localhost:8020/ odyssy-automaton/daohaus",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 odyssy-automaton/daohaus",
"build:all": "yarn codegen && yarn build",
"prepare:mainnet": "node manifests/deploy-prep.js mainnet",
"prepare:xdai": "node manifests/deploy-prep.js xdai",
"prepare:matic": "node manifests/deploy-prep.js matic",
"prepare:arbitrum": "node manifests/deploy-prep.js arbitrum-one",
"prepare:celo": "node manifests/deploy-prep.js celo",
"prepare:optimism": "node manifests/deploy-prep.js optimism",
"prepare:goerli": "node manifests/deploy-prep.js goerli",
"deploy:mainnet": "yarn prepare:mainnet && yarn build:all && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ odyssy-automaton/daohaus",
"deploy:xdai": "yarn prepare:xdai && yarn build:all && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ odyssy-automaton/daohaus-xdai",
"deploy:matic": "yarn prepare:mainnet && yarn build:all && yarn prepare:matic && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ odyssy-automaton/daohaus-matic",
"deploy:test": "yarn prepare:xdai && yarn build:all && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ odyssy-automaton/daohaus-sandbox",
"deploy:arbitrum": "yarn prepare:mainnet && yarn build:all && yarn prepare:arbitrum && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ odyssy-automaton/daohaus-arbitrum",
"deploy:celo": "yarn prepare:mainnet && yarn build:all && yarn prepare:celo && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ odyssy-automaton/daohaus-celo",
"deploy:optimism": "yarn prepare:mainnet && yarn build:all && yarn prepare:optimism && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ odyssy-automaton/daohaus-optimism",
"deploy:goerli": "yarn prepare:mainnet && yarn build:all && yarn prepare:goerli && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ odyssy-automaton/daohaus-goerli",
"deploy:all": "yarn deploy:xdai && yarn deploy:matic && yarn deploy:arbitrum && yarn deploy:celo && yarn deploy:optimism && yarn deploy:goerli"
},
"dependencies": {
"@graphprotocol/graph-ts": "^0.22.1",
"js-yaml": "^3.13.1",
"minimist": "^1.2.6"
}
}