[skip ci] scripts/run-geth-el.sh Allow connecting to any merge devnet (#3409)
This commit is contained in:
parent
af3c65a689
commit
178431102d
|
@ -1,29 +1,37 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -Eeu
|
|
||||||
|
|
||||||
# Via Adrian Sutton
|
# Via Adrian Sutton
|
||||||
|
|
||||||
GETH=${HOME}/go-ethereum/build/bin/geth
|
if [ -z "$1" ]; then
|
||||||
|
echo "Usage: run-geth-el.sh <network-metadata-dir>"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
set -Eeu
|
||||||
|
|
||||||
|
NETWORK=$1
|
||||||
|
|
||||||
|
NETWORK_ID=$(cat "$NETWORK/genesis.json" | jq '.config.chainId')
|
||||||
|
|
||||||
|
GETH=${HOME}/execution_clients/go-ethereum/build/bin/geth
|
||||||
|
|
||||||
# https://github.com/eth2-clients/merge-testnets/tree/main/kintsugi
|
# https://github.com/eth2-clients/merge-testnets/tree/main/kintsugi
|
||||||
EXECUTION_BOOTNODE="enode://6f377dd1ef5a3272d7e02fac9064c4f95d74f7edfd866e59ded774ee5b4649ff61c3f24c95f5c3d07d692b447f0569716b8921b6861810b96a705c92e1d27ff9@161.35.67.219:30303"
|
EXECUTION_BOOTNODES=$(awk '{print $1}' "$NETWORK/el_bootnode.txt" | paste -s -d, -)
|
||||||
|
|
||||||
GETHDATADIR=$(mktemp -d)
|
GETHDATADIR=$(mktemp -d)
|
||||||
GENESISJSON=${HOME}/merge-testnets/kintsugi/genesis.json
|
GENESISJSON="${NETWORK}/genesis.json"
|
||||||
|
|
||||||
echo "GETHDATADIR = ${GETHDATADIR}"
|
echo "GETHDATADIR = ${GETHDATADIR}"
|
||||||
|
|
||||||
# Initialize the genesis
|
# Initialize the genesis
|
||||||
$GETH --catalyst --http --ws -http.api "engine" --datadir "${GETHDATADIR}" init "${GENESISJSON}"
|
$GETH --http --ws -http.api "engine" --datadir "${GETHDATADIR}" init "${GENESISJSON}"
|
||||||
|
|
||||||
# Import the signing key (press enter twice for empty password)
|
# Import the signing key (press enter twice for empty password)
|
||||||
$GETH --catalyst --http --ws -http.api "engine" --datadir "${GETHDATADIR}" account import <(echo 45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8)
|
$GETH --http --ws -http.api "engine" --datadir "${GETHDATADIR}" account import <(echo 45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8)
|
||||||
|
|
||||||
#--password "execution/geth/passfile.txt"
|
#--password "execution/geth/passfile.txt"
|
||||||
#--nodekey "execution/signer.key"
|
#--nodekey "execution/signer.key"
|
||||||
|
|
||||||
$GETH \
|
$GETH \
|
||||||
--catalyst \
|
|
||||||
--http \
|
--http \
|
||||||
--http.port 8550 \
|
--http.port 8550 \
|
||||||
--http.api "engine,eth,net,admin,web3" \
|
--http.api "engine,eth,net,admin,web3" \
|
||||||
|
@ -34,11 +42,11 @@ $GETH \
|
||||||
--ws.api "engine,eth,net,admin,web3" \
|
--ws.api "engine,eth,net,admin,web3" \
|
||||||
--allow-insecure-unlock \
|
--allow-insecure-unlock \
|
||||||
--datadir "${GETHDATADIR}" \
|
--datadir "${GETHDATADIR}" \
|
||||||
--bootnodes "$EXECUTION_BOOTNODE" \
|
--bootnodes "${EXECUTION_BOOTNODES}" \
|
||||||
--port 30308 \
|
--port 30308 \
|
||||||
--password "" \
|
--password "" \
|
||||||
--syncmode full \
|
--syncmode full \
|
||||||
--unlock "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b" \
|
--unlock "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b" \
|
||||||
--mine \
|
--mine \
|
||||||
--networkid 1337702 \
|
--networkid $NETWORK_ID \
|
||||||
console
|
console
|
Loading…
Reference in New Issue