-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 2.78 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
{
"name": "@openformat/timestamp-to-block-number",
"version": "0.0.4",
"scripts": {
"reinstall": "rm -rf .pnp* && yarn",
"clean": "rm -rf build/ generated/",
"prepare:local": "mustache networks/local.json subgraph.template.yaml subgraph.local.yaml",
"create:local": "graph create open-format/local --node http://0.0.0.0:8020",
"gen:local": "graph codegen subgraph.local.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",
"prepare:arbitrum-sepolia": "mustache networks/arbitrum-sepolia.json subgraph.template.yaml subgraph.arbitrum-sepolia.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:matchain": "mustache networks/matchain.json subgraph.template.yaml subgraph.matchain.yaml",
"gen:arbitrum-sepolia": "graph codegen subgraph.arbitrum-sepolia.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:matchain": "graph codegen subgraph.matchain.yaml",
"create-mobula:matchain": "dotenv cross-var -- graph create open-format-matchain-timestamp-to-block-number-%MOBULA_VERSION% --node http://20.84.160.190:8020",
"deploy:arbitrum-sepolia": "graph deploy --studio timestamp-to-block-number subgraph.arbitrum-sepolia.yaml",
"deploy:base-sepolia": "graph deploy --studio timestamp-to-block-number-base-sepolia subgraph.base-sepolia.yaml",
"deploy:base": "graph deploy --studio timestamp-to-block-number-base subgraph.base.yaml",
"deploy:aurora": "graph deploy --studio timestamp-to-block-number-aurora subgraph.aurora.yaml",
"deploy:aurora-testnet": "graph deploy --studio timestamp-to-block-number-aurora-testnet subgraph.aurora-testnet.yaml",
"deploy-mobula:matchain": "dotenv cross-var -- graph deploy open-format-matchain-timestamp-to-block-number-%MOBULA_VERSION% --node http://20.84.160.190:8020 --version-label %MOBULA_VERSION% subgraph.matchain.yaml",
"build": "graph build",
"test": "graph test -v 0.6.0 --logs"
},
"devDependencies": {
"@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]"
}