Expand description
Information about the network’s clock, ticks, slots, etc.
Structs§
- Clock
- Clock represents network time. Members of Clock start from 0 upon network boot. The best way to map Clock to wallclock time is to use current Slot, as Epochs vary in duration (they start short and grow as the network progresses).
Constants§
- DEFAULT_
DEV_ SLOTS_ PER_ EPOCH - DEFAULT_
HASHES_ PER_ SECOND - DEFAULT_
HASHES_ PER_ TICK - DEFAULT_
MS_ PER_ SLOT - DEFAULT_
SLOTS_ PER_ EPOCH - DEFAULT_
S_ PER_ SLOT - DEFAULT_
TICKS_ PER_ SECOND - DEFAULT_
TICKS_ PER_ SLOT - GENESIS_
EPOCH - INITIAL_
RENT_ EPOCH - MAX_
HASH_ AGE_ IN_ SECONDS - The time window of recent block hash values that the bank will track the signatures
of over. Once the bank discards a block hash, it will reject any transactions that use
that
recent_blockhash
in a transaction. Lowering this value reduces memory consumption, but requires clients to update itsrecent_blockhash
more frequently. Raising the value lengthens the time a client must wait to be certain a missing transaction will not be processed by the network. - MAX_
PROCESSING_ AGE - MAX_
RECENT_ BLOCKHASHES - MAX_
TRANSACTION_ FORWARDING_ DELAY - More delay is expected if CUDA is not enabled (as signature verification takes longer)
- MAX_
TRANSACTION_ FORWARDING_ DELAY_ GPU - This is maximum time consumed in forwarding a transaction from one node to next, before it can be processed in the target node
- MS_
PER_ TICK - NUM_
CONSECUTIVE_ LEADER_ SLOTS - SECONDS_
PER_ DAY - SLOT_MS
- TICKS_
PER_ DAY
Type Aliases§
- BankId
- Uniquely distinguishes every version of a slot, even if the slot number is the same, i.e. duplicate slots
- Epoch
- Epoch is a unit of time a given leader schedule is honored, some number of Slots.
- Slot
- Slot is a unit of time given to a leader for encoding, is some some number of Ticks long.
- Slot
Count - SlotCount is the number of slots in a epoch
- Slot
Index - SlotIndex is an index to the slots of a epoch
- Unix
Timestamp - UnixTimestamp is an approximate measure of real-world time, expressed as Unix time (ie. seconds since the Unix epoch)