mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 11:41:21 +00:00
b0423a94af
* fork state endpoint * removing generated files * fixing linting * fixing tests using old type * moving the response object to a new file under shared * fixing test * gaz * fixing generated code * gaz * fixing linting * rolling back some changes * reverting generated changes * fixing spacing * linting * updating protos after develop merged * addressing radek's comments * addressing more radek comments
43 lines
1003 B
Go
43 lines
1003 B
Go
package beacon
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/rpc/eth/shared"
|
|
)
|
|
|
|
type BlockRootResponse struct {
|
|
Data *struct {
|
|
Root string `json:"root"`
|
|
} `json:"data"`
|
|
ExecutionOptimistic bool `json:"execution_optimistic"`
|
|
Finalized bool `json:"finalized"`
|
|
}
|
|
|
|
type DepositContractResponse struct {
|
|
Data *struct {
|
|
ChainId uint64 `json:"chain_id"`
|
|
Address string `json:"address"`
|
|
} `json:"data"`
|
|
}
|
|
|
|
type ListAttestationsResponse struct {
|
|
Data []*shared.Attestation `json:"data"`
|
|
}
|
|
|
|
type SubmitAttestationsRequest struct {
|
|
Data []*shared.Attestation `json:"data"`
|
|
}
|
|
|
|
type ListVoluntaryExitsResponse struct {
|
|
Data []*shared.SignedVoluntaryExit `json:"data"`
|
|
}
|
|
|
|
type SubmitSyncCommitteeSignaturesRequest struct {
|
|
Data []*shared.SyncCommitteeMessage `json:"data"`
|
|
}
|
|
|
|
type GetStateForkResponse struct {
|
|
Data *shared.Fork `json:"data"`
|
|
ExecutionOptimistic bool `json:"execution_optimistic"`
|
|
Finalized bool `json:"finalized"`
|
|
}
|