Documentation ¶
Index ¶
- type Attestation
- type AttestationInfo
- type AttesterSlashing
- type BeaconBlock
- type BeaconClientType
- type BeaconHead
- type Committee
- type Eth1Data
- type Eth2Config
- type Eth2DepositContract
- type ProposerSlashing
- type SignedHeader
- type SyncAggregate
- type SyncCommittee
- type SyncStatus
- type ValidatorStatus
- type ValidatorStatusOptions
- type VoluntaryExit
- type Withdrawal
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Attestation ¶
type AttestationInfo ¶
type AttesterSlashing ¶
type AttesterSlashing struct { Attestation1 Attestation Attestation2 Attestation }
type BeaconBlock ¶
type BeaconBlock struct { Slot uint64 // consensus ProposerIndex uint64 Attestations []AttestationInfo ProposerSlashings []ProposerSlashing AttesterSlashing []AttesterSlashing Withdrawals []Withdrawal VoluntaryExits []VoluntaryExit SyncAggregate SyncAggregate // execute layer ExecutionBlockNumber uint64 }
type BeaconClientType ¶
type BeaconClientType int
Beacon client type
const ( // This client is a traditional "split process" design, where the beacon // client and validator process are separate and run in different // containers SplitProcess BeaconClientType = iota // This client is a "single process" where the beacon client and // validator run in the same process (or run as separate processes // within the same docker container) SingleProcess // Unknown / missing client type Unknown )
type BeaconHead ¶
type Eth2Config ¶
type Eth2DepositContract ¶
type ProposerSlashing ¶
type ProposerSlashing struct { SignedHeader1 SignedHeader SignedHeader2 SignedHeader }
type SignedHeader ¶
type SyncAggregate ¶
type SyncAggregate struct { SyncCommitteeBits bitfield.Bitlist SyncCommitteeSignature string }
type SyncCommittee ¶
type SyncCommittee struct {
ValIndex uint64
}
type ValidatorStatus ¶
type ValidatorStatusOptions ¶
API request options
type VoluntaryExit ¶
Click to show internal directories.
Click to hide internal directories.