Description
With the verge, proofs and witness of the pre-state of an (EL) block execution are included in the blocks. In order to build a PoS testnet that provides proofs in blocks, it would be great if it were possible to create a branch with the required fields to be added to the ExecutionPayload.
The ExecutionPayload needs to have two more, optional fields:
VerkleProof, a byte array of variable length
VerkleKeyVals, an array of (key, value) pairs, in which the key is a 32-byte vector, and value is a byte vector of length either 0 (missing value) or 32.
At the moment, there is no need to support forking as for this testnet, verkle trees are used since the genesis.
If present, these two fields should be propagated over the network with the rest of the ExecutionPayload so that other clients can inject these fields in their verkle-enabled EL.
Description
With the verge, proofs and witness of the pre-state of an (EL) block execution are included in the blocks. In order to build a PoS testnet that provides proofs in blocks, it would be great if it were possible to create a branch with the required fields to be added to the
ExecutionPayload.The
ExecutionPayloadneeds to have two more, optional fields:VerkleProof, a byte array of variable lengthVerkleKeyVals, an array of (key, value) pairs, in which the key is a 32-byte vector, and value is a byte vector of length either 0 (missing value) or 32.At the moment, there is no need to support forking as for this testnet, verkle trees are used since the genesis.
If present, these two fields should be propagated over the network with the rest of the
ExecutionPayloadso that other clients can inject these fields in their verkle-enabled EL.