mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +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"`
|
|
}
|