mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-03 09:47:38 +00:00
cbe4880490
* Temp hack to compile * Fix doppelganger tests * Kill in groups instead of storing pid * Install geth in CI * Install geth first * Fix eth1_block_hash * Fix directory paths and block hash * Fix workflow for local testnets; reset genesis.json after running script * Disable capella and deneb forks for doppelganger tests * oops not capella * Spin up a spare bn for the doppelganger validator * testing * Revert "testing" This reverts commit 14eb178bca5b7d27b9cd9b665b5cd2c916f50901. * Modify beacon_node script to take trusted peers * Set doppelganger bn as a trusted peer * Update var * update another * Fix port * Add a flag to disable peer scoring * Disable peer scoring in local testnet bn script * Revert trusted peers hack * fmt * Fix proposer boost score
63 lines
2.0 KiB
Bash
Executable File
63 lines
2.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#
|
|
# Deploys the deposit contract and makes deposits for $VALIDATOR_COUNT insecure deterministic validators.
|
|
# Produces a testnet specification and a genesis state where the genesis time
|
|
# is now + $GENESIS_DELAY.
|
|
#
|
|
# Generates datadirs for multiple validator keys according to the
|
|
# $VALIDATOR_COUNT and $BN_COUNT variables.
|
|
#
|
|
|
|
set -o nounset -o errexit -o pipefail
|
|
|
|
source ./vars.env
|
|
|
|
|
|
NOW=`date +%s`
|
|
GENESIS_TIME=`expr $NOW + $GENESIS_DELAY`
|
|
|
|
lcli \
|
|
new-testnet \
|
|
--spec $SPEC_PRESET \
|
|
--deposit-contract-address $DEPOSIT_CONTRACT_ADDRESS \
|
|
--testnet-dir $TESTNET_DIR \
|
|
--min-genesis-active-validator-count $GENESIS_VALIDATOR_COUNT \
|
|
--min-genesis-time $GENESIS_TIME \
|
|
--genesis-delay $GENESIS_DELAY \
|
|
--genesis-fork-version $GENESIS_FORK_VERSION \
|
|
--altair-fork-epoch $ALTAIR_FORK_EPOCH \
|
|
--bellatrix-fork-epoch $BELLATRIX_FORK_EPOCH \
|
|
--capella-fork-epoch $CAPELLA_FORK_EPOCH \
|
|
--deneb-fork-epoch $DENEB_FORK_EPOCH \
|
|
--ttd $TTD \
|
|
--eth1-block-hash $ETH1_BLOCK_HASH \
|
|
--eth1-id $CHAIN_ID \
|
|
--eth1-follow-distance 1 \
|
|
--seconds-per-slot $SECONDS_PER_SLOT \
|
|
--seconds-per-eth1-block $SECONDS_PER_ETH1_BLOCK \
|
|
--proposer-score-boost "$PROPOSER_SCORE_BOOST" \
|
|
--validator-count $GENESIS_VALIDATOR_COUNT \
|
|
--interop-genesis-state \
|
|
--force
|
|
|
|
echo Specification and genesis.ssz generated at $TESTNET_DIR.
|
|
echo "Generating $VALIDATOR_COUNT validators concurrently... (this may take a while)"
|
|
|
|
lcli \
|
|
insecure-validators \
|
|
--count $VALIDATOR_COUNT \
|
|
--base-dir $DATADIR \
|
|
--node-count $BN_COUNT
|
|
|
|
echo Validators generated with keystore passwords at $DATADIR.
|
|
|
|
GENESIS_TIME=$(lcli pretty-ssz state_merge ~/.lighthouse/local-testnet/testnet/genesis.ssz | jq | grep -Po 'genesis_time": "\K.*\d')
|
|
CAPELLA_TIME=$((GENESIS_TIME + (CAPELLA_FORK_EPOCH * 32 * SECONDS_PER_SLOT)))
|
|
DENEB_TIME=$((GENESIS_TIME + (DENEB_FORK_EPOCH * 32 * SECONDS_PER_SLOT)))
|
|
|
|
CURR_DIR=`pwd`
|
|
|
|
sed -i 's/"shanghaiTime".*$/"shanghaiTime": '"$CAPELLA_TIME"',/g' $CURR_DIR/genesis.json
|
|
sed -i 's/"shardingForkTime".*$/"shardingForkTime": '"$DENEB_TIME"',/g' $CURR_DIR/genesis.json
|