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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
// 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/>.

use std::{cmp::max, collections::BTreeMap, num::NonZeroU64};

use ethereum_types::U256;
use hotshot_types::{
    traits::{
        election::Membership,
        network::Topic,
        node_implementation::NodeType,
        signature_key::{SignatureKey, StakeTableEntryType},
    },
    PeerConfig,
};
#[cfg(feature = "randomized-leader-election")]
use rand::{rngs::StdRng, Rng};

#[derive(Clone, Debug, Eq, PartialEq, Hash)]

/// The static committee election
pub struct GeneralStaticCommittee<T: NodeType> {
    /// The nodes eligible for leadership.
    /// NOTE: This is currently a hack because the DA leader needs to be the quorum
    /// leader but without voting rights.
    eligible_leaders: Vec<<T::SignatureKey as SignatureKey>::StakeTableEntry>,

    /// The nodes on the committee and their stake
    stake_table: Vec<<T::SignatureKey as SignatureKey>::StakeTableEntry>,

    /// The nodes on the committee and their stake, indexed by public key
    indexed_stake_table:
        BTreeMap<T::SignatureKey, <T::SignatureKey as SignatureKey>::StakeTableEntry>,

    // /// The members of the committee
    // committee_members: BTreeSet<T::SignatureKey>,
    #[cfg(feature = "fixed-leader-election")]
    /// The number of fixed leaders for gpuvid
    fixed_leader_for_gpuvid: usize,

    /// The network topic of the committee
    committee_topic: Topic,
}

/// static committee using a vrf kp
pub type StaticCommittee<T> = GeneralStaticCommittee<T>;

impl<TYPES: NodeType> Membership<TYPES> for GeneralStaticCommittee<TYPES> {
    /// Create a new election
    fn new(
        eligible_leaders: Vec<PeerConfig<<TYPES as NodeType>::SignatureKey>>,
        committee_members: Vec<PeerConfig<<TYPES as NodeType>::SignatureKey>>,
        committee_topic: Topic,
        #[cfg(feature = "fixed-leader-election")] fixed_leader_for_gpuvid: usize,
    ) -> Self {
        // For each eligible leader, get the stake table entry
        let eligible_leaders: Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry> =
            eligible_leaders
                .iter()
                .map(|member| member.stake_table_entry.clone())
                .filter(|entry| entry.stake() > U256::zero())
                .collect();

        // For each member, get the stake table entry
        let members: Vec<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry> =
            committee_members
                .iter()
                .map(|member| member.stake_table_entry.clone())
                .filter(|entry| entry.stake() > U256::zero())
                .collect();

        // Index the stake table by public key
        let indexed_stake_table: BTreeMap<
            TYPES::SignatureKey,
            <TYPES::SignatureKey as SignatureKey>::StakeTableEntry,
        > = members
            .iter()
            .map(|entry| (TYPES::SignatureKey::public_key(entry), entry.clone()))
            .collect();

        Self {
            eligible_leaders,
            stake_table: members,
            indexed_stake_table,
            committee_topic,
            #[cfg(feature = "fixed-leader-election")]
            fixed_leader_for_gpuvid,
        }
    }

    /// Get the stake table for the current view
    fn stake_table(
        &self,
    ) -> Vec<<<TYPES as NodeType>::SignatureKey as SignatureKey>::StakeTableEntry> {
        self.stake_table.clone()
    }

    /// Get all members of the committee for the current view
    fn committee_members(
        &self,
        _view_number: <TYPES as NodeType>::Time,
    ) -> std::collections::BTreeSet<<TYPES as NodeType>::SignatureKey> {
        self.stake_table
            .iter()
            .map(TYPES::SignatureKey::public_key)
            .collect()
    }

    /// Get the stake table entry for a public key
    fn stake(
        &self,
        pub_key: &<TYPES as NodeType>::SignatureKey,
    ) -> Option<<TYPES::SignatureKey as SignatureKey>::StakeTableEntry> {
        // Only return the stake if it is above zero
        self.indexed_stake_table.get(pub_key).cloned()
    }

    /// Check if a node has stake in the committee
    fn has_stake(&self, pub_key: &<TYPES as NodeType>::SignatureKey) -> bool {
        self.indexed_stake_table
            .get(pub_key)
            .is_some_and(|x| x.stake() > U256::zero())
    }

    /// Get the network topic for the committee
    fn committee_topic(&self) -> Topic {
        self.committee_topic.clone()
    }

    #[cfg(not(any(
        feature = "randomized-leader-election",
        feature = "fixed-leader-election"
    )))]
    /// Index the vector of public keys with the current view number
    fn leader(&self, view_number: TYPES::Time) -> TYPES::SignatureKey {
        let index = usize::try_from(*view_number % self.eligible_leaders.len() as u64).unwrap();
        let res = self.eligible_leaders[index].clone();
        TYPES::SignatureKey::public_key(&res)
    }

    #[cfg(feature = "fixed-leader-election")]
    /// Only get leader in fixed set
    /// Index the fixed vector (first fixed_leader_for_gpuvid element) of public keys with the current view number
    fn leader(&self, view_number: TYPES::Time) -> TYPES::SignatureKey {
        if self.fixed_leader_for_gpuvid <= 0
            || self.fixed_leader_for_gpuvid > self.eligible_leaders.len()
        {
            panic!("fixed_leader_for_gpuvid is not set correctly.");
        }
        let index = usize::try_from(*view_number % self.fixed_leader_for_gpuvid as u64).unwrap();
        let res = self.eligible_leaders[index].clone();
        TYPES::SignatureKey::public_key(&res)
    }

    #[cfg(feature = "randomized-leader-election")]
    /// Index the vector of public keys with a random number generated using the current view number as a seed
    fn leader(&self, view_number: TYPES::Time) -> TYPES::SignatureKey {
        let mut rng: StdRng = rand::SeedableRng::seed_from_u64(*view_number);
        let randomized_view_number: usize = rng.gen();
        let index = randomized_view_number % self.eligible_leaders.len();
        let res = self.eligible_leaders[index].clone();
        TYPES::SignatureKey::public_key(&res)
    }

    /// Get the total number of nodes in the committee
    fn total_nodes(&self) -> usize {
        self.stake_table.len()
    }

    /// Get the voting success threshold for the committee
    fn success_threshold(&self) -> NonZeroU64 {
        NonZeroU64::new(((self.stake_table.len() as u64 * 2) / 3) + 1).unwrap()
    }

    /// Get the voting failure threshold for the committee
    fn failure_threshold(&self) -> NonZeroU64 {
        NonZeroU64::new(((self.stake_table.len() as u64) / 3) + 1).unwrap()
    }

    /// Get the voting upgrade threshold for the committee
    fn upgrade_threshold(&self) -> NonZeroU64 {
        NonZeroU64::new(max(
            (self.stake_table.len() as u64 * 9) / 10,
            ((self.stake_table.len() as u64 * 2) / 3) + 1,
        ))
        .unwrap()
    }
}