@storagehub/api-augment 0.1.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +674 -0
- package/biome.json +2 -9
- package/dist/parachain/index.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-consts.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-errors.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-events.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-query.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-rpc.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-runtime.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-tx.js.map +1 -0
- package/dist/parachain/interfaces/augment-api.js.map +1 -0
- package/dist/parachain/interfaces/augment-types.js.map +1 -0
- package/dist/parachain/interfaces/definitions.js.map +1 -0
- package/dist/parachain/interfaces/index.js.map +1 -0
- package/dist/{interfaces → parachain/interfaces}/lookup.js +1465 -813
- package/dist/parachain/interfaces/lookup.js.map +1 -0
- package/dist/parachain/interfaces/registry.js.map +1 -0
- package/dist/parachain/interfaces/storagehubclient/definitions.js +7 -0
- package/dist/parachain/interfaces/storagehubclient/definitions.js.map +1 -0
- package/dist/parachain/interfaces/storagehubclient/index.js.map +1 -0
- package/dist/parachain/interfaces/storagehubclient/runtime.js.map +1 -0
- package/dist/parachain/interfaces/storagehubclient/types.js.map +1 -0
- package/dist/parachain/interfaces/types-lookup.js.map +1 -0
- package/dist/parachain/interfaces/types.js.map +1 -0
- package/dist/solochain-evm/index.js +4 -0
- package/dist/solochain-evm/index.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-consts.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-consts.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-errors.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-errors.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-events.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-events.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-query.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-query.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-rpc.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-rpc.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-runtime.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-runtime.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-tx.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-tx.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api.js +10 -0
- package/dist/solochain-evm/interfaces/augment-api.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-types.js +6 -0
- package/dist/solochain-evm/interfaces/augment-types.js.map +1 -0
- package/dist/solochain-evm/interfaces/definitions.js +2 -0
- package/dist/solochain-evm/interfaces/definitions.js.map +1 -0
- package/dist/solochain-evm/interfaces/index.js +4 -0
- package/dist/solochain-evm/interfaces/index.js.map +1 -0
- package/dist/solochain-evm/interfaces/lookup.js +3744 -0
- package/dist/solochain-evm/interfaces/lookup.js.map +1 -0
- package/dist/solochain-evm/interfaces/registry.js +6 -0
- package/dist/solochain-evm/interfaces/registry.js.map +1 -0
- package/dist/solochain-evm/interfaces/storagehubclient/definitions.js +7 -0
- package/dist/solochain-evm/interfaces/storagehubclient/definitions.js.map +1 -0
- package/dist/solochain-evm/interfaces/storagehubclient/index.js +4 -0
- package/dist/solochain-evm/interfaces/storagehubclient/index.js.map +1 -0
- package/dist/solochain-evm/interfaces/storagehubclient/types.js +4 -0
- package/dist/solochain-evm/interfaces/storagehubclient/types.js.map +1 -0
- package/dist/solochain-evm/interfaces/types-lookup.js +6 -0
- package/dist/solochain-evm/interfaces/types-lookup.js.map +1 -0
- package/dist/solochain-evm/interfaces/types.js +4 -0
- package/dist/solochain-evm/interfaces/types.js.map +1 -0
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-consts.d.ts +147 -20
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-errors.d.ts +235 -8
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-events.d.ts +542 -118
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-query.d.ts +208 -118
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-rpc.d.ts +61 -4
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-runtime.d.ts +97 -8
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-tx.d.ts +356 -181
- package/dist/types/{interfaces → parachain/interfaces}/augment-types.d.ts +144 -11
- package/dist/types/{interfaces → parachain/interfaces}/lookup.d.ts +1067 -513
- package/dist/types/parachain/interfaces/registry.d.ts +311 -0
- package/dist/types/{interfaces → parachain/interfaces}/storagehubclient/types.d.ts +129 -18
- package/dist/types/{interfaces → parachain/interfaces}/types-lookup.d.ts +1619 -887
- package/dist/types/solochain-evm/interfaces/augment-api-consts.d.ts +641 -0
- package/dist/types/solochain-evm/interfaces/augment-api-errors.d.ts +1260 -0
- package/dist/types/solochain-evm/interfaces/augment-api-events.d.ts +2058 -0
- package/dist/types/solochain-evm/interfaces/augment-api-query.d.ts +1317 -0
- package/dist/types/solochain-evm/interfaces/augment-api-rpc.d.ts +775 -0
- package/dist/types/solochain-evm/interfaces/augment-api-runtime.d.ts +535 -0
- package/dist/types/solochain-evm/interfaces/augment-api-tx.d.ts +2381 -0
- package/dist/types/solochain-evm/interfaces/augment-api.d.ts +7 -0
- package/dist/types/solochain-evm/interfaces/augment-types.d.ts +1418 -0
- package/dist/types/solochain-evm/interfaces/index.d.ts +1 -0
- package/dist/types/solochain-evm/interfaces/lookup.d.ts +3363 -0
- package/dist/types/solochain-evm/interfaces/registry.d.ts +252 -0
- package/dist/types/solochain-evm/interfaces/storagehubclient/definitions.d.ts +6 -0
- package/dist/types/solochain-evm/interfaces/storagehubclient/index.d.ts +1 -0
- package/dist/types/solochain-evm/interfaces/storagehubclient/types.d.ts +319 -0
- package/dist/types/solochain-evm/interfaces/types-lookup.d.ts +3577 -0
- package/dist/types/solochain-evm/interfaces/types.d.ts +1 -0
- package/metadata-sh-parachain.json +5 -0
- package/metadata-sh-solochain-evm.json +5 -0
- package/package.json +41 -26
- package/scripts/scrapeMetadata.ts +41 -29
- package/src/parachain/index.ts +3 -0
- package/src/{interfaces → parachain/interfaces}/augment-api-consts.ts +147 -20
- package/src/{interfaces → parachain/interfaces}/augment-api-errors.ts +235 -8
- package/src/{interfaces → parachain/interfaces}/augment-api-events.ts +527 -137
- package/src/{interfaces → parachain/interfaces}/augment-api-query.ts +272 -145
- package/src/{interfaces → parachain/interfaces}/augment-api-rpc.ts +123 -5
- package/src/{interfaces → parachain/interfaces}/augment-api-runtime.ts +183 -8
- package/src/{interfaces → parachain/interfaces}/augment-api-tx.ts +374 -182
- package/src/{interfaces → parachain/interfaces}/augment-types.ts +278 -12
- package/src/parachain/interfaces/definitions.ts +1 -0
- package/src/{interfaces → parachain/interfaces}/lookup.ts +1497 -813
- package/src/{interfaces → parachain/interfaces}/registry.ts +176 -98
- package/src/parachain/interfaces/storagehubclient/definitions.ts +7 -0
- package/src/{interfaces → parachain/interfaces}/storagehubclient/types.ts +158 -18
- package/src/{interfaces → parachain/interfaces}/types-lookup.ts +1970 -896
- package/src/solochain-evm/index.ts +3 -0
- package/src/solochain-evm/interfaces/augment-api-consts.ts +655 -0
- package/src/solochain-evm/interfaces/augment-api-errors.ts +1268 -0
- package/src/solochain-evm/interfaces/augment-api-events.ts +1813 -0
- package/src/solochain-evm/interfaces/augment-api-query.ts +1838 -0
- package/src/solochain-evm/interfaces/augment-api-rpc.ts +1319 -0
- package/src/solochain-evm/interfaces/augment-api-runtime.ts +958 -0
- package/src/solochain-evm/interfaces/augment-api-tx.ts +2818 -0
- package/src/solochain-evm/interfaces/augment-api.ts +10 -0
- package/src/solochain-evm/interfaces/augment-types.ts +2774 -0
- package/src/solochain-evm/interfaces/definitions.ts +1 -0
- package/src/solochain-evm/interfaces/index.ts +4 -0
- package/src/solochain-evm/interfaces/lookup.ts +3788 -0
- package/src/solochain-evm/interfaces/registry.ts +506 -0
- package/src/solochain-evm/interfaces/storagehubclient/definitions.ts +7 -0
- package/src/solochain-evm/interfaces/storagehubclient/index.ts +4 -0
- package/src/solochain-evm/interfaces/storagehubclient/types.ts +391 -0
- package/src/solochain-evm/interfaces/types-lookup.ts +4616 -0
- package/src/solochain-evm/interfaces/types.ts +4 -0
- package/tsconfig.json +17 -20
- package/tsconfig.parachain.json +17 -0
- package/tsconfig.solochain-evm.json +17 -0
- package/tsconfig.tsbuildinfo +1 -0
- package/dist/index.js.map +0 -1
- package/dist/interfaces/augment-api-consts.js.map +0 -1
- package/dist/interfaces/augment-api-errors.js.map +0 -1
- package/dist/interfaces/augment-api-events.js.map +0 -1
- package/dist/interfaces/augment-api-query.js.map +0 -1
- package/dist/interfaces/augment-api-rpc.js.map +0 -1
- package/dist/interfaces/augment-api-runtime.js.map +0 -1
- package/dist/interfaces/augment-api-tx.js.map +0 -1
- package/dist/interfaces/augment-api.js.map +0 -1
- package/dist/interfaces/augment-types.js.map +0 -1
- package/dist/interfaces/definitions.js.map +0 -1
- package/dist/interfaces/index.js.map +0 -1
- package/dist/interfaces/lookup.js.map +0 -1
- package/dist/interfaces/registry.js.map +0 -1
- package/dist/interfaces/storagehubclient/definitions.js +0 -7
- package/dist/interfaces/storagehubclient/definitions.js.map +0 -1
- package/dist/interfaces/storagehubclient/index.js.map +0 -1
- package/dist/interfaces/storagehubclient/runtime.js.map +0 -1
- package/dist/interfaces/storagehubclient/types.js.map +0 -1
- package/dist/interfaces/types-lookup.js.map +0 -1
- package/dist/interfaces/types.js.map +0 -1
- package/dist/types/interfaces/registry.d.ts +0 -272
- package/src/interfaces/storagehubclient/definitions.ts +0 -7
- package/storagehub.json +0 -1
- /package/dist/{index.js → parachain/index.js} +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-consts.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-errors.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-events.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-query.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-rpc.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-runtime.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-tx.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-types.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/definitions.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/index.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/registry.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/storagehubclient/index.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/storagehubclient/runtime.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/storagehubclient/types.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/types-lookup.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/types.js +0 -0
- /package/dist/types/{index.d.ts → parachain/index.d.ts} +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/augment-api.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/definitions.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/index.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/storagehubclient/definitions.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/storagehubclient/index.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/storagehubclient/runtime.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/types.d.ts +0 -0
- /package/{src/index.ts → dist/types/solochain-evm/index.d.ts} +0 -0
- /package/{src/interfaces/definitions.ts → dist/types/solochain-evm/interfaces/definitions.d.ts} +0 -0
- /package/src/{interfaces → parachain/interfaces}/augment-api.ts +0 -0
- /package/src/{interfaces → parachain/interfaces}/index.ts +0 -0
- /package/src/{interfaces → parachain/interfaces}/storagehubclient/index.ts +0 -0
- /package/src/{interfaces → parachain/interfaces}/storagehubclient/runtime.ts +0 -0
- /package/src/{interfaces → parachain/interfaces}/types.ts +0 -0
|
@@ -0,0 +1,3363 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
/**
|
|
3
|
+
* Lookup3: frame_system::AccountInfo<Nonce, pallet_balances::types::AccountData<Balance>>
|
|
4
|
+
**/
|
|
5
|
+
FrameSystemAccountInfo: {
|
|
6
|
+
nonce: string;
|
|
7
|
+
consumers: string;
|
|
8
|
+
providers: string;
|
|
9
|
+
sufficients: string;
|
|
10
|
+
data: string;
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* Lookup5: pallet_balances::types::AccountData<Balance>
|
|
14
|
+
**/
|
|
15
|
+
PalletBalancesAccountData: {
|
|
16
|
+
free: string;
|
|
17
|
+
reserved: string;
|
|
18
|
+
frozen: string;
|
|
19
|
+
flags: string;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Lookup9: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
|
|
23
|
+
**/
|
|
24
|
+
FrameSupportDispatchPerDispatchClassWeight: {
|
|
25
|
+
normal: string;
|
|
26
|
+
operational: string;
|
|
27
|
+
mandatory: string;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Lookup10: sp_weights::weight_v2::Weight
|
|
31
|
+
**/
|
|
32
|
+
SpWeightsWeightV2Weight: {
|
|
33
|
+
refTime: string;
|
|
34
|
+
proofSize: string;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Lookup16: sp_runtime::generic::digest::Digest
|
|
38
|
+
**/
|
|
39
|
+
SpRuntimeDigest: {
|
|
40
|
+
logs: string;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* Lookup18: sp_runtime::generic::digest::DigestItem
|
|
44
|
+
**/
|
|
45
|
+
SpRuntimeDigestDigestItem: {
|
|
46
|
+
_enum: {
|
|
47
|
+
Other: string;
|
|
48
|
+
__Unused1: string;
|
|
49
|
+
__Unused2: string;
|
|
50
|
+
__Unused3: string;
|
|
51
|
+
Consensus: string;
|
|
52
|
+
Seal: string;
|
|
53
|
+
PreRuntime: string;
|
|
54
|
+
__Unused7: string;
|
|
55
|
+
RuntimeEnvironmentUpdated: string;
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* Lookup21: frame_system::EventRecord<sh_solochain_evm_runtime::RuntimeEvent, primitive_types::H256>
|
|
60
|
+
**/
|
|
61
|
+
FrameSystemEventRecord: {
|
|
62
|
+
phase: string;
|
|
63
|
+
event: string;
|
|
64
|
+
topics: string;
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* Lookup23: frame_system::pallet::Event<T>
|
|
68
|
+
**/
|
|
69
|
+
FrameSystemEvent: {
|
|
70
|
+
_enum: {
|
|
71
|
+
ExtrinsicSuccess: {
|
|
72
|
+
dispatchInfo: string;
|
|
73
|
+
};
|
|
74
|
+
ExtrinsicFailed: {
|
|
75
|
+
dispatchError: string;
|
|
76
|
+
dispatchInfo: string;
|
|
77
|
+
};
|
|
78
|
+
CodeUpdated: string;
|
|
79
|
+
NewAccount: {
|
|
80
|
+
account: string;
|
|
81
|
+
};
|
|
82
|
+
KilledAccount: {
|
|
83
|
+
account: string;
|
|
84
|
+
};
|
|
85
|
+
Remarked: {
|
|
86
|
+
_alias: {
|
|
87
|
+
hash_: string;
|
|
88
|
+
};
|
|
89
|
+
sender: string;
|
|
90
|
+
hash_: string;
|
|
91
|
+
};
|
|
92
|
+
UpgradeAuthorized: {
|
|
93
|
+
codeHash: string;
|
|
94
|
+
checkVersion: string;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
/**
|
|
99
|
+
* Lookup24: frame_system::DispatchEventInfo
|
|
100
|
+
**/
|
|
101
|
+
FrameSystemDispatchEventInfo: {
|
|
102
|
+
weight: string;
|
|
103
|
+
class: string;
|
|
104
|
+
paysFee: string;
|
|
105
|
+
};
|
|
106
|
+
/**
|
|
107
|
+
* Lookup25: frame_support::dispatch::DispatchClass
|
|
108
|
+
**/
|
|
109
|
+
FrameSupportDispatchDispatchClass: {
|
|
110
|
+
_enum: string[];
|
|
111
|
+
};
|
|
112
|
+
/**
|
|
113
|
+
* Lookup26: frame_support::dispatch::Pays
|
|
114
|
+
**/
|
|
115
|
+
FrameSupportDispatchPays: {
|
|
116
|
+
_enum: string[];
|
|
117
|
+
};
|
|
118
|
+
/**
|
|
119
|
+
* Lookup27: sp_runtime::DispatchError
|
|
120
|
+
**/
|
|
121
|
+
SpRuntimeDispatchError: {
|
|
122
|
+
_enum: {
|
|
123
|
+
Other: string;
|
|
124
|
+
CannotLookup: string;
|
|
125
|
+
BadOrigin: string;
|
|
126
|
+
Module: string;
|
|
127
|
+
ConsumerRemaining: string;
|
|
128
|
+
NoProviders: string;
|
|
129
|
+
TooManyConsumers: string;
|
|
130
|
+
Token: string;
|
|
131
|
+
Arithmetic: string;
|
|
132
|
+
Transactional: string;
|
|
133
|
+
Exhausted: string;
|
|
134
|
+
Corruption: string;
|
|
135
|
+
Unavailable: string;
|
|
136
|
+
RootNotAllowed: string;
|
|
137
|
+
Trie: string;
|
|
138
|
+
};
|
|
139
|
+
};
|
|
140
|
+
/**
|
|
141
|
+
* Lookup28: sp_runtime::ModuleError
|
|
142
|
+
**/
|
|
143
|
+
SpRuntimeModuleError: {
|
|
144
|
+
index: string;
|
|
145
|
+
error: string;
|
|
146
|
+
};
|
|
147
|
+
/**
|
|
148
|
+
* Lookup29: sp_runtime::TokenError
|
|
149
|
+
**/
|
|
150
|
+
SpRuntimeTokenError: {
|
|
151
|
+
_enum: string[];
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* Lookup30: sp_arithmetic::ArithmeticError
|
|
155
|
+
**/
|
|
156
|
+
SpArithmeticArithmeticError: {
|
|
157
|
+
_enum: string[];
|
|
158
|
+
};
|
|
159
|
+
/**
|
|
160
|
+
* Lookup31: sp_runtime::TransactionalError
|
|
161
|
+
**/
|
|
162
|
+
SpRuntimeTransactionalError: {
|
|
163
|
+
_enum: string[];
|
|
164
|
+
};
|
|
165
|
+
/**
|
|
166
|
+
* Lookup32: sp_runtime::proving_trie::TrieError
|
|
167
|
+
**/
|
|
168
|
+
SpRuntimeProvingTrieTrieError: {
|
|
169
|
+
_enum: string[];
|
|
170
|
+
};
|
|
171
|
+
/**
|
|
172
|
+
* Lookup33: pallet_balances::pallet::Event<T, I>
|
|
173
|
+
**/
|
|
174
|
+
PalletBalancesEvent: {
|
|
175
|
+
_enum: {
|
|
176
|
+
Endowed: {
|
|
177
|
+
account: string;
|
|
178
|
+
freeBalance: string;
|
|
179
|
+
};
|
|
180
|
+
DustLost: {
|
|
181
|
+
account: string;
|
|
182
|
+
amount: string;
|
|
183
|
+
};
|
|
184
|
+
Transfer: {
|
|
185
|
+
from: string;
|
|
186
|
+
to: string;
|
|
187
|
+
amount: string;
|
|
188
|
+
};
|
|
189
|
+
BalanceSet: {
|
|
190
|
+
who: string;
|
|
191
|
+
free: string;
|
|
192
|
+
};
|
|
193
|
+
Reserved: {
|
|
194
|
+
who: string;
|
|
195
|
+
amount: string;
|
|
196
|
+
};
|
|
197
|
+
Unreserved: {
|
|
198
|
+
who: string;
|
|
199
|
+
amount: string;
|
|
200
|
+
};
|
|
201
|
+
ReserveRepatriated: {
|
|
202
|
+
from: string;
|
|
203
|
+
to: string;
|
|
204
|
+
amount: string;
|
|
205
|
+
destinationStatus: string;
|
|
206
|
+
};
|
|
207
|
+
Deposit: {
|
|
208
|
+
who: string;
|
|
209
|
+
amount: string;
|
|
210
|
+
};
|
|
211
|
+
Withdraw: {
|
|
212
|
+
who: string;
|
|
213
|
+
amount: string;
|
|
214
|
+
};
|
|
215
|
+
Slashed: {
|
|
216
|
+
who: string;
|
|
217
|
+
amount: string;
|
|
218
|
+
};
|
|
219
|
+
Minted: {
|
|
220
|
+
who: string;
|
|
221
|
+
amount: string;
|
|
222
|
+
};
|
|
223
|
+
Burned: {
|
|
224
|
+
who: string;
|
|
225
|
+
amount: string;
|
|
226
|
+
};
|
|
227
|
+
Suspended: {
|
|
228
|
+
who: string;
|
|
229
|
+
amount: string;
|
|
230
|
+
};
|
|
231
|
+
Restored: {
|
|
232
|
+
who: string;
|
|
233
|
+
amount: string;
|
|
234
|
+
};
|
|
235
|
+
Upgraded: {
|
|
236
|
+
who: string;
|
|
237
|
+
};
|
|
238
|
+
Issued: {
|
|
239
|
+
amount: string;
|
|
240
|
+
};
|
|
241
|
+
Rescinded: {
|
|
242
|
+
amount: string;
|
|
243
|
+
};
|
|
244
|
+
Locked: {
|
|
245
|
+
who: string;
|
|
246
|
+
amount: string;
|
|
247
|
+
};
|
|
248
|
+
Unlocked: {
|
|
249
|
+
who: string;
|
|
250
|
+
amount: string;
|
|
251
|
+
};
|
|
252
|
+
Frozen: {
|
|
253
|
+
who: string;
|
|
254
|
+
amount: string;
|
|
255
|
+
};
|
|
256
|
+
Thawed: {
|
|
257
|
+
who: string;
|
|
258
|
+
amount: string;
|
|
259
|
+
};
|
|
260
|
+
TotalIssuanceForced: {
|
|
261
|
+
_alias: {
|
|
262
|
+
new_: string;
|
|
263
|
+
};
|
|
264
|
+
old: string;
|
|
265
|
+
new_: string;
|
|
266
|
+
};
|
|
267
|
+
};
|
|
268
|
+
};
|
|
269
|
+
/**
|
|
270
|
+
* Lookup34: frame_support::traits::tokens::misc::BalanceStatus
|
|
271
|
+
**/
|
|
272
|
+
FrameSupportTokensMiscBalanceStatus: {
|
|
273
|
+
_enum: string[];
|
|
274
|
+
};
|
|
275
|
+
/**
|
|
276
|
+
* Lookup35: pallet_offences::pallet::Event
|
|
277
|
+
**/
|
|
278
|
+
PalletOffencesEvent: {
|
|
279
|
+
_enum: {
|
|
280
|
+
Offence: {
|
|
281
|
+
kind: string;
|
|
282
|
+
timeslot: string;
|
|
283
|
+
};
|
|
284
|
+
};
|
|
285
|
+
};
|
|
286
|
+
/**
|
|
287
|
+
* Lookup37: pallet_session::pallet::Event
|
|
288
|
+
**/
|
|
289
|
+
PalletSessionEvent: {
|
|
290
|
+
_enum: {
|
|
291
|
+
NewSession: {
|
|
292
|
+
sessionIndex: string;
|
|
293
|
+
};
|
|
294
|
+
};
|
|
295
|
+
};
|
|
296
|
+
/**
|
|
297
|
+
* Lookup38: pallet_grandpa::pallet::Event
|
|
298
|
+
**/
|
|
299
|
+
PalletGrandpaEvent: {
|
|
300
|
+
_enum: {
|
|
301
|
+
NewAuthorities: {
|
|
302
|
+
authoritySet: string;
|
|
303
|
+
};
|
|
304
|
+
Paused: string;
|
|
305
|
+
Resumed: string;
|
|
306
|
+
};
|
|
307
|
+
};
|
|
308
|
+
/**
|
|
309
|
+
* Lookup41: sp_consensus_grandpa::app::Public
|
|
310
|
+
**/
|
|
311
|
+
SpConsensusGrandpaAppPublic: string;
|
|
312
|
+
/**
|
|
313
|
+
* Lookup42: pallet_transaction_payment::pallet::Event<T>
|
|
314
|
+
**/
|
|
315
|
+
PalletTransactionPaymentEvent: {
|
|
316
|
+
_enum: {
|
|
317
|
+
TransactionFeePaid: {
|
|
318
|
+
who: string;
|
|
319
|
+
actualFee: string;
|
|
320
|
+
tip: string;
|
|
321
|
+
};
|
|
322
|
+
};
|
|
323
|
+
};
|
|
324
|
+
/**
|
|
325
|
+
* Lookup43: pallet_parameters::pallet::Event<T>
|
|
326
|
+
**/
|
|
327
|
+
PalletParametersEvent: {
|
|
328
|
+
_enum: {
|
|
329
|
+
Updated: {
|
|
330
|
+
key: string;
|
|
331
|
+
oldValue: string;
|
|
332
|
+
newValue: string;
|
|
333
|
+
};
|
|
334
|
+
};
|
|
335
|
+
};
|
|
336
|
+
/**
|
|
337
|
+
* Lookup44: sh_solochain_evm_runtime::configs::runtime_params::RuntimeParametersKey
|
|
338
|
+
**/
|
|
339
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsRuntimeParametersKey: {
|
|
340
|
+
_enum: {
|
|
341
|
+
RuntimeConfig: string;
|
|
342
|
+
};
|
|
343
|
+
};
|
|
344
|
+
/**
|
|
345
|
+
* Lookup45: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::ParametersKey
|
|
346
|
+
**/
|
|
347
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey: {
|
|
348
|
+
_enum: string[];
|
|
349
|
+
};
|
|
350
|
+
/**
|
|
351
|
+
* Lookup46: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::SlashAmountPerMaxFileSize
|
|
352
|
+
**/
|
|
353
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize: string;
|
|
354
|
+
/**
|
|
355
|
+
* Lookup47: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::StakeToChallengePeriod
|
|
356
|
+
**/
|
|
357
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod: string;
|
|
358
|
+
/**
|
|
359
|
+
* Lookup48: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::CheckpointChallengePeriod
|
|
360
|
+
**/
|
|
361
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod: string;
|
|
362
|
+
/**
|
|
363
|
+
* Lookup49: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::MinChallengePeriod
|
|
364
|
+
**/
|
|
365
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod: string;
|
|
366
|
+
/**
|
|
367
|
+
* Lookup50: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::SystemUtilisationLowerThresholdPercentage
|
|
368
|
+
**/
|
|
369
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationLowerThresholdPercentage: string;
|
|
370
|
+
/**
|
|
371
|
+
* Lookup51: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::SystemUtilisationUpperThresholdPercentage
|
|
372
|
+
**/
|
|
373
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationUpperThresholdPercentage: string;
|
|
374
|
+
/**
|
|
375
|
+
* Lookup52: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::MostlyStablePrice
|
|
376
|
+
**/
|
|
377
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice: string;
|
|
378
|
+
/**
|
|
379
|
+
* Lookup53: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::MaxPrice
|
|
380
|
+
**/
|
|
381
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice: string;
|
|
382
|
+
/**
|
|
383
|
+
* Lookup54: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::MinPrice
|
|
384
|
+
**/
|
|
385
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice: string;
|
|
386
|
+
/**
|
|
387
|
+
* Lookup55: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::UpperExponentFactor
|
|
388
|
+
**/
|
|
389
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor: string;
|
|
390
|
+
/**
|
|
391
|
+
* Lookup56: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::LowerExponentFactor
|
|
392
|
+
**/
|
|
393
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor: string;
|
|
394
|
+
/**
|
|
395
|
+
* Lookup57: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::ZeroSizeBucketFixedRate
|
|
396
|
+
**/
|
|
397
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate: string;
|
|
398
|
+
/**
|
|
399
|
+
* Lookup58: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::IdealUtilisationRate
|
|
400
|
+
**/
|
|
401
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate: string;
|
|
402
|
+
/**
|
|
403
|
+
* Lookup59: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::DecayRate
|
|
404
|
+
**/
|
|
405
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate: string;
|
|
406
|
+
/**
|
|
407
|
+
* Lookup60: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::MinimumTreasuryCut
|
|
408
|
+
**/
|
|
409
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinimumTreasuryCut: string;
|
|
410
|
+
/**
|
|
411
|
+
* Lookup61: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::MaximumTreasuryCut
|
|
412
|
+
**/
|
|
413
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaximumTreasuryCut: string;
|
|
414
|
+
/**
|
|
415
|
+
* Lookup62: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::BspStopStoringFilePenalty
|
|
416
|
+
**/
|
|
417
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBspStopStoringFilePenalty: string;
|
|
418
|
+
/**
|
|
419
|
+
* Lookup63: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::ProviderTopUpTtl
|
|
420
|
+
**/
|
|
421
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigProviderTopUpTtl: string;
|
|
422
|
+
/**
|
|
423
|
+
* Lookup64: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::BasicReplicationTarget
|
|
424
|
+
**/
|
|
425
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBasicReplicationTarget: string;
|
|
426
|
+
/**
|
|
427
|
+
* Lookup65: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::StandardReplicationTarget
|
|
428
|
+
**/
|
|
429
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStandardReplicationTarget: string;
|
|
430
|
+
/**
|
|
431
|
+
* Lookup66: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::HighSecurityReplicationTarget
|
|
432
|
+
**/
|
|
433
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigHighSecurityReplicationTarget: string;
|
|
434
|
+
/**
|
|
435
|
+
* Lookup67: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::SuperHighSecurityReplicationTarget
|
|
436
|
+
**/
|
|
437
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSuperHighSecurityReplicationTarget: string;
|
|
438
|
+
/**
|
|
439
|
+
* Lookup68: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::UltraHighSecurityReplicationTarget
|
|
440
|
+
**/
|
|
441
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUltraHighSecurityReplicationTarget: string;
|
|
442
|
+
/**
|
|
443
|
+
* Lookup69: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::MaxReplicationTarget
|
|
444
|
+
**/
|
|
445
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxReplicationTarget: string;
|
|
446
|
+
/**
|
|
447
|
+
* Lookup70: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::TickRangeToMaximumThreshold
|
|
448
|
+
**/
|
|
449
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigTickRangeToMaximumThreshold: string;
|
|
450
|
+
/**
|
|
451
|
+
* Lookup71: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::StorageRequestTtl
|
|
452
|
+
**/
|
|
453
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStorageRequestTtl: string;
|
|
454
|
+
/**
|
|
455
|
+
* Lookup72: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::MinWaitForStopStoring
|
|
456
|
+
**/
|
|
457
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinWaitForStopStoring: string;
|
|
458
|
+
/**
|
|
459
|
+
* Lookup73: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::MinSeedPeriod
|
|
460
|
+
**/
|
|
461
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinSeedPeriod: string;
|
|
462
|
+
/**
|
|
463
|
+
* Lookup74: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::StakeToSeedPeriod
|
|
464
|
+
**/
|
|
465
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToSeedPeriod: string;
|
|
466
|
+
/**
|
|
467
|
+
* Lookup75: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::UpfrontTicksToPay
|
|
468
|
+
**/
|
|
469
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpfrontTicksToPay: string;
|
|
470
|
+
/**
|
|
471
|
+
* Lookup77: sh_solochain_evm_runtime::configs::runtime_params::RuntimeParametersValue
|
|
472
|
+
**/
|
|
473
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsRuntimeParametersValue: {
|
|
474
|
+
_enum: {
|
|
475
|
+
RuntimeConfig: string;
|
|
476
|
+
};
|
|
477
|
+
};
|
|
478
|
+
/**
|
|
479
|
+
* Lookup78: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::ParametersValue
|
|
480
|
+
**/
|
|
481
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue: {
|
|
482
|
+
_enum: {
|
|
483
|
+
SlashAmountPerMaxFileSize: string;
|
|
484
|
+
StakeToChallengePeriod: string;
|
|
485
|
+
CheckpointChallengePeriod: string;
|
|
486
|
+
MinChallengePeriod: string;
|
|
487
|
+
SystemUtilisationLowerThresholdPercentage: string;
|
|
488
|
+
SystemUtilisationUpperThresholdPercentage: string;
|
|
489
|
+
MostlyStablePrice: string;
|
|
490
|
+
MaxPrice: string;
|
|
491
|
+
MinPrice: string;
|
|
492
|
+
UpperExponentFactor: string;
|
|
493
|
+
LowerExponentFactor: string;
|
|
494
|
+
ZeroSizeBucketFixedRate: string;
|
|
495
|
+
IdealUtilisationRate: string;
|
|
496
|
+
DecayRate: string;
|
|
497
|
+
MinimumTreasuryCut: string;
|
|
498
|
+
MaximumTreasuryCut: string;
|
|
499
|
+
BspStopStoringFilePenalty: string;
|
|
500
|
+
ProviderTopUpTtl: string;
|
|
501
|
+
BasicReplicationTarget: string;
|
|
502
|
+
StandardReplicationTarget: string;
|
|
503
|
+
HighSecurityReplicationTarget: string;
|
|
504
|
+
SuperHighSecurityReplicationTarget: string;
|
|
505
|
+
UltraHighSecurityReplicationTarget: string;
|
|
506
|
+
MaxReplicationTarget: string;
|
|
507
|
+
TickRangeToMaximumThreshold: string;
|
|
508
|
+
StorageRequestTtl: string;
|
|
509
|
+
MinWaitForStopStoring: string;
|
|
510
|
+
MinSeedPeriod: string;
|
|
511
|
+
StakeToSeedPeriod: string;
|
|
512
|
+
UpfrontTicksToPay: string;
|
|
513
|
+
};
|
|
514
|
+
};
|
|
515
|
+
/**
|
|
516
|
+
* Lookup80: pallet_sudo::pallet::Event<T>
|
|
517
|
+
**/
|
|
518
|
+
PalletSudoEvent: {
|
|
519
|
+
_enum: {
|
|
520
|
+
Sudid: {
|
|
521
|
+
sudoResult: string;
|
|
522
|
+
};
|
|
523
|
+
KeyChanged: {
|
|
524
|
+
_alias: {
|
|
525
|
+
new_: string;
|
|
526
|
+
};
|
|
527
|
+
old: string;
|
|
528
|
+
new_: string;
|
|
529
|
+
};
|
|
530
|
+
KeyRemoved: string;
|
|
531
|
+
SudoAsDone: {
|
|
532
|
+
sudoResult: string;
|
|
533
|
+
};
|
|
534
|
+
};
|
|
535
|
+
};
|
|
536
|
+
/**
|
|
537
|
+
* Lookup84: pallet_ethereum::pallet::Event
|
|
538
|
+
**/
|
|
539
|
+
PalletEthereumEvent: {
|
|
540
|
+
_enum: {
|
|
541
|
+
Executed: {
|
|
542
|
+
from: string;
|
|
543
|
+
to: string;
|
|
544
|
+
transactionHash: string;
|
|
545
|
+
exitReason: string;
|
|
546
|
+
extraData: string;
|
|
547
|
+
};
|
|
548
|
+
};
|
|
549
|
+
};
|
|
550
|
+
/**
|
|
551
|
+
* Lookup86: evm_core::error::ExitReason
|
|
552
|
+
**/
|
|
553
|
+
EvmCoreErrorExitReason: {
|
|
554
|
+
_enum: {
|
|
555
|
+
Succeed: string;
|
|
556
|
+
Error: string;
|
|
557
|
+
Revert: string;
|
|
558
|
+
Fatal: string;
|
|
559
|
+
};
|
|
560
|
+
};
|
|
561
|
+
/**
|
|
562
|
+
* Lookup87: evm_core::error::ExitSucceed
|
|
563
|
+
**/
|
|
564
|
+
EvmCoreErrorExitSucceed: {
|
|
565
|
+
_enum: string[];
|
|
566
|
+
};
|
|
567
|
+
/**
|
|
568
|
+
* Lookup88: evm_core::error::ExitError
|
|
569
|
+
**/
|
|
570
|
+
EvmCoreErrorExitError: {
|
|
571
|
+
_enum: {
|
|
572
|
+
StackUnderflow: string;
|
|
573
|
+
StackOverflow: string;
|
|
574
|
+
InvalidJump: string;
|
|
575
|
+
InvalidRange: string;
|
|
576
|
+
DesignatedInvalid: string;
|
|
577
|
+
CallTooDeep: string;
|
|
578
|
+
CreateCollision: string;
|
|
579
|
+
CreateContractLimit: string;
|
|
580
|
+
OutOfOffset: string;
|
|
581
|
+
OutOfGas: string;
|
|
582
|
+
OutOfFund: string;
|
|
583
|
+
PCUnderflow: string;
|
|
584
|
+
CreateEmpty: string;
|
|
585
|
+
Other: string;
|
|
586
|
+
MaxNonce: string;
|
|
587
|
+
InvalidCode: string;
|
|
588
|
+
};
|
|
589
|
+
};
|
|
590
|
+
/**
|
|
591
|
+
* Lookup92: evm_core::error::ExitRevert
|
|
592
|
+
**/
|
|
593
|
+
EvmCoreErrorExitRevert: {
|
|
594
|
+
_enum: string[];
|
|
595
|
+
};
|
|
596
|
+
/**
|
|
597
|
+
* Lookup93: evm_core::error::ExitFatal
|
|
598
|
+
**/
|
|
599
|
+
EvmCoreErrorExitFatal: {
|
|
600
|
+
_enum: {
|
|
601
|
+
NotSupported: string;
|
|
602
|
+
UnhandledInterrupt: string;
|
|
603
|
+
CallErrorAsFatal: string;
|
|
604
|
+
Other: string;
|
|
605
|
+
};
|
|
606
|
+
};
|
|
607
|
+
/**
|
|
608
|
+
* Lookup94: pallet_evm::pallet::Event<T>
|
|
609
|
+
**/
|
|
610
|
+
PalletEvmEvent: {
|
|
611
|
+
_enum: {
|
|
612
|
+
Log: {
|
|
613
|
+
log: string;
|
|
614
|
+
};
|
|
615
|
+
Created: {
|
|
616
|
+
address: string;
|
|
617
|
+
};
|
|
618
|
+
CreatedFailed: {
|
|
619
|
+
address: string;
|
|
620
|
+
};
|
|
621
|
+
Executed: {
|
|
622
|
+
address: string;
|
|
623
|
+
};
|
|
624
|
+
ExecutedFailed: {
|
|
625
|
+
address: string;
|
|
626
|
+
};
|
|
627
|
+
};
|
|
628
|
+
};
|
|
629
|
+
/**
|
|
630
|
+
* Lookup95: ethereum::log::Log
|
|
631
|
+
**/
|
|
632
|
+
EthereumLog: {
|
|
633
|
+
address: string;
|
|
634
|
+
topics: string;
|
|
635
|
+
data: string;
|
|
636
|
+
};
|
|
637
|
+
/**
|
|
638
|
+
* Lookup97: pallet_storage_providers::pallet::Event<T>
|
|
639
|
+
**/
|
|
640
|
+
PalletStorageProvidersEvent: {
|
|
641
|
+
_enum: {
|
|
642
|
+
MspRequestSignUpSuccess: {
|
|
643
|
+
who: string;
|
|
644
|
+
multiaddresses: string;
|
|
645
|
+
capacity: string;
|
|
646
|
+
};
|
|
647
|
+
MspSignUpSuccess: {
|
|
648
|
+
who: string;
|
|
649
|
+
mspId: string;
|
|
650
|
+
multiaddresses: string;
|
|
651
|
+
capacity: string;
|
|
652
|
+
valueProp: string;
|
|
653
|
+
};
|
|
654
|
+
BspRequestSignUpSuccess: {
|
|
655
|
+
who: string;
|
|
656
|
+
multiaddresses: string;
|
|
657
|
+
capacity: string;
|
|
658
|
+
};
|
|
659
|
+
BspSignUpSuccess: {
|
|
660
|
+
who: string;
|
|
661
|
+
bspId: string;
|
|
662
|
+
root: string;
|
|
663
|
+
multiaddresses: string;
|
|
664
|
+
capacity: string;
|
|
665
|
+
};
|
|
666
|
+
SignUpRequestCanceled: {
|
|
667
|
+
who: string;
|
|
668
|
+
};
|
|
669
|
+
MspSignOffSuccess: {
|
|
670
|
+
who: string;
|
|
671
|
+
mspId: string;
|
|
672
|
+
};
|
|
673
|
+
BspSignOffSuccess: {
|
|
674
|
+
who: string;
|
|
675
|
+
bspId: string;
|
|
676
|
+
};
|
|
677
|
+
CapacityChanged: {
|
|
678
|
+
who: string;
|
|
679
|
+
providerId: string;
|
|
680
|
+
oldCapacity: string;
|
|
681
|
+
newCapacity: string;
|
|
682
|
+
nextBlockWhenChangeAllowed: string;
|
|
683
|
+
};
|
|
684
|
+
Slashed: {
|
|
685
|
+
providerId: string;
|
|
686
|
+
amount: string;
|
|
687
|
+
};
|
|
688
|
+
AwaitingTopUp: {
|
|
689
|
+
providerId: string;
|
|
690
|
+
topUpMetadata: string;
|
|
691
|
+
};
|
|
692
|
+
TopUpFulfilled: {
|
|
693
|
+
providerId: string;
|
|
694
|
+
amount: string;
|
|
695
|
+
};
|
|
696
|
+
FailedToGetOwnerAccountOfInsolventProvider: {
|
|
697
|
+
providerId: string;
|
|
698
|
+
};
|
|
699
|
+
FailedToSlashInsolventProvider: {
|
|
700
|
+
providerId: string;
|
|
701
|
+
amountToSlash: string;
|
|
702
|
+
error: string;
|
|
703
|
+
};
|
|
704
|
+
FailedToStopAllCyclesForInsolventBsp: {
|
|
705
|
+
providerId: string;
|
|
706
|
+
error: string;
|
|
707
|
+
};
|
|
708
|
+
FailedToInsertProviderTopUpExpiration: {
|
|
709
|
+
providerId: string;
|
|
710
|
+
expirationTick: string;
|
|
711
|
+
};
|
|
712
|
+
ProviderInsolvent: {
|
|
713
|
+
providerId: string;
|
|
714
|
+
};
|
|
715
|
+
BucketsOfInsolventMsp: {
|
|
716
|
+
mspId: string;
|
|
717
|
+
buckets: string;
|
|
718
|
+
};
|
|
719
|
+
BucketRootChanged: {
|
|
720
|
+
bucketId: string;
|
|
721
|
+
oldRoot: string;
|
|
722
|
+
newRoot: string;
|
|
723
|
+
};
|
|
724
|
+
MultiAddressAdded: {
|
|
725
|
+
providerId: string;
|
|
726
|
+
newMultiaddress: string;
|
|
727
|
+
};
|
|
728
|
+
MultiAddressRemoved: {
|
|
729
|
+
providerId: string;
|
|
730
|
+
removedMultiaddress: string;
|
|
731
|
+
};
|
|
732
|
+
ValuePropAdded: {
|
|
733
|
+
mspId: string;
|
|
734
|
+
valuePropId: string;
|
|
735
|
+
valueProp: string;
|
|
736
|
+
};
|
|
737
|
+
ValuePropUnavailable: {
|
|
738
|
+
mspId: string;
|
|
739
|
+
valuePropId: string;
|
|
740
|
+
};
|
|
741
|
+
MspDeleted: {
|
|
742
|
+
providerId: string;
|
|
743
|
+
};
|
|
744
|
+
BspDeleted: {
|
|
745
|
+
providerId: string;
|
|
746
|
+
};
|
|
747
|
+
};
|
|
748
|
+
};
|
|
749
|
+
/**
|
|
750
|
+
* Lookup101: pallet_storage_providers::types::ValuePropositionWithId<T>
|
|
751
|
+
**/
|
|
752
|
+
PalletStorageProvidersValuePropositionWithId: {
|
|
753
|
+
id: string;
|
|
754
|
+
valueProp: string;
|
|
755
|
+
};
|
|
756
|
+
/**
|
|
757
|
+
* Lookup102: pallet_storage_providers::types::ValueProposition<T>
|
|
758
|
+
**/
|
|
759
|
+
PalletStorageProvidersValueProposition: {
|
|
760
|
+
pricePerGigaUnitOfDataPerBlock: string;
|
|
761
|
+
commitment: string;
|
|
762
|
+
bucketDataLimit: string;
|
|
763
|
+
available: string;
|
|
764
|
+
};
|
|
765
|
+
/**
|
|
766
|
+
* Lookup104: pallet_storage_providers::types::StorageProviderId<T>
|
|
767
|
+
**/
|
|
768
|
+
PalletStorageProvidersStorageProviderId: {
|
|
769
|
+
_enum: {
|
|
770
|
+
BackupStorageProvider: string;
|
|
771
|
+
MainStorageProvider: string;
|
|
772
|
+
};
|
|
773
|
+
};
|
|
774
|
+
/**
|
|
775
|
+
* Lookup105: pallet_storage_providers::types::TopUpMetadata<T>
|
|
776
|
+
**/
|
|
777
|
+
PalletStorageProvidersTopUpMetadata: {
|
|
778
|
+
startedAt: string;
|
|
779
|
+
endTickGracePeriod: string;
|
|
780
|
+
};
|
|
781
|
+
/**
|
|
782
|
+
* Lookup106: pallet_file_system::pallet::Event<T>
|
|
783
|
+
**/
|
|
784
|
+
PalletFileSystemEvent: {
|
|
785
|
+
_enum: {
|
|
786
|
+
NewBucket: {
|
|
787
|
+
who: string;
|
|
788
|
+
mspId: string;
|
|
789
|
+
bucketId: string;
|
|
790
|
+
name: string;
|
|
791
|
+
root: string;
|
|
792
|
+
collectionId: string;
|
|
793
|
+
private: string;
|
|
794
|
+
valuePropId: string;
|
|
795
|
+
};
|
|
796
|
+
BucketDeleted: {
|
|
797
|
+
who: string;
|
|
798
|
+
bucketId: string;
|
|
799
|
+
maybeCollectionId: string;
|
|
800
|
+
};
|
|
801
|
+
MoveBucketRequested: {
|
|
802
|
+
who: string;
|
|
803
|
+
bucketId: string;
|
|
804
|
+
newMspId: string;
|
|
805
|
+
newValuePropId: string;
|
|
806
|
+
};
|
|
807
|
+
BucketPrivacyUpdated: {
|
|
808
|
+
who: string;
|
|
809
|
+
bucketId: string;
|
|
810
|
+
collectionId: string;
|
|
811
|
+
private: string;
|
|
812
|
+
};
|
|
813
|
+
NewCollectionAndAssociation: {
|
|
814
|
+
who: string;
|
|
815
|
+
bucketId: string;
|
|
816
|
+
collectionId: string;
|
|
817
|
+
};
|
|
818
|
+
NewStorageRequest: {
|
|
819
|
+
_alias: {
|
|
820
|
+
size_: string;
|
|
821
|
+
};
|
|
822
|
+
who: string;
|
|
823
|
+
fileKey: string;
|
|
824
|
+
bucketId: string;
|
|
825
|
+
location: string;
|
|
826
|
+
fingerprint: string;
|
|
827
|
+
size_: string;
|
|
828
|
+
peerIds: string;
|
|
829
|
+
expiresAt: string;
|
|
830
|
+
};
|
|
831
|
+
MspAcceptedStorageRequest: {
|
|
832
|
+
fileKey: string;
|
|
833
|
+
fileMetadata: string;
|
|
834
|
+
};
|
|
835
|
+
AcceptedBspVolunteer: {
|
|
836
|
+
_alias: {
|
|
837
|
+
size_: string;
|
|
838
|
+
};
|
|
839
|
+
bspId: string;
|
|
840
|
+
bucketId: string;
|
|
841
|
+
location: string;
|
|
842
|
+
fingerprint: string;
|
|
843
|
+
multiaddresses: string;
|
|
844
|
+
owner: string;
|
|
845
|
+
size_: string;
|
|
846
|
+
};
|
|
847
|
+
BspConfirmedStoring: {
|
|
848
|
+
who: string;
|
|
849
|
+
bspId: string;
|
|
850
|
+
confirmedFileKeys: string;
|
|
851
|
+
skippedFileKeys: string;
|
|
852
|
+
newRoot: string;
|
|
853
|
+
};
|
|
854
|
+
StorageRequestFulfilled: {
|
|
855
|
+
fileKey: string;
|
|
856
|
+
};
|
|
857
|
+
StorageRequestExpired: {
|
|
858
|
+
fileKey: string;
|
|
859
|
+
};
|
|
860
|
+
StorageRequestRevoked: {
|
|
861
|
+
fileKey: string;
|
|
862
|
+
};
|
|
863
|
+
StorageRequestRejected: {
|
|
864
|
+
fileKey: string;
|
|
865
|
+
reason: string;
|
|
866
|
+
};
|
|
867
|
+
BspRequestedToStopStoring: {
|
|
868
|
+
bspId: string;
|
|
869
|
+
fileKey: string;
|
|
870
|
+
owner: string;
|
|
871
|
+
location: string;
|
|
872
|
+
};
|
|
873
|
+
BspConfirmStoppedStoring: {
|
|
874
|
+
bspId: string;
|
|
875
|
+
fileKey: string;
|
|
876
|
+
newRoot: string;
|
|
877
|
+
};
|
|
878
|
+
PriorityChallengeForFileDeletionQueued: {
|
|
879
|
+
issuer: string;
|
|
880
|
+
fileKey: string;
|
|
881
|
+
};
|
|
882
|
+
SpStopStoringInsolventUser: {
|
|
883
|
+
spId: string;
|
|
884
|
+
fileKey: string;
|
|
885
|
+
owner: string;
|
|
886
|
+
location: string;
|
|
887
|
+
newRoot: string;
|
|
888
|
+
};
|
|
889
|
+
MspStopStoringBucketInsolventUser: {
|
|
890
|
+
mspId: string;
|
|
891
|
+
owner: string;
|
|
892
|
+
bucketId: string;
|
|
893
|
+
};
|
|
894
|
+
FailedToQueuePriorityChallenge: {
|
|
895
|
+
fileKey: string;
|
|
896
|
+
error: string;
|
|
897
|
+
};
|
|
898
|
+
FileDeletionRequest: {
|
|
899
|
+
user: string;
|
|
900
|
+
fileKey: string;
|
|
901
|
+
fileSize: string;
|
|
902
|
+
bucketId: string;
|
|
903
|
+
mspId: string;
|
|
904
|
+
proofOfInclusion: string;
|
|
905
|
+
};
|
|
906
|
+
ProofSubmittedForPendingFileDeletionRequest: {
|
|
907
|
+
user: string;
|
|
908
|
+
fileKey: string;
|
|
909
|
+
fileSize: string;
|
|
910
|
+
bucketId: string;
|
|
911
|
+
mspId: string;
|
|
912
|
+
proofOfInclusion: string;
|
|
913
|
+
};
|
|
914
|
+
BspChallengeCycleInitialised: {
|
|
915
|
+
who: string;
|
|
916
|
+
bspId: string;
|
|
917
|
+
};
|
|
918
|
+
MoveBucketRequestExpired: {
|
|
919
|
+
bucketId: string;
|
|
920
|
+
};
|
|
921
|
+
MoveBucketAccepted: {
|
|
922
|
+
bucketId: string;
|
|
923
|
+
oldMspId: string;
|
|
924
|
+
newMspId: string;
|
|
925
|
+
valuePropId: string;
|
|
926
|
+
};
|
|
927
|
+
MoveBucketRejected: {
|
|
928
|
+
bucketId: string;
|
|
929
|
+
oldMspId: string;
|
|
930
|
+
newMspId: string;
|
|
931
|
+
};
|
|
932
|
+
MspStoppedStoringBucket: {
|
|
933
|
+
mspId: string;
|
|
934
|
+
owner: string;
|
|
935
|
+
bucketId: string;
|
|
936
|
+
};
|
|
937
|
+
FailedToGetMspOfBucket: {
|
|
938
|
+
bucketId: string;
|
|
939
|
+
error: string;
|
|
940
|
+
};
|
|
941
|
+
FailedToDecreaseMspUsedCapacity: {
|
|
942
|
+
user: string;
|
|
943
|
+
mspId: string;
|
|
944
|
+
fileKey: string;
|
|
945
|
+
fileSize: string;
|
|
946
|
+
error: string;
|
|
947
|
+
};
|
|
948
|
+
UsedCapacityShouldBeZero: {
|
|
949
|
+
actualUsedCapacity: string;
|
|
950
|
+
};
|
|
951
|
+
FailedToReleaseStorageRequestCreationDeposit: {
|
|
952
|
+
fileKey: string;
|
|
953
|
+
owner: string;
|
|
954
|
+
amountToReturn: string;
|
|
955
|
+
error: string;
|
|
956
|
+
};
|
|
957
|
+
FailedToTransferDepositFundsToBsp: {
|
|
958
|
+
fileKey: string;
|
|
959
|
+
owner: string;
|
|
960
|
+
bspId: string;
|
|
961
|
+
amountToTransfer: string;
|
|
962
|
+
error: string;
|
|
963
|
+
};
|
|
964
|
+
FileDeletionRequested: {
|
|
965
|
+
signedDeleteIntention: string;
|
|
966
|
+
signature: string;
|
|
967
|
+
};
|
|
968
|
+
BucketFileDeletionCompleted: {
|
|
969
|
+
user: string;
|
|
970
|
+
fileKey: string;
|
|
971
|
+
fileSize: string;
|
|
972
|
+
bucketId: string;
|
|
973
|
+
mspId: string;
|
|
974
|
+
oldRoot: string;
|
|
975
|
+
newRoot: string;
|
|
976
|
+
};
|
|
977
|
+
BspFileDeletionCompleted: {
|
|
978
|
+
user: string;
|
|
979
|
+
fileKey: string;
|
|
980
|
+
fileSize: string;
|
|
981
|
+
bspId: string;
|
|
982
|
+
oldRoot: string;
|
|
983
|
+
newRoot: string;
|
|
984
|
+
};
|
|
985
|
+
FileDeletedFromIncompleteStorageRequest: {
|
|
986
|
+
fileKey: string;
|
|
987
|
+
bspId: string;
|
|
988
|
+
};
|
|
989
|
+
IncompleteStorageRequest: {
|
|
990
|
+
fileKey: string;
|
|
991
|
+
};
|
|
992
|
+
};
|
|
993
|
+
};
|
|
994
|
+
/**
|
|
995
|
+
* Lookup109: shp_file_metadata::FileMetadata
|
|
996
|
+
**/
|
|
997
|
+
ShpFileMetadataFileMetadata: {
|
|
998
|
+
owner: string;
|
|
999
|
+
bucketId: string;
|
|
1000
|
+
location: string;
|
|
1001
|
+
fileSize: string;
|
|
1002
|
+
fingerprint: string;
|
|
1003
|
+
};
|
|
1004
|
+
/**
|
|
1005
|
+
* Lookup110: shp_file_metadata::Fingerprint
|
|
1006
|
+
**/
|
|
1007
|
+
ShpFileMetadataFingerprint: string;
|
|
1008
|
+
/**
|
|
1009
|
+
* Lookup115: pallet_file_system::types::RejectedStorageRequestReason
|
|
1010
|
+
**/
|
|
1011
|
+
PalletFileSystemRejectedStorageRequestReason: {
|
|
1012
|
+
_enum: string[];
|
|
1013
|
+
};
|
|
1014
|
+
/**
|
|
1015
|
+
* Lookup116: pallet_file_system::types::EitherAccountIdOrMspId<T>
|
|
1016
|
+
**/
|
|
1017
|
+
PalletFileSystemEitherAccountIdOrMspId: {
|
|
1018
|
+
_enum: {
|
|
1019
|
+
AccountId: string;
|
|
1020
|
+
MspId: string;
|
|
1021
|
+
};
|
|
1022
|
+
};
|
|
1023
|
+
/**
|
|
1024
|
+
* Lookup118: pallet_file_system::types::FileOperationIntention<T>
|
|
1025
|
+
**/
|
|
1026
|
+
PalletFileSystemFileOperationIntention: {
|
|
1027
|
+
fileKey: string;
|
|
1028
|
+
operation: string;
|
|
1029
|
+
};
|
|
1030
|
+
/**
|
|
1031
|
+
* Lookup119: pallet_file_system::types::FileOperation
|
|
1032
|
+
**/
|
|
1033
|
+
PalletFileSystemFileOperation: {
|
|
1034
|
+
_enum: string[];
|
|
1035
|
+
};
|
|
1036
|
+
/**
|
|
1037
|
+
* Lookup120: fp_account::EthereumSignature
|
|
1038
|
+
**/
|
|
1039
|
+
FpAccountEthereumSignature: string;
|
|
1040
|
+
/**
|
|
1041
|
+
* Lookup122: pallet_proofs_dealer::pallet::Event<T>
|
|
1042
|
+
**/
|
|
1043
|
+
PalletProofsDealerEvent: {
|
|
1044
|
+
_enum: {
|
|
1045
|
+
NewChallenge: {
|
|
1046
|
+
who: string;
|
|
1047
|
+
keyChallenged: string;
|
|
1048
|
+
};
|
|
1049
|
+
NewPriorityChallenge: {
|
|
1050
|
+
who: string;
|
|
1051
|
+
keyChallenged: string;
|
|
1052
|
+
shouldRemoveKey: string;
|
|
1053
|
+
};
|
|
1054
|
+
ProofAccepted: {
|
|
1055
|
+
providerId: string;
|
|
1056
|
+
proof: string;
|
|
1057
|
+
lastTickProven: string;
|
|
1058
|
+
};
|
|
1059
|
+
NewChallengeSeed: {
|
|
1060
|
+
challengesTicker: string;
|
|
1061
|
+
seed: string;
|
|
1062
|
+
};
|
|
1063
|
+
NewCheckpointChallenge: {
|
|
1064
|
+
challengesTicker: string;
|
|
1065
|
+
challenges: string;
|
|
1066
|
+
};
|
|
1067
|
+
SlashableProvider: {
|
|
1068
|
+
provider: string;
|
|
1069
|
+
nextChallengeDeadline: string;
|
|
1070
|
+
};
|
|
1071
|
+
NoRecordOfLastSubmittedProof: {
|
|
1072
|
+
provider: string;
|
|
1073
|
+
};
|
|
1074
|
+
NewChallengeCycleInitialised: {
|
|
1075
|
+
currentTick: string;
|
|
1076
|
+
nextChallengeDeadline: string;
|
|
1077
|
+
provider: string;
|
|
1078
|
+
maybeProviderAccount: string;
|
|
1079
|
+
};
|
|
1080
|
+
MutationsAppliedForProvider: {
|
|
1081
|
+
providerId: string;
|
|
1082
|
+
mutations: string;
|
|
1083
|
+
oldRoot: string;
|
|
1084
|
+
newRoot: string;
|
|
1085
|
+
};
|
|
1086
|
+
MutationsApplied: {
|
|
1087
|
+
mutations: string;
|
|
1088
|
+
oldRoot: string;
|
|
1089
|
+
newRoot: string;
|
|
1090
|
+
eventInfo: string;
|
|
1091
|
+
};
|
|
1092
|
+
ChallengesTickerSet: {
|
|
1093
|
+
paused: string;
|
|
1094
|
+
};
|
|
1095
|
+
};
|
|
1096
|
+
};
|
|
1097
|
+
/**
|
|
1098
|
+
* Lookup123: pallet_proofs_dealer::types::Proof<T>
|
|
1099
|
+
**/
|
|
1100
|
+
PalletProofsDealerProof: {
|
|
1101
|
+
forestProof: string;
|
|
1102
|
+
keyProofs: string;
|
|
1103
|
+
};
|
|
1104
|
+
/**
|
|
1105
|
+
* Lookup124: sp_trie::storage_proof::CompactProof
|
|
1106
|
+
**/
|
|
1107
|
+
SpTrieStorageProofCompactProof: {
|
|
1108
|
+
encodedNodes: string;
|
|
1109
|
+
};
|
|
1110
|
+
/**
|
|
1111
|
+
* Lookup127: pallet_proofs_dealer::types::KeyProof<T>
|
|
1112
|
+
**/
|
|
1113
|
+
PalletProofsDealerKeyProof: {
|
|
1114
|
+
proof: string;
|
|
1115
|
+
challengeCount: string;
|
|
1116
|
+
};
|
|
1117
|
+
/**
|
|
1118
|
+
* Lookup128: shp_file_key_verifier::types::FileKeyProof
|
|
1119
|
+
**/
|
|
1120
|
+
ShpFileKeyVerifierFileKeyProof: {
|
|
1121
|
+
fileMetadata: string;
|
|
1122
|
+
proof: string;
|
|
1123
|
+
};
|
|
1124
|
+
/**
|
|
1125
|
+
* Lookup132: pallet_proofs_dealer::types::CustomChallenge<T>
|
|
1126
|
+
**/
|
|
1127
|
+
PalletProofsDealerCustomChallenge: {
|
|
1128
|
+
key: string;
|
|
1129
|
+
shouldRemoveKey: string;
|
|
1130
|
+
};
|
|
1131
|
+
/**
|
|
1132
|
+
* Lookup136: shp_traits::TrieMutation
|
|
1133
|
+
**/
|
|
1134
|
+
ShpTraitsTrieMutation: {
|
|
1135
|
+
_enum: {
|
|
1136
|
+
Add: string;
|
|
1137
|
+
Remove: string;
|
|
1138
|
+
};
|
|
1139
|
+
};
|
|
1140
|
+
/**
|
|
1141
|
+
* Lookup137: shp_traits::TrieAddMutation
|
|
1142
|
+
**/
|
|
1143
|
+
ShpTraitsTrieAddMutation: {
|
|
1144
|
+
value: string;
|
|
1145
|
+
};
|
|
1146
|
+
/**
|
|
1147
|
+
* Lookup138: shp_traits::TrieRemoveMutation
|
|
1148
|
+
**/
|
|
1149
|
+
ShpTraitsTrieRemoveMutation: {
|
|
1150
|
+
maybeValue: string;
|
|
1151
|
+
};
|
|
1152
|
+
/**
|
|
1153
|
+
* Lookup140: pallet_randomness::pallet::Event<T>
|
|
1154
|
+
**/
|
|
1155
|
+
PalletRandomnessEvent: {
|
|
1156
|
+
_enum: {
|
|
1157
|
+
NewOneEpochAgoRandomnessAvailable: {
|
|
1158
|
+
randomnessSeed: string;
|
|
1159
|
+
fromEpoch: string;
|
|
1160
|
+
validUntilBlock: string;
|
|
1161
|
+
};
|
|
1162
|
+
};
|
|
1163
|
+
};
|
|
1164
|
+
/**
|
|
1165
|
+
* Lookup141: pallet_payment_streams::pallet::Event<T>
|
|
1166
|
+
**/
|
|
1167
|
+
PalletPaymentStreamsEvent: {
|
|
1168
|
+
_enum: {
|
|
1169
|
+
FixedRatePaymentStreamCreated: {
|
|
1170
|
+
userAccount: string;
|
|
1171
|
+
providerId: string;
|
|
1172
|
+
rate: string;
|
|
1173
|
+
};
|
|
1174
|
+
FixedRatePaymentStreamUpdated: {
|
|
1175
|
+
userAccount: string;
|
|
1176
|
+
providerId: string;
|
|
1177
|
+
newRate: string;
|
|
1178
|
+
};
|
|
1179
|
+
FixedRatePaymentStreamDeleted: {
|
|
1180
|
+
userAccount: string;
|
|
1181
|
+
providerId: string;
|
|
1182
|
+
};
|
|
1183
|
+
DynamicRatePaymentStreamCreated: {
|
|
1184
|
+
userAccount: string;
|
|
1185
|
+
providerId: string;
|
|
1186
|
+
amountProvided: string;
|
|
1187
|
+
};
|
|
1188
|
+
DynamicRatePaymentStreamUpdated: {
|
|
1189
|
+
userAccount: string;
|
|
1190
|
+
providerId: string;
|
|
1191
|
+
newAmountProvided: string;
|
|
1192
|
+
};
|
|
1193
|
+
DynamicRatePaymentStreamDeleted: {
|
|
1194
|
+
userAccount: string;
|
|
1195
|
+
providerId: string;
|
|
1196
|
+
};
|
|
1197
|
+
PaymentStreamCharged: {
|
|
1198
|
+
userAccount: string;
|
|
1199
|
+
providerId: string;
|
|
1200
|
+
amount: string;
|
|
1201
|
+
lastTickCharged: string;
|
|
1202
|
+
chargedAtTick: string;
|
|
1203
|
+
};
|
|
1204
|
+
UsersCharged: {
|
|
1205
|
+
userAccounts: string;
|
|
1206
|
+
providerId: string;
|
|
1207
|
+
chargedAtTick: string;
|
|
1208
|
+
};
|
|
1209
|
+
LastChargeableInfoUpdated: {
|
|
1210
|
+
providerId: string;
|
|
1211
|
+
lastChargeableTick: string;
|
|
1212
|
+
lastChargeablePriceIndex: string;
|
|
1213
|
+
};
|
|
1214
|
+
UserWithoutFunds: {
|
|
1215
|
+
who: string;
|
|
1216
|
+
};
|
|
1217
|
+
UserPaidAllDebts: {
|
|
1218
|
+
who: string;
|
|
1219
|
+
};
|
|
1220
|
+
UserPaidSomeDebts: {
|
|
1221
|
+
who: string;
|
|
1222
|
+
};
|
|
1223
|
+
UserSolvent: {
|
|
1224
|
+
who: string;
|
|
1225
|
+
};
|
|
1226
|
+
InconsistentTickProcessing: {
|
|
1227
|
+
lastProcessedTick: string;
|
|
1228
|
+
tickToProcess: string;
|
|
1229
|
+
};
|
|
1230
|
+
};
|
|
1231
|
+
};
|
|
1232
|
+
/**
|
|
1233
|
+
* Lookup144: pallet_bucket_nfts::pallet::Event<T>
|
|
1234
|
+
**/
|
|
1235
|
+
PalletBucketNftsEvent: {
|
|
1236
|
+
_enum: {
|
|
1237
|
+
AccessShared: {
|
|
1238
|
+
issuer: string;
|
|
1239
|
+
recipient: string;
|
|
1240
|
+
};
|
|
1241
|
+
ItemReadAccessUpdated: {
|
|
1242
|
+
admin: string;
|
|
1243
|
+
bucket: string;
|
|
1244
|
+
itemId: string;
|
|
1245
|
+
};
|
|
1246
|
+
ItemBurned: {
|
|
1247
|
+
account: string;
|
|
1248
|
+
bucket: string;
|
|
1249
|
+
itemId: string;
|
|
1250
|
+
};
|
|
1251
|
+
};
|
|
1252
|
+
};
|
|
1253
|
+
/**
|
|
1254
|
+
* Lookup145: pallet_nfts::pallet::Event<T, I>
|
|
1255
|
+
**/
|
|
1256
|
+
PalletNftsEvent: {
|
|
1257
|
+
_enum: {
|
|
1258
|
+
Created: {
|
|
1259
|
+
collection: string;
|
|
1260
|
+
creator: string;
|
|
1261
|
+
owner: string;
|
|
1262
|
+
};
|
|
1263
|
+
ForceCreated: {
|
|
1264
|
+
collection: string;
|
|
1265
|
+
owner: string;
|
|
1266
|
+
};
|
|
1267
|
+
Destroyed: {
|
|
1268
|
+
collection: string;
|
|
1269
|
+
};
|
|
1270
|
+
Issued: {
|
|
1271
|
+
collection: string;
|
|
1272
|
+
item: string;
|
|
1273
|
+
owner: string;
|
|
1274
|
+
};
|
|
1275
|
+
Transferred: {
|
|
1276
|
+
collection: string;
|
|
1277
|
+
item: string;
|
|
1278
|
+
from: string;
|
|
1279
|
+
to: string;
|
|
1280
|
+
};
|
|
1281
|
+
Burned: {
|
|
1282
|
+
collection: string;
|
|
1283
|
+
item: string;
|
|
1284
|
+
owner: string;
|
|
1285
|
+
};
|
|
1286
|
+
ItemTransferLocked: {
|
|
1287
|
+
collection: string;
|
|
1288
|
+
item: string;
|
|
1289
|
+
};
|
|
1290
|
+
ItemTransferUnlocked: {
|
|
1291
|
+
collection: string;
|
|
1292
|
+
item: string;
|
|
1293
|
+
};
|
|
1294
|
+
ItemPropertiesLocked: {
|
|
1295
|
+
collection: string;
|
|
1296
|
+
item: string;
|
|
1297
|
+
lockMetadata: string;
|
|
1298
|
+
lockAttributes: string;
|
|
1299
|
+
};
|
|
1300
|
+
CollectionLocked: {
|
|
1301
|
+
collection: string;
|
|
1302
|
+
};
|
|
1303
|
+
OwnerChanged: {
|
|
1304
|
+
collection: string;
|
|
1305
|
+
newOwner: string;
|
|
1306
|
+
};
|
|
1307
|
+
TeamChanged: {
|
|
1308
|
+
collection: string;
|
|
1309
|
+
issuer: string;
|
|
1310
|
+
admin: string;
|
|
1311
|
+
freezer: string;
|
|
1312
|
+
};
|
|
1313
|
+
TransferApproved: {
|
|
1314
|
+
collection: string;
|
|
1315
|
+
item: string;
|
|
1316
|
+
owner: string;
|
|
1317
|
+
delegate: string;
|
|
1318
|
+
deadline: string;
|
|
1319
|
+
};
|
|
1320
|
+
ApprovalCancelled: {
|
|
1321
|
+
collection: string;
|
|
1322
|
+
item: string;
|
|
1323
|
+
owner: string;
|
|
1324
|
+
delegate: string;
|
|
1325
|
+
};
|
|
1326
|
+
AllApprovalsCancelled: {
|
|
1327
|
+
collection: string;
|
|
1328
|
+
item: string;
|
|
1329
|
+
owner: string;
|
|
1330
|
+
};
|
|
1331
|
+
CollectionConfigChanged: {
|
|
1332
|
+
collection: string;
|
|
1333
|
+
};
|
|
1334
|
+
CollectionMetadataSet: {
|
|
1335
|
+
collection: string;
|
|
1336
|
+
data: string;
|
|
1337
|
+
};
|
|
1338
|
+
CollectionMetadataCleared: {
|
|
1339
|
+
collection: string;
|
|
1340
|
+
};
|
|
1341
|
+
ItemMetadataSet: {
|
|
1342
|
+
collection: string;
|
|
1343
|
+
item: string;
|
|
1344
|
+
data: string;
|
|
1345
|
+
};
|
|
1346
|
+
ItemMetadataCleared: {
|
|
1347
|
+
collection: string;
|
|
1348
|
+
item: string;
|
|
1349
|
+
};
|
|
1350
|
+
Redeposited: {
|
|
1351
|
+
collection: string;
|
|
1352
|
+
successfulItems: string;
|
|
1353
|
+
};
|
|
1354
|
+
AttributeSet: {
|
|
1355
|
+
collection: string;
|
|
1356
|
+
maybeItem: string;
|
|
1357
|
+
key: string;
|
|
1358
|
+
value: string;
|
|
1359
|
+
namespace: string;
|
|
1360
|
+
};
|
|
1361
|
+
AttributeCleared: {
|
|
1362
|
+
collection: string;
|
|
1363
|
+
maybeItem: string;
|
|
1364
|
+
key: string;
|
|
1365
|
+
namespace: string;
|
|
1366
|
+
};
|
|
1367
|
+
ItemAttributesApprovalAdded: {
|
|
1368
|
+
collection: string;
|
|
1369
|
+
item: string;
|
|
1370
|
+
delegate: string;
|
|
1371
|
+
};
|
|
1372
|
+
ItemAttributesApprovalRemoved: {
|
|
1373
|
+
collection: string;
|
|
1374
|
+
item: string;
|
|
1375
|
+
delegate: string;
|
|
1376
|
+
};
|
|
1377
|
+
OwnershipAcceptanceChanged: {
|
|
1378
|
+
who: string;
|
|
1379
|
+
maybeCollection: string;
|
|
1380
|
+
};
|
|
1381
|
+
CollectionMaxSupplySet: {
|
|
1382
|
+
collection: string;
|
|
1383
|
+
maxSupply: string;
|
|
1384
|
+
};
|
|
1385
|
+
CollectionMintSettingsUpdated: {
|
|
1386
|
+
collection: string;
|
|
1387
|
+
};
|
|
1388
|
+
NextCollectionIdIncremented: {
|
|
1389
|
+
nextId: string;
|
|
1390
|
+
};
|
|
1391
|
+
ItemPriceSet: {
|
|
1392
|
+
collection: string;
|
|
1393
|
+
item: string;
|
|
1394
|
+
price: string;
|
|
1395
|
+
whitelistedBuyer: string;
|
|
1396
|
+
};
|
|
1397
|
+
ItemPriceRemoved: {
|
|
1398
|
+
collection: string;
|
|
1399
|
+
item: string;
|
|
1400
|
+
};
|
|
1401
|
+
ItemBought: {
|
|
1402
|
+
collection: string;
|
|
1403
|
+
item: string;
|
|
1404
|
+
price: string;
|
|
1405
|
+
seller: string;
|
|
1406
|
+
buyer: string;
|
|
1407
|
+
};
|
|
1408
|
+
TipSent: {
|
|
1409
|
+
collection: string;
|
|
1410
|
+
item: string;
|
|
1411
|
+
sender: string;
|
|
1412
|
+
receiver: string;
|
|
1413
|
+
amount: string;
|
|
1414
|
+
};
|
|
1415
|
+
SwapCreated: {
|
|
1416
|
+
offeredCollection: string;
|
|
1417
|
+
offeredItem: string;
|
|
1418
|
+
desiredCollection: string;
|
|
1419
|
+
desiredItem: string;
|
|
1420
|
+
price: string;
|
|
1421
|
+
deadline: string;
|
|
1422
|
+
};
|
|
1423
|
+
SwapCancelled: {
|
|
1424
|
+
offeredCollection: string;
|
|
1425
|
+
offeredItem: string;
|
|
1426
|
+
desiredCollection: string;
|
|
1427
|
+
desiredItem: string;
|
|
1428
|
+
price: string;
|
|
1429
|
+
deadline: string;
|
|
1430
|
+
};
|
|
1431
|
+
SwapClaimed: {
|
|
1432
|
+
sentCollection: string;
|
|
1433
|
+
sentItem: string;
|
|
1434
|
+
sentItemOwner: string;
|
|
1435
|
+
receivedCollection: string;
|
|
1436
|
+
receivedItem: string;
|
|
1437
|
+
receivedItemOwner: string;
|
|
1438
|
+
price: string;
|
|
1439
|
+
deadline: string;
|
|
1440
|
+
};
|
|
1441
|
+
PreSignedAttributesSet: {
|
|
1442
|
+
collection: string;
|
|
1443
|
+
item: string;
|
|
1444
|
+
namespace: string;
|
|
1445
|
+
};
|
|
1446
|
+
PalletAttributeSet: {
|
|
1447
|
+
collection: string;
|
|
1448
|
+
item: string;
|
|
1449
|
+
attribute: string;
|
|
1450
|
+
value: string;
|
|
1451
|
+
};
|
|
1452
|
+
};
|
|
1453
|
+
};
|
|
1454
|
+
/**
|
|
1455
|
+
* Lookup149: pallet_nfts::types::AttributeNamespace<fp_account::AccountId20>
|
|
1456
|
+
**/
|
|
1457
|
+
PalletNftsAttributeNamespace: {
|
|
1458
|
+
_enum: {
|
|
1459
|
+
Pallet: string;
|
|
1460
|
+
CollectionOwner: string;
|
|
1461
|
+
ItemOwner: string;
|
|
1462
|
+
Account: string;
|
|
1463
|
+
};
|
|
1464
|
+
};
|
|
1465
|
+
/**
|
|
1466
|
+
* Lookup151: pallet_nfts::types::PriceWithDirection<Amount>
|
|
1467
|
+
**/
|
|
1468
|
+
PalletNftsPriceWithDirection: {
|
|
1469
|
+
amount: string;
|
|
1470
|
+
direction: string;
|
|
1471
|
+
};
|
|
1472
|
+
/**
|
|
1473
|
+
* Lookup152: pallet_nfts::types::PriceDirection
|
|
1474
|
+
**/
|
|
1475
|
+
PalletNftsPriceDirection: {
|
|
1476
|
+
_enum: string[];
|
|
1477
|
+
};
|
|
1478
|
+
/**
|
|
1479
|
+
* Lookup153: pallet_nfts::types::PalletAttributes<CollectionId>
|
|
1480
|
+
**/
|
|
1481
|
+
PalletNftsPalletAttributes: {
|
|
1482
|
+
_enum: {
|
|
1483
|
+
UsedToClaim: string;
|
|
1484
|
+
TransferDisabled: string;
|
|
1485
|
+
};
|
|
1486
|
+
};
|
|
1487
|
+
/**
|
|
1488
|
+
* Lookup154: frame_system::Phase
|
|
1489
|
+
**/
|
|
1490
|
+
FrameSystemPhase: {
|
|
1491
|
+
_enum: {
|
|
1492
|
+
ApplyExtrinsic: string;
|
|
1493
|
+
Finalization: string;
|
|
1494
|
+
Initialization: string;
|
|
1495
|
+
};
|
|
1496
|
+
};
|
|
1497
|
+
/**
|
|
1498
|
+
* Lookup157: frame_system::LastRuntimeUpgradeInfo
|
|
1499
|
+
**/
|
|
1500
|
+
FrameSystemLastRuntimeUpgradeInfo: {
|
|
1501
|
+
specVersion: string;
|
|
1502
|
+
specName: string;
|
|
1503
|
+
};
|
|
1504
|
+
/**
|
|
1505
|
+
* Lookup159: frame_system::CodeUpgradeAuthorization<T>
|
|
1506
|
+
**/
|
|
1507
|
+
FrameSystemCodeUpgradeAuthorization: {
|
|
1508
|
+
codeHash: string;
|
|
1509
|
+
checkVersion: string;
|
|
1510
|
+
};
|
|
1511
|
+
/**
|
|
1512
|
+
* Lookup160: frame_system::pallet::Call<T>
|
|
1513
|
+
**/
|
|
1514
|
+
FrameSystemCall: {
|
|
1515
|
+
_enum: {
|
|
1516
|
+
remark: {
|
|
1517
|
+
remark: string;
|
|
1518
|
+
};
|
|
1519
|
+
set_heap_pages: {
|
|
1520
|
+
pages: string;
|
|
1521
|
+
};
|
|
1522
|
+
set_code: {
|
|
1523
|
+
code: string;
|
|
1524
|
+
};
|
|
1525
|
+
set_code_without_checks: {
|
|
1526
|
+
code: string;
|
|
1527
|
+
};
|
|
1528
|
+
set_storage: {
|
|
1529
|
+
items: string;
|
|
1530
|
+
};
|
|
1531
|
+
kill_storage: {
|
|
1532
|
+
_alias: {
|
|
1533
|
+
keys_: string;
|
|
1534
|
+
};
|
|
1535
|
+
keys_: string;
|
|
1536
|
+
};
|
|
1537
|
+
kill_prefix: {
|
|
1538
|
+
prefix: string;
|
|
1539
|
+
subkeys: string;
|
|
1540
|
+
};
|
|
1541
|
+
remark_with_event: {
|
|
1542
|
+
remark: string;
|
|
1543
|
+
};
|
|
1544
|
+
__Unused8: string;
|
|
1545
|
+
authorize_upgrade: {
|
|
1546
|
+
codeHash: string;
|
|
1547
|
+
};
|
|
1548
|
+
authorize_upgrade_without_checks: {
|
|
1549
|
+
codeHash: string;
|
|
1550
|
+
};
|
|
1551
|
+
apply_authorized_upgrade: {
|
|
1552
|
+
code: string;
|
|
1553
|
+
};
|
|
1554
|
+
};
|
|
1555
|
+
};
|
|
1556
|
+
/**
|
|
1557
|
+
* Lookup163: frame_system::limits::BlockWeights
|
|
1558
|
+
**/
|
|
1559
|
+
FrameSystemLimitsBlockWeights: {
|
|
1560
|
+
baseBlock: string;
|
|
1561
|
+
maxBlock: string;
|
|
1562
|
+
perClass: string;
|
|
1563
|
+
};
|
|
1564
|
+
/**
|
|
1565
|
+
* Lookup164: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
1566
|
+
**/
|
|
1567
|
+
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
1568
|
+
normal: string;
|
|
1569
|
+
operational: string;
|
|
1570
|
+
mandatory: string;
|
|
1571
|
+
};
|
|
1572
|
+
/**
|
|
1573
|
+
* Lookup165: frame_system::limits::WeightsPerClass
|
|
1574
|
+
**/
|
|
1575
|
+
FrameSystemLimitsWeightsPerClass: {
|
|
1576
|
+
baseExtrinsic: string;
|
|
1577
|
+
maxExtrinsic: string;
|
|
1578
|
+
maxTotal: string;
|
|
1579
|
+
reserved: string;
|
|
1580
|
+
};
|
|
1581
|
+
/**
|
|
1582
|
+
* Lookup167: frame_system::limits::BlockLength
|
|
1583
|
+
**/
|
|
1584
|
+
FrameSystemLimitsBlockLength: {
|
|
1585
|
+
max: string;
|
|
1586
|
+
};
|
|
1587
|
+
/**
|
|
1588
|
+
* Lookup168: frame_support::dispatch::PerDispatchClass<T>
|
|
1589
|
+
**/
|
|
1590
|
+
FrameSupportDispatchPerDispatchClassU32: {
|
|
1591
|
+
normal: string;
|
|
1592
|
+
operational: string;
|
|
1593
|
+
mandatory: string;
|
|
1594
|
+
};
|
|
1595
|
+
/**
|
|
1596
|
+
* Lookup169: sp_weights::RuntimeDbWeight
|
|
1597
|
+
**/
|
|
1598
|
+
SpWeightsRuntimeDbWeight: {
|
|
1599
|
+
read: string;
|
|
1600
|
+
write: string;
|
|
1601
|
+
};
|
|
1602
|
+
/**
|
|
1603
|
+
* Lookup170: sp_version::RuntimeVersion
|
|
1604
|
+
**/
|
|
1605
|
+
SpVersionRuntimeVersion: {
|
|
1606
|
+
specName: string;
|
|
1607
|
+
implName: string;
|
|
1608
|
+
authoringVersion: string;
|
|
1609
|
+
specVersion: string;
|
|
1610
|
+
implVersion: string;
|
|
1611
|
+
apis: string;
|
|
1612
|
+
transactionVersion: string;
|
|
1613
|
+
systemVersion: string;
|
|
1614
|
+
};
|
|
1615
|
+
/**
|
|
1616
|
+
* Lookup176: frame_system::pallet::Error<T>
|
|
1617
|
+
**/
|
|
1618
|
+
FrameSystemError: {
|
|
1619
|
+
_enum: string[];
|
|
1620
|
+
};
|
|
1621
|
+
/**
|
|
1622
|
+
* Lookup179: sp_consensus_babe::app::Public
|
|
1623
|
+
**/
|
|
1624
|
+
SpConsensusBabeAppPublic: string;
|
|
1625
|
+
/**
|
|
1626
|
+
* Lookup182: sp_consensus_babe::digests::NextConfigDescriptor
|
|
1627
|
+
**/
|
|
1628
|
+
SpConsensusBabeDigestsNextConfigDescriptor: {
|
|
1629
|
+
_enum: {
|
|
1630
|
+
__Unused0: string;
|
|
1631
|
+
V1: {
|
|
1632
|
+
c: string;
|
|
1633
|
+
allowedSlots: string;
|
|
1634
|
+
};
|
|
1635
|
+
};
|
|
1636
|
+
};
|
|
1637
|
+
/**
|
|
1638
|
+
* Lookup184: sp_consensus_babe::AllowedSlots
|
|
1639
|
+
**/
|
|
1640
|
+
SpConsensusBabeAllowedSlots: {
|
|
1641
|
+
_enum: string[];
|
|
1642
|
+
};
|
|
1643
|
+
/**
|
|
1644
|
+
* Lookup188: sp_consensus_babe::digests::PreDigest
|
|
1645
|
+
**/
|
|
1646
|
+
SpConsensusBabeDigestsPreDigest: {
|
|
1647
|
+
_enum: {
|
|
1648
|
+
__Unused0: string;
|
|
1649
|
+
Primary: string;
|
|
1650
|
+
SecondaryPlain: string;
|
|
1651
|
+
SecondaryVRF: string;
|
|
1652
|
+
};
|
|
1653
|
+
};
|
|
1654
|
+
/**
|
|
1655
|
+
* Lookup189: sp_consensus_babe::digests::PrimaryPreDigest
|
|
1656
|
+
**/
|
|
1657
|
+
SpConsensusBabeDigestsPrimaryPreDigest: {
|
|
1658
|
+
authorityIndex: string;
|
|
1659
|
+
slot: string;
|
|
1660
|
+
vrfSignature: string;
|
|
1661
|
+
};
|
|
1662
|
+
/**
|
|
1663
|
+
* Lookup190: sp_core::sr25519::vrf::VrfSignature
|
|
1664
|
+
**/
|
|
1665
|
+
SpCoreSr25519VrfVrfSignature: {
|
|
1666
|
+
preOutput: string;
|
|
1667
|
+
proof: string;
|
|
1668
|
+
};
|
|
1669
|
+
/**
|
|
1670
|
+
* Lookup192: sp_consensus_babe::digests::SecondaryPlainPreDigest
|
|
1671
|
+
**/
|
|
1672
|
+
SpConsensusBabeDigestsSecondaryPlainPreDigest: {
|
|
1673
|
+
authorityIndex: string;
|
|
1674
|
+
slot: string;
|
|
1675
|
+
};
|
|
1676
|
+
/**
|
|
1677
|
+
* Lookup193: sp_consensus_babe::digests::SecondaryVRFPreDigest
|
|
1678
|
+
**/
|
|
1679
|
+
SpConsensusBabeDigestsSecondaryVRFPreDigest: {
|
|
1680
|
+
authorityIndex: string;
|
|
1681
|
+
slot: string;
|
|
1682
|
+
vrfSignature: string;
|
|
1683
|
+
};
|
|
1684
|
+
/**
|
|
1685
|
+
* Lookup195: sp_consensus_babe::BabeEpochConfiguration
|
|
1686
|
+
**/
|
|
1687
|
+
SpConsensusBabeBabeEpochConfiguration: {
|
|
1688
|
+
c: string;
|
|
1689
|
+
allowedSlots: string;
|
|
1690
|
+
};
|
|
1691
|
+
/**
|
|
1692
|
+
* Lookup199: pallet_babe::pallet::Call<T>
|
|
1693
|
+
**/
|
|
1694
|
+
PalletBabeCall: {
|
|
1695
|
+
_enum: {
|
|
1696
|
+
report_equivocation: {
|
|
1697
|
+
equivocationProof: string;
|
|
1698
|
+
keyOwnerProof: string;
|
|
1699
|
+
};
|
|
1700
|
+
report_equivocation_unsigned: {
|
|
1701
|
+
equivocationProof: string;
|
|
1702
|
+
keyOwnerProof: string;
|
|
1703
|
+
};
|
|
1704
|
+
plan_config_change: {
|
|
1705
|
+
config: string;
|
|
1706
|
+
};
|
|
1707
|
+
};
|
|
1708
|
+
};
|
|
1709
|
+
/**
|
|
1710
|
+
* Lookup200: sp_consensus_slots::EquivocationProof<sp_runtime::generic::header::Header<Number, Hash>, sp_consensus_babe::app::Public>
|
|
1711
|
+
**/
|
|
1712
|
+
SpConsensusSlotsEquivocationProof: {
|
|
1713
|
+
offender: string;
|
|
1714
|
+
slot: string;
|
|
1715
|
+
firstHeader: string;
|
|
1716
|
+
secondHeader: string;
|
|
1717
|
+
};
|
|
1718
|
+
/**
|
|
1719
|
+
* Lookup201: sp_runtime::generic::header::Header<Number, Hash>
|
|
1720
|
+
**/
|
|
1721
|
+
SpRuntimeHeader: {
|
|
1722
|
+
parentHash: string;
|
|
1723
|
+
number: string;
|
|
1724
|
+
stateRoot: string;
|
|
1725
|
+
extrinsicsRoot: string;
|
|
1726
|
+
digest: string;
|
|
1727
|
+
};
|
|
1728
|
+
/**
|
|
1729
|
+
* Lookup202: sp_session::MembershipProof
|
|
1730
|
+
**/
|
|
1731
|
+
SpSessionMembershipProof: {
|
|
1732
|
+
session: string;
|
|
1733
|
+
trieNodes: string;
|
|
1734
|
+
validatorCount: string;
|
|
1735
|
+
};
|
|
1736
|
+
/**
|
|
1737
|
+
* Lookup203: pallet_babe::pallet::Error<T>
|
|
1738
|
+
**/
|
|
1739
|
+
PalletBabeError: {
|
|
1740
|
+
_enum: string[];
|
|
1741
|
+
};
|
|
1742
|
+
/**
|
|
1743
|
+
* Lookup204: pallet_timestamp::pallet::Call<T>
|
|
1744
|
+
**/
|
|
1745
|
+
PalletTimestampCall: {
|
|
1746
|
+
_enum: {
|
|
1747
|
+
set: {
|
|
1748
|
+
now: string;
|
|
1749
|
+
};
|
|
1750
|
+
};
|
|
1751
|
+
};
|
|
1752
|
+
/**
|
|
1753
|
+
* Lookup206: pallet_balances::types::BalanceLock<Balance>
|
|
1754
|
+
**/
|
|
1755
|
+
PalletBalancesBalanceLock: {
|
|
1756
|
+
id: string;
|
|
1757
|
+
amount: string;
|
|
1758
|
+
reasons: string;
|
|
1759
|
+
};
|
|
1760
|
+
/**
|
|
1761
|
+
* Lookup207: pallet_balances::types::Reasons
|
|
1762
|
+
**/
|
|
1763
|
+
PalletBalancesReasons: {
|
|
1764
|
+
_enum: string[];
|
|
1765
|
+
};
|
|
1766
|
+
/**
|
|
1767
|
+
* Lookup210: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
1768
|
+
**/
|
|
1769
|
+
PalletBalancesReserveData: {
|
|
1770
|
+
id: string;
|
|
1771
|
+
amount: string;
|
|
1772
|
+
};
|
|
1773
|
+
/**
|
|
1774
|
+
* Lookup213: frame_support::traits::tokens::misc::IdAmount<sh_solochain_evm_runtime::RuntimeHoldReason, Balance>
|
|
1775
|
+
**/
|
|
1776
|
+
FrameSupportTokensMiscIdAmountRuntimeHoldReason: {
|
|
1777
|
+
id: string;
|
|
1778
|
+
amount: string;
|
|
1779
|
+
};
|
|
1780
|
+
/**
|
|
1781
|
+
* Lookup214: sh_solochain_evm_runtime::RuntimeHoldReason
|
|
1782
|
+
**/
|
|
1783
|
+
ShSolochainEvmRuntimeRuntimeHoldReason: {
|
|
1784
|
+
_enum: {
|
|
1785
|
+
__Unused0: string;
|
|
1786
|
+
__Unused1: string;
|
|
1787
|
+
__Unused2: string;
|
|
1788
|
+
__Unused3: string;
|
|
1789
|
+
__Unused4: string;
|
|
1790
|
+
__Unused5: string;
|
|
1791
|
+
__Unused6: string;
|
|
1792
|
+
__Unused7: string;
|
|
1793
|
+
__Unused8: string;
|
|
1794
|
+
__Unused9: string;
|
|
1795
|
+
__Unused10: string;
|
|
1796
|
+
__Unused11: string;
|
|
1797
|
+
__Unused12: string;
|
|
1798
|
+
__Unused13: string;
|
|
1799
|
+
__Unused14: string;
|
|
1800
|
+
__Unused15: string;
|
|
1801
|
+
__Unused16: string;
|
|
1802
|
+
__Unused17: string;
|
|
1803
|
+
__Unused18: string;
|
|
1804
|
+
__Unused19: string;
|
|
1805
|
+
__Unused20: string;
|
|
1806
|
+
__Unused21: string;
|
|
1807
|
+
__Unused22: string;
|
|
1808
|
+
__Unused23: string;
|
|
1809
|
+
__Unused24: string;
|
|
1810
|
+
__Unused25: string;
|
|
1811
|
+
__Unused26: string;
|
|
1812
|
+
__Unused27: string;
|
|
1813
|
+
__Unused28: string;
|
|
1814
|
+
__Unused29: string;
|
|
1815
|
+
__Unused30: string;
|
|
1816
|
+
__Unused31: string;
|
|
1817
|
+
__Unused32: string;
|
|
1818
|
+
__Unused33: string;
|
|
1819
|
+
__Unused34: string;
|
|
1820
|
+
__Unused35: string;
|
|
1821
|
+
__Unused36: string;
|
|
1822
|
+
__Unused37: string;
|
|
1823
|
+
__Unused38: string;
|
|
1824
|
+
__Unused39: string;
|
|
1825
|
+
__Unused40: string;
|
|
1826
|
+
__Unused41: string;
|
|
1827
|
+
__Unused42: string;
|
|
1828
|
+
__Unused43: string;
|
|
1829
|
+
__Unused44: string;
|
|
1830
|
+
__Unused45: string;
|
|
1831
|
+
__Unused46: string;
|
|
1832
|
+
__Unused47: string;
|
|
1833
|
+
__Unused48: string;
|
|
1834
|
+
__Unused49: string;
|
|
1835
|
+
__Unused50: string;
|
|
1836
|
+
__Unused51: string;
|
|
1837
|
+
__Unused52: string;
|
|
1838
|
+
__Unused53: string;
|
|
1839
|
+
__Unused54: string;
|
|
1840
|
+
__Unused55: string;
|
|
1841
|
+
__Unused56: string;
|
|
1842
|
+
__Unused57: string;
|
|
1843
|
+
__Unused58: string;
|
|
1844
|
+
__Unused59: string;
|
|
1845
|
+
__Unused60: string;
|
|
1846
|
+
__Unused61: string;
|
|
1847
|
+
__Unused62: string;
|
|
1848
|
+
__Unused63: string;
|
|
1849
|
+
__Unused64: string;
|
|
1850
|
+
__Unused65: string;
|
|
1851
|
+
__Unused66: string;
|
|
1852
|
+
__Unused67: string;
|
|
1853
|
+
__Unused68: string;
|
|
1854
|
+
__Unused69: string;
|
|
1855
|
+
__Unused70: string;
|
|
1856
|
+
__Unused71: string;
|
|
1857
|
+
__Unused72: string;
|
|
1858
|
+
__Unused73: string;
|
|
1859
|
+
__Unused74: string;
|
|
1860
|
+
__Unused75: string;
|
|
1861
|
+
__Unused76: string;
|
|
1862
|
+
__Unused77: string;
|
|
1863
|
+
__Unused78: string;
|
|
1864
|
+
__Unused79: string;
|
|
1865
|
+
Providers: string;
|
|
1866
|
+
FileSystem: string;
|
|
1867
|
+
__Unused82: string;
|
|
1868
|
+
__Unused83: string;
|
|
1869
|
+
PaymentStreams: string;
|
|
1870
|
+
};
|
|
1871
|
+
};
|
|
1872
|
+
/**
|
|
1873
|
+
* Lookup215: pallet_storage_providers::pallet::HoldReason
|
|
1874
|
+
**/
|
|
1875
|
+
PalletStorageProvidersHoldReason: {
|
|
1876
|
+
_enum: string[];
|
|
1877
|
+
};
|
|
1878
|
+
/**
|
|
1879
|
+
* Lookup216: pallet_file_system::pallet::HoldReason
|
|
1880
|
+
**/
|
|
1881
|
+
PalletFileSystemHoldReason: {
|
|
1882
|
+
_enum: string[];
|
|
1883
|
+
};
|
|
1884
|
+
/**
|
|
1885
|
+
* Lookup217: pallet_payment_streams::pallet::HoldReason
|
|
1886
|
+
**/
|
|
1887
|
+
PalletPaymentStreamsHoldReason: {
|
|
1888
|
+
_enum: string[];
|
|
1889
|
+
};
|
|
1890
|
+
/**
|
|
1891
|
+
* Lookup220: frame_support::traits::tokens::misc::IdAmount<sh_solochain_evm_runtime::RuntimeFreezeReason, Balance>
|
|
1892
|
+
**/
|
|
1893
|
+
FrameSupportTokensMiscIdAmountRuntimeFreezeReason: {
|
|
1894
|
+
id: string;
|
|
1895
|
+
amount: string;
|
|
1896
|
+
};
|
|
1897
|
+
/**
|
|
1898
|
+
* Lookup221: sh_solochain_evm_runtime::RuntimeFreezeReason
|
|
1899
|
+
**/
|
|
1900
|
+
ShSolochainEvmRuntimeRuntimeFreezeReason: string;
|
|
1901
|
+
/**
|
|
1902
|
+
* Lookup223: pallet_balances::pallet::Call<T, I>
|
|
1903
|
+
**/
|
|
1904
|
+
PalletBalancesCall: {
|
|
1905
|
+
_enum: {
|
|
1906
|
+
transfer_allow_death: {
|
|
1907
|
+
dest: string;
|
|
1908
|
+
value: string;
|
|
1909
|
+
};
|
|
1910
|
+
__Unused1: string;
|
|
1911
|
+
force_transfer: {
|
|
1912
|
+
source: string;
|
|
1913
|
+
dest: string;
|
|
1914
|
+
value: string;
|
|
1915
|
+
};
|
|
1916
|
+
transfer_keep_alive: {
|
|
1917
|
+
dest: string;
|
|
1918
|
+
value: string;
|
|
1919
|
+
};
|
|
1920
|
+
transfer_all: {
|
|
1921
|
+
dest: string;
|
|
1922
|
+
keepAlive: string;
|
|
1923
|
+
};
|
|
1924
|
+
force_unreserve: {
|
|
1925
|
+
who: string;
|
|
1926
|
+
amount: string;
|
|
1927
|
+
};
|
|
1928
|
+
upgrade_accounts: {
|
|
1929
|
+
who: string;
|
|
1930
|
+
};
|
|
1931
|
+
__Unused7: string;
|
|
1932
|
+
force_set_balance: {
|
|
1933
|
+
who: string;
|
|
1934
|
+
newFree: string;
|
|
1935
|
+
};
|
|
1936
|
+
force_adjust_total_issuance: {
|
|
1937
|
+
direction: string;
|
|
1938
|
+
delta: string;
|
|
1939
|
+
};
|
|
1940
|
+
burn: {
|
|
1941
|
+
value: string;
|
|
1942
|
+
keepAlive: string;
|
|
1943
|
+
};
|
|
1944
|
+
};
|
|
1945
|
+
};
|
|
1946
|
+
/**
|
|
1947
|
+
* Lookup225: pallet_balances::types::AdjustmentDirection
|
|
1948
|
+
**/
|
|
1949
|
+
PalletBalancesAdjustmentDirection: {
|
|
1950
|
+
_enum: string[];
|
|
1951
|
+
};
|
|
1952
|
+
/**
|
|
1953
|
+
* Lookup226: pallet_balances::pallet::Error<T, I>
|
|
1954
|
+
**/
|
|
1955
|
+
PalletBalancesError: {
|
|
1956
|
+
_enum: string[];
|
|
1957
|
+
};
|
|
1958
|
+
/**
|
|
1959
|
+
* Lookup227: sp_staking::offence::OffenceDetails<fp_account::AccountId20, Offender>
|
|
1960
|
+
**/
|
|
1961
|
+
SpStakingOffenceOffenceDetails: {
|
|
1962
|
+
offender: string;
|
|
1963
|
+
reporters: string;
|
|
1964
|
+
};
|
|
1965
|
+
/**
|
|
1966
|
+
* Lookup233: sh_solochain_evm_runtime::SessionKeys
|
|
1967
|
+
**/
|
|
1968
|
+
ShSolochainEvmRuntimeSessionKeys: {
|
|
1969
|
+
babe: string;
|
|
1970
|
+
grandpa: string;
|
|
1971
|
+
};
|
|
1972
|
+
/**
|
|
1973
|
+
* Lookup235: sp_core::crypto::KeyTypeId
|
|
1974
|
+
**/
|
|
1975
|
+
SpCoreCryptoKeyTypeId: string;
|
|
1976
|
+
/**
|
|
1977
|
+
* Lookup236: pallet_session::pallet::Call<T>
|
|
1978
|
+
**/
|
|
1979
|
+
PalletSessionCall: {
|
|
1980
|
+
_enum: {
|
|
1981
|
+
set_keys: {
|
|
1982
|
+
_alias: {
|
|
1983
|
+
keys_: string;
|
|
1984
|
+
};
|
|
1985
|
+
keys_: string;
|
|
1986
|
+
proof: string;
|
|
1987
|
+
};
|
|
1988
|
+
purge_keys: string;
|
|
1989
|
+
};
|
|
1990
|
+
};
|
|
1991
|
+
/**
|
|
1992
|
+
* Lookup237: pallet_session::pallet::Error<T>
|
|
1993
|
+
**/
|
|
1994
|
+
PalletSessionError: {
|
|
1995
|
+
_enum: string[];
|
|
1996
|
+
};
|
|
1997
|
+
/**
|
|
1998
|
+
* Lookup238: pallet_grandpa::StoredState<N>
|
|
1999
|
+
**/
|
|
2000
|
+
PalletGrandpaStoredState: {
|
|
2001
|
+
_enum: {
|
|
2002
|
+
Live: string;
|
|
2003
|
+
PendingPause: {
|
|
2004
|
+
scheduledAt: string;
|
|
2005
|
+
delay: string;
|
|
2006
|
+
};
|
|
2007
|
+
Paused: string;
|
|
2008
|
+
PendingResume: {
|
|
2009
|
+
scheduledAt: string;
|
|
2010
|
+
delay: string;
|
|
2011
|
+
};
|
|
2012
|
+
};
|
|
2013
|
+
};
|
|
2014
|
+
/**
|
|
2015
|
+
* Lookup239: pallet_grandpa::StoredPendingChange<N, Limit>
|
|
2016
|
+
**/
|
|
2017
|
+
PalletGrandpaStoredPendingChange: {
|
|
2018
|
+
scheduledAt: string;
|
|
2019
|
+
delay: string;
|
|
2020
|
+
nextAuthorities: string;
|
|
2021
|
+
forced: string;
|
|
2022
|
+
};
|
|
2023
|
+
/**
|
|
2024
|
+
* Lookup241: pallet_grandpa::pallet::Call<T>
|
|
2025
|
+
**/
|
|
2026
|
+
PalletGrandpaCall: {
|
|
2027
|
+
_enum: {
|
|
2028
|
+
report_equivocation: {
|
|
2029
|
+
equivocationProof: string;
|
|
2030
|
+
keyOwnerProof: string;
|
|
2031
|
+
};
|
|
2032
|
+
report_equivocation_unsigned: {
|
|
2033
|
+
equivocationProof: string;
|
|
2034
|
+
keyOwnerProof: string;
|
|
2035
|
+
};
|
|
2036
|
+
note_stalled: {
|
|
2037
|
+
delay: string;
|
|
2038
|
+
bestFinalizedBlockNumber: string;
|
|
2039
|
+
};
|
|
2040
|
+
};
|
|
2041
|
+
};
|
|
2042
|
+
/**
|
|
2043
|
+
* Lookup242: sp_consensus_grandpa::EquivocationProof<primitive_types::H256, N>
|
|
2044
|
+
**/
|
|
2045
|
+
SpConsensusGrandpaEquivocationProof: {
|
|
2046
|
+
setId: string;
|
|
2047
|
+
equivocation: string;
|
|
2048
|
+
};
|
|
2049
|
+
/**
|
|
2050
|
+
* Lookup243: sp_consensus_grandpa::Equivocation<primitive_types::H256, N>
|
|
2051
|
+
**/
|
|
2052
|
+
SpConsensusGrandpaEquivocation: {
|
|
2053
|
+
_enum: {
|
|
2054
|
+
Prevote: string;
|
|
2055
|
+
Precommit: string;
|
|
2056
|
+
};
|
|
2057
|
+
};
|
|
2058
|
+
/**
|
|
2059
|
+
* Lookup244: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Prevote<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2060
|
+
**/
|
|
2061
|
+
FinalityGrandpaEquivocationPrevote: {
|
|
2062
|
+
roundNumber: string;
|
|
2063
|
+
identity: string;
|
|
2064
|
+
first: string;
|
|
2065
|
+
second: string;
|
|
2066
|
+
};
|
|
2067
|
+
/**
|
|
2068
|
+
* Lookup245: finality_grandpa::Prevote<primitive_types::H256, N>
|
|
2069
|
+
**/
|
|
2070
|
+
FinalityGrandpaPrevote: {
|
|
2071
|
+
targetHash: string;
|
|
2072
|
+
targetNumber: string;
|
|
2073
|
+
};
|
|
2074
|
+
/**
|
|
2075
|
+
* Lookup246: sp_consensus_grandpa::app::Signature
|
|
2076
|
+
**/
|
|
2077
|
+
SpConsensusGrandpaAppSignature: string;
|
|
2078
|
+
/**
|
|
2079
|
+
* Lookup248: finality_grandpa::Equivocation<sp_consensus_grandpa::app::Public, finality_grandpa::Precommit<primitive_types::H256, N>, sp_consensus_grandpa::app::Signature>
|
|
2080
|
+
**/
|
|
2081
|
+
FinalityGrandpaEquivocationPrecommit: {
|
|
2082
|
+
roundNumber: string;
|
|
2083
|
+
identity: string;
|
|
2084
|
+
first: string;
|
|
2085
|
+
second: string;
|
|
2086
|
+
};
|
|
2087
|
+
/**
|
|
2088
|
+
* Lookup249: finality_grandpa::Precommit<primitive_types::H256, N>
|
|
2089
|
+
**/
|
|
2090
|
+
FinalityGrandpaPrecommit: {
|
|
2091
|
+
targetHash: string;
|
|
2092
|
+
targetNumber: string;
|
|
2093
|
+
};
|
|
2094
|
+
/**
|
|
2095
|
+
* Lookup251: pallet_grandpa::pallet::Error<T>
|
|
2096
|
+
**/
|
|
2097
|
+
PalletGrandpaError: {
|
|
2098
|
+
_enum: string[];
|
|
2099
|
+
};
|
|
2100
|
+
/**
|
|
2101
|
+
* Lookup253: pallet_transaction_payment::Releases
|
|
2102
|
+
**/
|
|
2103
|
+
PalletTransactionPaymentReleases: {
|
|
2104
|
+
_enum: string[];
|
|
2105
|
+
};
|
|
2106
|
+
/**
|
|
2107
|
+
* Lookup254: pallet_parameters::pallet::Call<T>
|
|
2108
|
+
**/
|
|
2109
|
+
PalletParametersCall: {
|
|
2110
|
+
_enum: {
|
|
2111
|
+
set_parameter: {
|
|
2112
|
+
keyValue: string;
|
|
2113
|
+
};
|
|
2114
|
+
};
|
|
2115
|
+
};
|
|
2116
|
+
/**
|
|
2117
|
+
* Lookup255: sh_solochain_evm_runtime::configs::runtime_params::RuntimeParameters
|
|
2118
|
+
**/
|
|
2119
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsRuntimeParameters: {
|
|
2120
|
+
_enum: {
|
|
2121
|
+
RuntimeConfig: string;
|
|
2122
|
+
};
|
|
2123
|
+
};
|
|
2124
|
+
/**
|
|
2125
|
+
* Lookup256: sh_solochain_evm_runtime::configs::runtime_params::dynamic_params::runtime_config::Parameters
|
|
2126
|
+
**/
|
|
2127
|
+
ShSolochainEvmRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters: {
|
|
2128
|
+
_enum: {
|
|
2129
|
+
SlashAmountPerMaxFileSize: string;
|
|
2130
|
+
StakeToChallengePeriod: string;
|
|
2131
|
+
CheckpointChallengePeriod: string;
|
|
2132
|
+
MinChallengePeriod: string;
|
|
2133
|
+
SystemUtilisationLowerThresholdPercentage: string;
|
|
2134
|
+
SystemUtilisationUpperThresholdPercentage: string;
|
|
2135
|
+
MostlyStablePrice: string;
|
|
2136
|
+
MaxPrice: string;
|
|
2137
|
+
MinPrice: string;
|
|
2138
|
+
UpperExponentFactor: string;
|
|
2139
|
+
LowerExponentFactor: string;
|
|
2140
|
+
ZeroSizeBucketFixedRate: string;
|
|
2141
|
+
IdealUtilisationRate: string;
|
|
2142
|
+
DecayRate: string;
|
|
2143
|
+
MinimumTreasuryCut: string;
|
|
2144
|
+
MaximumTreasuryCut: string;
|
|
2145
|
+
BspStopStoringFilePenalty: string;
|
|
2146
|
+
ProviderTopUpTtl: string;
|
|
2147
|
+
BasicReplicationTarget: string;
|
|
2148
|
+
StandardReplicationTarget: string;
|
|
2149
|
+
HighSecurityReplicationTarget: string;
|
|
2150
|
+
SuperHighSecurityReplicationTarget: string;
|
|
2151
|
+
UltraHighSecurityReplicationTarget: string;
|
|
2152
|
+
MaxReplicationTarget: string;
|
|
2153
|
+
TickRangeToMaximumThreshold: string;
|
|
2154
|
+
StorageRequestTtl: string;
|
|
2155
|
+
MinWaitForStopStoring: string;
|
|
2156
|
+
MinSeedPeriod: string;
|
|
2157
|
+
StakeToSeedPeriod: string;
|
|
2158
|
+
UpfrontTicksToPay: string;
|
|
2159
|
+
};
|
|
2160
|
+
};
|
|
2161
|
+
/**
|
|
2162
|
+
* Lookup259: pallet_sudo::pallet::Call<T>
|
|
2163
|
+
**/
|
|
2164
|
+
PalletSudoCall: {
|
|
2165
|
+
_enum: {
|
|
2166
|
+
sudo: {
|
|
2167
|
+
call: string;
|
|
2168
|
+
};
|
|
2169
|
+
sudo_unchecked_weight: {
|
|
2170
|
+
call: string;
|
|
2171
|
+
weight: string;
|
|
2172
|
+
};
|
|
2173
|
+
set_key: {
|
|
2174
|
+
_alias: {
|
|
2175
|
+
new_: string;
|
|
2176
|
+
};
|
|
2177
|
+
new_: string;
|
|
2178
|
+
};
|
|
2179
|
+
sudo_as: {
|
|
2180
|
+
who: string;
|
|
2181
|
+
call: string;
|
|
2182
|
+
};
|
|
2183
|
+
remove_key: string;
|
|
2184
|
+
};
|
|
2185
|
+
};
|
|
2186
|
+
/**
|
|
2187
|
+
* Lookup261: pallet_ethereum::pallet::Call<T>
|
|
2188
|
+
**/
|
|
2189
|
+
PalletEthereumCall: {
|
|
2190
|
+
_enum: {
|
|
2191
|
+
transact: {
|
|
2192
|
+
transaction: string;
|
|
2193
|
+
};
|
|
2194
|
+
};
|
|
2195
|
+
};
|
|
2196
|
+
/**
|
|
2197
|
+
* Lookup262: ethereum::transaction::TransactionV2
|
|
2198
|
+
**/
|
|
2199
|
+
EthereumTransactionTransactionV2: {
|
|
2200
|
+
_enum: {
|
|
2201
|
+
Legacy: string;
|
|
2202
|
+
EIP2930: string;
|
|
2203
|
+
EIP1559: string;
|
|
2204
|
+
};
|
|
2205
|
+
};
|
|
2206
|
+
/**
|
|
2207
|
+
* Lookup263: ethereum::transaction::legacy::LegacyTransaction
|
|
2208
|
+
**/
|
|
2209
|
+
EthereumTransactionLegacyLegacyTransaction: {
|
|
2210
|
+
nonce: string;
|
|
2211
|
+
gasPrice: string;
|
|
2212
|
+
gasLimit: string;
|
|
2213
|
+
action: string;
|
|
2214
|
+
value: string;
|
|
2215
|
+
input: string;
|
|
2216
|
+
signature: string;
|
|
2217
|
+
};
|
|
2218
|
+
/**
|
|
2219
|
+
* Lookup266: ethereum::transaction::legacy::TransactionAction
|
|
2220
|
+
**/
|
|
2221
|
+
EthereumTransactionLegacyTransactionAction: {
|
|
2222
|
+
_enum: {
|
|
2223
|
+
Call: string;
|
|
2224
|
+
Create: string;
|
|
2225
|
+
};
|
|
2226
|
+
};
|
|
2227
|
+
/**
|
|
2228
|
+
* Lookup267: ethereum::transaction::legacy::TransactionSignature
|
|
2229
|
+
**/
|
|
2230
|
+
EthereumTransactionLegacyTransactionSignature: {
|
|
2231
|
+
v: string;
|
|
2232
|
+
r: string;
|
|
2233
|
+
s: string;
|
|
2234
|
+
};
|
|
2235
|
+
/**
|
|
2236
|
+
* Lookup269: ethereum::transaction::eip2930::EIP2930Transaction
|
|
2237
|
+
**/
|
|
2238
|
+
EthereumTransactionEip2930Eip2930Transaction: {
|
|
2239
|
+
chainId: string;
|
|
2240
|
+
nonce: string;
|
|
2241
|
+
gasPrice: string;
|
|
2242
|
+
gasLimit: string;
|
|
2243
|
+
action: string;
|
|
2244
|
+
value: string;
|
|
2245
|
+
input: string;
|
|
2246
|
+
accessList: string;
|
|
2247
|
+
oddYParity: string;
|
|
2248
|
+
r: string;
|
|
2249
|
+
s: string;
|
|
2250
|
+
};
|
|
2251
|
+
/**
|
|
2252
|
+
* Lookup271: ethereum::transaction::eip2930::AccessListItem
|
|
2253
|
+
**/
|
|
2254
|
+
EthereumTransactionEip2930AccessListItem: {
|
|
2255
|
+
address: string;
|
|
2256
|
+
storageKeys: string;
|
|
2257
|
+
};
|
|
2258
|
+
/**
|
|
2259
|
+
* Lookup272: ethereum::transaction::eip1559::EIP1559Transaction
|
|
2260
|
+
**/
|
|
2261
|
+
EthereumTransactionEip1559Eip1559Transaction: {
|
|
2262
|
+
chainId: string;
|
|
2263
|
+
nonce: string;
|
|
2264
|
+
maxPriorityFeePerGas: string;
|
|
2265
|
+
maxFeePerGas: string;
|
|
2266
|
+
gasLimit: string;
|
|
2267
|
+
action: string;
|
|
2268
|
+
value: string;
|
|
2269
|
+
input: string;
|
|
2270
|
+
accessList: string;
|
|
2271
|
+
oddYParity: string;
|
|
2272
|
+
r: string;
|
|
2273
|
+
s: string;
|
|
2274
|
+
};
|
|
2275
|
+
/**
|
|
2276
|
+
* Lookup273: pallet_evm::pallet::Call<T>
|
|
2277
|
+
**/
|
|
2278
|
+
PalletEvmCall: {
|
|
2279
|
+
_enum: {
|
|
2280
|
+
withdraw: {
|
|
2281
|
+
address: string;
|
|
2282
|
+
value: string;
|
|
2283
|
+
};
|
|
2284
|
+
call: {
|
|
2285
|
+
source: string;
|
|
2286
|
+
target: string;
|
|
2287
|
+
input: string;
|
|
2288
|
+
value: string;
|
|
2289
|
+
gasLimit: string;
|
|
2290
|
+
maxFeePerGas: string;
|
|
2291
|
+
maxPriorityFeePerGas: string;
|
|
2292
|
+
nonce: string;
|
|
2293
|
+
accessList: string;
|
|
2294
|
+
};
|
|
2295
|
+
create: {
|
|
2296
|
+
source: string;
|
|
2297
|
+
init: string;
|
|
2298
|
+
value: string;
|
|
2299
|
+
gasLimit: string;
|
|
2300
|
+
maxFeePerGas: string;
|
|
2301
|
+
maxPriorityFeePerGas: string;
|
|
2302
|
+
nonce: string;
|
|
2303
|
+
accessList: string;
|
|
2304
|
+
};
|
|
2305
|
+
create2: {
|
|
2306
|
+
source: string;
|
|
2307
|
+
init: string;
|
|
2308
|
+
salt: string;
|
|
2309
|
+
value: string;
|
|
2310
|
+
gasLimit: string;
|
|
2311
|
+
maxFeePerGas: string;
|
|
2312
|
+
maxPriorityFeePerGas: string;
|
|
2313
|
+
nonce: string;
|
|
2314
|
+
accessList: string;
|
|
2315
|
+
};
|
|
2316
|
+
};
|
|
2317
|
+
};
|
|
2318
|
+
/**
|
|
2319
|
+
* Lookup277: pallet_storage_providers::pallet::Call<T>
|
|
2320
|
+
**/
|
|
2321
|
+
PalletStorageProvidersCall: {
|
|
2322
|
+
_enum: {
|
|
2323
|
+
request_msp_sign_up: {
|
|
2324
|
+
capacity: string;
|
|
2325
|
+
multiaddresses: string;
|
|
2326
|
+
valuePropPricePerGigaUnitOfDataPerBlock: string;
|
|
2327
|
+
commitment: string;
|
|
2328
|
+
valuePropMaxDataLimit: string;
|
|
2329
|
+
paymentAccount: string;
|
|
2330
|
+
};
|
|
2331
|
+
request_bsp_sign_up: {
|
|
2332
|
+
capacity: string;
|
|
2333
|
+
multiaddresses: string;
|
|
2334
|
+
paymentAccount: string;
|
|
2335
|
+
};
|
|
2336
|
+
confirm_sign_up: {
|
|
2337
|
+
providerAccount: string;
|
|
2338
|
+
};
|
|
2339
|
+
cancel_sign_up: string;
|
|
2340
|
+
msp_sign_off: {
|
|
2341
|
+
mspId: string;
|
|
2342
|
+
};
|
|
2343
|
+
bsp_sign_off: string;
|
|
2344
|
+
change_capacity: {
|
|
2345
|
+
newCapacity: string;
|
|
2346
|
+
};
|
|
2347
|
+
add_value_prop: {
|
|
2348
|
+
pricePerGigaUnitOfDataPerBlock: string;
|
|
2349
|
+
commitment: string;
|
|
2350
|
+
bucketDataLimit: string;
|
|
2351
|
+
};
|
|
2352
|
+
make_value_prop_unavailable: {
|
|
2353
|
+
valuePropId: string;
|
|
2354
|
+
};
|
|
2355
|
+
add_multiaddress: {
|
|
2356
|
+
newMultiaddress: string;
|
|
2357
|
+
};
|
|
2358
|
+
remove_multiaddress: {
|
|
2359
|
+
multiaddress: string;
|
|
2360
|
+
};
|
|
2361
|
+
force_msp_sign_up: {
|
|
2362
|
+
who: string;
|
|
2363
|
+
mspId: string;
|
|
2364
|
+
capacity: string;
|
|
2365
|
+
multiaddresses: string;
|
|
2366
|
+
valuePropPricePerGigaUnitOfDataPerBlock: string;
|
|
2367
|
+
commitment: string;
|
|
2368
|
+
valuePropMaxDataLimit: string;
|
|
2369
|
+
paymentAccount: string;
|
|
2370
|
+
};
|
|
2371
|
+
force_bsp_sign_up: {
|
|
2372
|
+
who: string;
|
|
2373
|
+
bspId: string;
|
|
2374
|
+
capacity: string;
|
|
2375
|
+
multiaddresses: string;
|
|
2376
|
+
paymentAccount: string;
|
|
2377
|
+
weight: string;
|
|
2378
|
+
};
|
|
2379
|
+
slash: {
|
|
2380
|
+
providerId: string;
|
|
2381
|
+
};
|
|
2382
|
+
top_up_deposit: string;
|
|
2383
|
+
delete_provider: {
|
|
2384
|
+
providerId: string;
|
|
2385
|
+
};
|
|
2386
|
+
stop_all_cycles: string;
|
|
2387
|
+
};
|
|
2388
|
+
};
|
|
2389
|
+
/**
|
|
2390
|
+
* Lookup278: pallet_file_system::pallet::Call<T>
|
|
2391
|
+
**/
|
|
2392
|
+
PalletFileSystemCall: {
|
|
2393
|
+
_enum: {
|
|
2394
|
+
create_bucket: {
|
|
2395
|
+
mspId: string;
|
|
2396
|
+
name: string;
|
|
2397
|
+
private: string;
|
|
2398
|
+
valuePropId: string;
|
|
2399
|
+
};
|
|
2400
|
+
request_move_bucket: {
|
|
2401
|
+
bucketId: string;
|
|
2402
|
+
newMspId: string;
|
|
2403
|
+
newValuePropId: string;
|
|
2404
|
+
};
|
|
2405
|
+
msp_respond_move_bucket_request: {
|
|
2406
|
+
bucketId: string;
|
|
2407
|
+
response: string;
|
|
2408
|
+
};
|
|
2409
|
+
update_bucket_privacy: {
|
|
2410
|
+
bucketId: string;
|
|
2411
|
+
private: string;
|
|
2412
|
+
};
|
|
2413
|
+
create_and_associate_collection_with_bucket: {
|
|
2414
|
+
bucketId: string;
|
|
2415
|
+
};
|
|
2416
|
+
delete_bucket: {
|
|
2417
|
+
bucketId: string;
|
|
2418
|
+
};
|
|
2419
|
+
issue_storage_request: {
|
|
2420
|
+
_alias: {
|
|
2421
|
+
size_: string;
|
|
2422
|
+
};
|
|
2423
|
+
bucketId: string;
|
|
2424
|
+
location: string;
|
|
2425
|
+
fingerprint: string;
|
|
2426
|
+
size_: string;
|
|
2427
|
+
mspId: string;
|
|
2428
|
+
peerIds: string;
|
|
2429
|
+
replicationTarget: string;
|
|
2430
|
+
};
|
|
2431
|
+
revoke_storage_request: {
|
|
2432
|
+
fileKey: string;
|
|
2433
|
+
};
|
|
2434
|
+
msp_respond_storage_requests_multiple_buckets: {
|
|
2435
|
+
storageRequestMspResponse: string;
|
|
2436
|
+
};
|
|
2437
|
+
msp_stop_storing_bucket: {
|
|
2438
|
+
bucketId: string;
|
|
2439
|
+
};
|
|
2440
|
+
bsp_volunteer: {
|
|
2441
|
+
fileKey: string;
|
|
2442
|
+
};
|
|
2443
|
+
bsp_confirm_storing: {
|
|
2444
|
+
nonInclusionForestProof: string;
|
|
2445
|
+
fileKeysAndProofs: string;
|
|
2446
|
+
};
|
|
2447
|
+
bsp_request_stop_storing: {
|
|
2448
|
+
_alias: {
|
|
2449
|
+
size_: string;
|
|
2450
|
+
};
|
|
2451
|
+
fileKey: string;
|
|
2452
|
+
bucketId: string;
|
|
2453
|
+
location: string;
|
|
2454
|
+
owner: string;
|
|
2455
|
+
fingerprint: string;
|
|
2456
|
+
size_: string;
|
|
2457
|
+
canServe: string;
|
|
2458
|
+
inclusionForestProof: string;
|
|
2459
|
+
};
|
|
2460
|
+
bsp_confirm_stop_storing: {
|
|
2461
|
+
fileKey: string;
|
|
2462
|
+
inclusionForestProof: string;
|
|
2463
|
+
};
|
|
2464
|
+
stop_storing_for_insolvent_user: {
|
|
2465
|
+
_alias: {
|
|
2466
|
+
size_: string;
|
|
2467
|
+
};
|
|
2468
|
+
fileKey: string;
|
|
2469
|
+
bucketId: string;
|
|
2470
|
+
location: string;
|
|
2471
|
+
owner: string;
|
|
2472
|
+
fingerprint: string;
|
|
2473
|
+
size_: string;
|
|
2474
|
+
inclusionForestProof: string;
|
|
2475
|
+
};
|
|
2476
|
+
msp_stop_storing_bucket_for_insolvent_user: {
|
|
2477
|
+
bucketId: string;
|
|
2478
|
+
};
|
|
2479
|
+
request_delete_file: {
|
|
2480
|
+
_alias: {
|
|
2481
|
+
size_: string;
|
|
2482
|
+
};
|
|
2483
|
+
signedIntention: string;
|
|
2484
|
+
signature: string;
|
|
2485
|
+
bucketId: string;
|
|
2486
|
+
location: string;
|
|
2487
|
+
size_: string;
|
|
2488
|
+
fingerprint: string;
|
|
2489
|
+
};
|
|
2490
|
+
delete_file: {
|
|
2491
|
+
_alias: {
|
|
2492
|
+
size_: string;
|
|
2493
|
+
};
|
|
2494
|
+
fileOwner: string;
|
|
2495
|
+
signedIntention: string;
|
|
2496
|
+
signature: string;
|
|
2497
|
+
bucketId: string;
|
|
2498
|
+
location: string;
|
|
2499
|
+
size_: string;
|
|
2500
|
+
fingerprint: string;
|
|
2501
|
+
bspId: string;
|
|
2502
|
+
forestProof: string;
|
|
2503
|
+
};
|
|
2504
|
+
delete_file_for_incomplete_storage_request: {
|
|
2505
|
+
fileKey: string;
|
|
2506
|
+
bspId: string;
|
|
2507
|
+
forestProof: string;
|
|
2508
|
+
};
|
|
2509
|
+
};
|
|
2510
|
+
};
|
|
2511
|
+
/**
|
|
2512
|
+
* Lookup279: pallet_file_system::types::BucketMoveRequestResponse
|
|
2513
|
+
**/
|
|
2514
|
+
PalletFileSystemBucketMoveRequestResponse: {
|
|
2515
|
+
_enum: string[];
|
|
2516
|
+
};
|
|
2517
|
+
/**
|
|
2518
|
+
* Lookup280: pallet_file_system::types::ReplicationTarget<T>
|
|
2519
|
+
**/
|
|
2520
|
+
PalletFileSystemReplicationTarget: {
|
|
2521
|
+
_enum: {
|
|
2522
|
+
Basic: string;
|
|
2523
|
+
Standard: string;
|
|
2524
|
+
HighSecurity: string;
|
|
2525
|
+
SuperHighSecurity: string;
|
|
2526
|
+
UltraHighSecurity: string;
|
|
2527
|
+
Custom: string;
|
|
2528
|
+
};
|
|
2529
|
+
};
|
|
2530
|
+
/**
|
|
2531
|
+
* Lookup282: pallet_file_system::types::StorageRequestMspBucketResponse<T>
|
|
2532
|
+
**/
|
|
2533
|
+
PalletFileSystemStorageRequestMspBucketResponse: {
|
|
2534
|
+
bucketId: string;
|
|
2535
|
+
accept: string;
|
|
2536
|
+
reject: string;
|
|
2537
|
+
};
|
|
2538
|
+
/**
|
|
2539
|
+
* Lookup284: pallet_file_system::types::StorageRequestMspAcceptedFileKeys<T>
|
|
2540
|
+
**/
|
|
2541
|
+
PalletFileSystemStorageRequestMspAcceptedFileKeys: {
|
|
2542
|
+
fileKeysAndProofs: string;
|
|
2543
|
+
forestProof: string;
|
|
2544
|
+
};
|
|
2545
|
+
/**
|
|
2546
|
+
* Lookup286: pallet_file_system::types::FileKeyWithProof<T>
|
|
2547
|
+
**/
|
|
2548
|
+
PalletFileSystemFileKeyWithProof: {
|
|
2549
|
+
fileKey: string;
|
|
2550
|
+
proof: string;
|
|
2551
|
+
};
|
|
2552
|
+
/**
|
|
2553
|
+
* Lookup288: pallet_file_system::types::RejectedStorageRequest<T>
|
|
2554
|
+
**/
|
|
2555
|
+
PalletFileSystemRejectedStorageRequest: {
|
|
2556
|
+
fileKey: string;
|
|
2557
|
+
reason: string;
|
|
2558
|
+
};
|
|
2559
|
+
/**
|
|
2560
|
+
* Lookup290: pallet_proofs_dealer::pallet::Call<T>
|
|
2561
|
+
**/
|
|
2562
|
+
PalletProofsDealerCall: {
|
|
2563
|
+
_enum: {
|
|
2564
|
+
challenge: {
|
|
2565
|
+
key: string;
|
|
2566
|
+
};
|
|
2567
|
+
submit_proof: {
|
|
2568
|
+
proof: string;
|
|
2569
|
+
provider: string;
|
|
2570
|
+
};
|
|
2571
|
+
force_initialise_challenge_cycle: {
|
|
2572
|
+
provider: string;
|
|
2573
|
+
};
|
|
2574
|
+
set_paused: {
|
|
2575
|
+
paused: string;
|
|
2576
|
+
};
|
|
2577
|
+
priority_challenge: {
|
|
2578
|
+
key: string;
|
|
2579
|
+
shouldRemoveKey: string;
|
|
2580
|
+
};
|
|
2581
|
+
};
|
|
2582
|
+
};
|
|
2583
|
+
/**
|
|
2584
|
+
* Lookup291: pallet_randomness::pallet::Call<T>
|
|
2585
|
+
**/
|
|
2586
|
+
PalletRandomnessCall: {
|
|
2587
|
+
_enum: string[];
|
|
2588
|
+
};
|
|
2589
|
+
/**
|
|
2590
|
+
* Lookup292: pallet_payment_streams::pallet::Call<T>
|
|
2591
|
+
**/
|
|
2592
|
+
PalletPaymentStreamsCall: {
|
|
2593
|
+
_enum: {
|
|
2594
|
+
create_fixed_rate_payment_stream: {
|
|
2595
|
+
providerId: string;
|
|
2596
|
+
userAccount: string;
|
|
2597
|
+
rate: string;
|
|
2598
|
+
};
|
|
2599
|
+
update_fixed_rate_payment_stream: {
|
|
2600
|
+
providerId: string;
|
|
2601
|
+
userAccount: string;
|
|
2602
|
+
newRate: string;
|
|
2603
|
+
};
|
|
2604
|
+
delete_fixed_rate_payment_stream: {
|
|
2605
|
+
providerId: string;
|
|
2606
|
+
userAccount: string;
|
|
2607
|
+
};
|
|
2608
|
+
create_dynamic_rate_payment_stream: {
|
|
2609
|
+
providerId: string;
|
|
2610
|
+
userAccount: string;
|
|
2611
|
+
amountProvided: string;
|
|
2612
|
+
};
|
|
2613
|
+
update_dynamic_rate_payment_stream: {
|
|
2614
|
+
providerId: string;
|
|
2615
|
+
userAccount: string;
|
|
2616
|
+
newAmountProvided: string;
|
|
2617
|
+
};
|
|
2618
|
+
delete_dynamic_rate_payment_stream: {
|
|
2619
|
+
providerId: string;
|
|
2620
|
+
userAccount: string;
|
|
2621
|
+
};
|
|
2622
|
+
charge_payment_streams: {
|
|
2623
|
+
userAccount: string;
|
|
2624
|
+
};
|
|
2625
|
+
charge_multiple_users_payment_streams: {
|
|
2626
|
+
userAccounts: string;
|
|
2627
|
+
};
|
|
2628
|
+
pay_outstanding_debt: {
|
|
2629
|
+
providers: string;
|
|
2630
|
+
};
|
|
2631
|
+
clear_insolvent_flag: string;
|
|
2632
|
+
};
|
|
2633
|
+
};
|
|
2634
|
+
/**
|
|
2635
|
+
* Lookup293: pallet_bucket_nfts::pallet::Call<T>
|
|
2636
|
+
**/
|
|
2637
|
+
PalletBucketNftsCall: {
|
|
2638
|
+
_enum: {
|
|
2639
|
+
share_access: {
|
|
2640
|
+
recipient: string;
|
|
2641
|
+
bucket: string;
|
|
2642
|
+
itemId: string;
|
|
2643
|
+
readAccessRegex: string;
|
|
2644
|
+
};
|
|
2645
|
+
update_read_access: {
|
|
2646
|
+
bucket: string;
|
|
2647
|
+
itemId: string;
|
|
2648
|
+
readAccessRegex: string;
|
|
2649
|
+
};
|
|
2650
|
+
};
|
|
2651
|
+
};
|
|
2652
|
+
/**
|
|
2653
|
+
* Lookup295: pallet_nfts::pallet::Call<T, I>
|
|
2654
|
+
**/
|
|
2655
|
+
PalletNftsCall: {
|
|
2656
|
+
_enum: {
|
|
2657
|
+
create: {
|
|
2658
|
+
admin: string;
|
|
2659
|
+
config: string;
|
|
2660
|
+
};
|
|
2661
|
+
force_create: {
|
|
2662
|
+
owner: string;
|
|
2663
|
+
config: string;
|
|
2664
|
+
};
|
|
2665
|
+
destroy: {
|
|
2666
|
+
collection: string;
|
|
2667
|
+
witness: string;
|
|
2668
|
+
};
|
|
2669
|
+
mint: {
|
|
2670
|
+
collection: string;
|
|
2671
|
+
item: string;
|
|
2672
|
+
mintTo: string;
|
|
2673
|
+
witnessData: string;
|
|
2674
|
+
};
|
|
2675
|
+
force_mint: {
|
|
2676
|
+
collection: string;
|
|
2677
|
+
item: string;
|
|
2678
|
+
mintTo: string;
|
|
2679
|
+
itemConfig: string;
|
|
2680
|
+
};
|
|
2681
|
+
burn: {
|
|
2682
|
+
collection: string;
|
|
2683
|
+
item: string;
|
|
2684
|
+
};
|
|
2685
|
+
transfer: {
|
|
2686
|
+
collection: string;
|
|
2687
|
+
item: string;
|
|
2688
|
+
dest: string;
|
|
2689
|
+
};
|
|
2690
|
+
redeposit: {
|
|
2691
|
+
collection: string;
|
|
2692
|
+
items: string;
|
|
2693
|
+
};
|
|
2694
|
+
lock_item_transfer: {
|
|
2695
|
+
collection: string;
|
|
2696
|
+
item: string;
|
|
2697
|
+
};
|
|
2698
|
+
unlock_item_transfer: {
|
|
2699
|
+
collection: string;
|
|
2700
|
+
item: string;
|
|
2701
|
+
};
|
|
2702
|
+
lock_collection: {
|
|
2703
|
+
collection: string;
|
|
2704
|
+
lockSettings: string;
|
|
2705
|
+
};
|
|
2706
|
+
transfer_ownership: {
|
|
2707
|
+
collection: string;
|
|
2708
|
+
newOwner: string;
|
|
2709
|
+
};
|
|
2710
|
+
set_team: {
|
|
2711
|
+
collection: string;
|
|
2712
|
+
issuer: string;
|
|
2713
|
+
admin: string;
|
|
2714
|
+
freezer: string;
|
|
2715
|
+
};
|
|
2716
|
+
force_collection_owner: {
|
|
2717
|
+
collection: string;
|
|
2718
|
+
owner: string;
|
|
2719
|
+
};
|
|
2720
|
+
force_collection_config: {
|
|
2721
|
+
collection: string;
|
|
2722
|
+
config: string;
|
|
2723
|
+
};
|
|
2724
|
+
approve_transfer: {
|
|
2725
|
+
collection: string;
|
|
2726
|
+
item: string;
|
|
2727
|
+
delegate: string;
|
|
2728
|
+
maybeDeadline: string;
|
|
2729
|
+
};
|
|
2730
|
+
cancel_approval: {
|
|
2731
|
+
collection: string;
|
|
2732
|
+
item: string;
|
|
2733
|
+
delegate: string;
|
|
2734
|
+
};
|
|
2735
|
+
clear_all_transfer_approvals: {
|
|
2736
|
+
collection: string;
|
|
2737
|
+
item: string;
|
|
2738
|
+
};
|
|
2739
|
+
lock_item_properties: {
|
|
2740
|
+
collection: string;
|
|
2741
|
+
item: string;
|
|
2742
|
+
lockMetadata: string;
|
|
2743
|
+
lockAttributes: string;
|
|
2744
|
+
};
|
|
2745
|
+
set_attribute: {
|
|
2746
|
+
collection: string;
|
|
2747
|
+
maybeItem: string;
|
|
2748
|
+
namespace: string;
|
|
2749
|
+
key: string;
|
|
2750
|
+
value: string;
|
|
2751
|
+
};
|
|
2752
|
+
force_set_attribute: {
|
|
2753
|
+
setAs: string;
|
|
2754
|
+
collection: string;
|
|
2755
|
+
maybeItem: string;
|
|
2756
|
+
namespace: string;
|
|
2757
|
+
key: string;
|
|
2758
|
+
value: string;
|
|
2759
|
+
};
|
|
2760
|
+
clear_attribute: {
|
|
2761
|
+
collection: string;
|
|
2762
|
+
maybeItem: string;
|
|
2763
|
+
namespace: string;
|
|
2764
|
+
key: string;
|
|
2765
|
+
};
|
|
2766
|
+
approve_item_attributes: {
|
|
2767
|
+
collection: string;
|
|
2768
|
+
item: string;
|
|
2769
|
+
delegate: string;
|
|
2770
|
+
};
|
|
2771
|
+
cancel_item_attributes_approval: {
|
|
2772
|
+
collection: string;
|
|
2773
|
+
item: string;
|
|
2774
|
+
delegate: string;
|
|
2775
|
+
witness: string;
|
|
2776
|
+
};
|
|
2777
|
+
set_metadata: {
|
|
2778
|
+
collection: string;
|
|
2779
|
+
item: string;
|
|
2780
|
+
data: string;
|
|
2781
|
+
};
|
|
2782
|
+
clear_metadata: {
|
|
2783
|
+
collection: string;
|
|
2784
|
+
item: string;
|
|
2785
|
+
};
|
|
2786
|
+
set_collection_metadata: {
|
|
2787
|
+
collection: string;
|
|
2788
|
+
data: string;
|
|
2789
|
+
};
|
|
2790
|
+
clear_collection_metadata: {
|
|
2791
|
+
collection: string;
|
|
2792
|
+
};
|
|
2793
|
+
set_accept_ownership: {
|
|
2794
|
+
maybeCollection: string;
|
|
2795
|
+
};
|
|
2796
|
+
set_collection_max_supply: {
|
|
2797
|
+
collection: string;
|
|
2798
|
+
maxSupply: string;
|
|
2799
|
+
};
|
|
2800
|
+
update_mint_settings: {
|
|
2801
|
+
collection: string;
|
|
2802
|
+
mintSettings: string;
|
|
2803
|
+
};
|
|
2804
|
+
set_price: {
|
|
2805
|
+
collection: string;
|
|
2806
|
+
item: string;
|
|
2807
|
+
price: string;
|
|
2808
|
+
whitelistedBuyer: string;
|
|
2809
|
+
};
|
|
2810
|
+
buy_item: {
|
|
2811
|
+
collection: string;
|
|
2812
|
+
item: string;
|
|
2813
|
+
bidPrice: string;
|
|
2814
|
+
};
|
|
2815
|
+
pay_tips: {
|
|
2816
|
+
tips: string;
|
|
2817
|
+
};
|
|
2818
|
+
create_swap: {
|
|
2819
|
+
offeredCollection: string;
|
|
2820
|
+
offeredItem: string;
|
|
2821
|
+
desiredCollection: string;
|
|
2822
|
+
maybeDesiredItem: string;
|
|
2823
|
+
maybePrice: string;
|
|
2824
|
+
duration: string;
|
|
2825
|
+
};
|
|
2826
|
+
cancel_swap: {
|
|
2827
|
+
offeredCollection: string;
|
|
2828
|
+
offeredItem: string;
|
|
2829
|
+
};
|
|
2830
|
+
claim_swap: {
|
|
2831
|
+
sendCollection: string;
|
|
2832
|
+
sendItem: string;
|
|
2833
|
+
receiveCollection: string;
|
|
2834
|
+
receiveItem: string;
|
|
2835
|
+
witnessPrice: string;
|
|
2836
|
+
};
|
|
2837
|
+
mint_pre_signed: {
|
|
2838
|
+
mintData: string;
|
|
2839
|
+
signature: string;
|
|
2840
|
+
signer: string;
|
|
2841
|
+
};
|
|
2842
|
+
set_attributes_pre_signed: {
|
|
2843
|
+
data: string;
|
|
2844
|
+
signature: string;
|
|
2845
|
+
signer: string;
|
|
2846
|
+
};
|
|
2847
|
+
};
|
|
2848
|
+
};
|
|
2849
|
+
/**
|
|
2850
|
+
* Lookup296: pallet_nfts::types::CollectionConfig<Price, BlockNumber, CollectionId>
|
|
2851
|
+
**/
|
|
2852
|
+
PalletNftsCollectionConfig: {
|
|
2853
|
+
settings: string;
|
|
2854
|
+
maxSupply: string;
|
|
2855
|
+
mintSettings: string;
|
|
2856
|
+
};
|
|
2857
|
+
/**
|
|
2858
|
+
* Lookup298: pallet_nfts::types::CollectionSetting
|
|
2859
|
+
**/
|
|
2860
|
+
PalletNftsCollectionSetting: {
|
|
2861
|
+
_enum: string[];
|
|
2862
|
+
};
|
|
2863
|
+
/**
|
|
2864
|
+
* Lookup299: pallet_nfts::types::MintSettings<Price, BlockNumber, CollectionId>
|
|
2865
|
+
**/
|
|
2866
|
+
PalletNftsMintSettings: {
|
|
2867
|
+
mintType: string;
|
|
2868
|
+
price: string;
|
|
2869
|
+
startBlock: string;
|
|
2870
|
+
endBlock: string;
|
|
2871
|
+
defaultItemSettings: string;
|
|
2872
|
+
};
|
|
2873
|
+
/**
|
|
2874
|
+
* Lookup300: pallet_nfts::types::MintType<CollectionId>
|
|
2875
|
+
**/
|
|
2876
|
+
PalletNftsMintType: {
|
|
2877
|
+
_enum: {
|
|
2878
|
+
Issuer: string;
|
|
2879
|
+
Public: string;
|
|
2880
|
+
HolderOf: string;
|
|
2881
|
+
};
|
|
2882
|
+
};
|
|
2883
|
+
/**
|
|
2884
|
+
* Lookup302: pallet_nfts::types::ItemSetting
|
|
2885
|
+
**/
|
|
2886
|
+
PalletNftsItemSetting: {
|
|
2887
|
+
_enum: string[];
|
|
2888
|
+
};
|
|
2889
|
+
/**
|
|
2890
|
+
* Lookup303: pallet_nfts::types::DestroyWitness
|
|
2891
|
+
**/
|
|
2892
|
+
PalletNftsDestroyWitness: {
|
|
2893
|
+
itemMetadatas: string;
|
|
2894
|
+
itemConfigs: string;
|
|
2895
|
+
attributes: string;
|
|
2896
|
+
};
|
|
2897
|
+
/**
|
|
2898
|
+
* Lookup305: pallet_nfts::types::MintWitness<ItemId, Balance>
|
|
2899
|
+
**/
|
|
2900
|
+
PalletNftsMintWitness: {
|
|
2901
|
+
ownedItem: string;
|
|
2902
|
+
mintPrice: string;
|
|
2903
|
+
};
|
|
2904
|
+
/**
|
|
2905
|
+
* Lookup306: pallet_nfts::types::ItemConfig
|
|
2906
|
+
**/
|
|
2907
|
+
PalletNftsItemConfig: {
|
|
2908
|
+
settings: string;
|
|
2909
|
+
};
|
|
2910
|
+
/**
|
|
2911
|
+
* Lookup307: pallet_nfts::types::CancelAttributesApprovalWitness
|
|
2912
|
+
**/
|
|
2913
|
+
PalletNftsCancelAttributesApprovalWitness: {
|
|
2914
|
+
accountAttributes: string;
|
|
2915
|
+
};
|
|
2916
|
+
/**
|
|
2917
|
+
* Lookup309: pallet_nfts::types::ItemTip<CollectionId, ItemId, fp_account::AccountId20, Amount>
|
|
2918
|
+
**/
|
|
2919
|
+
PalletNftsItemTip: {
|
|
2920
|
+
collection: string;
|
|
2921
|
+
item: string;
|
|
2922
|
+
receiver: string;
|
|
2923
|
+
amount: string;
|
|
2924
|
+
};
|
|
2925
|
+
/**
|
|
2926
|
+
* Lookup311: pallet_nfts::types::PreSignedMint<CollectionId, ItemId, fp_account::AccountId20, Deadline, Balance>
|
|
2927
|
+
**/
|
|
2928
|
+
PalletNftsPreSignedMint: {
|
|
2929
|
+
collection: string;
|
|
2930
|
+
item: string;
|
|
2931
|
+
attributes: string;
|
|
2932
|
+
metadata: string;
|
|
2933
|
+
onlyAccount: string;
|
|
2934
|
+
deadline: string;
|
|
2935
|
+
mintPrice: string;
|
|
2936
|
+
};
|
|
2937
|
+
/**
|
|
2938
|
+
* Lookup312: pallet_nfts::types::PreSignedAttributes<CollectionId, ItemId, fp_account::AccountId20, Deadline>
|
|
2939
|
+
**/
|
|
2940
|
+
PalletNftsPreSignedAttributes: {
|
|
2941
|
+
collection: string;
|
|
2942
|
+
item: string;
|
|
2943
|
+
attributes: string;
|
|
2944
|
+
namespace: string;
|
|
2945
|
+
deadline: string;
|
|
2946
|
+
};
|
|
2947
|
+
/**
|
|
2948
|
+
* Lookup313: pallet_sudo::pallet::Error<T>
|
|
2949
|
+
**/
|
|
2950
|
+
PalletSudoError: {
|
|
2951
|
+
_enum: string[];
|
|
2952
|
+
};
|
|
2953
|
+
/**
|
|
2954
|
+
* Lookup315: fp_rpc::TransactionStatus
|
|
2955
|
+
**/
|
|
2956
|
+
FpRpcTransactionStatus: {
|
|
2957
|
+
transactionHash: string;
|
|
2958
|
+
transactionIndex: string;
|
|
2959
|
+
from: string;
|
|
2960
|
+
to: string;
|
|
2961
|
+
contractAddress: string;
|
|
2962
|
+
logs: string;
|
|
2963
|
+
logsBloom: string;
|
|
2964
|
+
};
|
|
2965
|
+
/**
|
|
2966
|
+
* Lookup318: ethbloom::Bloom
|
|
2967
|
+
**/
|
|
2968
|
+
EthbloomBloom: string;
|
|
2969
|
+
/**
|
|
2970
|
+
* Lookup320: ethereum::receipt::ReceiptV3
|
|
2971
|
+
**/
|
|
2972
|
+
EthereumReceiptReceiptV3: {
|
|
2973
|
+
_enum: {
|
|
2974
|
+
Legacy: string;
|
|
2975
|
+
EIP2930: string;
|
|
2976
|
+
EIP1559: string;
|
|
2977
|
+
};
|
|
2978
|
+
};
|
|
2979
|
+
/**
|
|
2980
|
+
* Lookup321: ethereum::receipt::EIP658ReceiptData
|
|
2981
|
+
**/
|
|
2982
|
+
EthereumReceiptEip658ReceiptData: {
|
|
2983
|
+
statusCode: string;
|
|
2984
|
+
usedGas: string;
|
|
2985
|
+
logsBloom: string;
|
|
2986
|
+
logs: string;
|
|
2987
|
+
};
|
|
2988
|
+
/**
|
|
2989
|
+
* Lookup322: ethereum::block::Block<ethereum::transaction::TransactionV2>
|
|
2990
|
+
**/
|
|
2991
|
+
EthereumBlock: {
|
|
2992
|
+
header: string;
|
|
2993
|
+
transactions: string;
|
|
2994
|
+
ommers: string;
|
|
2995
|
+
};
|
|
2996
|
+
/**
|
|
2997
|
+
* Lookup323: ethereum::header::Header
|
|
2998
|
+
**/
|
|
2999
|
+
EthereumHeader: {
|
|
3000
|
+
parentHash: string;
|
|
3001
|
+
ommersHash: string;
|
|
3002
|
+
beneficiary: string;
|
|
3003
|
+
stateRoot: string;
|
|
3004
|
+
transactionsRoot: string;
|
|
3005
|
+
receiptsRoot: string;
|
|
3006
|
+
logsBloom: string;
|
|
3007
|
+
difficulty: string;
|
|
3008
|
+
number: string;
|
|
3009
|
+
gasLimit: string;
|
|
3010
|
+
gasUsed: string;
|
|
3011
|
+
timestamp: string;
|
|
3012
|
+
extraData: string;
|
|
3013
|
+
mixHash: string;
|
|
3014
|
+
nonce: string;
|
|
3015
|
+
};
|
|
3016
|
+
/**
|
|
3017
|
+
* Lookup324: ethereum_types::hash::H64
|
|
3018
|
+
**/
|
|
3019
|
+
EthereumTypesHashH64: string;
|
|
3020
|
+
/**
|
|
3021
|
+
* Lookup329: pallet_ethereum::pallet::Error<T>
|
|
3022
|
+
**/
|
|
3023
|
+
PalletEthereumError: {
|
|
3024
|
+
_enum: string[];
|
|
3025
|
+
};
|
|
3026
|
+
/**
|
|
3027
|
+
* Lookup330: pallet_evm::CodeMetadata
|
|
3028
|
+
**/
|
|
3029
|
+
PalletEvmCodeMetadata: {
|
|
3030
|
+
_alias: {
|
|
3031
|
+
size_: string;
|
|
3032
|
+
hash_: string;
|
|
3033
|
+
};
|
|
3034
|
+
size_: string;
|
|
3035
|
+
hash_: string;
|
|
3036
|
+
};
|
|
3037
|
+
/**
|
|
3038
|
+
* Lookup332: pallet_evm::pallet::Error<T>
|
|
3039
|
+
**/
|
|
3040
|
+
PalletEvmError: {
|
|
3041
|
+
_enum: string[];
|
|
3042
|
+
};
|
|
3043
|
+
/**
|
|
3044
|
+
* Lookup333: pallet_storage_providers::types::SignUpRequest<T>
|
|
3045
|
+
**/
|
|
3046
|
+
PalletStorageProvidersSignUpRequest: {
|
|
3047
|
+
spSignUpRequest: string;
|
|
3048
|
+
at: string;
|
|
3049
|
+
};
|
|
3050
|
+
/**
|
|
3051
|
+
* Lookup334: pallet_storage_providers::types::SignUpRequestSpParams<T>
|
|
3052
|
+
**/
|
|
3053
|
+
PalletStorageProvidersSignUpRequestSpParams: {
|
|
3054
|
+
_enum: {
|
|
3055
|
+
BackupStorageProvider: string;
|
|
3056
|
+
MainStorageProvider: string;
|
|
3057
|
+
};
|
|
3058
|
+
};
|
|
3059
|
+
/**
|
|
3060
|
+
* Lookup335: pallet_storage_providers::types::BackupStorageProvider<T>
|
|
3061
|
+
**/
|
|
3062
|
+
PalletStorageProvidersBackupStorageProvider: {
|
|
3063
|
+
capacity: string;
|
|
3064
|
+
capacityUsed: string;
|
|
3065
|
+
multiaddresses: string;
|
|
3066
|
+
root: string;
|
|
3067
|
+
lastCapacityChange: string;
|
|
3068
|
+
ownerAccount: string;
|
|
3069
|
+
paymentAccount: string;
|
|
3070
|
+
reputationWeight: string;
|
|
3071
|
+
signUpBlock: string;
|
|
3072
|
+
};
|
|
3073
|
+
/**
|
|
3074
|
+
* Lookup336: pallet_storage_providers::types::MainStorageProviderSignUpRequest<T>
|
|
3075
|
+
**/
|
|
3076
|
+
PalletStorageProvidersMainStorageProviderSignUpRequest: {
|
|
3077
|
+
mspInfo: string;
|
|
3078
|
+
valueProp: string;
|
|
3079
|
+
};
|
|
3080
|
+
/**
|
|
3081
|
+
* Lookup337: pallet_storage_providers::types::MainStorageProvider<T>
|
|
3082
|
+
**/
|
|
3083
|
+
PalletStorageProvidersMainStorageProvider: {
|
|
3084
|
+
capacity: string;
|
|
3085
|
+
capacityUsed: string;
|
|
3086
|
+
multiaddresses: string;
|
|
3087
|
+
amountOfBuckets: string;
|
|
3088
|
+
amountOfValueProps: string;
|
|
3089
|
+
lastCapacityChange: string;
|
|
3090
|
+
ownerAccount: string;
|
|
3091
|
+
paymentAccount: string;
|
|
3092
|
+
signUpBlock: string;
|
|
3093
|
+
};
|
|
3094
|
+
/**
|
|
3095
|
+
* Lookup338: pallet_storage_providers::types::Bucket<T>
|
|
3096
|
+
**/
|
|
3097
|
+
PalletStorageProvidersBucket: {
|
|
3098
|
+
_alias: {
|
|
3099
|
+
size_: string;
|
|
3100
|
+
};
|
|
3101
|
+
root: string;
|
|
3102
|
+
userId: string;
|
|
3103
|
+
mspId: string;
|
|
3104
|
+
private: string;
|
|
3105
|
+
readAccessGroupId: string;
|
|
3106
|
+
size_: string;
|
|
3107
|
+
valuePropId: string;
|
|
3108
|
+
};
|
|
3109
|
+
/**
|
|
3110
|
+
* Lookup342: pallet_storage_providers::pallet::Error<T>
|
|
3111
|
+
**/
|
|
3112
|
+
PalletStorageProvidersError: {
|
|
3113
|
+
_enum: string[];
|
|
3114
|
+
};
|
|
3115
|
+
/**
|
|
3116
|
+
* Lookup343: pallet_file_system::types::StorageRequestMetadata<T>
|
|
3117
|
+
**/
|
|
3118
|
+
PalletFileSystemStorageRequestMetadata: {
|
|
3119
|
+
_alias: {
|
|
3120
|
+
size_: string;
|
|
3121
|
+
};
|
|
3122
|
+
requestedAt: string;
|
|
3123
|
+
expiresAt: string;
|
|
3124
|
+
owner: string;
|
|
3125
|
+
bucketId: string;
|
|
3126
|
+
location: string;
|
|
3127
|
+
fingerprint: string;
|
|
3128
|
+
size_: string;
|
|
3129
|
+
msp: string;
|
|
3130
|
+
userPeerIds: string;
|
|
3131
|
+
bspsRequired: string;
|
|
3132
|
+
bspsConfirmed: string;
|
|
3133
|
+
bspsVolunteered: string;
|
|
3134
|
+
depositPaid: string;
|
|
3135
|
+
};
|
|
3136
|
+
/**
|
|
3137
|
+
* Lookup346: pallet_file_system::types::StorageRequestBspsMetadata<T>
|
|
3138
|
+
**/
|
|
3139
|
+
PalletFileSystemStorageRequestBspsMetadata: {
|
|
3140
|
+
confirmed: string;
|
|
3141
|
+
};
|
|
3142
|
+
/**
|
|
3143
|
+
* Lookup349: pallet_file_system::types::PendingFileDeletionRequest<T>
|
|
3144
|
+
**/
|
|
3145
|
+
PalletFileSystemPendingFileDeletionRequest: {
|
|
3146
|
+
user: string;
|
|
3147
|
+
fileKey: string;
|
|
3148
|
+
bucketId: string;
|
|
3149
|
+
fileSize: string;
|
|
3150
|
+
depositPaidForCreation: string;
|
|
3151
|
+
queuePriorityChallenge: string;
|
|
3152
|
+
};
|
|
3153
|
+
/**
|
|
3154
|
+
* Lookup351: pallet_file_system::types::PendingStopStoringRequest<T>
|
|
3155
|
+
**/
|
|
3156
|
+
PalletFileSystemPendingStopStoringRequest: {
|
|
3157
|
+
tickWhenRequested: string;
|
|
3158
|
+
fileOwner: string;
|
|
3159
|
+
fileSize: string;
|
|
3160
|
+
};
|
|
3161
|
+
/**
|
|
3162
|
+
* Lookup352: pallet_file_system::types::MoveBucketRequestMetadata<T>
|
|
3163
|
+
**/
|
|
3164
|
+
PalletFileSystemMoveBucketRequestMetadata: {
|
|
3165
|
+
requester: string;
|
|
3166
|
+
newMspId: string;
|
|
3167
|
+
newValuePropId: string;
|
|
3168
|
+
};
|
|
3169
|
+
/**
|
|
3170
|
+
* Lookup353: pallet_file_system::types::IncompleteStorageRequestMetadata<T>
|
|
3171
|
+
**/
|
|
3172
|
+
PalletFileSystemIncompleteStorageRequestMetadata: {
|
|
3173
|
+
owner: string;
|
|
3174
|
+
bucketId: string;
|
|
3175
|
+
location: string;
|
|
3176
|
+
fileSize: string;
|
|
3177
|
+
fingerprint: string;
|
|
3178
|
+
pendingBspRemovals: string;
|
|
3179
|
+
pendingBucketRemoval: string;
|
|
3180
|
+
};
|
|
3181
|
+
/**
|
|
3182
|
+
* Lookup355: pallet_file_system::pallet::Error<T>
|
|
3183
|
+
**/
|
|
3184
|
+
PalletFileSystemError: {
|
|
3185
|
+
_enum: string[];
|
|
3186
|
+
};
|
|
3187
|
+
/**
|
|
3188
|
+
* Lookup357: pallet_proofs_dealer::types::ProofSubmissionRecord<T>
|
|
3189
|
+
**/
|
|
3190
|
+
PalletProofsDealerProofSubmissionRecord: {
|
|
3191
|
+
lastTickProven: string;
|
|
3192
|
+
nextTickToSubmitProofFor: string;
|
|
3193
|
+
};
|
|
3194
|
+
/**
|
|
3195
|
+
* Lookup364: pallet_proofs_dealer::pallet::Error<T>
|
|
3196
|
+
**/
|
|
3197
|
+
PalletProofsDealerError: {
|
|
3198
|
+
_enum: string[];
|
|
3199
|
+
};
|
|
3200
|
+
/**
|
|
3201
|
+
* Lookup366: pallet_payment_streams::types::FixedRatePaymentStream<T>
|
|
3202
|
+
**/
|
|
3203
|
+
PalletPaymentStreamsFixedRatePaymentStream: {
|
|
3204
|
+
rate: string;
|
|
3205
|
+
lastChargedTick: string;
|
|
3206
|
+
userDeposit: string;
|
|
3207
|
+
outOfFundsTick: string;
|
|
3208
|
+
};
|
|
3209
|
+
/**
|
|
3210
|
+
* Lookup367: pallet_payment_streams::types::DynamicRatePaymentStream<T>
|
|
3211
|
+
**/
|
|
3212
|
+
PalletPaymentStreamsDynamicRatePaymentStream: {
|
|
3213
|
+
amountProvided: string;
|
|
3214
|
+
priceIndexWhenLastCharged: string;
|
|
3215
|
+
userDeposit: string;
|
|
3216
|
+
outOfFundsTick: string;
|
|
3217
|
+
};
|
|
3218
|
+
/**
|
|
3219
|
+
* Lookup368: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
|
|
3220
|
+
**/
|
|
3221
|
+
PalletPaymentStreamsProviderLastChargeableInfo: {
|
|
3222
|
+
lastChargeableTick: string;
|
|
3223
|
+
priceIndex: string;
|
|
3224
|
+
};
|
|
3225
|
+
/**
|
|
3226
|
+
* Lookup369: pallet_payment_streams::pallet::Error<T>
|
|
3227
|
+
**/
|
|
3228
|
+
PalletPaymentStreamsError: {
|
|
3229
|
+
_enum: string[];
|
|
3230
|
+
};
|
|
3231
|
+
/**
|
|
3232
|
+
* Lookup370: pallet_bucket_nfts::pallet::Error<T>
|
|
3233
|
+
**/
|
|
3234
|
+
PalletBucketNftsError: {
|
|
3235
|
+
_enum: string[];
|
|
3236
|
+
};
|
|
3237
|
+
/**
|
|
3238
|
+
* Lookup371: pallet_nfts::types::CollectionDetails<fp_account::AccountId20, DepositBalance>
|
|
3239
|
+
**/
|
|
3240
|
+
PalletNftsCollectionDetails: {
|
|
3241
|
+
owner: string;
|
|
3242
|
+
ownerDeposit: string;
|
|
3243
|
+
items: string;
|
|
3244
|
+
itemMetadatas: string;
|
|
3245
|
+
itemConfigs: string;
|
|
3246
|
+
attributes: string;
|
|
3247
|
+
};
|
|
3248
|
+
/**
|
|
3249
|
+
* Lookup376: pallet_nfts::types::CollectionRole
|
|
3250
|
+
**/
|
|
3251
|
+
PalletNftsCollectionRole: {
|
|
3252
|
+
_enum: string[];
|
|
3253
|
+
};
|
|
3254
|
+
/**
|
|
3255
|
+
* Lookup377: pallet_nfts::types::ItemDetails<fp_account::AccountId20, pallet_nfts::types::ItemDeposit<DepositBalance, fp_account::AccountId20>, bounded_collections::bounded_btree_map::BoundedBTreeMap<fp_account::AccountId20, Option<T>, S>>
|
|
3256
|
+
**/
|
|
3257
|
+
PalletNftsItemDetails: {
|
|
3258
|
+
owner: string;
|
|
3259
|
+
approvals: string;
|
|
3260
|
+
deposit: string;
|
|
3261
|
+
};
|
|
3262
|
+
/**
|
|
3263
|
+
* Lookup378: pallet_nfts::types::ItemDeposit<DepositBalance, fp_account::AccountId20>
|
|
3264
|
+
**/
|
|
3265
|
+
PalletNftsItemDeposit: {
|
|
3266
|
+
account: string;
|
|
3267
|
+
amount: string;
|
|
3268
|
+
};
|
|
3269
|
+
/**
|
|
3270
|
+
* Lookup383: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
|
|
3271
|
+
**/
|
|
3272
|
+
PalletNftsCollectionMetadata: {
|
|
3273
|
+
deposit: string;
|
|
3274
|
+
data: string;
|
|
3275
|
+
};
|
|
3276
|
+
/**
|
|
3277
|
+
* Lookup384: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, fp_account::AccountId20>, StringLimit>
|
|
3278
|
+
**/
|
|
3279
|
+
PalletNftsItemMetadata: {
|
|
3280
|
+
deposit: string;
|
|
3281
|
+
data: string;
|
|
3282
|
+
};
|
|
3283
|
+
/**
|
|
3284
|
+
* Lookup385: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, fp_account::AccountId20>
|
|
3285
|
+
**/
|
|
3286
|
+
PalletNftsItemMetadataDeposit: {
|
|
3287
|
+
account: string;
|
|
3288
|
+
amount: string;
|
|
3289
|
+
};
|
|
3290
|
+
/**
|
|
3291
|
+
* Lookup388: pallet_nfts::types::AttributeDeposit<DepositBalance, fp_account::AccountId20>
|
|
3292
|
+
**/
|
|
3293
|
+
PalletNftsAttributeDeposit: {
|
|
3294
|
+
account: string;
|
|
3295
|
+
amount: string;
|
|
3296
|
+
};
|
|
3297
|
+
/**
|
|
3298
|
+
* Lookup392: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
|
|
3299
|
+
**/
|
|
3300
|
+
PalletNftsPendingSwap: {
|
|
3301
|
+
desiredCollection: string;
|
|
3302
|
+
desiredItem: string;
|
|
3303
|
+
price: string;
|
|
3304
|
+
deadline: string;
|
|
3305
|
+
};
|
|
3306
|
+
/**
|
|
3307
|
+
* Lookup394: pallet_nfts::types::PalletFeature
|
|
3308
|
+
**/
|
|
3309
|
+
PalletNftsPalletFeature: {
|
|
3310
|
+
_enum: string[];
|
|
3311
|
+
};
|
|
3312
|
+
/**
|
|
3313
|
+
* Lookup395: pallet_nfts::pallet::Error<T, I>
|
|
3314
|
+
**/
|
|
3315
|
+
PalletNftsError: {
|
|
3316
|
+
_enum: string[];
|
|
3317
|
+
};
|
|
3318
|
+
/**
|
|
3319
|
+
* Lookup398: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
3320
|
+
**/
|
|
3321
|
+
FrameSystemExtensionsCheckNonZeroSender: string;
|
|
3322
|
+
/**
|
|
3323
|
+
* Lookup399: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
3324
|
+
**/
|
|
3325
|
+
FrameSystemExtensionsCheckSpecVersion: string;
|
|
3326
|
+
/**
|
|
3327
|
+
* Lookup400: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
3328
|
+
**/
|
|
3329
|
+
FrameSystemExtensionsCheckTxVersion: string;
|
|
3330
|
+
/**
|
|
3331
|
+
* Lookup401: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
3332
|
+
**/
|
|
3333
|
+
FrameSystemExtensionsCheckGenesis: string;
|
|
3334
|
+
/**
|
|
3335
|
+
* Lookup404: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
3336
|
+
**/
|
|
3337
|
+
FrameSystemExtensionsCheckNonce: string;
|
|
3338
|
+
/**
|
|
3339
|
+
* Lookup405: frame_system::extensions::check_weight::CheckWeight<T>
|
|
3340
|
+
**/
|
|
3341
|
+
FrameSystemExtensionsCheckWeight: string;
|
|
3342
|
+
/**
|
|
3343
|
+
* Lookup406: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
3344
|
+
**/
|
|
3345
|
+
PalletTransactionPaymentChargeTransactionPayment: string;
|
|
3346
|
+
/**
|
|
3347
|
+
* Lookup407: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
3348
|
+
**/
|
|
3349
|
+
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
3350
|
+
mode: string;
|
|
3351
|
+
};
|
|
3352
|
+
/**
|
|
3353
|
+
* Lookup408: frame_metadata_hash_extension::Mode
|
|
3354
|
+
**/
|
|
3355
|
+
FrameMetadataHashExtensionMode: {
|
|
3356
|
+
_enum: string[];
|
|
3357
|
+
};
|
|
3358
|
+
/**
|
|
3359
|
+
* Lookup410: sh_solochain_evm_runtime::Runtime
|
|
3360
|
+
**/
|
|
3361
|
+
ShSolochainEvmRuntimeRuntime: string;
|
|
3362
|
+
};
|
|
3363
|
+
export default _default;
|