2020-06-16 05:45:04 +00:00
|
|
|
# beacon_chain
|
2022-01-06 11:25:35 +00:00
|
|
|
# Copyright (c) 2018-2022 Status Research & Development GmbH
|
2020-06-16 05:45:04 +00:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
2021-12-09 12:56:54 +00:00
|
|
|
## Signature production and verification for spec types - for every type of
|
|
|
|
## signature, there are 3 functions:
|
|
|
|
## * `compute_*_signing_root` - reduce message to the data that will be signed
|
|
|
|
## * `get_*_signature` - sign the signing root with a private key
|
|
|
|
## * `verify_*_signature` - verify a signature produced by `get_*_signature`
|
|
|
|
##
|
|
|
|
## See also `signatures_batch` for batch verification versions of these
|
|
|
|
## functions.
|
|
|
|
|
2020-06-16 05:45:04 +00:00
|
|
|
import
|
2022-01-06 11:25:35 +00:00
|
|
|
./datatypes/[phase0, altair, bellatrix], ./helpers, ./eth2_merkleization
|
2021-08-12 13:08:20 +00:00
|
|
|
|
|
|
|
export phase0, altair
|
2020-06-16 05:45:04 +00:00
|
|
|
|
2020-06-25 10:23:10 +00:00
|
|
|
template withTrust(sig: SomeSig, body: untyped): bool =
|
|
|
|
when sig is TrustedSig:
|
|
|
|
true
|
|
|
|
else:
|
|
|
|
body
|
|
|
|
|
2021-03-29 19:17:48 +00:00
|
|
|
func getDepositMessage(depositData: DepositData): DepositMessage =
|
|
|
|
DepositMessage(
|
|
|
|
pubkey: depositData.pubkey,
|
|
|
|
amount: depositData.amount,
|
|
|
|
withdrawal_credentials: depositData.withdrawal_credentials)
|
|
|
|
|
2021-12-09 12:56:54 +00:00
|
|
|
func compute_slot_signing_root*(
|
2020-09-01 13:44:40 +00:00
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest, slot: Slot
|
|
|
|
): Eth2Digest =
|
2020-06-16 05:45:04 +00:00
|
|
|
let
|
2022-01-11 10:01:54 +00:00
|
|
|
epoch = epoch(slot)
|
2020-06-16 05:45:04 +00:00
|
|
|
domain = get_domain(
|
|
|
|
fork, DOMAIN_SELECTION_PROOF, epoch, genesis_validators_root)
|
2021-08-17 08:07:17 +00:00
|
|
|
compute_signing_root(slot, domain)
|
2020-06-16 05:45:04 +00:00
|
|
|
|
2022-03-02 10:00:21 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.1.10/specs/phase0/validator.md#aggregation-selection
|
2020-09-01 13:44:40 +00:00
|
|
|
func get_slot_signature*(
|
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest, slot: Slot,
|
2021-04-26 20:39:44 +00:00
|
|
|
privkey: ValidatorPrivKey): CookedSig =
|
2021-12-09 12:56:54 +00:00
|
|
|
let signing_root = compute_slot_signing_root(
|
|
|
|
fork, genesis_validators_root, slot)
|
|
|
|
|
2022-04-08 16:22:49 +00:00
|
|
|
blsSign(privkey, signing_root.data)
|
2020-06-16 05:45:04 +00:00
|
|
|
|
2020-07-23 14:38:28 +00:00
|
|
|
proc verify_slot_signature*(
|
2020-07-02 16:15:27 +00:00
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest, slot: Slot,
|
2021-06-01 11:13:40 +00:00
|
|
|
pubkey: ValidatorPubKey | CookedPubKey, signature: SomeSig): bool =
|
2020-07-02 16:15:27 +00:00
|
|
|
withTrust(signature):
|
2021-12-09 12:56:54 +00:00
|
|
|
let signing_root = compute_slot_signing_root(
|
|
|
|
fork, genesis_validators_root, slot)
|
2020-07-02 16:15:27 +00:00
|
|
|
|
|
|
|
blsVerify(pubkey, signing_root.data, signature)
|
|
|
|
|
2021-12-09 12:56:54 +00:00
|
|
|
func compute_epoch_signing_root*(
|
2020-09-01 13:44:40 +00:00
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest, epoch: Epoch
|
|
|
|
): Eth2Digest =
|
2021-08-17 08:07:17 +00:00
|
|
|
let domain = get_domain(fork, DOMAIN_RANDAO, epoch, genesis_validators_root)
|
|
|
|
compute_signing_root(epoch, domain)
|
2020-09-01 13:44:40 +00:00
|
|
|
|
2022-03-02 10:00:21 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.1.10/specs/phase0/validator.md#randao-reveal
|
2020-06-16 05:45:04 +00:00
|
|
|
func get_epoch_signature*(
|
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest, epoch: Epoch,
|
2021-04-26 20:39:44 +00:00
|
|
|
privkey: ValidatorPrivKey): CookedSig =
|
2021-12-09 12:56:54 +00:00
|
|
|
let signing_root = compute_epoch_signing_root(
|
|
|
|
fork, genesis_validators_root, epoch)
|
|
|
|
|
2022-04-08 16:22:49 +00:00
|
|
|
blsSign(privkey, signing_root.data)
|
2020-06-16 05:45:04 +00:00
|
|
|
|
2020-07-23 14:38:28 +00:00
|
|
|
proc verify_epoch_signature*(
|
2020-06-16 05:45:04 +00:00
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest, epoch: Epoch,
|
2021-06-01 11:13:40 +00:00
|
|
|
pubkey: ValidatorPubKey | CookedPubKey, signature: SomeSig): bool =
|
2020-06-25 10:23:10 +00:00
|
|
|
withTrust(signature):
|
2021-12-09 12:56:54 +00:00
|
|
|
let signing_root = compute_epoch_signing_root(
|
|
|
|
fork, genesis_validators_root, epoch)
|
2020-06-16 05:45:04 +00:00
|
|
|
|
2020-06-25 10:23:10 +00:00
|
|
|
blsVerify(pubkey, signing_root.data, signature)
|
2020-06-16 05:45:04 +00:00
|
|
|
|
2021-12-09 12:56:54 +00:00
|
|
|
func compute_block_signing_root*(
|
2020-06-16 05:45:04 +00:00
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest, slot: Slot,
|
2022-01-30 16:51:04 +00:00
|
|
|
blck: Eth2Digest | SomeForkyBeaconBlock | BeaconBlockHeader): Eth2Digest =
|
2020-06-16 05:45:04 +00:00
|
|
|
let
|
2022-01-11 10:01:54 +00:00
|
|
|
epoch = epoch(slot)
|
2020-06-16 05:45:04 +00:00
|
|
|
domain = get_domain(
|
|
|
|
fork, DOMAIN_BEACON_PROPOSER, epoch, genesis_validators_root)
|
2021-12-09 12:56:54 +00:00
|
|
|
compute_signing_root(blck, domain)
|
2020-06-16 05:45:04 +00:00
|
|
|
|
2022-03-02 10:00:21 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.1.10/specs/phase0/validator.md#signature
|
2020-09-01 13:44:40 +00:00
|
|
|
func get_block_signature*(
|
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest, slot: Slot,
|
2021-04-26 20:39:44 +00:00
|
|
|
root: Eth2Digest, privkey: ValidatorPrivKey): CookedSig =
|
2021-12-09 12:56:54 +00:00
|
|
|
let signing_root = compute_block_signing_root(
|
|
|
|
fork, genesis_validators_root, slot, root)
|
|
|
|
|
2022-04-08 16:22:49 +00:00
|
|
|
blsSign(privkey, signing_root.data)
|
2020-06-16 05:45:04 +00:00
|
|
|
|
2020-07-23 14:38:28 +00:00
|
|
|
proc verify_block_signature*(
|
2020-06-16 05:45:04 +00:00
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest, slot: Slot,
|
2022-01-30 16:51:04 +00:00
|
|
|
blck: Eth2Digest | SomeForkyBeaconBlock | BeaconBlockHeader,
|
2021-06-01 11:13:40 +00:00
|
|
|
pubkey: ValidatorPubKey | CookedPubKey, signature: SomeSig): bool =
|
2020-06-25 10:23:10 +00:00
|
|
|
withTrust(signature):
|
|
|
|
let
|
2021-12-09 12:56:54 +00:00
|
|
|
signing_root = compute_block_signing_root(
|
|
|
|
fork, genesis_validators_root, slot, blck)
|
2020-06-25 10:23:10 +00:00
|
|
|
|
2021-12-09 12:56:54 +00:00
|
|
|
blsVerify(pubkey, signing_root.data, signature)
|
2020-06-16 05:45:04 +00:00
|
|
|
|
2021-12-09 12:56:54 +00:00
|
|
|
func compute_aggregate_and_proof_signing_root*(
|
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
|
|
|
aggregate_and_proof: AggregateAndProof): Eth2Digest =
|
2020-06-16 05:45:04 +00:00
|
|
|
let
|
2022-01-11 10:01:54 +00:00
|
|
|
epoch = epoch(aggregate_and_proof.aggregate.data.slot)
|
2020-06-16 05:45:04 +00:00
|
|
|
domain = get_domain(
|
|
|
|
fork, DOMAIN_AGGREGATE_AND_PROOF, epoch, genesis_validators_root)
|
2021-08-17 08:07:17 +00:00
|
|
|
compute_signing_root(aggregate_and_proof, domain)
|
2020-06-16 05:45:04 +00:00
|
|
|
|
2022-03-02 10:00:21 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.1.10/specs/phase0/validator.md#broadcast-aggregate
|
2020-09-01 13:44:40 +00:00
|
|
|
func get_aggregate_and_proof_signature*(fork: Fork, genesis_validators_root: Eth2Digest,
|
|
|
|
aggregate_and_proof: AggregateAndProof,
|
2022-04-08 16:22:49 +00:00
|
|
|
privkey: ValidatorPrivKey): CookedSig =
|
2021-12-09 12:56:54 +00:00
|
|
|
let signing_root = compute_aggregate_and_proof_signing_root(
|
|
|
|
fork, genesis_validators_root, aggregate_and_proof)
|
|
|
|
|
2022-04-08 16:22:49 +00:00
|
|
|
blsSign(privkey, signing_root.data)
|
2020-06-16 05:45:04 +00:00
|
|
|
|
2021-06-01 11:13:40 +00:00
|
|
|
proc verify_aggregate_and_proof_signature*(
|
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
|
|
|
aggregate_and_proof: AggregateAndProof,
|
|
|
|
pubkey: ValidatorPubKey | CookedPubKey, signature: SomeSig): bool =
|
2020-07-02 16:15:27 +00:00
|
|
|
withTrust(signature):
|
2021-12-09 12:56:54 +00:00
|
|
|
let signing_root = compute_aggregate_and_proof_signing_root(
|
|
|
|
fork, genesis_validators_root, aggregate_and_proof)
|
2020-07-02 16:15:27 +00:00
|
|
|
|
2021-12-22 12:37:31 +00:00
|
|
|
blsVerify(pubkey, signing_root.data, signature)
|
2020-07-02 16:15:27 +00:00
|
|
|
|
2021-12-09 12:56:54 +00:00
|
|
|
func compute_attestation_signing_root*(
|
2020-06-16 05:45:04 +00:00
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
2021-12-09 12:56:54 +00:00
|
|
|
attestation_data: AttestationData): Eth2Digest =
|
2020-06-16 05:45:04 +00:00
|
|
|
let
|
|
|
|
epoch = attestation_data.target.epoch
|
|
|
|
domain = get_domain(
|
|
|
|
fork, DOMAIN_BEACON_ATTESTER, epoch, genesis_validators_root)
|
2021-08-17 08:07:17 +00:00
|
|
|
compute_signing_root(attestation_data, domain)
|
|
|
|
|
2022-03-02 10:00:21 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.1.10/specs/phase0/validator.md#aggregate-signature
|
2020-09-01 13:44:40 +00:00
|
|
|
func get_attestation_signature*(
|
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
|
|
|
attestation_data: AttestationData,
|
2021-04-26 20:39:44 +00:00
|
|
|
privkey: ValidatorPrivKey): CookedSig =
|
2021-12-09 12:56:54 +00:00
|
|
|
let signing_root = compute_attestation_signing_root(
|
|
|
|
fork, genesis_validators_root, attestation_data)
|
|
|
|
|
2022-04-08 16:22:49 +00:00
|
|
|
blsSign(privkey, signing_root.data)
|
2020-06-16 05:45:04 +00:00
|
|
|
|
2020-07-23 14:38:28 +00:00
|
|
|
proc verify_attestation_signature*(
|
2020-06-16 05:45:04 +00:00
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
|
|
|
attestation_data: AttestationData,
|
2021-12-09 12:56:54 +00:00
|
|
|
pubkeys: auto, signature: SomeSig): bool =
|
2020-06-25 10:23:10 +00:00
|
|
|
withTrust(signature):
|
2021-12-09 12:56:54 +00:00
|
|
|
let signing_root = compute_attestation_signing_root(
|
|
|
|
fork, genesis_validators_root, attestation_data)
|
2020-06-16 05:45:04 +00:00
|
|
|
|
2020-06-25 10:23:10 +00:00
|
|
|
blsFastAggregateVerify(pubkeys, signing_root.data, signature)
|
2020-06-16 05:45:04 +00:00
|
|
|
|
2021-12-09 12:56:54 +00:00
|
|
|
func compute_deposit_signing_root*(
|
|
|
|
version: Version,
|
|
|
|
deposit_message: DepositMessage): Eth2Digest =
|
|
|
|
let
|
|
|
|
# Fork-agnostic domain since deposits are valid across forks
|
|
|
|
domain = compute_domain(DOMAIN_DEPOSIT, version)
|
|
|
|
compute_signing_root(deposit_message, domain)
|
|
|
|
|
2022-03-02 10:00:21 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.1.10/specs/phase0/beacon-chain.md#deposits
|
Implement split preset/config support (#2710)
* Implement split preset/config support
This is the initial bulk refactor to introduce runtime config values in
a number of places, somewhat replacing the existing mechanism of loading
network metadata.
It still needs more work, this is the initial refactor that introduces
runtime configuration in some of the places that need it.
The PR changes the way presets and constants work, to match the spec. In
particular, a "preset" now refers to the compile-time configuration
while a "cfg" or "RuntimeConfig" is the dynamic part.
A single binary can support either mainnet or minimal, but not both.
Support for other presets has been removed completely (can be readded,
in case there's need).
There's a number of outstanding tasks:
* `SECONDS_PER_SLOT` still needs fixing
* loading custom runtime configs needs redoing
* checking constants against YAML file
* yeerongpilly support
`build/nimbus_beacon_node --network=yeerongpilly --discv5:no --log-level=DEBUG`
* load fork epoch from config
* fix fork digest sent in status
* nicer error string for request failures
* fix tools
* one more
* fixup
* fixup
* fixup
* use "standard" network definition folder in local testnet
Files are loaded from their standard locations, including genesis etc,
to conform to the format used in the `eth2-networks` repo.
* fix launch scripts, allow unknown config values
* fix base config of rest test
* cleanups
* bundle mainnet config using common loader
* fix spec links and names
* only include supported preset in binary
* drop yeerongpilly, add altair-devnet-0, support boot_enr.yaml
2021-07-12 13:01:38 +00:00
|
|
|
func get_deposit_signature*(preset: RuntimeConfig,
|
2020-07-07 23:02:14 +00:00
|
|
|
deposit: DepositData,
|
2021-04-26 20:39:44 +00:00
|
|
|
privkey: ValidatorPrivKey): CookedSig =
|
2021-12-09 12:56:54 +00:00
|
|
|
let signing_root = compute_deposit_signing_root(
|
|
|
|
preset.GENESIS_FORK_VERSION, deposit.getDepositMessage())
|
2020-06-16 05:45:04 +00:00
|
|
|
|
2022-04-08 16:22:49 +00:00
|
|
|
blsSign(privkey, signing_root.data)
|
2020-06-16 05:45:04 +00:00
|
|
|
|
2021-11-30 01:20:21 +00:00
|
|
|
func get_deposit_signature*(message: DepositMessage, version: Version,
|
|
|
|
privkey: ValidatorPrivKey): CookedSig =
|
2021-12-09 12:56:54 +00:00
|
|
|
let signing_root = compute_deposit_signing_root(version, message)
|
|
|
|
|
2021-11-30 01:20:21 +00:00
|
|
|
blsSign(privkey, signing_root.data)
|
|
|
|
|
Implement split preset/config support (#2710)
* Implement split preset/config support
This is the initial bulk refactor to introduce runtime config values in
a number of places, somewhat replacing the existing mechanism of loading
network metadata.
It still needs more work, this is the initial refactor that introduces
runtime configuration in some of the places that need it.
The PR changes the way presets and constants work, to match the spec. In
particular, a "preset" now refers to the compile-time configuration
while a "cfg" or "RuntimeConfig" is the dynamic part.
A single binary can support either mainnet or minimal, but not both.
Support for other presets has been removed completely (can be readded,
in case there's need).
There's a number of outstanding tasks:
* `SECONDS_PER_SLOT` still needs fixing
* loading custom runtime configs needs redoing
* checking constants against YAML file
* yeerongpilly support
`build/nimbus_beacon_node --network=yeerongpilly --discv5:no --log-level=DEBUG`
* load fork epoch from config
* fix fork digest sent in status
* nicer error string for request failures
* fix tools
* one more
* fixup
* fixup
* fixup
* use "standard" network definition folder in local testnet
Files are loaded from their standard locations, including genesis etc,
to conform to the format used in the `eth2-networks` repo.
* fix launch scripts, allow unknown config values
* fix base config of rest test
* cleanups
* bundle mainnet config using common loader
* fix spec links and names
* only include supported preset in binary
* drop yeerongpilly, add altair-devnet-0, support boot_enr.yaml
2021-07-12 13:01:38 +00:00
|
|
|
proc verify_deposit_signature*(preset: RuntimeConfig,
|
2020-07-07 23:02:14 +00:00
|
|
|
deposit: DepositData): bool =
|
2020-06-16 05:45:04 +00:00
|
|
|
let
|
|
|
|
deposit_message = deposit.getDepositMessage()
|
2021-12-09 12:56:54 +00:00
|
|
|
signing_root = compute_deposit_signing_root(
|
|
|
|
preset.GENESIS_FORK_VERSION, deposit_message)
|
2020-06-16 05:45:04 +00:00
|
|
|
|
|
|
|
blsVerify(deposit.pubkey, signing_root.data, deposit.signature)
|
|
|
|
|
2021-12-09 12:56:54 +00:00
|
|
|
func compute_voluntary_exit_signing_root*(
|
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
|
|
|
voluntary_exit: VoluntaryExit): Eth2Digest =
|
|
|
|
let
|
|
|
|
epoch = voluntary_exit.epoch
|
|
|
|
domain = get_domain(
|
|
|
|
fork, DOMAIN_VOLUNTARY_EXIT, epoch, genesis_validators_root)
|
|
|
|
compute_signing_root(voluntary_exit, domain)
|
|
|
|
|
2020-11-27 19:48:33 +00:00
|
|
|
func get_voluntary_exit_signature*(
|
2021-12-09 12:56:54 +00:00
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
2020-11-27 19:48:33 +00:00
|
|
|
voluntary_exit: VoluntaryExit,
|
2021-04-26 20:39:44 +00:00
|
|
|
privkey: ValidatorPrivKey): CookedSig =
|
2021-12-09 12:56:54 +00:00
|
|
|
let signing_root = compute_voluntary_exit_signing_root(
|
|
|
|
fork, genesis_validators_root, voluntary_exit)
|
2020-11-27 19:48:33 +00:00
|
|
|
|
2022-04-08 16:22:49 +00:00
|
|
|
blsSign(privkey, signing_root.data)
|
2020-11-27 19:48:33 +00:00
|
|
|
|
2020-07-23 14:38:28 +00:00
|
|
|
proc verify_voluntary_exit_signature*(
|
2021-12-09 12:56:54 +00:00
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
2020-06-16 05:45:04 +00:00
|
|
|
voluntary_exit: VoluntaryExit,
|
2021-12-09 12:56:54 +00:00
|
|
|
pubkey: ValidatorPubKey | CookedPubKey, signature: SomeSig): bool =
|
2020-06-25 10:23:10 +00:00
|
|
|
withTrust(signature):
|
2021-12-09 12:56:54 +00:00
|
|
|
let signing_root = compute_voluntary_exit_signing_root(
|
|
|
|
fork, genesis_validators_root, voluntary_exit)
|
2020-06-25 10:23:10 +00:00
|
|
|
|
|
|
|
blsVerify(pubkey, signing_root.data, signature)
|
2021-08-17 08:07:17 +00:00
|
|
|
|
2022-03-02 10:00:21 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.1.10/specs/altair/validator.md#prepare-sync-committee-message
|
2021-12-09 12:56:54 +00:00
|
|
|
func compute_sync_committee_message_signing_root*(
|
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
|
|
|
slot: Slot, beacon_block_root: Eth2Digest): Eth2Digest =
|
|
|
|
let domain = get_domain(
|
|
|
|
fork, DOMAIN_SYNC_COMMITTEE, slot.epoch, genesis_validators_root)
|
|
|
|
compute_signing_root(beacon_block_root, domain)
|
2021-11-30 01:20:21 +00:00
|
|
|
|
2021-12-09 12:56:54 +00:00
|
|
|
func get_sync_committee_message_signature*(
|
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
|
|
|
slot: Slot, beacon_block_root: Eth2Digest,
|
|
|
|
privkey: ValidatorPrivKey): CookedSig =
|
|
|
|
let signing_root = compute_sync_committee_message_signing_root(
|
|
|
|
fork, genesis_validators_root, slot, beacon_block_root)
|
2021-11-30 01:20:21 +00:00
|
|
|
|
|
|
|
blsSign(privkey, signing_root.data)
|
|
|
|
|
2021-08-17 08:07:17 +00:00
|
|
|
proc verify_sync_committee_message_signature*(
|
2021-12-09 12:56:54 +00:00
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
|
|
|
slot: Slot, beacon_block_root: Eth2Digest,
|
|
|
|
pubkey: ValidatorPubKey | CookedPubKey, signature: SomeSig): bool =
|
|
|
|
let signing_root = compute_sync_committee_message_signing_root(
|
|
|
|
fork, genesis_validators_root, slot, beacon_block_root)
|
2021-08-17 08:07:17 +00:00
|
|
|
|
|
|
|
blsVerify(pubkey, signing_root.data, signature)
|
|
|
|
|
2021-12-09 12:56:54 +00:00
|
|
|
proc verify_sync_committee_signature*(
|
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
|
|
|
slot: Slot, beacon_block_root: Eth2Digest,
|
|
|
|
pubkeys: auto, signature: SomeSig): bool =
|
|
|
|
let signing_root = compute_sync_committee_message_signing_root(
|
|
|
|
fork, genesis_validators_root, slot, beacon_block_root)
|
|
|
|
|
|
|
|
blsFastAggregateVerify(pubkeys, signing_root.data, signature)
|
|
|
|
|
2022-03-02 10:00:21 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.1.10/specs/altair/validator.md#aggregation-selection
|
2021-12-09 12:56:54 +00:00
|
|
|
func compute_sync_committee_selection_proof_signing_root*(
|
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
|
|
|
slot: Slot, subcommittee_index: uint64): Eth2Digest =
|
|
|
|
let
|
|
|
|
domain = get_domain(fork, DOMAIN_SYNC_COMMITTEE_SELECTION_PROOF,
|
|
|
|
slot.epoch, genesis_validators_root)
|
|
|
|
signing_data = SyncAggregatorSelectionData(
|
|
|
|
slot: slot,
|
|
|
|
subcommittee_index: subcommittee_index)
|
|
|
|
compute_signing_root(signing_data, domain)
|
|
|
|
|
|
|
|
func get_sync_committee_selection_proof*(
|
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
|
|
|
slot: Slot, subcommittee_index: uint64,
|
|
|
|
privkey: ValidatorPrivKey): CookedSig =
|
|
|
|
let signing_root = compute_sync_committee_selection_proof_signing_root(
|
|
|
|
fork, genesis_validators_root, slot, subcommittee_index)
|
|
|
|
|
|
|
|
blsSign(privkey, signing_root.data)
|
|
|
|
|
|
|
|
proc verify_sync_committee_selection_proof*(
|
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
|
|
|
slot: Slot, subcommittee_index: uint64,
|
|
|
|
pubkey: ValidatorPubKey | CookedPubKey, signature: SomeSig): bool =
|
|
|
|
withTrust(signature):
|
|
|
|
let signing_root = compute_sync_committee_selection_proof_signing_root(
|
|
|
|
fork, genesis_validators_root, slot, subcommittee_index)
|
|
|
|
|
|
|
|
blsVerify(pubkey, signing_root.data, signature)
|
|
|
|
|
2022-03-02 10:00:21 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.1.10/specs/altair/validator.md#signature
|
2021-12-09 12:56:54 +00:00
|
|
|
func compute_contribution_and_proof_signing_root*(
|
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
|
|
|
msg: ContributionAndProof): Eth2Digest =
|
|
|
|
let domain = get_domain(fork, DOMAIN_CONTRIBUTION_AND_PROOF,
|
|
|
|
msg.contribution.slot.epoch,
|
|
|
|
genesis_validators_root)
|
|
|
|
compute_signing_root(msg, domain)
|
|
|
|
|
|
|
|
proc get_contribution_and_proof_signature*(
|
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
|
|
|
msg: ContributionAndProof,
|
|
|
|
privkey: ValidatorPrivKey): CookedSig =
|
|
|
|
let signing_root = compute_contribution_and_proof_signing_root(
|
|
|
|
fork, genesis_validators_root, msg)
|
|
|
|
|
|
|
|
blsSign(privkey, signing_root.data)
|
|
|
|
|
|
|
|
|
2022-03-02 10:00:21 +00:00
|
|
|
# https://github.com/ethereum/consensus-specs/blob/v1.1.10/specs/altair/validator.md#aggregation-selection
|
2021-08-17 08:07:17 +00:00
|
|
|
proc is_sync_committee_aggregator*(signature: ValidatorSig): bool =
|
|
|
|
let
|
|
|
|
signatureDigest = eth2digest(signature.blob)
|
|
|
|
modulo = max(1'u64, (SYNC_COMMITTEE_SIZE div SYNC_COMMITTEE_SUBNET_COUNT) div TARGET_AGGREGATORS_PER_SYNC_SUBCOMMITTEE)
|
|
|
|
bytes_to_uint64(signatureDigest.data.toOpenArray(0, 7)) mod modulo == 0
|
|
|
|
|
2021-12-09 12:56:54 +00:00
|
|
|
proc verify_contribution_and_proof_signature*(
|
|
|
|
fork: Fork, genesis_validators_root: Eth2Digest,
|
2021-08-17 08:07:17 +00:00
|
|
|
msg: ContributionAndProof,
|
2021-12-09 12:56:54 +00:00
|
|
|
pubkey: ValidatorPubKey | CookedPubKey, signature: SomeSig): bool =
|
|
|
|
let signing_root = compute_contribution_and_proof_signing_root(
|
|
|
|
fork, genesis_validators_root, msg)
|
2021-08-17 08:07:17 +00:00
|
|
|
|
2021-12-09 12:56:54 +00:00
|
|
|
blsVerify(pubkey, signing_root.data, signature)
|