2019-10-28 23:07:31 +00:00
|
|
|
import
|
|
|
|
confutils, strutils, strformat, ospaths
|
|
|
|
|
|
|
|
const
|
|
|
|
rootDir = thisDir() / ".."
|
|
|
|
bootstrapFile = "bootstrap_nodes.txt"
|
|
|
|
depositContractFile = "deposit_contract.txt"
|
|
|
|
genesisFile = "genesis.ssz"
|
|
|
|
configFile = "config.yaml"
|
2019-10-29 18:22:25 +00:00
|
|
|
clientsOrg = "eth2-clients"
|
2019-10-28 23:07:31 +00:00
|
|
|
testnetsRepo = "eth2-testnets"
|
2019-10-29 13:41:10 +00:00
|
|
|
testnetsRepoGitUrl = "https://github.com/" & clientsOrg & "/" & testnetsRepo
|
2019-10-28 23:07:31 +00:00
|
|
|
|
|
|
|
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])
|
|
|
|
|
|
|
|
cli do (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
|
|
|
|
|
2019-11-07 20:10:59 +00:00
|
|
|
rmDir(allTestnetsDir)
|
|
|
|
cd buildDir
|
|
|
|
exec &"git clone --quiet {testnetsRepoGitUrl}"
|
2019-10-28 23:07:31 +00:00
|
|
|
|
|
|
|
let testnetDir = allTestnetsDir / team / testnet
|
|
|
|
if not dirExists(testnetDir):
|
|
|
|
echo &"No metadata files exists for the '{testnetName}' testnet"
|
|
|
|
quit 1
|
|
|
|
|
|
|
|
proc checkRequiredFile(fileName: string) =
|
|
|
|
let filePath = testnetDir / fileName
|
|
|
|
if not fileExists(filePath):
|
|
|
|
echo &"The required file {fileName} is not present in '{testnetDir}'."
|
|
|
|
quit 1
|
|
|
|
|
|
|
|
checkRequiredFile bootstrapFile
|
|
|
|
checkRequiredFile genesisFile
|
|
|
|
|
|
|
|
var preset = testnetDir / configFile
|
|
|
|
if not fileExists(preset): preset = "minimal"
|
|
|
|
|
|
|
|
let
|
|
|
|
dataDirName = testnetName.replace("/", "_")
|
|
|
|
dataDir = buildDir / "data" / dataDirName
|
|
|
|
beaconNodeBinary = buildDir / "beacon_node_" & dataDirName
|
2019-11-05 22:54:52 +00:00
|
|
|
nimFlags = "-d:release --lineTrace:on -d:chronicles_log_level=DEBUG " & getEnv("NIM_PARAMS")
|
2019-10-28 23:07:31 +00:00
|
|
|
|
2019-10-29 00:27:13 +00:00
|
|
|
var depositContractOpt = ""
|
|
|
|
let depositContractFile = testnetDir / depositContractFile
|
|
|
|
if fileExists(depositContractFile):
|
|
|
|
depositContractOpt = "--deposit-contract=" & readFile(depositContractFile).strip
|
|
|
|
|
2019-10-28 23:07:31 +00:00
|
|
|
cd rootDir
|
|
|
|
exec &"""nim c {nimFlags} -d:"const_preset={preset}" -o:"{beaconNodeBinary}" beacon_chain/beacon_node.nim"""
|
|
|
|
exec replace(&"""{beaconNodeBinary}
|
|
|
|
--data-dir="{dataDir}"
|
|
|
|
--bootstrap-file="{testnetDir/bootstrapFile}"
|
2019-10-29 00:27:13 +00:00
|
|
|
--state-snapshot="{testnetDir/genesisFile}" """ & depositContractOpt, "\n", " ")
|
2019-10-28 23:07:31 +00:00
|
|
|
|