105 lines
2.8 KiB
Nim
105 lines
2.8 KiB
Nim
import
|
|
os, options,
|
|
confutils/defs, chronicles/options as chroniclesOptions,
|
|
json_serialization,
|
|
spec/[crypto, datatypes], time
|
|
|
|
export
|
|
json_serialization
|
|
|
|
type
|
|
ValidatorKeyPath* = distinct string
|
|
|
|
StartUpCommand* = enum
|
|
noCommand
|
|
createChain
|
|
|
|
BeaconNodeConf* = object
|
|
logLevel* {.
|
|
desc: "Sets the log level",
|
|
defaultValue: enabledLogLevel
|
|
.}: LogLevel
|
|
|
|
case cmd* {.
|
|
command
|
|
defaultValue: noCommand.}: StartUpCommand
|
|
|
|
of noCommand:
|
|
dataDir* {.
|
|
desc: "The directory where nimbus will store all blockchain data."
|
|
shortform: "d"
|
|
defaultValue: getConfigDir() / "nimbus".}: DirPath
|
|
|
|
bootstrapNodes* {.
|
|
desc: "Specifies one or more bootstrap nodes to use when connecting to the network."
|
|
longform: "bootstrapNode"
|
|
shortform: "b".}: seq[string]
|
|
|
|
bootstrapNodesFile* {.
|
|
desc: "Specifies a line-delimited file of bootsrap Ethereum network addresses"
|
|
shortform: "f"
|
|
defaultValue: "".}: FilePath
|
|
|
|
tcpPort* {.
|
|
desc: "TCP listening port".}: int
|
|
|
|
udpPort* {.
|
|
desc: "UDP listening port".}: int
|
|
|
|
validators* {.
|
|
required
|
|
desc: "Path to a validator private key, as generated by validator_keygen"
|
|
longform: "validator"
|
|
shortform: "v".}: seq[ValidatorPrivKey]
|
|
|
|
stateSnapshot* {.
|
|
desc: "Json file specifying a recent state snapshot"
|
|
shortform: "s".}: Option[BeaconState]
|
|
|
|
of createChain:
|
|
validatorsDir* {.
|
|
desc: "Directory containing validator descriptors named vXXXXXXX.deposit.json"
|
|
shortform: "d".}: DirPath
|
|
|
|
numValidators* {.
|
|
desc: ""
|
|
shortform: "n".}: int
|
|
|
|
firstValidator* {.
|
|
desc: "index of first validator to add to validator list"
|
|
shortform: "o"
|
|
defaultValue: 0.}: int
|
|
|
|
genesisOffset* {.
|
|
desc: "Seconds from now to add to genesis time"
|
|
shortForm: "g"
|
|
defaultValue: 5 .}: int
|
|
|
|
outputStateFile* {.
|
|
desc: "Output file where to write the initial state snapshot"
|
|
longform: "out"
|
|
shortform: "o".}: OutFilePath
|
|
|
|
proc readFileBytes(path: string): seq[byte] =
|
|
cast[seq[byte]](readFile(path))
|
|
|
|
proc loadPrivKey*(p: ValidatorKeyPath): ValidatorPrivKey =
|
|
ValidatorPrivKey.init(readFileBytes(string(p) & ".privkey"))
|
|
|
|
proc parseCmdArg*(T: type ValidatorKeyPath, input: TaintedString): T =
|
|
result = T(input)
|
|
discard loadPrivKey(result)
|
|
|
|
template mustBeFilePath(input: TaintedString) =
|
|
if not fileExists(string input):
|
|
raise newException(ValueError, "")
|
|
|
|
template handledAsJsonFilename(T: untyped) {.dirty.} =
|
|
proc parseCmdArg*(_: type T, input: TaintedString): T =
|
|
input.mustBeFilePath
|
|
return Json.loadFile(string(input), T)
|
|
|
|
handledAsJsonFilename BeaconState
|
|
handledAsJsonFilename Deposit
|
|
handledAsJsonFilename ValidatorPrivKey
|