Skip to content

Commit

Permalink
Add consolidation req to types (#223) (#238)
Browse files Browse the repository at this point in the history
Co-authored-by: Somnath <[email protected]>
  • Loading branch information
yperbasis and Somnath authored Oct 2, 2024
1 parent 79913c8 commit 75df226
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions types/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ message ExecutionPayload {
optional uint64 excess_blob_gas = 18;
repeated DepositRequest deposit_requests = 19;
repeated WithdrawalRequest withdrawal_requests = 20;
repeated ConsolidationRequest consolidation_requests = 21;
}

message DepositRequest {
Expand All @@ -95,6 +96,12 @@ message WithdrawalRequest {
uint64 amount = 3;
}

message ConsolidationRequest {
H160 source_address = 1;
bytes source_pubkey = 2;
bytes target_pubkey = 3;
}

message Withdrawal {
uint64 index = 1;
uint64 validator_index = 2;
Expand Down

0 comments on commit 75df226

Please sign in to comment.