mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-06 22:23:56 -05:00
Former-commit-id: cc6b67b7391c407d2f830ae46e6765e097c50c57 [formerly cb2dc8a0ea96b92897dd8f797eb632c941d9f653] Former-commit-id: 600e28af6901b19b8d191cf3153343d94670f9d0
25 lines
1.5 KiB
Go
25 lines
1.5 KiB
Go
package types
|
|
|
|
import "github.com/ethereum/go-ethereum/common"
|
|
|
|
// Header contains the block header fields in beacon chain.
|
|
type Header struct {
|
|
ParentHash common.Hash // ParentHash is the hash of the parent beacon block.
|
|
SlotNumber uint64 // Slot number is the number a client should check to know when it creates block.
|
|
RandaoReveal common.Hash // RandaoReveal is used for Randao commitment reveal.
|
|
AttestationBitmask []byte // AttestationBitmask is the bit field of who from the attestation committee participated.
|
|
AttestationAggregateSig []uint // AttestationAggregateSig is validator's aggregate sig.
|
|
ShardAggregateVotes []AggregateVote // ShardAggregateVotes is shard aggregate votes.
|
|
MainChainRef common.Hash // MainChainRef is the reference to main chain block.
|
|
ActiveStateHash []byte // ActiveStateHash is the state that changes every block.
|
|
CrystallizedStateHash []byte // CrystallizedStateHash is the state that changes every epoch.
|
|
}
|
|
|
|
// AggregateVote contains the fields of aggregate vote in individual shard.
|
|
type AggregateVote struct {
|
|
ShardID uint16 // Shard ID of the voted shard.
|
|
ShardBlockHash common.Hash // ShardBlockHash is the shard block hash of the voted shard.
|
|
SignerBitmask []byte // SignerBitmask is the bit mask of every validator that signed.
|
|
AggregateSig []uint // AggregateSig is the aggregated signatures of individual shard.
|
|
}
|