-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
24 lines (24 loc) · 1.48 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
{
"name": "subgraph",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"create:local": "graph create --node http://localhost:8020/ example/gravatar-registry",
"remove:local": "graph remove --node http://localhost:8020/ example/gravatar-registry",
"deploy:local": "graph deploy --version-label v0.0.1 --network devnet --node http://localhost:8020/ --ipfs http://localhost:5001 example/gravatar-registry",
"create:sepolia": "graph create --node https://metisapi.0xgraph.xyz/deploy ericlee42/gravatar-registry-sepolia",
"remove:sepolia": "graph remove --node https://metisapi.0xgraph.xyz/deploy ericlee42/gravatar-registry-sepolia",
"deploy:sepolia": "graph deploy --version-label v0.0.1 --network metis-sepolia --node https://metisapi.0xgraph.xyz/deploy --ipfs https://metisapi.0xgraph.xyz/ipfs ericlee42/gravatar-registry-sepolia",
"create:andromeda": "graph create --node https://metisapi.0xgraph.xyz/deploy ericlee42/gravatar-registry-andromeda",
"remove:andromeda": "graph remove --node https://metisapi.0xgraph.xyz/deploy ericlee42/gravatar-registry-andromeda",
"deploy:andromeda": "graph deploy --version-label v0.0.1 --network andromeda --node https://metisapi.0xgraph.xyz/deploy --ipfs https://metisapi.0xgraph.xyz/ipfs ericlee42/gravatar-registry-andromeda"
},
"dependencies": {
"@graphprotocol/graph-ts": "^0.35.1"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.90.1"
}
}