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
use crate::fabric::{
balances::{
Balances,
BalancesEventsDecoder as _,
},
system::{
System,
SystemEventsDecoder as _,
},
};
use codec::Encode;
use fabric_support::Parameter;
use tp_runtime::traits::{
Member,
OpaqueKeys,
};
use std::{
fmt::Debug,
marker::PhantomData,
};
use tetcore_subxt_proc_macro::Store;
macro_rules! default_impl {
($name:ident) => {
impl<T: Session> Default for $name<T> {
fn default() -> Self {
Self {
_runtime: PhantomData,
}
}
}
};
}
type IdentificationTuple<T> = (
<T as Session>::ValidatorId,
noble_staking::Exposure<<T as System>::AccountId, <T as Balances>::Balance>,
);
#[module]
pub trait Session: System + Balances {
#![event_alias(IdentificationTuple = IdentificationTuple<T>)]
#![event_alias(OpaqueTimeSlot = Vec<u8>)]
#![event_alias(SessionIndex = u32)]
type ValidatorId: Parameter + Debug + Ord + Default + Send + Sync + 'static;
type Keys: OpaqueKeys + Member + Parameter + Default;
}
#[derive(Encode, Store, Debug)]
pub struct ValidatorsStore<T: Session> {
#[store(returns = Vec<<T as Session>::ValidatorId>)]
pub _runtime: PhantomData<T>,
}
default_impl!(ValidatorsStore);
#[derive(Encode, Call, Debug)]
pub struct SetKeysCall<T: Session> {
pub keys: T::Keys,
pub proof: Vec<u8>,
}