mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 11:32:09 +00:00
1117118435
* Add highest slot and blocks received last epoch tracking * Comments * Potuz feedback * Fix tesT * Potuz feedback, use clock time * Raul's feedback * Raul's feedback * Use field params * Fix minimal value * Fix constant * Fix constant Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
27 lines
1.9 KiB
Go
27 lines
1.9 KiB
Go
//go:build !minimal
|
|
|
|
package field_params
|
|
|
|
const (
|
|
Preset = "mainnet"
|
|
BlockRootsLength = 8192 // SLOTS_PER_HISTORICAL_ROOT
|
|
StateRootsLength = 8192 // SLOTS_PER_HISTORICAL_ROOT
|
|
RandaoMixesLength = 65536 // EPOCHS_PER_HISTORICAL_VECTOR
|
|
HistoricalRootsLength = 16777216 // HISTORICAL_ROOTS_LIMIT
|
|
ValidatorRegistryLimit = 1099511627776 // VALIDATOR_REGISTRY_LIMIT
|
|
Eth1DataVotesLength = 2048 // SLOTS_PER_ETH1_VOTING_PERIOD
|
|
PreviousEpochAttestationsLength = 4096 // MAX_ATTESTATIONS * SLOTS_PER_EPOCH
|
|
CurrentEpochAttestationsLength = 4096 // MAX_ATTESTATIONS * SLOTS_PER_EPOCH
|
|
SlashingsLength = 8192 // EPOCHS_PER_SLASHINGS_VECTOR
|
|
SyncCommitteeLength = 512 // SYNC_COMMITTEE_SIZE
|
|
RootLength = 32 // RootLength defines the byte length of a Merkle root.
|
|
BLSSignatureLength = 96 // BLSSignatureLength defines the byte length of a BLSSignature.
|
|
BLSPubkeyLength = 48 // BLSPubkeyLength defines the byte length of a BLSSignature.
|
|
MaxTxsPerPayloadLength = 1048576 // MaxTxsPerPayloadLength defines the maximum number of transactions that can be included in a payload.
|
|
MaxBytesPerTxLength = 1073741824 // MaxBytesPerTxLength defines the maximum number of bytes that can be included in a transaction.
|
|
FeeRecipientLength = 20 // FeeRecipientLength defines the byte length of a fee recipient.
|
|
LogsBloomLength = 256 // LogsBloomLength defines the byte length of a logs bloom.
|
|
VersionLength = 4 // VersionLength defines the byte length of a fork version number.
|
|
SlotsPerEpoch = 32 // SlotsPerEpoch defines the number of slots per epoch.
|
|
)
|