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
use frame_support::traits::{ConstU32, Get};
pub trait Size: Get<u32> + Send + Sync + 'static {}
impl<T: Get<u32> + Send + Sync + 'static> Size for T {}
pub trait Limits: Clone + Eq {
type MaxAccumulatorLabelSize: Size;
type MaxAccumulatorParamsSize: Size;
type MaxAccumulatorPublicKeySize: Size;
type MaxAccumulatorAccumulatedSize: Size;
type MaxDidDocRefSize: Size;
type MaxDidServiceEndpointIdSize: Size;
type MaxDidServiceEndpointOrigins: Size;
type MaxDidServiceEndpointOriginSize: Size;
type MaxStatusListCredentialSize: Size;
type MinStatusListCredentialSize: Size;
type MaxIriSize: Size;
type MaxBlobSize: Size;
type MaxOffchainParamsLabelSize: Size;
type MaxOffchainParamsBytesSize: Size;
type MaxBBSPublicKeySize: Size;
type MaxBBSPlusPublicKeySize: Size;
type MaxBBDT16PublicKeySize: Size;
type MaxPSPublicKeySize: Size;
type MaxMasterMembers: Size;
type MaxPolicyControllers: Size;
type MaxIssuerPriceCurrencySymbolSize: Size;
type MaxIssuersPerSchema: Size;
type MaxVerifiersPerSchema: Size;
type MaxIssuerPriceCurrencies: Size;
type MaxTrustRegistryNameSize: Size;
type MaxConvenerRegistries: Size;
type MaxDelegatedIssuers: Size;
type MaxSchemasPerIssuer: Size;
type MaxSchemasPerVerifier: Size;
type MaxRegistriesPerIssuer: Size;
type MaxRegistriesPerVerifier: Size;
type MaxTrustRegistryGovFrameworkSize: Size;
type MaxSchemasPerRegistry: Size;
type MaxParticipantsPerRegistry: Size;
type MaxRegistryParticipantOrgNameSize: Size;
type MaxRegistryParticipantDescriptionSize: Size;
type MaxRegistryParticipantLogoSize: Size;
}
type Zero = ConstU32<0>;
type NoLimit = ConstU32<{ u32::MAX }>;
impl Limits for () {
type MaxAccumulatorLabelSize = NoLimit;
type MaxAccumulatorParamsSize = NoLimit;
type MaxAccumulatorPublicKeySize = NoLimit;
type MaxAccumulatorAccumulatedSize = NoLimit;
type MaxDidDocRefSize = NoLimit;
type MaxDidServiceEndpointIdSize = NoLimit;
type MaxDidServiceEndpointOrigins = NoLimit;
type MaxDidServiceEndpointOriginSize = NoLimit;
type MaxStatusListCredentialSize = NoLimit;
type MinStatusListCredentialSize = Zero;
type MaxIriSize = NoLimit;
type MaxBlobSize = NoLimit;
type MaxOffchainParamsLabelSize = NoLimit;
type MaxOffchainParamsBytesSize = NoLimit;
type MaxBBSPublicKeySize = NoLimit;
type MaxBBSPlusPublicKeySize = NoLimit;
type MaxBBDT16PublicKeySize = NoLimit;
type MaxPSPublicKeySize = NoLimit;
type MaxMasterMembers = NoLimit;
type MaxPolicyControllers = NoLimit;
type MaxIssuerPriceCurrencySymbolSize = NoLimit;
type MaxIssuersPerSchema = NoLimit;
type MaxVerifiersPerSchema = NoLimit;
type MaxIssuerPriceCurrencies = NoLimit;
type MaxTrustRegistryNameSize = NoLimit;
type MaxConvenerRegistries = NoLimit;
type MaxDelegatedIssuers = NoLimit;
type MaxSchemasPerIssuer = NoLimit;
type MaxSchemasPerVerifier = NoLimit;
type MaxTrustRegistryGovFrameworkSize = NoLimit;
type MaxRegistriesPerIssuer = NoLimit;
type MaxRegistriesPerVerifier = NoLimit;
type MaxSchemasPerRegistry = NoLimit;
type MaxParticipantsPerRegistry = NoLimit;
type MaxRegistryParticipantOrgNameSize = NoLimit;
type MaxRegistryParticipantDescriptionSize = NoLimit;
type MaxRegistryParticipantLogoSize = NoLimit;
}