sc-consensus-aura

Crates.iosc-consensus-aura
lib.rssc-consensus-aura
version0.52.0
created_at2020-02-27 23:14:38.858061+00
updated_at2025-08-01 15:21:51.18839+00
descriptionAura consensus algorithm for substrate
homepagehttps://paritytech.github.io/polkadot-sdk/
repositoryhttps://github.com/paritytech/polkadot-sdk.git
max_upload_size
id213362
size246,524
Parity Crate Owner (parity-crate-owner)

documentation

README

Aura (Authority-round) consensus in Substrate.

Aura works by having a list of authorities A who are expected to roughly agree on the current time. Time is divided up into discrete slots of t seconds each. For each slot s, the author of that slot is A[s % |A|].

The author is allowed to issue one block but not more during that slot, and it will be built upon the longest valid chain that has been seen.

Blocks from future steps will be either deferred or rejected depending on how far in the future they are.

NOTE: Aura itself is designed to be generic over the crypto used.

License: GPL-3.0-or-later WITH Classpath-exception-2.0

Commit count: 19113

cargo fmt