-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
16 lines (16 loc) · 1.43 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
release:
cargo build --release
eth-init:
RUST_LOG=info ./target/release/web3research-etl init -c ethereum --db clickhouse://default@localhost:9000/ethereum -p ws://localhost:8545 --trace http://localhost:8545 --provider-type erigon --from $(FROM) --batch $(BATCH)
eth-sync:
RUST_LOG=info ./target/release/web3research-etl sync -c ethereum --db clickhouse://default@localhost:9000/ethereum -p ws://localhost:8545 --trace http://localhost:8545 --provider-type erigon
eth-check:
RUST_LOG=info ./target/release/web3research-etl check -c ethereum --db clickhouse://default@localhost:9000/ethereum -p ws://localhost:8545 --trace http://localhost:8545 --provider-type erigon --from $(FROM)
run-eth-init:
RUST_LOG=info cargo run -- init -c ethereum --db clickhouse://default@localhost:9000/ethereum -p ws://localhost:8545 --trace http://localhost:8545 --provider-type erigon --from $(FROM) --batch $(BATCH)
run-eth-sync:
RUST_LOG=info cargo run -- sync -c ethereum --db clickhouse://default@localhost:9000/ethereum -p ws://localhost:8545 --trace http://localhost:8545 --provider-type erigon
run-eth-check:
RUST_LOG=info cargo run -- check -c ethereum --db clickhouse://default@localhost:9000/ethereum -p ws://localhost:8545 --trace http://localhost:8545 --provider-type erigon --from $(FROM)
tron-init:
RUST_LOG=info ./target/release/web3research-etl init -c tron --db clickhouse://default@localhost:19000/tron -p http://localhost:50051 --from $(FROM) --batch $(BATCH)