@storagehub/api-augment 0.1.0

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.
Files changed (86) hide show
  1. package/README.md +54 -0
  2. package/biome.json +10 -0
  3. package/dist/index.js +4 -0
  4. package/dist/index.js.map +1 -0
  5. package/dist/interfaces/augment-api-consts.js +6 -0
  6. package/dist/interfaces/augment-api-consts.js.map +1 -0
  7. package/dist/interfaces/augment-api-errors.js +6 -0
  8. package/dist/interfaces/augment-api-errors.js.map +1 -0
  9. package/dist/interfaces/augment-api-events.js +6 -0
  10. package/dist/interfaces/augment-api-events.js.map +1 -0
  11. package/dist/interfaces/augment-api-query.js +6 -0
  12. package/dist/interfaces/augment-api-query.js.map +1 -0
  13. package/dist/interfaces/augment-api-rpc.js +6 -0
  14. package/dist/interfaces/augment-api-rpc.js.map +1 -0
  15. package/dist/interfaces/augment-api-runtime.js +6 -0
  16. package/dist/interfaces/augment-api-runtime.js.map +1 -0
  17. package/dist/interfaces/augment-api-tx.js +6 -0
  18. package/dist/interfaces/augment-api-tx.js.map +1 -0
  19. package/dist/interfaces/augment-api.js +10 -0
  20. package/dist/interfaces/augment-api.js.map +1 -0
  21. package/dist/interfaces/augment-types.js +6 -0
  22. package/dist/interfaces/augment-types.js.map +1 -0
  23. package/dist/interfaces/definitions.js +2 -0
  24. package/dist/interfaces/definitions.js.map +1 -0
  25. package/dist/interfaces/index.js +4 -0
  26. package/dist/interfaces/index.js.map +1 -0
  27. package/dist/interfaces/lookup.js +4504 -0
  28. package/dist/interfaces/lookup.js.map +1 -0
  29. package/dist/interfaces/registry.js +6 -0
  30. package/dist/interfaces/registry.js.map +1 -0
  31. package/dist/interfaces/storagehubclient/definitions.js +7 -0
  32. package/dist/interfaces/storagehubclient/definitions.js.map +1 -0
  33. package/dist/interfaces/storagehubclient/index.js +4 -0
  34. package/dist/interfaces/storagehubclient/index.js.map +1 -0
  35. package/dist/interfaces/storagehubclient/runtime.js +152 -0
  36. package/dist/interfaces/storagehubclient/runtime.js.map +1 -0
  37. package/dist/interfaces/storagehubclient/types.js +4 -0
  38. package/dist/interfaces/storagehubclient/types.js.map +1 -0
  39. package/dist/interfaces/types-lookup.js +6 -0
  40. package/dist/interfaces/types-lookup.js.map +1 -0
  41. package/dist/interfaces/types.js +4 -0
  42. package/dist/interfaces/types.js.map +1 -0
  43. package/dist/types/index.d.ts +3 -0
  44. package/dist/types/interfaces/augment-api-consts.d.ts +556 -0
  45. package/dist/types/interfaces/augment-api-errors.d.ts +1195 -0
  46. package/dist/types/interfaces/augment-api-events.d.ts +2070 -0
  47. package/dist/types/interfaces/augment-api-query.d.ts +1439 -0
  48. package/dist/types/interfaces/augment-api-rpc.d.ts +718 -0
  49. package/dist/types/interfaces/augment-api-runtime.d.ts +441 -0
  50. package/dist/types/interfaces/augment-api-tx.d.ts +3039 -0
  51. package/dist/types/interfaces/augment-api.d.ts +7 -0
  52. package/dist/types/interfaces/augment-types.d.ts +1285 -0
  53. package/dist/types/interfaces/definitions.d.ts +1 -0
  54. package/dist/types/interfaces/index.d.ts +1 -0
  55. package/dist/types/interfaces/lookup.d.ts +4179 -0
  56. package/dist/types/interfaces/registry.d.ts +272 -0
  57. package/dist/types/interfaces/storagehubclient/definitions.d.ts +6 -0
  58. package/dist/types/interfaces/storagehubclient/index.d.ts +1 -0
  59. package/dist/types/interfaces/storagehubclient/runtime.d.ts +2 -0
  60. package/dist/types/interfaces/storagehubclient/types.d.ts +198 -0
  61. package/dist/types/interfaces/types-lookup.d.ts +4457 -0
  62. package/dist/types/interfaces/types.d.ts +1 -0
  63. package/package.json +38 -0
  64. package/scripts/scrapeMetadata.ts +77 -0
  65. package/src/index.ts +3 -0
  66. package/src/interfaces/augment-api-consts.ts +570 -0
  67. package/src/interfaces/augment-api-errors.ts +1203 -0
  68. package/src/interfaces/augment-api-events.ts +1836 -0
  69. package/src/interfaces/augment-api-query.ts +1975 -0
  70. package/src/interfaces/augment-api-rpc.ts +1201 -0
  71. package/src/interfaces/augment-api-runtime.ts +707 -0
  72. package/src/interfaces/augment-api-tx.ts +3418 -0
  73. package/src/interfaces/augment-api.ts +10 -0
  74. package/src/interfaces/augment-types.ts +2508 -0
  75. package/src/interfaces/definitions.ts +1 -0
  76. package/src/interfaces/index.ts +4 -0
  77. package/src/interfaces/lookup.ts +4511 -0
  78. package/src/interfaces/registry.ts +546 -0
  79. package/src/interfaces/storagehubclient/definitions.ts +7 -0
  80. package/src/interfaces/storagehubclient/index.ts +4 -0
  81. package/src/interfaces/storagehubclient/runtime.ts +156 -0
  82. package/src/interfaces/storagehubclient/types.ts +241 -0
  83. package/src/interfaces/types-lookup.ts +5623 -0
  84. package/src/interfaces/types.ts +4 -0
  85. package/storagehub.json +1 -0
  86. package/tsconfig.json +22 -0
