mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-10 13:58:09 -05:00
15 lines
465 B
Go
15 lines
465 B
Go
package structs
|
|
|
|
type ExpectedWithdrawalsResponse struct {
|
|
Data []*ExpectedWithdrawal `json:"data"`
|
|
ExecutionOptimistic bool `json:"execution_optimistic"`
|
|
Finalized bool `json:"finalized"`
|
|
}
|
|
|
|
type ExpectedWithdrawal struct {
|
|
Address string `json:"address" hex:"true"`
|
|
Amount string `json:"amount"`
|
|
Index string `json:"index"`
|
|
ValidatorIndex string `json:"validator_index"`
|
|
}
|