nimbus-eth2/beacon_chain/spec/mev/electra_mev.nim

153 lines
6.7 KiB
Nim
Raw Normal View History

# beacon_chain
# Copyright (c) 2024 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.
{.push raises: [].}
import ".."/datatypes/[altair, electra]
from stew/byteutils import to0xHex
from ".."/datatypes/phase0 import AttesterSlashing
from ../datatypes/bellatrix import ExecutionAddress
from ".."/datatypes/capella import SignedBLSToExecutionChange
from ".."/datatypes/deneb import BlobsBundle, KzgCommitments
from ".."/eth2_merkleization import hash_tree_root
type
BuilderBid* = object
header*: electra.ExecutionPayloadHeader
blob_kzg_commitments*: KzgCommitments
value*: UInt256
pubkey*: ValidatorPubKey
# https://github.com/ethereum/builder-specs/blob/v0.4.0/specs/bellatrix/builder.md#signedbuilderbid
SignedBuilderBid* = object
message*: BuilderBid
signature*: ValidatorSig
BlindedBeaconBlockBody* = object
randao_reveal*: ValidatorSig
eth1_data*: Eth1Data
graffiti*: GraffitiBytes
proposer_slashings*: List[ProposerSlashing, Limit MAX_PROPOSER_SLASHINGS]
attester_slashings*:
List[ElectraAttesterSlashing, Limit MAX_ATTESTER_SLASHINGS_ELECTRA]
attestations*: List[electra.Attestation, Limit MAX_ATTESTATIONS_ELECTRA]
deposits*: List[Deposit, Limit MAX_DEPOSITS]
voluntary_exits*: List[SignedVoluntaryExit, Limit MAX_VOLUNTARY_EXITS]
sync_aggregate*: SyncAggregate
execution_payload_header*: electra.ExecutionPayloadHeader
bls_to_execution_changes*:
List[SignedBLSToExecutionChange,
Limit MAX_BLS_TO_EXECUTION_CHANGES]
blob_kzg_commitments*: KzgCommitments # [New in Deneb]
consolidations*: List[SignedConsolidation, Limit MAX_CONSOLIDATIONS]
# https://github.com/ethereum/builder-specs/blob/v0.4.0/specs/bellatrix/builder.md#blindedbeaconblock
BlindedBeaconBlock* = object
slot*: Slot
proposer_index*: uint64
parent_root*: Eth2Digest
state_root*: Eth2Digest
body*: BlindedBeaconBlockBody # [Modified in Deneb]
MaybeBlindedBeaconBlock* = object
case isBlinded*: bool
of false:
data*: electra.BlockContents
of true:
blindedData*: BlindedBeaconBlock
# https://github.com/ethereum/builder-specs/blob/v0.4.0/specs/bellatrix/builder.md#signedblindedbeaconblock
# https://github.com/ethereum/builder-specs/blob/v0.4.0/specs/capella/builder.md#blindedbeaconblockbody
SignedBlindedBeaconBlock* = object
message*: BlindedBeaconBlock
signature*: ValidatorSig
ExecutionPayloadAndBlobsBundle* = object
execution_payload*: electra.ExecutionPayload
blobs_bundle*: BlobsBundle
# Not spec, but suggested by spec
BlindedExecutionPayloadAndBlobsBundle* = object
execution_payload_header*: electra.ExecutionPayloadHeader
blob_kzg_commitments*: KzgCommitments # [New in Deneb]
func shortLog*(v: BlindedBeaconBlock): auto =
(
slot: shortLog(v.slot),
proposer_index: v.proposer_index,
parent_root: shortLog(v.parent_root),
state_root: shortLog(v.state_root),
eth1data: v.body.eth1_data,
graffiti: $v.body.graffiti,
proposer_slashings_len: v.body.proposer_slashings.len(),
attester_slashings_len: v.body.attester_slashings.len(),
attestations_len: v.body.attestations.len(),
deposits_len: v.body.deposits.len(),
voluntary_exits_len: v.body.voluntary_exits.len(),
sync_committee_participants: v.body.sync_aggregate.num_active_participants,
block_number: v.body.execution_payload_header.block_number,
# TODO checksum hex? shortlog?
block_hash: to0xHex(v.body.execution_payload_header.block_hash.data),
parent_hash: to0xHex(v.body.execution_payload_header.parent_hash.data),
fee_recipient: to0xHex(v.body.execution_payload_header.fee_recipient.data),
bls_to_execution_changes_len: v.body.bls_to_execution_changes.len(),
blob_kzg_commitments_len: 0, # Deneb compat
)
func shortLog*(v: SignedBlindedBeaconBlock): auto =
(
blck: shortLog(v.message),
signature: shortLog(v.signature)
)
func toSignedBlindedBeaconBlock*(blck: electra.SignedBeaconBlock):
SignedBlindedBeaconBlock =
SignedBlindedBeaconBlock(
message: BlindedBeaconBlock(
slot: blck.message.slot,
proposer_index: blck.message.proposer_index,
parent_root: blck.message.parent_root,
state_root: blck.message.state_root,
body: BlindedBeaconBlockBody(
randao_reveal: blck.message.body.randao_reveal,
eth1_data: blck.message.body.eth1_data,
graffiti: blck.message.body.graffiti,
proposer_slashings: blck.message.body.proposer_slashings,
attester_slashings: blck.message.body.attester_slashings,
attestations: blck.message.body.attestations,
deposits: blck.message.body.deposits,
voluntary_exits: blck.message.body.voluntary_exits,
sync_aggregate: blck.message.body.sync_aggregate,
execution_payload_header: ExecutionPayloadHeader(
parent_hash: blck.message.body.execution_payload.parent_hash,
fee_recipient: blck.message.body.execution_payload.fee_recipient,
state_root: blck.message.body.execution_payload.state_root,
receipts_root: blck.message.body.execution_payload.receipts_root,
logs_bloom: blck.message.body.execution_payload.logs_bloom,
prev_randao: blck.message.body.execution_payload.prev_randao,
block_number: blck.message.body.execution_payload.block_number,
gas_limit: blck.message.body.execution_payload.gas_limit,
gas_used: blck.message.body.execution_payload.gas_used,
timestamp: blck.message.body.execution_payload.timestamp,
extra_data: blck.message.body.execution_payload.extra_data,
base_fee_per_gas:
blck.message.body.execution_payload.base_fee_per_gas,
block_hash: blck.message.body.execution_payload.block_hash,
transactions_root:
hash_tree_root(blck.message.body.execution_payload.transactions),
withdrawals_root:
hash_tree_root(blck.message.body.execution_payload.withdrawals),
deposit_receipts_root: hash_tree_root(
blck.message.body.execution_payload.deposit_receipts),
withdrawal_requests_root:
hash_tree_root(
blck.message.body.execution_payload.withdrawal_requests)),
bls_to_execution_changes: blck.message.body.bls_to_execution_changes,
blob_kzg_commitments: blck.message.body.blob_kzg_commitments)),
signature: blck.signature)