Gloas add off protocol payment field to bid (#8596)

Co-Authored-By: shane-moore <skm1790@gmail.com>
This commit is contained in:
Shane K Moore
2026-01-05 19:28:44 -08:00
committed by GitHub
parent dbe474e132
commit 2fe59405bc
2 changed files with 7 additions and 1 deletions

View File

@@ -18,6 +18,7 @@ pub struct ExecutionPayloadBid {
pub parent_block_hash: ExecutionBlockHash,
pub parent_block_root: Hash256,
pub block_hash: ExecutionBlockHash,
pub prev_randao: Hash256,
#[serde(with = "serde_utils::address_hex")]
pub fee_recipient: Address,
#[serde(with = "serde_utils::quoted_u64")]
@@ -27,6 +28,8 @@ pub struct ExecutionPayloadBid {
pub slot: Slot,
#[serde(with = "serde_utils::quoted_u64")]
pub value: u64,
#[serde(with = "serde_utils::quoted_u64")]
pub execution_payment: u64,
pub blob_kzg_commitments_root: Hash256,
}