Bake the metadata for testnet0 and testnet1 as well; Remove the old scripts
This commit is contained in:
parent
ec06701f3c
commit
d16676b294
9
Makefile
9
Makefile
|
@ -164,9 +164,12 @@ clean-testnet1:
|
|||
|
||||
# - we're getting the preset from a testnet-specific .env file
|
||||
# - try SCRIPT_PARAMS="--skipGoerliKey"
|
||||
testnet0 testnet1: | build deps
|
||||
source scripts/$@.env; \
|
||||
NIM_PARAMS="$(NIM_PARAMS)" LOG_LEVEL="$(LOG_LEVEL)" $(ENV_SCRIPT) nim $(NIM_PARAMS) scripts/connect_to_testnet.nims $(SCRIPT_PARAMS) --const-preset=$$CONST_PRESET --dev-build $@
|
||||
testnet0 testnet1: | beacon_node build deps
|
||||
build/beacon_node \
|
||||
--network=$@ \
|
||||
--log-level="$(LOG_LEVEL)" \
|
||||
--data-dir=build/data/$@_$(NODE_ID) \
|
||||
$(GOERLI_TESTNETS_PARAMS) $(NODE_PARAMS)
|
||||
|
||||
clean-altona:
|
||||
rm -rf build/data/shared_altona*
|
||||
|
|
|
@ -1172,6 +1172,10 @@ programMain:
|
|||
mainnetMetadata
|
||||
of "altona":
|
||||
altonaMetadata
|
||||
of "testnet0":
|
||||
testnet0Metadata
|
||||
of "testnet1":
|
||||
testnet1Metadata
|
||||
else:
|
||||
if fileExists(networkName):
|
||||
try:
|
||||
|
|
|
@ -96,16 +96,36 @@ proc loadEth2NetworkMetadata*(path: string): Eth2NetworkMetadata
|
|||
let
|
||||
genesisPath = path / "genesis.ssz"
|
||||
configPath = path / "config.yaml"
|
||||
runtimePreset = extractRuntimePreset(configPath, readPresetFile(configPath))
|
||||
depositContractPath = path / "deposit_contract.txt"
|
||||
depositContractBlockPath = path / "deposit_contract_block.txt"
|
||||
|
||||
runtimePreset = if fileExists(configPath):
|
||||
extractRuntimePreset(configPath, readPresetFile(configPath))
|
||||
else:
|
||||
mainnetRuntimePreset
|
||||
|
||||
depositContractAddress = if fileExists(depositContractPath):
|
||||
Eth1Address.fromHex readFile(depositContractPath).strip
|
||||
else:
|
||||
default(Eth1Address)
|
||||
|
||||
depositContractBlock = if fileExists(depositContractBlockPath):
|
||||
Eth1BlockHash.fromHex readFile(depositContractBlockPath).strip
|
||||
else:
|
||||
default(Eth1BlockHash)
|
||||
|
||||
genesisData = if fileExists(genesisPath): readFile(genesisPath)
|
||||
else: ""
|
||||
|
||||
Eth2NetworkMetadata(
|
||||
incompatible: false,
|
||||
eth1Network: some goerli,
|
||||
runtimePreset: runtimePreset,
|
||||
bootstrapNodes: readFile(path / "bootstrap_nodes.txt").split("\n"),
|
||||
depositContractAddress: Eth1Address.fromHex readFile(path / "deposit_contract.txt").strip,
|
||||
depositContractDeployedAt: Eth1BlockHash.fromHex readFile(path / "deposit_contract_block.txt").strip,
|
||||
genesisData: if fileExists(genesisPath): readFile(genesisPath) else: "")
|
||||
depositContractAddress: depositContractAddress,
|
||||
depositContractDeployedAt: depositContractBlock,
|
||||
genesisData: genesisData)
|
||||
|
||||
except PresetIncompatible as err:
|
||||
Eth2NetworkMetadata(incompatible: true,
|
||||
incompatibilityDesc: err.msg)
|
||||
|
@ -132,3 +152,9 @@ const
|
|||
altonaMetadata* = loadEth2NetworkMetadata(
|
||||
currentSourcePath.parentDir / ".." / "vendor" / "eth2-testnets" / "shared" / "altona")
|
||||
|
||||
testnet0Metadata* = loadEth2NetworkMetadata(
|
||||
currentSourcePath.parentDir / ".." / "vendor" / "eth2-testnets" / "nimbus" / "testnet0")
|
||||
|
||||
testnet1Metadata* = loadEth2NetworkMetadata(
|
||||
currentSourcePath.parentDir / ".." / "vendor" / "eth2-testnets" / "nimbus" / "testnet1")
|
||||
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
cd $(dirname "$0")
|
||||
./env.sh nim scripts/connect_to_testnet.nims $1
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
@echo off
|
||||
|
||||
cd /D "%~dp0"
|
||||
|
||||
vendor/nimbus-build-system/vendor/Nim/bin/nim scripts/connect_to_testnet.nims %1
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
_Work in progress. Things may and probably will break for the foreseeable future. Do not rely on this for anything._
|
||||
|
||||
## Connecting to Testnet
|
||||
|
||||
To connect to a short-lived testnet we may or may not have running at the moment, use the `connect_to_testnet` script like so:
|
||||
|
||||
```bash
|
||||
scripts/connect_to_testnet.sh testnet0
|
||||
```
|
||||
|
||||
## Running your own testnet
|
||||
|
||||
The `beacon_node` binary has a `createTestnet` command.
|
||||
|
||||
```bash
|
||||
nim c -r beacon_chain/beacon_node \
|
||||
--data-dir=$NETWORK_DIR/data \
|
||||
createTestnet \
|
||||
--validators-dir=$NETWORK_DIR \
|
||||
--total-validators=$VALIDATOR_COUNT \
|
||||
--last-user-validator=$LAST_USER_VALIDATOR \
|
||||
--output-genesis=$NETWORK_DIR/genesis.ssz \
|
||||
--output-bootstrap-file=$NETWORK_DIR/bootstrap_nodes.txt \
|
||||
--bootstrap-address=$PUBLIC_IP \
|
||||
--genesis-offset=600 # Delay in seconds
|
||||
```
|
||||
|
||||
Replace ENV vars with values that make sense to you.
|
||||
|
||||
Full tutorial coming soon.
|
||||
|
||||
## Maintaining the Status testnets
|
||||
|
||||
For detailed instructions, please see https://github.com/status-im/nimbus-private/blob/master/testnets-maintenance.md
|
||||
|
|
@ -1,292 +0,0 @@
|
|||
import
|
||||
confutils, strutils, strformat, os
|
||||
|
||||
const
|
||||
rootDir = thisDir() / ".."
|
||||
bootstrapTxtFileName = "bootstrap_nodes.txt"
|
||||
bootstrapYamlFileName = "boot_enr.yaml"
|
||||
depositContractFileName = "deposit_contract.txt"
|
||||
depositContractBlockFileName = "deposit_contract_block.txt"
|
||||
genesisFile = "genesis.ssz"
|
||||
configFile = "config.yaml"
|
||||
testnetsRepo = "eth2-testnets"
|
||||
web3Url = "wss://goerli.infura.io/ws/v3/6224f3c792cc443fafb64e70a98f871e"
|
||||
|
||||
let
|
||||
testnetsOrg = getEnv("ETH2_TESTNETS_ORG", "eth2-clients")
|
||||
testnetsGitUrl = getEnv("ETH2_TESTNETS_GIT_URL", "https://github.com/" & testnetsOrg & "/" & testnetsRepo)
|
||||
|
||||
mode = Verbose
|
||||
|
||||
proc validateTestnetName(parts: openarray[string]): auto =
|
||||
if parts.len != 2:
|
||||
echo "The testnet name should have the format `client/network-name`"
|
||||
quit 1
|
||||
(parts[0], parts[1])
|
||||
|
||||
# reduces the error output when interrupting an external command with Ctrl+C
|
||||
proc execIgnoringExitCode(s: string) =
|
||||
try:
|
||||
exec s
|
||||
except OsError:
|
||||
discard
|
||||
|
||||
proc updateTestnetsRepo(allTestnetsDir, buildDir: string) =
|
||||
rmDir(allTestnetsDir)
|
||||
let cwd = system.getCurrentDir()
|
||||
cd buildDir
|
||||
exec &"git clone --quiet --depth=1 {testnetsGitUrl}"
|
||||
cd cwd
|
||||
|
||||
proc makePrometheusConfig(nodeID, baseMetricsPort: int, dataDir: string) =
|
||||
# macOS may not have gnu-getopts installed and in the PATH
|
||||
execIgnoringExitCode &"""./scripts/make_prometheus_config.sh --nodes """ & $(1 + nodeID) & &""" --base-metrics-port {baseMetricsPort} --config-file "{dataDir}/prometheus.yml" """
|
||||
|
||||
proc buildBinary(nimFlags, preset, binary, nimFile: string) =
|
||||
if binary != "":
|
||||
exec &"""nim c {nimFlags} -d:"const_preset={preset}" -o:"{binary}" beacon_chain/{nimFile}"""
|
||||
|
||||
proc becomeValidator(validatorsDir, beaconNodeBinary, secretsDir, depositContractOpt, privateGoerliKey: string,
|
||||
becomeValidatorOnly: bool) =
|
||||
mode = Silent
|
||||
var privKey = privateGoerliKey
|
||||
|
||||
if privKey.len == 0:
|
||||
echo "\nPlease enter your Goerli Eth1 private key in hex form (e.g. 0x1a2...f3c) in order to become a validator (you'll need access to 32 GoETH)."
|
||||
echo "Hit Enter to skip this."
|
||||
# is there no other way to print without a trailing newline?
|
||||
exec "printf '> '"
|
||||
privKey = readLineFromStdin()
|
||||
|
||||
if privKey.len > 0:
|
||||
mkDir validatorsDir
|
||||
mode = Verbose
|
||||
exec replace(&"""{beaconNodeBinary} deposits create
|
||||
--count=1
|
||||
--out-deposits-dir="{validatorsDir}"
|
||||
--out-secrets-dir="{secretsDir}"
|
||||
--deposit-private-key={privKey}
|
||||
--web3-url={web3Url}
|
||||
{depositContractOpt}
|
||||
""", "\n", " ")
|
||||
mode = Silent
|
||||
if becomeValidatorOnly:
|
||||
echo "\nDeposit sent."
|
||||
else:
|
||||
echo "\nDeposit sent, wait for confirmation then press enter to continue"
|
||||
discard readLineFromStdin()
|
||||
|
||||
proc runNode(dataDir, beaconNodeBinary, validatorClientBinary, bootstrapFileOpt,
|
||||
depositContractOpt, genesisFileOpt, extraBeaconNodeOptions: string,
|
||||
basePort, nodeID, baseMetricsPort, baseRpcPort: int,
|
||||
printCmdOnly: bool) =
|
||||
let logLevel = getEnv("LOG_LEVEL")
|
||||
var logLevelOpt = ""
|
||||
if logLevel.len > 0:
|
||||
logLevelOpt = &"""--log-level="{logLevel}" """
|
||||
|
||||
mode = Verbose
|
||||
|
||||
var cmd: string
|
||||
if printCmdOnly:
|
||||
# When you reinvent getopt() and you forget to support repeating the same
|
||||
# option to overwrite the old value...
|
||||
cmd = replace(&"""{beaconNodeBinary}
|
||||
--data-dir="{dataDir}"
|
||||
--web3-url={web3Url}
|
||||
{bootstrapFileOpt}
|
||||
{depositContractOpt}
|
||||
{genesisFileOpt} """, "\n", " ")
|
||||
echo &"cd {dataDir}; exec {cmd}"
|
||||
else:
|
||||
cd dataDir
|
||||
mkDir dataDir & "/empty_dummy_folder"
|
||||
|
||||
# if launching a VC as well - send the BN looking nowhere for validators/secrets
|
||||
# TODO use `start` (or something else) on windows (instead of `&`) for the 2 processes
|
||||
let vcCommand = if validatorClientBinary == "": "" else:
|
||||
&"""
|
||||
--secrets-dir={dataDir}/empty_dummy_folder
|
||||
--validators-dir={dataDir}/empty_dummy_folder
|
||||
& {validatorClientBinary}
|
||||
--rpc-port={baseRpcPort + nodeID}
|
||||
--data-dir="{dataDir}"
|
||||
{logLevelOpt}
|
||||
"""
|
||||
|
||||
cmd = replace(&"""{beaconNodeBinary}
|
||||
--data-dir="{dataDir}"
|
||||
--dump
|
||||
--web3-url={web3Url}
|
||||
--tcp-port={basePort + nodeID}
|
||||
--udp-port={basePort + nodeID}
|
||||
--metrics
|
||||
--metrics-port={baseMetricsPort + nodeID}
|
||||
--rpc
|
||||
--rpc-port={baseRpcPort + nodeID}
|
||||
{bootstrapFileOpt}
|
||||
{logLevelOpt}
|
||||
{depositContractOpt}
|
||||
{genesisFileOpt}
|
||||
{extraBeaconNodeOptions}
|
||||
{vcCommand} """, "\n", " ")
|
||||
execIgnoringExitCode cmd
|
||||
|
||||
cli do (skipGoerliKey {.
|
||||
desc: "Don't prompt for an Eth1 Goerli key to become a validator" .}: bool,
|
||||
|
||||
privateGoerliKey {.
|
||||
desc: "Use this private Eth1 Goerli key to become a validator (careful with this option, the private key will end up in your shell's command history)" .} = "",
|
||||
|
||||
specVersion {.
|
||||
desc: "Spec version"
|
||||
name: "spec" .} = "v0.11.3",
|
||||
|
||||
constPreset {.
|
||||
desc: "The Ethereum 2.0 const preset of the network (optional)"
|
||||
name: "const-preset" .} = "",
|
||||
|
||||
nodeID {.
|
||||
desc: "Node ID" .} = 0.int,
|
||||
|
||||
basePort {.
|
||||
desc: "Base TCP/UDP port (nodeID will be added to it)" .} = 9000.int,
|
||||
|
||||
baseMetricsPort {.
|
||||
desc: "Base metrics port (nodeID will be added to it)" .} = 8008.int,
|
||||
|
||||
baseRpcPort {.
|
||||
desc: "Base rpc port (nodeID will be added to it)" .} = 9190.int,
|
||||
|
||||
extraBeaconNodeOptions {.
|
||||
desc: "Extra options to pass to our beacon_node instance" .} = "",
|
||||
|
||||
writeLogFile {.
|
||||
desc: "Write a log file in dataDir" .} = true,
|
||||
|
||||
buildOnly {.
|
||||
desc: "Just the build, please." .} = false,
|
||||
|
||||
becomeValidatorOnly {.
|
||||
desc: "Just become a validator." .} = false,
|
||||
|
||||
runOnly {.
|
||||
desc: "Just run it." .} = false,
|
||||
|
||||
separateVC {.
|
||||
desc: "use a separate validator client process." .} = false,
|
||||
|
||||
printCmdOnly {.
|
||||
desc: "Just print the commands (suitable for passing to 'eval'; might replace current shell)." .} = false,
|
||||
|
||||
testnetName {.argument .}: string):
|
||||
let
|
||||
nameParts = testnetName.split "/"
|
||||
(team, testnet) = if nameParts.len > 1: validateTestnetName nameParts
|
||||
else: ("nimbus", testnetName)
|
||||
|
||||
let
|
||||
buildDir = rootDir / "build"
|
||||
allTestnetsDir = buildDir / testnetsRepo
|
||||
|
||||
if not (runOnly or becomeValidatorOnly):
|
||||
updateTestnetsRepo(allTestnetsDir, buildDir)
|
||||
|
||||
var
|
||||
depositContractOpt = ""
|
||||
bootstrapFileOpt = ""
|
||||
genesisFileOpt = ""
|
||||
doBuild, doBecomeValidator, doRun = true
|
||||
|
||||
# step-skipping logic
|
||||
if skipGoerliKey:
|
||||
doBecomeValidator = false
|
||||
if buildOnly:
|
||||
doBecomeValidator = false
|
||||
doRun = false
|
||||
if becomeValidatorOnly:
|
||||
doBuild = false
|
||||
doRun = false
|
||||
if runOnly:
|
||||
doBuild = false
|
||||
doBecomeValidator = false
|
||||
|
||||
let
|
||||
testnetDir = allTestnetsDir / team / testnet
|
||||
genesisFilePath = testnetDir / genesisFile
|
||||
|
||||
if not system.dirExists(testnetDir):
|
||||
echo &"No metadata files exists for the '{testnetName}' testnet"
|
||||
quit 1
|
||||
|
||||
if system.fileExists(genesisFilePath):
|
||||
genesisFileOpt = &"--state-snapshot=\"{genesisFilePath}\""
|
||||
|
||||
let bootstrapTxtFile = testnetDir / bootstrapTxtFileName
|
||||
if system.fileExists(bootstrapTxtFile):
|
||||
bootstrapFileOpt = &"--bootstrap-file=\"{bootstrapTxtFile}\""
|
||||
else:
|
||||
let bootstrapYamlFile = testnetDir / bootstrapYamlFileName
|
||||
if system.fileExists(bootstrapYamlFile):
|
||||
bootstrapFileOpt = &"--bootstrap-file=\"{bootstrapYamlFile}\""
|
||||
else:
|
||||
echo "Warning: the network metadata doesn't include a bootstrap file"
|
||||
|
||||
var preset = testnetDir / configFile
|
||||
if not system.fileExists(preset):
|
||||
preset = constPreset
|
||||
if preset.len == 0: preset = "minimal"
|
||||
|
||||
doAssert specVersion in ["v0.11.3", "v0.12.1"]
|
||||
|
||||
if defined(windows) and separateVC:
|
||||
# TODO use `start` (or something else) on windows (instead of `&`) for the 2 processes
|
||||
echo "Cannot use a separate validator client process on Windows! (remove --separateVC)"
|
||||
quit(1)
|
||||
|
||||
let
|
||||
dataDirName = testnetName.replace("/", "_")
|
||||
.replace("(", "_")
|
||||
.replace(")", "_") & "_" & $nodeID
|
||||
dataDir = buildDir / "data" / dataDirName
|
||||
validatorsDir = dataDir / "validators"
|
||||
secretsDir = dataDir / "secrets"
|
||||
beaconNodeBinary = buildDir / "beacon_node_" & dataDirName
|
||||
# using a separate VC is disabled on windows until we find a substitute for `&`
|
||||
validatorClientBinary = if separateVC: buildDir / "validator_client_" & dataDirName else: ""
|
||||
var
|
||||
nimFlagsBN = &"-d:chronicles_log_level=TRACE " & getEnv("NIM_PARAMS")
|
||||
nimFlagsVC = nimFlagsBN
|
||||
|
||||
if writeLogFile:
|
||||
# write the logs to a file
|
||||
let logFileNimParams = """ -d:"chronicles_sinks=textlines,json[file(placeholder_""" & staticExec("date +\"%Y%m%d%H%M%S\"") & """.log)]" """
|
||||
nimFlagsBN.add logFileNimParams.replace("placeholder_", "nbc_bn_")
|
||||
nimFlagsVC.add logFileNimParams.replace("placeholder_", "nbc_vc_")
|
||||
|
||||
let depositContractFile = testnetDir / depositContractFileName
|
||||
if system.fileExists(depositContractFile):
|
||||
depositContractOpt = "--deposit-contract=" & readFile(depositContractFile).strip
|
||||
|
||||
let depositContractBlockFile = testnetDir / depositContractBlockFileName
|
||||
if system.fileExists(depositContractBlockFile):
|
||||
depositContractOpt.add " --deposit-contract-block=" & readFile(depositContractBlockFile).strip
|
||||
|
||||
cd rootDir
|
||||
mkDir dataDir
|
||||
|
||||
if doBuild:
|
||||
makePrometheusConfig(nodeID, baseMetricsPort, dataDir)
|
||||
buildBinary(nimFlagsBN, preset, beaconNodeBinary, "beacon_node.nim")
|
||||
buildBinary(nimFlagsVC, preset, validatorClientBinary, "validator_client.nim")
|
||||
|
||||
if doBecomeValidator and depositContractOpt.len > 0 and not system.dirExists(validatorsDir):
|
||||
becomeValidator(validatorsDir, beaconNodeBinary, secretsDir, depositContractOpt, privateGoerliKey, becomeValidatorOnly)
|
||||
|
||||
echo &"extraBeaconNodeOptions = '{extraBeaconNodeOptions}'"
|
||||
|
||||
if doRun:
|
||||
runNode(dataDir, beaconNodeBinary, validatorClientBinary, bootstrapFileOpt,
|
||||
depositContractOpt, genesisFileOpt, extraBeaconNodeOptions,
|
||||
basePort, nodeID, baseMetricsPort, baseRpcPort,
|
||||
printCmdOnly)
|
Loading…
Reference in New Issue