Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func BackupHandler ¶
func BackupHandler(db Database) func(http.ResponseWriter, *http.Request)
BackupHandler for accepting requests to initiate a new database backup.
Types ¶
type Database ¶
type Database interface { io.Closer DatabasePath() string ClearDB() error // Backup and restore methods Backup(ctx context.Context) error // Attestation related methods. AttestationsByDataRoot(ctx context.Context, attDataRoot [32]byte) ([]*ethpb.Attestation, error) Attestations(ctx context.Context, f *filters.QueryFilter) ([]*ethpb.Attestation, error) HasAttestation(ctx context.Context, attDataRoot [32]byte) bool DeleteAttestation(ctx context.Context, attDataRoot [32]byte) error DeleteAttestations(ctx context.Context, attDataRoots [][32]byte) error SaveAttestation(ctx context.Context, att *ethpb.Attestation) error SaveAttestations(ctx context.Context, atts []*ethpb.Attestation) error // Block related methods. Block(ctx context.Context, blockRoot [32]byte) (*ethpb.BeaconBlock, error) HeadBlock(ctx context.Context) (*ethpb.BeaconBlock, error) Blocks(ctx context.Context, f *filters.QueryFilter) ([]*ethpb.BeaconBlock, error) BlockRoots(ctx context.Context, f *filters.QueryFilter) ([][32]byte, error) HasBlock(ctx context.Context, blockRoot [32]byte) bool DeleteBlock(ctx context.Context, blockRoot [32]byte) error DeleteBlocks(ctx context.Context, blockRoots [][32]byte) error SaveBlock(ctx context.Context, block *ethpb.BeaconBlock) error SaveBlocks(ctx context.Context, blocks []*ethpb.BeaconBlock) error SaveHeadBlockRoot(ctx context.Context, blockRoot [32]byte) error SaveGenesisBlockRoot(ctx context.Context, blockRoot [32]byte) error // Validator related methods. ValidatorLatestVote(ctx context.Context, validatorIdx uint64) (*pb.ValidatorLatestVote, error) HasValidatorLatestVote(ctx context.Context, validatorIdx uint64) bool DeleteValidatorLatestVote(ctx context.Context, validatorIdx uint64) error SaveValidatorLatestVote(ctx context.Context, validatorIdx uint64, vote *pb.ValidatorLatestVote) error SaveValidatorLatestVotes(ctx context.Context, validatorIndices []uint64, votes []*pb.ValidatorLatestVote) error ValidatorIndex(ctx context.Context, publicKey [48]byte) (uint64, bool, error) HasValidatorIndex(ctx context.Context, publicKey [48]byte) bool DeleteValidatorIndex(ctx context.Context, publicKey [48]byte) error SaveValidatorIndex(ctx context.Context, publicKey [48]byte, validatorIdx uint64) error // State related methods. State(ctx context.Context, blockRoot [32]byte) (*pb.BeaconState, error) HeadState(ctx context.Context) (*pb.BeaconState, error) GenesisState(ctx context.Context) (*pb.BeaconState, error) SaveState(ctx context.Context, state *pb.BeaconState, blockRoot [32]byte) error DeleteState(ctx context.Context, blockRoot [32]byte) error DeleteStates(ctx context.Context, blockRoots [][32]byte) error // Slashing operations. ProposerSlashing(ctx context.Context, slashingRoot [32]byte) (*ethpb.ProposerSlashing, error) AttesterSlashing(ctx context.Context, slashingRoot [32]byte) (*ethpb.AttesterSlashing, error) SaveProposerSlashing(ctx context.Context, slashing *ethpb.ProposerSlashing) error SaveAttesterSlashing(ctx context.Context, slashing *ethpb.AttesterSlashing) error HasProposerSlashing(ctx context.Context, slashingRoot [32]byte) bool HasAttesterSlashing(ctx context.Context, slashingRoot [32]byte) bool DeleteProposerSlashing(ctx context.Context, slashingRoot [32]byte) error DeleteAttesterSlashing(ctx context.Context, slashingRoot [32]byte) error // Block operations. VoluntaryExit(ctx context.Context, exitRoot [32]byte) (*ethpb.VoluntaryExit, error) SaveVoluntaryExit(ctx context.Context, exit *ethpb.VoluntaryExit) error HasVoluntaryExit(ctx context.Context, exitRoot [32]byte) bool DeleteVoluntaryExit(ctx context.Context, exitRoot [32]byte) error // Checkpoint operations. JustifiedCheckpoint(ctx context.Context) (*ethpb.Checkpoint, error) FinalizedCheckpoint(ctx context.Context) (*ethpb.Checkpoint, error) SaveJustifiedCheckpoint(ctx context.Context, checkpoint *ethpb.Checkpoint) error SaveFinalizedCheckpoint(ctx context.Context, checkpoint *ethpb.Checkpoint) error // Archival data handlers for storing/retrieving historical beacon node information. ArchivedActiveValidatorChanges(ctx context.Context, epoch uint64) (*ethpb.ArchivedActiveSetChanges, error) SaveArchivedActiveValidatorChanges(ctx context.Context, epoch uint64, changes *ethpb.ArchivedActiveSetChanges) error ArchivedCommitteeInfo(ctx context.Context, epoch uint64) (*ethpb.ArchivedCommitteeInfo, error) SaveArchivedCommitteeInfo(ctx context.Context, epoch uint64, info *ethpb.ArchivedCommitteeInfo) error ArchivedBalances(ctx context.Context, epoch uint64) ([]uint64, error) SaveArchivedBalances(ctx context.Context, epoch uint64, balances []uint64) error ArchivedValidatorParticipation(ctx context.Context, epoch uint64) (*ethpb.ValidatorParticipation, error) SaveArchivedValidatorParticipation(ctx context.Context, epoch uint64, part *ethpb.ValidatorParticipation) error // Deposit contract related handlers. DepositContractAddress(ctx context.Context) ([]byte, error) SaveDepositContractAddress(ctx context.Context, addr common.Address) error }
Database defines the necessary methods for Prysm's eth2 backend which may be implemented by any key-value or relational database in practice.
Directories ¶
Path | Synopsis |
---|---|
Package filters specifies utilities for building a set of data attribute filters to be used when filtering data through database queries in practice.
|
Package filters specifies utilities for building a set of data attribute filters to be used when filtering data through database queries in practice. |
Click to show internal directories.
Click to hide internal directories.