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