@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
|
@@ -56,7 +56,7 @@ declare const _default: {
|
|
|
56
56
|
};
|
|
57
57
|
};
|
|
58
58
|
/**
|
|
59
|
-
* Lookup20: frame_system::EventRecord<
|
|
59
|
+
* Lookup20: frame_system::EventRecord<sh_parachain_runtime::RuntimeEvent, primitive_types::H256>
|
|
60
60
|
**/
|
|
61
61
|
FrameSystemEventRecord: {
|
|
62
62
|
phase: string;
|
|
@@ -96,9 +96,9 @@ declare const _default: {
|
|
|
96
96
|
};
|
|
97
97
|
};
|
|
98
98
|
/**
|
|
99
|
-
* Lookup23:
|
|
99
|
+
* Lookup23: frame_system::DispatchEventInfo
|
|
100
100
|
**/
|
|
101
|
-
|
|
101
|
+
FrameSystemDispatchEventInfo: {
|
|
102
102
|
weight: string;
|
|
103
103
|
class: string;
|
|
104
104
|
paysFee: string;
|
|
@@ -134,6 +134,7 @@ declare const _default: {
|
|
|
134
134
|
Corruption: string;
|
|
135
135
|
Unavailable: string;
|
|
136
136
|
RootNotAllowed: string;
|
|
137
|
+
Trie: string;
|
|
137
138
|
};
|
|
138
139
|
};
|
|
139
140
|
/**
|
|
@@ -162,7 +163,13 @@ declare const _default: {
|
|
|
162
163
|
_enum: string[];
|
|
163
164
|
};
|
|
164
165
|
/**
|
|
165
|
-
* Lookup31:
|
|
166
|
+
* Lookup31: sp_runtime::proving_trie::TrieError
|
|
167
|
+
**/
|
|
168
|
+
SpRuntimeProvingTrieTrieError: {
|
|
169
|
+
_enum: string[];
|
|
170
|
+
};
|
|
171
|
+
/**
|
|
172
|
+
* Lookup32: cumulus_pallet_parachain_system::pallet::Event<T>
|
|
166
173
|
**/
|
|
167
174
|
CumulusPalletParachainSystemEvent: {
|
|
168
175
|
_enum: {
|
|
@@ -184,7 +191,7 @@ declare const _default: {
|
|
|
184
191
|
};
|
|
185
192
|
};
|
|
186
193
|
/**
|
|
187
|
-
*
|
|
194
|
+
* Lookup34: pallet_balances::pallet::Event<T, I>
|
|
188
195
|
**/
|
|
189
196
|
PalletBalancesEvent: {
|
|
190
197
|
_enum: {
|
|
@@ -282,13 +289,13 @@ declare const _default: {
|
|
|
282
289
|
};
|
|
283
290
|
};
|
|
284
291
|
/**
|
|
285
|
-
*
|
|
292
|
+
* Lookup35: frame_support::traits::tokens::misc::BalanceStatus
|
|
286
293
|
**/
|
|
287
294
|
FrameSupportTokensMiscBalanceStatus: {
|
|
288
295
|
_enum: string[];
|
|
289
296
|
};
|
|
290
297
|
/**
|
|
291
|
-
*
|
|
298
|
+
* Lookup36: pallet_transaction_payment::pallet::Event<T>
|
|
292
299
|
**/
|
|
293
300
|
PalletTransactionPaymentEvent: {
|
|
294
301
|
_enum: {
|
|
@@ -300,7 +307,7 @@ declare const _default: {
|
|
|
300
307
|
};
|
|
301
308
|
};
|
|
302
309
|
/**
|
|
303
|
-
*
|
|
310
|
+
* Lookup37: pallet_sudo::pallet::Event<T>
|
|
304
311
|
**/
|
|
305
312
|
PalletSudoEvent: {
|
|
306
313
|
_enum: {
|
|
@@ -321,7 +328,7 @@ declare const _default: {
|
|
|
321
328
|
};
|
|
322
329
|
};
|
|
323
330
|
/**
|
|
324
|
-
*
|
|
331
|
+
* Lookup41: pallet_collator_selection::pallet::Event<T>
|
|
325
332
|
**/
|
|
326
333
|
PalletCollatorSelectionEvent: {
|
|
327
334
|
_enum: {
|
|
@@ -365,7 +372,7 @@ declare const _default: {
|
|
|
365
372
|
};
|
|
366
373
|
};
|
|
367
374
|
/**
|
|
368
|
-
*
|
|
375
|
+
* Lookup43: pallet_session::pallet::Event
|
|
369
376
|
**/
|
|
370
377
|
PalletSessionEvent: {
|
|
371
378
|
_enum: {
|
|
@@ -375,7 +382,7 @@ declare const _default: {
|
|
|
375
382
|
};
|
|
376
383
|
};
|
|
377
384
|
/**
|
|
378
|
-
*
|
|
385
|
+
* Lookup44: cumulus_pallet_xcmp_queue::pallet::Event<T>
|
|
379
386
|
**/
|
|
380
387
|
CumulusPalletXcmpQueueEvent: {
|
|
381
388
|
_enum: {
|
|
@@ -385,7 +392,7 @@ declare const _default: {
|
|
|
385
392
|
};
|
|
386
393
|
};
|
|
387
394
|
/**
|
|
388
|
-
*
|
|
395
|
+
* Lookup45: pallet_xcm::pallet::Event<T>
|
|
389
396
|
**/
|
|
390
397
|
PalletXcmEvent: {
|
|
391
398
|
_enum: {
|
|
@@ -510,9 +517,9 @@ declare const _default: {
|
|
|
510
517
|
};
|
|
511
518
|
};
|
|
512
519
|
/**
|
|
513
|
-
*
|
|
520
|
+
* Lookup46: staging_xcm::v5::traits::Outcome
|
|
514
521
|
**/
|
|
515
|
-
|
|
522
|
+
StagingXcmV5TraitsOutcome: {
|
|
516
523
|
_enum: {
|
|
517
524
|
Complete: {
|
|
518
525
|
used: string;
|
|
@@ -527,9 +534,9 @@ declare const _default: {
|
|
|
527
534
|
};
|
|
528
535
|
};
|
|
529
536
|
/**
|
|
530
|
-
*
|
|
537
|
+
* Lookup47: xcm::v5::traits::Error
|
|
531
538
|
**/
|
|
532
|
-
|
|
539
|
+
XcmV5TraitsError: {
|
|
533
540
|
_enum: {
|
|
534
541
|
Overflow: string;
|
|
535
542
|
Unimplemented: string;
|
|
@@ -566,6 +573,7 @@ declare const _default: {
|
|
|
566
573
|
NoPermission: string;
|
|
567
574
|
Unanchored: string;
|
|
568
575
|
NotDepositable: string;
|
|
576
|
+
TooManyAssets: string;
|
|
569
577
|
UnhandledXcmVersion: string;
|
|
570
578
|
WeightLimitReached: string;
|
|
571
579
|
Barrier: string;
|
|
@@ -574,16 +582,16 @@ declare const _default: {
|
|
|
574
582
|
};
|
|
575
583
|
};
|
|
576
584
|
/**
|
|
577
|
-
*
|
|
585
|
+
* Lookup48: staging_xcm::v5::location::Location
|
|
578
586
|
**/
|
|
579
|
-
|
|
587
|
+
StagingXcmV5Location: {
|
|
580
588
|
parents: string;
|
|
581
589
|
interior: string;
|
|
582
590
|
};
|
|
583
591
|
/**
|
|
584
|
-
*
|
|
592
|
+
* Lookup49: staging_xcm::v5::junctions::Junctions
|
|
585
593
|
**/
|
|
586
|
-
|
|
594
|
+
StagingXcmV5Junctions: {
|
|
587
595
|
_enum: {
|
|
588
596
|
Here: string;
|
|
589
597
|
X1: string;
|
|
@@ -597,9 +605,9 @@ declare const _default: {
|
|
|
597
605
|
};
|
|
598
606
|
};
|
|
599
607
|
/**
|
|
600
|
-
*
|
|
608
|
+
* Lookup51: staging_xcm::v5::junction::Junction
|
|
601
609
|
**/
|
|
602
|
-
|
|
610
|
+
StagingXcmV5Junction: {
|
|
603
611
|
_enum: {
|
|
604
612
|
Parachain: string;
|
|
605
613
|
AccountId32: {
|
|
@@ -629,9 +637,9 @@ declare const _default: {
|
|
|
629
637
|
};
|
|
630
638
|
};
|
|
631
639
|
/**
|
|
632
|
-
*
|
|
640
|
+
* Lookup54: staging_xcm::v5::junction::NetworkId
|
|
633
641
|
**/
|
|
634
|
-
|
|
642
|
+
StagingXcmV5JunctionNetworkId: {
|
|
635
643
|
_enum: {
|
|
636
644
|
ByGenesis: string;
|
|
637
645
|
ByFork: {
|
|
@@ -640,9 +648,9 @@ declare const _default: {
|
|
|
640
648
|
};
|
|
641
649
|
Polkadot: string;
|
|
642
650
|
Kusama: string;
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
651
|
+
__Unused4: string;
|
|
652
|
+
__Unused5: string;
|
|
653
|
+
__Unused6: string;
|
|
646
654
|
Ethereum: {
|
|
647
655
|
chainId: string;
|
|
648
656
|
};
|
|
@@ -652,7 +660,7 @@ declare const _default: {
|
|
|
652
660
|
};
|
|
653
661
|
};
|
|
654
662
|
/**
|
|
655
|
-
*
|
|
663
|
+
* Lookup57: xcm::v3::junction::BodyId
|
|
656
664
|
**/
|
|
657
665
|
XcmV3JunctionBodyId: {
|
|
658
666
|
_enum: {
|
|
@@ -669,7 +677,7 @@ declare const _default: {
|
|
|
669
677
|
};
|
|
670
678
|
};
|
|
671
679
|
/**
|
|
672
|
-
*
|
|
680
|
+
* Lookup58: xcm::v3::junction::BodyPart
|
|
673
681
|
**/
|
|
674
682
|
XcmV3JunctionBodyPart: {
|
|
675
683
|
_enum: {
|
|
@@ -692,13 +700,13 @@ declare const _default: {
|
|
|
692
700
|
};
|
|
693
701
|
};
|
|
694
702
|
/**
|
|
695
|
-
*
|
|
703
|
+
* Lookup66: staging_xcm::v5::Xcm<Call>
|
|
696
704
|
**/
|
|
697
|
-
|
|
705
|
+
StagingXcmV5Xcm: string;
|
|
698
706
|
/**
|
|
699
|
-
*
|
|
707
|
+
* Lookup68: staging_xcm::v5::Instruction<Call>
|
|
700
708
|
**/
|
|
701
|
-
|
|
709
|
+
StagingXcmV5Instruction: {
|
|
702
710
|
_enum: {
|
|
703
711
|
WithdrawAsset: string;
|
|
704
712
|
ReserveAssetDeposited: string;
|
|
@@ -720,7 +728,7 @@ declare const _default: {
|
|
|
720
728
|
};
|
|
721
729
|
Transact: {
|
|
722
730
|
originKind: string;
|
|
723
|
-
|
|
731
|
+
fallbackMaxWeight: string;
|
|
724
732
|
call: string;
|
|
725
733
|
};
|
|
726
734
|
HrmpNewChannelOpenRequest: {
|
|
@@ -835,36 +843,53 @@ declare const _default: {
|
|
|
835
843
|
weightLimit: string;
|
|
836
844
|
checkOrigin: string;
|
|
837
845
|
};
|
|
846
|
+
PayFees: {
|
|
847
|
+
asset: string;
|
|
848
|
+
};
|
|
849
|
+
InitiateTransfer: {
|
|
850
|
+
destination: string;
|
|
851
|
+
remoteFees: string;
|
|
852
|
+
preserveOrigin: string;
|
|
853
|
+
assets: string;
|
|
854
|
+
remoteXcm: string;
|
|
855
|
+
};
|
|
856
|
+
ExecuteWithOrigin: {
|
|
857
|
+
descendantOrigin: string;
|
|
858
|
+
xcm: string;
|
|
859
|
+
};
|
|
860
|
+
SetHints: {
|
|
861
|
+
hints: string;
|
|
862
|
+
};
|
|
838
863
|
};
|
|
839
864
|
};
|
|
840
865
|
/**
|
|
841
|
-
*
|
|
866
|
+
* Lookup69: staging_xcm::v5::asset::Assets
|
|
842
867
|
**/
|
|
843
|
-
|
|
868
|
+
StagingXcmV5AssetAssets: string;
|
|
844
869
|
/**
|
|
845
|
-
*
|
|
870
|
+
* Lookup71: staging_xcm::v5::asset::Asset
|
|
846
871
|
**/
|
|
847
|
-
|
|
872
|
+
StagingXcmV5Asset: {
|
|
848
873
|
id: string;
|
|
849
874
|
fun: string;
|
|
850
875
|
};
|
|
851
876
|
/**
|
|
852
|
-
*
|
|
877
|
+
* Lookup72: staging_xcm::v5::asset::AssetId
|
|
853
878
|
**/
|
|
854
|
-
|
|
879
|
+
StagingXcmV5AssetAssetId: string;
|
|
855
880
|
/**
|
|
856
|
-
*
|
|
881
|
+
* Lookup73: staging_xcm::v5::asset::Fungibility
|
|
857
882
|
**/
|
|
858
|
-
|
|
883
|
+
StagingXcmV5AssetFungibility: {
|
|
859
884
|
_enum: {
|
|
860
885
|
Fungible: string;
|
|
861
886
|
NonFungible: string;
|
|
862
887
|
};
|
|
863
888
|
};
|
|
864
889
|
/**
|
|
865
|
-
*
|
|
890
|
+
* Lookup74: staging_xcm::v5::asset::AssetInstance
|
|
866
891
|
**/
|
|
867
|
-
|
|
892
|
+
StagingXcmV5AssetAssetInstance: {
|
|
868
893
|
_enum: {
|
|
869
894
|
Undefined: string;
|
|
870
895
|
Index: string;
|
|
@@ -875,9 +900,9 @@ declare const _default: {
|
|
|
875
900
|
};
|
|
876
901
|
};
|
|
877
902
|
/**
|
|
878
|
-
*
|
|
903
|
+
* Lookup77: staging_xcm::v5::Response
|
|
879
904
|
**/
|
|
880
|
-
|
|
905
|
+
StagingXcmV5Response: {
|
|
881
906
|
_enum: {
|
|
882
907
|
Null: string;
|
|
883
908
|
Assets: string;
|
|
@@ -888,9 +913,9 @@ declare const _default: {
|
|
|
888
913
|
};
|
|
889
914
|
};
|
|
890
915
|
/**
|
|
891
|
-
*
|
|
916
|
+
* Lookup81: staging_xcm::v5::PalletInfo
|
|
892
917
|
**/
|
|
893
|
-
|
|
918
|
+
StagingXcmV5PalletInfo: {
|
|
894
919
|
index: string;
|
|
895
920
|
name: string;
|
|
896
921
|
moduleName: string;
|
|
@@ -899,7 +924,7 @@ declare const _default: {
|
|
|
899
924
|
patch: string;
|
|
900
925
|
};
|
|
901
926
|
/**
|
|
902
|
-
*
|
|
927
|
+
* Lookup84: xcm::v3::MaybeErrorCode
|
|
903
928
|
**/
|
|
904
929
|
XcmV3MaybeErrorCode: {
|
|
905
930
|
_enum: {
|
|
@@ -909,38 +934,38 @@ declare const _default: {
|
|
|
909
934
|
};
|
|
910
935
|
};
|
|
911
936
|
/**
|
|
912
|
-
*
|
|
937
|
+
* Lookup87: xcm::v3::OriginKind
|
|
913
938
|
**/
|
|
914
939
|
XcmV3OriginKind: {
|
|
915
940
|
_enum: string[];
|
|
916
941
|
};
|
|
917
942
|
/**
|
|
918
|
-
*
|
|
943
|
+
* Lookup89: xcm::double_encoded::DoubleEncoded<T>
|
|
919
944
|
**/
|
|
920
945
|
XcmDoubleEncoded: {
|
|
921
946
|
encoded: string;
|
|
922
947
|
};
|
|
923
948
|
/**
|
|
924
|
-
*
|
|
949
|
+
* Lookup90: staging_xcm::v5::QueryResponseInfo
|
|
925
950
|
**/
|
|
926
|
-
|
|
951
|
+
StagingXcmV5QueryResponseInfo: {
|
|
927
952
|
destination: string;
|
|
928
953
|
queryId: string;
|
|
929
954
|
maxWeight: string;
|
|
930
955
|
};
|
|
931
956
|
/**
|
|
932
|
-
*
|
|
957
|
+
* Lookup91: staging_xcm::v5::asset::AssetFilter
|
|
933
958
|
**/
|
|
934
|
-
|
|
959
|
+
StagingXcmV5AssetAssetFilter: {
|
|
935
960
|
_enum: {
|
|
936
961
|
Definite: string;
|
|
937
962
|
Wild: string;
|
|
938
963
|
};
|
|
939
964
|
};
|
|
940
965
|
/**
|
|
941
|
-
*
|
|
966
|
+
* Lookup92: staging_xcm::v5::asset::WildAsset
|
|
942
967
|
**/
|
|
943
|
-
|
|
968
|
+
StagingXcmV5AssetWildAsset: {
|
|
944
969
|
_enum: {
|
|
945
970
|
All: string;
|
|
946
971
|
AllOf: {
|
|
@@ -956,13 +981,13 @@ declare const _default: {
|
|
|
956
981
|
};
|
|
957
982
|
};
|
|
958
983
|
/**
|
|
959
|
-
*
|
|
984
|
+
* Lookup93: staging_xcm::v5::asset::WildFungibility
|
|
960
985
|
**/
|
|
961
|
-
|
|
986
|
+
StagingXcmV5AssetWildFungibility: {
|
|
962
987
|
_enum: string[];
|
|
963
988
|
};
|
|
964
989
|
/**
|
|
965
|
-
*
|
|
990
|
+
* Lookup94: xcm::v3::WeightLimit
|
|
966
991
|
**/
|
|
967
992
|
XcmV3WeightLimit: {
|
|
968
993
|
_enum: {
|
|
@@ -971,48 +996,69 @@ declare const _default: {
|
|
|
971
996
|
};
|
|
972
997
|
};
|
|
973
998
|
/**
|
|
974
|
-
*
|
|
999
|
+
* Lookup96: staging_xcm::v5::asset::AssetTransferFilter
|
|
1000
|
+
**/
|
|
1001
|
+
StagingXcmV5AssetAssetTransferFilter: {
|
|
1002
|
+
_enum: {
|
|
1003
|
+
Teleport: string;
|
|
1004
|
+
ReserveDeposit: string;
|
|
1005
|
+
ReserveWithdraw: string;
|
|
1006
|
+
};
|
|
1007
|
+
};
|
|
1008
|
+
/**
|
|
1009
|
+
* Lookup101: staging_xcm::v5::Hint
|
|
1010
|
+
**/
|
|
1011
|
+
StagingXcmV5Hint: {
|
|
1012
|
+
_enum: {
|
|
1013
|
+
AssetClaimer: {
|
|
1014
|
+
location: string;
|
|
1015
|
+
};
|
|
1016
|
+
};
|
|
1017
|
+
};
|
|
1018
|
+
/**
|
|
1019
|
+
* Lookup103: xcm::VersionedAssets
|
|
975
1020
|
**/
|
|
976
1021
|
XcmVersionedAssets: {
|
|
977
1022
|
_enum: {
|
|
978
1023
|
__Unused0: string;
|
|
979
|
-
|
|
1024
|
+
__Unused1: string;
|
|
980
1025
|
__Unused2: string;
|
|
981
1026
|
V3: string;
|
|
982
1027
|
V4: string;
|
|
1028
|
+
V5: string;
|
|
983
1029
|
};
|
|
984
1030
|
};
|
|
985
1031
|
/**
|
|
986
|
-
*
|
|
1032
|
+
* Lookup104: xcm::v3::multiasset::MultiAssets
|
|
987
1033
|
**/
|
|
988
|
-
|
|
1034
|
+
XcmV3MultiassetMultiAssets: string;
|
|
989
1035
|
/**
|
|
990
|
-
*
|
|
1036
|
+
* Lookup106: xcm::v3::multiasset::MultiAsset
|
|
991
1037
|
**/
|
|
992
|
-
|
|
1038
|
+
XcmV3MultiAsset: {
|
|
993
1039
|
id: string;
|
|
994
1040
|
fun: string;
|
|
995
1041
|
};
|
|
996
1042
|
/**
|
|
997
|
-
*
|
|
1043
|
+
* Lookup107: xcm::v3::multiasset::AssetId
|
|
998
1044
|
**/
|
|
999
|
-
|
|
1045
|
+
XcmV3MultiassetAssetId: {
|
|
1000
1046
|
_enum: {
|
|
1001
1047
|
Concrete: string;
|
|
1002
1048
|
Abstract: string;
|
|
1003
1049
|
};
|
|
1004
1050
|
};
|
|
1005
1051
|
/**
|
|
1006
|
-
*
|
|
1052
|
+
* Lookup108: staging_xcm::v3::multilocation::MultiLocation
|
|
1007
1053
|
**/
|
|
1008
|
-
|
|
1054
|
+
StagingXcmV3MultiLocation: {
|
|
1009
1055
|
parents: string;
|
|
1010
1056
|
interior: string;
|
|
1011
1057
|
};
|
|
1012
1058
|
/**
|
|
1013
|
-
*
|
|
1059
|
+
* Lookup109: xcm::v3::junctions::Junctions
|
|
1014
1060
|
**/
|
|
1015
|
-
|
|
1061
|
+
XcmV3Junctions: {
|
|
1016
1062
|
_enum: {
|
|
1017
1063
|
Here: string;
|
|
1018
1064
|
X1: string;
|
|
@@ -1026,9 +1072,9 @@ declare const _default: {
|
|
|
1026
1072
|
};
|
|
1027
1073
|
};
|
|
1028
1074
|
/**
|
|
1029
|
-
*
|
|
1075
|
+
* Lookup110: xcm::v3::junction::Junction
|
|
1030
1076
|
**/
|
|
1031
|
-
|
|
1077
|
+
XcmV3Junction: {
|
|
1032
1078
|
_enum: {
|
|
1033
1079
|
Parachain: string;
|
|
1034
1080
|
AccountId32: {
|
|
@@ -1045,78 +1091,54 @@ declare const _default: {
|
|
|
1045
1091
|
};
|
|
1046
1092
|
PalletInstance: string;
|
|
1047
1093
|
GeneralIndex: string;
|
|
1048
|
-
GeneralKey:
|
|
1094
|
+
GeneralKey: {
|
|
1095
|
+
length: string;
|
|
1096
|
+
data: string;
|
|
1097
|
+
};
|
|
1049
1098
|
OnlyChild: string;
|
|
1050
1099
|
Plurality: {
|
|
1051
1100
|
id: string;
|
|
1052
1101
|
part: string;
|
|
1053
1102
|
};
|
|
1103
|
+
GlobalConsensus: string;
|
|
1054
1104
|
};
|
|
1055
1105
|
};
|
|
1056
1106
|
/**
|
|
1057
|
-
*
|
|
1107
|
+
* Lookup112: xcm::v3::junction::NetworkId
|
|
1058
1108
|
**/
|
|
1059
|
-
|
|
1109
|
+
XcmV3JunctionNetworkId: {
|
|
1060
1110
|
_enum: {
|
|
1061
|
-
|
|
1062
|
-
|
|
1111
|
+
ByGenesis: string;
|
|
1112
|
+
ByFork: {
|
|
1113
|
+
blockNumber: string;
|
|
1114
|
+
blockHash: string;
|
|
1115
|
+
};
|
|
1063
1116
|
Polkadot: string;
|
|
1064
1117
|
Kusama: string;
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
XcmV2BodyId: {
|
|
1071
|
-
_enum: {
|
|
1072
|
-
Unit: string;
|
|
1073
|
-
Named: string;
|
|
1074
|
-
Index: string;
|
|
1075
|
-
Executive: string;
|
|
1076
|
-
Technical: string;
|
|
1077
|
-
Legislative: string;
|
|
1078
|
-
Judicial: string;
|
|
1079
|
-
Defense: string;
|
|
1080
|
-
Administration: string;
|
|
1081
|
-
Treasury: string;
|
|
1082
|
-
};
|
|
1083
|
-
};
|
|
1084
|
-
/**
|
|
1085
|
-
* Lookup104: xcm::v2::BodyPart
|
|
1086
|
-
**/
|
|
1087
|
-
XcmV2BodyPart: {
|
|
1088
|
-
_enum: {
|
|
1089
|
-
Voice: string;
|
|
1090
|
-
Members: {
|
|
1091
|
-
count: string;
|
|
1092
|
-
};
|
|
1093
|
-
Fraction: {
|
|
1094
|
-
nom: string;
|
|
1095
|
-
denom: string;
|
|
1096
|
-
};
|
|
1097
|
-
AtLeastProportion: {
|
|
1098
|
-
nom: string;
|
|
1099
|
-
denom: string;
|
|
1100
|
-
};
|
|
1101
|
-
MoreThanProportion: {
|
|
1102
|
-
nom: string;
|
|
1103
|
-
denom: string;
|
|
1118
|
+
Westend: string;
|
|
1119
|
+
Rococo: string;
|
|
1120
|
+
Wococo: string;
|
|
1121
|
+
Ethereum: {
|
|
1122
|
+
chainId: string;
|
|
1104
1123
|
};
|
|
1124
|
+
BitcoinCore: string;
|
|
1125
|
+
BitcoinCash: string;
|
|
1126
|
+
PolkadotBulletin: string;
|
|
1105
1127
|
};
|
|
1106
1128
|
};
|
|
1107
1129
|
/**
|
|
1108
|
-
*
|
|
1130
|
+
* Lookup113: xcm::v3::multiasset::Fungibility
|
|
1109
1131
|
**/
|
|
1110
|
-
|
|
1132
|
+
XcmV3MultiassetFungibility: {
|
|
1111
1133
|
_enum: {
|
|
1112
1134
|
Fungible: string;
|
|
1113
1135
|
NonFungible: string;
|
|
1114
1136
|
};
|
|
1115
1137
|
};
|
|
1116
1138
|
/**
|
|
1117
|
-
*
|
|
1139
|
+
* Lookup114: xcm::v3::multiasset::AssetInstance
|
|
1118
1140
|
**/
|
|
1119
|
-
|
|
1141
|
+
XcmV3MultiassetAssetInstance: {
|
|
1120
1142
|
_enum: {
|
|
1121
1143
|
Undefined: string;
|
|
1122
1144
|
Index: string;
|
|
@@ -1124,40 +1146,34 @@ declare const _default: {
|
|
|
1124
1146
|
Array8: string;
|
|
1125
1147
|
Array16: string;
|
|
1126
1148
|
Array32: string;
|
|
1127
|
-
Blob: string;
|
|
1128
1149
|
};
|
|
1129
1150
|
};
|
|
1130
1151
|
/**
|
|
1131
|
-
*
|
|
1152
|
+
* Lookup115: staging_xcm::v4::asset::Assets
|
|
1132
1153
|
**/
|
|
1133
|
-
|
|
1154
|
+
StagingXcmV4AssetAssets: string;
|
|
1134
1155
|
/**
|
|
1135
|
-
*
|
|
1156
|
+
* Lookup117: staging_xcm::v4::asset::Asset
|
|
1136
1157
|
**/
|
|
1137
|
-
|
|
1158
|
+
StagingXcmV4Asset: {
|
|
1138
1159
|
id: string;
|
|
1139
1160
|
fun: string;
|
|
1140
1161
|
};
|
|
1141
1162
|
/**
|
|
1142
|
-
*
|
|
1163
|
+
* Lookup118: staging_xcm::v4::asset::AssetId
|
|
1143
1164
|
**/
|
|
1144
|
-
|
|
1145
|
-
_enum: {
|
|
1146
|
-
Concrete: string;
|
|
1147
|
-
Abstract: string;
|
|
1148
|
-
};
|
|
1149
|
-
};
|
|
1165
|
+
StagingXcmV4AssetAssetId: string;
|
|
1150
1166
|
/**
|
|
1151
|
-
*
|
|
1167
|
+
* Lookup119: staging_xcm::v4::location::Location
|
|
1152
1168
|
**/
|
|
1153
|
-
|
|
1169
|
+
StagingXcmV4Location: {
|
|
1154
1170
|
parents: string;
|
|
1155
1171
|
interior: string;
|
|
1156
1172
|
};
|
|
1157
1173
|
/**
|
|
1158
|
-
*
|
|
1174
|
+
* Lookup120: staging_xcm::v4::junctions::Junctions
|
|
1159
1175
|
**/
|
|
1160
|
-
|
|
1176
|
+
StagingXcmV4Junctions: {
|
|
1161
1177
|
_enum: {
|
|
1162
1178
|
Here: string;
|
|
1163
1179
|
X1: string;
|
|
@@ -1171,9 +1187,9 @@ declare const _default: {
|
|
|
1171
1187
|
};
|
|
1172
1188
|
};
|
|
1173
1189
|
/**
|
|
1174
|
-
*
|
|
1190
|
+
* Lookup122: staging_xcm::v4::junction::Junction
|
|
1175
1191
|
**/
|
|
1176
|
-
|
|
1192
|
+
StagingXcmV4Junction: {
|
|
1177
1193
|
_enum: {
|
|
1178
1194
|
Parachain: string;
|
|
1179
1195
|
AccountId32: {
|
|
@@ -1203,9 +1219,9 @@ declare const _default: {
|
|
|
1203
1219
|
};
|
|
1204
1220
|
};
|
|
1205
1221
|
/**
|
|
1206
|
-
*
|
|
1222
|
+
* Lookup124: staging_xcm::v4::junction::NetworkId
|
|
1207
1223
|
**/
|
|
1208
|
-
|
|
1224
|
+
StagingXcmV4JunctionNetworkId: {
|
|
1209
1225
|
_enum: {
|
|
1210
1226
|
ByGenesis: string;
|
|
1211
1227
|
ByFork: {
|
|
@@ -1226,18 +1242,18 @@ declare const _default: {
|
|
|
1226
1242
|
};
|
|
1227
1243
|
};
|
|
1228
1244
|
/**
|
|
1229
|
-
*
|
|
1245
|
+
* Lookup132: staging_xcm::v4::asset::Fungibility
|
|
1230
1246
|
**/
|
|
1231
|
-
|
|
1247
|
+
StagingXcmV4AssetFungibility: {
|
|
1232
1248
|
_enum: {
|
|
1233
1249
|
Fungible: string;
|
|
1234
1250
|
NonFungible: string;
|
|
1235
1251
|
};
|
|
1236
1252
|
};
|
|
1237
1253
|
/**
|
|
1238
|
-
*
|
|
1254
|
+
* Lookup133: staging_xcm::v4::asset::AssetInstance
|
|
1239
1255
|
**/
|
|
1240
|
-
|
|
1256
|
+
StagingXcmV4AssetAssetInstance: {
|
|
1241
1257
|
_enum: {
|
|
1242
1258
|
Undefined: string;
|
|
1243
1259
|
Index: string;
|
|
@@ -1248,19 +1264,20 @@ declare const _default: {
|
|
|
1248
1264
|
};
|
|
1249
1265
|
};
|
|
1250
1266
|
/**
|
|
1251
|
-
*
|
|
1267
|
+
* Lookup134: xcm::VersionedLocation
|
|
1252
1268
|
**/
|
|
1253
1269
|
XcmVersionedLocation: {
|
|
1254
1270
|
_enum: {
|
|
1255
1271
|
__Unused0: string;
|
|
1256
|
-
|
|
1272
|
+
__Unused1: string;
|
|
1257
1273
|
__Unused2: string;
|
|
1258
1274
|
V3: string;
|
|
1259
1275
|
V4: string;
|
|
1276
|
+
V5: string;
|
|
1260
1277
|
};
|
|
1261
1278
|
};
|
|
1262
1279
|
/**
|
|
1263
|
-
*
|
|
1280
|
+
* Lookup135: cumulus_pallet_xcm::pallet::Event<T>
|
|
1264
1281
|
**/
|
|
1265
1282
|
CumulusPalletXcmEvent: {
|
|
1266
1283
|
_enum: {
|
|
@@ -1270,7 +1287,7 @@ declare const _default: {
|
|
|
1270
1287
|
};
|
|
1271
1288
|
};
|
|
1272
1289
|
/**
|
|
1273
|
-
*
|
|
1290
|
+
* Lookup136: pallet_message_queue::pallet::Event<T>
|
|
1274
1291
|
**/
|
|
1275
1292
|
PalletMessageQueueEvent: {
|
|
1276
1293
|
_enum: {
|
|
@@ -1298,7 +1315,7 @@ declare const _default: {
|
|
|
1298
1315
|
};
|
|
1299
1316
|
};
|
|
1300
1317
|
/**
|
|
1301
|
-
*
|
|
1318
|
+
* Lookup137: cumulus_primitives_core::AggregateMessageOrigin
|
|
1302
1319
|
**/
|
|
1303
1320
|
CumulusPrimitivesCoreAggregateMessageOrigin: {
|
|
1304
1321
|
_enum: {
|
|
@@ -1308,7 +1325,7 @@ declare const _default: {
|
|
|
1308
1325
|
};
|
|
1309
1326
|
};
|
|
1310
1327
|
/**
|
|
1311
|
-
*
|
|
1328
|
+
* Lookup139: frame_support::traits::messages::ProcessMessageError
|
|
1312
1329
|
**/
|
|
1313
1330
|
FrameSupportMessagesProcessMessageError: {
|
|
1314
1331
|
_enum: {
|
|
@@ -1321,7 +1338,7 @@ declare const _default: {
|
|
|
1321
1338
|
};
|
|
1322
1339
|
};
|
|
1323
1340
|
/**
|
|
1324
|
-
*
|
|
1341
|
+
* Lookup140: pallet_storage_providers::pallet::Event<T>
|
|
1325
1342
|
**/
|
|
1326
1343
|
PalletStorageProvidersEvent: {
|
|
1327
1344
|
_enum: {
|
|
@@ -1329,7 +1346,6 @@ declare const _default: {
|
|
|
1329
1346
|
who: string;
|
|
1330
1347
|
multiaddresses: string;
|
|
1331
1348
|
capacity: string;
|
|
1332
|
-
valueProp: string;
|
|
1333
1349
|
};
|
|
1334
1350
|
MspSignUpSuccess: {
|
|
1335
1351
|
who: string;
|
|
@@ -1346,6 +1362,7 @@ declare const _default: {
|
|
|
1346
1362
|
BspSignUpSuccess: {
|
|
1347
1363
|
who: string;
|
|
1348
1364
|
bspId: string;
|
|
1365
|
+
root: string;
|
|
1349
1366
|
multiaddresses: string;
|
|
1350
1367
|
capacity: string;
|
|
1351
1368
|
};
|
|
@@ -1369,20 +1386,87 @@ declare const _default: {
|
|
|
1369
1386
|
};
|
|
1370
1387
|
Slashed: {
|
|
1371
1388
|
providerId: string;
|
|
1372
|
-
|
|
1389
|
+
amount: string;
|
|
1390
|
+
};
|
|
1391
|
+
AwaitingTopUp: {
|
|
1392
|
+
providerId: string;
|
|
1393
|
+
topUpMetadata: string;
|
|
1394
|
+
};
|
|
1395
|
+
TopUpFulfilled: {
|
|
1396
|
+
providerId: string;
|
|
1397
|
+
amount: string;
|
|
1398
|
+
};
|
|
1399
|
+
FailedToGetOwnerAccountOfInsolventProvider: {
|
|
1400
|
+
providerId: string;
|
|
1401
|
+
};
|
|
1402
|
+
FailedToSlashInsolventProvider: {
|
|
1403
|
+
providerId: string;
|
|
1404
|
+
amountToSlash: string;
|
|
1405
|
+
error: string;
|
|
1406
|
+
};
|
|
1407
|
+
FailedToStopAllCyclesForInsolventBsp: {
|
|
1408
|
+
providerId: string;
|
|
1409
|
+
error: string;
|
|
1410
|
+
};
|
|
1411
|
+
FailedToInsertProviderTopUpExpiration: {
|
|
1412
|
+
providerId: string;
|
|
1413
|
+
expirationTick: string;
|
|
1414
|
+
};
|
|
1415
|
+
ProviderInsolvent: {
|
|
1416
|
+
providerId: string;
|
|
1417
|
+
};
|
|
1418
|
+
BucketsOfInsolventMsp: {
|
|
1419
|
+
mspId: string;
|
|
1420
|
+
buckets: string;
|
|
1421
|
+
};
|
|
1422
|
+
BucketRootChanged: {
|
|
1423
|
+
bucketId: string;
|
|
1424
|
+
oldRoot: string;
|
|
1425
|
+
newRoot: string;
|
|
1426
|
+
};
|
|
1427
|
+
MultiAddressAdded: {
|
|
1428
|
+
providerId: string;
|
|
1429
|
+
newMultiaddress: string;
|
|
1430
|
+
};
|
|
1431
|
+
MultiAddressRemoved: {
|
|
1432
|
+
providerId: string;
|
|
1433
|
+
removedMultiaddress: string;
|
|
1434
|
+
};
|
|
1435
|
+
ValuePropAdded: {
|
|
1436
|
+
mspId: string;
|
|
1437
|
+
valuePropId: string;
|
|
1438
|
+
valueProp: string;
|
|
1439
|
+
};
|
|
1440
|
+
ValuePropUnavailable: {
|
|
1441
|
+
mspId: string;
|
|
1442
|
+
valuePropId: string;
|
|
1443
|
+
};
|
|
1444
|
+
MspDeleted: {
|
|
1445
|
+
providerId: string;
|
|
1446
|
+
};
|
|
1447
|
+
BspDeleted: {
|
|
1448
|
+
providerId: string;
|
|
1373
1449
|
};
|
|
1374
1450
|
};
|
|
1375
1451
|
};
|
|
1376
1452
|
/**
|
|
1377
|
-
*
|
|
1453
|
+
* Lookup144: pallet_storage_providers::types::ValuePropositionWithId<T>
|
|
1454
|
+
**/
|
|
1455
|
+
PalletStorageProvidersValuePropositionWithId: {
|
|
1456
|
+
id: string;
|
|
1457
|
+
valueProp: string;
|
|
1458
|
+
};
|
|
1459
|
+
/**
|
|
1460
|
+
* Lookup145: pallet_storage_providers::types::ValueProposition<T>
|
|
1378
1461
|
**/
|
|
1379
1462
|
PalletStorageProvidersValueProposition: {
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1463
|
+
pricePerGigaUnitOfDataPerBlock: string;
|
|
1464
|
+
commitment: string;
|
|
1465
|
+
bucketDataLimit: string;
|
|
1466
|
+
available: string;
|
|
1383
1467
|
};
|
|
1384
1468
|
/**
|
|
1385
|
-
*
|
|
1469
|
+
* Lookup147: pallet_storage_providers::types::StorageProviderId<T>
|
|
1386
1470
|
**/
|
|
1387
1471
|
PalletStorageProvidersStorageProviderId: {
|
|
1388
1472
|
_enum: {
|
|
@@ -1391,7 +1475,14 @@ declare const _default: {
|
|
|
1391
1475
|
};
|
|
1392
1476
|
};
|
|
1393
1477
|
/**
|
|
1394
|
-
*
|
|
1478
|
+
* Lookup148: pallet_storage_providers::types::TopUpMetadata<T>
|
|
1479
|
+
**/
|
|
1480
|
+
PalletStorageProvidersTopUpMetadata: {
|
|
1481
|
+
startedAt: string;
|
|
1482
|
+
endTickGracePeriod: string;
|
|
1483
|
+
};
|
|
1484
|
+
/**
|
|
1485
|
+
* Lookup150: pallet_file_system::pallet::Event<T>
|
|
1395
1486
|
**/
|
|
1396
1487
|
PalletFileSystemEvent: {
|
|
1397
1488
|
_enum: {
|
|
@@ -1400,13 +1491,21 @@ declare const _default: {
|
|
|
1400
1491
|
mspId: string;
|
|
1401
1492
|
bucketId: string;
|
|
1402
1493
|
name: string;
|
|
1494
|
+
root: string;
|
|
1403
1495
|
collectionId: string;
|
|
1404
1496
|
private: string;
|
|
1497
|
+
valuePropId: string;
|
|
1498
|
+
};
|
|
1499
|
+
BucketDeleted: {
|
|
1500
|
+
who: string;
|
|
1501
|
+
bucketId: string;
|
|
1502
|
+
maybeCollectionId: string;
|
|
1405
1503
|
};
|
|
1406
1504
|
MoveBucketRequested: {
|
|
1407
1505
|
who: string;
|
|
1408
1506
|
bucketId: string;
|
|
1409
1507
|
newMspId: string;
|
|
1508
|
+
newValuePropId: string;
|
|
1410
1509
|
};
|
|
1411
1510
|
BucketPrivacyUpdated: {
|
|
1412
1511
|
who: string;
|
|
@@ -1430,9 +1529,11 @@ declare const _default: {
|
|
|
1430
1529
|
fingerprint: string;
|
|
1431
1530
|
size_: string;
|
|
1432
1531
|
peerIds: string;
|
|
1532
|
+
expiresAt: string;
|
|
1433
1533
|
};
|
|
1434
|
-
|
|
1435
|
-
|
|
1534
|
+
MspAcceptedStorageRequest: {
|
|
1535
|
+
fileKey: string;
|
|
1536
|
+
fileMetadata: string;
|
|
1436
1537
|
};
|
|
1437
1538
|
AcceptedBspVolunteer: {
|
|
1438
1539
|
_alias: {
|
|
@@ -1449,7 +1550,8 @@ declare const _default: {
|
|
|
1449
1550
|
BspConfirmedStoring: {
|
|
1450
1551
|
who: string;
|
|
1451
1552
|
bspId: string;
|
|
1452
|
-
|
|
1553
|
+
confirmedFileKeys: string;
|
|
1554
|
+
skippedFileKeys: string;
|
|
1453
1555
|
newRoot: string;
|
|
1454
1556
|
};
|
|
1455
1557
|
StorageRequestFulfilled: {
|
|
@@ -1461,6 +1563,10 @@ declare const _default: {
|
|
|
1461
1563
|
StorageRequestRevoked: {
|
|
1462
1564
|
fileKey: string;
|
|
1463
1565
|
};
|
|
1566
|
+
StorageRequestRejected: {
|
|
1567
|
+
fileKey: string;
|
|
1568
|
+
reason: string;
|
|
1569
|
+
};
|
|
1464
1570
|
BspRequestedToStopStoring: {
|
|
1465
1571
|
bspId: string;
|
|
1466
1572
|
fileKey: string;
|
|
@@ -1483,22 +1589,29 @@ declare const _default: {
|
|
|
1483
1589
|
location: string;
|
|
1484
1590
|
newRoot: string;
|
|
1485
1591
|
};
|
|
1592
|
+
MspStopStoringBucketInsolventUser: {
|
|
1593
|
+
mspId: string;
|
|
1594
|
+
owner: string;
|
|
1595
|
+
bucketId: string;
|
|
1596
|
+
};
|
|
1486
1597
|
FailedToQueuePriorityChallenge: {
|
|
1487
|
-
user: string;
|
|
1488
1598
|
fileKey: string;
|
|
1599
|
+
error: string;
|
|
1489
1600
|
};
|
|
1490
1601
|
FileDeletionRequest: {
|
|
1491
1602
|
user: string;
|
|
1492
1603
|
fileKey: string;
|
|
1604
|
+
fileSize: string;
|
|
1493
1605
|
bucketId: string;
|
|
1494
1606
|
mspId: string;
|
|
1495
1607
|
proofOfInclusion: string;
|
|
1496
1608
|
};
|
|
1497
1609
|
ProofSubmittedForPendingFileDeletionRequest: {
|
|
1498
|
-
mspId: string;
|
|
1499
1610
|
user: string;
|
|
1500
1611
|
fileKey: string;
|
|
1612
|
+
fileSize: string;
|
|
1501
1613
|
bucketId: string;
|
|
1614
|
+
mspId: string;
|
|
1502
1615
|
proofOfInclusion: string;
|
|
1503
1616
|
};
|
|
1504
1617
|
BspChallengeCycleInitialised: {
|
|
@@ -1506,82 +1619,135 @@ declare const _default: {
|
|
|
1506
1619
|
bspId: string;
|
|
1507
1620
|
};
|
|
1508
1621
|
MoveBucketRequestExpired: {
|
|
1509
|
-
mspId: string;
|
|
1510
1622
|
bucketId: string;
|
|
1511
1623
|
};
|
|
1512
1624
|
MoveBucketAccepted: {
|
|
1513
1625
|
bucketId: string;
|
|
1514
|
-
|
|
1626
|
+
oldMspId: string;
|
|
1627
|
+
newMspId: string;
|
|
1628
|
+
valuePropId: string;
|
|
1515
1629
|
};
|
|
1516
1630
|
MoveBucketRejected: {
|
|
1517
1631
|
bucketId: string;
|
|
1632
|
+
oldMspId: string;
|
|
1633
|
+
newMspId: string;
|
|
1634
|
+
};
|
|
1635
|
+
MspStoppedStoringBucket: {
|
|
1518
1636
|
mspId: string;
|
|
1637
|
+
owner: string;
|
|
1638
|
+
bucketId: string;
|
|
1519
1639
|
};
|
|
1520
|
-
|
|
1640
|
+
FailedToGetMspOfBucket: {
|
|
1641
|
+
bucketId: string;
|
|
1642
|
+
error: string;
|
|
1643
|
+
};
|
|
1644
|
+
FailedToDecreaseMspUsedCapacity: {
|
|
1645
|
+
user: string;
|
|
1646
|
+
mspId: string;
|
|
1647
|
+
fileKey: string;
|
|
1648
|
+
fileSize: string;
|
|
1649
|
+
error: string;
|
|
1650
|
+
};
|
|
1651
|
+
UsedCapacityShouldBeZero: {
|
|
1652
|
+
actualUsedCapacity: string;
|
|
1653
|
+
};
|
|
1654
|
+
FailedToReleaseStorageRequestCreationDeposit: {
|
|
1655
|
+
fileKey: string;
|
|
1656
|
+
owner: string;
|
|
1657
|
+
amountToReturn: string;
|
|
1658
|
+
error: string;
|
|
1659
|
+
};
|
|
1660
|
+
FailedToTransferDepositFundsToBsp: {
|
|
1661
|
+
fileKey: string;
|
|
1662
|
+
owner: string;
|
|
1521
1663
|
bspId: string;
|
|
1664
|
+
amountToTransfer: string;
|
|
1665
|
+
error: string;
|
|
1666
|
+
};
|
|
1667
|
+
FileDeletionRequested: {
|
|
1668
|
+
signedDeleteIntention: string;
|
|
1669
|
+
signature: string;
|
|
1670
|
+
};
|
|
1671
|
+
BucketFileDeletionCompleted: {
|
|
1672
|
+
user: string;
|
|
1673
|
+
fileKey: string;
|
|
1674
|
+
fileSize: string;
|
|
1522
1675
|
bucketId: string;
|
|
1676
|
+
mspId: string;
|
|
1677
|
+
oldRoot: string;
|
|
1678
|
+
newRoot: string;
|
|
1679
|
+
};
|
|
1680
|
+
BspFileDeletionCompleted: {
|
|
1681
|
+
user: string;
|
|
1682
|
+
fileKey: string;
|
|
1683
|
+
fileSize: string;
|
|
1684
|
+
bspId: string;
|
|
1685
|
+
oldRoot: string;
|
|
1686
|
+
newRoot: string;
|
|
1687
|
+
};
|
|
1688
|
+
FileDeletedFromIncompleteStorageRequest: {
|
|
1689
|
+
fileKey: string;
|
|
1690
|
+
bspId: string;
|
|
1691
|
+
};
|
|
1692
|
+
IncompleteStorageRequest: {
|
|
1693
|
+
fileKey: string;
|
|
1523
1694
|
};
|
|
1524
1695
|
};
|
|
1525
1696
|
};
|
|
1526
1697
|
/**
|
|
1527
|
-
*
|
|
1698
|
+
* Lookup153: shp_file_metadata::FileMetadata
|
|
1528
1699
|
**/
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1700
|
+
ShpFileMetadataFileMetadata: {
|
|
1701
|
+
owner: string;
|
|
1702
|
+
bucketId: string;
|
|
1703
|
+
location: string;
|
|
1704
|
+
fileSize: string;
|
|
1705
|
+
fingerprint: string;
|
|
1532
1706
|
};
|
|
1533
1707
|
/**
|
|
1534
|
-
*
|
|
1708
|
+
* Lookup154: shp_file_metadata::Fingerprint
|
|
1535
1709
|
**/
|
|
1536
|
-
|
|
1537
|
-
_enum: {
|
|
1538
|
-
Accepted: string;
|
|
1539
|
-
Rejected: string;
|
|
1540
|
-
Failed: string;
|
|
1541
|
-
};
|
|
1542
|
-
};
|
|
1710
|
+
ShpFileMetadataFingerprint: string;
|
|
1543
1711
|
/**
|
|
1544
|
-
*
|
|
1712
|
+
* Lookup159: pallet_file_system::types::RejectedStorageRequestReason
|
|
1545
1713
|
**/
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
bucketId: string;
|
|
1549
|
-
newBucketRoot: string;
|
|
1550
|
-
owner: string;
|
|
1714
|
+
PalletFileSystemRejectedStorageRequestReason: {
|
|
1715
|
+
_enum: string[];
|
|
1551
1716
|
};
|
|
1552
1717
|
/**
|
|
1553
|
-
*
|
|
1718
|
+
* Lookup160: pallet_file_system::types::EitherAccountIdOrMspId<T>
|
|
1554
1719
|
**/
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1720
|
+
PalletFileSystemEitherAccountIdOrMspId: {
|
|
1721
|
+
_enum: {
|
|
1722
|
+
AccountId: string;
|
|
1723
|
+
MspId: string;
|
|
1724
|
+
};
|
|
1559
1725
|
};
|
|
1560
1726
|
/**
|
|
1561
|
-
*
|
|
1727
|
+
* Lookup162: pallet_file_system::types::FileOperationIntention<T>
|
|
1562
1728
|
**/
|
|
1563
|
-
|
|
1564
|
-
|
|
1729
|
+
PalletFileSystemFileOperationIntention: {
|
|
1730
|
+
fileKey: string;
|
|
1731
|
+
operation: string;
|
|
1565
1732
|
};
|
|
1566
1733
|
/**
|
|
1567
|
-
*
|
|
1734
|
+
* Lookup163: pallet_file_system::types::FileOperation
|
|
1568
1735
|
**/
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
bucketId: string;
|
|
1572
|
-
owner: string;
|
|
1736
|
+
PalletFileSystemFileOperation: {
|
|
1737
|
+
_enum: string[];
|
|
1573
1738
|
};
|
|
1574
1739
|
/**
|
|
1575
|
-
*
|
|
1740
|
+
* Lookup164: sp_runtime::MultiSignature
|
|
1576
1741
|
**/
|
|
1577
|
-
|
|
1742
|
+
SpRuntimeMultiSignature: {
|
|
1578
1743
|
_enum: {
|
|
1579
|
-
|
|
1580
|
-
|
|
1744
|
+
Ed25519: string;
|
|
1745
|
+
Sr25519: string;
|
|
1746
|
+
Ecdsa: string;
|
|
1581
1747
|
};
|
|
1582
1748
|
};
|
|
1583
1749
|
/**
|
|
1584
|
-
*
|
|
1750
|
+
* Lookup167: pallet_proofs_dealer::pallet::Event<T>
|
|
1585
1751
|
**/
|
|
1586
1752
|
PalletProofsDealerEvent: {
|
|
1587
1753
|
_enum: {
|
|
@@ -1589,9 +1755,15 @@ declare const _default: {
|
|
|
1589
1755
|
who: string;
|
|
1590
1756
|
keyChallenged: string;
|
|
1591
1757
|
};
|
|
1758
|
+
NewPriorityChallenge: {
|
|
1759
|
+
who: string;
|
|
1760
|
+
keyChallenged: string;
|
|
1761
|
+
shouldRemoveKey: string;
|
|
1762
|
+
};
|
|
1592
1763
|
ProofAccepted: {
|
|
1593
|
-
|
|
1764
|
+
providerId: string;
|
|
1594
1765
|
proof: string;
|
|
1766
|
+
lastTickProven: string;
|
|
1595
1767
|
};
|
|
1596
1768
|
NewChallengeSeed: {
|
|
1597
1769
|
challengesTicker: string;
|
|
@@ -1614,10 +1786,17 @@ declare const _default: {
|
|
|
1614
1786
|
provider: string;
|
|
1615
1787
|
maybeProviderAccount: string;
|
|
1616
1788
|
};
|
|
1789
|
+
MutationsAppliedForProvider: {
|
|
1790
|
+
providerId: string;
|
|
1791
|
+
mutations: string;
|
|
1792
|
+
oldRoot: string;
|
|
1793
|
+
newRoot: string;
|
|
1794
|
+
};
|
|
1617
1795
|
MutationsApplied: {
|
|
1618
|
-
provider: string;
|
|
1619
1796
|
mutations: string;
|
|
1797
|
+
oldRoot: string;
|
|
1620
1798
|
newRoot: string;
|
|
1799
|
+
eventInfo: string;
|
|
1621
1800
|
};
|
|
1622
1801
|
ChallengesTickerSet: {
|
|
1623
1802
|
paused: string;
|
|
@@ -1625,52 +1804,62 @@ declare const _default: {
|
|
|
1625
1804
|
};
|
|
1626
1805
|
};
|
|
1627
1806
|
/**
|
|
1628
|
-
*
|
|
1807
|
+
* Lookup168: pallet_proofs_dealer::types::Proof<T>
|
|
1629
1808
|
**/
|
|
1630
1809
|
PalletProofsDealerProof: {
|
|
1631
1810
|
forestProof: string;
|
|
1632
1811
|
keyProofs: string;
|
|
1633
1812
|
};
|
|
1634
1813
|
/**
|
|
1635
|
-
*
|
|
1814
|
+
* Lookup169: sp_trie::storage_proof::CompactProof
|
|
1636
1815
|
**/
|
|
1637
1816
|
SpTrieStorageProofCompactProof: {
|
|
1638
1817
|
encodedNodes: string;
|
|
1639
1818
|
};
|
|
1640
1819
|
/**
|
|
1641
|
-
*
|
|
1820
|
+
* Lookup172: pallet_proofs_dealer::types::KeyProof<T>
|
|
1642
1821
|
**/
|
|
1643
1822
|
PalletProofsDealerKeyProof: {
|
|
1644
1823
|
proof: string;
|
|
1645
1824
|
challengeCount: string;
|
|
1646
1825
|
};
|
|
1647
1826
|
/**
|
|
1648
|
-
*
|
|
1827
|
+
* Lookup173: shp_file_key_verifier::types::FileKeyProof
|
|
1649
1828
|
**/
|
|
1650
1829
|
ShpFileKeyVerifierFileKeyProof: {
|
|
1651
1830
|
fileMetadata: string;
|
|
1652
1831
|
proof: string;
|
|
1653
1832
|
};
|
|
1654
1833
|
/**
|
|
1655
|
-
*
|
|
1834
|
+
* Lookup177: pallet_proofs_dealer::types::CustomChallenge<T>
|
|
1656
1835
|
**/
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
location: string;
|
|
1661
|
-
fileSize: string;
|
|
1662
|
-
fingerprint: string;
|
|
1836
|
+
PalletProofsDealerCustomChallenge: {
|
|
1837
|
+
key: string;
|
|
1838
|
+
shouldRemoveKey: string;
|
|
1663
1839
|
};
|
|
1664
1840
|
/**
|
|
1665
|
-
*
|
|
1841
|
+
* Lookup181: shp_traits::TrieMutation
|
|
1666
1842
|
**/
|
|
1667
|
-
|
|
1843
|
+
ShpTraitsTrieMutation: {
|
|
1844
|
+
_enum: {
|
|
1845
|
+
Add: string;
|
|
1846
|
+
Remove: string;
|
|
1847
|
+
};
|
|
1848
|
+
};
|
|
1668
1849
|
/**
|
|
1669
|
-
*
|
|
1850
|
+
* Lookup182: shp_traits::TrieAddMutation
|
|
1670
1851
|
**/
|
|
1671
|
-
|
|
1852
|
+
ShpTraitsTrieAddMutation: {
|
|
1853
|
+
value: string;
|
|
1854
|
+
};
|
|
1672
1855
|
/**
|
|
1673
|
-
*
|
|
1856
|
+
* Lookup183: shp_traits::TrieRemoveMutation
|
|
1857
|
+
**/
|
|
1858
|
+
ShpTraitsTrieRemoveMutation: {
|
|
1859
|
+
maybeValue: string;
|
|
1860
|
+
};
|
|
1861
|
+
/**
|
|
1862
|
+
* Lookup185: pallet_randomness::pallet::Event<T>
|
|
1674
1863
|
**/
|
|
1675
1864
|
PalletRandomnessEvent: {
|
|
1676
1865
|
_enum: {
|
|
@@ -1682,7 +1871,7 @@ declare const _default: {
|
|
|
1682
1871
|
};
|
|
1683
1872
|
};
|
|
1684
1873
|
/**
|
|
1685
|
-
*
|
|
1874
|
+
* Lookup186: pallet_payment_streams::pallet::Event<T>
|
|
1686
1875
|
**/
|
|
1687
1876
|
PalletPaymentStreamsEvent: {
|
|
1688
1877
|
_enum: {
|
|
@@ -1721,6 +1910,11 @@ declare const _default: {
|
|
|
1721
1910
|
lastTickCharged: string;
|
|
1722
1911
|
chargedAtTick: string;
|
|
1723
1912
|
};
|
|
1913
|
+
UsersCharged: {
|
|
1914
|
+
userAccounts: string;
|
|
1915
|
+
providerId: string;
|
|
1916
|
+
chargedAtTick: string;
|
|
1917
|
+
};
|
|
1724
1918
|
LastChargeableInfoUpdated: {
|
|
1725
1919
|
providerId: string;
|
|
1726
1920
|
lastChargeableTick: string;
|
|
@@ -1729,16 +1923,23 @@ declare const _default: {
|
|
|
1729
1923
|
UserWithoutFunds: {
|
|
1730
1924
|
who: string;
|
|
1731
1925
|
};
|
|
1732
|
-
|
|
1926
|
+
UserPaidAllDebts: {
|
|
1927
|
+
who: string;
|
|
1928
|
+
};
|
|
1929
|
+
UserPaidSomeDebts: {
|
|
1733
1930
|
who: string;
|
|
1734
1931
|
};
|
|
1735
1932
|
UserSolvent: {
|
|
1736
1933
|
who: string;
|
|
1737
1934
|
};
|
|
1935
|
+
InconsistentTickProcessing: {
|
|
1936
|
+
lastProcessedTick: string;
|
|
1937
|
+
tickToProcess: string;
|
|
1938
|
+
};
|
|
1738
1939
|
};
|
|
1739
1940
|
};
|
|
1740
1941
|
/**
|
|
1741
|
-
*
|
|
1942
|
+
* Lookup188: pallet_bucket_nfts::pallet::Event<T>
|
|
1742
1943
|
**/
|
|
1743
1944
|
PalletBucketNftsEvent: {
|
|
1744
1945
|
_enum: {
|
|
@@ -1759,7 +1960,7 @@ declare const _default: {
|
|
|
1759
1960
|
};
|
|
1760
1961
|
};
|
|
1761
1962
|
/**
|
|
1762
|
-
*
|
|
1963
|
+
* Lookup189: pallet_nfts::pallet::Event<T, I>
|
|
1763
1964
|
**/
|
|
1764
1965
|
PalletNftsEvent: {
|
|
1765
1966
|
_enum: {
|
|
@@ -1960,7 +2161,7 @@ declare const _default: {
|
|
|
1960
2161
|
};
|
|
1961
2162
|
};
|
|
1962
2163
|
/**
|
|
1963
|
-
*
|
|
2164
|
+
* Lookup193: pallet_nfts::types::AttributeNamespace<sp_core::crypto::AccountId32>
|
|
1964
2165
|
**/
|
|
1965
2166
|
PalletNftsAttributeNamespace: {
|
|
1966
2167
|
_enum: {
|
|
@@ -1971,20 +2172,20 @@ declare const _default: {
|
|
|
1971
2172
|
};
|
|
1972
2173
|
};
|
|
1973
2174
|
/**
|
|
1974
|
-
*
|
|
2175
|
+
* Lookup195: pallet_nfts::types::PriceWithDirection<Amount>
|
|
1975
2176
|
**/
|
|
1976
2177
|
PalletNftsPriceWithDirection: {
|
|
1977
2178
|
amount: string;
|
|
1978
2179
|
direction: string;
|
|
1979
2180
|
};
|
|
1980
2181
|
/**
|
|
1981
|
-
*
|
|
2182
|
+
* Lookup196: pallet_nfts::types::PriceDirection
|
|
1982
2183
|
**/
|
|
1983
2184
|
PalletNftsPriceDirection: {
|
|
1984
2185
|
_enum: string[];
|
|
1985
2186
|
};
|
|
1986
2187
|
/**
|
|
1987
|
-
*
|
|
2188
|
+
* Lookup197: pallet_nfts::types::PalletAttributes<CollectionId>
|
|
1988
2189
|
**/
|
|
1989
2190
|
PalletNftsPalletAttributes: {
|
|
1990
2191
|
_enum: {
|
|
@@ -1993,68 +2194,198 @@ declare const _default: {
|
|
|
1993
2194
|
};
|
|
1994
2195
|
};
|
|
1995
2196
|
/**
|
|
1996
|
-
*
|
|
2197
|
+
* Lookup198: pallet_parameters::pallet::Event<T>
|
|
2198
|
+
**/
|
|
2199
|
+
PalletParametersEvent: {
|
|
2200
|
+
_enum: {
|
|
2201
|
+
Updated: {
|
|
2202
|
+
key: string;
|
|
2203
|
+
oldValue: string;
|
|
2204
|
+
newValue: string;
|
|
2205
|
+
};
|
|
2206
|
+
};
|
|
2207
|
+
};
|
|
2208
|
+
/**
|
|
2209
|
+
* Lookup199: sh_parachain_runtime::configs::runtime_params::RuntimeParametersKey
|
|
2210
|
+
**/
|
|
2211
|
+
ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersKey: {
|
|
2212
|
+
_enum: {
|
|
2213
|
+
RuntimeConfig: string;
|
|
2214
|
+
};
|
|
2215
|
+
};
|
|
2216
|
+
/**
|
|
2217
|
+
* Lookup200: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::ParametersKey
|
|
2218
|
+
**/
|
|
2219
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey: {
|
|
2220
|
+
_enum: string[];
|
|
2221
|
+
};
|
|
2222
|
+
/**
|
|
2223
|
+
* Lookup201: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::SlashAmountPerMaxFileSize
|
|
2224
|
+
**/
|
|
2225
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize: string;
|
|
2226
|
+
/**
|
|
2227
|
+
* Lookup202: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::StakeToChallengePeriod
|
|
2228
|
+
**/
|
|
2229
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod: string;
|
|
2230
|
+
/**
|
|
2231
|
+
* Lookup203: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::CheckpointChallengePeriod
|
|
2232
|
+
**/
|
|
2233
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod: string;
|
|
2234
|
+
/**
|
|
2235
|
+
* Lookup204: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MinChallengePeriod
|
|
2236
|
+
**/
|
|
2237
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod: string;
|
|
2238
|
+
/**
|
|
2239
|
+
* Lookup205: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::SystemUtilisationLowerThresholdPercentage
|
|
2240
|
+
**/
|
|
2241
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationLowerThresholdPercentage: string;
|
|
2242
|
+
/**
|
|
2243
|
+
* Lookup206: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::SystemUtilisationUpperThresholdPercentage
|
|
2244
|
+
**/
|
|
2245
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSystemUtilisationUpperThresholdPercentage: string;
|
|
2246
|
+
/**
|
|
2247
|
+
* Lookup207: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MostlyStablePrice
|
|
2248
|
+
**/
|
|
2249
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMostlyStablePrice: string;
|
|
2250
|
+
/**
|
|
2251
|
+
* Lookup208: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MaxPrice
|
|
2252
|
+
**/
|
|
2253
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxPrice: string;
|
|
2254
|
+
/**
|
|
2255
|
+
* Lookup209: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MinPrice
|
|
2256
|
+
**/
|
|
2257
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinPrice: string;
|
|
2258
|
+
/**
|
|
2259
|
+
* Lookup210: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::UpperExponentFactor
|
|
2260
|
+
**/
|
|
2261
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpperExponentFactor: string;
|
|
2262
|
+
/**
|
|
2263
|
+
* Lookup211: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::LowerExponentFactor
|
|
2264
|
+
**/
|
|
2265
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigLowerExponentFactor: string;
|
|
2266
|
+
/**
|
|
2267
|
+
* Lookup212: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::ZeroSizeBucketFixedRate
|
|
2268
|
+
**/
|
|
2269
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigZeroSizeBucketFixedRate: string;
|
|
2270
|
+
/**
|
|
2271
|
+
* Lookup213: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::IdealUtilisationRate
|
|
2272
|
+
**/
|
|
2273
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigIdealUtilisationRate: string;
|
|
2274
|
+
/**
|
|
2275
|
+
* Lookup214: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::DecayRate
|
|
2276
|
+
**/
|
|
2277
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigDecayRate: string;
|
|
2278
|
+
/**
|
|
2279
|
+
* Lookup215: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MinimumTreasuryCut
|
|
2280
|
+
**/
|
|
2281
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinimumTreasuryCut: string;
|
|
2282
|
+
/**
|
|
2283
|
+
* Lookup216: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MaximumTreasuryCut
|
|
2284
|
+
**/
|
|
2285
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaximumTreasuryCut: string;
|
|
2286
|
+
/**
|
|
2287
|
+
* Lookup217: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::BspStopStoringFilePenalty
|
|
2288
|
+
**/
|
|
2289
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBspStopStoringFilePenalty: string;
|
|
2290
|
+
/**
|
|
2291
|
+
* Lookup218: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::ProviderTopUpTtl
|
|
2292
|
+
**/
|
|
2293
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigProviderTopUpTtl: string;
|
|
2294
|
+
/**
|
|
2295
|
+
* Lookup219: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::BasicReplicationTarget
|
|
2296
|
+
**/
|
|
2297
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigBasicReplicationTarget: string;
|
|
2298
|
+
/**
|
|
2299
|
+
* Lookup220: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::StandardReplicationTarget
|
|
2300
|
+
**/
|
|
2301
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStandardReplicationTarget: string;
|
|
2302
|
+
/**
|
|
2303
|
+
* Lookup221: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::HighSecurityReplicationTarget
|
|
2304
|
+
**/
|
|
2305
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigHighSecurityReplicationTarget: string;
|
|
2306
|
+
/**
|
|
2307
|
+
* Lookup222: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::SuperHighSecurityReplicationTarget
|
|
1997
2308
|
**/
|
|
1998
|
-
|
|
1999
|
-
_enum: {
|
|
2000
|
-
Updated: {
|
|
2001
|
-
key: string;
|
|
2002
|
-
oldValue: string;
|
|
2003
|
-
newValue: string;
|
|
2004
|
-
};
|
|
2005
|
-
};
|
|
2006
|
-
};
|
|
2309
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSuperHighSecurityReplicationTarget: string;
|
|
2007
2310
|
/**
|
|
2008
|
-
*
|
|
2311
|
+
* Lookup223: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::UltraHighSecurityReplicationTarget
|
|
2009
2312
|
**/
|
|
2010
|
-
|
|
2011
|
-
_enum: {
|
|
2012
|
-
RuntimeConfig: string;
|
|
2013
|
-
};
|
|
2014
|
-
};
|
|
2313
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUltraHighSecurityReplicationTarget: string;
|
|
2015
2314
|
/**
|
|
2016
|
-
*
|
|
2315
|
+
* Lookup224: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MaxReplicationTarget
|
|
2017
2316
|
**/
|
|
2018
|
-
|
|
2019
|
-
_enum: string[];
|
|
2020
|
-
};
|
|
2317
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMaxReplicationTarget: string;
|
|
2021
2318
|
/**
|
|
2022
|
-
*
|
|
2319
|
+
* Lookup225: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::TickRangeToMaximumThreshold
|
|
2023
2320
|
**/
|
|
2024
|
-
|
|
2321
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigTickRangeToMaximumThreshold: string;
|
|
2025
2322
|
/**
|
|
2026
|
-
*
|
|
2323
|
+
* Lookup226: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::StorageRequestTtl
|
|
2027
2324
|
**/
|
|
2028
|
-
|
|
2325
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStorageRequestTtl: string;
|
|
2029
2326
|
/**
|
|
2030
|
-
*
|
|
2327
|
+
* Lookup227: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MinWaitForStopStoring
|
|
2031
2328
|
**/
|
|
2032
|
-
|
|
2329
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinWaitForStopStoring: string;
|
|
2033
2330
|
/**
|
|
2034
|
-
*
|
|
2331
|
+
* Lookup228: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::MinSeedPeriod
|
|
2035
2332
|
**/
|
|
2036
|
-
|
|
2333
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinSeedPeriod: string;
|
|
2037
2334
|
/**
|
|
2038
|
-
*
|
|
2335
|
+
* Lookup229: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::StakeToSeedPeriod
|
|
2039
2336
|
**/
|
|
2040
|
-
|
|
2337
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToSeedPeriod: string;
|
|
2338
|
+
/**
|
|
2339
|
+
* Lookup230: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::UpfrontTicksToPay
|
|
2340
|
+
**/
|
|
2341
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigUpfrontTicksToPay: string;
|
|
2342
|
+
/**
|
|
2343
|
+
* Lookup232: sh_parachain_runtime::configs::runtime_params::RuntimeParametersValue
|
|
2344
|
+
**/
|
|
2345
|
+
ShParachainRuntimeConfigsRuntimeParamsRuntimeParametersValue: {
|
|
2041
2346
|
_enum: {
|
|
2042
2347
|
RuntimeConfig: string;
|
|
2043
2348
|
};
|
|
2044
2349
|
};
|
|
2045
2350
|
/**
|
|
2046
|
-
*
|
|
2351
|
+
* Lookup233: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::ParametersValue
|
|
2047
2352
|
**/
|
|
2048
|
-
|
|
2353
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue: {
|
|
2049
2354
|
_enum: {
|
|
2050
2355
|
SlashAmountPerMaxFileSize: string;
|
|
2051
2356
|
StakeToChallengePeriod: string;
|
|
2052
2357
|
CheckpointChallengePeriod: string;
|
|
2053
2358
|
MinChallengePeriod: string;
|
|
2359
|
+
SystemUtilisationLowerThresholdPercentage: string;
|
|
2360
|
+
SystemUtilisationUpperThresholdPercentage: string;
|
|
2361
|
+
MostlyStablePrice: string;
|
|
2362
|
+
MaxPrice: string;
|
|
2363
|
+
MinPrice: string;
|
|
2364
|
+
UpperExponentFactor: string;
|
|
2365
|
+
LowerExponentFactor: string;
|
|
2366
|
+
ZeroSizeBucketFixedRate: string;
|
|
2367
|
+
IdealUtilisationRate: string;
|
|
2368
|
+
DecayRate: string;
|
|
2369
|
+
MinimumTreasuryCut: string;
|
|
2370
|
+
MaximumTreasuryCut: string;
|
|
2371
|
+
BspStopStoringFilePenalty: string;
|
|
2372
|
+
ProviderTopUpTtl: string;
|
|
2373
|
+
BasicReplicationTarget: string;
|
|
2374
|
+
StandardReplicationTarget: string;
|
|
2375
|
+
HighSecurityReplicationTarget: string;
|
|
2376
|
+
SuperHighSecurityReplicationTarget: string;
|
|
2377
|
+
UltraHighSecurityReplicationTarget: string;
|
|
2378
|
+
MaxReplicationTarget: string;
|
|
2379
|
+
TickRangeToMaximumThreshold: string;
|
|
2380
|
+
StorageRequestTtl: string;
|
|
2381
|
+
MinWaitForStopStoring: string;
|
|
2382
|
+
MinSeedPeriod: string;
|
|
2383
|
+
StakeToSeedPeriod: string;
|
|
2384
|
+
UpfrontTicksToPay: string;
|
|
2054
2385
|
};
|
|
2055
2386
|
};
|
|
2056
2387
|
/**
|
|
2057
|
-
*
|
|
2388
|
+
* Lookup235: frame_system::Phase
|
|
2058
2389
|
**/
|
|
2059
2390
|
FrameSystemPhase: {
|
|
2060
2391
|
_enum: {
|
|
@@ -2064,21 +2395,21 @@ declare const _default: {
|
|
|
2064
2395
|
};
|
|
2065
2396
|
};
|
|
2066
2397
|
/**
|
|
2067
|
-
*
|
|
2398
|
+
* Lookup238: frame_system::LastRuntimeUpgradeInfo
|
|
2068
2399
|
**/
|
|
2069
2400
|
FrameSystemLastRuntimeUpgradeInfo: {
|
|
2070
2401
|
specVersion: string;
|
|
2071
2402
|
specName: string;
|
|
2072
2403
|
};
|
|
2073
2404
|
/**
|
|
2074
|
-
*
|
|
2405
|
+
* Lookup241: frame_system::CodeUpgradeAuthorization<T>
|
|
2075
2406
|
**/
|
|
2076
2407
|
FrameSystemCodeUpgradeAuthorization: {
|
|
2077
2408
|
codeHash: string;
|
|
2078
2409
|
checkVersion: string;
|
|
2079
2410
|
};
|
|
2080
2411
|
/**
|
|
2081
|
-
*
|
|
2412
|
+
* Lookup242: frame_system::pallet::Call<T>
|
|
2082
2413
|
**/
|
|
2083
2414
|
FrameSystemCall: {
|
|
2084
2415
|
_enum: {
|
|
@@ -2123,7 +2454,7 @@ declare const _default: {
|
|
|
2123
2454
|
};
|
|
2124
2455
|
};
|
|
2125
2456
|
/**
|
|
2126
|
-
*
|
|
2457
|
+
* Lookup245: frame_system::limits::BlockWeights
|
|
2127
2458
|
**/
|
|
2128
2459
|
FrameSystemLimitsBlockWeights: {
|
|
2129
2460
|
baseBlock: string;
|
|
@@ -2131,7 +2462,7 @@ declare const _default: {
|
|
|
2131
2462
|
perClass: string;
|
|
2132
2463
|
};
|
|
2133
2464
|
/**
|
|
2134
|
-
*
|
|
2465
|
+
* Lookup246: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
|
|
2135
2466
|
**/
|
|
2136
2467
|
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
|
|
2137
2468
|
normal: string;
|
|
@@ -2139,7 +2470,7 @@ declare const _default: {
|
|
|
2139
2470
|
mandatory: string;
|
|
2140
2471
|
};
|
|
2141
2472
|
/**
|
|
2142
|
-
*
|
|
2473
|
+
* Lookup247: frame_system::limits::WeightsPerClass
|
|
2143
2474
|
**/
|
|
2144
2475
|
FrameSystemLimitsWeightsPerClass: {
|
|
2145
2476
|
baseExtrinsic: string;
|
|
@@ -2148,13 +2479,13 @@ declare const _default: {
|
|
|
2148
2479
|
reserved: string;
|
|
2149
2480
|
};
|
|
2150
2481
|
/**
|
|
2151
|
-
*
|
|
2482
|
+
* Lookup248: frame_system::limits::BlockLength
|
|
2152
2483
|
**/
|
|
2153
2484
|
FrameSystemLimitsBlockLength: {
|
|
2154
2485
|
max: string;
|
|
2155
2486
|
};
|
|
2156
2487
|
/**
|
|
2157
|
-
*
|
|
2488
|
+
* Lookup249: frame_support::dispatch::PerDispatchClass<T>
|
|
2158
2489
|
**/
|
|
2159
2490
|
FrameSupportDispatchPerDispatchClassU32: {
|
|
2160
2491
|
normal: string;
|
|
@@ -2162,14 +2493,14 @@ declare const _default: {
|
|
|
2162
2493
|
mandatory: string;
|
|
2163
2494
|
};
|
|
2164
2495
|
/**
|
|
2165
|
-
*
|
|
2496
|
+
* Lookup250: sp_weights::RuntimeDbWeight
|
|
2166
2497
|
**/
|
|
2167
2498
|
SpWeightsRuntimeDbWeight: {
|
|
2168
2499
|
read: string;
|
|
2169
2500
|
write: string;
|
|
2170
2501
|
};
|
|
2171
2502
|
/**
|
|
2172
|
-
*
|
|
2503
|
+
* Lookup251: sp_version::RuntimeVersion
|
|
2173
2504
|
**/
|
|
2174
2505
|
SpVersionRuntimeVersion: {
|
|
2175
2506
|
specName: string;
|
|
@@ -2179,16 +2510,16 @@ declare const _default: {
|
|
|
2179
2510
|
implVersion: string;
|
|
2180
2511
|
apis: string;
|
|
2181
2512
|
transactionVersion: string;
|
|
2182
|
-
|
|
2513
|
+
systemVersion: string;
|
|
2183
2514
|
};
|
|
2184
2515
|
/**
|
|
2185
|
-
*
|
|
2516
|
+
* Lookup256: frame_system::pallet::Error<T>
|
|
2186
2517
|
**/
|
|
2187
2518
|
FrameSystemError: {
|
|
2188
2519
|
_enum: string[];
|
|
2189
2520
|
};
|
|
2190
2521
|
/**
|
|
2191
|
-
*
|
|
2522
|
+
* Lookup258: cumulus_pallet_parachain_system::unincluded_segment::Ancestor<primitive_types::H256>
|
|
2192
2523
|
**/
|
|
2193
2524
|
CumulusPalletParachainSystemUnincludedSegmentAncestor: {
|
|
2194
2525
|
usedBandwidth: string;
|
|
@@ -2196,7 +2527,7 @@ declare const _default: {
|
|
|
2196
2527
|
consumedGoAheadSignal: string;
|
|
2197
2528
|
};
|
|
2198
2529
|
/**
|
|
2199
|
-
*
|
|
2530
|
+
* Lookup259: cumulus_pallet_parachain_system::unincluded_segment::UsedBandwidth
|
|
2200
2531
|
**/
|
|
2201
2532
|
CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth: {
|
|
2202
2533
|
umpMsgCount: string;
|
|
@@ -2204,20 +2535,20 @@ declare const _default: {
|
|
|
2204
2535
|
hrmpOutgoing: string;
|
|
2205
2536
|
};
|
|
2206
2537
|
/**
|
|
2207
|
-
*
|
|
2538
|
+
* Lookup261: cumulus_pallet_parachain_system::unincluded_segment::HrmpChannelUpdate
|
|
2208
2539
|
**/
|
|
2209
2540
|
CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate: {
|
|
2210
2541
|
msgCount: string;
|
|
2211
2542
|
totalBytes: string;
|
|
2212
2543
|
};
|
|
2213
2544
|
/**
|
|
2214
|
-
*
|
|
2545
|
+
* Lookup265: polkadot_primitives::v8::UpgradeGoAhead
|
|
2215
2546
|
**/
|
|
2216
|
-
|
|
2547
|
+
PolkadotPrimitivesV8UpgradeGoAhead: {
|
|
2217
2548
|
_enum: string[];
|
|
2218
2549
|
};
|
|
2219
2550
|
/**
|
|
2220
|
-
*
|
|
2551
|
+
* Lookup266: cumulus_pallet_parachain_system::unincluded_segment::SegmentTracker<primitive_types::H256>
|
|
2221
2552
|
**/
|
|
2222
2553
|
CumulusPalletParachainSystemUnincludedSegmentSegmentTracker: {
|
|
2223
2554
|
usedBandwidth: string;
|
|
@@ -2225,28 +2556,28 @@ declare const _default: {
|
|
|
2225
2556
|
consumedGoAheadSignal: string;
|
|
2226
2557
|
};
|
|
2227
2558
|
/**
|
|
2228
|
-
*
|
|
2559
|
+
* Lookup267: polkadot_primitives::v8::PersistedValidationData<primitive_types::H256, N>
|
|
2229
2560
|
**/
|
|
2230
|
-
|
|
2561
|
+
PolkadotPrimitivesV8PersistedValidationData: {
|
|
2231
2562
|
parentHead: string;
|
|
2232
2563
|
relayParentNumber: string;
|
|
2233
2564
|
relayParentStorageRoot: string;
|
|
2234
2565
|
maxPovSize: string;
|
|
2235
2566
|
};
|
|
2236
2567
|
/**
|
|
2237
|
-
*
|
|
2568
|
+
* Lookup270: polkadot_primitives::v8::UpgradeRestriction
|
|
2238
2569
|
**/
|
|
2239
|
-
|
|
2570
|
+
PolkadotPrimitivesV8UpgradeRestriction: {
|
|
2240
2571
|
_enum: string[];
|
|
2241
2572
|
};
|
|
2242
2573
|
/**
|
|
2243
|
-
*
|
|
2574
|
+
* Lookup271: sp_trie::storage_proof::StorageProof
|
|
2244
2575
|
**/
|
|
2245
2576
|
SpTrieStorageProof: {
|
|
2246
2577
|
trieNodes: string;
|
|
2247
2578
|
};
|
|
2248
2579
|
/**
|
|
2249
|
-
*
|
|
2580
|
+
* Lookup273: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
|
|
2250
2581
|
**/
|
|
2251
2582
|
CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
|
|
2252
2583
|
dmqMqcHead: string;
|
|
@@ -2255,16 +2586,16 @@ declare const _default: {
|
|
|
2255
2586
|
egressChannels: string;
|
|
2256
2587
|
};
|
|
2257
2588
|
/**
|
|
2258
|
-
*
|
|
2589
|
+
* Lookup274: cumulus_pallet_parachain_system::relay_state_snapshot::RelayDispatchQueueRemainingCapacity
|
|
2259
2590
|
**/
|
|
2260
2591
|
CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity: {
|
|
2261
2592
|
remainingCount: string;
|
|
2262
2593
|
remainingSize: string;
|
|
2263
2594
|
};
|
|
2264
2595
|
/**
|
|
2265
|
-
*
|
|
2596
|
+
* Lookup277: polkadot_primitives::v8::AbridgedHrmpChannel
|
|
2266
2597
|
**/
|
|
2267
|
-
|
|
2598
|
+
PolkadotPrimitivesV8AbridgedHrmpChannel: {
|
|
2268
2599
|
maxCapacity: string;
|
|
2269
2600
|
maxTotalSize: string;
|
|
2270
2601
|
maxMessageSize: string;
|
|
@@ -2273,9 +2604,9 @@ declare const _default: {
|
|
|
2273
2604
|
mqcHead: string;
|
|
2274
2605
|
};
|
|
2275
2606
|
/**
|
|
2276
|
-
*
|
|
2607
|
+
* Lookup278: polkadot_primitives::v8::AbridgedHostConfiguration
|
|
2277
2608
|
**/
|
|
2278
|
-
|
|
2609
|
+
PolkadotPrimitivesV8AbridgedHostConfiguration: {
|
|
2279
2610
|
maxCodeSize: string;
|
|
2280
2611
|
maxHeadDataSize: string;
|
|
2281
2612
|
maxUpwardQueueCount: string;
|
|
@@ -2288,21 +2619,21 @@ declare const _default: {
|
|
|
2288
2619
|
asyncBackingParams: string;
|
|
2289
2620
|
};
|
|
2290
2621
|
/**
|
|
2291
|
-
*
|
|
2622
|
+
* Lookup279: polkadot_primitives::v8::async_backing::AsyncBackingParams
|
|
2292
2623
|
**/
|
|
2293
|
-
|
|
2624
|
+
PolkadotPrimitivesV8AsyncBackingAsyncBackingParams: {
|
|
2294
2625
|
maxCandidateDepth: string;
|
|
2295
2626
|
allowedAncestryLen: string;
|
|
2296
2627
|
};
|
|
2297
2628
|
/**
|
|
2298
|
-
*
|
|
2629
|
+
* Lookup285: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain_primitives::primitives::Id>
|
|
2299
2630
|
**/
|
|
2300
2631
|
PolkadotCorePrimitivesOutboundHrmpMessage: {
|
|
2301
2632
|
recipient: string;
|
|
2302
2633
|
data: string;
|
|
2303
2634
|
};
|
|
2304
2635
|
/**
|
|
2305
|
-
*
|
|
2636
|
+
* Lookup287: cumulus_pallet_parachain_system::pallet::Call<T>
|
|
2306
2637
|
**/
|
|
2307
2638
|
CumulusPalletParachainSystemCall: {
|
|
2308
2639
|
_enum: {
|
|
@@ -2312,17 +2643,10 @@ declare const _default: {
|
|
|
2312
2643
|
sudo_send_upward_message: {
|
|
2313
2644
|
message: string;
|
|
2314
2645
|
};
|
|
2315
|
-
authorize_upgrade: {
|
|
2316
|
-
codeHash: string;
|
|
2317
|
-
checkVersion: string;
|
|
2318
|
-
};
|
|
2319
|
-
enact_authorized_upgrade: {
|
|
2320
|
-
code: string;
|
|
2321
|
-
};
|
|
2322
2646
|
};
|
|
2323
2647
|
};
|
|
2324
2648
|
/**
|
|
2325
|
-
*
|
|
2649
|
+
* Lookup288: cumulus_primitives_parachain_inherent::ParachainInherentData
|
|
2326
2650
|
**/
|
|
2327
2651
|
CumulusPrimitivesParachainInherentParachainInherentData: {
|
|
2328
2652
|
validationData: string;
|
|
@@ -2331,27 +2655,27 @@ declare const _default: {
|
|
|
2331
2655
|
horizontalMessages: string;
|
|
2332
2656
|
};
|
|
2333
2657
|
/**
|
|
2334
|
-
*
|
|
2658
|
+
* Lookup290: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
|
|
2335
2659
|
**/
|
|
2336
2660
|
PolkadotCorePrimitivesInboundDownwardMessage: {
|
|
2337
2661
|
sentAt: string;
|
|
2338
2662
|
msg: string;
|
|
2339
2663
|
};
|
|
2340
2664
|
/**
|
|
2341
|
-
*
|
|
2665
|
+
* Lookup293: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
|
|
2342
2666
|
**/
|
|
2343
2667
|
PolkadotCorePrimitivesInboundHrmpMessage: {
|
|
2344
2668
|
sentAt: string;
|
|
2345
2669
|
data: string;
|
|
2346
2670
|
};
|
|
2347
2671
|
/**
|
|
2348
|
-
*
|
|
2672
|
+
* Lookup296: cumulus_pallet_parachain_system::pallet::Error<T>
|
|
2349
2673
|
**/
|
|
2350
2674
|
CumulusPalletParachainSystemError: {
|
|
2351
2675
|
_enum: string[];
|
|
2352
2676
|
};
|
|
2353
2677
|
/**
|
|
2354
|
-
*
|
|
2678
|
+
* Lookup297: pallet_timestamp::pallet::Call<T>
|
|
2355
2679
|
**/
|
|
2356
2680
|
PalletTimestampCall: {
|
|
2357
2681
|
_enum: {
|
|
@@ -2361,11 +2685,11 @@ declare const _default: {
|
|
|
2361
2685
|
};
|
|
2362
2686
|
};
|
|
2363
2687
|
/**
|
|
2364
|
-
*
|
|
2688
|
+
* Lookup298: staging_parachain_info::pallet::Call<T>
|
|
2365
2689
|
**/
|
|
2366
2690
|
StagingParachainInfoCall: string;
|
|
2367
2691
|
/**
|
|
2368
|
-
*
|
|
2692
|
+
* Lookup300: pallet_balances::types::BalanceLock<Balance>
|
|
2369
2693
|
**/
|
|
2370
2694
|
PalletBalancesBalanceLock: {
|
|
2371
2695
|
id: string;
|
|
@@ -2373,22 +2697,22 @@ declare const _default: {
|
|
|
2373
2697
|
reasons: string;
|
|
2374
2698
|
};
|
|
2375
2699
|
/**
|
|
2376
|
-
*
|
|
2700
|
+
* Lookup301: pallet_balances::types::Reasons
|
|
2377
2701
|
**/
|
|
2378
2702
|
PalletBalancesReasons: {
|
|
2379
2703
|
_enum: string[];
|
|
2380
2704
|
};
|
|
2381
2705
|
/**
|
|
2382
|
-
*
|
|
2706
|
+
* Lookup304: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
|
|
2383
2707
|
**/
|
|
2384
2708
|
PalletBalancesReserveData: {
|
|
2385
2709
|
id: string;
|
|
2386
2710
|
amount: string;
|
|
2387
2711
|
};
|
|
2388
2712
|
/**
|
|
2389
|
-
*
|
|
2713
|
+
* Lookup308: sh_parachain_runtime::RuntimeHoldReason
|
|
2390
2714
|
**/
|
|
2391
|
-
|
|
2715
|
+
ShParachainRuntimeRuntimeHoldReason: {
|
|
2392
2716
|
_enum: {
|
|
2393
2717
|
__Unused0: string;
|
|
2394
2718
|
__Unused1: string;
|
|
@@ -2431,33 +2755,39 @@ declare const _default: {
|
|
|
2431
2755
|
__Unused38: string;
|
|
2432
2756
|
__Unused39: string;
|
|
2433
2757
|
Providers: string;
|
|
2434
|
-
|
|
2758
|
+
FileSystem: string;
|
|
2435
2759
|
__Unused42: string;
|
|
2436
2760
|
__Unused43: string;
|
|
2437
2761
|
PaymentStreams: string;
|
|
2438
2762
|
};
|
|
2439
2763
|
};
|
|
2440
2764
|
/**
|
|
2441
|
-
*
|
|
2765
|
+
* Lookup309: pallet_storage_providers::pallet::HoldReason
|
|
2442
2766
|
**/
|
|
2443
2767
|
PalletStorageProvidersHoldReason: {
|
|
2444
2768
|
_enum: string[];
|
|
2445
2769
|
};
|
|
2446
2770
|
/**
|
|
2447
|
-
*
|
|
2771
|
+
* Lookup310: pallet_file_system::pallet::HoldReason
|
|
2772
|
+
**/
|
|
2773
|
+
PalletFileSystemHoldReason: {
|
|
2774
|
+
_enum: string[];
|
|
2775
|
+
};
|
|
2776
|
+
/**
|
|
2777
|
+
* Lookup311: pallet_payment_streams::pallet::HoldReason
|
|
2448
2778
|
**/
|
|
2449
2779
|
PalletPaymentStreamsHoldReason: {
|
|
2450
2780
|
_enum: string[];
|
|
2451
2781
|
};
|
|
2452
2782
|
/**
|
|
2453
|
-
*
|
|
2783
|
+
* Lookup314: frame_support::traits::tokens::misc::IdAmount<Id, Balance>
|
|
2454
2784
|
**/
|
|
2455
2785
|
FrameSupportTokensMiscIdAmount: {
|
|
2456
2786
|
id: string;
|
|
2457
2787
|
amount: string;
|
|
2458
2788
|
};
|
|
2459
2789
|
/**
|
|
2460
|
-
*
|
|
2790
|
+
* Lookup316: pallet_balances::pallet::Call<T, I>
|
|
2461
2791
|
**/
|
|
2462
2792
|
PalletBalancesCall: {
|
|
2463
2793
|
_enum: {
|
|
@@ -2502,25 +2832,25 @@ declare const _default: {
|
|
|
2502
2832
|
};
|
|
2503
2833
|
};
|
|
2504
2834
|
/**
|
|
2505
|
-
*
|
|
2835
|
+
* Lookup319: pallet_balances::types::AdjustmentDirection
|
|
2506
2836
|
**/
|
|
2507
2837
|
PalletBalancesAdjustmentDirection: {
|
|
2508
2838
|
_enum: string[];
|
|
2509
2839
|
};
|
|
2510
2840
|
/**
|
|
2511
|
-
*
|
|
2841
|
+
* Lookup320: pallet_balances::pallet::Error<T, I>
|
|
2512
2842
|
**/
|
|
2513
2843
|
PalletBalancesError: {
|
|
2514
2844
|
_enum: string[];
|
|
2515
2845
|
};
|
|
2516
2846
|
/**
|
|
2517
|
-
*
|
|
2847
|
+
* Lookup321: pallet_transaction_payment::Releases
|
|
2518
2848
|
**/
|
|
2519
2849
|
PalletTransactionPaymentReleases: {
|
|
2520
2850
|
_enum: string[];
|
|
2521
2851
|
};
|
|
2522
2852
|
/**
|
|
2523
|
-
*
|
|
2853
|
+
* Lookup322: pallet_sudo::pallet::Call<T>
|
|
2524
2854
|
**/
|
|
2525
2855
|
PalletSudoCall: {
|
|
2526
2856
|
_enum: {
|
|
@@ -2545,7 +2875,7 @@ declare const _default: {
|
|
|
2545
2875
|
};
|
|
2546
2876
|
};
|
|
2547
2877
|
/**
|
|
2548
|
-
*
|
|
2878
|
+
* Lookup324: pallet_collator_selection::pallet::Call<T>
|
|
2549
2879
|
**/
|
|
2550
2880
|
PalletCollatorSelectionCall: {
|
|
2551
2881
|
_enum: {
|
|
@@ -2579,7 +2909,7 @@ declare const _default: {
|
|
|
2579
2909
|
};
|
|
2580
2910
|
};
|
|
2581
2911
|
/**
|
|
2582
|
-
*
|
|
2912
|
+
* Lookup325: pallet_session::pallet::Call<T>
|
|
2583
2913
|
**/
|
|
2584
2914
|
PalletSessionCall: {
|
|
2585
2915
|
_enum: {
|
|
@@ -2594,17 +2924,17 @@ declare const _default: {
|
|
|
2594
2924
|
};
|
|
2595
2925
|
};
|
|
2596
2926
|
/**
|
|
2597
|
-
*
|
|
2927
|
+
* Lookup326: sh_parachain_runtime::SessionKeys
|
|
2598
2928
|
**/
|
|
2599
|
-
|
|
2929
|
+
ShParachainRuntimeSessionKeys: {
|
|
2600
2930
|
aura: string;
|
|
2601
2931
|
};
|
|
2602
2932
|
/**
|
|
2603
|
-
*
|
|
2933
|
+
* Lookup327: sp_consensus_aura::sr25519::app_sr25519::Public
|
|
2604
2934
|
**/
|
|
2605
2935
|
SpConsensusAuraSr25519AppSr25519Public: string;
|
|
2606
2936
|
/**
|
|
2607
|
-
*
|
|
2937
|
+
* Lookup328: cumulus_pallet_xcmp_queue::pallet::Call<T>
|
|
2608
2938
|
**/
|
|
2609
2939
|
CumulusPalletXcmpQueueCall: {
|
|
2610
2940
|
_enum: {
|
|
@@ -2632,7 +2962,7 @@ declare const _default: {
|
|
|
2632
2962
|
};
|
|
2633
2963
|
};
|
|
2634
2964
|
/**
|
|
2635
|
-
*
|
|
2965
|
+
* Lookup329: pallet_xcm::pallet::Call<T>
|
|
2636
2966
|
**/
|
|
2637
2967
|
PalletXcmCall: {
|
|
2638
2968
|
_enum: {
|
|
@@ -2709,25 +3039,26 @@ declare const _default: {
|
|
|
2709
3039
|
};
|
|
2710
3040
|
};
|
|
2711
3041
|
/**
|
|
2712
|
-
*
|
|
3042
|
+
* Lookup330: xcm::VersionedXcm<RuntimeCall>
|
|
2713
3043
|
**/
|
|
2714
3044
|
XcmVersionedXcm: {
|
|
2715
3045
|
_enum: {
|
|
2716
3046
|
__Unused0: string;
|
|
2717
3047
|
__Unused1: string;
|
|
2718
|
-
|
|
3048
|
+
__Unused2: string;
|
|
2719
3049
|
V3: string;
|
|
2720
3050
|
V4: string;
|
|
3051
|
+
V5: string;
|
|
2721
3052
|
};
|
|
2722
3053
|
};
|
|
2723
3054
|
/**
|
|
2724
|
-
*
|
|
3055
|
+
* Lookup331: xcm::v3::Xcm<Call>
|
|
2725
3056
|
**/
|
|
2726
|
-
|
|
3057
|
+
XcmV3Xcm: string;
|
|
2727
3058
|
/**
|
|
2728
|
-
*
|
|
3059
|
+
* Lookup333: xcm::v3::Instruction<Call>
|
|
2729
3060
|
**/
|
|
2730
|
-
|
|
3061
|
+
XcmV3Instruction: {
|
|
2731
3062
|
_enum: {
|
|
2732
3063
|
WithdrawAsset: string;
|
|
2733
3064
|
ReserveAssetDeposited: string;
|
|
@@ -2736,6 +3067,7 @@ declare const _default: {
|
|
|
2736
3067
|
queryId: string;
|
|
2737
3068
|
response: string;
|
|
2738
3069
|
maxWeight: string;
|
|
3070
|
+
querier: string;
|
|
2739
3071
|
};
|
|
2740
3072
|
TransferAsset: {
|
|
2741
3073
|
assets: string;
|
|
@@ -2747,7 +3079,7 @@ declare const _default: {
|
|
|
2747
3079
|
xcm: string;
|
|
2748
3080
|
};
|
|
2749
3081
|
Transact: {
|
|
2750
|
-
|
|
3082
|
+
originKind: string;
|
|
2751
3083
|
requireWeightAtMost: string;
|
|
2752
3084
|
call: string;
|
|
2753
3085
|
};
|
|
@@ -2766,25 +3098,20 @@ declare const _default: {
|
|
|
2766
3098
|
};
|
|
2767
3099
|
ClearOrigin: string;
|
|
2768
3100
|
DescendOrigin: string;
|
|
2769
|
-
ReportError:
|
|
2770
|
-
queryId: string;
|
|
2771
|
-
dest: string;
|
|
2772
|
-
maxResponseWeight: string;
|
|
2773
|
-
};
|
|
3101
|
+
ReportError: string;
|
|
2774
3102
|
DepositAsset: {
|
|
2775
3103
|
assets: string;
|
|
2776
|
-
maxAssets: string;
|
|
2777
3104
|
beneficiary: string;
|
|
2778
3105
|
};
|
|
2779
3106
|
DepositReserveAsset: {
|
|
2780
3107
|
assets: string;
|
|
2781
|
-
maxAssets: string;
|
|
2782
3108
|
dest: string;
|
|
2783
3109
|
xcm: string;
|
|
2784
3110
|
};
|
|
2785
3111
|
ExchangeAsset: {
|
|
2786
3112
|
give: string;
|
|
2787
|
-
|
|
3113
|
+
want: string;
|
|
3114
|
+
maximal: string;
|
|
2788
3115
|
};
|
|
2789
3116
|
InitiateReserveWithdraw: {
|
|
2790
3117
|
assets: string;
|
|
@@ -2796,11 +3123,9 @@ declare const _default: {
|
|
|
2796
3123
|
dest: string;
|
|
2797
3124
|
xcm: string;
|
|
2798
3125
|
};
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
dest: string;
|
|
3126
|
+
ReportHolding: {
|
|
3127
|
+
responseInfo: string;
|
|
2802
3128
|
assets: string;
|
|
2803
|
-
maxResponseWeight: string;
|
|
2804
3129
|
};
|
|
2805
3130
|
BuyExecution: {
|
|
2806
3131
|
fees: string;
|
|
@@ -2820,30 +3145,82 @@ declare const _default: {
|
|
|
2820
3145
|
maxResponseWeight: string;
|
|
2821
3146
|
};
|
|
2822
3147
|
UnsubscribeVersion: string;
|
|
3148
|
+
BurnAsset: string;
|
|
3149
|
+
ExpectAsset: string;
|
|
3150
|
+
ExpectOrigin: string;
|
|
3151
|
+
ExpectError: string;
|
|
3152
|
+
ExpectTransactStatus: string;
|
|
3153
|
+
QueryPallet: {
|
|
3154
|
+
moduleName: string;
|
|
3155
|
+
responseInfo: string;
|
|
3156
|
+
};
|
|
3157
|
+
ExpectPallet: {
|
|
3158
|
+
index: string;
|
|
3159
|
+
name: string;
|
|
3160
|
+
moduleName: string;
|
|
3161
|
+
crateMajor: string;
|
|
3162
|
+
minCrateMinor: string;
|
|
3163
|
+
};
|
|
3164
|
+
ReportTransactStatus: string;
|
|
3165
|
+
ClearTransactStatus: string;
|
|
3166
|
+
UniversalOrigin: string;
|
|
3167
|
+
ExportMessage: {
|
|
3168
|
+
network: string;
|
|
3169
|
+
destination: string;
|
|
3170
|
+
xcm: string;
|
|
3171
|
+
};
|
|
3172
|
+
LockAsset: {
|
|
3173
|
+
asset: string;
|
|
3174
|
+
unlocker: string;
|
|
3175
|
+
};
|
|
3176
|
+
UnlockAsset: {
|
|
3177
|
+
asset: string;
|
|
3178
|
+
target: string;
|
|
3179
|
+
};
|
|
3180
|
+
NoteUnlockable: {
|
|
3181
|
+
asset: string;
|
|
3182
|
+
owner: string;
|
|
3183
|
+
};
|
|
3184
|
+
RequestUnlock: {
|
|
3185
|
+
asset: string;
|
|
3186
|
+
locker: string;
|
|
3187
|
+
};
|
|
3188
|
+
SetFeesMode: {
|
|
3189
|
+
jitWithdraw: string;
|
|
3190
|
+
};
|
|
3191
|
+
SetTopic: string;
|
|
3192
|
+
ClearTopic: string;
|
|
3193
|
+
AliasOrigin: string;
|
|
3194
|
+
UnpaidExecution: {
|
|
3195
|
+
weightLimit: string;
|
|
3196
|
+
checkOrigin: string;
|
|
3197
|
+
};
|
|
2823
3198
|
};
|
|
2824
3199
|
};
|
|
2825
3200
|
/**
|
|
2826
|
-
*
|
|
3201
|
+
* Lookup334: xcm::v3::Response
|
|
2827
3202
|
**/
|
|
2828
|
-
|
|
3203
|
+
XcmV3Response: {
|
|
2829
3204
|
_enum: {
|
|
2830
3205
|
Null: string;
|
|
2831
3206
|
Assets: string;
|
|
2832
3207
|
ExecutionResult: string;
|
|
2833
3208
|
Version: string;
|
|
3209
|
+
PalletsInfo: string;
|
|
3210
|
+
DispatchResult: string;
|
|
2834
3211
|
};
|
|
2835
3212
|
};
|
|
2836
3213
|
/**
|
|
2837
|
-
*
|
|
3214
|
+
* Lookup337: xcm::v3::traits::Error
|
|
2838
3215
|
**/
|
|
2839
|
-
|
|
3216
|
+
XcmV3TraitsError: {
|
|
2840
3217
|
_enum: {
|
|
2841
3218
|
Overflow: string;
|
|
2842
3219
|
Unimplemented: string;
|
|
2843
3220
|
UntrustedReserveLocation: string;
|
|
2844
3221
|
UntrustedTeleportLocation: string;
|
|
2845
|
-
|
|
2846
|
-
|
|
3222
|
+
LocationFull: string;
|
|
3223
|
+
LocationNotInvertible: string;
|
|
2847
3224
|
BadOrigin: string;
|
|
2848
3225
|
InvalidLocation: string;
|
|
2849
3226
|
AssetNotFound: string;
|
|
@@ -2860,62 +3237,86 @@ declare const _default: {
|
|
|
2860
3237
|
NotHoldingFees: string;
|
|
2861
3238
|
TooExpensive: string;
|
|
2862
3239
|
Trap: string;
|
|
3240
|
+
ExpectationFalse: string;
|
|
3241
|
+
PalletNotFound: string;
|
|
3242
|
+
NameMismatch: string;
|
|
3243
|
+
VersionIncompatible: string;
|
|
3244
|
+
HoldingWouldOverflow: string;
|
|
3245
|
+
ExportError: string;
|
|
3246
|
+
ReanchorFailed: string;
|
|
3247
|
+
NoDeal: string;
|
|
3248
|
+
FeesNotMet: string;
|
|
3249
|
+
LockError: string;
|
|
3250
|
+
NoPermission: string;
|
|
3251
|
+
Unanchored: string;
|
|
3252
|
+
NotDepositable: string;
|
|
2863
3253
|
UnhandledXcmVersion: string;
|
|
2864
3254
|
WeightLimitReached: string;
|
|
2865
3255
|
Barrier: string;
|
|
2866
3256
|
WeightNotComputable: string;
|
|
3257
|
+
ExceedsStackLimit: string;
|
|
2867
3258
|
};
|
|
2868
3259
|
};
|
|
2869
3260
|
/**
|
|
2870
|
-
*
|
|
3261
|
+
* Lookup339: xcm::v3::PalletInfo
|
|
2871
3262
|
**/
|
|
2872
|
-
|
|
2873
|
-
|
|
3263
|
+
XcmV3PalletInfo: {
|
|
3264
|
+
index: string;
|
|
3265
|
+
name: string;
|
|
3266
|
+
moduleName: string;
|
|
3267
|
+
major: string;
|
|
3268
|
+
minor: string;
|
|
3269
|
+
patch: string;
|
|
3270
|
+
};
|
|
3271
|
+
/**
|
|
3272
|
+
* Lookup343: xcm::v3::QueryResponseInfo
|
|
3273
|
+
**/
|
|
3274
|
+
XcmV3QueryResponseInfo: {
|
|
3275
|
+
destination: string;
|
|
3276
|
+
queryId: string;
|
|
3277
|
+
maxWeight: string;
|
|
2874
3278
|
};
|
|
2875
3279
|
/**
|
|
2876
|
-
*
|
|
3280
|
+
* Lookup344: xcm::v3::multiasset::MultiAssetFilter
|
|
2877
3281
|
**/
|
|
2878
|
-
|
|
3282
|
+
XcmV3MultiassetMultiAssetFilter: {
|
|
2879
3283
|
_enum: {
|
|
2880
3284
|
Definite: string;
|
|
2881
3285
|
Wild: string;
|
|
2882
3286
|
};
|
|
2883
3287
|
};
|
|
2884
3288
|
/**
|
|
2885
|
-
*
|
|
3289
|
+
* Lookup345: xcm::v3::multiasset::WildMultiAsset
|
|
2886
3290
|
**/
|
|
2887
|
-
|
|
3291
|
+
XcmV3MultiassetWildMultiAsset: {
|
|
2888
3292
|
_enum: {
|
|
2889
3293
|
All: string;
|
|
2890
3294
|
AllOf: {
|
|
2891
3295
|
id: string;
|
|
2892
3296
|
fun: string;
|
|
2893
3297
|
};
|
|
3298
|
+
AllCounted: string;
|
|
3299
|
+
AllOfCounted: {
|
|
3300
|
+
id: string;
|
|
3301
|
+
fun: string;
|
|
3302
|
+
count: string;
|
|
3303
|
+
};
|
|
2894
3304
|
};
|
|
2895
3305
|
};
|
|
2896
3306
|
/**
|
|
2897
|
-
*
|
|
3307
|
+
* Lookup346: xcm::v3::multiasset::WildFungibility
|
|
2898
3308
|
**/
|
|
2899
|
-
|
|
3309
|
+
XcmV3MultiassetWildFungibility: {
|
|
2900
3310
|
_enum: string[];
|
|
2901
3311
|
};
|
|
2902
3312
|
/**
|
|
2903
|
-
*
|
|
2904
|
-
**/
|
|
2905
|
-
XcmV2WeightLimit: {
|
|
2906
|
-
_enum: {
|
|
2907
|
-
Unlimited: string;
|
|
2908
|
-
Limited: string;
|
|
2909
|
-
};
|
|
2910
|
-
};
|
|
2911
|
-
/**
|
|
2912
|
-
* Lookup299: xcm::v3::Xcm<Call>
|
|
3313
|
+
* Lookup347: staging_xcm::v4::Xcm<Call>
|
|
2913
3314
|
**/
|
|
2914
|
-
|
|
3315
|
+
StagingXcmV4Xcm: string;
|
|
2915
3316
|
/**
|
|
2916
|
-
*
|
|
3317
|
+
* Lookup349: staging_xcm::v4::Instruction<Call>
|
|
2917
3318
|
**/
|
|
2918
|
-
|
|
3319
|
+
StagingXcmV4Instruction: {
|
|
2919
3320
|
_enum: {
|
|
2920
3321
|
WithdrawAsset: string;
|
|
2921
3322
|
ReserveAssetDeposited: string;
|
|
@@ -3055,9 +3456,9 @@ declare const _default: {
|
|
|
3055
3456
|
};
|
|
3056
3457
|
};
|
|
3057
3458
|
/**
|
|
3058
|
-
*
|
|
3459
|
+
* Lookup350: staging_xcm::v4::Response
|
|
3059
3460
|
**/
|
|
3060
|
-
|
|
3461
|
+
StagingXcmV4Response: {
|
|
3061
3462
|
_enum: {
|
|
3062
3463
|
Null: string;
|
|
3063
3464
|
Assets: string;
|
|
@@ -3068,9 +3469,9 @@ declare const _default: {
|
|
|
3068
3469
|
};
|
|
3069
3470
|
};
|
|
3070
3471
|
/**
|
|
3071
|
-
*
|
|
3472
|
+
* Lookup352: staging_xcm::v4::PalletInfo
|
|
3072
3473
|
**/
|
|
3073
|
-
|
|
3474
|
+
StagingXcmV4PalletInfo: {
|
|
3074
3475
|
index: string;
|
|
3075
3476
|
name: string;
|
|
3076
3477
|
moduleName: string;
|
|
@@ -3079,26 +3480,26 @@ declare const _default: {
|
|
|
3079
3480
|
patch: string;
|
|
3080
3481
|
};
|
|
3081
3482
|
/**
|
|
3082
|
-
*
|
|
3483
|
+
* Lookup356: staging_xcm::v4::QueryResponseInfo
|
|
3083
3484
|
**/
|
|
3084
|
-
|
|
3485
|
+
StagingXcmV4QueryResponseInfo: {
|
|
3085
3486
|
destination: string;
|
|
3086
3487
|
queryId: string;
|
|
3087
3488
|
maxWeight: string;
|
|
3088
3489
|
};
|
|
3089
3490
|
/**
|
|
3090
|
-
*
|
|
3491
|
+
* Lookup357: staging_xcm::v4::asset::AssetFilter
|
|
3091
3492
|
**/
|
|
3092
|
-
|
|
3493
|
+
StagingXcmV4AssetAssetFilter: {
|
|
3093
3494
|
_enum: {
|
|
3094
3495
|
Definite: string;
|
|
3095
3496
|
Wild: string;
|
|
3096
3497
|
};
|
|
3097
3498
|
};
|
|
3098
3499
|
/**
|
|
3099
|
-
*
|
|
3500
|
+
* Lookup358: staging_xcm::v4::asset::WildAsset
|
|
3100
3501
|
**/
|
|
3101
|
-
|
|
3502
|
+
StagingXcmV4AssetWildAsset: {
|
|
3102
3503
|
_enum: {
|
|
3103
3504
|
All: string;
|
|
3104
3505
|
AllOf: {
|
|
@@ -3114,13 +3515,13 @@ declare const _default: {
|
|
|
3114
3515
|
};
|
|
3115
3516
|
};
|
|
3116
3517
|
/**
|
|
3117
|
-
*
|
|
3518
|
+
* Lookup359: staging_xcm::v4::asset::WildFungibility
|
|
3118
3519
|
**/
|
|
3119
|
-
|
|
3520
|
+
StagingXcmV4AssetWildFungibility: {
|
|
3120
3521
|
_enum: string[];
|
|
3121
3522
|
};
|
|
3122
3523
|
/**
|
|
3123
|
-
*
|
|
3524
|
+
* Lookup371: staging_xcm_executor::traits::asset_transfer::TransferType
|
|
3124
3525
|
**/
|
|
3125
3526
|
StagingXcmExecutorAssetTransferTransferType: {
|
|
3126
3527
|
_enum: {
|
|
@@ -3131,7 +3532,7 @@ declare const _default: {
|
|
|
3131
3532
|
};
|
|
3132
3533
|
};
|
|
3133
3534
|
/**
|
|
3134
|
-
*
|
|
3535
|
+
* Lookup372: xcm::VersionedAssetId
|
|
3135
3536
|
**/
|
|
3136
3537
|
XcmVersionedAssetId: {
|
|
3137
3538
|
_enum: {
|
|
@@ -3140,14 +3541,15 @@ declare const _default: {
|
|
|
3140
3541
|
__Unused2: string;
|
|
3141
3542
|
V3: string;
|
|
3142
3543
|
V4: string;
|
|
3544
|
+
V5: string;
|
|
3143
3545
|
};
|
|
3144
3546
|
};
|
|
3145
3547
|
/**
|
|
3146
|
-
*
|
|
3548
|
+
* Lookup373: cumulus_pallet_xcm::pallet::Call<T>
|
|
3147
3549
|
**/
|
|
3148
3550
|
CumulusPalletXcmCall: string;
|
|
3149
3551
|
/**
|
|
3150
|
-
*
|
|
3552
|
+
* Lookup374: pallet_message_queue::pallet::Call<T>
|
|
3151
3553
|
**/
|
|
3152
3554
|
PalletMessageQueueCall: {
|
|
3153
3555
|
_enum: {
|
|
@@ -3164,14 +3566,16 @@ declare const _default: {
|
|
|
3164
3566
|
};
|
|
3165
3567
|
};
|
|
3166
3568
|
/**
|
|
3167
|
-
*
|
|
3569
|
+
* Lookup375: pallet_storage_providers::pallet::Call<T>
|
|
3168
3570
|
**/
|
|
3169
3571
|
PalletStorageProvidersCall: {
|
|
3170
3572
|
_enum: {
|
|
3171
3573
|
request_msp_sign_up: {
|
|
3172
3574
|
capacity: string;
|
|
3173
3575
|
multiaddresses: string;
|
|
3174
|
-
|
|
3576
|
+
valuePropPricePerGigaUnitOfDataPerBlock: string;
|
|
3577
|
+
commitment: string;
|
|
3578
|
+
valuePropMaxDataLimit: string;
|
|
3175
3579
|
paymentAccount: string;
|
|
3176
3580
|
};
|
|
3177
3581
|
request_bsp_sign_up: {
|
|
@@ -3183,20 +3587,35 @@ declare const _default: {
|
|
|
3183
3587
|
providerAccount: string;
|
|
3184
3588
|
};
|
|
3185
3589
|
cancel_sign_up: string;
|
|
3186
|
-
msp_sign_off:
|
|
3590
|
+
msp_sign_off: {
|
|
3591
|
+
mspId: string;
|
|
3592
|
+
};
|
|
3187
3593
|
bsp_sign_off: string;
|
|
3188
3594
|
change_capacity: {
|
|
3189
3595
|
newCapacity: string;
|
|
3190
3596
|
};
|
|
3191
3597
|
add_value_prop: {
|
|
3192
|
-
|
|
3598
|
+
pricePerGigaUnitOfDataPerBlock: string;
|
|
3599
|
+
commitment: string;
|
|
3600
|
+
bucketDataLimit: string;
|
|
3601
|
+
};
|
|
3602
|
+
make_value_prop_unavailable: {
|
|
3603
|
+
valuePropId: string;
|
|
3604
|
+
};
|
|
3605
|
+
add_multiaddress: {
|
|
3606
|
+
newMultiaddress: string;
|
|
3607
|
+
};
|
|
3608
|
+
remove_multiaddress: {
|
|
3609
|
+
multiaddress: string;
|
|
3193
3610
|
};
|
|
3194
3611
|
force_msp_sign_up: {
|
|
3195
3612
|
who: string;
|
|
3196
3613
|
mspId: string;
|
|
3197
3614
|
capacity: string;
|
|
3198
3615
|
multiaddresses: string;
|
|
3199
|
-
|
|
3616
|
+
valuePropPricePerGigaUnitOfDataPerBlock: string;
|
|
3617
|
+
commitment: string;
|
|
3618
|
+
valuePropMaxDataLimit: string;
|
|
3200
3619
|
paymentAccount: string;
|
|
3201
3620
|
};
|
|
3202
3621
|
force_bsp_sign_up: {
|
|
@@ -3210,10 +3629,15 @@ declare const _default: {
|
|
|
3210
3629
|
slash: {
|
|
3211
3630
|
providerId: string;
|
|
3212
3631
|
};
|
|
3632
|
+
top_up_deposit: string;
|
|
3633
|
+
delete_provider: {
|
|
3634
|
+
providerId: string;
|
|
3635
|
+
};
|
|
3636
|
+
stop_all_cycles: string;
|
|
3213
3637
|
};
|
|
3214
3638
|
};
|
|
3215
3639
|
/**
|
|
3216
|
-
*
|
|
3640
|
+
* Lookup376: pallet_file_system::pallet::Call<T>
|
|
3217
3641
|
**/
|
|
3218
3642
|
PalletFileSystemCall: {
|
|
3219
3643
|
_enum: {
|
|
@@ -3221,10 +3645,12 @@ declare const _default: {
|
|
|
3221
3645
|
mspId: string;
|
|
3222
3646
|
name: string;
|
|
3223
3647
|
private: string;
|
|
3648
|
+
valuePropId: string;
|
|
3224
3649
|
};
|
|
3225
3650
|
request_move_bucket: {
|
|
3226
3651
|
bucketId: string;
|
|
3227
3652
|
newMspId: string;
|
|
3653
|
+
newValuePropId: string;
|
|
3228
3654
|
};
|
|
3229
3655
|
msp_respond_move_bucket_request: {
|
|
3230
3656
|
bucketId: string;
|
|
@@ -3237,6 +3663,9 @@ declare const _default: {
|
|
|
3237
3663
|
create_and_associate_collection_with_bucket: {
|
|
3238
3664
|
bucketId: string;
|
|
3239
3665
|
};
|
|
3666
|
+
delete_bucket: {
|
|
3667
|
+
bucketId: string;
|
|
3668
|
+
};
|
|
3240
3669
|
issue_storage_request: {
|
|
3241
3670
|
_alias: {
|
|
3242
3671
|
size_: string;
|
|
@@ -3247,15 +3676,16 @@ declare const _default: {
|
|
|
3247
3676
|
size_: string;
|
|
3248
3677
|
mspId: string;
|
|
3249
3678
|
peerIds: string;
|
|
3679
|
+
replicationTarget: string;
|
|
3250
3680
|
};
|
|
3251
3681
|
revoke_storage_request: {
|
|
3252
3682
|
fileKey: string;
|
|
3253
3683
|
};
|
|
3254
|
-
bsp_add_data_server_for_move_bucket_request: {
|
|
3255
|
-
bucketId: string;
|
|
3256
|
-
};
|
|
3257
3684
|
msp_respond_storage_requests_multiple_buckets: {
|
|
3258
|
-
|
|
3685
|
+
storageRequestMspResponse: string;
|
|
3686
|
+
};
|
|
3687
|
+
msp_stop_storing_bucket: {
|
|
3688
|
+
bucketId: string;
|
|
3259
3689
|
};
|
|
3260
3690
|
bsp_volunteer: {
|
|
3261
3691
|
fileKey: string;
|
|
@@ -3293,51 +3723,91 @@ declare const _default: {
|
|
|
3293
3723
|
size_: string;
|
|
3294
3724
|
inclusionForestProof: string;
|
|
3295
3725
|
};
|
|
3296
|
-
|
|
3726
|
+
msp_stop_storing_bucket_for_insolvent_user: {
|
|
3727
|
+
bucketId: string;
|
|
3728
|
+
};
|
|
3729
|
+
request_delete_file: {
|
|
3297
3730
|
_alias: {
|
|
3298
3731
|
size_: string;
|
|
3299
3732
|
};
|
|
3733
|
+
signedIntention: string;
|
|
3734
|
+
signature: string;
|
|
3300
3735
|
bucketId: string;
|
|
3301
|
-
fileKey: string;
|
|
3302
3736
|
location: string;
|
|
3303
3737
|
size_: string;
|
|
3304
3738
|
fingerprint: string;
|
|
3305
|
-
maybeInclusionForestProof: string;
|
|
3306
3739
|
};
|
|
3307
|
-
|
|
3308
|
-
|
|
3309
|
-
|
|
3740
|
+
delete_file: {
|
|
3741
|
+
_alias: {
|
|
3742
|
+
size_: string;
|
|
3743
|
+
};
|
|
3744
|
+
fileOwner: string;
|
|
3745
|
+
signedIntention: string;
|
|
3746
|
+
signature: string;
|
|
3310
3747
|
bucketId: string;
|
|
3748
|
+
location: string;
|
|
3749
|
+
size_: string;
|
|
3750
|
+
fingerprint: string;
|
|
3751
|
+
bspId: string;
|
|
3311
3752
|
forestProof: string;
|
|
3312
3753
|
};
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
|
|
3754
|
+
delete_file_for_incomplete_storage_request: {
|
|
3755
|
+
fileKey: string;
|
|
3756
|
+
bspId: string;
|
|
3757
|
+
forestProof: string;
|
|
3316
3758
|
};
|
|
3317
3759
|
};
|
|
3318
3760
|
};
|
|
3319
3761
|
/**
|
|
3320
|
-
*
|
|
3762
|
+
* Lookup377: pallet_file_system::types::BucketMoveRequestResponse
|
|
3321
3763
|
**/
|
|
3322
3764
|
PalletFileSystemBucketMoveRequestResponse: {
|
|
3323
3765
|
_enum: string[];
|
|
3324
3766
|
};
|
|
3325
3767
|
/**
|
|
3326
|
-
*
|
|
3768
|
+
* Lookup378: pallet_file_system::types::ReplicationTarget<T>
|
|
3327
3769
|
**/
|
|
3328
|
-
|
|
3770
|
+
PalletFileSystemReplicationTarget: {
|
|
3771
|
+
_enum: {
|
|
3772
|
+
Basic: string;
|
|
3773
|
+
Standard: string;
|
|
3774
|
+
HighSecurity: string;
|
|
3775
|
+
SuperHighSecurity: string;
|
|
3776
|
+
UltraHighSecurity: string;
|
|
3777
|
+
Custom: string;
|
|
3778
|
+
};
|
|
3779
|
+
};
|
|
3780
|
+
/**
|
|
3781
|
+
* Lookup380: pallet_file_system::types::StorageRequestMspBucketResponse<T>
|
|
3782
|
+
**/
|
|
3783
|
+
PalletFileSystemStorageRequestMspBucketResponse: {
|
|
3784
|
+
bucketId: string;
|
|
3329
3785
|
accept: string;
|
|
3330
3786
|
reject: string;
|
|
3331
3787
|
};
|
|
3332
3788
|
/**
|
|
3333
|
-
*
|
|
3789
|
+
* Lookup382: pallet_file_system::types::StorageRequestMspAcceptedFileKeys<T>
|
|
3334
3790
|
**/
|
|
3335
|
-
|
|
3791
|
+
PalletFileSystemStorageRequestMspAcceptedFileKeys: {
|
|
3336
3792
|
fileKeysAndProofs: string;
|
|
3337
|
-
|
|
3793
|
+
forestProof: string;
|
|
3794
|
+
};
|
|
3795
|
+
/**
|
|
3796
|
+
* Lookup384: pallet_file_system::types::FileKeyWithProof<T>
|
|
3797
|
+
**/
|
|
3798
|
+
PalletFileSystemFileKeyWithProof: {
|
|
3799
|
+
fileKey: string;
|
|
3800
|
+
proof: string;
|
|
3801
|
+
};
|
|
3802
|
+
/**
|
|
3803
|
+
* Lookup386: pallet_file_system::types::RejectedStorageRequest<T>
|
|
3804
|
+
**/
|
|
3805
|
+
PalletFileSystemRejectedStorageRequest: {
|
|
3806
|
+
fileKey: string;
|
|
3807
|
+
reason: string;
|
|
3338
3808
|
};
|
|
3339
3809
|
/**
|
|
3340
|
-
*
|
|
3810
|
+
* Lookup388: pallet_proofs_dealer::pallet::Call<T>
|
|
3341
3811
|
**/
|
|
3342
3812
|
PalletProofsDealerCall: {
|
|
3343
3813
|
_enum: {
|
|
@@ -3354,16 +3824,20 @@ declare const _default: {
|
|
|
3354
3824
|
set_paused: {
|
|
3355
3825
|
paused: string;
|
|
3356
3826
|
};
|
|
3827
|
+
priority_challenge: {
|
|
3828
|
+
key: string;
|
|
3829
|
+
shouldRemoveKey: string;
|
|
3830
|
+
};
|
|
3357
3831
|
};
|
|
3358
3832
|
};
|
|
3359
3833
|
/**
|
|
3360
|
-
*
|
|
3834
|
+
* Lookup389: pallet_randomness::pallet::Call<T>
|
|
3361
3835
|
**/
|
|
3362
3836
|
PalletRandomnessCall: {
|
|
3363
3837
|
_enum: string[];
|
|
3364
3838
|
};
|
|
3365
3839
|
/**
|
|
3366
|
-
*
|
|
3840
|
+
* Lookup390: pallet_payment_streams::pallet::Call<T>
|
|
3367
3841
|
**/
|
|
3368
3842
|
PalletPaymentStreamsCall: {
|
|
3369
3843
|
_enum: {
|
|
@@ -3398,12 +3872,17 @@ declare const _default: {
|
|
|
3398
3872
|
charge_payment_streams: {
|
|
3399
3873
|
userAccount: string;
|
|
3400
3874
|
};
|
|
3401
|
-
|
|
3875
|
+
charge_multiple_users_payment_streams: {
|
|
3876
|
+
userAccounts: string;
|
|
3877
|
+
};
|
|
3878
|
+
pay_outstanding_debt: {
|
|
3879
|
+
providers: string;
|
|
3880
|
+
};
|
|
3402
3881
|
clear_insolvent_flag: string;
|
|
3403
3882
|
};
|
|
3404
3883
|
};
|
|
3405
3884
|
/**
|
|
3406
|
-
*
|
|
3885
|
+
* Lookup391: pallet_bucket_nfts::pallet::Call<T>
|
|
3407
3886
|
**/
|
|
3408
3887
|
PalletBucketNftsCall: {
|
|
3409
3888
|
_enum: {
|
|
@@ -3421,7 +3900,7 @@ declare const _default: {
|
|
|
3421
3900
|
};
|
|
3422
3901
|
};
|
|
3423
3902
|
/**
|
|
3424
|
-
*
|
|
3903
|
+
* Lookup393: pallet_nfts::pallet::Call<T, I>
|
|
3425
3904
|
**/
|
|
3426
3905
|
PalletNftsCall: {
|
|
3427
3906
|
_enum: {
|
|
@@ -3618,7 +4097,7 @@ declare const _default: {
|
|
|
3618
4097
|
};
|
|
3619
4098
|
};
|
|
3620
4099
|
/**
|
|
3621
|
-
*
|
|
4100
|
+
* Lookup394: pallet_nfts::types::CollectionConfig<Price, BlockNumber, CollectionId>
|
|
3622
4101
|
**/
|
|
3623
4102
|
PalletNftsCollectionConfig: {
|
|
3624
4103
|
settings: string;
|
|
@@ -3626,13 +4105,13 @@ declare const _default: {
|
|
|
3626
4105
|
mintSettings: string;
|
|
3627
4106
|
};
|
|
3628
4107
|
/**
|
|
3629
|
-
*
|
|
4108
|
+
* Lookup396: pallet_nfts::types::CollectionSetting
|
|
3630
4109
|
**/
|
|
3631
4110
|
PalletNftsCollectionSetting: {
|
|
3632
4111
|
_enum: string[];
|
|
3633
4112
|
};
|
|
3634
4113
|
/**
|
|
3635
|
-
*
|
|
4114
|
+
* Lookup397: pallet_nfts::types::MintSettings<Price, BlockNumber, CollectionId>
|
|
3636
4115
|
**/
|
|
3637
4116
|
PalletNftsMintSettings: {
|
|
3638
4117
|
mintType: string;
|
|
@@ -3642,7 +4121,7 @@ declare const _default: {
|
|
|
3642
4121
|
defaultItemSettings: string;
|
|
3643
4122
|
};
|
|
3644
4123
|
/**
|
|
3645
|
-
*
|
|
4124
|
+
* Lookup398: pallet_nfts::types::MintType<CollectionId>
|
|
3646
4125
|
**/
|
|
3647
4126
|
PalletNftsMintType: {
|
|
3648
4127
|
_enum: {
|
|
@@ -3652,13 +4131,13 @@ declare const _default: {
|
|
|
3652
4131
|
};
|
|
3653
4132
|
};
|
|
3654
4133
|
/**
|
|
3655
|
-
*
|
|
4134
|
+
* Lookup401: pallet_nfts::types::ItemSetting
|
|
3656
4135
|
**/
|
|
3657
4136
|
PalletNftsItemSetting: {
|
|
3658
4137
|
_enum: string[];
|
|
3659
4138
|
};
|
|
3660
4139
|
/**
|
|
3661
|
-
*
|
|
4140
|
+
* Lookup402: pallet_nfts::types::DestroyWitness
|
|
3662
4141
|
**/
|
|
3663
4142
|
PalletNftsDestroyWitness: {
|
|
3664
4143
|
itemMetadatas: string;
|
|
@@ -3666,26 +4145,26 @@ declare const _default: {
|
|
|
3666
4145
|
attributes: string;
|
|
3667
4146
|
};
|
|
3668
4147
|
/**
|
|
3669
|
-
*
|
|
4148
|
+
* Lookup404: pallet_nfts::types::MintWitness<ItemId, Balance>
|
|
3670
4149
|
**/
|
|
3671
4150
|
PalletNftsMintWitness: {
|
|
3672
4151
|
ownedItem: string;
|
|
3673
4152
|
mintPrice: string;
|
|
3674
4153
|
};
|
|
3675
4154
|
/**
|
|
3676
|
-
*
|
|
4155
|
+
* Lookup405: pallet_nfts::types::ItemConfig
|
|
3677
4156
|
**/
|
|
3678
4157
|
PalletNftsItemConfig: {
|
|
3679
4158
|
settings: string;
|
|
3680
4159
|
};
|
|
3681
4160
|
/**
|
|
3682
|
-
*
|
|
4161
|
+
* Lookup407: pallet_nfts::types::CancelAttributesApprovalWitness
|
|
3683
4162
|
**/
|
|
3684
4163
|
PalletNftsCancelAttributesApprovalWitness: {
|
|
3685
4164
|
accountAttributes: string;
|
|
3686
4165
|
};
|
|
3687
4166
|
/**
|
|
3688
|
-
*
|
|
4167
|
+
* Lookup409: pallet_nfts::types::ItemTip<CollectionId, ItemId, sp_core::crypto::AccountId32, Amount>
|
|
3689
4168
|
**/
|
|
3690
4169
|
PalletNftsItemTip: {
|
|
3691
4170
|
collection: string;
|
|
@@ -3694,7 +4173,7 @@ declare const _default: {
|
|
|
3694
4173
|
amount: string;
|
|
3695
4174
|
};
|
|
3696
4175
|
/**
|
|
3697
|
-
*
|
|
4176
|
+
* Lookup411: pallet_nfts::types::PreSignedMint<CollectionId, ItemId, sp_core::crypto::AccountId32, Deadline, Balance>
|
|
3698
4177
|
**/
|
|
3699
4178
|
PalletNftsPreSignedMint: {
|
|
3700
4179
|
collection: string;
|
|
@@ -3706,17 +4185,7 @@ declare const _default: {
|
|
|
3706
4185
|
mintPrice: string;
|
|
3707
4186
|
};
|
|
3708
4187
|
/**
|
|
3709
|
-
*
|
|
3710
|
-
**/
|
|
3711
|
-
SpRuntimeMultiSignature: {
|
|
3712
|
-
_enum: {
|
|
3713
|
-
Ed25519: string;
|
|
3714
|
-
Sr25519: string;
|
|
3715
|
-
Ecdsa: string;
|
|
3716
|
-
};
|
|
3717
|
-
};
|
|
3718
|
-
/**
|
|
3719
|
-
* Lookup368: pallet_nfts::types::PreSignedAttributes<CollectionId, ItemId, sp_core::crypto::AccountId32, Deadline>
|
|
4188
|
+
* Lookup412: pallet_nfts::types::PreSignedAttributes<CollectionId, ItemId, sp_core::crypto::AccountId32, Deadline>
|
|
3720
4189
|
**/
|
|
3721
4190
|
PalletNftsPreSignedAttributes: {
|
|
3722
4191
|
collection: string;
|
|
@@ -3726,7 +4195,7 @@ declare const _default: {
|
|
|
3726
4195
|
deadline: string;
|
|
3727
4196
|
};
|
|
3728
4197
|
/**
|
|
3729
|
-
*
|
|
4198
|
+
* Lookup413: pallet_parameters::pallet::Call<T>
|
|
3730
4199
|
**/
|
|
3731
4200
|
PalletParametersCall: {
|
|
3732
4201
|
_enum: {
|
|
@@ -3736,55 +4205,81 @@ declare const _default: {
|
|
|
3736
4205
|
};
|
|
3737
4206
|
};
|
|
3738
4207
|
/**
|
|
3739
|
-
*
|
|
4208
|
+
* Lookup414: sh_parachain_runtime::configs::runtime_params::RuntimeParameters
|
|
3740
4209
|
**/
|
|
3741
|
-
|
|
4210
|
+
ShParachainRuntimeConfigsRuntimeParamsRuntimeParameters: {
|
|
3742
4211
|
_enum: {
|
|
3743
4212
|
RuntimeConfig: string;
|
|
3744
4213
|
};
|
|
3745
4214
|
};
|
|
3746
4215
|
/**
|
|
3747
|
-
*
|
|
4216
|
+
* Lookup415: sh_parachain_runtime::configs::runtime_params::dynamic_params::runtime_config::Parameters
|
|
3748
4217
|
**/
|
|
3749
|
-
|
|
4218
|
+
ShParachainRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters: {
|
|
3750
4219
|
_enum: {
|
|
3751
4220
|
SlashAmountPerMaxFileSize: string;
|
|
3752
4221
|
StakeToChallengePeriod: string;
|
|
3753
4222
|
CheckpointChallengePeriod: string;
|
|
3754
4223
|
MinChallengePeriod: string;
|
|
4224
|
+
SystemUtilisationLowerThresholdPercentage: string;
|
|
4225
|
+
SystemUtilisationUpperThresholdPercentage: string;
|
|
4226
|
+
MostlyStablePrice: string;
|
|
4227
|
+
MaxPrice: string;
|
|
4228
|
+
MinPrice: string;
|
|
4229
|
+
UpperExponentFactor: string;
|
|
4230
|
+
LowerExponentFactor: string;
|
|
4231
|
+
ZeroSizeBucketFixedRate: string;
|
|
4232
|
+
IdealUtilisationRate: string;
|
|
4233
|
+
DecayRate: string;
|
|
4234
|
+
MinimumTreasuryCut: string;
|
|
4235
|
+
MaximumTreasuryCut: string;
|
|
4236
|
+
BspStopStoringFilePenalty: string;
|
|
4237
|
+
ProviderTopUpTtl: string;
|
|
4238
|
+
BasicReplicationTarget: string;
|
|
4239
|
+
StandardReplicationTarget: string;
|
|
4240
|
+
HighSecurityReplicationTarget: string;
|
|
4241
|
+
SuperHighSecurityReplicationTarget: string;
|
|
4242
|
+
UltraHighSecurityReplicationTarget: string;
|
|
4243
|
+
MaxReplicationTarget: string;
|
|
4244
|
+
TickRangeToMaximumThreshold: string;
|
|
4245
|
+
StorageRequestTtl: string;
|
|
4246
|
+
MinWaitForStopStoring: string;
|
|
4247
|
+
MinSeedPeriod: string;
|
|
4248
|
+
StakeToSeedPeriod: string;
|
|
4249
|
+
UpfrontTicksToPay: string;
|
|
3755
4250
|
};
|
|
3756
4251
|
};
|
|
3757
4252
|
/**
|
|
3758
|
-
*
|
|
4253
|
+
* Lookup417: pallet_sudo::pallet::Error<T>
|
|
3759
4254
|
**/
|
|
3760
4255
|
PalletSudoError: {
|
|
3761
4256
|
_enum: string[];
|
|
3762
4257
|
};
|
|
3763
4258
|
/**
|
|
3764
|
-
*
|
|
4259
|
+
* Lookup420: pallet_collator_selection::pallet::CandidateInfo<sp_core::crypto::AccountId32, Balance>
|
|
3765
4260
|
**/
|
|
3766
4261
|
PalletCollatorSelectionCandidateInfo: {
|
|
3767
4262
|
who: string;
|
|
3768
4263
|
deposit: string;
|
|
3769
4264
|
};
|
|
3770
4265
|
/**
|
|
3771
|
-
*
|
|
4266
|
+
* Lookup422: pallet_collator_selection::pallet::Error<T>
|
|
3772
4267
|
**/
|
|
3773
4268
|
PalletCollatorSelectionError: {
|
|
3774
4269
|
_enum: string[];
|
|
3775
4270
|
};
|
|
3776
4271
|
/**
|
|
3777
|
-
*
|
|
4272
|
+
* Lookup426: sp_core::crypto::KeyTypeId
|
|
3778
4273
|
**/
|
|
3779
4274
|
SpCoreCryptoKeyTypeId: string;
|
|
3780
4275
|
/**
|
|
3781
|
-
*
|
|
4276
|
+
* Lookup427: pallet_session::pallet::Error<T>
|
|
3782
4277
|
**/
|
|
3783
4278
|
PalletSessionError: {
|
|
3784
4279
|
_enum: string[];
|
|
3785
4280
|
};
|
|
3786
4281
|
/**
|
|
3787
|
-
*
|
|
4282
|
+
* Lookup436: cumulus_pallet_xcmp_queue::OutboundChannelDetails
|
|
3788
4283
|
**/
|
|
3789
4284
|
CumulusPalletXcmpQueueOutboundChannelDetails: {
|
|
3790
4285
|
recipient: string;
|
|
@@ -3794,13 +4289,13 @@ declare const _default: {
|
|
|
3794
4289
|
lastIndex: string;
|
|
3795
4290
|
};
|
|
3796
4291
|
/**
|
|
3797
|
-
*
|
|
4292
|
+
* Lookup437: cumulus_pallet_xcmp_queue::OutboundState
|
|
3798
4293
|
**/
|
|
3799
4294
|
CumulusPalletXcmpQueueOutboundState: {
|
|
3800
4295
|
_enum: string[];
|
|
3801
4296
|
};
|
|
3802
4297
|
/**
|
|
3803
|
-
*
|
|
4298
|
+
* Lookup441: cumulus_pallet_xcmp_queue::QueueConfigData
|
|
3804
4299
|
**/
|
|
3805
4300
|
CumulusPalletXcmpQueueQueueConfigData: {
|
|
3806
4301
|
suspendThreshold: string;
|
|
@@ -3808,13 +4303,13 @@ declare const _default: {
|
|
|
3808
4303
|
resumeThreshold: string;
|
|
3809
4304
|
};
|
|
3810
4305
|
/**
|
|
3811
|
-
*
|
|
4306
|
+
* Lookup442: cumulus_pallet_xcmp_queue::pallet::Error<T>
|
|
3812
4307
|
**/
|
|
3813
4308
|
CumulusPalletXcmpQueueError: {
|
|
3814
4309
|
_enum: string[];
|
|
3815
4310
|
};
|
|
3816
4311
|
/**
|
|
3817
|
-
*
|
|
4312
|
+
* Lookup443: pallet_xcm::pallet::QueryStatus<BlockNumber>
|
|
3818
4313
|
**/
|
|
3819
4314
|
PalletXcmQueryStatus: {
|
|
3820
4315
|
_enum: {
|
|
@@ -3835,19 +4330,20 @@ declare const _default: {
|
|
|
3835
4330
|
};
|
|
3836
4331
|
};
|
|
3837
4332
|
/**
|
|
3838
|
-
*
|
|
4333
|
+
* Lookup447: xcm::VersionedResponse
|
|
3839
4334
|
**/
|
|
3840
4335
|
XcmVersionedResponse: {
|
|
3841
4336
|
_enum: {
|
|
3842
4337
|
__Unused0: string;
|
|
3843
4338
|
__Unused1: string;
|
|
3844
|
-
|
|
4339
|
+
__Unused2: string;
|
|
3845
4340
|
V3: string;
|
|
3846
4341
|
V4: string;
|
|
4342
|
+
V5: string;
|
|
3847
4343
|
};
|
|
3848
4344
|
};
|
|
3849
4345
|
/**
|
|
3850
|
-
*
|
|
4346
|
+
* Lookup453: pallet_xcm::pallet::VersionMigrationStage
|
|
3851
4347
|
**/
|
|
3852
4348
|
PalletXcmVersionMigrationStage: {
|
|
3853
4349
|
_enum: {
|
|
@@ -3858,7 +4354,7 @@ declare const _default: {
|
|
|
3858
4354
|
};
|
|
3859
4355
|
};
|
|
3860
4356
|
/**
|
|
3861
|
-
*
|
|
4357
|
+
* Lookup455: pallet_xcm::pallet::RemoteLockedFungibleRecord<ConsumerIdentifier, MaxConsumers>
|
|
3862
4358
|
**/
|
|
3863
4359
|
PalletXcmRemoteLockedFungibleRecord: {
|
|
3864
4360
|
amount: string;
|
|
@@ -3867,13 +4363,13 @@ declare const _default: {
|
|
|
3867
4363
|
consumers: string;
|
|
3868
4364
|
};
|
|
3869
4365
|
/**
|
|
3870
|
-
*
|
|
4366
|
+
* Lookup462: pallet_xcm::pallet::Error<T>
|
|
3871
4367
|
**/
|
|
3872
4368
|
PalletXcmError: {
|
|
3873
4369
|
_enum: string[];
|
|
3874
4370
|
};
|
|
3875
4371
|
/**
|
|
3876
|
-
*
|
|
4372
|
+
* Lookup463: pallet_message_queue::BookState<cumulus_primitives_core::AggregateMessageOrigin>
|
|
3877
4373
|
**/
|
|
3878
4374
|
PalletMessageQueueBookState: {
|
|
3879
4375
|
_alias: {
|
|
@@ -3887,14 +4383,14 @@ declare const _default: {
|
|
|
3887
4383
|
size_: string;
|
|
3888
4384
|
};
|
|
3889
4385
|
/**
|
|
3890
|
-
*
|
|
4386
|
+
* Lookup465: pallet_message_queue::Neighbours<cumulus_primitives_core::AggregateMessageOrigin>
|
|
3891
4387
|
**/
|
|
3892
4388
|
PalletMessageQueueNeighbours: {
|
|
3893
4389
|
prev: string;
|
|
3894
4390
|
next: string;
|
|
3895
4391
|
};
|
|
3896
4392
|
/**
|
|
3897
|
-
*
|
|
4393
|
+
* Lookup467: pallet_message_queue::Page<Size, HeapSize>
|
|
3898
4394
|
**/
|
|
3899
4395
|
PalletMessageQueuePage: {
|
|
3900
4396
|
remaining: string;
|
|
@@ -3905,22 +4401,29 @@ declare const _default: {
|
|
|
3905
4401
|
heap: string;
|
|
3906
4402
|
};
|
|
3907
4403
|
/**
|
|
3908
|
-
*
|
|
4404
|
+
* Lookup469: pallet_message_queue::pallet::Error<T>
|
|
3909
4405
|
**/
|
|
3910
4406
|
PalletMessageQueueError: {
|
|
3911
4407
|
_enum: string[];
|
|
3912
4408
|
};
|
|
3913
4409
|
/**
|
|
3914
|
-
*
|
|
4410
|
+
* Lookup470: pallet_storage_providers::types::SignUpRequest<T>
|
|
3915
4411
|
**/
|
|
3916
|
-
|
|
4412
|
+
PalletStorageProvidersSignUpRequest: {
|
|
4413
|
+
spSignUpRequest: string;
|
|
4414
|
+
at: string;
|
|
4415
|
+
};
|
|
4416
|
+
/**
|
|
4417
|
+
* Lookup471: pallet_storage_providers::types::SignUpRequestSpParams<T>
|
|
4418
|
+
**/
|
|
4419
|
+
PalletStorageProvidersSignUpRequestSpParams: {
|
|
3917
4420
|
_enum: {
|
|
3918
4421
|
BackupStorageProvider: string;
|
|
3919
4422
|
MainStorageProvider: string;
|
|
3920
4423
|
};
|
|
3921
4424
|
};
|
|
3922
4425
|
/**
|
|
3923
|
-
*
|
|
4426
|
+
* Lookup472: pallet_storage_providers::types::BackupStorageProvider<T>
|
|
3924
4427
|
**/
|
|
3925
4428
|
PalletStorageProvidersBackupStorageProvider: {
|
|
3926
4429
|
capacity: string;
|
|
@@ -3931,22 +4434,31 @@ declare const _default: {
|
|
|
3931
4434
|
ownerAccount: string;
|
|
3932
4435
|
paymentAccount: string;
|
|
3933
4436
|
reputationWeight: string;
|
|
4437
|
+
signUpBlock: string;
|
|
4438
|
+
};
|
|
4439
|
+
/**
|
|
4440
|
+
* Lookup473: pallet_storage_providers::types::MainStorageProviderSignUpRequest<T>
|
|
4441
|
+
**/
|
|
4442
|
+
PalletStorageProvidersMainStorageProviderSignUpRequest: {
|
|
4443
|
+
mspInfo: string;
|
|
4444
|
+
valueProp: string;
|
|
3934
4445
|
};
|
|
3935
4446
|
/**
|
|
3936
|
-
*
|
|
4447
|
+
* Lookup474: pallet_storage_providers::types::MainStorageProvider<T>
|
|
3937
4448
|
**/
|
|
3938
4449
|
PalletStorageProvidersMainStorageProvider: {
|
|
3939
|
-
buckets: string;
|
|
3940
4450
|
capacity: string;
|
|
3941
4451
|
capacityUsed: string;
|
|
3942
4452
|
multiaddresses: string;
|
|
3943
|
-
|
|
4453
|
+
amountOfBuckets: string;
|
|
4454
|
+
amountOfValueProps: string;
|
|
3944
4455
|
lastCapacityChange: string;
|
|
3945
4456
|
ownerAccount: string;
|
|
3946
4457
|
paymentAccount: string;
|
|
4458
|
+
signUpBlock: string;
|
|
3947
4459
|
};
|
|
3948
4460
|
/**
|
|
3949
|
-
*
|
|
4461
|
+
* Lookup475: pallet_storage_providers::types::Bucket<T>
|
|
3950
4462
|
**/
|
|
3951
4463
|
PalletStorageProvidersBucket: {
|
|
3952
4464
|
_alias: {
|
|
@@ -3958,21 +4470,23 @@ declare const _default: {
|
|
|
3958
4470
|
private: string;
|
|
3959
4471
|
readAccessGroupId: string;
|
|
3960
4472
|
size_: string;
|
|
4473
|
+
valuePropId: string;
|
|
3961
4474
|
};
|
|
3962
4475
|
/**
|
|
3963
|
-
*
|
|
4476
|
+
* Lookup479: pallet_storage_providers::pallet::Error<T>
|
|
3964
4477
|
**/
|
|
3965
4478
|
PalletStorageProvidersError: {
|
|
3966
4479
|
_enum: string[];
|
|
3967
4480
|
};
|
|
3968
4481
|
/**
|
|
3969
|
-
*
|
|
4482
|
+
* Lookup480: pallet_file_system::types::StorageRequestMetadata<T>
|
|
3970
4483
|
**/
|
|
3971
4484
|
PalletFileSystemStorageRequestMetadata: {
|
|
3972
4485
|
_alias: {
|
|
3973
4486
|
size_: string;
|
|
3974
4487
|
};
|
|
3975
4488
|
requestedAt: string;
|
|
4489
|
+
expiresAt: string;
|
|
3976
4490
|
owner: string;
|
|
3977
4491
|
bucketId: string;
|
|
3978
4492
|
location: string;
|
|
@@ -3980,37 +4494,77 @@ declare const _default: {
|
|
|
3980
4494
|
size_: string;
|
|
3981
4495
|
msp: string;
|
|
3982
4496
|
userPeerIds: string;
|
|
3983
|
-
dataServerSps: string;
|
|
3984
4497
|
bspsRequired: string;
|
|
3985
4498
|
bspsConfirmed: string;
|
|
3986
4499
|
bspsVolunteered: string;
|
|
4500
|
+
depositPaid: string;
|
|
3987
4501
|
};
|
|
3988
4502
|
/**
|
|
3989
|
-
*
|
|
4503
|
+
* Lookup483: pallet_file_system::types::StorageRequestBspsMetadata<T>
|
|
3990
4504
|
**/
|
|
3991
4505
|
PalletFileSystemStorageRequestBspsMetadata: {
|
|
3992
4506
|
confirmed: string;
|
|
3993
4507
|
};
|
|
3994
4508
|
/**
|
|
3995
|
-
*
|
|
4509
|
+
* Lookup486: pallet_file_system::types::PendingFileDeletionRequest<T>
|
|
4510
|
+
**/
|
|
4511
|
+
PalletFileSystemPendingFileDeletionRequest: {
|
|
4512
|
+
user: string;
|
|
4513
|
+
fileKey: string;
|
|
4514
|
+
bucketId: string;
|
|
4515
|
+
fileSize: string;
|
|
4516
|
+
depositPaidForCreation: string;
|
|
4517
|
+
queuePriorityChallenge: string;
|
|
4518
|
+
};
|
|
4519
|
+
/**
|
|
4520
|
+
* Lookup488: pallet_file_system::types::PendingStopStoringRequest<T>
|
|
4521
|
+
**/
|
|
4522
|
+
PalletFileSystemPendingStopStoringRequest: {
|
|
4523
|
+
tickWhenRequested: string;
|
|
4524
|
+
fileOwner: string;
|
|
4525
|
+
fileSize: string;
|
|
4526
|
+
};
|
|
4527
|
+
/**
|
|
4528
|
+
* Lookup489: pallet_file_system::types::MoveBucketRequestMetadata<T>
|
|
3996
4529
|
**/
|
|
3997
4530
|
PalletFileSystemMoveBucketRequestMetadata: {
|
|
3998
4531
|
requester: string;
|
|
4532
|
+
newMspId: string;
|
|
4533
|
+
newValuePropId: string;
|
|
4534
|
+
};
|
|
4535
|
+
/**
|
|
4536
|
+
* Lookup490: pallet_file_system::types::IncompleteStorageRequestMetadata<T>
|
|
4537
|
+
**/
|
|
4538
|
+
PalletFileSystemIncompleteStorageRequestMetadata: {
|
|
4539
|
+
owner: string;
|
|
4540
|
+
bucketId: string;
|
|
4541
|
+
location: string;
|
|
4542
|
+
fileSize: string;
|
|
4543
|
+
fingerprint: string;
|
|
4544
|
+
pendingBspRemovals: string;
|
|
4545
|
+
pendingBucketRemoval: string;
|
|
3999
4546
|
};
|
|
4000
4547
|
/**
|
|
4001
|
-
*
|
|
4548
|
+
* Lookup492: pallet_file_system::pallet::Error<T>
|
|
4002
4549
|
**/
|
|
4003
4550
|
PalletFileSystemError: {
|
|
4004
4551
|
_enum: string[];
|
|
4005
4552
|
};
|
|
4006
4553
|
/**
|
|
4007
|
-
*
|
|
4554
|
+
* Lookup494: pallet_proofs_dealer::types::ProofSubmissionRecord<T>
|
|
4555
|
+
**/
|
|
4556
|
+
PalletProofsDealerProofSubmissionRecord: {
|
|
4557
|
+
lastTickProven: string;
|
|
4558
|
+
nextTickToSubmitProofFor: string;
|
|
4559
|
+
};
|
|
4560
|
+
/**
|
|
4561
|
+
* Lookup501: pallet_proofs_dealer::pallet::Error<T>
|
|
4008
4562
|
**/
|
|
4009
4563
|
PalletProofsDealerError: {
|
|
4010
4564
|
_enum: string[];
|
|
4011
4565
|
};
|
|
4012
4566
|
/**
|
|
4013
|
-
*
|
|
4567
|
+
* Lookup504: pallet_payment_streams::types::FixedRatePaymentStream<T>
|
|
4014
4568
|
**/
|
|
4015
4569
|
PalletPaymentStreamsFixedRatePaymentStream: {
|
|
4016
4570
|
rate: string;
|
|
@@ -4019,7 +4573,7 @@ declare const _default: {
|
|
|
4019
4573
|
outOfFundsTick: string;
|
|
4020
4574
|
};
|
|
4021
4575
|
/**
|
|
4022
|
-
*
|
|
4576
|
+
* Lookup505: pallet_payment_streams::types::DynamicRatePaymentStream<T>
|
|
4023
4577
|
**/
|
|
4024
4578
|
PalletPaymentStreamsDynamicRatePaymentStream: {
|
|
4025
4579
|
amountProvided: string;
|
|
@@ -4028,26 +4582,26 @@ declare const _default: {
|
|
|
4028
4582
|
outOfFundsTick: string;
|
|
4029
4583
|
};
|
|
4030
4584
|
/**
|
|
4031
|
-
*
|
|
4585
|
+
* Lookup506: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
|
|
4032
4586
|
**/
|
|
4033
4587
|
PalletPaymentStreamsProviderLastChargeableInfo: {
|
|
4034
4588
|
lastChargeableTick: string;
|
|
4035
4589
|
priceIndex: string;
|
|
4036
4590
|
};
|
|
4037
4591
|
/**
|
|
4038
|
-
*
|
|
4592
|
+
* Lookup507: pallet_payment_streams::pallet::Error<T>
|
|
4039
4593
|
**/
|
|
4040
4594
|
PalletPaymentStreamsError: {
|
|
4041
4595
|
_enum: string[];
|
|
4042
4596
|
};
|
|
4043
4597
|
/**
|
|
4044
|
-
*
|
|
4598
|
+
* Lookup508: pallet_bucket_nfts::pallet::Error<T>
|
|
4045
4599
|
**/
|
|
4046
4600
|
PalletBucketNftsError: {
|
|
4047
4601
|
_enum: string[];
|
|
4048
4602
|
};
|
|
4049
4603
|
/**
|
|
4050
|
-
*
|
|
4604
|
+
* Lookup509: pallet_nfts::types::CollectionDetails<sp_core::crypto::AccountId32, DepositBalance>
|
|
4051
4605
|
**/
|
|
4052
4606
|
PalletNftsCollectionDetails: {
|
|
4053
4607
|
owner: string;
|
|
@@ -4058,13 +4612,13 @@ declare const _default: {
|
|
|
4058
4612
|
attributes: string;
|
|
4059
4613
|
};
|
|
4060
4614
|
/**
|
|
4061
|
-
*
|
|
4615
|
+
* Lookup514: pallet_nfts::types::CollectionRole
|
|
4062
4616
|
**/
|
|
4063
4617
|
PalletNftsCollectionRole: {
|
|
4064
4618
|
_enum: string[];
|
|
4065
4619
|
};
|
|
4066
4620
|
/**
|
|
4067
|
-
*
|
|
4621
|
+
* Lookup515: pallet_nfts::types::ItemDetails<sp_core::crypto::AccountId32, pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>, bounded_collections::bounded_btree_map::BoundedBTreeMap<sp_core::crypto::AccountId32, Option<T>, S>>
|
|
4068
4622
|
**/
|
|
4069
4623
|
PalletNftsItemDetails: {
|
|
4070
4624
|
owner: string;
|
|
@@ -4072,42 +4626,42 @@ declare const _default: {
|
|
|
4072
4626
|
deposit: string;
|
|
4073
4627
|
};
|
|
4074
4628
|
/**
|
|
4075
|
-
*
|
|
4629
|
+
* Lookup516: pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>
|
|
4076
4630
|
**/
|
|
4077
4631
|
PalletNftsItemDeposit: {
|
|
4078
4632
|
account: string;
|
|
4079
4633
|
amount: string;
|
|
4080
4634
|
};
|
|
4081
4635
|
/**
|
|
4082
|
-
*
|
|
4636
|
+
* Lookup521: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
|
|
4083
4637
|
**/
|
|
4084
4638
|
PalletNftsCollectionMetadata: {
|
|
4085
4639
|
deposit: string;
|
|
4086
4640
|
data: string;
|
|
4087
4641
|
};
|
|
4088
4642
|
/**
|
|
4089
|
-
*
|
|
4643
|
+
* Lookup522: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>, StringLimit>
|
|
4090
4644
|
**/
|
|
4091
4645
|
PalletNftsItemMetadata: {
|
|
4092
4646
|
deposit: string;
|
|
4093
4647
|
data: string;
|
|
4094
4648
|
};
|
|
4095
4649
|
/**
|
|
4096
|
-
*
|
|
4650
|
+
* Lookup523: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>
|
|
4097
4651
|
**/
|
|
4098
4652
|
PalletNftsItemMetadataDeposit: {
|
|
4099
4653
|
account: string;
|
|
4100
4654
|
amount: string;
|
|
4101
4655
|
};
|
|
4102
4656
|
/**
|
|
4103
|
-
*
|
|
4657
|
+
* Lookup526: pallet_nfts::types::AttributeDeposit<DepositBalance, sp_core::crypto::AccountId32>
|
|
4104
4658
|
**/
|
|
4105
4659
|
PalletNftsAttributeDeposit: {
|
|
4106
4660
|
account: string;
|
|
4107
4661
|
amount: string;
|
|
4108
4662
|
};
|
|
4109
4663
|
/**
|
|
4110
|
-
*
|
|
4664
|
+
* Lookup530: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
|
|
4111
4665
|
**/
|
|
4112
4666
|
PalletNftsPendingSwap: {
|
|
4113
4667
|
desiredCollection: string;
|
|
@@ -4116,64 +4670,64 @@ declare const _default: {
|
|
|
4116
4670
|
deadline: string;
|
|
4117
4671
|
};
|
|
4118
4672
|
/**
|
|
4119
|
-
*
|
|
4673
|
+
* Lookup532: pallet_nfts::types::PalletFeature
|
|
4120
4674
|
**/
|
|
4121
4675
|
PalletNftsPalletFeature: {
|
|
4122
4676
|
_enum: string[];
|
|
4123
4677
|
};
|
|
4124
4678
|
/**
|
|
4125
|
-
*
|
|
4679
|
+
* Lookup533: pallet_nfts::pallet::Error<T, I>
|
|
4126
4680
|
**/
|
|
4127
4681
|
PalletNftsError: {
|
|
4128
4682
|
_enum: string[];
|
|
4129
4683
|
};
|
|
4130
4684
|
/**
|
|
4131
|
-
*
|
|
4685
|
+
* Lookup536: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
|
|
4132
4686
|
**/
|
|
4133
4687
|
FrameSystemExtensionsCheckNonZeroSender: string;
|
|
4134
4688
|
/**
|
|
4135
|
-
*
|
|
4689
|
+
* Lookup537: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
|
|
4136
4690
|
**/
|
|
4137
4691
|
FrameSystemExtensionsCheckSpecVersion: string;
|
|
4138
4692
|
/**
|
|
4139
|
-
*
|
|
4693
|
+
* Lookup538: frame_system::extensions::check_tx_version::CheckTxVersion<T>
|
|
4140
4694
|
**/
|
|
4141
4695
|
FrameSystemExtensionsCheckTxVersion: string;
|
|
4142
4696
|
/**
|
|
4143
|
-
*
|
|
4697
|
+
* Lookup539: frame_system::extensions::check_genesis::CheckGenesis<T>
|
|
4144
4698
|
**/
|
|
4145
4699
|
FrameSystemExtensionsCheckGenesis: string;
|
|
4146
4700
|
/**
|
|
4147
|
-
*
|
|
4701
|
+
* Lookup542: frame_system::extensions::check_nonce::CheckNonce<T>
|
|
4148
4702
|
**/
|
|
4149
4703
|
FrameSystemExtensionsCheckNonce: string;
|
|
4150
4704
|
/**
|
|
4151
|
-
*
|
|
4705
|
+
* Lookup543: frame_system::extensions::check_weight::CheckWeight<T>
|
|
4152
4706
|
**/
|
|
4153
4707
|
FrameSystemExtensionsCheckWeight: string;
|
|
4154
4708
|
/**
|
|
4155
|
-
*
|
|
4709
|
+
* Lookup544: pallet_transaction_payment::ChargeTransactionPayment<T>
|
|
4156
4710
|
**/
|
|
4157
4711
|
PalletTransactionPaymentChargeTransactionPayment: string;
|
|
4158
4712
|
/**
|
|
4159
|
-
*
|
|
4713
|
+
* Lookup545: cumulus_primitives_storage_weight_reclaim::StorageWeightReclaim<T>
|
|
4160
4714
|
**/
|
|
4161
4715
|
CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim: string;
|
|
4162
4716
|
/**
|
|
4163
|
-
*
|
|
4717
|
+
* Lookup546: frame_metadata_hash_extension::CheckMetadataHash<T>
|
|
4164
4718
|
**/
|
|
4165
4719
|
FrameMetadataHashExtensionCheckMetadataHash: {
|
|
4166
4720
|
mode: string;
|
|
4167
4721
|
};
|
|
4168
4722
|
/**
|
|
4169
|
-
*
|
|
4723
|
+
* Lookup547: frame_metadata_hash_extension::Mode
|
|
4170
4724
|
**/
|
|
4171
4725
|
FrameMetadataHashExtensionMode: {
|
|
4172
4726
|
_enum: string[];
|
|
4173
4727
|
};
|
|
4174
4728
|
/**
|
|
4175
|
-
*
|
|
4729
|
+
* Lookup548: sh_parachain_runtime::Runtime
|
|
4176
4730
|
**/
|
|
4177
|
-
|
|
4731
|
+
ShParachainRuntimeRuntime: string;
|
|
4178
4732
|
};
|
|
4179
4733
|
export default _default;
|