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
use alloc::{collections::BTreeMap, vec::Vec};
use crate::{
auction::{Bid, SeigniorageRecipient, UnbondingPurse},
PublicKey, URef, U512,
};
pub type DelegationRate = u64;
pub type DelegatedAmounts = BTreeMap<PublicKey, U512>;
pub type Delegators = BTreeMap<PublicKey, DelegatedAmounts>;
pub type DelegatorRewardMap = BTreeMap<PublicKey, BTreeMap<PublicKey, U512>>;
pub type ValidatorRewardMap = BTreeMap<PublicKey, U512>;
pub type Bids = BTreeMap<PublicKey, Bid>;
pub type BidPurses = BTreeMap<PublicKey, URef>;
pub type ValidatorWeights = BTreeMap<PublicKey, U512>;
pub type EraId = u64;
pub type EraValidators = BTreeMap<EraId, ValidatorWeights>;
pub type SeigniorageRecipients = BTreeMap<PublicKey, SeigniorageRecipient>;
pub type SeigniorageRecipientsSnapshot = BTreeMap<EraId, SeigniorageRecipients>;
pub type UnbondingPurses = BTreeMap<PublicKey, Vec<UnbondingPurse>>;