2018-12-19 12:58:53 +00:00
|
|
|
import
|
|
|
|
os, ospaths, strutils, strformat,
|
|
|
|
milagro_crypto, nimcrypto, json_serialization,
|
|
|
|
spec/[datatypes, digest, crypto], conf, randao, time, ssz,
|
|
|
|
../tests/testutil
|
|
|
|
|
|
|
|
proc writeFile(filename: string, value: auto) =
|
|
|
|
Json.saveFile(filename, value, pretty = true)
|
|
|
|
echo &"Wrote {filename}"
|
|
|
|
|
|
|
|
proc genSingleValidator(path: string): (ValidatorPubKey,
|
|
|
|
ValidatorPrivKey,
|
|
|
|
Eth2Digest) =
|
|
|
|
var v: PrivateValidatorData
|
|
|
|
v.privKey = newSigKey()
|
|
|
|
if randomBytes(v.randao.seed.data) != sizeof(v.randao.seed.data):
|
2018-12-08 14:17:47 +00:00
|
|
|
raise newException(Exception, "Could not generate randao seed")
|
|
|
|
|
2018-12-19 12:58:53 +00:00
|
|
|
writeFile(path, v)
|
|
|
|
|
|
|
|
return (v.privKey.pubKey(), v.privKey, v.randao.initialCommitment)
|
2018-12-08 14:17:47 +00:00
|
|
|
|
|
|
|
proc printUsage() =
|
2018-12-19 12:58:53 +00:00
|
|
|
echo "Usage: validator_keygen <number-of-validators> <out-path>"
|
|
|
|
|
|
|
|
# TODO: Make these more comprehensive and find them a new home
|
|
|
|
type
|
|
|
|
Ether* = distinct int64
|
|
|
|
GWei* = distinct int64
|
|
|
|
|
|
|
|
template eth*(x: SomeInteger): Ether = Ether(x)
|
|
|
|
template gwei*(x: Ether): Gwei = Gwei(int(x) * 1000000000)
|
2018-12-08 14:17:47 +00:00
|
|
|
|
|
|
|
proc main() =
|
2018-12-19 12:58:53 +00:00
|
|
|
if paramCount() != 2:
|
2018-12-08 14:17:47 +00:00
|
|
|
printUsage()
|
|
|
|
return
|
|
|
|
|
2018-12-19 12:58:53 +00:00
|
|
|
let totalValidators = parseInt paramStr(1)
|
|
|
|
if totalValidators < 64:
|
|
|
|
echo "The number of validators must be higher than ", EPOCH_LENGTH, " (EPOCH_LENGTH)"
|
|
|
|
echo "There must be at least one validator assigned per slot."
|
|
|
|
quit 1
|
|
|
|
|
|
|
|
let outPath = paramStr(2)
|
|
|
|
|
|
|
|
var startupData: ChainStartupData
|
|
|
|
|
|
|
|
for i in 1 .. totalValidators:
|
|
|
|
let (pubKey, privKey, randaoCommitment) =
|
|
|
|
|
|
|
|
genSingleValidator(outPath / &"validator-{i:02}.json")
|
|
|
|
|
|
|
|
let withdrawalCredentials = makeFakeHash(i)
|
2018-12-21 23:47:55 +00:00
|
|
|
let proofOfPossession = signMessage(privkey, hash_tree_root_final(
|
|
|
|
(pubKey, withdrawalCredentials, randaoCommitment)).data)
|
2018-12-19 12:58:53 +00:00
|
|
|
|
|
|
|
startupData.validatorDeposits.add Deposit(
|
|
|
|
deposit_data: DepositData(
|
|
|
|
value: MAX_DEPOSIT * GWEI_PER_ETH,
|
|
|
|
timestamp: now(),
|
2018-12-27 20:14:37 +00:00
|
|
|
deposit_input: DepositInput(
|
2018-12-19 12:58:53 +00:00
|
|
|
pubkey: pubKey,
|
|
|
|
proof_of_possession: proofOfPossession,
|
|
|
|
withdrawal_credentials: withdrawalCredentials,
|
|
|
|
randao_commitment: randaoCommitment)))
|
|
|
|
|
|
|
|
startupData.genesisTime = now()
|
2018-12-08 14:17:47 +00:00
|
|
|
|
2018-12-19 12:58:53 +00:00
|
|
|
writeFile(outPath / "startup.json", startupData)
|
2018-12-08 14:17:47 +00:00
|
|
|
|
|
|
|
when isMainModule:
|
|
|
|
main()
|
|
|
|
|