1 | import type { PortableRegistry } from '@polkadot/types';
|
2 | import type { BTreeMap, Bytes, Enum, Option, Struct, Text, Type, Vec, WrapperOpaque, bool, u8 } from '@polkadot/types-codec';
|
3 | import type { Si1Field, Si1LookupTypeId, Si1Type, SiLookupTypeId } from '@polkadot/types/interfaces/scaleInfo';
|
4 |
|
5 | export interface CustomMetadata15 extends Struct {
|
6 | readonly map: BTreeMap<Text, CustomValueMetadata15>;
|
7 | }
|
8 |
|
9 | export interface CustomValueMetadata15 extends Struct {
|
10 | readonly type: SiLookupTypeId;
|
11 | readonly value: Bytes;
|
12 | }
|
13 |
|
14 | export interface ErrorMetadataLatest extends ErrorMetadataV14 {
|
15 | }
|
16 |
|
17 | export interface ErrorMetadataV10 extends ErrorMetadataV9 {
|
18 | }
|
19 |
|
20 | export interface ErrorMetadataV11 extends ErrorMetadataV10 {
|
21 | }
|
22 |
|
23 | export interface ErrorMetadataV12 extends ErrorMetadataV11 {
|
24 | }
|
25 |
|
26 | export interface ErrorMetadataV13 extends ErrorMetadataV12 {
|
27 | }
|
28 |
|
29 | export interface ErrorMetadataV14 extends Struct {
|
30 | readonly name: Text;
|
31 | readonly fields: Vec<Si1Field>;
|
32 | readonly index: u8;
|
33 | readonly docs: Vec<Text>;
|
34 | readonly args: Vec<Type>;
|
35 | }
|
36 |
|
37 | export interface ErrorMetadataV9 extends Struct {
|
38 | readonly name: Text;
|
39 | readonly docs: Vec<Text>;
|
40 | }
|
41 |
|
42 | export interface EventMetadataLatest extends EventMetadataV14 {
|
43 | }
|
44 |
|
45 | export interface EventMetadataV10 extends EventMetadataV9 {
|
46 | }
|
47 |
|
48 | export interface EventMetadataV11 extends EventMetadataV10 {
|
49 | }
|
50 |
|
51 | export interface EventMetadataV12 extends EventMetadataV11 {
|
52 | }
|
53 |
|
54 | export interface EventMetadataV13 extends EventMetadataV12 {
|
55 | }
|
56 |
|
57 | export interface EventMetadataV14 extends Struct {
|
58 | readonly name: Text;
|
59 | readonly fields: Vec<Si1Field>;
|
60 | readonly index: u8;
|
61 | readonly docs: Vec<Text>;
|
62 | readonly args: Vec<Type>;
|
63 | }
|
64 |
|
65 | export interface EventMetadataV9 extends Struct {
|
66 | readonly name: Text;
|
67 | readonly args: Vec<Type>;
|
68 | readonly docs: Vec<Text>;
|
69 | }
|
70 |
|
71 | export interface ExtrinsicMetadataLatest extends ExtrinsicMetadataV15 {
|
72 | }
|
73 |
|
74 | export interface ExtrinsicMetadataV11 extends Struct {
|
75 | readonly version: u8;
|
76 | readonly signedExtensions: Vec<Text>;
|
77 | }
|
78 |
|
79 | export interface ExtrinsicMetadataV12 extends ExtrinsicMetadataV11 {
|
80 | }
|
81 |
|
82 | export interface ExtrinsicMetadataV13 extends ExtrinsicMetadataV12 {
|
83 | }
|
84 |
|
85 | export interface ExtrinsicMetadataV14 extends Struct {
|
86 | readonly type: SiLookupTypeId;
|
87 | readonly version: u8;
|
88 | readonly signedExtensions: Vec<SignedExtensionMetadataV14>;
|
89 | }
|
90 |
|
91 | export interface ExtrinsicMetadataV15 extends Struct {
|
92 | readonly version: u8;
|
93 | readonly addressType: SiLookupTypeId;
|
94 | readonly callType: SiLookupTypeId;
|
95 | readonly signatureType: SiLookupTypeId;
|
96 | readonly extraType: SiLookupTypeId;
|
97 | readonly signedExtensions: Vec<SignedExtensionMetadataV14>;
|
98 | }
|
99 |
|
100 | export interface FunctionArgumentMetadataLatest extends FunctionArgumentMetadataV14 {
|
101 | }
|
102 |
|
103 | export interface FunctionArgumentMetadataV10 extends FunctionArgumentMetadataV9 {
|
104 | }
|
105 |
|
106 | export interface FunctionArgumentMetadataV11 extends FunctionArgumentMetadataV10 {
|
107 | }
|
108 |
|
109 | export interface FunctionArgumentMetadataV12 extends FunctionArgumentMetadataV11 {
|
110 | }
|
111 |
|
112 | export interface FunctionArgumentMetadataV13 extends FunctionArgumentMetadataV12 {
|
113 | }
|
114 |
|
115 | export interface FunctionArgumentMetadataV14 extends Struct {
|
116 | readonly name: Text;
|
117 | readonly type: Type;
|
118 | readonly typeName: Option<Type>;
|
119 | }
|
120 |
|
121 | export interface FunctionArgumentMetadataV9 extends Struct {
|
122 | readonly name: Text;
|
123 | readonly type: Type;
|
124 | }
|
125 |
|
126 | export interface FunctionMetadataLatest extends FunctionMetadataV14 {
|
127 | }
|
128 |
|
129 | export interface FunctionMetadataV10 extends FunctionMetadataV9 {
|
130 | }
|
131 |
|
132 | export interface FunctionMetadataV11 extends FunctionMetadataV10 {
|
133 | }
|
134 |
|
135 | export interface FunctionMetadataV12 extends FunctionMetadataV11 {
|
136 | }
|
137 |
|
138 | export interface FunctionMetadataV13 extends FunctionMetadataV12 {
|
139 | }
|
140 |
|
141 | export interface FunctionMetadataV14 extends Struct {
|
142 | readonly name: Text;
|
143 | readonly fields: Vec<Si1Field>;
|
144 | readonly index: u8;
|
145 | readonly docs: Vec<Text>;
|
146 | readonly args: Vec<FunctionArgumentMetadataV14>;
|
147 | }
|
148 |
|
149 | export interface FunctionMetadataV9 extends Struct {
|
150 | readonly name: Text;
|
151 | readonly args: Vec<FunctionArgumentMetadataV9>;
|
152 | readonly docs: Vec<Text>;
|
153 | }
|
154 |
|
155 | export interface MetadataAll extends Enum {
|
156 | readonly isV9: boolean;
|
157 | readonly asV9: MetadataV9;
|
158 | readonly isV10: boolean;
|
159 | readonly asV10: MetadataV10;
|
160 | readonly isV11: boolean;
|
161 | readonly asV11: MetadataV11;
|
162 | readonly isV12: boolean;
|
163 | readonly asV12: MetadataV12;
|
164 | readonly isV13: boolean;
|
165 | readonly asV13: MetadataV13;
|
166 | readonly isV14: boolean;
|
167 | readonly asV14: MetadataV14;
|
168 | readonly isV15: boolean;
|
169 | readonly asV15: MetadataV15;
|
170 | readonly type: 'V0' | 'V1' | 'V2' | 'V3' | 'V4' | 'V5' | 'V6' | 'V7' | 'V8' | 'V9' | 'V10' | 'V11' | 'V12' | 'V13' | 'V14' | 'V15';
|
171 | }
|
172 |
|
173 | export interface MetadataLatest extends MetadataV15 {
|
174 | }
|
175 |
|
176 | export interface MetadataV10 extends Struct {
|
177 | readonly modules: Vec<ModuleMetadataV10>;
|
178 | }
|
179 |
|
180 | export interface MetadataV11 extends Struct {
|
181 | readonly modules: Vec<ModuleMetadataV11>;
|
182 | readonly extrinsic: ExtrinsicMetadataV11;
|
183 | }
|
184 |
|
185 | export interface MetadataV12 extends Struct {
|
186 | readonly modules: Vec<ModuleMetadataV12>;
|
187 | readonly extrinsic: ExtrinsicMetadataV12;
|
188 | }
|
189 |
|
190 | export interface MetadataV13 extends Struct {
|
191 | readonly modules: Vec<ModuleMetadataV13>;
|
192 | readonly extrinsic: ExtrinsicMetadataV13;
|
193 | }
|
194 |
|
195 | export interface MetadataV14 extends Struct {
|
196 | readonly lookup: PortableRegistry;
|
197 | readonly pallets: Vec<PalletMetadataV14>;
|
198 | readonly extrinsic: ExtrinsicMetadataV14;
|
199 | readonly type: SiLookupTypeId;
|
200 | }
|
201 |
|
202 | export interface MetadataV15 extends Struct {
|
203 | readonly lookup: PortableRegistry;
|
204 | readonly pallets: Vec<PalletMetadataV15>;
|
205 | readonly extrinsic: ExtrinsicMetadataV15;
|
206 | readonly type: SiLookupTypeId;
|
207 | readonly apis: Vec<RuntimeApiMetadataV15>;
|
208 | readonly outerEnums: OuterEnums15;
|
209 | readonly custom: CustomMetadata15;
|
210 | }
|
211 |
|
212 | export interface MetadataV9 extends Struct {
|
213 | readonly modules: Vec<ModuleMetadataV9>;
|
214 | }
|
215 |
|
216 | export interface ModuleConstantMetadataV10 extends ModuleConstantMetadataV9 {
|
217 | }
|
218 |
|
219 | export interface ModuleConstantMetadataV11 extends ModuleConstantMetadataV10 {
|
220 | }
|
221 |
|
222 | export interface ModuleConstantMetadataV12 extends ModuleConstantMetadataV11 {
|
223 | }
|
224 |
|
225 | export interface ModuleConstantMetadataV13 extends ModuleConstantMetadataV12 {
|
226 | }
|
227 |
|
228 | export interface ModuleConstantMetadataV9 extends Struct {
|
229 | readonly name: Text;
|
230 | readonly type: Type;
|
231 | readonly value: Bytes;
|
232 | readonly docs: Vec<Text>;
|
233 | }
|
234 |
|
235 | export interface ModuleMetadataV10 extends Struct {
|
236 | readonly name: Text;
|
237 | readonly storage: Option<StorageMetadataV10>;
|
238 | readonly calls: Option<Vec<FunctionMetadataV10>>;
|
239 | readonly events: Option<Vec<EventMetadataV10>>;
|
240 | readonly constants: Vec<ModuleConstantMetadataV10>;
|
241 | readonly errors: Vec<ErrorMetadataV10>;
|
242 | }
|
243 |
|
244 | export interface ModuleMetadataV11 extends Struct {
|
245 | readonly name: Text;
|
246 | readonly storage: Option<StorageMetadataV11>;
|
247 | readonly calls: Option<Vec<FunctionMetadataV11>>;
|
248 | readonly events: Option<Vec<EventMetadataV11>>;
|
249 | readonly constants: Vec<ModuleConstantMetadataV11>;
|
250 | readonly errors: Vec<ErrorMetadataV11>;
|
251 | }
|
252 |
|
253 | export interface ModuleMetadataV12 extends Struct {
|
254 | readonly name: Text;
|
255 | readonly storage: Option<StorageMetadataV12>;
|
256 | readonly calls: Option<Vec<FunctionMetadataV12>>;
|
257 | readonly events: Option<Vec<EventMetadataV12>>;
|
258 | readonly constants: Vec<ModuleConstantMetadataV12>;
|
259 | readonly errors: Vec<ErrorMetadataV12>;
|
260 | readonly index: u8;
|
261 | }
|
262 |
|
263 | export interface ModuleMetadataV13 extends Struct {
|
264 | readonly name: Text;
|
265 | readonly storage: Option<StorageMetadataV13>;
|
266 | readonly calls: Option<Vec<FunctionMetadataV13>>;
|
267 | readonly events: Option<Vec<EventMetadataV13>>;
|
268 | readonly constants: Vec<ModuleConstantMetadataV13>;
|
269 | readonly errors: Vec<ErrorMetadataV13>;
|
270 | readonly index: u8;
|
271 | }
|
272 |
|
273 | export interface ModuleMetadataV9 extends Struct {
|
274 | readonly name: Text;
|
275 | readonly storage: Option<StorageMetadataV9>;
|
276 | readonly calls: Option<Vec<FunctionMetadataV9>>;
|
277 | readonly events: Option<Vec<EventMetadataV9>>;
|
278 | readonly constants: Vec<ModuleConstantMetadataV9>;
|
279 | readonly errors: Vec<ErrorMetadataV9>;
|
280 | }
|
281 |
|
282 | export interface OpaqueMetadata extends WrapperOpaque<Bytes> {
|
283 | }
|
284 |
|
285 | export interface OuterEnums15 extends Struct {
|
286 | readonly callType: SiLookupTypeId;
|
287 | readonly eventType: SiLookupTypeId;
|
288 | readonly errorType: SiLookupTypeId;
|
289 | }
|
290 |
|
291 | export interface PalletCallMetadataLatest extends PalletCallMetadataV14 {
|
292 | }
|
293 |
|
294 | export interface PalletCallMetadataV14 extends Struct {
|
295 | readonly type: SiLookupTypeId;
|
296 | }
|
297 |
|
298 | export interface PalletConstantMetadataLatest extends PalletConstantMetadataV14 {
|
299 | }
|
300 |
|
301 | export interface PalletConstantMetadataV14 extends Struct {
|
302 | readonly name: Text;
|
303 | readonly type: SiLookupTypeId;
|
304 | readonly value: Bytes;
|
305 | readonly docs: Vec<Text>;
|
306 | }
|
307 |
|
308 | export interface PalletErrorMetadataLatest extends PalletErrorMetadataV14 {
|
309 | }
|
310 |
|
311 | export interface PalletErrorMetadataV14 extends Struct {
|
312 | readonly type: SiLookupTypeId;
|
313 | }
|
314 |
|
315 | export interface PalletEventMetadataLatest extends PalletEventMetadataV14 {
|
316 | }
|
317 |
|
318 | export interface PalletEventMetadataV14 extends Struct {
|
319 | readonly type: SiLookupTypeId;
|
320 | }
|
321 |
|
322 | export interface PalletMetadataLatest extends PalletMetadataV15 {
|
323 | }
|
324 |
|
325 | export interface PalletMetadataV14 extends Struct {
|
326 | readonly name: Text;
|
327 | readonly storage: Option<PalletStorageMetadataV14>;
|
328 | readonly calls: Option<PalletCallMetadataV14>;
|
329 | readonly events: Option<PalletEventMetadataV14>;
|
330 | readonly constants: Vec<PalletConstantMetadataV14>;
|
331 | readonly errors: Option<PalletErrorMetadataV14>;
|
332 | readonly index: u8;
|
333 | }
|
334 |
|
335 | export interface PalletMetadataV15 extends Struct {
|
336 | readonly name: Text;
|
337 | readonly storage: Option<PalletStorageMetadataV14>;
|
338 | readonly calls: Option<PalletCallMetadataV14>;
|
339 | readonly events: Option<PalletEventMetadataV14>;
|
340 | readonly constants: Vec<PalletConstantMetadataV14>;
|
341 | readonly errors: Option<PalletErrorMetadataV14>;
|
342 | readonly index: u8;
|
343 | readonly docs: Vec<Text>;
|
344 | }
|
345 |
|
346 | export interface PalletStorageMetadataLatest extends PalletStorageMetadataV14 {
|
347 | }
|
348 |
|
349 | export interface PalletStorageMetadataV14 extends Struct {
|
350 | readonly prefix: Text;
|
351 | readonly items: Vec<StorageEntryMetadataV14>;
|
352 | }
|
353 |
|
354 | export interface PortableType extends PortableTypeV14 {
|
355 | }
|
356 |
|
357 | export interface PortableTypeV14 extends Struct {
|
358 | readonly id: Si1LookupTypeId;
|
359 | readonly type: Si1Type;
|
360 | }
|
361 |
|
362 | export interface RuntimeApiMetadataLatest extends RuntimeApiMetadataV15 {
|
363 | }
|
364 |
|
365 | export interface RuntimeApiMetadataV15 extends Struct {
|
366 | readonly name: Text;
|
367 | readonly methods: Vec<RuntimeApiMethodMetadataV15>;
|
368 | readonly docs: Vec<Text>;
|
369 | }
|
370 |
|
371 | export interface RuntimeApiMethodMetadataV15 extends Struct {
|
372 | readonly name: Text;
|
373 | readonly inputs: Vec<RuntimeApiMethodParamMetadataV15>;
|
374 | readonly output: SiLookupTypeId;
|
375 | readonly docs: Vec<Text>;
|
376 | }
|
377 |
|
378 | export interface RuntimeApiMethodParamMetadataV15 extends Struct {
|
379 | readonly name: Text;
|
380 | readonly type: SiLookupTypeId;
|
381 | }
|
382 |
|
383 | export interface SignedExtensionMetadataLatest extends SignedExtensionMetadataV14 {
|
384 | }
|
385 |
|
386 | export interface SignedExtensionMetadataV14 extends Struct {
|
387 | readonly identifier: Text;
|
388 | readonly type: SiLookupTypeId;
|
389 | readonly additionalSigned: SiLookupTypeId;
|
390 | }
|
391 |
|
392 | export interface StorageEntryMetadataLatest extends StorageEntryMetadataV14 {
|
393 | }
|
394 |
|
395 | export interface StorageEntryMetadataV10 extends Struct {
|
396 | readonly name: Text;
|
397 | readonly modifier: StorageEntryModifierV10;
|
398 | readonly type: StorageEntryTypeV10;
|
399 | readonly fallback: Bytes;
|
400 | readonly docs: Vec<Text>;
|
401 | }
|
402 |
|
403 | export interface StorageEntryMetadataV11 extends Struct {
|
404 | readonly name: Text;
|
405 | readonly modifier: StorageEntryModifierV11;
|
406 | readonly type: StorageEntryTypeV11;
|
407 | readonly fallback: Bytes;
|
408 | readonly docs: Vec<Text>;
|
409 | }
|
410 |
|
411 | export interface StorageEntryMetadataV12 extends StorageEntryMetadataV11 {
|
412 | }
|
413 |
|
414 | export interface StorageEntryMetadataV13 extends Struct {
|
415 | readonly name: Text;
|
416 | readonly modifier: StorageEntryModifierV13;
|
417 | readonly type: StorageEntryTypeV13;
|
418 | readonly fallback: Bytes;
|
419 | readonly docs: Vec<Text>;
|
420 | }
|
421 |
|
422 | export interface StorageEntryMetadataV14 extends Struct {
|
423 | readonly name: Text;
|
424 | readonly modifier: StorageEntryModifierV14;
|
425 | readonly type: StorageEntryTypeV14;
|
426 | readonly fallback: Bytes;
|
427 | readonly docs: Vec<Text>;
|
428 | }
|
429 |
|
430 | export interface StorageEntryMetadataV9 extends Struct {
|
431 | readonly name: Text;
|
432 | readonly modifier: StorageEntryModifierV9;
|
433 | readonly type: StorageEntryTypeV9;
|
434 | readonly fallback: Bytes;
|
435 | readonly docs: Vec<Text>;
|
436 | }
|
437 |
|
438 | export interface StorageEntryModifierLatest extends StorageEntryModifierV14 {
|
439 | }
|
440 |
|
441 | export interface StorageEntryModifierV10 extends StorageEntryModifierV9 {
|
442 | }
|
443 |
|
444 | export interface StorageEntryModifierV11 extends StorageEntryModifierV10 {
|
445 | }
|
446 |
|
447 | export interface StorageEntryModifierV12 extends StorageEntryModifierV11 {
|
448 | }
|
449 |
|
450 | export interface StorageEntryModifierV13 extends StorageEntryModifierV12 {
|
451 | }
|
452 |
|
453 | export interface StorageEntryModifierV14 extends StorageEntryModifierV13 {
|
454 | }
|
455 |
|
456 | export interface StorageEntryModifierV9 extends Enum {
|
457 | readonly isOptional: boolean;
|
458 | readonly isDefault: boolean;
|
459 | readonly isRequired: boolean;
|
460 | readonly type: 'Optional' | 'Default' | 'Required';
|
461 | }
|
462 |
|
463 | export interface StorageEntryTypeLatest extends StorageEntryTypeV14 {
|
464 | }
|
465 |
|
466 | export interface StorageEntryTypeV10 extends Enum {
|
467 | readonly isPlain: boolean;
|
468 | readonly asPlain: Type;
|
469 | readonly isMap: boolean;
|
470 | readonly asMap: {
|
471 | readonly hasher: StorageHasherV10;
|
472 | readonly key: Type;
|
473 | readonly value: Type;
|
474 | readonly linked: bool;
|
475 | } & Struct;
|
476 | readonly isDoubleMap: boolean;
|
477 | readonly asDoubleMap: {
|
478 | readonly hasher: StorageHasherV10;
|
479 | readonly key1: Type;
|
480 | readonly key2: Type;
|
481 | readonly value: Type;
|
482 | readonly key2Hasher: StorageHasherV10;
|
483 | } & Struct;
|
484 | readonly type: 'Plain' | 'Map' | 'DoubleMap';
|
485 | }
|
486 |
|
487 | export interface StorageEntryTypeV11 extends Enum {
|
488 | readonly isPlain: boolean;
|
489 | readonly asPlain: Type;
|
490 | readonly isMap: boolean;
|
491 | readonly asMap: {
|
492 | readonly hasher: StorageHasherV11;
|
493 | readonly key: Type;
|
494 | readonly value: Type;
|
495 | readonly linked: bool;
|
496 | } & Struct;
|
497 | readonly isDoubleMap: boolean;
|
498 | readonly asDoubleMap: {
|
499 | readonly hasher: StorageHasherV11;
|
500 | readonly key1: Type;
|
501 | readonly key2: Type;
|
502 | readonly value: Type;
|
503 | readonly key2Hasher: StorageHasherV11;
|
504 | } & Struct;
|
505 | readonly type: 'Plain' | 'Map' | 'DoubleMap';
|
506 | }
|
507 |
|
508 | export interface StorageEntryTypeV12 extends StorageEntryTypeV11 {
|
509 | }
|
510 |
|
511 | export interface StorageEntryTypeV13 extends Enum {
|
512 | readonly isPlain: boolean;
|
513 | readonly asPlain: Type;
|
514 | readonly isMap: boolean;
|
515 | readonly asMap: {
|
516 | readonly hasher: StorageHasherV13;
|
517 | readonly key: Type;
|
518 | readonly value: Type;
|
519 | readonly linked: bool;
|
520 | } & Struct;
|
521 | readonly isDoubleMap: boolean;
|
522 | readonly asDoubleMap: {
|
523 | readonly hasher: StorageHasherV13;
|
524 | readonly key1: Type;
|
525 | readonly key2: Type;
|
526 | readonly value: Type;
|
527 | readonly key2Hasher: StorageHasherV13;
|
528 | } & Struct;
|
529 | readonly isNMap: boolean;
|
530 | readonly asNMap: {
|
531 | readonly keyVec: Vec<Type>;
|
532 | readonly hashers: Vec<StorageHasherV13>;
|
533 | readonly value: Type;
|
534 | } & Struct;
|
535 | readonly type: 'Plain' | 'Map' | 'DoubleMap' | 'NMap';
|
536 | }
|
537 |
|
538 | export interface StorageEntryTypeV14 extends Enum {
|
539 | readonly isPlain: boolean;
|
540 | readonly asPlain: SiLookupTypeId;
|
541 | readonly isMap: boolean;
|
542 | readonly asMap: {
|
543 | readonly hashers: Vec<StorageHasherV14>;
|
544 | readonly key: SiLookupTypeId;
|
545 | readonly value: SiLookupTypeId;
|
546 | } & Struct;
|
547 | readonly type: 'Plain' | 'Map';
|
548 | }
|
549 |
|
550 | export interface StorageEntryTypeV9 extends Enum {
|
551 | readonly isPlain: boolean;
|
552 | readonly asPlain: Type;
|
553 | readonly isMap: boolean;
|
554 | readonly asMap: {
|
555 | readonly hasher: StorageHasherV9;
|
556 | readonly key: Type;
|
557 | readonly value: Type;
|
558 | readonly linked: bool;
|
559 | } & Struct;
|
560 | readonly isDoubleMap: boolean;
|
561 | readonly asDoubleMap: {
|
562 | readonly hasher: StorageHasherV9;
|
563 | readonly key1: Type;
|
564 | readonly key2: Type;
|
565 | readonly value: Type;
|
566 | readonly key2Hasher: StorageHasherV9;
|
567 | } & Struct;
|
568 | readonly type: 'Plain' | 'Map' | 'DoubleMap';
|
569 | }
|
570 |
|
571 | export interface StorageHasher extends StorageHasherV14 {
|
572 | }
|
573 |
|
574 | export interface StorageHasherV10 extends Enum {
|
575 | readonly isBlake2128: boolean;
|
576 | readonly isBlake2256: boolean;
|
577 | readonly isBlake2128Concat: boolean;
|
578 | readonly isTwox128: boolean;
|
579 | readonly isTwox256: boolean;
|
580 | readonly isTwox64Concat: boolean;
|
581 | readonly type: 'Blake2128' | 'Blake2256' | 'Blake2128Concat' | 'Twox128' | 'Twox256' | 'Twox64Concat';
|
582 | }
|
583 |
|
584 | export interface StorageHasherV11 extends Enum {
|
585 | readonly isBlake2128: boolean;
|
586 | readonly isBlake2256: boolean;
|
587 | readonly isBlake2128Concat: boolean;
|
588 | readonly isTwox128: boolean;
|
589 | readonly isTwox256: boolean;
|
590 | readonly isTwox64Concat: boolean;
|
591 | readonly isIdentity: boolean;
|
592 | readonly type: 'Blake2128' | 'Blake2256' | 'Blake2128Concat' | 'Twox128' | 'Twox256' | 'Twox64Concat' | 'Identity';
|
593 | }
|
594 |
|
595 | export interface StorageHasherV12 extends StorageHasherV11 {
|
596 | }
|
597 |
|
598 | export interface StorageHasherV13 extends StorageHasherV12 {
|
599 | }
|
600 |
|
601 | export interface StorageHasherV14 extends StorageHasherV13 {
|
602 | }
|
603 |
|
604 | export interface StorageHasherV9 extends Enum {
|
605 | readonly isBlake2128: boolean;
|
606 | readonly isBlake2256: boolean;
|
607 | readonly isTwox128: boolean;
|
608 | readonly isTwox256: boolean;
|
609 | readonly isTwox64Concat: boolean;
|
610 | readonly type: 'Blake2128' | 'Blake2256' | 'Twox128' | 'Twox256' | 'Twox64Concat';
|
611 | }
|
612 |
|
613 | export interface StorageMetadataV10 extends Struct {
|
614 | readonly prefix: Text;
|
615 | readonly items: Vec<StorageEntryMetadataV10>;
|
616 | }
|
617 |
|
618 | export interface StorageMetadataV11 extends Struct {
|
619 | readonly prefix: Text;
|
620 | readonly items: Vec<StorageEntryMetadataV11>;
|
621 | }
|
622 |
|
623 | export interface StorageMetadataV12 extends StorageMetadataV11 {
|
624 | }
|
625 |
|
626 | export interface StorageMetadataV13 extends Struct {
|
627 | readonly prefix: Text;
|
628 | readonly items: Vec<StorageEntryMetadataV13>;
|
629 | }
|
630 |
|
631 | export interface StorageMetadataV9 extends Struct {
|
632 | readonly prefix: Text;
|
633 | readonly items: Vec<StorageEntryMetadataV9>;
|
634 | }
|
635 | export type PHANTOM_METADATA = 'metadata';
|