mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 19:51:20 +00:00
15 lines
465 B
Go
15 lines
465 B
Go
|
package builder
|
||
|
|
||
|
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"`
|
||
|
}
|