-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
50 lines (39 loc) · 995 Bytes
/
Makefile
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
43
44
45
46
47
48
49
50
.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
.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_transfers -s -1
.PHONY: gui
gui:
substreams gui -e eos.substreams.pinax.network:443 map_transfers -s -1
.PHONY: params
params:
substreams gui -e eos.substreams.pinax.network:443 map_transfers -s -1 -p map_transfers="to=swap.defi&symcode=EOS,USDT"
.PHONY: accounts
accounts:
substreams gui -e eos.substreams.pinax.network:443 map_accounts -s -1
.PHONY: stat
stat:
substreams gui -e eos.substreams.pinax.network:443 map_stat -s -10000
.PHONY: wax
wax:
substreams run -e wax.substreams.pinax.network:443 map_transfers -s 258145472 -t +2 -p map_transfers="symcode=VOID,BLUX"