54 lines
1.6 KiB
Nim
54 lines
1.6 KiB
Nim
{.push raises: [Defect].}
|
|
|
|
import
|
|
stew/endians2, stint,
|
|
./extras, ./ssz/merkleization,
|
|
spec/[crypto, datatypes, digest, keystore, signatures]
|
|
|
|
func get_eth1data_stub*(deposit_count: uint64, current_epoch: Epoch): Eth1Data =
|
|
# https://github.com/ethereum/eth2.0-pm/blob/e596c70a19e22c7def4fd3519e20ae4022349390/interop/mocked_eth1data/README.md
|
|
let
|
|
voting_period = current_epoch.uint64 div EPOCHS_PER_ETH1_VOTING_PERIOD
|
|
|
|
Eth1Data(
|
|
deposit_root: hash_tree_root(voting_period),
|
|
deposit_count: deposit_count,
|
|
block_hash: hash_tree_root(hash_tree_root(voting_period).data),
|
|
)
|
|
|
|
func makeInteropPrivKey*(i: int): ValidatorPrivKey =
|
|
var bytes: array[32, byte]
|
|
bytes[0..7] = uint64(i).toBytesLE()
|
|
|
|
let
|
|
# BLS381-12 curve order - same as milagro but formatted different
|
|
curveOrder =
|
|
"52435875175126190479447740508185965837690552500527637822603658699938581184513".parse(UInt256)
|
|
|
|
privkeyBytes = eth2digest(bytes)
|
|
key = (UInt256.fromBytesLE(privkeyBytes.data) mod curveOrder).toBytesBE()
|
|
|
|
ValidatorPrivKey.fromRaw(key).get
|
|
|
|
const eth1BlockHash* = block:
|
|
var x: Eth2Digest
|
|
for v in x.data.mitems: v = 0x42
|
|
x
|
|
|
|
func makeDeposit*(
|
|
preset: RuntimePreset,
|
|
pubkey: ValidatorPubKey, privkey: ValidatorPrivKey, epoch = 0.Epoch,
|
|
amount: Gwei = MAX_EFFECTIVE_BALANCE.Gwei,
|
|
flags: UpdateFlags = {}): Deposit =
|
|
var
|
|
ret = Deposit(
|
|
data: DepositData(
|
|
amount: amount,
|
|
pubkey: pubkey,
|
|
withdrawal_credentials: makeWithdrawalCredentials(pubkey)))
|
|
|
|
if skipBLSValidation notin flags:
|
|
ret.data.signature = preset.get_deposit_signature(ret.data, privkey)
|
|
|
|
ret
|