-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (61 loc) · 5.19 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@openformat/subgraph",
"version": "0.1.1",
"scripts": {
"reinstall": "rm -rf .pnp* && yarn",
"clean": "rm -rf build/ generated/",
"prepare:polygon": "mustache networks/polygon.json subgraph.template.yaml subgraph.polygon.yaml",
"prepare:local": "mustache networks/local.json subgraph.template.yaml subgraph.local.yaml",
"prepare:base-sepolia": "mustache networks/base-sepolia.json subgraph.template.yaml subgraph.base-sepolia.yaml",
"prepare:base": "mustache networks/base.json subgraph.template.yaml subgraph.base.yaml",
"prepare:aurora": "mustache networks/aurora.json subgraph.template.yaml subgraph.aurora.yaml",
"prepare:aurora-testnet": "mustache networks/aurora-testnet.json subgraph.template.yaml subgraph.aurora-testnet.yaml",
"prepare:arbitrum-sepolia": "mustache networks/arbitrum-sepolia.json subgraph.template.yaml subgraph.arbitrum-sepolia.yaml",
"prepare:arbitrum-one": "mustache networks/arbitrum-one.json subgraph.template.yaml subgraph.arbitrum-one.yaml",
"prepare:arbitrum-sepolia-staging": "mustache networks/arbitrum-sepolia-staging.json subgraph.template.yaml subgraph.arbitrum-sepolia-staging.yaml",
"prepare:polygon-amoy": "mustache networks/polygon-amoy.json subgraph.template.yaml subgraph.polygon-amoy.yaml",
"prepare:turbo": "mustache networks/turbo.json subgraph.template.yaml subgraph.turbo.yaml",
"create:local": "graph create open-format-local --node http://0.0.0.0:8020",
"create:aurora": "dotenv cross-var -- graph create open-format/aurora --node https://admin:%GRAPH_NODE_PASSWORD%@%GRAPH_NODE_URL%",
"create:aurora-testnet": "dotenv cross-var -- graph create open-format/aurora-testnet --node https://admin:%GRAPH_NODE_PASSWORD%@%GRAPH_NODE_URL%",
"create:turbo": "graph create open-format-local --node http://127.0.0.1:8020",
"gen:polygon": "graph codegen subgraph.polygon.yaml",
"gen:base-sepolia": "graph codegen subgraph.base-sepolia.yaml",
"gen:base": "graph codegen subgraph.base.yaml",
"gen:aurora": "graph codegen subgraph.aurora.yaml",
"gen:aurora-testnet": "graph codegen subgraph.aurora-testnet.yaml",
"gen:arbitrum-sepolia": "graph codegen subgraph.arbitrum-sepolia.yaml",
"gen:arbitrum-sepolia-staging": "graph codegen subgraph.arbitrum-sepolia-staging.yaml",
"gen:arbitrum-one": "graph codegen subgraph.arbitrum-one.yaml",
"gen:local": "graph codegen subgraph.local.yaml",
"gen:polygon-amoy": "graph codegen subgraph.polygon-amoy.yaml",
"gen:turbo": "graph codegen subgraph.turbo.yaml",
"deploy:local": "graph deploy open-format-local --ipfs http://0.0.0.0:5001 --node http://0.0.0.0:8020 subgraph.local.yaml",
"deploy:base-sepolia": "graph deploy --studio open-format-base-sepolia subgraph.base-sepolia.yaml",
"deploy:base": "graph deploy --studio open-format-base subgraph.base.yaml",
"deploy:aurora": "graph deploy --studio open-format-aurora subgraph.aurora.yaml",
"deploy:aurora-testnet": "graph deploy --studio open-format-aurora-testnet subgraph.aurora-testnet.yaml",
"deploy:arbitrum-one": "graph deploy --studio open-format-arbitrum-one subgraph.arbitrum-one.yaml",
"deploy:arbitrum-sepolia": "graph deploy --studio open-format-arbitrum-sepolia subgraph.arbitrum-sepolia.yaml",
"deploy:turbo": "graph deploy open-format-local --ipfs https://ipfs.satsuma.xyz --node http://127.0.0.1:8020 subgraph.turbo.yaml",
"remove:aurora-testnet": "dotenv cross-var -- graph remove --node https://admin:%GRAPH_NODE_PASSWORD%@%GRAPH_NODE_URL% open-format/aurora-testnet",
"deploy-alchemy:polygon": "dotenv cross-var -- graph deploy open-format-polygon --version-label %ALCHEMY_SUBGRAPH_VERSION_POLYGON_MAINNET% --node https://subgraphs.alchemy.com/api/subgraphs/deploy --deploy-key %ALCHEMY_DEPLOY_KEY% --ipfs https://ipfs.satsuma.xyz subgraph.polygon.yaml",
"deploy-alchemy:polygon-amoy": "dotenv cross-var -- graph deploy open-format-amoy --version-label %ALCHEMY_SUBGRAPH_VERSION_POLYGON_AMOY% --node https://subgraphs.alchemy.com/api/subgraphs/deploy --deploy-key %ALCHEMY_DEPLOY_KEY% --ipfs https://ipfs.satsuma.xyz subgraph.amoy.yaml",
"deploy-alchemy:arbitrum-sepolia": "dotenv cross-var -- graph deploy open-format-arbitrum-sepolia --version-label %ALCHEMY_SUBGRAPH_VERSION_ARBITRUM_SEPOLIA% --node https://subgraphs.alchemy.com/api/subgraphs/deploy --deploy-key %ALCHEMY_DEPLOY_KEY% --ipfs https://ipfs.satsuma.xyz subgraph.arbitrum-sepolia.yaml",
"deploy-alchemy:arbitrum-sepolia-staging": "dotenv cross-var -- graph deploy open-format-arbitrum-sepolia-staging --version-label %ALCHEMY_SUBGRAPH_VERSION_ARBITRUM_SEPOLIA_STAGING% --node https://subgraphs.alchemy.com/api/subgraphs/deploy --deploy-key %ALCHEMY_DEPLOY_KEY% --ipfs https://ipfs.satsuma.xyz subgraph.arbitrum-sepolia-staging.yaml",
"build": "graph build",
"auth": "graph auth https://api.thegraph.com/deploy/",
"test": "graph test -v 0.6.0 --logs"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@graphprotocol/graph-cli": "^0.71.0",
"@graphprotocol/graph-ts": "^0.35.1",
"cross-var": "^1.1.0",
"dotenv-cli": "^7.3.0",
"matchstick-as": "^0.6.0",
"mustache": "^4.2.0"
},
"packageManager": "[email protected]"
}