-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
42 lines (33 loc) · 771 Bytes
/
Makefile
File metadata and controls
42 lines (33 loc) · 771 Bytes
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
.PHONY: all
all:
make build
make pack
make graph
make info
.PHONY: build
build:
cargo build --target wasm32-unknown-unknown --release
.PHONY: protogen
protogen:
substreams protogen --exclude-paths sf/substreams,google,sf/antelope/type
.PHONY: pack
pack:
substreams pack
.PHONY: graph
graph:
substreams graph
.PHONY: info
info:
substreams info
.PHONY: run
run:
substreams run -e eos.substreams.pinax.network:443 map_action_traces -s -1
.PHONY: gui
gui:
substreams gui -e eos.substreams.pinax.network:443 map_action_traces -s -1
.PHONY: params
params:
substreams run -e eos.substreams.pinax.network:443 map_action_traces -s -1 -p map_action_traces=receiver=eosio.token
.PHONY: sink
sink:
substreams gui -e eos.substreams.pinax.network:443 kv_out -s -1