mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-03 00:31:50 +00:00
* update
* revise link
* update parameters
* update doc
* Update doc
* add quic port
* remove debug log
* Fix el_bootnode not being killed
* Fix time
* Fix doc in manual creation of testnet
* Update file
* update api doc
* Revert "update api doc"
This reverts commit ed695743de.
* add git clone
* Fix path
* Fix path
* Update scripts/local_testnet/setup_time.sh
Co-authored-by: Jimmy Chen <jchen.tc@gmail.com>
* Update scripts/local_testnet/README.md
Co-authored-by: Jimmy Chen <jchen.tc@gmail.com>
* Fix SLOT_PER_EPOCH that changes with mainnet or minimal
* Embedded setup_time.sh in start_local_testnet.sh
* fix slot per epoch constant
* Add comment
* Add CANCUN_TIME
* Fix CANCUN_TIME constant 32 slots
* Correct typo
* chmod +x ./setup_time.sh
---------
Co-authored-by: Jimmy Chen <jchen.tc@gmail.com>
33 lines
1.1 KiB
Bash
Executable File
33 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -Eeuo pipefail
|
|
|
|
source ./vars.env
|
|
|
|
# Function to output SLOT_PER_EPOCH for mainnet or minimal
|
|
get_spec_preset_value() {
|
|
case "$SPEC_PRESET" in
|
|
mainnet) echo 32 ;;
|
|
minimal) echo 8 ;;
|
|
gnosis) echo 16 ;;
|
|
*) echo "Unsupported preset: $SPEC_PRESET" >&2; exit 1 ;;
|
|
esac
|
|
}
|
|
|
|
SLOT_PER_EPOCH=$(get_spec_preset_value $SPEC_PRESET)
|
|
echo "slot_per_epoch=$SLOT_PER_EPOCH"
|
|
|
|
genesis_file=$1
|
|
|
|
# Update future hardforks time in the EL genesis file based on the CL genesis time
|
|
GENESIS_TIME=$(lcli pretty-ssz --spec $SPEC_PRESET --testnet-dir $TESTNET_DIR BeaconState $TESTNET_DIR/genesis.ssz | jq | grep -Po 'genesis_time": "\K.*\d')
|
|
echo $GENESIS_TIME
|
|
CAPELLA_TIME=$((GENESIS_TIME + (CAPELLA_FORK_EPOCH * $SLOT_PER_EPOCH * SECONDS_PER_SLOT)))
|
|
echo $CAPELLA_TIME
|
|
sed -i 's/"shanghaiTime".*$/"shanghaiTime": '"$CAPELLA_TIME"',/g' $genesis_file
|
|
CANCUN_TIME=$((GENESIS_TIME + (DENEB_FORK_EPOCH * $SLOT_PER_EPOCH * SECONDS_PER_SLOT)))
|
|
echo $CANCUN_TIME
|
|
sed -i 's/"cancunTime".*$/"cancunTime": '"$CANCUN_TIME"',/g' $genesis_file
|
|
cat $genesis_file
|
|
|