generated from streamingfast/substreams-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 1.01 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": "example-substreams-powered-subgraph",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/graphprotocol/graph-tooling",
"directory": "examples/substreams-powered-subgraph"
},
"private": true,
"scripts": {
"codegen": "graph codegen",
"deploy": "graph deploy",
"subgraph:build": "graph build",
"substreams:build": "cargo build --target wasm32-unknown-unknown --release",
"substreams:clean": "rm -rf ./target && rm -rf ./src/pb",
"substreams:package": "substreams pack ./substreams.yaml",
"substreams:prepare": "yarn substreams:protogen && yarn substreams:build && yarn substreams:package",
"substreams:protogen": "substreams protogen ./substreams.yaml --exclude-paths='sf/substreams,google'",
"substreams:stream": "substreams run -e polygon.streamingfast.io:443 substreams.yaml map_transactions --start-block 42422800 "
},
"devDependencies": {
"@graphprotocol/graph-cli": "0.53.0"
}
}