Documentation ¶
Index ¶
- Constants
- Variables
- type Store
- func (k *Store) ArchivedActiveValidatorChanges(ctx context.Context, epoch uint64) (*ethpb.ArchivedActiveSetChanges, error)
- func (k *Store) ArchivedBalances(ctx context.Context, epoch uint64) ([]uint64, error)
- func (k *Store) ArchivedCommitteeInfo(ctx context.Context, epoch uint64) (*ethpb.ArchivedCommitteeInfo, error)
- func (k *Store) ArchivedValidatorParticipation(ctx context.Context, epoch uint64) (*ethpb.ValidatorParticipation, error)
- func (k *Store) Attestations(ctx context.Context, f *filters.QueryFilter) ([]*ethpb.Attestation, error)
- func (k *Store) AttestationsByDataRoot(ctx context.Context, attDataRoot [32]byte) ([]*ethpb.Attestation, error)
- func (k *Store) AttesterSlashing(ctx context.Context, slashingRoot [32]byte) (*ethpb.AttesterSlashing, error)
- func (k *Store) Backup(ctx context.Context) error
- func (k *Store) Block(ctx context.Context, blockRoot [32]byte) (*ethpb.BeaconBlock, error)
- func (k *Store) BlockRoots(ctx context.Context, f *filters.QueryFilter) ([][32]byte, error)
- func (k *Store) Blocks(ctx context.Context, f *filters.QueryFilter) ([]*ethpb.BeaconBlock, error)
- func (k *Store) ClearDB() error
- func (k *Store) Close() error
- func (k *Store) DatabasePath() string
- func (k *Store) DeleteAttestation(ctx context.Context, attDataRoot [32]byte) error
- func (k *Store) DeleteAttestations(ctx context.Context, attDataRoots [][32]byte) error
- func (k *Store) DeleteAttesterSlashing(ctx context.Context, slashingRoot [32]byte) error
- func (k *Store) DeleteBlock(ctx context.Context, blockRoot [32]byte) error
- func (k *Store) DeleteBlocks(ctx context.Context, blockRoots [][32]byte) error
- func (k *Store) DeleteProposerSlashing(ctx context.Context, slashingRoot [32]byte) error
- func (k *Store) DeleteState(ctx context.Context, blockRoot [32]byte) error
- func (k *Store) DeleteStates(ctx context.Context, blockRoots [][32]byte) error
- func (k *Store) DeleteValidatorIndex(ctx context.Context, publicKey [48]byte) error
- func (k *Store) DeleteValidatorLatestVote(ctx context.Context, validatorIdx uint64) error
- func (k *Store) DeleteVoluntaryExit(ctx context.Context, exitRoot [32]byte) error
- func (k *Store) DepositContractAddress(ctx context.Context) ([]byte, error)
- func (k *Store) FinalizedCheckpoint(ctx context.Context) (*ethpb.Checkpoint, error)
- func (k *Store) GenesisState(ctx context.Context) (*pb.BeaconState, error)
- func (k *Store) HasAttestation(ctx context.Context, attDataRoot [32]byte) bool
- func (k *Store) HasAttesterSlashing(ctx context.Context, slashingRoot [32]byte) bool
- func (k *Store) HasBlock(ctx context.Context, blockRoot [32]byte) bool
- func (k *Store) HasProposerSlashing(ctx context.Context, slashingRoot [32]byte) bool
- func (k *Store) HasValidatorIndex(ctx context.Context, publicKey [48]byte) bool
- func (k *Store) HasValidatorLatestVote(ctx context.Context, validatorIdx uint64) bool
- func (k *Store) HasVoluntaryExit(ctx context.Context, exitRoot [32]byte) bool
- func (k *Store) HeadBlock(ctx context.Context) (*ethpb.BeaconBlock, error)
- func (k *Store) HeadState(ctx context.Context) (*pb.BeaconState, error)
- func (kv *Store) IsFinalizedBlock(ctx context.Context, blockRoot [32]byte) bool
- func (k *Store) JustifiedCheckpoint(ctx context.Context) (*ethpb.Checkpoint, error)
- func (k *Store) ProposerSlashing(ctx context.Context, slashingRoot [32]byte) (*ethpb.ProposerSlashing, error)
- func (k *Store) SaveArchivedActiveValidatorChanges(ctx context.Context, epoch uint64, changes *ethpb.ArchivedActiveSetChanges) error
- func (k *Store) SaveArchivedBalances(ctx context.Context, epoch uint64, balances []uint64) error
- func (k *Store) SaveArchivedCommitteeInfo(ctx context.Context, epoch uint64, info *ethpb.ArchivedCommitteeInfo) error
- func (k *Store) SaveArchivedValidatorParticipation(ctx context.Context, epoch uint64, part *ethpb.ValidatorParticipation) error
- func (k *Store) SaveAttestation(ctx context.Context, att *ethpb.Attestation) error
- func (k *Store) SaveAttestations(ctx context.Context, atts []*ethpb.Attestation) error
- func (k *Store) SaveAttesterSlashing(ctx context.Context, slashing *ethpb.AttesterSlashing) error
- func (k *Store) SaveBlock(ctx context.Context, block *ethpb.BeaconBlock) error
- func (k *Store) SaveBlocks(ctx context.Context, blocks []*ethpb.BeaconBlock) error
- func (k *Store) SaveDepositContractAddress(ctx context.Context, addr common.Address) error
- func (k *Store) SaveFinalizedCheckpoint(ctx context.Context, checkpoint *ethpb.Checkpoint) error
- func (k *Store) SaveGenesisBlockRoot(ctx context.Context, blockRoot [32]byte) error
- func (k *Store) SaveHeadBlockRoot(ctx context.Context, blockRoot [32]byte) error
- func (k *Store) SaveJustifiedCheckpoint(ctx context.Context, checkpoint *ethpb.Checkpoint) error
- func (k *Store) SaveProposerSlashing(ctx context.Context, slashing *ethpb.ProposerSlashing) error
- func (k *Store) SaveState(ctx context.Context, state *pb.BeaconState, blockRoot [32]byte) error
- func (k *Store) SaveValidatorIndex(ctx context.Context, publicKey [48]byte, validatorIdx uint64) error
- func (k *Store) SaveValidatorLatestVote(ctx context.Context, validatorIdx uint64, vote *pb.ValidatorLatestVote) error
- func (k *Store) SaveValidatorLatestVotes(ctx context.Context, validatorIndices []uint64, ...) error
- func (k *Store) SaveVoluntaryExit(ctx context.Context, exit *ethpb.VoluntaryExit) error
- func (k *Store) State(ctx context.Context, blockRoot [32]byte) (*pb.BeaconState, error)
- func (k *Store) ValidatorIndex(ctx context.Context, publicKey [48]byte) (uint64, bool, error)
- func (k *Store) ValidatorLatestVote(ctx context.Context, validatorIdx uint64) (*pb.ValidatorLatestVote, error)
- func (k *Store) VoluntaryExit(ctx context.Context, exitRoot [32]byte) (*ethpb.VoluntaryExit, error)
Constants ¶
const (
// VotesCacheSize with 1M validators will only be around 50Mb.
VotesCacheSize = 1000000
)
Variables ¶
var BlockCacheSize = int64(256)
BlockCacheSize specifies 4 epochs worth of blocks cached.
Functions ¶
This section is empty.
Types ¶
type Store ¶
type Store struct {
// contains filtered or unexported fields
}
Store defines an implementation of the Prysm Database interface using BoltDB as the underlying persistent kv-store for eth2.
func NewKVStore ¶
NewKVStore initializes a new boltDB key-value store at the directory path specified, creates the kv-buckets based on the schema, and stores an open connection db object as a property of the Store struct.
func (*Store) ArchivedActiveValidatorChanges ¶
func (k *Store) ArchivedActiveValidatorChanges(ctx context.Context, epoch uint64) (*ethpb.ArchivedActiveSetChanges, error)
ArchivedActiveValidatorChanges retrieval by epoch.
func (*Store) ArchivedBalances ¶
ArchivedBalances retrieval by epoch.
func (*Store) ArchivedCommitteeInfo ¶
func (k *Store) ArchivedCommitteeInfo(ctx context.Context, epoch uint64) (*ethpb.ArchivedCommitteeInfo, error)
ArchivedCommitteeInfo retrieval by epoch.
func (*Store) ArchivedValidatorParticipation ¶
func (k *Store) ArchivedValidatorParticipation(ctx context.Context, epoch uint64) (*ethpb.ValidatorParticipation, error)
ArchivedValidatorParticipation retrieval by epoch.
func (*Store) Attestations ¶
func (k *Store) Attestations(ctx context.Context, f *filters.QueryFilter) ([]*ethpb.Attestation, error)
Attestations retrieves a list of attestations by filter criteria.
func (*Store) AttestationsByDataRoot ¶
func (k *Store) AttestationsByDataRoot(ctx context.Context, attDataRoot [32]byte) ([]*ethpb.Attestation, error)
AttestationsByDataRoot returns any (aggregated) attestations matching this data root.
func (*Store) AttesterSlashing ¶
func (k *Store) AttesterSlashing(ctx context.Context, slashingRoot [32]byte) (*ethpb.AttesterSlashing, error)
AttesterSlashing retrieval by hash tree root.
func (*Store) Backup ¶
Backup the database to the datadir backup directory. Example for backup at slot 345: $DATADIR/backups/prysm_beacondb_at_slot_0000345.backup
func (*Store) BlockRoots ¶
BlockRoots retrieves a list of beacon block roots by filter criteria.
func (*Store) Blocks ¶
func (k *Store) Blocks(ctx context.Context, f *filters.QueryFilter) ([]*ethpb.BeaconBlock, error)
Blocks retrieves a list of beacon blocks by filter criteria.
func (*Store) DatabasePath ¶
DatabasePath at which this database writes files.
func (*Store) DeleteAttestation ¶
DeleteAttestation by attestation data root.
func (*Store) DeleteAttestations ¶
DeleteAttestations by attestation data roots.
func (*Store) DeleteAttesterSlashing ¶
DeleteAttesterSlashing clears an attester slashing from the db by its hash tree root.
func (*Store) DeleteBlock ¶
DeleteBlock by block root.
func (*Store) DeleteBlocks ¶
DeleteBlocks by block roots.
func (*Store) DeleteProposerSlashing ¶
DeleteProposerSlashing clears a proposer slashing from the db by its hash tree root.
func (*Store) DeleteState ¶
DeleteState by block root.
func (*Store) DeleteStates ¶
DeleteStates by block roots.
func (*Store) DeleteValidatorIndex ¶
DeleteValidatorIndex clears a validator index from the db by the validator's public key.
func (*Store) DeleteValidatorLatestVote ¶
DeleteValidatorLatestVote from the db.
func (*Store) DeleteVoluntaryExit ¶
DeleteVoluntaryExit clears a voluntary exit from the db by its signing root.
func (*Store) DepositContractAddress ¶
DepositContractAddress returns contract address is the address of the deposit contract on the proof of work chain.
func (*Store) FinalizedCheckpoint ¶
FinalizedCheckpoint returns the latest finalized checkpoint in beacon chain.
func (*Store) GenesisState ¶
GenesisState returns the genesis state in beacon chain.
func (*Store) HasAttestation ¶
HasAttestation checks if an attestation by its attestation data root exists in the db.
func (*Store) HasAttesterSlashing ¶
HasAttesterSlashing verifies if a slashing is stored in the db.
func (*Store) HasProposerSlashing ¶
HasProposerSlashing verifies if a slashing is stored in the db.
func (*Store) HasValidatorIndex ¶
HasValidatorIndex verifies if a validator's index by public key exists in the db.
func (*Store) HasValidatorLatestVote ¶
HasValidatorLatestVote verifies if a validator index has a latest vote stored in the db.
func (*Store) HasVoluntaryExit ¶
HasVoluntaryExit verifies if a voluntary exit is stored in the db by its signing root.
func (*Store) IsFinalizedBlock ¶ added in v0.2.3
IsFinalizedBlock returns true if the block root is present in the finalized block root index. A beacon block root contained exists in this index if it is considered finalized and canonical. Note: beacon blocks from the latest finalized epoch return true, whether or not they are considered canonical in the "head view" of the beacon node.
func (*Store) JustifiedCheckpoint ¶
JustifiedCheckpoint returns the latest justified checkpoint in beacon chain.
func (*Store) ProposerSlashing ¶
func (k *Store) ProposerSlashing(ctx context.Context, slashingRoot [32]byte) (*ethpb.ProposerSlashing, error)
ProposerSlashing retrieval by slashing root.
func (*Store) SaveArchivedActiveValidatorChanges ¶
func (k *Store) SaveArchivedActiveValidatorChanges(ctx context.Context, epoch uint64, changes *ethpb.ArchivedActiveSetChanges) error
SaveArchivedActiveValidatorChanges by epoch.
func (*Store) SaveArchivedBalances ¶
SaveArchivedBalances by epoch.
func (*Store) SaveArchivedCommitteeInfo ¶
func (k *Store) SaveArchivedCommitteeInfo(ctx context.Context, epoch uint64, info *ethpb.ArchivedCommitteeInfo) error
SaveArchivedCommitteeInfo by epoch.
func (*Store) SaveArchivedValidatorParticipation ¶
func (k *Store) SaveArchivedValidatorParticipation(ctx context.Context, epoch uint64, part *ethpb.ValidatorParticipation) error
SaveArchivedValidatorParticipation by epoch.
func (*Store) SaveAttestation ¶
SaveAttestation to the db.
func (*Store) SaveAttestations ¶
SaveAttestations via batch updates to the db.
func (*Store) SaveAttesterSlashing ¶
SaveAttesterSlashing to the db by its hash tree root.
func (*Store) SaveBlocks ¶
SaveBlocks via batch updates to the db.
func (*Store) SaveDepositContractAddress ¶
SaveDepositContractAddress to the db. It returns an error if an address has been previously saved.
func (*Store) SaveFinalizedCheckpoint ¶
SaveFinalizedCheckpoint saves finalized checkpoint in beacon chain.
func (*Store) SaveGenesisBlockRoot ¶
SaveGenesisBlockRoot to the db.
func (*Store) SaveHeadBlockRoot ¶
SaveHeadBlockRoot to the db.
func (*Store) SaveJustifiedCheckpoint ¶
SaveJustifiedCheckpoint saves justified checkpoint in beacon chain.
func (*Store) SaveProposerSlashing ¶
SaveProposerSlashing to the db by its hash tree root.
func (*Store) SaveState ¶
SaveState stores a state to the db using block's signing root which was used to generate the state.
func (*Store) SaveValidatorIndex ¶
func (k *Store) SaveValidatorIndex(ctx context.Context, publicKey [48]byte, validatorIdx uint64) error
SaveValidatorIndex by public key in the db.
func (*Store) SaveValidatorLatestVote ¶
func (k *Store) SaveValidatorLatestVote(ctx context.Context, validatorIdx uint64, vote *pb.ValidatorLatestVote) error
SaveValidatorLatestVote by validator index.
func (*Store) SaveValidatorLatestVotes ¶
func (k *Store) SaveValidatorLatestVotes(ctx context.Context, validatorIndices []uint64, votes []*pb.ValidatorLatestVote) error
SaveValidatorLatestVotes by validator indidces.
func (*Store) SaveVoluntaryExit ¶
SaveVoluntaryExit to the db by its signing root.
func (*Store) State ¶
State returns the saved state using block's signing root, this particular block was used to generate the state.
func (*Store) ValidatorIndex ¶
ValidatorIndex by public key.
func (*Store) ValidatorLatestVote ¶
func (k *Store) ValidatorLatestVote(ctx context.Context, validatorIdx uint64) (*pb.ValidatorLatestVote, error)
ValidatorLatestVote retrieval by validator index.
func (*Store) VoluntaryExit ¶
VoluntaryExit retrieval by signing root.