We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b9c2c7 commit f8486dbCopy full SHA for f8486db
types/types.proto
@@ -77,6 +77,22 @@ message ExecutionPayload {
77
repeated Withdrawal withdrawals = 16;
78
optional uint64 blob_gas_used = 17;
79
optional uint64 excess_blob_gas = 18;
80
+ repeated DepositRequest deposit_requests = 19;
81
+ repeated WithdrawalRequest withdrawal_requests = 20;
82
+}
83
+
84
+message DepositRequest {
85
+ bytes pubkey = 1;
86
+ H256 withdrawal_credentials = 2;
87
+ uint64 amount = 3;
88
+ bytes signature = 4;
89
+ uint64 index = 5;
90
91
92
+message WithdrawalRequest {
93
+ H160 source_address = 1;
94
+ bytes validator_pubkey = 2;
95
96
}
97
98
message Withdrawal {
0 commit comments