This commit is contained in:
Jordan Hrycaj 2022-05-10 09:44:37 +01:00
parent 54b7dc94ed
commit 107c3fba50
No known key found for this signature in database
GPG Key ID: 4101B9BC5A0DB080
7 changed files with 53453 additions and 3 deletions

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,3 @@
enode://36ad5c6e0a10e58234cf9e17bd07107f1ed69659d27d3f0510bc9d8c109d6898d4bb7e20a64e69ee13fc8cc67e0a7291a09f6efd5a6ee26b26ad99d8f8458717@157.230.27.43:30303
enode://3121479bdb80ad8addab60694083ee83706e47c05523cdda4cbdaf5683794d67b3dbcad848a085dd823d9fb60df3483b50459950d5d9ec23e3373e7bd58e5819@165.227.100.193:30303
enode://06899e1abf67b53dd0c6e10dafa238c7b71e361583353c928fed2aa7642d05e3d7755cb3f934bfdcf4fe563996720fb8c74de356d5dda0329b65d1d23a389c90@143.110.188.48:30303

View File

@ -0,0 +1 @@
enode://f433706b6211699b5f50962e665496b83eb4db6428b544065194654ed7063e1e942a0a2af380482ba0f79c26cd7422885367256e8233ac17b2ee8d30e8f8308d@164.92.169.47:30303

File diff suppressed because it is too large Load Diff

View File

@ -4,6 +4,7 @@ self=${BEACON_SESSION_SELF:-`basename "$0"`}
# Network name (used below for easy setup)
name=${BEACON_SESSION_NAME:-kiln}
fullname=${BEACON_SESSION_FULLNAME:-$name}
# Digits, instance id appended to directory name
instance=${BEACON_SESSION_INSTANCE:-0}
@ -51,7 +52,7 @@ find_prefix="$find_prefix ../go-ethereum ../nethermind ../nimbus-eth1-blobs"
# Sub-find directory for various items
find_beacon=". .. build/bin"
find_yamlconf="merge-testnets/$name $name"
find_yamlconf="merge-testnets/$fullname $fullname"
find_jwtsecret=
find_jwtsecret="$find_jwtsecret datadir-geth-$name$instance"
find_jwtsecret="$find_jwtsecret datadir-nimbus-$name"

View File

@ -58,7 +58,13 @@ session_key=`echo $port |
genesis_json=geth-$name.json
# Per-network bootstrap nodes
enodes_kiln="enode://c354db99124f0faf677ff0e75c3cbbd568b2febc186af664e0c51ac435609badedc67a18a63adb64dacc1780a28dcefebfc29b83fd1a3f4aa3c0eb161364cf94@164.92.130.5:30303"
enodes_kiln="\
enode://c354db99124f0faf677ff0e75c3cbbd568b2febc186af664e0c51ac435609badedc67a18a63adb64dacc1780a28dcefebfc29b83fd1a3f4aa3c0eb161364cf94@164.92.130.5:30303"
enodes_mainshadow1="\
enode://36ad5c6e0a10e58234cf9e17bd07107f1ed69659d27d3f0510bc9d8c109d6898d4bb7e20a64e69ee13fc8cc67e0a7291a09f6efd5a6ee26b26ad99d8f8458717@157.230.27.43:30303,\
enode://3121479bdb80ad8addab60694083ee83706e47c05523cdda4cbdaf5683794d67b3dbcad848a085dd823d9fb60df3483b50459950d5d9ec23e3373e7bd58e5819@165.227.100.193:30303,\
enode://06899e1abf67b53dd0c6e10dafa238c7b71e361583353c928fed2aa7642d05e3d7755cb3f934bfdcf4fe563996720fb8c74de356d5dda0329b65d1d23a389c90@143.110.188.48:30303"
# Log spooler capacity settings
logfile_max=80000000
@ -317,6 +323,11 @@ test yes != "$start" || (
optargs="$optargs --bootnodes=$enodes_kiln"
init_data=yes
;;
mainshadow1)
optargs="$optargs --networkid=1"
optargs="$optargs --bootnodes=$enodes_mainshadow1"
init_data=yes
;;
*) optargs="$optargs --$name"
esac

View File

@ -297,7 +297,7 @@ test yes != "$start" || (
bootstrap=`find_file $bootstrap_txt $find_bootstrap`
case "$name" in
kiln|devnet4|devnet5)
kiln|devnet4|devnet5|mainshadow*)
genesis=`find_file $genesis_json $find_genesis`
optargs="$optargs --custom-network=$genesis"
optargs="$optargs --bootstrap-file=$bootstrap"