22 lines
435 B
Bash
22 lines
435 B
Bash
|
#!/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"
|
||
|
|
||
|
exec lighthouse boot_node \
|
||
|
--testnet-dir $TESTNET_DIR \
|
||
|
--port $BOOTNODE_PORT \
|
||
|
--listen-address 0.0.0.0 \
|
||
|
--disable-packet-filter \
|
||
|
--network-dir $DATADIR/bootnode \
|