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