This commit is contained in:
Sebastian
2025-03-19 13:36:37 +01:00
parent 56d8cba406
commit aa5e92a5df
2 changed files with 21 additions and 32 deletions

View File

@@ -1,6 +1,11 @@
#!/bin/sh
exec apk add --no-cache curl
set -e # Exit on failure
apk add --no-cache curl
# this goes first because it won't overwrite shit
/usr/bin/beacond init ${MONIKER} --chain-id bepolia-beacon-80069 --consensus-key-algo bls12_381 --home /root/.beacond/
# Define variables
CONFIG_DIR="/root/.beacond/config"
@@ -8,15 +13,15 @@ CONFIG_TOML_URL="https://raw.githubusercontent.com/berachain/beacon-kit/main/tes
APP_TOML_URL="https://raw.githubusercontent.com/berachain/beacon-kit/main/testing/networks/80069/app.toml"
SEEDS_URL="https://raw.githubusercontent.com/berachain/beacon-kit/main/testing/networks/80069/cl-seeds.txt"
# Create config directory if it doesn't exist
# Create config directory
mkdir -p "$CONFIG_DIR"
# Download the config files
# Download config files
curl -sL "$CONFIG_TOML_URL" -o "$CONFIG_DIR/config.toml"
curl -sL "$APP_TOML_URL" -o "$CONFIG_DIR/app.toml"
# Update moniker
if [ -n "$MONIKER" ]; then
# Update moniker if set
if [ -n "$MONIKER" ] && [ -f "$CONFIG_DIR/config.toml" ]; then
sed -i "s/^moniker = \".*\"/moniker = \"$MONIKER\"/" "$CONFIG_DIR/config.toml"
fi
@@ -24,12 +29,15 @@ fi
SEEDS=$(curl -s "$SEEDS_URL" | tail -n +2 | tr '\n' ',' | sed 's/,$//')
# Update seeds and persistent_peers
if [ -n "$SEEDS" ]; then
if [ -n "$SEEDS" ] && [ -f "$CONFIG_DIR/config.toml" ]; then
sed -i "s/^seeds = \".*\"/seeds = \"$SEEDS\"/" "$CONFIG_DIR/config.toml"
sed -i "s/^persistent_peers = \".*\"/persistent_peers = \"$SEEDS\"/" "$CONFIG_DIR/config.toml"
fi
sed -i "s|^rpc-dial-url = \".*\"|rpc-dial-url = \"http://berachain-bepolia:8551\"|" "$CONFIG_DIR/app.toml";
exec /usr/bin/beacond "$@"
# Update RPC dial URL in app.toml
if [ -f "$CONFIG_DIR/app.toml" ]; then
sed -i "s|^rpc-dial-url = \".*\"|rpc-dial-url = \"http://berachain-bepolia:8551\"|" "$CONFIG_DIR/app.toml"
fi
# Execute beacond
exec /usr/bin/beacond start --beacon-kit.kzg.trusted-setup-path /root/.beacond/config/kzg-trusted-setup.json --minimum-gas-prices 0atom "$@"