-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.19 KB
/
package.json
File metadata and controls
24 lines (24 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "od-subgraph",
"version": "v1.7.0",
"license": "MIT",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy --node https://api.studio.thegraph.com/deploy/ open-dollar---sepolia",
"create-local": "graph create --node http://localhost:8020/ --ipfs http://localhost:5001 open-dollarsepolia",
"remove-local": "graph remove --node http://localhost:8020/ open-dollar---sepolia",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 open-dollar---sepolia",
"create-render": "source .env && graph create open-dollar---sepolia --node https://$NGINX_USERNAME:$NGINX_PASSWORD@$NGINX_GRAPH_NODE_RPC_URL",
"remove-render": "source .env && graph remove open-dollar---sepolia --node https://$NGINX_USERNAME:$NGINX_PASSWORD@$NGINX_GRAPH_NODE_RPC_URL",
"deploy-render": "source .env && graph deploy open-dollar---sepolia --node https://$NGINX_USERNAME:$NGINX_PASSWORD@$NGINX_GRAPH_NODE_RPC_URL --ipfs $IPFS_URL",
"test": "graph test"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.57.0",
"@graphprotocol/graph-ts": "0.30.0"
},
"devDependencies": {
"matchstick-as": "0.5.0"
}
}