11all : clean build
22 ./scripts/generate_testnet_config.sh --nodes 3 --testnet-config-dir .testnet
3- cargo run --bin malachitebft-eth-app -- testnet --home nodes --testnet-config .testnet/testnet_config.toml --log-level info
4- ls nodes/* /config/priv_validator_key.json | xargs -I{} cargo run --bin malachitebft-eth-app show-pubkey {} > nodes/validator_public_keys.txt
5- cargo run --bin malachitebft-eth -utils genesis --public-keys-file ./nodes/validator_public_keys.txt
3+ cargo run --bin emerald -- testnet --home nodes --testnet-config .testnet/testnet_config.toml --log-level info
4+ ls nodes/* /config/priv_validator_key.json | xargs -I{} cargo run --bin emerald show-pubkey {} > nodes/validator_public_keys.txt
5+ cargo run --bin emerald -utils genesis --public-keys-file ./nodes/validator_public_keys.txt
66 docker compose up -d reth0 reth1 reth2 prometheus grafana otterscan
77 ./scripts/add_peers.sh --nodes 3
88 @echo 👉 Grafana dashboard is available at http://localhost:3000
99 bash scripts/spawn.bash --nodes 3 --home nodes --no-delay
1010
1111four : clean build
1212 ./scripts/generate_testnet_config.sh --nodes 4 --testnet-config-dir .testnet
13- cargo run --bin malachitebft-eth-app -- testnet --home nodes --testnet-config .testnet/testnet_config.toml
14- ls nodes/* /config/priv_validator_key.json | xargs -I{} cargo run --bin malachitebft-eth-app show-pubkey {} > nodes/validator_public_keys.txt
15- cargo run --bin malachitebft-eth -utils genesis --public-keys-file ./nodes/validator_public_keys.txt
13+ cargo run --bin emerald -- testnet --home nodes --testnet-config .testnet/testnet_config.toml
14+ ls nodes/* /config/priv_validator_key.json | xargs -I{} cargo run --bin emerald show-pubkey {} > nodes/validator_public_keys.txt
15+ cargo run --bin emerald -utils genesis --public-keys-file ./nodes/validator_public_keys.txt
1616 docker compose up -d reth0 reth1 reth2 reth3 prometheus grafana otterscan
1717 ./scripts/add_peers.sh --nodes 4
1818 @echo 👉 Grafana dashboard is available at http://localhost:3000
1919 bash scripts/spawn.bash --nodes 4 --home nodes --no-delay
2020
2121sync : clean build
2222 ./scripts/generate_testnet_config.sh --nodes 4 --testnet-config-dir .testnet
23- cargo run --bin malachitebft-eth-app -- testnet --home nodes --testnet-config .testnet/testnet_config.toml
24- ls nodes/* /config/priv_validator_key.json | xargs -I{} cargo run --bin malachitebft-eth-app show-pubkey {} > nodes/validator_public_keys.txt
25- cargo run --bin malachitebft-eth -utils genesis --public-keys-file ./nodes/validator_public_keys.txt
23+ cargo run --bin emerald -- testnet --home nodes --testnet-config .testnet/testnet_config.toml
24+ ls nodes/* /config/priv_validator_key.json | xargs -I{} cargo run --bin emerald show-pubkey {} > nodes/validator_public_keys.txt
25+ cargo run --bin emerald -utils genesis --public-keys-file ./nodes/validator_public_keys.txt
2626 docker compose up -d
2727 ./scripts/add_peers.sh --nodes 4
2828 @echo 👉 Grafana dashboard is available at http://localhost:3000
@@ -51,7 +51,7 @@ clean-prometheus: stop
5151 rm -rf ./monitoring/data-prometheus
5252
5353spam :
54- cargo run --bin malachitebft-eth -utils spam --time=60 --rate=5000 --rpc-url=127.0.0.1:8645
54+ cargo run --bin emerald -utils spam --time=60 --rate=5000 --rpc-url=127.0.0.1:8645
5555
5656spam-contract :
5757 @if [ -z " $( CONTRACT) " ]; then \
@@ -66,7 +66,7 @@ spam-contract:
6666 echo " Example with args: make spam-contract CONTRACT=0x5FbDB... FUNCTION=\" setNumber(uint256)\" ARGS=\" 12345\" " ; \
6767 exit 1; \
6868 fi ; \
69- cargo run --release --bin malachitebft-eth -utils spam-contract \
69+ cargo run --release --bin emerald -utils spam-contract \
7070 --contract=" $( CONTRACT) " \
7171 --function=" $( FUNCTION) " \
7272 --args=" $( ARGS) " \
0 commit comments