mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-09 22:06:21 +00:00
6036f2e7d7
* Local sim impovements * Added support for running Capella and EIP-4844 simulations by downloading the correct version of Geth. * Added support for using Nimbus remote signer and Web3Signer. Use 2 out of 3 threshold signing configuration in the mainnet configuration and regular remote signing in the minimal one. * The local testnet simulation can now use a payload builder. This is currently not activated in CI due to lack of automated procedures for installing third-party relays or builders. You are adviced to use mergemock for now, but for most realistic results, we can create a simple builder based on the nimbus-eth1 codebase that will be able to propose transactions from the regular network mempool. * Start the simulation from a merged state. This would allow us to start removing pre-merge functionality such as the gossip subsciption logic. The commit also removes the merge-forcing hack installed after the TTD removal. * Consolidate all the tools used in the local simulation into a single `ncli_testnet` binary.
16 lines
619 B
Bash
Executable File
16 lines
619 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
build/nimbus_beacon_node trustedNodeSync --config-file=config.toml
|
|
|
|
#\
|
|
# --network:mainnet \
|
|
# --data-dir=build/mainnet/nimbus \
|
|
# --backfill=false \
|
|
# --trusted-node-url=http://testing.mainnet.beacon-api.nimbus.team/
|
|
|
|
if [ ! -f build/mainnet/jwtsecret ]; then
|
|
openssl rand -hex 32 | tr -d "\n" > build/mainnet/jwtsecret
|
|
fi
|
|
|
|
# build/nimbus_beacon_node --non-interactive --udp-port=9123 --tcp-port=9123 --network=mainnet --log-level=DEBUG --data-dir=build/mainnet/nimbus --web3-url=http://localhost:9551/ --rest:on --metrics:on --doppelganger-detection=no --jwt-secret=build/mainnet/jwtsecret
|