2020-06-27 02:37:43 +00:00
|
|
|
package kv
|
2020-01-08 18:16:17 +00:00
|
|
|
|
|
|
|
var (
|
2020-11-20 18:06:12 +00:00
|
|
|
// Genesis information bucket key.
|
|
|
|
genesisInfoBucket = []byte("genesis-info-bucket")
|
2020-11-25 20:04:43 +00:00
|
|
|
|
2020-01-08 18:16:17 +00:00
|
|
|
// Validator slashing protection from double proposals.
|
|
|
|
historicProposalsBucket = []byte("proposal-history-bucket")
|
2020-09-14 01:55:33 +00:00
|
|
|
// Validator slashing protection from double proposals.
|
2020-11-26 02:39:23 +00:00
|
|
|
newHistoricProposalsBucket = []byte("proposal-history-bucket-interchange")
|
2020-01-19 22:05:48 +00:00
|
|
|
// Validator slashing protection from slashable attestations.
|
|
|
|
historicAttestationsBucket = []byte("attestation-history-bucket")
|
2020-10-06 19:59:36 +00:00
|
|
|
// New Validator slashing protection from slashable attestations.
|
2020-10-15 19:35:31 +00:00
|
|
|
newHistoricAttestationsBucket = []byte("attestation-history-bucket-interchange")
|
2020-11-25 23:58:01 +00:00
|
|
|
|
2020-11-26 02:39:23 +00:00
|
|
|
// Buckets for highest signed source and target epoch for individual validator.
|
|
|
|
highestSignedSourceBucket = []byte("highest-signed-source-bucket")
|
|
|
|
highestSignedTargetBucket = []byte("highest-signed-target-bucket")
|
|
|
|
|
2020-11-25 23:58:01 +00:00
|
|
|
// Lowest and highest signed proposals.
|
|
|
|
lowestSignedProposalsBucket = []byte("lowest-signed-proposals-bucket")
|
|
|
|
highestSignedProposalsBucket = []byte("highest-signed-proposals-bucket")
|
|
|
|
|
|
|
|
// Genesis validators root bucket key.
|
|
|
|
genesisValidatorsRootKey = []byte("genesis-val-root")
|
2020-01-08 18:16:17 +00:00
|
|
|
)
|