mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 00:27:38 +00: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"`
|
|
}
|