1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Copyright (c) 2021-2024 Espresso Systems (espressosys.com)
// This file is part of the HotShot repository.

// You should have received a copy of the MIT License
// along with the HotShot repository. If not, see <https://mit-license.org/>.

//! The consensus layer for hotshot. This currently implements sequencing
//! consensus in an event driven way

/// the task which implements the main parts of consensus
pub mod consensus;

/// The task which implements the core state logic of consensus.
pub mod consensus2;

/// The task which handles the logic for the quorum vote.
pub mod quorum_vote;

/// The task which implements the main parts of data availability.
pub mod da;

/// The task which implements all transaction handling
pub mod transactions;

/// Defines the events passed between tasks
pub mod events;

/// The task which implements the network.
pub mod network;

/// Defines the types to run unit tests for a task.
pub mod harness;

/// The task which implements view synchronization
pub mod view_sync;

/// The task which implements verifiable information dispersal
pub mod vid;

/// Generic task for collecting votes
pub mod vote_collection;

/// Task for handling upgrades
pub mod upgrade;

/// Implementations for builder client
/// Should contain builder task in the future
pub mod builder;

/// Helper functions used by any task
pub mod helpers;

/// Task which responses to requests from the network
pub mod response;

/// Task for requesting the network for things
pub mod request;

/// Task for handling logic for quorum proposals
pub mod quorum_proposal;

/// Task for handling QuorumProposalRecv events
pub mod quorum_proposal_recv;

/// Task for storing and replaying all received tasks by a node
pub mod rewind;