-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathuids.rs
190 lines (168 loc) · 7.42 KB
/
uids.rs
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
use super::*;
use frame_support::storage::IterableStorageDoubleMap;
use sp_std::vec;
impl<T: Config> Pallet<T> {
/// Returns the number of filled slots on a network.
pub fn get_subnetwork_n(netuid: u16) -> u16 {
SubnetworkN::<T>::get(netuid)
}
/// Sets value for the element at the given position if it exists.
pub fn set_element_at<N>(vec: &mut [N], position: usize, value: N) {
if let Some(element) = vec.get_mut(position) {
*element = value;
}
}
/// Resets the trust, emission, consensus, incentive, dividends of the neuron to default
pub fn clear_neuron(netuid: u16, neuron_uid: u16) {
let neuron_index: usize = neuron_uid.into();
Emission::<T>::mutate(netuid, |v| Self::set_element_at(v, neuron_index, 0));
Trust::<T>::mutate(netuid, |v| Self::set_element_at(v, neuron_index, 0));
Consensus::<T>::mutate(netuid, |v| Self::set_element_at(v, neuron_index, 0));
Incentive::<T>::mutate(netuid, |v| Self::set_element_at(v, neuron_index, 0));
Dividends::<T>::mutate(netuid, |v| Self::set_element_at(v, neuron_index, 0));
Bonds::<T>::remove(netuid, neuron_uid); // Remove bonds for Validator.
}
/// Replace the neuron under this uid.
pub fn replace_neuron(
netuid: u16,
uid_to_replace: u16,
new_hotkey: &T::AccountId,
block_number: u64,
) {
log::debug!(
"replace_neuron( netuid: {:?} | uid_to_replace: {:?} | new_hotkey: {:?} ) ",
netuid,
uid_to_replace,
new_hotkey
);
// 1. Get the old hotkey under this position.
let old_hotkey: T::AccountId = Keys::<T>::get(netuid, uid_to_replace);
// Do not replace owner hotkey from `SubnetOwnerHotkey`
if let Ok(sn_owner_hotkey) = SubnetOwnerHotkey::<T>::try_get(netuid) {
if sn_owner_hotkey == old_hotkey.clone() {
log::warn!(
"replace_neuron: Skipped replacement because neuron is the subnet owner hotkey. \
netuid: {:?}, uid_to_replace: {:?}, new_hotkey: {:?}, owner_hotkey: {:?}",
netuid,
uid_to_replace,
new_hotkey,
sn_owner_hotkey
);
return;
}
}
// 2. Remove previous set memberships.
Uids::<T>::remove(netuid, old_hotkey.clone());
IsNetworkMember::<T>::remove(old_hotkey.clone(), netuid);
#[allow(unknown_lints)]
Keys::<T>::remove(netuid, uid_to_replace);
// 3. Create new set memberships.
Self::set_active_for_uid(netuid, uid_to_replace, true); // Set to active by default.
Keys::<T>::insert(netuid, uid_to_replace, new_hotkey.clone()); // Make hotkey - uid association.
Uids::<T>::insert(netuid, new_hotkey.clone(), uid_to_replace); // Make uid - hotkey association.
BlockAtRegistration::<T>::insert(netuid, uid_to_replace, block_number); // Fill block at registration.
IsNetworkMember::<T>::insert(new_hotkey.clone(), netuid, true); // Fill network is member.
// 4. Clear neuron certificates
NeuronCertificates::<T>::remove(netuid, old_hotkey.clone());
// 5. Reset new neuron's values.
Self::clear_neuron(netuid, uid_to_replace);
// 5a. reset axon info for the new uid.
Axons::<T>::remove(netuid, old_hotkey);
}
/// Appends the uid to the network.
pub fn append_neuron(netuid: u16, new_hotkey: &T::AccountId, block_number: u64) {
// 1. Get the next uid. This is always equal to subnetwork_n.
let next_uid: u16 = Self::get_subnetwork_n(netuid);
log::debug!(
"append_neuron( netuid: {:?} | next_uid: {:?} | new_hotkey: {:?} ) ",
netuid,
new_hotkey,
next_uid
);
// 2. Get and increase the uid count.
SubnetworkN::<T>::insert(netuid, next_uid.saturating_add(1));
// 3. Expand Yuma Consensus with new position.
Rank::<T>::mutate(netuid, |v| v.push(0));
Trust::<T>::mutate(netuid, |v| v.push(0));
Active::<T>::mutate(netuid, |v| v.push(true));
Emission::<T>::mutate(netuid, |v| v.push(0));
Consensus::<T>::mutate(netuid, |v| v.push(0));
Incentive::<T>::mutate(netuid, |v| v.push(0));
Dividends::<T>::mutate(netuid, |v| v.push(0));
LastUpdate::<T>::mutate(netuid, |v| v.push(block_number));
PruningScores::<T>::mutate(netuid, |v| v.push(0));
ValidatorTrust::<T>::mutate(netuid, |v| v.push(0));
ValidatorPermit::<T>::mutate(netuid, |v| v.push(false));
// 4. Insert new account information.
Keys::<T>::insert(netuid, next_uid, new_hotkey.clone()); // Make hotkey - uid association.
Uids::<T>::insert(netuid, new_hotkey.clone(), next_uid); // Make uid - hotkey association.
BlockAtRegistration::<T>::insert(netuid, next_uid, block_number); // Fill block at registration.
IsNetworkMember::<T>::insert(new_hotkey.clone(), netuid, true); // Fill network is member.
}
/// Returns true if the uid is set on the network.
///
pub fn is_uid_exist_on_network(netuid: u16, uid: u16) -> bool {
Keys::<T>::contains_key(netuid, uid)
}
/// Returns true if the hotkey holds a slot on the network.
///
pub fn is_hotkey_registered_on_network(netuid: u16, hotkey: &T::AccountId) -> bool {
Uids::<T>::contains_key(netuid, hotkey)
}
/// Returs the hotkey under the network uid as a Result. Ok if the uid is taken.
///
pub fn get_hotkey_for_net_and_uid(
netuid: u16,
neuron_uid: u16,
) -> Result<T::AccountId, DispatchError> {
Keys::<T>::try_get(netuid, neuron_uid)
.map_err(|_err| Error::<T>::HotKeyNotRegisteredInSubNet.into())
}
/// Returns the uid of the hotkey in the network as a Result. Ok if the hotkey has a slot.
///
pub fn get_uid_for_net_and_hotkey(
netuid: u16,
hotkey: &T::AccountId,
) -> Result<u16, DispatchError> {
Uids::<T>::try_get(netuid, hotkey)
.map_err(|_err| Error::<T>::HotKeyNotRegisteredInSubNet.into())
}
/// Returns the stake of the uid on network or 0 if it doesnt exist.
///
pub fn get_stake_for_uid_and_subnetwork(netuid: u16, neuron_uid: u16) -> u64 {
if let Ok(hotkey) = Self::get_hotkey_for_net_and_uid(netuid, neuron_uid) {
Self::get_stake_for_hotkey_on_subnet(&hotkey, netuid)
} else {
0
}
}
/// Return a list of all networks a hotkey is registered on.
///
pub fn get_registered_networks_for_hotkey(hotkey: &T::AccountId) -> Vec<u16> {
let mut all_networks: Vec<u16> = vec![];
for (network, is_registered) in
<IsNetworkMember<T> as IterableStorageDoubleMap<T::AccountId, u16, bool>>::iter_prefix(
hotkey,
)
{
if is_registered {
all_networks.push(network)
}
}
all_networks
}
/// Return true if a hotkey is registered on any network.
///
pub fn is_hotkey_registered_on_any_network(hotkey: &T::AccountId) -> bool {
for (_, is_registered) in
<IsNetworkMember<T> as IterableStorageDoubleMap<T::AccountId, u16, bool>>::iter_prefix(
hotkey,
)
{
if is_registered {
return true;
}
}
false
}
}