# beacon_chain # Copyright (c) 2018-2021 Status Research & Development GmbH # Licensed and distributed under either of # * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT). # * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0). # at your option. This file may not be copied, modified, or distributed except according to those terms. import chronicles, options, stew/endians2, ../beacon_chain/validators/validator_pool, ../beacon_chain/spec/datatypes/merge, ../beacon_chain/spec/[ beaconstate, helpers, keystore, signatures, state_transition, validator] type MockPrivKeysT = object MockPubKeysT = object const MockPrivKeys* = MockPrivKeysT() MockPubKeys* = MockPubKeysT() # https://github.com/ethereum/consensus-specs/blob/v1.1.5/tests/core/pyspec/eth2spec/test/helpers/keys.py func `[]`*(_: MockPrivKeysT, index: ValidatorIndex): ValidatorPrivKey = # 0 is not a valid BLS private key - 1000 helps interop with rust BLS library, # lighthouse. EF tests use 1 instead of 1000. var bytes = (index.uint64 + 1000'u64).toBytesLE() static: doAssert sizeof(bytes) <= sizeof(result) copyMem(addr result, addr bytes, sizeof(bytes)) func `[]`*(_: MockPubKeysT, index: ValidatorIndex): ValidatorPubKey = MockPrivKeys[index].toPubKey().toPubKey() func makeFakeHash*(i: int): Eth2Digest = var bytes = uint64(i).toBytesLE() static: doAssert sizeof(bytes) <= sizeof(result.data) copyMem(addr result.data[0], addr bytes[0], sizeof(bytes)) func makeDeposit*( i: int, flags: UpdateFlags = {}, cfg = defaultRuntimeConfig): DepositData = let privkey = MockPrivKeys[i.ValidatorIndex] pubkey = MockPubKeys[i.ValidatorIndex] withdrawal_credentials = makeWithdrawalCredentials(pubkey) result = DepositData( pubkey: pubkey, withdrawal_credentials: withdrawal_credentials, amount: MAX_EFFECTIVE_BALANCE) if skipBLSValidation notin flags: result.signature = get_deposit_signature(cfg, result, privkey).toValidatorSig() func makeInitialDeposits*( n = SLOTS_PER_EPOCH, flags: UpdateFlags = {}, cfg = defaultRuntimeConfig): seq[DepositData] = for i in 0.. committee index -> # montonoic enumerable index, is wasteful and slow. Most test callers # want ValidatorIndex, so that's supported too. let validator = getStateField(state, validators)[validator_index] sac_index = committee.find(validator_index) data = makeAttestationData(state, slot, index, beacon_block_root) doAssert sac_index != -1, "find_beacon_committee should guarantee this" var aggregation_bits = CommitteeValidatorsBits.init(committee.len) aggregation_bits.setBit sac_index let sig = if skipBLSValidation notin flags: get_attestation_signature( getStateField(state, fork), getStateField(state, genesis_validators_root), data, MockPrivKeys[validator_index]).toValidatorSig() else: ValidatorSig() Attestation( data: data, aggregation_bits: aggregation_bits, signature: sig ) func find_beacon_committee( state: ForkedHashedBeaconState, validator_index: ValidatorIndex, cache: var StateCache): auto = let epoch = compute_epoch_at_slot(getStateField(state, slot)) for epoch_committee_index in 0'u64 ..< get_committee_count_per_slot( state, epoch, cache) * SLOTS_PER_EPOCH: let slot = ((epoch_committee_index mod SLOTS_PER_EPOCH) + epoch.compute_start_slot_at_epoch.uint64).Slot index = CommitteeIndex(epoch_committee_index div SLOTS_PER_EPOCH) committee = get_beacon_committee(state, slot, index, cache) if validator_index in committee: return (committee, slot, index) doAssert false func makeAttestation*( state: ForkedHashedBeaconState, beacon_block_root: Eth2Digest, validator_index: ValidatorIndex, cache: var StateCache): Attestation = let (committee, slot, index) = find_beacon_committee(state, validator_index, cache) makeAttestation(state, beacon_block_root, committee, slot, index, validator_index, cache) func makeFullAttestations*( state: ForkedHashedBeaconState, beacon_block_root: Eth2Digest, slot: Slot, cache: var StateCache, flags: UpdateFlags = {}): seq[Attestation] = # Create attestations in which the full committee participates for each shard # that should be attested to during a particular slot let committees_per_slot = get_committee_count_per_slot(state, slot.epoch, cache) for index in 0'u64..= 1 # Initial attestation var attestation = Attestation( aggregation_bits: CommitteeValidatorsBits.init(committee.len), data: data) var agg {.noInit.}: AggregateSignature agg.init(get_attestation_signature( getStateField(state, fork), getStateField(state, genesis_validators_root), data, MockPrivKeys[committee[0]])) # Aggregate the remainder attestation.aggregation_bits.setBit 0 for j in 1 ..< committee.len(): attestation.aggregation_bits.setBit j if skipBLSValidation notin flags: agg.aggregate(get_attestation_signature( getStateField(state, fork), getStateField(state, genesis_validators_root), data, MockPrivKeys[committee[j]] )) attestation.signature = agg.finish().toValidatorSig() result.add attestation iterator makeTestBlocks*( state: ForkedHashedBeaconState, parent_root: Eth2Digest, cache: var StateCache, blocks: int, attested: bool, cfg = defaultRuntimeConfig): ForkedSignedBeaconBlock = var state = assignClone(state) parent_root = parent_root for _ in 0..