Thomas E Lackey
01fd7e251a
* Remove fixed IPs and separate network for fixturenet. * Remove static port mapping. * Add helper script for checking your fxiturenet status * Sleep 1 second * Fix spacing * Fix for latest genesis generator. * run as archive node
38 lines
911 B
Bash
Executable File
38 lines
911 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# See: https://github.com/sigp/lighthouse/blob/stable/scripts/local_testnet/bootnode.sh
|
|
#
|
|
# Starts a bootnode from the generated enr.
|
|
#
|
|
|
|
set -Eeuo pipefail
|
|
|
|
source ./vars.env
|
|
|
|
DEBUG_LEVEL=${1:-info}
|
|
|
|
echo "Starting bootnode"
|
|
|
|
if [ ! -f "$DATADIR/bootnode/enr.dat" ]; then
|
|
echo "Generating bootnode enr"
|
|
lcli \
|
|
generate-bootnode-enr \
|
|
--ip $ENR_IP \
|
|
--udp-port $BOOTNODE_PORT \
|
|
--tcp-port $BOOTNODE_PORT \
|
|
--genesis-fork-version $GENESIS_FORK_VERSION \
|
|
--output-dir $DATADIR/bootnode
|
|
|
|
bootnode_enr=`cat $DATADIR/bootnode/enr.dat`
|
|
echo "- $bootnode_enr" > $TESTNET_DIR/boot_enr.yaml
|
|
|
|
echo "Generated bootnode enr and written to $TESTNET_DIR/boot_enr.yaml"
|
|
fi
|
|
|
|
exec lighthouse boot_node \
|
|
--testnet-dir $TESTNET_DIR \
|
|
--port $BOOTNODE_PORT \
|
|
--listen-address 0.0.0.0 \
|
|
--disable-packet-filter \
|
|
--network-dir $DATADIR/bootnode \
|