@@ -0,0 +1,4179 @@
1
+ declare const _default: {
2
+ /**
3
+ * Lookup3: frame_system::AccountInfo<Nonce, pallet_balances::types::AccountData<Balance>>
4
+ **/
5
+ FrameSystemAccountInfo: {
6
+ nonce: string;
7
+ consumers: string;
8
+ providers: string;
9
+ sufficients: string;
10
+ data: string;
11
+ };
12
+ /**
13
+ * Lookup5: pallet_balances::types::AccountData<Balance>
14
+ **/
15
+ PalletBalancesAccountData: {
16
+ free: string;
17
+ reserved: string;
18
+ frozen: string;
19
+ flags: string;
20
+ };
21
+ /**
22
+ * Lookup9: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
23
+ **/
24
+ FrameSupportDispatchPerDispatchClassWeight: {
25
+ normal: string;
26
+ operational: string;
27
+ mandatory: string;
28
+ };
29
+ /**
30
+ * Lookup10: sp_weights::weight_v2::Weight
31
+ **/
32
+ SpWeightsWeightV2Weight: {
33
+ refTime: string;
34
+ proofSize: string;
35
+ };
36
+ /**
37
+ * Lookup15: sp_runtime::generic::digest::Digest
38
+ **/
39
+ SpRuntimeDigest: {
40
+ logs: string;
41
+ };
42
+ /**
43
+ * Lookup17: sp_runtime::generic::digest::DigestItem
44
+ **/
45
+ SpRuntimeDigestDigestItem: {
46
+ _enum: {
47
+ Other: string;
48
+ __Unused1: string;
49
+ __Unused2: string;
50
+ __Unused3: string;
51
+ Consensus: string;
52
+ Seal: string;
53
+ PreRuntime: string;
54
+ __Unused7: string;
55
+ RuntimeEnvironmentUpdated: string;
56
+ };
57
+ };
58
+ /**
59
+ * Lookup20: frame_system::EventRecord<storage_hub_runtime::RuntimeEvent, primitive_types::H256>
60
+ **/
61
+ FrameSystemEventRecord: {
62
+ phase: string;
63
+ event: string;
64
+ topics: string;
65
+ };
66
+ /**
67
+ * Lookup22: frame_system::pallet::Event<T>
68
+ **/
69
+ FrameSystemEvent: {
70
+ _enum: {
71
+ ExtrinsicSuccess: {
72
+ dispatchInfo: string;
73
+ };
74
+ ExtrinsicFailed: {
75
+ dispatchError: string;
76
+ dispatchInfo: string;
77
+ };
78
+ CodeUpdated: string;
79
+ NewAccount: {
80
+ account: string;
81
+ };
82
+ KilledAccount: {
83
+ account: string;
84
+ };
85
+ Remarked: {
86
+ _alias: {
87
+ hash_: string;
88
+ };
89
+ sender: string;
90
+ hash_: string;
91
+ };
92
+ UpgradeAuthorized: {
93
+ codeHash: string;
94
+ checkVersion: string;
95
+ };
96
+ };
97
+ };
98
+ /**
99
+ * Lookup23: frame_support::dispatch::DispatchInfo
100
+ **/
101
+ FrameSupportDispatchDispatchInfo: {
102
+ weight: string;
103
+ class: string;
104
+ paysFee: string;
105
+ };
106
+ /**
107
+ * Lookup24: frame_support::dispatch::DispatchClass
108
+ **/
109
+ FrameSupportDispatchDispatchClass: {
110
+ _enum: string[];
111
+ };
112
+ /**
113
+ * Lookup25: frame_support::dispatch::Pays
114
+ **/
115
+ FrameSupportDispatchPays: {
116
+ _enum: string[];
117
+ };
118
+ /**
119
+ * Lookup26: sp_runtime::DispatchError
120
+ **/
121
+ SpRuntimeDispatchError: {
122
+ _enum: {
123
+ Other: string;
124
+ CannotLookup: string;
125
+ BadOrigin: string;
126
+ Module: string;
127
+ ConsumerRemaining: string;
128
+ NoProviders: string;
129
+ TooManyConsumers: string;
130
+ Token: string;
131
+ Arithmetic: string;
132
+ Transactional: string;
133
+ Exhausted: string;
134
+ Corruption: string;
135
+ Unavailable: string;
136
+ RootNotAllowed: string;
137
+ };
138
+ };
139
+ /**
140
+ * Lookup27: sp_runtime::ModuleError
141
+ **/
142
+ SpRuntimeModuleError: {
143
+ index: string;
144
+ error: string;
145
+ };
146
+ /**
147
+ * Lookup28: sp_runtime::TokenError
148
+ **/
149
+ SpRuntimeTokenError: {
150
+ _enum: string[];
151
+ };
152
+ /**
153
+ * Lookup29: sp_arithmetic::ArithmeticError
154
+ **/
155
+ SpArithmeticArithmeticError: {
156
+ _enum: string[];
157
+ };
158
+ /**
159
+ * Lookup30: sp_runtime::TransactionalError
160
+ **/
161
+ SpRuntimeTransactionalError: {
162
+ _enum: string[];
163
+ };
164
+ /**
165
+ * Lookup31: cumulus_pallet_parachain_system::pallet::Event<T>
166
+ **/
167
+ CumulusPalletParachainSystemEvent: {
168
+ _enum: {
169
+ ValidationFunctionStored: string;
170
+ ValidationFunctionApplied: {
171
+ relayChainBlockNum: string;
172
+ };
173
+ ValidationFunctionDiscarded: string;
174
+ DownwardMessagesReceived: {
175
+ count: string;
176
+ };
177
+ DownwardMessagesProcessed: {
178
+ weightUsed: string;
179
+ dmqHead: string;
180
+ };
181
+ UpwardMessageSent: {
182
+ messageHash: string;
183
+ };
184
+ };
185
+ };
186
+ /**
187
+ * Lookup33: pallet_balances::pallet::Event<T, I>
188
+ **/
189
+ PalletBalancesEvent: {
190
+ _enum: {
191
+ Endowed: {
192
+ account: string;
193
+ freeBalance: string;
194
+ };
195
+ DustLost: {
196
+ account: string;
197
+ amount: string;
198
+ };
199
+ Transfer: {
200
+ from: string;
201
+ to: string;
202
+ amount: string;
203
+ };
204
+ BalanceSet: {
205
+ who: string;
206
+ free: string;
207
+ };
208
+ Reserved: {
209
+ who: string;
210
+ amount: string;
211
+ };
212
+ Unreserved: {
213
+ who: string;
214
+ amount: string;
215
+ };
216
+ ReserveRepatriated: {
217
+ from: string;
218
+ to: string;
219
+ amount: string;
220
+ destinationStatus: string;
221
+ };
222
+ Deposit: {
223
+ who: string;
224
+ amount: string;
225
+ };
226
+ Withdraw: {
227
+ who: string;
228
+ amount: string;
229
+ };
230
+ Slashed: {
231
+ who: string;
232
+ amount: string;
233
+ };
234
+ Minted: {
235
+ who: string;
236
+ amount: string;
237
+ };
238
+ Burned: {
239
+ who: string;
240
+ amount: string;
241
+ };
242
+ Suspended: {
243
+ who: string;
244
+ amount: string;
245
+ };
246
+ Restored: {
247
+ who: string;
248
+ amount: string;
249
+ };
250
+ Upgraded: {
251
+ who: string;
252
+ };
253
+ Issued: {
254
+ amount: string;
255
+ };
256
+ Rescinded: {
257
+ amount: string;
258
+ };
259
+ Locked: {
260
+ who: string;
261
+ amount: string;
262
+ };
263
+ Unlocked: {
264
+ who: string;
265
+ amount: string;
266
+ };
267
+ Frozen: {
268
+ who: string;
269
+ amount: string;
270
+ };
271
+ Thawed: {
272
+ who: string;
273
+ amount: string;
274
+ };
275
+ TotalIssuanceForced: {
276
+ _alias: {
277
+ new_: string;
278
+ };
279
+ old: string;
280
+ new_: string;
281
+ };
282
+ };
283
+ };
284
+ /**
285
+ * Lookup34: frame_support::traits::tokens::misc::BalanceStatus
286
+ **/
287
+ FrameSupportTokensMiscBalanceStatus: {
288
+ _enum: string[];
289
+ };
290
+ /**
291
+ * Lookup35: pallet_transaction_payment::pallet::Event<T>
292
+ **/
293
+ PalletTransactionPaymentEvent: {
294
+ _enum: {
295
+ TransactionFeePaid: {
296
+ who: string;
297
+ actualFee: string;
298
+ tip: string;
299
+ };
300
+ };
301
+ };
302
+ /**
303
+ * Lookup36: pallet_sudo::pallet::Event<T>
304
+ **/
305
+ PalletSudoEvent: {
306
+ _enum: {
307
+ Sudid: {
308
+ sudoResult: string;
309
+ };
310
+ KeyChanged: {
311
+ _alias: {
312
+ new_: string;
313
+ };
314
+ old: string;
315
+ new_: string;
316
+ };
317
+ KeyRemoved: string;
318
+ SudoAsDone: {
319
+ sudoResult: string;
320
+ };
321
+ };
322
+ };
323
+ /**
324
+ * Lookup40: pallet_collator_selection::pallet::Event<T>
325
+ **/
326
+ PalletCollatorSelectionEvent: {
327
+ _enum: {
328
+ NewInvulnerables: {
329
+ invulnerables: string;
330
+ };
331
+ InvulnerableAdded: {
332
+ accountId: string;
333
+ };
334
+ InvulnerableRemoved: {
335
+ accountId: string;
336
+ };
337
+ NewDesiredCandidates: {
338
+ desiredCandidates: string;
339
+ };
340
+ NewCandidacyBond: {
341
+ bondAmount: string;
342
+ };
343
+ CandidateAdded: {
344
+ accountId: string;
345
+ deposit: string;
346
+ };
347
+ CandidateBondUpdated: {
348
+ accountId: string;
349
+ deposit: string;
350
+ };
351
+ CandidateRemoved: {
352
+ accountId: string;
353
+ };
354
+ CandidateReplaced: {
355
+ _alias: {
356
+ new_: string;
357
+ };
358
+ old: string;
359
+ new_: string;
360
+ deposit: string;
361
+ };
362
+ InvalidInvulnerableSkipped: {
363
+ accountId: string;
364
+ };
365
+ };
366
+ };
367
+ /**
368
+ * Lookup42: pallet_session::pallet::Event
369
+ **/
370
+ PalletSessionEvent: {
371
+ _enum: {
372
+ NewSession: {
373
+ sessionIndex: string;
374
+ };
375
+ };
376
+ };
377
+ /**
378
+ * Lookup43: cumulus_pallet_xcmp_queue::pallet::Event<T>
379
+ **/
380
+ CumulusPalletXcmpQueueEvent: {
381
+ _enum: {
382
+ XcmpMessageSent: {
383
+ messageHash: string;
384
+ };
385
+ };
386
+ };
387
+ /**
388
+ * Lookup44: pallet_xcm::pallet::Event<T>
389
+ **/
390
+ PalletXcmEvent: {
391
+ _enum: {
392
+ Attempted: {
393
+ outcome: string;
394
+ };
395
+ Sent: {
396
+ origin: string;
397
+ destination: string;
398
+ message: string;
399
+ messageId: string;
400
+ };
401
+ UnexpectedResponse: {
402
+ origin: string;
403
+ queryId: string;
404
+ };
405
+ ResponseReady: {
406
+ queryId: string;
407
+ response: string;
408
+ };
409
+ Notified: {
410
+ queryId: string;
411
+ palletIndex: string;
412
+ callIndex: string;
413
+ };
414
+ NotifyOverweight: {
415
+ queryId: string;
416
+ palletIndex: string;
417
+ callIndex: string;
418
+ actualWeight: string;
419
+ maxBudgetedWeight: string;
420
+ };
421
+ NotifyDispatchError: {
422
+ queryId: string;
423
+ palletIndex: string;
424
+ callIndex: string;
425
+ };
426
+ NotifyDecodeFailed: {
427
+ queryId: string;
428
+ palletIndex: string;
429
+ callIndex: string;
430
+ };
431
+ InvalidResponder: {
432
+ origin: string;
433
+ queryId: string;
434
+ expectedLocation: string;
435
+ };
436
+ InvalidResponderVersion: {
437
+ origin: string;
438
+ queryId: string;
439
+ };
440
+ ResponseTaken: {
441
+ queryId: string;
442
+ };
443
+ AssetsTrapped: {
444
+ _alias: {
445
+ hash_: string;
446
+ };
447
+ hash_: string;
448
+ origin: string;
449
+ assets: string;
450
+ };
451
+ VersionChangeNotified: {
452
+ destination: string;
453
+ result: string;
454
+ cost: string;
455
+ messageId: string;
456
+ };
457
+ SupportedVersionChanged: {
458
+ location: string;
459
+ version: string;
460
+ };
461
+ NotifyTargetSendFail: {
462
+ location: string;
463
+ queryId: string;
464
+ error: string;
465
+ };
466
+ NotifyTargetMigrationFail: {
467
+ location: string;
468
+ queryId: string;
469
+ };
470
+ InvalidQuerierVersion: {
471
+ origin: string;
472
+ queryId: string;
473
+ };
474
+ InvalidQuerier: {
475
+ origin: string;
476
+ queryId: string;
477
+ expectedQuerier: string;
478
+ maybeActualQuerier: string;
479
+ };
480
+ VersionNotifyStarted: {
481
+ destination: string;
482
+ cost: string;
483
+ messageId: string;
484
+ };
485
+ VersionNotifyRequested: {
486
+ destination: string;
487
+ cost: string;
488
+ messageId: string;
489
+ };
490
+ VersionNotifyUnrequested: {
491
+ destination: string;
492
+ cost: string;
493
+ messageId: string;
494
+ };
495
+ FeesPaid: {
496
+ paying: string;
497
+ fees: string;
498
+ };
499
+ AssetsClaimed: {
500
+ _alias: {
501
+ hash_: string;
502
+ };
503
+ hash_: string;
504
+ origin: string;
505
+ assets: string;
506
+ };
507
+ VersionMigrationFinished: {
508
+ version: string;
509
+ };
510
+ };
511
+ };
512
+ /**
513
+ * Lookup45: staging_xcm::v4::traits::Outcome
514
+ **/
515
+ StagingXcmV4TraitsOutcome: {
516
+ _enum: {
517
+ Complete: {
518
+ used: string;
519
+ };
520
+ Incomplete: {
521
+ used: string;
522
+ error: string;
523
+ };
524
+ Error: {
525
+ error: string;
526
+ };
527
+ };
528
+ };
529
+ /**
530
+ * Lookup46: xcm::v3::traits::Error
531
+ **/
532
+ XcmV3TraitsError: {
533
+ _enum: {
534
+ Overflow: string;
535
+ Unimplemented: string;
536
+ UntrustedReserveLocation: string;
537
+ UntrustedTeleportLocation: string;
538
+ LocationFull: string;
539
+ LocationNotInvertible: string;
540
+ BadOrigin: string;
541
+ InvalidLocation: string;
542
+ AssetNotFound: string;
543
+ FailedToTransactAsset: string;
544
+ NotWithdrawable: string;
545
+ LocationCannotHold: string;
546
+ ExceedsMaxMessageSize: string;
547
+ DestinationUnsupported: string;
548
+ Transport: string;
549
+ Unroutable: string;
550
+ UnknownClaim: string;
551
+ FailedToDecode: string;
552
+ MaxWeightInvalid: string;
553
+ NotHoldingFees: string;
554
+ TooExpensive: string;
555
+ Trap: string;
556
+ ExpectationFalse: string;
557
+ PalletNotFound: string;
558
+ NameMismatch: string;
559
+ VersionIncompatible: string;
560
+ HoldingWouldOverflow: string;
561
+ ExportError: string;
562
+ ReanchorFailed: string;
563
+ NoDeal: string;
564
+ FeesNotMet: string;
565
+ LockError: string;
566
+ NoPermission: string;
567
+ Unanchored: string;
568
+ NotDepositable: string;
569
+ UnhandledXcmVersion: string;
570
+ WeightLimitReached: string;
571
+ Barrier: string;
572
+ WeightNotComputable: string;
573
+ ExceedsStackLimit: string;
574
+ };
575
+ };
576
+ /**
577
+ * Lookup47: staging_xcm::v4::location::Location
578
+ **/
579
+ StagingXcmV4Location: {
580
+ parents: string;
581
+ interior: string;
582
+ };
583
+ /**
584
+ * Lookup48: staging_xcm::v4::junctions::Junctions
585
+ **/
586
+ StagingXcmV4Junctions: {
587
+ _enum: {
588
+ Here: string;
589
+ X1: string;
590
+ X2: string;
591
+ X3: string;
592
+ X4: string;
593
+ X5: string;
594
+ X6: string;
595
+ X7: string;
596
+ X8: string;
597
+ };
598
+ };
599
+ /**
600
+ * Lookup50: staging_xcm::v4::junction::Junction
601
+ **/
602
+ StagingXcmV4Junction: {
603
+ _enum: {
604
+ Parachain: string;
605
+ AccountId32: {
606
+ network: string;
607
+ id: string;
608
+ };
609
+ AccountIndex64: {
610
+ network: string;
611
+ index: string;
612
+ };
613
+ AccountKey20: {
614
+ network: string;
615
+ key: string;
616
+ };
617
+ PalletInstance: string;
618
+ GeneralIndex: string;
619
+ GeneralKey: {
620
+ length: string;
621
+ data: string;
622
+ };
623
+ OnlyChild: string;
624
+ Plurality: {
625
+ id: string;
626
+ part: string;
627
+ };
628
+ GlobalConsensus: string;
629
+ };
630
+ };
631
+ /**
632
+ * Lookup53: staging_xcm::v4::junction::NetworkId
633
+ **/
634
+ StagingXcmV4JunctionNetworkId: {
635
+ _enum: {
636
+ ByGenesis: string;
637
+ ByFork: {
638
+ blockNumber: string;
639
+ blockHash: string;
640
+ };
641
+ Polkadot: string;
642
+ Kusama: string;
643
+ Westend: string;
644
+ Rococo: string;
645
+ Wococo: string;
646
+ Ethereum: {
647
+ chainId: string;
648
+ };
649
+ BitcoinCore: string;
650
+ BitcoinCash: string;
651
+ PolkadotBulletin: string;
652
+ };
653
+ };
654
+ /**
655
+ * Lookup56: xcm::v3::junction::BodyId
656
+ **/
657
+ XcmV3JunctionBodyId: {
658
+ _enum: {
659
+ Unit: string;
660
+ Moniker: string;
661
+ Index: string;
662
+ Executive: string;
663
+ Technical: string;
664
+ Legislative: string;
665
+ Judicial: string;
666
+ Defense: string;
667
+ Administration: string;
668
+ Treasury: string;
669
+ };
670
+ };
671
+ /**
672
+ * Lookup57: xcm::v3::junction::BodyPart
673
+ **/
674
+ XcmV3JunctionBodyPart: {
675
+ _enum: {
676
+ Voice: string;
677
+ Members: {
678
+ count: string;
679
+ };
680
+ Fraction: {
681
+ nom: string;
682
+ denom: string;
683
+ };
684
+ AtLeastProportion: {
685
+ nom: string;
686
+ denom: string;
687
+ };
688
+ MoreThanProportion: {
689
+ nom: string;
690
+ denom: string;
691
+ };
692
+ };
693
+ };
694
+ /**
695
+ * Lookup65: staging_xcm::v4::Xcm<Call>
696
+ **/
697
+ StagingXcmV4Xcm: string;
698
+ /**
699
+ * Lookup67: staging_xcm::v4::Instruction<Call>
700
+ **/
701
+ StagingXcmV4Instruction: {
702
+ _enum: {
703
+ WithdrawAsset: string;
704
+ ReserveAssetDeposited: string;
705
+ ReceiveTeleportedAsset: string;
706
+ QueryResponse: {
707
+ queryId: string;
708
+ response: string;
709
+ maxWeight: string;
710
+ querier: string;
711
+ };
712
+ TransferAsset: {
713
+ assets: string;
714
+ beneficiary: string;
715
+ };
716
+ TransferReserveAsset: {
717
+ assets: string;
718
+ dest: string;
719
+ xcm: string;
720
+ };
721
+ Transact: {
722
+ originKind: string;
723
+ requireWeightAtMost: string;
724
+ call: string;
725
+ };
726
+ HrmpNewChannelOpenRequest: {
727
+ sender: string;
728
+ maxMessageSize: string;
729
+ maxCapacity: string;
730
+ };
731
+ HrmpChannelAccepted: {
732
+ recipient: string;
733
+ };
734
+ HrmpChannelClosing: {
735
+ initiator: string;
736
+ sender: string;
737
+ recipient: string;
738
+ };
739
+ ClearOrigin: string;
740
+ DescendOrigin: string;
741
+ ReportError: string;
742
+ DepositAsset: {
743
+ assets: string;
744
+ beneficiary: string;
745
+ };
746
+ DepositReserveAsset: {
747
+ assets: string;
748
+ dest: string;
749
+ xcm: string;
750
+ };
751
+ ExchangeAsset: {
752
+ give: string;
753
+ want: string;
754
+ maximal: string;
755
+ };
756
+ InitiateReserveWithdraw: {
757
+ assets: string;
758
+ reserve: string;
759
+ xcm: string;
760
+ };
761
+ InitiateTeleport: {
762
+ assets: string;
763
+ dest: string;
764
+ xcm: string;
765
+ };
766
+ ReportHolding: {
767
+ responseInfo: string;
768
+ assets: string;
769
+ };
770
+ BuyExecution: {
771
+ fees: string;
772
+ weightLimit: string;
773
+ };
774
+ RefundSurplus: string;
775
+ SetErrorHandler: string;
776
+ SetAppendix: string;
777
+ ClearError: string;
778
+ ClaimAsset: {
779
+ assets: string;
780
+ ticket: string;
781
+ };
782
+ Trap: string;
783
+ SubscribeVersion: {
784
+ queryId: string;
785
+ maxResponseWeight: string;
786
+ };
787
+ UnsubscribeVersion: string;
788
+ BurnAsset: string;
789
+ ExpectAsset: string;
790
+ ExpectOrigin: string;
791
+ ExpectError: string;
792
+ ExpectTransactStatus: string;
793
+ QueryPallet: {
794
+ moduleName: string;
795
+ responseInfo: string;
796
+ };
797
+ ExpectPallet: {
798
+ index: string;
799
+ name: string;
800
+ moduleName: string;
801
+ crateMajor: string;
802
+ minCrateMinor: string;
803
+ };
804
+ ReportTransactStatus: string;
805
+ ClearTransactStatus: string;
806
+ UniversalOrigin: string;
807
+ ExportMessage: {
808
+ network: string;
809
+ destination: string;
810
+ xcm: string;
811
+ };
812
+ LockAsset: {
813
+ asset: string;
814
+ unlocker: string;
815
+ };
816
+ UnlockAsset: {
817
+ asset: string;
818
+ target: string;
819
+ };
820
+ NoteUnlockable: {
821
+ asset: string;
822
+ owner: string;
823
+ };
824
+ RequestUnlock: {
825
+ asset: string;
826
+ locker: string;
827
+ };
828
+ SetFeesMode: {
829
+ jitWithdraw: string;
830
+ };
831
+ SetTopic: string;
832
+ ClearTopic: string;
833
+ AliasOrigin: string;
834
+ UnpaidExecution: {
835
+ weightLimit: string;
836
+ checkOrigin: string;
837
+ };
838
+ };
839
+ };
840
+ /**
841
+ * Lookup68: staging_xcm::v4::asset::Assets
842
+ **/
843
+ StagingXcmV4AssetAssets: string;
844
+ /**
845
+ * Lookup70: staging_xcm::v4::asset::Asset
846
+ **/
847
+ StagingXcmV4Asset: {
848
+ id: string;
849
+ fun: string;
850
+ };
851
+ /**
852
+ * Lookup71: staging_xcm::v4::asset::AssetId
853
+ **/
854
+ StagingXcmV4AssetAssetId: string;
855
+ /**
856
+ * Lookup72: staging_xcm::v4::asset::Fungibility
857
+ **/
858
+ StagingXcmV4AssetFungibility: {
859
+ _enum: {
860
+ Fungible: string;
861
+ NonFungible: string;
862
+ };
863
+ };
864
+ /**
865
+ * Lookup73: staging_xcm::v4::asset::AssetInstance
866
+ **/
867
+ StagingXcmV4AssetAssetInstance: {
868
+ _enum: {
869
+ Undefined: string;
870
+ Index: string;
871
+ Array4: string;
872
+ Array8: string;
873
+ Array16: string;
874
+ Array32: string;
875
+ };
876
+ };
877
+ /**
878
+ * Lookup76: staging_xcm::v4::Response
879
+ **/
880
+ StagingXcmV4Response: {
881
+ _enum: {
882
+ Null: string;
883
+ Assets: string;
884
+ ExecutionResult: string;
885
+ Version: string;
886
+ PalletsInfo: string;
887
+ DispatchResult: string;
888
+ };
889
+ };
890
+ /**
891
+ * Lookup80: staging_xcm::v4::PalletInfo
892
+ **/
893
+ StagingXcmV4PalletInfo: {
894
+ index: string;
895
+ name: string;
896
+ moduleName: string;
897
+ major: string;
898
+ minor: string;
899
+ patch: string;
900
+ };
901
+ /**
902
+ * Lookup83: xcm::v3::MaybeErrorCode
903
+ **/
904
+ XcmV3MaybeErrorCode: {
905
+ _enum: {
906
+ Success: string;
907
+ Error: string;
908
+ TruncatedError: string;
909
+ };
910
+ };
911
+ /**
912
+ * Lookup86: xcm::v3::OriginKind
913
+ **/
914
+ XcmV3OriginKind: {
915
+ _enum: string[];
916
+ };
917
+ /**
918
+ * Lookup87: xcm::double_encoded::DoubleEncoded<T>
919
+ **/
920
+ XcmDoubleEncoded: {
921
+ encoded: string;
922
+ };
923
+ /**
924
+ * Lookup88: staging_xcm::v4::QueryResponseInfo
925
+ **/
926
+ StagingXcmV4QueryResponseInfo: {
927
+ destination: string;
928
+ queryId: string;
929
+ maxWeight: string;
930
+ };
931
+ /**
932
+ * Lookup89: staging_xcm::v4::asset::AssetFilter
933
+ **/
934
+ StagingXcmV4AssetAssetFilter: {
935
+ _enum: {
936
+ Definite: string;
937
+ Wild: string;
938
+ };
939
+ };
940
+ /**
941
+ * Lookup90: staging_xcm::v4::asset::WildAsset
942
+ **/
943
+ StagingXcmV4AssetWildAsset: {
944
+ _enum: {
945
+ All: string;
946
+ AllOf: {
947
+ id: string;
948
+ fun: string;
949
+ };
950
+ AllCounted: string;
951
+ AllOfCounted: {
952
+ id: string;
953
+ fun: string;
954
+ count: string;
955
+ };
956
+ };
957
+ };
958
+ /**
959
+ * Lookup91: staging_xcm::v4::asset::WildFungibility
960
+ **/
961
+ StagingXcmV4AssetWildFungibility: {
962
+ _enum: string[];
963
+ };
964
+ /**
965
+ * Lookup92: xcm::v3::WeightLimit
966
+ **/
967
+ XcmV3WeightLimit: {
968
+ _enum: {
969
+ Unlimited: string;
970
+ Limited: string;
971
+ };
972
+ };
973
+ /**
974
+ * Lookup93: xcm::VersionedAssets
975
+ **/
976
+ XcmVersionedAssets: {
977
+ _enum: {
978
+ __Unused0: string;
979
+ V2: string;
980
+ __Unused2: string;
981
+ V3: string;
982
+ V4: string;
983
+ };
984
+ };
985
+ /**
986
+ * Lookup94: xcm::v2::multiasset::MultiAssets
987
+ **/
988
+ XcmV2MultiassetMultiAssets: string;
989
+ /**
990
+ * Lookup96: xcm::v2::multiasset::MultiAsset
991
+ **/
992
+ XcmV2MultiAsset: {
993
+ id: string;
994
+ fun: string;
995
+ };
996
+ /**
997
+ * Lookup97: xcm::v2::multiasset::AssetId
998
+ **/
999
+ XcmV2MultiassetAssetId: {
1000
+ _enum: {
1001
+ Concrete: string;
1002
+ Abstract: string;
1003
+ };
1004
+ };
1005
+ /**
1006
+ * Lookup98: xcm::v2::multilocation::MultiLocation
1007
+ **/
1008
+ XcmV2MultiLocation: {
1009
+ parents: string;
1010
+ interior: string;
1011
+ };
1012
+ /**
1013
+ * Lookup99: xcm::v2::multilocation::Junctions
1014
+ **/
1015
+ XcmV2MultilocationJunctions: {
1016
+ _enum: {
1017
+ Here: string;
1018
+ X1: string;
1019
+ X2: string;
1020
+ X3: string;
1021
+ X4: string;
1022
+ X5: string;
1023
+ X6: string;
1024
+ X7: string;
1025
+ X8: string;
1026
+ };
1027
+ };
1028
+ /**
1029
+ * Lookup100: xcm::v2::junction::Junction
1030
+ **/
1031
+ XcmV2Junction: {
1032
+ _enum: {
1033
+ Parachain: string;
1034
+ AccountId32: {
1035
+ network: string;
1036
+ id: string;
1037
+ };
1038
+ AccountIndex64: {
1039
+ network: string;
1040
+ index: string;
1041
+ };
1042
+ AccountKey20: {
1043
+ network: string;
1044
+ key: string;
1045
+ };
1046
+ PalletInstance: string;
1047
+ GeneralIndex: string;
1048
+ GeneralKey: string;
1049
+ OnlyChild: string;
1050
+ Plurality: {
1051
+ id: string;
1052
+ part: string;
1053
+ };
1054
+ };
1055
+ };
1056
+ /**
1057
+ * Lookup101: xcm::v2::NetworkId
1058
+ **/
1059
+ XcmV2NetworkId: {
1060
+ _enum: {
1061
+ Any: string;
1062
+ Named: string;
1063
+ Polkadot: string;
1064
+ Kusama: string;
1065
+ };
1066
+ };
1067
+ /**
1068
+ * Lookup103: xcm::v2::BodyId
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;
1104
+ };
1105
+ };
1106
+ };
1107
+ /**
1108
+ * Lookup105: xcm::v2::multiasset::Fungibility
1109
+ **/
1110
+ XcmV2MultiassetFungibility: {
1111
+ _enum: {
1112
+ Fungible: string;
1113
+ NonFungible: string;
1114
+ };
1115
+ };
1116
+ /**
1117
+ * Lookup106: xcm::v2::multiasset::AssetInstance
1118
+ **/
1119
+ XcmV2MultiassetAssetInstance: {
1120
+ _enum: {
1121
+ Undefined: string;
1122
+ Index: string;
1123
+ Array4: string;
1124
+ Array8: string;
1125
+ Array16: string;
1126
+ Array32: string;
1127
+ Blob: string;
1128
+ };
1129
+ };
1130
+ /**
1131
+ * Lookup107: xcm::v3::multiasset::MultiAssets
1132
+ **/
1133
+ XcmV3MultiassetMultiAssets: string;
1134
+ /**
1135
+ * Lookup109: xcm::v3::multiasset::MultiAsset
1136
+ **/
1137
+ XcmV3MultiAsset: {
1138
+ id: string;
1139
+ fun: string;
1140
+ };
1141
+ /**
1142
+ * Lookup110: xcm::v3::multiasset::AssetId
1143
+ **/
1144
+ XcmV3MultiassetAssetId: {
1145
+ _enum: {
1146
+ Concrete: string;
1147
+ Abstract: string;
1148
+ };
1149
+ };
1150
+ /**
1151
+ * Lookup111: staging_xcm::v3::multilocation::MultiLocation
1152
+ **/
1153
+ StagingXcmV3MultiLocation: {
1154
+ parents: string;
1155
+ interior: string;
1156
+ };
1157
+ /**
1158
+ * Lookup112: xcm::v3::junctions::Junctions
1159
+ **/
1160
+ XcmV3Junctions: {
1161
+ _enum: {
1162
+ Here: string;
1163
+ X1: string;
1164
+ X2: string;
1165
+ X3: string;
1166
+ X4: string;
1167
+ X5: string;
1168
+ X6: string;
1169
+ X7: string;
1170
+ X8: string;
1171
+ };
1172
+ };
1173
+ /**
1174
+ * Lookup113: xcm::v3::junction::Junction
1175
+ **/
1176
+ XcmV3Junction: {
1177
+ _enum: {
1178
+ Parachain: string;
1179
+ AccountId32: {
1180
+ network: string;
1181
+ id: string;
1182
+ };
1183
+ AccountIndex64: {
1184
+ network: string;
1185
+ index: string;
1186
+ };
1187
+ AccountKey20: {
1188
+ network: string;
1189
+ key: string;
1190
+ };
1191
+ PalletInstance: string;
1192
+ GeneralIndex: string;
1193
+ GeneralKey: {
1194
+ length: string;
1195
+ data: string;
1196
+ };
1197
+ OnlyChild: string;
1198
+ Plurality: {
1199
+ id: string;
1200
+ part: string;
1201
+ };
1202
+ GlobalConsensus: string;
1203
+ };
1204
+ };
1205
+ /**
1206
+ * Lookup115: xcm::v3::junction::NetworkId
1207
+ **/
1208
+ XcmV3JunctionNetworkId: {
1209
+ _enum: {
1210
+ ByGenesis: string;
1211
+ ByFork: {
1212
+ blockNumber: string;
1213
+ blockHash: string;
1214
+ };
1215
+ Polkadot: string;
1216
+ Kusama: string;
1217
+ Westend: string;
1218
+ Rococo: string;
1219
+ Wococo: string;
1220
+ Ethereum: {
1221
+ chainId: string;
1222
+ };
1223
+ BitcoinCore: string;
1224
+ BitcoinCash: string;
1225
+ PolkadotBulletin: string;
1226
+ };
1227
+ };
1228
+ /**
1229
+ * Lookup116: xcm::v3::multiasset::Fungibility
1230
+ **/
1231
+ XcmV3MultiassetFungibility: {
1232
+ _enum: {
1233
+ Fungible: string;
1234
+ NonFungible: string;
1235
+ };
1236
+ };
1237
+ /**
1238
+ * Lookup117: xcm::v3::multiasset::AssetInstance
1239
+ **/
1240
+ XcmV3MultiassetAssetInstance: {
1241
+ _enum: {
1242
+ Undefined: string;
1243
+ Index: string;
1244
+ Array4: string;
1245
+ Array8: string;
1246
+ Array16: string;
1247
+ Array32: string;
1248
+ };
1249
+ };
1250
+ /**
1251
+ * Lookup118: xcm::VersionedLocation
1252
+ **/
1253
+ XcmVersionedLocation: {
1254
+ _enum: {
1255
+ __Unused0: string;
1256
+ V2: string;
1257
+ __Unused2: string;
1258
+ V3: string;
1259
+ V4: string;
1260
+ };
1261
+ };
1262
+ /**
1263
+ * Lookup119: cumulus_pallet_xcm::pallet::Event<T>
1264
+ **/
1265
+ CumulusPalletXcmEvent: {
1266
+ _enum: {
1267
+ InvalidFormat: string;
1268
+ UnsupportedVersion: string;
1269
+ ExecutedDownward: string;
1270
+ };
1271
+ };
1272
+ /**
1273
+ * Lookup120: pallet_message_queue::pallet::Event<T>
1274
+ **/
1275
+ PalletMessageQueueEvent: {
1276
+ _enum: {
1277
+ ProcessingFailed: {
1278
+ id: string;
1279
+ origin: string;
1280
+ error: string;
1281
+ };
1282
+ Processed: {
1283
+ id: string;
1284
+ origin: string;
1285
+ weightUsed: string;
1286
+ success: string;
1287
+ };
1288
+ OverweightEnqueued: {
1289
+ id: string;
1290
+ origin: string;
1291
+ pageIndex: string;
1292
+ messageIndex: string;
1293
+ };
1294
+ PageReaped: {
1295
+ origin: string;
1296
+ index: string;
1297
+ };
1298
+ };
1299
+ };
1300
+ /**
1301
+ * Lookup121: cumulus_primitives_core::AggregateMessageOrigin
1302
+ **/
1303
+ CumulusPrimitivesCoreAggregateMessageOrigin: {
1304
+ _enum: {
1305
+ Here: string;
1306
+ Parent: string;
1307
+ Sibling: string;
1308
+ };
1309
+ };
1310
+ /**
1311
+ * Lookup123: frame_support::traits::messages::ProcessMessageError
1312
+ **/
1313
+ FrameSupportMessagesProcessMessageError: {
1314
+ _enum: {
1315
+ BadFormat: string;
1316
+ Corrupt: string;
1317
+ Unsupported: string;
1318
+ Overweight: string;
1319
+ Yield: string;
1320
+ StackLimitReached: string;
1321
+ };
1322
+ };
1323
+ /**
1324
+ * Lookup124: pallet_storage_providers::pallet::Event<T>
1325
+ **/
1326
+ PalletStorageProvidersEvent: {
1327
+ _enum: {
1328
+ MspRequestSignUpSuccess: {
1329
+ who: string;
1330
+ multiaddresses: string;
1331
+ capacity: string;
1332
+ valueProp: string;
1333
+ };
1334
+ MspSignUpSuccess: {
1335
+ who: string;
1336
+ mspId: string;
1337
+ multiaddresses: string;
1338
+ capacity: string;
1339
+ valueProp: string;
1340
+ };
1341
+ BspRequestSignUpSuccess: {
1342
+ who: string;
1343
+ multiaddresses: string;
1344
+ capacity: string;
1345
+ };
1346
+ BspSignUpSuccess: {
1347
+ who: string;
1348
+ bspId: string;
1349
+ multiaddresses: string;
1350
+ capacity: string;
1351
+ };
1352
+ SignUpRequestCanceled: {
1353
+ who: string;
1354
+ };
1355
+ MspSignOffSuccess: {
1356
+ who: string;
1357
+ mspId: string;
1358
+ };
1359
+ BspSignOffSuccess: {
1360
+ who: string;
1361
+ bspId: string;
1362
+ };
1363
+ CapacityChanged: {
1364
+ who: string;
1365
+ providerId: string;
1366
+ oldCapacity: string;
1367
+ newCapacity: string;
1368
+ nextBlockWhenChangeAllowed: string;
1369
+ };
1370
+ Slashed: {
1371
+ providerId: string;
1372
+ amountSlashed: string;
1373
+ };
1374
+ };
1375
+ };
1376
+ /**
1377
+ * Lookup128: pallet_storage_providers::types::ValueProposition<T>
1378
+ **/
1379
+ PalletStorageProvidersValueProposition: {
1380
+ identifier: string;
1381
+ dataLimit: string;
1382
+ protocols: string;
1383
+ };
1384
+ /**
1385
+ * Lookup130: pallet_storage_providers::types::StorageProviderId<T>
1386
+ **/
1387
+ PalletStorageProvidersStorageProviderId: {
1388
+ _enum: {
1389
+ BackupStorageProvider: string;
1390
+ MainStorageProvider: string;
1391
+ };
1392
+ };
1393
+ /**
1394
+ * Lookup131: pallet_file_system::pallet::Event<T>
1395
+ **/
1396
+ PalletFileSystemEvent: {
1397
+ _enum: {
1398
+ NewBucket: {
1399
+ who: string;
1400
+ mspId: string;
1401
+ bucketId: string;
1402
+ name: string;
1403
+ collectionId: string;
1404
+ private: string;
1405
+ };
1406
+ MoveBucketRequested: {
1407
+ who: string;
1408
+ bucketId: string;
1409
+ newMspId: string;
1410
+ };
1411
+ BucketPrivacyUpdated: {
1412
+ who: string;
1413
+ bucketId: string;
1414
+ collectionId: string;
1415
+ private: string;
1416
+ };
1417
+ NewCollectionAndAssociation: {
1418
+ who: string;
1419
+ bucketId: string;
1420
+ collectionId: string;
1421
+ };
1422
+ NewStorageRequest: {
1423
+ _alias: {
1424
+ size_: string;
1425
+ };
1426
+ who: string;
1427
+ fileKey: string;
1428
+ bucketId: string;
1429
+ location: string;
1430
+ fingerprint: string;
1431
+ size_: string;
1432
+ peerIds: string;
1433
+ };
1434
+ MspRespondedToStorageRequests: {
1435
+ results: string;
1436
+ };
1437
+ AcceptedBspVolunteer: {
1438
+ _alias: {
1439
+ size_: string;
1440
+ };
1441
+ bspId: string;
1442
+ bucketId: string;
1443
+ location: string;
1444
+ fingerprint: string;
1445
+ multiaddresses: string;
1446
+ owner: string;
1447
+ size_: string;
1448
+ };
1449
+ BspConfirmedStoring: {
1450
+ who: string;
1451
+ bspId: string;
1452
+ fileKeys: string;
1453
+ newRoot: string;
1454
+ };
1455
+ StorageRequestFulfilled: {
1456
+ fileKey: string;
1457
+ };
1458
+ StorageRequestExpired: {
1459
+ fileKey: string;
1460
+ };
1461
+ StorageRequestRevoked: {
1462
+ fileKey: string;
1463
+ };
1464
+ BspRequestedToStopStoring: {
1465
+ bspId: string;
1466
+ fileKey: string;
1467
+ owner: string;
1468
+ location: string;
1469
+ };
1470
+ BspConfirmStoppedStoring: {
1471
+ bspId: string;
1472
+ fileKey: string;
1473
+ newRoot: string;
1474
+ };
1475
+ PriorityChallengeForFileDeletionQueued: {
1476
+ issuer: string;
1477
+ fileKey: string;
1478
+ };
1479
+ SpStopStoringInsolventUser: {
1480
+ spId: string;
1481
+ fileKey: string;
1482
+ owner: string;
1483
+ location: string;
1484
+ newRoot: string;
1485
+ };
1486
+ FailedToQueuePriorityChallenge: {
1487
+ user: string;
1488
+ fileKey: string;
1489
+ };
1490
+ FileDeletionRequest: {
1491
+ user: string;
1492
+ fileKey: string;
1493
+ bucketId: string;
1494
+ mspId: string;
1495
+ proofOfInclusion: string;
1496
+ };
1497
+ ProofSubmittedForPendingFileDeletionRequest: {
1498
+ mspId: string;
1499
+ user: string;
1500
+ fileKey: string;
1501
+ bucketId: string;
1502
+ proofOfInclusion: string;
1503
+ };
1504
+ BspChallengeCycleInitialised: {
1505
+ who: string;
1506
+ bspId: string;
1507
+ };
1508
+ MoveBucketRequestExpired: {
1509
+ mspId: string;
1510
+ bucketId: string;
1511
+ };
1512
+ MoveBucketAccepted: {
1513
+ bucketId: string;
1514
+ mspId: string;
1515
+ };
1516
+ MoveBucketRejected: {
1517
+ bucketId: string;
1518
+ mspId: string;
1519
+ };
1520
+ DataServerRegisteredForMoveBucket: {
1521
+ bspId: string;
1522
+ bucketId: string;
1523
+ };
1524
+ };
1525
+ };
1526
+ /**
1527
+ * Lookup134: pallet_file_system::types::MspRespondStorageRequestsResult<T>
1528
+ **/
1529
+ PalletFileSystemMspRespondStorageRequestsResult: {
1530
+ mspId: string;
1531
+ responses: string;
1532
+ };
1533
+ /**
1534
+ * Lookup136: pallet_file_system::types::BatchResponses<T>
1535
+ **/
1536
+ PalletFileSystemBatchResponses: {
1537
+ _enum: {
1538
+ Accepted: string;
1539
+ Rejected: string;
1540
+ Failed: string;
1541
+ };
1542
+ };
1543
+ /**
1544
+ * Lookup137: pallet_file_system::types::MspAcceptedBatchStorageRequests<T>
1545
+ **/
1546
+ PalletFileSystemMspAcceptedBatchStorageRequests: {
1547
+ fileKeys: string;
1548
+ bucketId: string;
1549
+ newBucketRoot: string;
1550
+ owner: string;
1551
+ };
1552
+ /**
1553
+ * Lookup140: pallet_file_system::types::MspRejectedBatchStorageRequests<T>
1554
+ **/
1555
+ PalletFileSystemMspRejectedBatchStorageRequests: {
1556
+ fileKeys: string;
1557
+ bucketId: string;
1558
+ owner: string;
1559
+ };
1560
+ /**
1561
+ * Lookup143: pallet_file_system::types::RejectedStorageRequestReason
1562
+ **/
1563
+ PalletFileSystemRejectedStorageRequestReason: {
1564
+ _enum: string[];
1565
+ };
1566
+ /**
1567
+ * Lookup145: pallet_file_system::types::MspFailedBatchStorageRequests<T>
1568
+ **/
1569
+ PalletFileSystemMspFailedBatchStorageRequests: {
1570
+ fileKeys: string;
1571
+ bucketId: string;
1572
+ owner: string;
1573
+ };
1574
+ /**
1575
+ * Lookup150: pallet_file_system::types::EitherAccountIdOrMspId<T>
1576
+ **/
1577
+ PalletFileSystemEitherAccountIdOrMspId: {
1578
+ _enum: {
1579
+ AccountId: string;
1580
+ MspId: string;
1581
+ };
1582
+ };
1583
+ /**
1584
+ * Lookup151: pallet_proofs_dealer::pallet::Event<T>
1585
+ **/
1586
+ PalletProofsDealerEvent: {
1587
+ _enum: {
1588
+ NewChallenge: {
1589
+ who: string;
1590
+ keyChallenged: string;
1591
+ };
1592
+ ProofAccepted: {
1593
+ provider: string;
1594
+ proof: string;
1595
+ };
1596
+ NewChallengeSeed: {
1597
+ challengesTicker: string;
1598
+ seed: string;
1599
+ };
1600
+ NewCheckpointChallenge: {
1601
+ challengesTicker: string;
1602
+ challenges: string;
1603
+ };
1604
+ SlashableProvider: {
1605
+ provider: string;
1606
+ nextChallengeDeadline: string;
1607
+ };
1608
+ NoRecordOfLastSubmittedProof: {
1609
+ provider: string;
1610
+ };
1611
+ NewChallengeCycleInitialised: {
1612
+ currentTick: string;
1613
+ nextChallengeDeadline: string;
1614
+ provider: string;
1615
+ maybeProviderAccount: string;
1616
+ };
1617
+ MutationsApplied: {
1618
+ provider: string;
1619
+ mutations: string;
1620
+ newRoot: string;
1621
+ };
1622
+ ChallengesTickerSet: {
1623
+ paused: string;
1624
+ };
1625
+ };
1626
+ };
1627
+ /**
1628
+ * Lookup152: pallet_proofs_dealer::types::Proof<T>
1629
+ **/
1630
+ PalletProofsDealerProof: {
1631
+ forestProof: string;
1632
+ keyProofs: string;
1633
+ };
1634
+ /**
1635
+ * Lookup153: sp_trie::storage_proof::CompactProof
1636
+ **/
1637
+ SpTrieStorageProofCompactProof: {
1638
+ encodedNodes: string;
1639
+ };
1640
+ /**
1641
+ * Lookup156: pallet_proofs_dealer::types::KeyProof<T>
1642
+ **/
1643
+ PalletProofsDealerKeyProof: {
1644
+ proof: string;
1645
+ challengeCount: string;
1646
+ };
1647
+ /**
1648
+ * Lookup157: shp_file_key_verifier::types::FileKeyProof
1649
+ **/
1650
+ ShpFileKeyVerifierFileKeyProof: {
1651
+ fileMetadata: string;
1652
+ proof: string;
1653
+ };
1654
+ /**
1655
+ * Lookup158: shp_file_metadata::FileMetadata
1656
+ **/
1657
+ ShpFileMetadataFileMetadata: {
1658
+ owner: string;
1659
+ bucketId: string;
1660
+ location: string;
1661
+ fileSize: string;
1662
+ fingerprint: string;
1663
+ };
1664
+ /**
1665
+ * Lookup159: shp_file_metadata::Fingerprint
1666
+ **/
1667
+ ShpFileMetadataFingerprint: string;
1668
+ /**
1669
+ * Lookup165: shp_traits::TrieRemoveMutation
1670
+ **/
1671
+ ShpTraitsTrieRemoveMutation: string;
1672
+ /**
1673
+ * Lookup169: pallet_randomness::pallet::Event<T>
1674
+ **/
1675
+ PalletRandomnessEvent: {
1676
+ _enum: {
1677
+ NewOneEpochAgoRandomnessAvailable: {
1678
+ randomnessSeed: string;
1679
+ fromEpoch: string;
1680
+ validUntilBlock: string;
1681
+ };
1682
+ };
1683
+ };
1684
+ /**
1685
+ * Lookup170: pallet_payment_streams::pallet::Event<T>
1686
+ **/
1687
+ PalletPaymentStreamsEvent: {
1688
+ _enum: {
1689
+ FixedRatePaymentStreamCreated: {
1690
+ userAccount: string;
1691
+ providerId: string;
1692
+ rate: string;
1693
+ };
1694
+ FixedRatePaymentStreamUpdated: {
1695
+ userAccount: string;
1696
+ providerId: string;
1697
+ newRate: string;
1698
+ };
1699
+ FixedRatePaymentStreamDeleted: {
1700
+ userAccount: string;
1701
+ providerId: string;
1702
+ };
1703
+ DynamicRatePaymentStreamCreated: {
1704
+ userAccount: string;
1705
+ providerId: string;
1706
+ amountProvided: string;
1707
+ };
1708
+ DynamicRatePaymentStreamUpdated: {
1709
+ userAccount: string;
1710
+ providerId: string;
1711
+ newAmountProvided: string;
1712
+ };
1713
+ DynamicRatePaymentStreamDeleted: {
1714
+ userAccount: string;
1715
+ providerId: string;
1716
+ };
1717
+ PaymentStreamCharged: {
1718
+ userAccount: string;
1719
+ providerId: string;
1720
+ amount: string;
1721
+ lastTickCharged: string;
1722
+ chargedAtTick: string;
1723
+ };
1724
+ LastChargeableInfoUpdated: {
1725
+ providerId: string;
1726
+ lastChargeableTick: string;
1727
+ lastChargeablePriceIndex: string;
1728
+ };
1729
+ UserWithoutFunds: {
1730
+ who: string;
1731
+ };
1732
+ UserPaidDebts: {
1733
+ who: string;
1734
+ };
1735
+ UserSolvent: {
1736
+ who: string;
1737
+ };
1738
+ };
1739
+ };
1740
+ /**
1741
+ * Lookup171: pallet_bucket_nfts::pallet::Event<T>
1742
+ **/
1743
+ PalletBucketNftsEvent: {
1744
+ _enum: {
1745
+ AccessShared: {
1746
+ issuer: string;
1747
+ recipient: string;
1748
+ };
1749
+ ItemReadAccessUpdated: {
1750
+ admin: string;
1751
+ bucket: string;
1752
+ itemId: string;
1753
+ };
1754
+ ItemBurned: {
1755
+ account: string;
1756
+ bucket: string;
1757
+ itemId: string;
1758
+ };
1759
+ };
1760
+ };
1761
+ /**
1762
+ * Lookup172: pallet_nfts::pallet::Event<T, I>
1763
+ **/
1764
+ PalletNftsEvent: {
1765
+ _enum: {
1766
+ Created: {
1767
+ collection: string;
1768
+ creator: string;
1769
+ owner: string;
1770
+ };
1771
+ ForceCreated: {
1772
+ collection: string;
1773
+ owner: string;
1774
+ };
1775
+ Destroyed: {
1776
+ collection: string;
1777
+ };
1778
+ Issued: {
1779
+ collection: string;
1780
+ item: string;
1781
+ owner: string;
1782
+ };
1783
+ Transferred: {
1784
+ collection: string;
1785
+ item: string;
1786
+ from: string;
1787
+ to: string;
1788
+ };
1789
+ Burned: {
1790
+ collection: string;
1791
+ item: string;
1792
+ owner: string;
1793
+ };
1794
+ ItemTransferLocked: {
1795
+ collection: string;
1796
+ item: string;
1797
+ };
1798
+ ItemTransferUnlocked: {
1799
+ collection: string;
1800
+ item: string;
1801
+ };
1802
+ ItemPropertiesLocked: {
1803
+ collection: string;
1804
+ item: string;
1805
+ lockMetadata: string;
1806
+ lockAttributes: string;
1807
+ };
1808
+ CollectionLocked: {
1809
+ collection: string;
1810
+ };
1811
+ OwnerChanged: {
1812
+ collection: string;
1813
+ newOwner: string;
1814
+ };
1815
+ TeamChanged: {
1816
+ collection: string;
1817
+ issuer: string;
1818
+ admin: string;
1819
+ freezer: string;
1820
+ };
1821
+ TransferApproved: {
1822
+ collection: string;
1823
+ item: string;
1824
+ owner: string;
1825
+ delegate: string;
1826
+ deadline: string;
1827
+ };
1828
+ ApprovalCancelled: {
1829
+ collection: string;
1830
+ item: string;
1831
+ owner: string;
1832
+ delegate: string;
1833
+ };
1834
+ AllApprovalsCancelled: {
1835
+ collection: string;
1836
+ item: string;
1837
+ owner: string;
1838
+ };
1839
+ CollectionConfigChanged: {
1840
+ collection: string;
1841
+ };
1842
+ CollectionMetadataSet: {
1843
+ collection: string;
1844
+ data: string;
1845
+ };
1846
+ CollectionMetadataCleared: {
1847
+ collection: string;
1848
+ };
1849
+ ItemMetadataSet: {
1850
+ collection: string;
1851
+ item: string;
1852
+ data: string;
1853
+ };
1854
+ ItemMetadataCleared: {
1855
+ collection: string;
1856
+ item: string;
1857
+ };
1858
+ Redeposited: {
1859
+ collection: string;
1860
+ successfulItems: string;
1861
+ };
1862
+ AttributeSet: {
1863
+ collection: string;
1864
+ maybeItem: string;
1865
+ key: string;
1866
+ value: string;
1867
+ namespace: string;
1868
+ };
1869
+ AttributeCleared: {
1870
+ collection: string;
1871
+ maybeItem: string;
1872
+ key: string;
1873
+ namespace: string;
1874
+ };
1875
+ ItemAttributesApprovalAdded: {
1876
+ collection: string;
1877
+ item: string;
1878
+ delegate: string;
1879
+ };
1880
+ ItemAttributesApprovalRemoved: {
1881
+ collection: string;
1882
+ item: string;
1883
+ delegate: string;
1884
+ };
1885
+ OwnershipAcceptanceChanged: {
1886
+ who: string;
1887
+ maybeCollection: string;
1888
+ };
1889
+ CollectionMaxSupplySet: {
1890
+ collection: string;
1891
+ maxSupply: string;
1892
+ };
1893
+ CollectionMintSettingsUpdated: {
1894
+ collection: string;
1895
+ };
1896
+ NextCollectionIdIncremented: {
1897
+ nextId: string;
1898
+ };
1899
+ ItemPriceSet: {
1900
+ collection: string;
1901
+ item: string;
1902
+ price: string;
1903
+ whitelistedBuyer: string;
1904
+ };
1905
+ ItemPriceRemoved: {
1906
+ collection: string;
1907
+ item: string;
1908
+ };
1909
+ ItemBought: {
1910
+ collection: string;
1911
+ item: string;
1912
+ price: string;
1913
+ seller: string;
1914
+ buyer: string;
1915
+ };
1916
+ TipSent: {
1917
+ collection: string;
1918
+ item: string;
1919
+ sender: string;
1920
+ receiver: string;
1921
+ amount: string;
1922
+ };
1923
+ SwapCreated: {
1924
+ offeredCollection: string;
1925
+ offeredItem: string;
1926
+ desiredCollection: string;
1927
+ desiredItem: string;
1928
+ price: string;
1929
+ deadline: string;
1930
+ };
1931
+ SwapCancelled: {
1932
+ offeredCollection: string;
1933
+ offeredItem: string;
1934
+ desiredCollection: string;
1935
+ desiredItem: string;
1936
+ price: string;
1937
+ deadline: string;
1938
+ };
1939
+ SwapClaimed: {
1940
+ sentCollection: string;
1941
+ sentItem: string;
1942
+ sentItemOwner: string;
1943
+ receivedCollection: string;
1944
+ receivedItem: string;
1945
+ receivedItemOwner: string;
1946
+ price: string;
1947
+ deadline: string;
1948
+ };
1949
+ PreSignedAttributesSet: {
1950
+ collection: string;
1951
+ item: string;
1952
+ namespace: string;
1953
+ };
1954
+ PalletAttributeSet: {
1955
+ collection: string;
1956
+ item: string;
1957
+ attribute: string;
1958
+ value: string;
1959
+ };
1960
+ };
1961
+ };
1962
+ /**
1963
+ * Lookup176: pallet_nfts::types::AttributeNamespace<sp_core::crypto::AccountId32>
1964
+ **/
1965
+ PalletNftsAttributeNamespace: {
1966
+ _enum: {
1967
+ Pallet: string;
1968
+ CollectionOwner: string;
1969
+ ItemOwner: string;
1970
+ Account: string;
1971
+ };
1972
+ };
1973
+ /**
1974
+ * Lookup178: pallet_nfts::types::PriceWithDirection<Amount>
1975
+ **/
1976
+ PalletNftsPriceWithDirection: {
1977
+ amount: string;
1978
+ direction: string;
1979
+ };
1980
+ /**
1981
+ * Lookup179: pallet_nfts::types::PriceDirection
1982
+ **/
1983
+ PalletNftsPriceDirection: {
1984
+ _enum: string[];
1985
+ };
1986
+ /**
1987
+ * Lookup180: pallet_nfts::types::PalletAttributes<CollectionId>
1988
+ **/
1989
+ PalletNftsPalletAttributes: {
1990
+ _enum: {
1991
+ UsedToClaim: string;
1992
+ TransferDisabled: string;
1993
+ };
1994
+ };
1995
+ /**
1996
+ * Lookup181: pallet_parameters::pallet::Event<T>
1997
+ **/
1998
+ PalletParametersEvent: {
1999
+ _enum: {
2000
+ Updated: {
2001
+ key: string;
2002
+ oldValue: string;
2003
+ newValue: string;
2004
+ };
2005
+ };
2006
+ };
2007
+ /**
2008
+ * Lookup182: storage_hub_runtime::configs::runtime_params::RuntimeParametersKey
2009
+ **/
2010
+ StorageHubRuntimeConfigsRuntimeParamsRuntimeParametersKey: {
2011
+ _enum: {
2012
+ RuntimeConfig: string;
2013
+ };
2014
+ };
2015
+ /**
2016
+ * Lookup183: storage_hub_runtime::configs::runtime_params::dynamic_params::runtime_config::ParametersKey
2017
+ **/
2018
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersKey: {
2019
+ _enum: string[];
2020
+ };
2021
+ /**
2022
+ * Lookup184: storage_hub_runtime::configs::runtime_params::dynamic_params::runtime_config::SlashAmountPerMaxFileSize
2023
+ **/
2024
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigSlashAmountPerMaxFileSize: string;
2025
+ /**
2026
+ * Lookup185: storage_hub_runtime::configs::runtime_params::dynamic_params::runtime_config::StakeToChallengePeriod
2027
+ **/
2028
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigStakeToChallengePeriod: string;
2029
+ /**
2030
+ * Lookup186: storage_hub_runtime::configs::runtime_params::dynamic_params::runtime_config::CheckpointChallengePeriod
2031
+ **/
2032
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigCheckpointChallengePeriod: string;
2033
+ /**
2034
+ * Lookup187: storage_hub_runtime::configs::runtime_params::dynamic_params::runtime_config::MinChallengePeriod
2035
+ **/
2036
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigMinChallengePeriod: string;
2037
+ /**
2038
+ * Lookup189: storage_hub_runtime::configs::runtime_params::RuntimeParametersValue
2039
+ **/
2040
+ StorageHubRuntimeConfigsRuntimeParamsRuntimeParametersValue: {
2041
+ _enum: {
2042
+ RuntimeConfig: string;
2043
+ };
2044
+ };
2045
+ /**
2046
+ * Lookup190: storage_hub_runtime::configs::runtime_params::dynamic_params::runtime_config::ParametersValue
2047
+ **/
2048
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParametersValue: {
2049
+ _enum: {
2050
+ SlashAmountPerMaxFileSize: string;
2051
+ StakeToChallengePeriod: string;
2052
+ CheckpointChallengePeriod: string;
2053
+ MinChallengePeriod: string;
2054
+ };
2055
+ };
2056
+ /**
2057
+ * Lookup191: frame_system::Phase
2058
+ **/
2059
+ FrameSystemPhase: {
2060
+ _enum: {
2061
+ ApplyExtrinsic: string;
2062
+ Finalization: string;
2063
+ Initialization: string;
2064
+ };
2065
+ };
2066
+ /**
2067
+ * Lookup194: frame_system::LastRuntimeUpgradeInfo
2068
+ **/
2069
+ FrameSystemLastRuntimeUpgradeInfo: {
2070
+ specVersion: string;
2071
+ specName: string;
2072
+ };
2073
+ /**
2074
+ * Lookup196: frame_system::CodeUpgradeAuthorization<T>
2075
+ **/
2076
+ FrameSystemCodeUpgradeAuthorization: {
2077
+ codeHash: string;
2078
+ checkVersion: string;
2079
+ };
2080
+ /**
2081
+ * Lookup197: frame_system::pallet::Call<T>
2082
+ **/
2083
+ FrameSystemCall: {
2084
+ _enum: {
2085
+ remark: {
2086
+ remark: string;
2087
+ };
2088
+ set_heap_pages: {
2089
+ pages: string;
2090
+ };
2091
+ set_code: {
2092
+ code: string;
2093
+ };
2094
+ set_code_without_checks: {
2095
+ code: string;
2096
+ };
2097
+ set_storage: {
2098
+ items: string;
2099
+ };
2100
+ kill_storage: {
2101
+ _alias: {
2102
+ keys_: string;
2103
+ };
2104
+ keys_: string;
2105
+ };
2106
+ kill_prefix: {
2107
+ prefix: string;
2108
+ subkeys: string;
2109
+ };
2110
+ remark_with_event: {
2111
+ remark: string;
2112
+ };
2113
+ __Unused8: string;
2114
+ authorize_upgrade: {
2115
+ codeHash: string;
2116
+ };
2117
+ authorize_upgrade_without_checks: {
2118
+ codeHash: string;
2119
+ };
2120
+ apply_authorized_upgrade: {
2121
+ code: string;
2122
+ };
2123
+ };
2124
+ };
2125
+ /**
2126
+ * Lookup200: frame_system::limits::BlockWeights
2127
+ **/
2128
+ FrameSystemLimitsBlockWeights: {
2129
+ baseBlock: string;
2130
+ maxBlock: string;
2131
+ perClass: string;
2132
+ };
2133
+ /**
2134
+ * Lookup201: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
2135
+ **/
2136
+ FrameSupportDispatchPerDispatchClassWeightsPerClass: {
2137
+ normal: string;
2138
+ operational: string;
2139
+ mandatory: string;
2140
+ };
2141
+ /**
2142
+ * Lookup202: frame_system::limits::WeightsPerClass
2143
+ **/
2144
+ FrameSystemLimitsWeightsPerClass: {
2145
+ baseExtrinsic: string;
2146
+ maxExtrinsic: string;
2147
+ maxTotal: string;
2148
+ reserved: string;
2149
+ };
2150
+ /**
2151
+ * Lookup204: frame_system::limits::BlockLength
2152
+ **/
2153
+ FrameSystemLimitsBlockLength: {
2154
+ max: string;
2155
+ };
2156
+ /**
2157
+ * Lookup205: frame_support::dispatch::PerDispatchClass<T>
2158
+ **/
2159
+ FrameSupportDispatchPerDispatchClassU32: {
2160
+ normal: string;
2161
+ operational: string;
2162
+ mandatory: string;
2163
+ };
2164
+ /**
2165
+ * Lookup206: sp_weights::RuntimeDbWeight
2166
+ **/
2167
+ SpWeightsRuntimeDbWeight: {
2168
+ read: string;
2169
+ write: string;
2170
+ };
2171
+ /**
2172
+ * Lookup207: sp_version::RuntimeVersion
2173
+ **/
2174
+ SpVersionRuntimeVersion: {
2175
+ specName: string;
2176
+ implName: string;
2177
+ authoringVersion: string;
2178
+ specVersion: string;
2179
+ implVersion: string;
2180
+ apis: string;
2181
+ transactionVersion: string;
2182
+ stateVersion: string;
2183
+ };
2184
+ /**
2185
+ * Lookup212: frame_system::pallet::Error<T>
2186
+ **/
2187
+ FrameSystemError: {
2188
+ _enum: string[];
2189
+ };
2190
+ /**
2191
+ * Lookup214: cumulus_pallet_parachain_system::unincluded_segment::Ancestor<primitive_types::H256>
2192
+ **/
2193
+ CumulusPalletParachainSystemUnincludedSegmentAncestor: {
2194
+ usedBandwidth: string;
2195
+ paraHeadHash: string;
2196
+ consumedGoAheadSignal: string;
2197
+ };
2198
+ /**
2199
+ * Lookup215: cumulus_pallet_parachain_system::unincluded_segment::UsedBandwidth
2200
+ **/
2201
+ CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth: {
2202
+ umpMsgCount: string;
2203
+ umpTotalBytes: string;
2204
+ hrmpOutgoing: string;
2205
+ };
2206
+ /**
2207
+ * Lookup217: cumulus_pallet_parachain_system::unincluded_segment::HrmpChannelUpdate
2208
+ **/
2209
+ CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate: {
2210
+ msgCount: string;
2211
+ totalBytes: string;
2212
+ };
2213
+ /**
2214
+ * Lookup222: polkadot_primitives::v7::UpgradeGoAhead
2215
+ **/
2216
+ PolkadotPrimitivesV7UpgradeGoAhead: {
2217
+ _enum: string[];
2218
+ };
2219
+ /**
2220
+ * Lookup223: cumulus_pallet_parachain_system::unincluded_segment::SegmentTracker<primitive_types::H256>
2221
+ **/
2222
+ CumulusPalletParachainSystemUnincludedSegmentSegmentTracker: {
2223
+ usedBandwidth: string;
2224
+ hrmpWatermark: string;
2225
+ consumedGoAheadSignal: string;
2226
+ };
2227
+ /**
2228
+ * Lookup224: polkadot_primitives::v7::PersistedValidationData<primitive_types::H256, N>
2229
+ **/
2230
+ PolkadotPrimitivesV7PersistedValidationData: {
2231
+ parentHead: string;
2232
+ relayParentNumber: string;
2233
+ relayParentStorageRoot: string;
2234
+ maxPovSize: string;
2235
+ };
2236
+ /**
2237
+ * Lookup227: polkadot_primitives::v7::UpgradeRestriction
2238
+ **/
2239
+ PolkadotPrimitivesV7UpgradeRestriction: {
2240
+ _enum: string[];
2241
+ };
2242
+ /**
2243
+ * Lookup228: sp_trie::storage_proof::StorageProof
2244
+ **/
2245
+ SpTrieStorageProof: {
2246
+ trieNodes: string;
2247
+ };
2248
+ /**
2249
+ * Lookup230: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
2250
+ **/
2251
+ CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
2252
+ dmqMqcHead: string;
2253
+ relayDispatchQueueRemainingCapacity: string;
2254
+ ingressChannels: string;
2255
+ egressChannels: string;
2256
+ };
2257
+ /**
2258
+ * Lookup231: cumulus_pallet_parachain_system::relay_state_snapshot::RelayDispatchQueueRemainingCapacity
2259
+ **/
2260
+ CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity: {
2261
+ remainingCount: string;
2262
+ remainingSize: string;
2263
+ };
2264
+ /**
2265
+ * Lookup234: polkadot_primitives::v7::AbridgedHrmpChannel
2266
+ **/
2267
+ PolkadotPrimitivesV7AbridgedHrmpChannel: {
2268
+ maxCapacity: string;
2269
+ maxTotalSize: string;
2270
+ maxMessageSize: string;
2271
+ msgCount: string;
2272
+ totalSize: string;
2273
+ mqcHead: string;
2274
+ };
2275
+ /**
2276
+ * Lookup235: polkadot_primitives::v7::AbridgedHostConfiguration
2277
+ **/
2278
+ PolkadotPrimitivesV7AbridgedHostConfiguration: {
2279
+ maxCodeSize: string;
2280
+ maxHeadDataSize: string;
2281
+ maxUpwardQueueCount: string;
2282
+ maxUpwardQueueSize: string;
2283
+ maxUpwardMessageSize: string;
2284
+ maxUpwardMessageNumPerCandidate: string;
2285
+ hrmpMaxMessageNumPerCandidate: string;
2286
+ validationUpgradeCooldown: string;
2287
+ validationUpgradeDelay: string;
2288
+ asyncBackingParams: string;
2289
+ };
2290
+ /**
2291
+ * Lookup236: polkadot_primitives::v7::async_backing::AsyncBackingParams
2292
+ **/
2293
+ PolkadotPrimitivesV7AsyncBackingAsyncBackingParams: {
2294
+ maxCandidateDepth: string;
2295
+ allowedAncestryLen: string;
2296
+ };
2297
+ /**
2298
+ * Lookup242: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain_primitives::primitives::Id>
2299
+ **/
2300
+ PolkadotCorePrimitivesOutboundHrmpMessage: {
2301
+ recipient: string;
2302
+ data: string;
2303
+ };
2304
+ /**
2305
+ * Lookup244: cumulus_pallet_parachain_system::pallet::Call<T>
2306
+ **/
2307
+ CumulusPalletParachainSystemCall: {
2308
+ _enum: {
2309
+ set_validation_data: {
2310
+ data: string;
2311
+ };
2312
+ sudo_send_upward_message: {
2313
+ message: string;
2314
+ };
2315
+ authorize_upgrade: {
2316
+ codeHash: string;
2317
+ checkVersion: string;
2318
+ };
2319
+ enact_authorized_upgrade: {
2320
+ code: string;
2321
+ };
2322
+ };
2323
+ };
2324
+ /**
2325
+ * Lookup245: cumulus_primitives_parachain_inherent::ParachainInherentData
2326
+ **/
2327
+ CumulusPrimitivesParachainInherentParachainInherentData: {
2328
+ validationData: string;
2329
+ relayChainState: string;
2330
+ downwardMessages: string;
2331
+ horizontalMessages: string;
2332
+ };
2333
+ /**
2334
+ * Lookup247: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
2335
+ **/
2336
+ PolkadotCorePrimitivesInboundDownwardMessage: {
2337
+ sentAt: string;
2338
+ msg: string;
2339
+ };
2340
+ /**
2341
+ * Lookup250: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
2342
+ **/
2343
+ PolkadotCorePrimitivesInboundHrmpMessage: {
2344
+ sentAt: string;
2345
+ data: string;
2346
+ };
2347
+ /**
2348
+ * Lookup253: cumulus_pallet_parachain_system::pallet::Error<T>
2349
+ **/
2350
+ CumulusPalletParachainSystemError: {
2351
+ _enum: string[];
2352
+ };
2353
+ /**
2354
+ * Lookup254: pallet_timestamp::pallet::Call<T>
2355
+ **/
2356
+ PalletTimestampCall: {
2357
+ _enum: {
2358
+ set: {
2359
+ now: string;
2360
+ };
2361
+ };
2362
+ };
2363
+ /**
2364
+ * Lookup255: staging_parachain_info::pallet::Call<T>
2365
+ **/
2366
+ StagingParachainInfoCall: string;
2367
+ /**
2368
+ * Lookup257: pallet_balances::types::BalanceLock<Balance>
2369
+ **/
2370
+ PalletBalancesBalanceLock: {
2371
+ id: string;
2372
+ amount: string;
2373
+ reasons: string;
2374
+ };
2375
+ /**
2376
+ * Lookup258: pallet_balances::types::Reasons
2377
+ **/
2378
+ PalletBalancesReasons: {
2379
+ _enum: string[];
2380
+ };
2381
+ /**
2382
+ * Lookup261: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
2383
+ **/
2384
+ PalletBalancesReserveData: {
2385
+ id: string;
2386
+ amount: string;
2387
+ };
2388
+ /**
2389
+ * Lookup265: storage_hub_runtime::RuntimeHoldReason
2390
+ **/
2391
+ StorageHubRuntimeRuntimeHoldReason: {
2392
+ _enum: {
2393
+ __Unused0: string;
2394
+ __Unused1: string;
2395
+ __Unused2: string;
2396
+ __Unused3: string;
2397
+ __Unused4: string;
2398
+ __Unused5: string;
2399
+ __Unused6: string;
2400
+ __Unused7: string;
2401
+ __Unused8: string;
2402
+ __Unused9: string;
2403
+ __Unused10: string;
2404
+ __Unused11: string;
2405
+ __Unused12: string;
2406
+ __Unused13: string;
2407
+ __Unused14: string;
2408
+ __Unused15: string;
2409
+ __Unused16: string;
2410
+ __Unused17: string;
2411
+ __Unused18: string;
2412
+ __Unused19: string;
2413
+ __Unused20: string;
2414
+ __Unused21: string;
2415
+ __Unused22: string;
2416
+ __Unused23: string;
2417
+ __Unused24: string;
2418
+ __Unused25: string;
2419
+ __Unused26: string;
2420
+ __Unused27: string;
2421
+ __Unused28: string;
2422
+ __Unused29: string;
2423
+ __Unused30: string;
2424
+ __Unused31: string;
2425
+ __Unused32: string;
2426
+ __Unused33: string;
2427
+ __Unused34: string;
2428
+ __Unused35: string;
2429
+ __Unused36: string;
2430
+ __Unused37: string;
2431
+ __Unused38: string;
2432
+ __Unused39: string;
2433
+ Providers: string;
2434
+ __Unused41: string;
2435
+ __Unused42: string;
2436
+ __Unused43: string;
2437
+ PaymentStreams: string;
2438
+ };
2439
+ };
2440
+ /**
2441
+ * Lookup266: pallet_storage_providers::pallet::HoldReason
2442
+ **/
2443
+ PalletStorageProvidersHoldReason: {
2444
+ _enum: string[];
2445
+ };
2446
+ /**
2447
+ * Lookup267: pallet_payment_streams::pallet::HoldReason
2448
+ **/
2449
+ PalletPaymentStreamsHoldReason: {
2450
+ _enum: string[];
2451
+ };
2452
+ /**
2453
+ * Lookup270: frame_support::traits::tokens::misc::IdAmount<Id, Balance>
2454
+ **/
2455
+ FrameSupportTokensMiscIdAmount: {
2456
+ id: string;
2457
+ amount: string;
2458
+ };
2459
+ /**
2460
+ * Lookup272: pallet_balances::pallet::Call<T, I>
2461
+ **/
2462
+ PalletBalancesCall: {
2463
+ _enum: {
2464
+ transfer_allow_death: {
2465
+ dest: string;
2466
+ value: string;
2467
+ };
2468
+ __Unused1: string;
2469
+ force_transfer: {
2470
+ source: string;
2471
+ dest: string;
2472
+ value: string;
2473
+ };
2474
+ transfer_keep_alive: {
2475
+ dest: string;
2476
+ value: string;
2477
+ };
2478
+ transfer_all: {
2479
+ dest: string;
2480
+ keepAlive: string;
2481
+ };
2482
+ force_unreserve: {
2483
+ who: string;
2484
+ amount: string;
2485
+ };
2486
+ upgrade_accounts: {
2487
+ who: string;
2488
+ };
2489
+ __Unused7: string;
2490
+ force_set_balance: {
2491
+ who: string;
2492
+ newFree: string;
2493
+ };
2494
+ force_adjust_total_issuance: {
2495
+ direction: string;
2496
+ delta: string;
2497
+ };
2498
+ burn: {
2499
+ value: string;
2500
+ keepAlive: string;
2501
+ };
2502
+ };
2503
+ };
2504
+ /**
2505
+ * Lookup275: pallet_balances::types::AdjustmentDirection
2506
+ **/
2507
+ PalletBalancesAdjustmentDirection: {
2508
+ _enum: string[];
2509
+ };
2510
+ /**
2511
+ * Lookup276: pallet_balances::pallet::Error<T, I>
2512
+ **/
2513
+ PalletBalancesError: {
2514
+ _enum: string[];
2515
+ };
2516
+ /**
2517
+ * Lookup277: pallet_transaction_payment::Releases
2518
+ **/
2519
+ PalletTransactionPaymentReleases: {
2520
+ _enum: string[];
2521
+ };
2522
+ /**
2523
+ * Lookup278: pallet_sudo::pallet::Call<T>
2524
+ **/
2525
+ PalletSudoCall: {
2526
+ _enum: {
2527
+ sudo: {
2528
+ call: string;
2529
+ };
2530
+ sudo_unchecked_weight: {
2531
+ call: string;
2532
+ weight: string;
2533
+ };
2534
+ set_key: {
2535
+ _alias: {
2536
+ new_: string;
2537
+ };
2538
+ new_: string;
2539
+ };
2540
+ sudo_as: {
2541
+ who: string;
2542
+ call: string;
2543
+ };
2544
+ remove_key: string;
2545
+ };
2546
+ };
2547
+ /**
2548
+ * Lookup280: pallet_collator_selection::pallet::Call<T>
2549
+ **/
2550
+ PalletCollatorSelectionCall: {
2551
+ _enum: {
2552
+ set_invulnerables: {
2553
+ _alias: {
2554
+ new_: string;
2555
+ };
2556
+ new_: string;
2557
+ };
2558
+ set_desired_candidates: {
2559
+ max: string;
2560
+ };
2561
+ set_candidacy_bond: {
2562
+ bond: string;
2563
+ };
2564
+ register_as_candidate: string;
2565
+ leave_intent: string;
2566
+ add_invulnerable: {
2567
+ who: string;
2568
+ };
2569
+ remove_invulnerable: {
2570
+ who: string;
2571
+ };
2572
+ update_bond: {
2573
+ newDeposit: string;
2574
+ };
2575
+ take_candidate_slot: {
2576
+ deposit: string;
2577
+ target: string;
2578
+ };
2579
+ };
2580
+ };
2581
+ /**
2582
+ * Lookup281: pallet_session::pallet::Call<T>
2583
+ **/
2584
+ PalletSessionCall: {
2585
+ _enum: {
2586
+ set_keys: {
2587
+ _alias: {
2588
+ keys_: string;
2589
+ };
2590
+ keys_: string;
2591
+ proof: string;
2592
+ };
2593
+ purge_keys: string;
2594
+ };
2595
+ };
2596
+ /**
2597
+ * Lookup282: storage_hub_runtime::SessionKeys
2598
+ **/
2599
+ StorageHubRuntimeSessionKeys: {
2600
+ aura: string;
2601
+ };
2602
+ /**
2603
+ * Lookup283: sp_consensus_aura::sr25519::app_sr25519::Public
2604
+ **/
2605
+ SpConsensusAuraSr25519AppSr25519Public: string;
2606
+ /**
2607
+ * Lookup284: cumulus_pallet_xcmp_queue::pallet::Call<T>
2608
+ **/
2609
+ CumulusPalletXcmpQueueCall: {
2610
+ _enum: {
2611
+ __Unused0: string;
2612
+ suspend_xcm_execution: string;
2613
+ resume_xcm_execution: string;
2614
+ update_suspend_threshold: {
2615
+ _alias: {
2616
+ new_: string;
2617
+ };
2618
+ new_: string;
2619
+ };
2620
+ update_drop_threshold: {
2621
+ _alias: {
2622
+ new_: string;
2623
+ };
2624
+ new_: string;
2625
+ };
2626
+ update_resume_threshold: {
2627
+ _alias: {
2628
+ new_: string;
2629
+ };
2630
+ new_: string;
2631
+ };
2632
+ };
2633
+ };
2634
+ /**
2635
+ * Lookup285: pallet_xcm::pallet::Call<T>
2636
+ **/
2637
+ PalletXcmCall: {
2638
+ _enum: {
2639
+ send: {
2640
+ dest: string;
2641
+ message: string;
2642
+ };
2643
+ teleport_assets: {
2644
+ dest: string;
2645
+ beneficiary: string;
2646
+ assets: string;
2647
+ feeAssetItem: string;
2648
+ };
2649
+ reserve_transfer_assets: {
2650
+ dest: string;
2651
+ beneficiary: string;
2652
+ assets: string;
2653
+ feeAssetItem: string;
2654
+ };
2655
+ execute: {
2656
+ message: string;
2657
+ maxWeight: string;
2658
+ };
2659
+ force_xcm_version: {
2660
+ location: string;
2661
+ version: string;
2662
+ };
2663
+ force_default_xcm_version: {
2664
+ maybeXcmVersion: string;
2665
+ };
2666
+ force_subscribe_version_notify: {
2667
+ location: string;
2668
+ };
2669
+ force_unsubscribe_version_notify: {
2670
+ location: string;
2671
+ };
2672
+ limited_reserve_transfer_assets: {
2673
+ dest: string;
2674
+ beneficiary: string;
2675
+ assets: string;
2676
+ feeAssetItem: string;
2677
+ weightLimit: string;
2678
+ };
2679
+ limited_teleport_assets: {
2680
+ dest: string;
2681
+ beneficiary: string;
2682
+ assets: string;
2683
+ feeAssetItem: string;
2684
+ weightLimit: string;
2685
+ };
2686
+ force_suspension: {
2687
+ suspended: string;
2688
+ };
2689
+ transfer_assets: {
2690
+ dest: string;
2691
+ beneficiary: string;
2692
+ assets: string;
2693
+ feeAssetItem: string;
2694
+ weightLimit: string;
2695
+ };
2696
+ claim_assets: {
2697
+ assets: string;
2698
+ beneficiary: string;
2699
+ };
2700
+ transfer_assets_using_type_and_then: {
2701
+ dest: string;
2702
+ assets: string;
2703
+ assetsTransferType: string;
2704
+ remoteFeesId: string;
2705
+ feesTransferType: string;
2706
+ customXcmOnDest: string;
2707
+ weightLimit: string;
2708
+ };
2709
+ };
2710
+ };
2711
+ /**
2712
+ * Lookup286: xcm::VersionedXcm<RuntimeCall>
2713
+ **/
2714
+ XcmVersionedXcm: {
2715
+ _enum: {
2716
+ __Unused0: string;
2717
+ __Unused1: string;
2718
+ V2: string;
2719
+ V3: string;
2720
+ V4: string;
2721
+ };
2722
+ };
2723
+ /**
2724
+ * Lookup287: xcm::v2::Xcm<RuntimeCall>
2725
+ **/
2726
+ XcmV2Xcm: string;
2727
+ /**
2728
+ * Lookup289: xcm::v2::Instruction<RuntimeCall>
2729
+ **/
2730
+ XcmV2Instruction: {
2731
+ _enum: {
2732
+ WithdrawAsset: string;
2733
+ ReserveAssetDeposited: string;
2734
+ ReceiveTeleportedAsset: string;
2735
+ QueryResponse: {
2736
+ queryId: string;
2737
+ response: string;
2738
+ maxWeight: string;
2739
+ };
2740
+ TransferAsset: {
2741
+ assets: string;
2742
+ beneficiary: string;
2743
+ };
2744
+ TransferReserveAsset: {
2745
+ assets: string;
2746
+ dest: string;
2747
+ xcm: string;
2748
+ };
2749
+ Transact: {
2750
+ originType: string;
2751
+ requireWeightAtMost: string;
2752
+ call: string;
2753
+ };
2754
+ HrmpNewChannelOpenRequest: {
2755
+ sender: string;
2756
+ maxMessageSize: string;
2757
+ maxCapacity: string;
2758
+ };
2759
+ HrmpChannelAccepted: {
2760
+ recipient: string;
2761
+ };
2762
+ HrmpChannelClosing: {
2763
+ initiator: string;
2764
+ sender: string;
2765
+ recipient: string;
2766
+ };
2767
+ ClearOrigin: string;
2768
+ DescendOrigin: string;
2769
+ ReportError: {
2770
+ queryId: string;
2771
+ dest: string;
2772
+ maxResponseWeight: string;
2773
+ };
2774
+ DepositAsset: {
2775
+ assets: string;
2776
+ maxAssets: string;
2777
+ beneficiary: string;
2778
+ };
2779
+ DepositReserveAsset: {
2780
+ assets: string;
2781
+ maxAssets: string;
2782
+ dest: string;
2783
+ xcm: string;
2784
+ };
2785
+ ExchangeAsset: {
2786
+ give: string;
2787
+ receive: string;
2788
+ };
2789
+ InitiateReserveWithdraw: {
2790
+ assets: string;
2791
+ reserve: string;
2792
+ xcm: string;
2793
+ };
2794
+ InitiateTeleport: {
2795
+ assets: string;
2796
+ dest: string;
2797
+ xcm: string;
2798
+ };
2799
+ QueryHolding: {
2800
+ queryId: string;
2801
+ dest: string;
2802
+ assets: string;
2803
+ maxResponseWeight: string;
2804
+ };
2805
+ BuyExecution: {
2806
+ fees: string;
2807
+ weightLimit: string;
2808
+ };
2809
+ RefundSurplus: string;
2810
+ SetErrorHandler: string;
2811
+ SetAppendix: string;
2812
+ ClearError: string;
2813
+ ClaimAsset: {
2814
+ assets: string;
2815
+ ticket: string;
2816
+ };
2817
+ Trap: string;
2818
+ SubscribeVersion: {
2819
+ queryId: string;
2820
+ maxResponseWeight: string;
2821
+ };
2822
+ UnsubscribeVersion: string;
2823
+ };
2824
+ };
2825
+ /**
2826
+ * Lookup290: xcm::v2::Response
2827
+ **/
2828
+ XcmV2Response: {
2829
+ _enum: {
2830
+ Null: string;
2831
+ Assets: string;
2832
+ ExecutionResult: string;
2833
+ Version: string;
2834
+ };
2835
+ };
2836
+ /**
2837
+ * Lookup293: xcm::v2::traits::Error
2838
+ **/
2839
+ XcmV2TraitsError: {
2840
+ _enum: {
2841
+ Overflow: string;
2842
+ Unimplemented: string;
2843
+ UntrustedReserveLocation: string;
2844
+ UntrustedTeleportLocation: string;
2845
+ MultiLocationFull: string;
2846
+ MultiLocationNotInvertible: string;
2847
+ BadOrigin: string;
2848
+ InvalidLocation: string;
2849
+ AssetNotFound: string;
2850
+ FailedToTransactAsset: string;
2851
+ NotWithdrawable: string;
2852
+ LocationCannotHold: string;
2853
+ ExceedsMaxMessageSize: string;
2854
+ DestinationUnsupported: string;
2855
+ Transport: string;
2856
+ Unroutable: string;
2857
+ UnknownClaim: string;
2858
+ FailedToDecode: string;
2859
+ MaxWeightInvalid: string;
2860
+ NotHoldingFees: string;
2861
+ TooExpensive: string;
2862
+ Trap: string;
2863
+ UnhandledXcmVersion: string;
2864
+ WeightLimitReached: string;
2865
+ Barrier: string;
2866
+ WeightNotComputable: string;
2867
+ };
2868
+ };
2869
+ /**
2870
+ * Lookup294: xcm::v2::OriginKind
2871
+ **/
2872
+ XcmV2OriginKind: {
2873
+ _enum: string[];
2874
+ };
2875
+ /**
2876
+ * Lookup295: xcm::v2::multiasset::MultiAssetFilter
2877
+ **/
2878
+ XcmV2MultiassetMultiAssetFilter: {
2879
+ _enum: {
2880
+ Definite: string;
2881
+ Wild: string;
2882
+ };
2883
+ };
2884
+ /**
2885
+ * Lookup296: xcm::v2::multiasset::WildMultiAsset
2886
+ **/
2887
+ XcmV2MultiassetWildMultiAsset: {
2888
+ _enum: {
2889
+ All: string;
2890
+ AllOf: {
2891
+ id: string;
2892
+ fun: string;
2893
+ };
2894
+ };
2895
+ };
2896
+ /**
2897
+ * Lookup297: xcm::v2::multiasset::WildFungibility
2898
+ **/
2899
+ XcmV2MultiassetWildFungibility: {
2900
+ _enum: string[];
2901
+ };
2902
+ /**
2903
+ * Lookup298: xcm::v2::WeightLimit
2904
+ **/
2905
+ XcmV2WeightLimit: {
2906
+ _enum: {
2907
+ Unlimited: string;
2908
+ Limited: string;
2909
+ };
2910
+ };
2911
+ /**
2912
+ * Lookup299: xcm::v3::Xcm<Call>
2913
+ **/
2914
+ XcmV3Xcm: string;
2915
+ /**
2916
+ * Lookup301: xcm::v3::Instruction<Call>
2917
+ **/
2918
+ XcmV3Instruction: {
2919
+ _enum: {
2920
+ WithdrawAsset: string;
2921
+ ReserveAssetDeposited: string;
2922
+ ReceiveTeleportedAsset: string;
2923
+ QueryResponse: {
2924
+ queryId: string;
2925
+ response: string;
2926
+ maxWeight: string;
2927
+ querier: string;
2928
+ };
2929
+ TransferAsset: {
2930
+ assets: string;
2931
+ beneficiary: string;
2932
+ };
2933
+ TransferReserveAsset: {
2934
+ assets: string;
2935
+ dest: string;
2936
+ xcm: string;
2937
+ };
2938
+ Transact: {
2939
+ originKind: string;
2940
+ requireWeightAtMost: string;
2941
+ call: string;
2942
+ };
2943
+ HrmpNewChannelOpenRequest: {
2944
+ sender: string;
2945
+ maxMessageSize: string;
2946
+ maxCapacity: string;
2947
+ };
2948
+ HrmpChannelAccepted: {
2949
+ recipient: string;
2950
+ };
2951
+ HrmpChannelClosing: {
2952
+ initiator: string;
2953
+ sender: string;
2954
+ recipient: string;
2955
+ };
2956
+ ClearOrigin: string;
2957
+ DescendOrigin: string;
2958
+ ReportError: string;
2959
+ DepositAsset: {
2960
+ assets: string;
2961
+ beneficiary: string;
2962
+ };
2963
+ DepositReserveAsset: {
2964
+ assets: string;
2965
+ dest: string;
2966
+ xcm: string;
2967
+ };
2968
+ ExchangeAsset: {
2969
+ give: string;
2970
+ want: string;
2971
+ maximal: string;
2972
+ };
2973
+ InitiateReserveWithdraw: {
2974
+ assets: string;
2975
+ reserve: string;
2976
+ xcm: string;
2977
+ };
2978
+ InitiateTeleport: {
2979
+ assets: string;
2980
+ dest: string;
2981
+ xcm: string;
2982
+ };
2983
+ ReportHolding: {
2984
+ responseInfo: string;
2985
+ assets: string;
2986
+ };
2987
+ BuyExecution: {
2988
+ fees: string;
2989
+ weightLimit: string;
2990
+ };
2991
+ RefundSurplus: string;
2992
+ SetErrorHandler: string;
2993
+ SetAppendix: string;
2994
+ ClearError: string;
2995
+ ClaimAsset: {
2996
+ assets: string;
2997
+ ticket: string;
2998
+ };
2999
+ Trap: string;
3000
+ SubscribeVersion: {
3001
+ queryId: string;
3002
+ maxResponseWeight: string;
3003
+ };
3004
+ UnsubscribeVersion: string;
3005
+ BurnAsset: string;
3006
+ ExpectAsset: string;
3007
+ ExpectOrigin: string;
3008
+ ExpectError: string;
3009
+ ExpectTransactStatus: string;
3010
+ QueryPallet: {
3011
+ moduleName: string;
3012
+ responseInfo: string;
3013
+ };
3014
+ ExpectPallet: {
3015
+ index: string;
3016
+ name: string;
3017
+ moduleName: string;
3018
+ crateMajor: string;
3019
+ minCrateMinor: string;
3020
+ };
3021
+ ReportTransactStatus: string;
3022
+ ClearTransactStatus: string;
3023
+ UniversalOrigin: string;
3024
+ ExportMessage: {
3025
+ network: string;
3026
+ destination: string;
3027
+ xcm: string;
3028
+ };
3029
+ LockAsset: {
3030
+ asset: string;
3031
+ unlocker: string;
3032
+ };
3033
+ UnlockAsset: {
3034
+ asset: string;
3035
+ target: string;
3036
+ };
3037
+ NoteUnlockable: {
3038
+ asset: string;
3039
+ owner: string;
3040
+ };
3041
+ RequestUnlock: {
3042
+ asset: string;
3043
+ locker: string;
3044
+ };
3045
+ SetFeesMode: {
3046
+ jitWithdraw: string;
3047
+ };
3048
+ SetTopic: string;
3049
+ ClearTopic: string;
3050
+ AliasOrigin: string;
3051
+ UnpaidExecution: {
3052
+ weightLimit: string;
3053
+ checkOrigin: string;
3054
+ };
3055
+ };
3056
+ };
3057
+ /**
3058
+ * Lookup302: xcm::v3::Response
3059
+ **/
3060
+ XcmV3Response: {
3061
+ _enum: {
3062
+ Null: string;
3063
+ Assets: string;
3064
+ ExecutionResult: string;
3065
+ Version: string;
3066
+ PalletsInfo: string;
3067
+ DispatchResult: string;
3068
+ };
3069
+ };
3070
+ /**
3071
+ * Lookup304: xcm::v3::PalletInfo
3072
+ **/
3073
+ XcmV3PalletInfo: {
3074
+ index: string;
3075
+ name: string;
3076
+ moduleName: string;
3077
+ major: string;
3078
+ minor: string;
3079
+ patch: string;
3080
+ };
3081
+ /**
3082
+ * Lookup308: xcm::v3::QueryResponseInfo
3083
+ **/
3084
+ XcmV3QueryResponseInfo: {
3085
+ destination: string;
3086
+ queryId: string;
3087
+ maxWeight: string;
3088
+ };
3089
+ /**
3090
+ * Lookup309: xcm::v3::multiasset::MultiAssetFilter
3091
+ **/
3092
+ XcmV3MultiassetMultiAssetFilter: {
3093
+ _enum: {
3094
+ Definite: string;
3095
+ Wild: string;
3096
+ };
3097
+ };
3098
+ /**
3099
+ * Lookup310: xcm::v3::multiasset::WildMultiAsset
3100
+ **/
3101
+ XcmV3MultiassetWildMultiAsset: {
3102
+ _enum: {
3103
+ All: string;
3104
+ AllOf: {
3105
+ id: string;
3106
+ fun: string;
3107
+ };
3108
+ AllCounted: string;
3109
+ AllOfCounted: {
3110
+ id: string;
3111
+ fun: string;
3112
+ count: string;
3113
+ };
3114
+ };
3115
+ };
3116
+ /**
3117
+ * Lookup311: xcm::v3::multiasset::WildFungibility
3118
+ **/
3119
+ XcmV3MultiassetWildFungibility: {
3120
+ _enum: string[];
3121
+ };
3122
+ /**
3123
+ * Lookup323: staging_xcm_executor::traits::asset_transfer::TransferType
3124
+ **/
3125
+ StagingXcmExecutorAssetTransferTransferType: {
3126
+ _enum: {
3127
+ Teleport: string;
3128
+ LocalReserve: string;
3129
+ DestinationReserve: string;
3130
+ RemoteReserve: string;
3131
+ };
3132
+ };
3133
+ /**
3134
+ * Lookup324: xcm::VersionedAssetId
3135
+ **/
3136
+ XcmVersionedAssetId: {
3137
+ _enum: {
3138
+ __Unused0: string;
3139
+ __Unused1: string;
3140
+ __Unused2: string;
3141
+ V3: string;
3142
+ V4: string;
3143
+ };
3144
+ };
3145
+ /**
3146
+ * Lookup325: cumulus_pallet_xcm::pallet::Call<T>
3147
+ **/
3148
+ CumulusPalletXcmCall: string;
3149
+ /**
3150
+ * Lookup326: pallet_message_queue::pallet::Call<T>
3151
+ **/
3152
+ PalletMessageQueueCall: {
3153
+ _enum: {
3154
+ reap_page: {
3155
+ messageOrigin: string;
3156
+ pageIndex: string;
3157
+ };
3158
+ execute_overweight: {
3159
+ messageOrigin: string;
3160
+ page: string;
3161
+ index: string;
3162
+ weightLimit: string;
3163
+ };
3164
+ };
3165
+ };
3166
+ /**
3167
+ * Lookup327: pallet_storage_providers::pallet::Call<T>
3168
+ **/
3169
+ PalletStorageProvidersCall: {
3170
+ _enum: {
3171
+ request_msp_sign_up: {
3172
+ capacity: string;
3173
+ multiaddresses: string;
3174
+ valueProp: string;
3175
+ paymentAccount: string;
3176
+ };
3177
+ request_bsp_sign_up: {
3178
+ capacity: string;
3179
+ multiaddresses: string;
3180
+ paymentAccount: string;
3181
+ };
3182
+ confirm_sign_up: {
3183
+ providerAccount: string;
3184
+ };
3185
+ cancel_sign_up: string;
3186
+ msp_sign_off: string;
3187
+ bsp_sign_off: string;
3188
+ change_capacity: {
3189
+ newCapacity: string;
3190
+ };
3191
+ add_value_prop: {
3192
+ newValueProp: string;
3193
+ };
3194
+ force_msp_sign_up: {
3195
+ who: string;
3196
+ mspId: string;
3197
+ capacity: string;
3198
+ multiaddresses: string;
3199
+ valueProp: string;
3200
+ paymentAccount: string;
3201
+ };
3202
+ force_bsp_sign_up: {
3203
+ who: string;
3204
+ bspId: string;
3205
+ capacity: string;
3206
+ multiaddresses: string;
3207
+ paymentAccount: string;
3208
+ weight: string;
3209
+ };
3210
+ slash: {
3211
+ providerId: string;
3212
+ };
3213
+ };
3214
+ };
3215
+ /**
3216
+ * Lookup328: pallet_file_system::pallet::Call<T>
3217
+ **/
3218
+ PalletFileSystemCall: {
3219
+ _enum: {
3220
+ create_bucket: {
3221
+ mspId: string;
3222
+ name: string;
3223
+ private: string;
3224
+ };
3225
+ request_move_bucket: {
3226
+ bucketId: string;
3227
+ newMspId: string;
3228
+ };
3229
+ msp_respond_move_bucket_request: {
3230
+ bucketId: string;
3231
+ response: string;
3232
+ };
3233
+ update_bucket_privacy: {
3234
+ bucketId: string;
3235
+ private: string;
3236
+ };
3237
+ create_and_associate_collection_with_bucket: {
3238
+ bucketId: string;
3239
+ };
3240
+ issue_storage_request: {
3241
+ _alias: {
3242
+ size_: string;
3243
+ };
3244
+ bucketId: string;
3245
+ location: string;
3246
+ fingerprint: string;
3247
+ size_: string;
3248
+ mspId: string;
3249
+ peerIds: string;
3250
+ };
3251
+ revoke_storage_request: {
3252
+ fileKey: string;
3253
+ };
3254
+ bsp_add_data_server_for_move_bucket_request: {
3255
+ bucketId: string;
3256
+ };
3257
+ msp_respond_storage_requests_multiple_buckets: {
3258
+ fileKeyResponsesInput: string;
3259
+ };
3260
+ bsp_volunteer: {
3261
+ fileKey: string;
3262
+ };
3263
+ bsp_confirm_storing: {
3264
+ nonInclusionForestProof: string;
3265
+ fileKeysAndProofs: string;
3266
+ };
3267
+ bsp_request_stop_storing: {
3268
+ _alias: {
3269
+ size_: string;
3270
+ };
3271
+ fileKey: string;
3272
+ bucketId: string;
3273
+ location: string;
3274
+ owner: string;
3275
+ fingerprint: string;
3276
+ size_: string;
3277
+ canServe: string;
3278
+ inclusionForestProof: string;
3279
+ };
3280
+ bsp_confirm_stop_storing: {
3281
+ fileKey: string;
3282
+ inclusionForestProof: string;
3283
+ };
3284
+ stop_storing_for_insolvent_user: {
3285
+ _alias: {
3286
+ size_: string;
3287
+ };
3288
+ fileKey: string;
3289
+ bucketId: string;
3290
+ location: string;
3291
+ owner: string;
3292
+ fingerprint: string;
3293
+ size_: string;
3294
+ inclusionForestProof: string;
3295
+ };
3296
+ delete_file: {
3297
+ _alias: {
3298
+ size_: string;
3299
+ };
3300
+ bucketId: string;
3301
+ fileKey: string;
3302
+ location: string;
3303
+ size_: string;
3304
+ fingerprint: string;
3305
+ maybeInclusionForestProof: string;
3306
+ };
3307
+ pending_file_deletion_request_submit_proof: {
3308
+ user: string;
3309
+ fileKey: string;
3310
+ bucketId: string;
3311
+ forestProof: string;
3312
+ };
3313
+ set_global_parameters: {
3314
+ replicationTarget: string;
3315
+ tickRangeToMaximumThreshold: string;
3316
+ };
3317
+ };
3318
+ };
3319
+ /**
3320
+ * Lookup329: pallet_file_system::types::BucketMoveRequestResponse
3321
+ **/
3322
+ PalletFileSystemBucketMoveRequestResponse: {
3323
+ _enum: string[];
3324
+ };
3325
+ /**
3326
+ * Lookup332: pallet_file_system::types::MspStorageRequestResponse<T>
3327
+ **/
3328
+ PalletFileSystemMspStorageRequestResponse: {
3329
+ accept: string;
3330
+ reject: string;
3331
+ };
3332
+ /**
3333
+ * Lookup334: pallet_file_system::types::AcceptedStorageRequestParameters<T>
3334
+ **/
3335
+ PalletFileSystemAcceptedStorageRequestParameters: {
3336
+ fileKeysAndProofs: string;
3337
+ nonInclusionForestProof: string;
3338
+ };
3339
+ /**
3340
+ * Lookup341: pallet_proofs_dealer::pallet::Call<T>
3341
+ **/
3342
+ PalletProofsDealerCall: {
3343
+ _enum: {
3344
+ challenge: {
3345
+ key: string;
3346
+ };
3347
+ submit_proof: {
3348
+ proof: string;
3349
+ provider: string;
3350
+ };
3351
+ force_initialise_challenge_cycle: {
3352
+ provider: string;
3353
+ };
3354
+ set_paused: {
3355
+ paused: string;
3356
+ };
3357
+ };
3358
+ };
3359
+ /**
3360
+ * Lookup342: pallet_randomness::pallet::Call<T>
3361
+ **/
3362
+ PalletRandomnessCall: {
3363
+ _enum: string[];
3364
+ };
3365
+ /**
3366
+ * Lookup343: pallet_payment_streams::pallet::Call<T>
3367
+ **/
3368
+ PalletPaymentStreamsCall: {
3369
+ _enum: {
3370
+ create_fixed_rate_payment_stream: {
3371
+ providerId: string;
3372
+ userAccount: string;
3373
+ rate: string;
3374
+ };
3375
+ update_fixed_rate_payment_stream: {
3376
+ providerId: string;
3377
+ userAccount: string;
3378
+ newRate: string;
3379
+ };
3380
+ delete_fixed_rate_payment_stream: {
3381
+ providerId: string;
3382
+ userAccount: string;
3383
+ };
3384
+ create_dynamic_rate_payment_stream: {
3385
+ providerId: string;
3386
+ userAccount: string;
3387
+ amountProvided: string;
3388
+ };
3389
+ update_dynamic_rate_payment_stream: {
3390
+ providerId: string;
3391
+ userAccount: string;
3392
+ newAmountProvided: string;
3393
+ };
3394
+ delete_dynamic_rate_payment_stream: {
3395
+ providerId: string;
3396
+ userAccount: string;
3397
+ };
3398
+ charge_payment_streams: {
3399
+ userAccount: string;
3400
+ };
3401
+ pay_outstanding_debt: string;
3402
+ clear_insolvent_flag: string;
3403
+ };
3404
+ };
3405
+ /**
3406
+ * Lookup344: pallet_bucket_nfts::pallet::Call<T>
3407
+ **/
3408
+ PalletBucketNftsCall: {
3409
+ _enum: {
3410
+ share_access: {
3411
+ recipient: string;
3412
+ bucket: string;
3413
+ itemId: string;
3414
+ readAccessRegex: string;
3415
+ };
3416
+ update_read_access: {
3417
+ bucket: string;
3418
+ itemId: string;
3419
+ readAccessRegex: string;
3420
+ };
3421
+ };
3422
+ };
3423
+ /**
3424
+ * Lookup346: pallet_nfts::pallet::Call<T, I>
3425
+ **/
3426
+ PalletNftsCall: {
3427
+ _enum: {
3428
+ create: {
3429
+ admin: string;
3430
+ config: string;
3431
+ };
3432
+ force_create: {
3433
+ owner: string;
3434
+ config: string;
3435
+ };
3436
+ destroy: {
3437
+ collection: string;
3438
+ witness: string;
3439
+ };
3440
+ mint: {
3441
+ collection: string;
3442
+ item: string;
3443
+ mintTo: string;
3444
+ witnessData: string;
3445
+ };
3446
+ force_mint: {
3447
+ collection: string;
3448
+ item: string;
3449
+ mintTo: string;
3450
+ itemConfig: string;
3451
+ };
3452
+ burn: {
3453
+ collection: string;
3454
+ item: string;
3455
+ };
3456
+ transfer: {
3457
+ collection: string;
3458
+ item: string;
3459
+ dest: string;
3460
+ };
3461
+ redeposit: {
3462
+ collection: string;
3463
+ items: string;
3464
+ };
3465
+ lock_item_transfer: {
3466
+ collection: string;
3467
+ item: string;
3468
+ };
3469
+ unlock_item_transfer: {
3470
+ collection: string;
3471
+ item: string;
3472
+ };
3473
+ lock_collection: {
3474
+ collection: string;
3475
+ lockSettings: string;
3476
+ };
3477
+ transfer_ownership: {
3478
+ collection: string;
3479
+ newOwner: string;
3480
+ };
3481
+ set_team: {
3482
+ collection: string;
3483
+ issuer: string;
3484
+ admin: string;
3485
+ freezer: string;
3486
+ };
3487
+ force_collection_owner: {
3488
+ collection: string;
3489
+ owner: string;
3490
+ };
3491
+ force_collection_config: {
3492
+ collection: string;
3493
+ config: string;
3494
+ };
3495
+ approve_transfer: {
3496
+ collection: string;
3497
+ item: string;
3498
+ delegate: string;
3499
+ maybeDeadline: string;
3500
+ };
3501
+ cancel_approval: {
3502
+ collection: string;
3503
+ item: string;
3504
+ delegate: string;
3505
+ };
3506
+ clear_all_transfer_approvals: {
3507
+ collection: string;
3508
+ item: string;
3509
+ };
3510
+ lock_item_properties: {
3511
+ collection: string;
3512
+ item: string;
3513
+ lockMetadata: string;
3514
+ lockAttributes: string;
3515
+ };
3516
+ set_attribute: {
3517
+ collection: string;
3518
+ maybeItem: string;
3519
+ namespace: string;
3520
+ key: string;
3521
+ value: string;
3522
+ };
3523
+ force_set_attribute: {
3524
+ setAs: string;
3525
+ collection: string;
3526
+ maybeItem: string;
3527
+ namespace: string;
3528
+ key: string;
3529
+ value: string;
3530
+ };
3531
+ clear_attribute: {
3532
+ collection: string;
3533
+ maybeItem: string;
3534
+ namespace: string;
3535
+ key: string;
3536
+ };
3537
+ approve_item_attributes: {
3538
+ collection: string;
3539
+ item: string;
3540
+ delegate: string;
3541
+ };
3542
+ cancel_item_attributes_approval: {
3543
+ collection: string;
3544
+ item: string;
3545
+ delegate: string;
3546
+ witness: string;
3547
+ };
3548
+ set_metadata: {
3549
+ collection: string;
3550
+ item: string;
3551
+ data: string;
3552
+ };
3553
+ clear_metadata: {
3554
+ collection: string;
3555
+ item: string;
3556
+ };
3557
+ set_collection_metadata: {
3558
+ collection: string;
3559
+ data: string;
3560
+ };
3561
+ clear_collection_metadata: {
3562
+ collection: string;
3563
+ };
3564
+ set_accept_ownership: {
3565
+ maybeCollection: string;
3566
+ };
3567
+ set_collection_max_supply: {
3568
+ collection: string;
3569
+ maxSupply: string;
3570
+ };
3571
+ update_mint_settings: {
3572
+ collection: string;
3573
+ mintSettings: string;
3574
+ };
3575
+ set_price: {
3576
+ collection: string;
3577
+ item: string;
3578
+ price: string;
3579
+ whitelistedBuyer: string;
3580
+ };
3581
+ buy_item: {
3582
+ collection: string;
3583
+ item: string;
3584
+ bidPrice: string;
3585
+ };
3586
+ pay_tips: {
3587
+ tips: string;
3588
+ };
3589
+ create_swap: {
3590
+ offeredCollection: string;
3591
+ offeredItem: string;
3592
+ desiredCollection: string;
3593
+ maybeDesiredItem: string;
3594
+ maybePrice: string;
3595
+ duration: string;
3596
+ };
3597
+ cancel_swap: {
3598
+ offeredCollection: string;
3599
+ offeredItem: string;
3600
+ };
3601
+ claim_swap: {
3602
+ sendCollection: string;
3603
+ sendItem: string;
3604
+ receiveCollection: string;
3605
+ receiveItem: string;
3606
+ witnessPrice: string;
3607
+ };
3608
+ mint_pre_signed: {
3609
+ mintData: string;
3610
+ signature: string;
3611
+ signer: string;
3612
+ };
3613
+ set_attributes_pre_signed: {
3614
+ data: string;
3615
+ signature: string;
3616
+ signer: string;
3617
+ };
3618
+ };
3619
+ };
3620
+ /**
3621
+ * Lookup347: pallet_nfts::types::CollectionConfig<Price, BlockNumber, CollectionId>
3622
+ **/
3623
+ PalletNftsCollectionConfig: {
3624
+ settings: string;
3625
+ maxSupply: string;
3626
+ mintSettings: string;
3627
+ };
3628
+ /**
3629
+ * Lookup349: pallet_nfts::types::CollectionSetting
3630
+ **/
3631
+ PalletNftsCollectionSetting: {
3632
+ _enum: string[];
3633
+ };
3634
+ /**
3635
+ * Lookup350: pallet_nfts::types::MintSettings<Price, BlockNumber, CollectionId>
3636
+ **/
3637
+ PalletNftsMintSettings: {
3638
+ mintType: string;
3639
+ price: string;
3640
+ startBlock: string;
3641
+ endBlock: string;
3642
+ defaultItemSettings: string;
3643
+ };
3644
+ /**
3645
+ * Lookup351: pallet_nfts::types::MintType<CollectionId>
3646
+ **/
3647
+ PalletNftsMintType: {
3648
+ _enum: {
3649
+ Issuer: string;
3650
+ Public: string;
3651
+ HolderOf: string;
3652
+ };
3653
+ };
3654
+ /**
3655
+ * Lookup354: pallet_nfts::types::ItemSetting
3656
+ **/
3657
+ PalletNftsItemSetting: {
3658
+ _enum: string[];
3659
+ };
3660
+ /**
3661
+ * Lookup355: pallet_nfts::types::DestroyWitness
3662
+ **/
3663
+ PalletNftsDestroyWitness: {
3664
+ itemMetadatas: string;
3665
+ itemConfigs: string;
3666
+ attributes: string;
3667
+ };
3668
+ /**
3669
+ * Lookup357: pallet_nfts::types::MintWitness<ItemId, Balance>
3670
+ **/
3671
+ PalletNftsMintWitness: {
3672
+ ownedItem: string;
3673
+ mintPrice: string;
3674
+ };
3675
+ /**
3676
+ * Lookup358: pallet_nfts::types::ItemConfig
3677
+ **/
3678
+ PalletNftsItemConfig: {
3679
+ settings: string;
3680
+ };
3681
+ /**
3682
+ * Lookup360: pallet_nfts::types::CancelAttributesApprovalWitness
3683
+ **/
3684
+ PalletNftsCancelAttributesApprovalWitness: {
3685
+ accountAttributes: string;
3686
+ };
3687
+ /**
3688
+ * Lookup362: pallet_nfts::types::ItemTip<CollectionId, ItemId, sp_core::crypto::AccountId32, Amount>
3689
+ **/
3690
+ PalletNftsItemTip: {
3691
+ collection: string;
3692
+ item: string;
3693
+ receiver: string;
3694
+ amount: string;
3695
+ };
3696
+ /**
3697
+ * Lookup364: pallet_nfts::types::PreSignedMint<CollectionId, ItemId, sp_core::crypto::AccountId32, Deadline, Balance>
3698
+ **/
3699
+ PalletNftsPreSignedMint: {
3700
+ collection: string;
3701
+ item: string;
3702
+ attributes: string;
3703
+ metadata: string;
3704
+ onlyAccount: string;
3705
+ deadline: string;
3706
+ mintPrice: string;
3707
+ };
3708
+ /**
3709
+ * Lookup365: sp_runtime::MultiSignature
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>
3720
+ **/
3721
+ PalletNftsPreSignedAttributes: {
3722
+ collection: string;
3723
+ item: string;
3724
+ attributes: string;
3725
+ namespace: string;
3726
+ deadline: string;
3727
+ };
3728
+ /**
3729
+ * Lookup369: pallet_parameters::pallet::Call<T>
3730
+ **/
3731
+ PalletParametersCall: {
3732
+ _enum: {
3733
+ set_parameter: {
3734
+ keyValue: string;
3735
+ };
3736
+ };
3737
+ };
3738
+ /**
3739
+ * Lookup370: storage_hub_runtime::configs::runtime_params::RuntimeParameters
3740
+ **/
3741
+ StorageHubRuntimeConfigsRuntimeParamsRuntimeParameters: {
3742
+ _enum: {
3743
+ RuntimeConfig: string;
3744
+ };
3745
+ };
3746
+ /**
3747
+ * Lookup371: storage_hub_runtime::configs::runtime_params::dynamic_params::runtime_config::Parameters
3748
+ **/
3749
+ StorageHubRuntimeConfigsRuntimeParamsDynamicParamsRuntimeConfigParameters: {
3750
+ _enum: {
3751
+ SlashAmountPerMaxFileSize: string;
3752
+ StakeToChallengePeriod: string;
3753
+ CheckpointChallengePeriod: string;
3754
+ MinChallengePeriod: string;
3755
+ };
3756
+ };
3757
+ /**
3758
+ * Lookup372: pallet_sudo::pallet::Error<T>
3759
+ **/
3760
+ PalletSudoError: {
3761
+ _enum: string[];
3762
+ };
3763
+ /**
3764
+ * Lookup375: pallet_collator_selection::pallet::CandidateInfo<sp_core::crypto::AccountId32, Balance>
3765
+ **/
3766
+ PalletCollatorSelectionCandidateInfo: {
3767
+ who: string;
3768
+ deposit: string;
3769
+ };
3770
+ /**
3771
+ * Lookup377: pallet_collator_selection::pallet::Error<T>
3772
+ **/
3773
+ PalletCollatorSelectionError: {
3774
+ _enum: string[];
3775
+ };
3776
+ /**
3777
+ * Lookup381: sp_core::crypto::KeyTypeId
3778
+ **/
3779
+ SpCoreCryptoKeyTypeId: string;
3780
+ /**
3781
+ * Lookup382: pallet_session::pallet::Error<T>
3782
+ **/
3783
+ PalletSessionError: {
3784
+ _enum: string[];
3785
+ };
3786
+ /**
3787
+ * Lookup391: cumulus_pallet_xcmp_queue::OutboundChannelDetails
3788
+ **/
3789
+ CumulusPalletXcmpQueueOutboundChannelDetails: {
3790
+ recipient: string;
3791
+ state: string;
3792
+ signalsExist: string;
3793
+ firstIndex: string;
3794
+ lastIndex: string;
3795
+ };
3796
+ /**
3797
+ * Lookup392: cumulus_pallet_xcmp_queue::OutboundState
3798
+ **/
3799
+ CumulusPalletXcmpQueueOutboundState: {
3800
+ _enum: string[];
3801
+ };
3802
+ /**
3803
+ * Lookup396: cumulus_pallet_xcmp_queue::QueueConfigData
3804
+ **/
3805
+ CumulusPalletXcmpQueueQueueConfigData: {
3806
+ suspendThreshold: string;
3807
+ dropThreshold: string;
3808
+ resumeThreshold: string;
3809
+ };
3810
+ /**
3811
+ * Lookup397: cumulus_pallet_xcmp_queue::pallet::Error<T>
3812
+ **/
3813
+ CumulusPalletXcmpQueueError: {
3814
+ _enum: string[];
3815
+ };
3816
+ /**
3817
+ * Lookup398: pallet_xcm::pallet::QueryStatus<BlockNumber>
3818
+ **/
3819
+ PalletXcmQueryStatus: {
3820
+ _enum: {
3821
+ Pending: {
3822
+ responder: string;
3823
+ maybeMatchQuerier: string;
3824
+ maybeNotify: string;
3825
+ timeout: string;
3826
+ };
3827
+ VersionNotifier: {
3828
+ origin: string;
3829
+ isActive: string;
3830
+ };
3831
+ Ready: {
3832
+ response: string;
3833
+ at: string;
3834
+ };
3835
+ };
3836
+ };
3837
+ /**
3838
+ * Lookup402: xcm::VersionedResponse
3839
+ **/
3840
+ XcmVersionedResponse: {
3841
+ _enum: {
3842
+ __Unused0: string;
3843
+ __Unused1: string;
3844
+ V2: string;
3845
+ V3: string;
3846
+ V4: string;
3847
+ };
3848
+ };
3849
+ /**
3850
+ * Lookup408: pallet_xcm::pallet::VersionMigrationStage
3851
+ **/
3852
+ PalletXcmVersionMigrationStage: {
3853
+ _enum: {
3854
+ MigrateSupportedVersion: string;
3855
+ MigrateVersionNotifiers: string;
3856
+ NotifyCurrentTargets: string;
3857
+ MigrateAndNotifyOldTargets: string;
3858
+ };
3859
+ };
3860
+ /**
3861
+ * Lookup411: pallet_xcm::pallet::RemoteLockedFungibleRecord<ConsumerIdentifier, MaxConsumers>
3862
+ **/
3863
+ PalletXcmRemoteLockedFungibleRecord: {
3864
+ amount: string;
3865
+ owner: string;
3866
+ locker: string;
3867
+ consumers: string;
3868
+ };
3869
+ /**
3870
+ * Lookup418: pallet_xcm::pallet::Error<T>
3871
+ **/
3872
+ PalletXcmError: {
3873
+ _enum: string[];
3874
+ };
3875
+ /**
3876
+ * Lookup419: pallet_message_queue::BookState<cumulus_primitives_core::AggregateMessageOrigin>
3877
+ **/
3878
+ PalletMessageQueueBookState: {
3879
+ _alias: {
3880
+ size_: string;
3881
+ };
3882
+ begin: string;
3883
+ end: string;
3884
+ count: string;
3885
+ readyNeighbours: string;
3886
+ messageCount: string;
3887
+ size_: string;
3888
+ };
3889
+ /**
3890
+ * Lookup421: pallet_message_queue::Neighbours<cumulus_primitives_core::AggregateMessageOrigin>
3891
+ **/
3892
+ PalletMessageQueueNeighbours: {
3893
+ prev: string;
3894
+ next: string;
3895
+ };
3896
+ /**
3897
+ * Lookup423: pallet_message_queue::Page<Size, HeapSize>
3898
+ **/
3899
+ PalletMessageQueuePage: {
3900
+ remaining: string;
3901
+ remainingSize: string;
3902
+ firstIndex: string;
3903
+ first: string;
3904
+ last: string;
3905
+ heap: string;
3906
+ };
3907
+ /**
3908
+ * Lookup425: pallet_message_queue::pallet::Error<T>
3909
+ **/
3910
+ PalletMessageQueueError: {
3911
+ _enum: string[];
3912
+ };
3913
+ /**
3914
+ * Lookup427: pallet_storage_providers::types::StorageProvider<T>
3915
+ **/
3916
+ PalletStorageProvidersStorageProvider: {
3917
+ _enum: {
3918
+ BackupStorageProvider: string;
3919
+ MainStorageProvider: string;
3920
+ };
3921
+ };
3922
+ /**
3923
+ * Lookup428: pallet_storage_providers::types::BackupStorageProvider<T>
3924
+ **/
3925
+ PalletStorageProvidersBackupStorageProvider: {
3926
+ capacity: string;
3927
+ capacityUsed: string;
3928
+ multiaddresses: string;
3929
+ root: string;
3930
+ lastCapacityChange: string;
3931
+ ownerAccount: string;
3932
+ paymentAccount: string;
3933
+ reputationWeight: string;
3934
+ };
3935
+ /**
3936
+ * Lookup429: pallet_storage_providers::types::MainStorageProvider<T>
3937
+ **/
3938
+ PalletStorageProvidersMainStorageProvider: {
3939
+ buckets: string;
3940
+ capacity: string;
3941
+ capacityUsed: string;
3942
+ multiaddresses: string;
3943
+ valueProp: string;
3944
+ lastCapacityChange: string;
3945
+ ownerAccount: string;
3946
+ paymentAccount: string;
3947
+ };
3948
+ /**
3949
+ * Lookup431: pallet_storage_providers::types::Bucket<T>
3950
+ **/
3951
+ PalletStorageProvidersBucket: {
3952
+ _alias: {
3953
+ size_: string;
3954
+ };
3955
+ root: string;
3956
+ userId: string;
3957
+ mspId: string;
3958
+ private: string;
3959
+ readAccessGroupId: string;
3960
+ size_: string;
3961
+ };
3962
+ /**
3963
+ * Lookup434: pallet_storage_providers::pallet::Error<T>
3964
+ **/
3965
+ PalletStorageProvidersError: {
3966
+ _enum: string[];
3967
+ };
3968
+ /**
3969
+ * Lookup435: pallet_file_system::types::StorageRequestMetadata<T>
3970
+ **/
3971
+ PalletFileSystemStorageRequestMetadata: {
3972
+ _alias: {
3973
+ size_: string;
3974
+ };
3975
+ requestedAt: string;
3976
+ owner: string;
3977
+ bucketId: string;
3978
+ location: string;
3979
+ fingerprint: string;
3980
+ size_: string;
3981
+ msp: string;
3982
+ userPeerIds: string;
3983
+ dataServerSps: string;
3984
+ bspsRequired: string;
3985
+ bspsConfirmed: string;
3986
+ bspsVolunteered: string;
3987
+ };
3988
+ /**
3989
+ * Lookup440: pallet_file_system::types::StorageRequestBspsMetadata<T>
3990
+ **/
3991
+ PalletFileSystemStorageRequestBspsMetadata: {
3992
+ confirmed: string;
3993
+ };
3994
+ /**
3995
+ * Lookup449: pallet_file_system::types::MoveBucketRequestMetadata<T>
3996
+ **/
3997
+ PalletFileSystemMoveBucketRequestMetadata: {
3998
+ requester: string;
3999
+ };
4000
+ /**
4001
+ * Lookup450: pallet_file_system::pallet::Error<T>
4002
+ **/
4003
+ PalletFileSystemError: {
4004
+ _enum: string[];
4005
+ };
4006
+ /**
4007
+ * Lookup457: pallet_proofs_dealer::pallet::Error<T>
4008
+ **/
4009
+ PalletProofsDealerError: {
4010
+ _enum: string[];
4011
+ };
4012
+ /**
4013
+ * Lookup460: pallet_payment_streams::types::FixedRatePaymentStream<T>
4014
+ **/
4015
+ PalletPaymentStreamsFixedRatePaymentStream: {
4016
+ rate: string;
4017
+ lastChargedTick: string;
4018
+ userDeposit: string;
4019
+ outOfFundsTick: string;
4020
+ };
4021
+ /**
4022
+ * Lookup461: pallet_payment_streams::types::DynamicRatePaymentStream<T>
4023
+ **/
4024
+ PalletPaymentStreamsDynamicRatePaymentStream: {
4025
+ amountProvided: string;
4026
+ priceIndexWhenLastCharged: string;
4027
+ userDeposit: string;
4028
+ outOfFundsTick: string;
4029
+ };
4030
+ /**
4031
+ * Lookup462: pallet_payment_streams::types::ProviderLastChargeableInfo<T>
4032
+ **/
4033
+ PalletPaymentStreamsProviderLastChargeableInfo: {
4034
+ lastChargeableTick: string;
4035
+ priceIndex: string;
4036
+ };
4037
+ /**
4038
+ * Lookup463: pallet_payment_streams::pallet::Error<T>
4039
+ **/
4040
+ PalletPaymentStreamsError: {
4041
+ _enum: string[];
4042
+ };
4043
+ /**
4044
+ * Lookup464: pallet_bucket_nfts::pallet::Error<T>
4045
+ **/
4046
+ PalletBucketNftsError: {
4047
+ _enum: string[];
4048
+ };
4049
+ /**
4050
+ * Lookup465: pallet_nfts::types::CollectionDetails<sp_core::crypto::AccountId32, DepositBalance>
4051
+ **/
4052
+ PalletNftsCollectionDetails: {
4053
+ owner: string;
4054
+ ownerDeposit: string;
4055
+ items: string;
4056
+ itemMetadatas: string;
4057
+ itemConfigs: string;
4058
+ attributes: string;
4059
+ };
4060
+ /**
4061
+ * Lookup470: pallet_nfts::types::CollectionRole
4062
+ **/
4063
+ PalletNftsCollectionRole: {
4064
+ _enum: string[];
4065
+ };
4066
+ /**
4067
+ * Lookup471: 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
+ **/
4069
+ PalletNftsItemDetails: {
4070
+ owner: string;
4071
+ approvals: string;
4072
+ deposit: string;
4073
+ };
4074
+ /**
4075
+ * Lookup472: pallet_nfts::types::ItemDeposit<DepositBalance, sp_core::crypto::AccountId32>
4076
+ **/
4077
+ PalletNftsItemDeposit: {
4078
+ account: string;
4079
+ amount: string;
4080
+ };
4081
+ /**
4082
+ * Lookup477: pallet_nfts::types::CollectionMetadata<Deposit, StringLimit>
4083
+ **/
4084
+ PalletNftsCollectionMetadata: {
4085
+ deposit: string;
4086
+ data: string;
4087
+ };
4088
+ /**
4089
+ * Lookup478: pallet_nfts::types::ItemMetadata<pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>, StringLimit>
4090
+ **/
4091
+ PalletNftsItemMetadata: {
4092
+ deposit: string;
4093
+ data: string;
4094
+ };
4095
+ /**
4096
+ * Lookup479: pallet_nfts::types::ItemMetadataDeposit<DepositBalance, sp_core::crypto::AccountId32>
4097
+ **/
4098
+ PalletNftsItemMetadataDeposit: {
4099
+ account: string;
4100
+ amount: string;
4101
+ };
4102
+ /**
4103
+ * Lookup482: pallet_nfts::types::AttributeDeposit<DepositBalance, sp_core::crypto::AccountId32>
4104
+ **/
4105
+ PalletNftsAttributeDeposit: {
4106
+ account: string;
4107
+ amount: string;
4108
+ };
4109
+ /**
4110
+ * Lookup486: pallet_nfts::types::PendingSwap<CollectionId, ItemId, pallet_nfts::types::PriceWithDirection<Amount>, Deadline>
4111
+ **/
4112
+ PalletNftsPendingSwap: {
4113
+ desiredCollection: string;
4114
+ desiredItem: string;
4115
+ price: string;
4116
+ deadline: string;
4117
+ };
4118
+ /**
4119
+ * Lookup488: pallet_nfts::types::PalletFeature
4120
+ **/
4121
+ PalletNftsPalletFeature: {
4122
+ _enum: string[];
4123
+ };
4124
+ /**
4125
+ * Lookup489: pallet_nfts::pallet::Error<T, I>
4126
+ **/
4127
+ PalletNftsError: {
4128
+ _enum: string[];
4129
+ };
4130
+ /**
4131
+ * Lookup492: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender<T>
4132
+ **/
4133
+ FrameSystemExtensionsCheckNonZeroSender: string;
4134
+ /**
4135
+ * Lookup493: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
4136
+ **/
4137
+ FrameSystemExtensionsCheckSpecVersion: string;
4138
+ /**
4139
+ * Lookup494: frame_system::extensions::check_tx_version::CheckTxVersion<T>
4140
+ **/
4141
+ FrameSystemExtensionsCheckTxVersion: string;
4142
+ /**
4143
+ * Lookup495: frame_system::extensions::check_genesis::CheckGenesis<T>
4144
+ **/
4145
+ FrameSystemExtensionsCheckGenesis: string;
4146
+ /**
4147
+ * Lookup498: frame_system::extensions::check_nonce::CheckNonce<T>
4148
+ **/
4149
+ FrameSystemExtensionsCheckNonce: string;
4150
+ /**
4151
+ * Lookup499: frame_system::extensions::check_weight::CheckWeight<T>
4152
+ **/
4153
+ FrameSystemExtensionsCheckWeight: string;
4154
+ /**
4155
+ * Lookup500: pallet_transaction_payment::ChargeTransactionPayment<T>
4156
+ **/
4157
+ PalletTransactionPaymentChargeTransactionPayment: string;
4158
+ /**
4159
+ * Lookup501: cumulus_primitives_storage_weight_reclaim::StorageWeightReclaim<T>
4160
+ **/
4161
+ CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim: string;
4162
+ /**
4163
+ * Lookup502: frame_metadata_hash_extension::CheckMetadataHash<T>
4164
+ **/
4165
+ FrameMetadataHashExtensionCheckMetadataHash: {
4166
+ mode: string;
4167
+ };
4168
+ /**
4169
+ * Lookup503: frame_metadata_hash_extension::Mode
4170
+ **/
4171
+ FrameMetadataHashExtensionMode: {
4172
+ _enum: string[];
4173
+ };
4174
+ /**
4175
+ * Lookup504: storage_hub_runtime::Runtime
4176
+ **/
4177
+ StorageHubRuntimeRuntime: string;
4178
+ };
4179
+ export default _default;