tracking update to MEV SSZ objects (#3622)

This commit is contained in:
tersec 2022-05-09 14:55:15 +00:00 committed by GitHub
parent 7ddba43ff9
commit fc75c3ce36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,35 +10,35 @@ import ".."/datatypes/[altair, bellatrix]
{.push raises: [Defect].} {.push raises: [Defect].}
type type
# https://github.com/lightclient/builder-specs/blob/90238e1b78e3c710e94f5bad01fa1f48ded34f99/specs/README.md#validatorregistrationv1 # https://github.com/lightclient/builder-specs/blob/b286dbae3e9d065c63df687a90cb9e9b1687519a/specs/README.md#validatorregistrationv1
ValidatorRegistrationV1 = object ValidatorRegistrationV1 = object
feeRecipient*: ExecutionAddress fee_recipient*: ExecutionAddress
gasLimit*: uint64 gas_limit*: uint64
timestamp*: uint64 timestamp*: uint64
pubkey*: ValidatorPubKey pubkey*: ValidatorPubKey
# https://github.com/lightclient/builder-specs/blob/90238e1b78e3c710e94f5bad01fa1f48ded34f99/specs/README.md#signedvalidatorregistrationv1 # https://github.com/lightclient/builder-specs/blob/b286dbae3e9d065c63df687a90cb9e9b1687519a/specs/README.md#signedvalidatorregistrationv1
SignedValidatorRegistrationV1 = object SignedValidatorRegistrationV1 = object
message*: ValidatorRegistrationV1 message*: ValidatorRegistrationV1
signature*: ValidatorSig signature*: ValidatorSig
# https://github.com/lightclient/builder-specs/blob/90238e1b78e3c710e94f5bad01fa1f48ded34f99/specs/README.md#builderbidv1 # https://github.com/lightclient/builder-specs/blob/b286dbae3e9d065c63df687a90cb9e9b1687519a/specs/README.md#builderbid
BuilderBidV1 = object BuilderBid = object
header*: ExecutionPayloadHeader header*: ExecutionPayloadHeader
value*: Eth2Digest # uint256 value*: Eth2Digest # uint256
pubkey*: ValidatorPubKey pubkey*: ValidatorPubKey
# https://github.com/lightclient/builder-specs/blob/90238e1b78e3c710e94f5bad01fa1f48ded34f99/specs/README.md#signedbuilderbidv1 # https://github.com/lightclient/builder-specs/blob/b286dbae3e9d065c63df687a90cb9e9b1687519a/specs/README.md#signedbuilderbid
SignedBuilderBidV1 = object SignedBuilderBid = object
message*: BuilderBidV1 message*: BuilderBid
signature*: ValidatorSig signature*: ValidatorSig
# https://github.com/lightclient/builder-specs/blob/90238e1b78e3c710e94f5bad01fa1f48ded34f99/specs/README.md#signedblindedbeaconblock # https://github.com/lightclient/builder-specs/blob/b286dbae3e9d065c63df687a90cb9e9b1687519a/specs/README.md#signedblindedbeaconblock
SignedBlindedBeaconBlock = object SignedBlindedBeaconBlock = object
message*: BlindedBeaconBlock message*: BlindedBeaconBlock
signature*: ValidatorSig signature*: ValidatorSig
# https://github.com/lightclient/builder-specs/blob/90238e1b78e3c710e94f5bad01fa1f48ded34f99/specs/README.md#blindedbeaconblock # https://github.com/lightclient/builder-specs/blob/b286dbae3e9d065c63df687a90cb9e9b1687519a/specs/README.md#blindedbeaconblock
BlindedBeaconBlock = object BlindedBeaconBlock = object
slot*: Slot slot*: Slot
proposer_index*: uint64 proposer_index*: uint64
@ -46,7 +46,7 @@ type
state_root*: Eth2Digest state_root*: Eth2Digest
body*: BlindedBeaconBlockBody body*: BlindedBeaconBlockBody
# https://github.com/lightclient/builder-specs/blob/90238e1b78e3c710e94f5bad01fa1f48ded34f99/specs/README.md#blindedbeaconblockbody # https://github.com/lightclient/builder-specs/blob/b286dbae3e9d065c63df687a90cb9e9b1687519a/specs/README.md#blindedbeaconblockbody
BlindedBeaconBlockBody = object BlindedBeaconBlockBody = object
randao_reveal*: ValidatorSig randao_reveal*: ValidatorSig
eth1_data*: Eth1Data eth1_data*: Eth1Data