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
use super::*;
use frame_support::DebugNoBound;
#[derive(Encode, Decode, scale_info_derive::TypeInfo, Clone, PartialEq, DebugNoBound, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
feature = "serde",
serde(bound(serialize = "T: Sized", deserialize = "T: Sized"))
)]
#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))]
#[scale_info(skip_type_params(T))]
#[scale_info(omit_prefix)]
pub struct AddRegistry<T: Limits> {
pub id: RevocationRegistryId,
pub new_registry: RevocationRegistry<T>,
}
#[derive(Encode, Decode, scale_info_derive::TypeInfo, Clone, PartialEq, DebugNoBound, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
feature = "serde",
serde(bound(serialize = "T: Sized", deserialize = "T: Sized"))
)]
#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))]
#[scale_info(skip_type_params(T))]
#[scale_info(omit_prefix)]
pub struct RevokeRaw<T> {
pub registry_id: RevocationRegistryId,
pub revoke_ids: BTreeSet<RevokeId>,
#[codec(skip)]
#[cfg_attr(feature = "serde", serde(skip))]
pub _marker: PhantomData<T>,
}
#[derive(Encode, Decode, scale_info_derive::TypeInfo, Clone, PartialEq, DebugNoBound, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
feature = "serde",
serde(bound(serialize = "T: Sized", deserialize = "T: Sized"))
)]
#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))]
#[scale_info(skip_type_params(T))]
#[scale_info(omit_prefix)]
pub struct UnRevokeRaw<T> {
pub registry_id: RevocationRegistryId,
pub revoke_ids: BTreeSet<RevokeId>,
#[codec(skip)]
#[cfg_attr(feature = "serde", serde(skip))]
pub _marker: PhantomData<T>,
}
#[derive(Encode, Decode, scale_info_derive::TypeInfo, Clone, PartialEq, DebugNoBound, Eq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(
feature = "serde",
serde(bound(serialize = "T: Sized", deserialize = "T: Sized"))
)]
#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))]
#[scale_info(skip_type_params(T))]
#[scale_info(omit_prefix)]
pub struct RemoveRegistryRaw<T> {
pub registry_id: RevocationRegistryId,
#[codec(skip)]
#[cfg_attr(feature = "serde", serde(skip))]
pub _marker: PhantomData<T>,
}
crate::impl_action! {
for RevocationRegistryId:
AddRegistry with 1 as len, id as target no_state_change,
RevokeRaw with revoke_ids.len() as len, registry_id as target no_state_change,
UnRevokeRaw with revoke_ids.len() as len, registry_id as target no_state_change,
RemoveRegistryRaw with 1 as len, registry_id as target no_state_change
}
pub type Revoke<T> = WithNonce<T, RevokeRaw<T>>;
pub type UnRevoke<T> = WithNonce<T, UnRevokeRaw<T>>;
pub type RemoveRegistry<T> = WithNonce<T, RemoveRegistryRaw<T>>;
crate::impl_action_with_nonce! {
for RevocationRegistryId:
UnRevoke with data().len() as len, data().registry_id as target,
Revoke with data().len() as len, data().registry_id as target,
RemoveRegistry with data().len() as len, data().registry_id as target
}