@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,2508 @@
1
+ // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2
+ /* eslint-disable */
3
+
4
+ // import type lookup before we augment - in some environments
5
+ // this is required to allow for ambient/previous definitions
6
+ import "@polkadot/types/types/registry";
7
+
8
+ import type { Data, StorageKey } from "@polkadot/types";
9
+ import type {
10
+ BitVec,
11
+ Bool,
12
+ Bytes,
13
+ F32,
14
+ F64,
15
+ I128,
16
+ I16,
17
+ I256,
18
+ I32,
19
+ I64,
20
+ I8,
21
+ ISize,
22
+ Json,
23
+ Null,
24
+ OptionBool,
25
+ Raw,
26
+ Text,
27
+ Type,
28
+ U128,
29
+ U16,
30
+ U256,
31
+ U32,
32
+ U64,
33
+ U8,
34
+ USize,
35
+ bool,
36
+ f32,
37
+ f64,
38
+ i128,
39
+ i16,
40
+ i256,
41
+ i32,
42
+ i64,
43
+ i8,
44
+ isize,
45
+ u128,
46
+ u16,
47
+ u256,
48
+ u32,
49
+ u64,
50
+ u8,
51
+ usize
52
+ } from "@polkadot/types-codec";
53
+ import type { TAssetConversion } from "@polkadot/types/interfaces/assetConversion";
54
+ import type {
55
+ AssetApproval,
56
+ AssetApprovalKey,
57
+ AssetBalance,
58
+ AssetDestroyWitness,
59
+ AssetDetails,
60
+ AssetMetadata,
61
+ TAssetBalance,
62
+ TAssetDepositBalance
63
+ } from "@polkadot/types/interfaces/assets";
64
+ import type {
65
+ BlockAttestations,
66
+ IncludedBlocks,
67
+ MoreAttestations
68
+ } from "@polkadot/types/interfaces/attestations";
69
+ import type { RawAuraPreDigest } from "@polkadot/types/interfaces/aura";
70
+ import type { ExtrinsicOrHash, ExtrinsicStatus } from "@polkadot/types/interfaces/author";
71
+ import type { UncleEntryItem } from "@polkadot/types/interfaces/authorship";
72
+ import type {
73
+ AllowedSlots,
74
+ BabeAuthorityWeight,
75
+ BabeBlockWeight,
76
+ BabeEpochConfiguration,
77
+ BabeEquivocationProof,
78
+ BabeGenesisConfiguration,
79
+ BabeGenesisConfigurationV1,
80
+ BabeWeight,
81
+ Epoch,
82
+ EpochAuthorship,
83
+ MaybeRandomness,
84
+ MaybeVrf,
85
+ NextConfigDescriptor,
86
+ NextConfigDescriptorV1,
87
+ OpaqueKeyOwnershipProof,
88
+ Randomness,
89
+ RawBabePreDigest,
90
+ RawBabePreDigestCompat,
91
+ RawBabePreDigestPrimary,
92
+ RawBabePreDigestPrimaryTo159,
93
+ RawBabePreDigestSecondaryPlain,
94
+ RawBabePreDigestSecondaryTo159,
95
+ RawBabePreDigestSecondaryVRF,
96
+ RawBabePreDigestTo159,
97
+ SlotNumber,
98
+ VrfData,
99
+ VrfOutput,
100
+ VrfProof
101
+ } from "@polkadot/types/interfaces/babe";
102
+ import type {
103
+ AccountData,
104
+ BalanceLock,
105
+ BalanceLockTo212,
106
+ BalanceStatus,
107
+ Reasons,
108
+ ReserveData,
109
+ ReserveIdentifier,
110
+ VestingSchedule,
111
+ WithdrawReasons
112
+ } from "@polkadot/types/interfaces/balances";
113
+ import type {
114
+ BeefyAuthoritySet,
115
+ BeefyCommitment,
116
+ BeefyCompactSignedCommitment,
117
+ BeefyEquivocationProof,
118
+ BeefyId,
119
+ BeefyNextAuthoritySet,
120
+ BeefyPayload,
121
+ BeefyPayloadId,
122
+ BeefySignedCommitment,
123
+ BeefyVersionedFinalityProof,
124
+ BeefyVoteMessage,
125
+ MmrRootHash,
126
+ ValidatorSet,
127
+ ValidatorSetId
128
+ } from "@polkadot/types/interfaces/beefy";
129
+ import type {
130
+ BenchmarkBatch,
131
+ BenchmarkConfig,
132
+ BenchmarkList,
133
+ BenchmarkMetadata,
134
+ BenchmarkParameter,
135
+ BenchmarkResult
136
+ } from "@polkadot/types/interfaces/benchmark";
137
+ import type {
138
+ CheckInherentsResult,
139
+ InherentData,
140
+ InherentIdentifier
141
+ } from "@polkadot/types/interfaces/blockbuilder";
142
+ import type {
143
+ BridgeMessageId,
144
+ BridgedBlockHash,
145
+ BridgedBlockNumber,
146
+ BridgedHeader,
147
+ CallOrigin,
148
+ ChainId,
149
+ DeliveredMessages,
150
+ DispatchFeePayment,
151
+ InboundLaneData,
152
+ InboundRelayer,
153
+ InitializationData,
154
+ LaneId,
155
+ MessageData,
156
+ MessageKey,
157
+ MessageNonce,
158
+ MessagesDeliveryProofOf,
159
+ MessagesProofOf,
160
+ OperatingMode,
161
+ OutboundLaneData,
162
+ OutboundMessageFee,
163
+ OutboundPayload,
164
+ Parameter,
165
+ RelayerId,
166
+ UnrewardedRelayer,
167
+ UnrewardedRelayersState
168
+ } from "@polkadot/types/interfaces/bridges";
169
+ import type { BlockHash } from "@polkadot/types/interfaces/chain";
170
+ import type { PrefixedStorageKey } from "@polkadot/types/interfaces/childstate";
171
+ import type { StatementKind } from "@polkadot/types/interfaces/claims";
172
+ import type {
173
+ CollectiveOrigin,
174
+ MemberCount,
175
+ ProposalIndex,
176
+ Votes,
177
+ VotesTo230
178
+ } from "@polkadot/types/interfaces/collective";
179
+ import type { AuthorityId, RawVRFOutput } from "@polkadot/types/interfaces/consensus";
180
+ import type {
181
+ AliveContractInfo,
182
+ CodeHash,
183
+ CodeSource,
184
+ CodeUploadRequest,
185
+ CodeUploadResult,
186
+ CodeUploadResultValue,
187
+ ContractCallFlags,
188
+ ContractCallRequest,
189
+ ContractExecResult,
190
+ ContractExecResultOk,
191
+ ContractExecResultResult,
192
+ ContractExecResultSuccessTo255,
193
+ ContractExecResultSuccessTo260,
194
+ ContractExecResultTo255,
195
+ ContractExecResultTo260,
196
+ ContractExecResultTo267,
197
+ ContractExecResultU64,
198
+ ContractInfo,
199
+ ContractInstantiateResult,
200
+ ContractInstantiateResultTo267,
201
+ ContractInstantiateResultTo299,
202
+ ContractInstantiateResultU64,
203
+ ContractReturnFlags,
204
+ ContractStorageKey,
205
+ DeletedContract,
206
+ ExecReturnValue,
207
+ Gas,
208
+ HostFnWeights,
209
+ HostFnWeightsTo264,
210
+ InstantiateRequest,
211
+ InstantiateRequestV1,
212
+ InstantiateRequestV2,
213
+ InstantiateReturnValue,
214
+ InstantiateReturnValueOk,
215
+ InstantiateReturnValueTo267,
216
+ InstructionWeights,
217
+ Limits,
218
+ LimitsTo264,
219
+ PrefabWasmModule,
220
+ RentProjection,
221
+ Schedule,
222
+ ScheduleTo212,
223
+ ScheduleTo258,
224
+ ScheduleTo264,
225
+ SeedOf,
226
+ StorageDeposit,
227
+ TombstoneContractInfo,
228
+ TrieId
229
+ } from "@polkadot/types/interfaces/contracts";
230
+ import type {
231
+ ContractConstructorSpecLatest,
232
+ ContractConstructorSpecV0,
233
+ ContractConstructorSpecV1,
234
+ ContractConstructorSpecV2,
235
+ ContractConstructorSpecV3,
236
+ ContractConstructorSpecV4,
237
+ ContractContractSpecV0,
238
+ ContractContractSpecV1,
239
+ ContractContractSpecV2,
240
+ ContractContractSpecV3,
241
+ ContractContractSpecV4,
242
+ ContractContractSpecV5,
243
+ ContractCryptoHasher,
244
+ ContractDiscriminant,
245
+ ContractDisplayName,
246
+ ContractEnvironmentV4,
247
+ ContractEventParamSpecLatest,
248
+ ContractEventParamSpecV0,
249
+ ContractEventParamSpecV2,
250
+ ContractEventSpecLatest,
251
+ ContractEventSpecV0,
252
+ ContractEventSpecV1,
253
+ ContractEventSpecV2,
254
+ ContractEventSpecV3,
255
+ ContractLayoutArray,
256
+ ContractLayoutCell,
257
+ ContractLayoutEnum,
258
+ ContractLayoutHash,
259
+ ContractLayoutHashingStrategy,
260
+ ContractLayoutKey,
261
+ ContractLayoutStruct,
262
+ ContractLayoutStructField,
263
+ ContractMessageParamSpecLatest,
264
+ ContractMessageParamSpecV0,
265
+ ContractMessageParamSpecV2,
266
+ ContractMessageSpecLatest,
267
+ ContractMessageSpecV0,
268
+ ContractMessageSpecV1,
269
+ ContractMessageSpecV2,
270
+ ContractMessageSpecV3,
271
+ ContractMetadata,
272
+ ContractMetadataLatest,
273
+ ContractMetadataV0,
274
+ ContractMetadataV1,
275
+ ContractMetadataV2,
276
+ ContractMetadataV3,
277
+ ContractMetadataV4,
278
+ ContractMetadataV5,
279
+ ContractProject,
280
+ ContractProjectContract,
281
+ ContractProjectInfo,
282
+ ContractProjectSource,
283
+ ContractProjectV0,
284
+ ContractSelector,
285
+ ContractStorageLayout,
286
+ ContractTypeSpec
287
+ } from "@polkadot/types/interfaces/contractsAbi";
288
+ import type {
289
+ FundIndex,
290
+ FundInfo,
291
+ LastContribution,
292
+ TrieIndex
293
+ } from "@polkadot/types/interfaces/crowdloan";
294
+ import type {
295
+ CollationInfo,
296
+ CollationInfoV1,
297
+ ConfigData,
298
+ MessageId,
299
+ OverweightIndex,
300
+ PageCounter,
301
+ PageIndexData
302
+ } from "@polkadot/types/interfaces/cumulus";
303
+ import type {
304
+ AccountVote,
305
+ AccountVoteSplit,
306
+ AccountVoteStandard,
307
+ Conviction,
308
+ Delegations,
309
+ PreimageStatus,
310
+ PreimageStatusAvailable,
311
+ PriorLock,
312
+ PropIndex,
313
+ Proposal,
314
+ ProxyState,
315
+ ReferendumIndex,
316
+ ReferendumInfo,
317
+ ReferendumInfoFinished,
318
+ ReferendumInfoTo239,
319
+ ReferendumStatus,
320
+ Tally,
321
+ Voting,
322
+ VotingDelegating,
323
+ VotingDirect,
324
+ VotingDirectVote
325
+ } from "@polkadot/types/interfaces/democracy";
326
+ import type { BlockStats } from "@polkadot/types/interfaces/dev";
327
+ import type {
328
+ ApprovalFlag,
329
+ DefunctVoter,
330
+ Renouncing,
331
+ SetIndex,
332
+ Vote,
333
+ VoteIndex,
334
+ VoteThreshold,
335
+ VoterInfo
336
+ } from "@polkadot/types/interfaces/elections";
337
+ import type { CreatedBlock, ImportedAux } from "@polkadot/types/interfaces/engine";
338
+ import type {
339
+ BlockV0,
340
+ BlockV1,
341
+ BlockV2,
342
+ EIP1559Transaction,
343
+ EIP2930Transaction,
344
+ EthAccessList,
345
+ EthAccessListItem,
346
+ EthAccount,
347
+ EthAddress,
348
+ EthBlock,
349
+ EthBloom,
350
+ EthCallRequest,
351
+ EthFeeHistory,
352
+ EthFilter,
353
+ EthFilterAddress,
354
+ EthFilterChanges,
355
+ EthFilterTopic,
356
+ EthFilterTopicEntry,
357
+ EthFilterTopicInner,
358
+ EthHeader,
359
+ EthLog,
360
+ EthReceipt,
361
+ EthReceiptV0,
362
+ EthReceiptV3,
363
+ EthRichBlock,
364
+ EthRichHeader,
365
+ EthStorageProof,
366
+ EthSubKind,
367
+ EthSubParams,
368
+ EthSubResult,
369
+ EthSyncInfo,
370
+ EthSyncStatus,
371
+ EthTransaction,
372
+ EthTransactionAction,
373
+ EthTransactionCondition,
374
+ EthTransactionRequest,
375
+ EthTransactionSignature,
376
+ EthTransactionStatus,
377
+ EthWork,
378
+ EthereumAccountId,
379
+ EthereumAddress,
380
+ EthereumLookupSource,
381
+ EthereumSignature,
382
+ LegacyTransaction,
383
+ TransactionV0,
384
+ TransactionV1,
385
+ TransactionV2
386
+ } from "@polkadot/types/interfaces/eth";
387
+ import type {
388
+ EvmAccount,
389
+ EvmCallInfo,
390
+ EvmCallInfoV2,
391
+ EvmCreateInfo,
392
+ EvmCreateInfoV2,
393
+ EvmLog,
394
+ EvmVicinity,
395
+ EvmWeightInfo,
396
+ ExitError,
397
+ ExitFatal,
398
+ ExitReason,
399
+ ExitRevert,
400
+ ExitSucceed
401
+ } from "@polkadot/types/interfaces/evm";
402
+ import type {
403
+ AnySignature,
404
+ EcdsaSignature,
405
+ Ed25519Signature,
406
+ Era,
407
+ Extrinsic,
408
+ ExtrinsicEra,
409
+ ExtrinsicPayload,
410
+ ExtrinsicPayloadUnknown,
411
+ ExtrinsicPayloadV4,
412
+ ExtrinsicSignature,
413
+ ExtrinsicSignatureV4,
414
+ ExtrinsicUnknown,
415
+ ExtrinsicV4,
416
+ ImmortalEra,
417
+ MortalEra,
418
+ MultiSignature,
419
+ Signature,
420
+ SignerPayload,
421
+ Sr25519Signature
422
+ } from "@polkadot/types/interfaces/extrinsics";
423
+ import type { FungiblesAccessError } from "@polkadot/types/interfaces/fungibles";
424
+ import type {
425
+ AssetOptions,
426
+ Owner,
427
+ PermissionLatest,
428
+ PermissionVersions,
429
+ PermissionsV1
430
+ } from "@polkadot/types/interfaces/genericAsset";
431
+ import type { GenesisBuildErr } from "@polkadot/types/interfaces/genesisBuilder";
432
+ import type {
433
+ ActiveGilt,
434
+ ActiveGiltsTotal,
435
+ ActiveIndex,
436
+ GiltBid
437
+ } from "@polkadot/types/interfaces/gilt";
438
+ import type {
439
+ AuthorityIndex,
440
+ AuthorityList,
441
+ AuthoritySet,
442
+ AuthoritySetChange,
443
+ AuthoritySetChanges,
444
+ AuthorityWeight,
445
+ DelayKind,
446
+ DelayKindBest,
447
+ EncodedFinalityProofs,
448
+ ForkTreePendingChange,
449
+ ForkTreePendingChangeNode,
450
+ GrandpaCommit,
451
+ GrandpaEquivocation,
452
+ GrandpaEquivocationProof,
453
+ GrandpaEquivocationValue,
454
+ GrandpaJustification,
455
+ GrandpaPrecommit,
456
+ GrandpaPrevote,
457
+ GrandpaSignedPrecommit,
458
+ JustificationNotification,
459
+ KeyOwnerProof,
460
+ NextAuthority,
461
+ PendingChange,
462
+ PendingPause,
463
+ PendingResume,
464
+ Precommits,
465
+ Prevotes,
466
+ ReportedRoundStates,
467
+ RoundState,
468
+ SetId,
469
+ StoredPendingChange,
470
+ StoredState
471
+ } from "@polkadot/types/interfaces/grandpa";
472
+ import type {
473
+ IdentityFields,
474
+ IdentityInfo,
475
+ IdentityInfoAdditional,
476
+ IdentityInfoTo198,
477
+ IdentityJudgement,
478
+ RegistrarIndex,
479
+ RegistrarInfo,
480
+ Registration,
481
+ RegistrationJudgement,
482
+ RegistrationTo198
483
+ } from "@polkadot/types/interfaces/identity";
484
+ import type {
485
+ AuthIndex,
486
+ AuthoritySignature,
487
+ Heartbeat,
488
+ HeartbeatTo244,
489
+ OpaqueMultiaddr,
490
+ OpaqueNetworkState,
491
+ OpaquePeerId
492
+ } from "@polkadot/types/interfaces/imOnline";
493
+ import type { CallIndex, LotteryConfig } from "@polkadot/types/interfaces/lottery";
494
+ import type {
495
+ CustomMetadata15,
496
+ CustomValueMetadata15,
497
+ ErrorMetadataLatest,
498
+ ErrorMetadataV10,
499
+ ErrorMetadataV11,
500
+ ErrorMetadataV12,
501
+ ErrorMetadataV13,
502
+ ErrorMetadataV14,
503
+ ErrorMetadataV9,
504
+ EventMetadataLatest,
505
+ EventMetadataV10,
506
+ EventMetadataV11,
507
+ EventMetadataV12,
508
+ EventMetadataV13,
509
+ EventMetadataV14,
510
+ EventMetadataV9,
511
+ ExtrinsicMetadataLatest,
512
+ ExtrinsicMetadataV11,
513
+ ExtrinsicMetadataV12,
514
+ ExtrinsicMetadataV13,
515
+ ExtrinsicMetadataV14,
516
+ ExtrinsicMetadataV15,
517
+ FunctionArgumentMetadataLatest,
518
+ FunctionArgumentMetadataV10,
519
+ FunctionArgumentMetadataV11,
520
+ FunctionArgumentMetadataV12,
521
+ FunctionArgumentMetadataV13,
522
+ FunctionArgumentMetadataV14,
523
+ FunctionArgumentMetadataV9,
524
+ FunctionMetadataLatest,
525
+ FunctionMetadataV10,
526
+ FunctionMetadataV11,
527
+ FunctionMetadataV12,
528
+ FunctionMetadataV13,
529
+ FunctionMetadataV14,
530
+ FunctionMetadataV9,
531
+ MetadataAll,
532
+ MetadataLatest,
533
+ MetadataV10,
534
+ MetadataV11,
535
+ MetadataV12,
536
+ MetadataV13,
537
+ MetadataV14,
538
+ MetadataV15,
539
+ MetadataV9,
540
+ ModuleConstantMetadataV10,
541
+ ModuleConstantMetadataV11,
542
+ ModuleConstantMetadataV12,
543
+ ModuleConstantMetadataV13,
544
+ ModuleConstantMetadataV9,
545
+ ModuleMetadataV10,
546
+ ModuleMetadataV11,
547
+ ModuleMetadataV12,
548
+ ModuleMetadataV13,
549
+ ModuleMetadataV9,
550
+ OpaqueMetadata,
551
+ OuterEnums15,
552
+ PalletCallMetadataLatest,
553
+ PalletCallMetadataV14,
554
+ PalletConstantMetadataLatest,
555
+ PalletConstantMetadataV14,
556
+ PalletErrorMetadataLatest,
557
+ PalletErrorMetadataV14,
558
+ PalletEventMetadataLatest,
559
+ PalletEventMetadataV14,
560
+ PalletMetadataLatest,
561
+ PalletMetadataV14,
562
+ PalletMetadataV15,
563
+ PalletStorageMetadataLatest,
564
+ PalletStorageMetadataV14,
565
+ PortableType,
566
+ PortableTypeV14,
567
+ RuntimeApiMetadataLatest,
568
+ RuntimeApiMetadataV15,
569
+ RuntimeApiMethodMetadataV15,
570
+ RuntimeApiMethodParamMetadataV15,
571
+ SignedExtensionMetadataLatest,
572
+ SignedExtensionMetadataV14,
573
+ StorageEntryMetadataLatest,
574
+ StorageEntryMetadataV10,
575
+ StorageEntryMetadataV11,
576
+ StorageEntryMetadataV12,
577
+ StorageEntryMetadataV13,
578
+ StorageEntryMetadataV14,
579
+ StorageEntryMetadataV9,
580
+ StorageEntryModifierLatest,
581
+ StorageEntryModifierV10,
582
+ StorageEntryModifierV11,
583
+ StorageEntryModifierV12,
584
+ StorageEntryModifierV13,
585
+ StorageEntryModifierV14,
586
+ StorageEntryModifierV9,
587
+ StorageEntryTypeLatest,
588
+ StorageEntryTypeV10,
589
+ StorageEntryTypeV11,
590
+ StorageEntryTypeV12,
591
+ StorageEntryTypeV13,
592
+ StorageEntryTypeV14,
593
+ StorageEntryTypeV9,
594
+ StorageHasher,
595
+ StorageHasherV10,
596
+ StorageHasherV11,
597
+ StorageHasherV12,
598
+ StorageHasherV13,
599
+ StorageHasherV14,
600
+ StorageHasherV9,
601
+ StorageMetadataV10,
602
+ StorageMetadataV11,
603
+ StorageMetadataV12,
604
+ StorageMetadataV13,
605
+ StorageMetadataV9
606
+ } from "@polkadot/types/interfaces/metadata";
607
+ import type {
608
+ Mixnode,
609
+ MixnodesErr,
610
+ SessionPhase,
611
+ SessionStatus
612
+ } from "@polkadot/types/interfaces/mixnet";
613
+ import type {
614
+ MmrBatchProof,
615
+ MmrEncodableOpaqueLeaf,
616
+ MmrError,
617
+ MmrHash,
618
+ MmrLeafBatchProof,
619
+ MmrLeafIndex,
620
+ MmrLeafProof,
621
+ MmrNodeIndex,
622
+ MmrProof
623
+ } from "@polkadot/types/interfaces/mmr";
624
+ import type { NftCollectionId, NftItemId } from "@polkadot/types/interfaces/nfts";
625
+ import type { NpApiError, NpPoolId } from "@polkadot/types/interfaces/nompools";
626
+ import type { StorageKind } from "@polkadot/types/interfaces/offchain";
627
+ import type {
628
+ DeferredOffenceOf,
629
+ Kind,
630
+ OffenceDetails,
631
+ Offender,
632
+ OpaqueTimeSlot,
633
+ ReportIdOf,
634
+ Reporter
635
+ } from "@polkadot/types/interfaces/offences";
636
+ import type {
637
+ AbridgedCandidateReceipt,
638
+ AbridgedHostConfiguration,
639
+ AbridgedHrmpChannel,
640
+ ApprovalVotingParams,
641
+ AssignmentId,
642
+ AssignmentKind,
643
+ AsyncBackingParams,
644
+ AttestedCandidate,
645
+ AuctionIndex,
646
+ AuthorityDiscoveryId,
647
+ AvailabilityBitfield,
648
+ AvailabilityBitfieldRecord,
649
+ BackedCandidate,
650
+ BackingState,
651
+ Bidder,
652
+ BufferedSessionChange,
653
+ CandidateCommitments,
654
+ CandidateDescriptor,
655
+ CandidateEvent,
656
+ CandidateHash,
657
+ CandidateInfo,
658
+ CandidatePendingAvailability,
659
+ CandidateReceipt,
660
+ CollatorId,
661
+ CollatorSignature,
662
+ CommittedCandidateReceipt,
663
+ Constraints,
664
+ CoreAssignment,
665
+ CoreIndex,
666
+ CoreOccupied,
667
+ CoreState,
668
+ DisputeLocation,
669
+ DisputeProof,
670
+ DisputeResult,
671
+ DisputeState,
672
+ DisputeStatement,
673
+ DisputeStatementSet,
674
+ DisputesTimeSlot,
675
+ DoubleVoteReport,
676
+ DownwardMessage,
677
+ ExecutorParam,
678
+ ExecutorParams,
679
+ ExecutorParamsHash,
680
+ ExplicitDisputeStatement,
681
+ GlobalValidationData,
682
+ GlobalValidationSchedule,
683
+ GroupIndex,
684
+ GroupRotationInfo,
685
+ HeadData,
686
+ HostConfiguration,
687
+ HrmpChannel,
688
+ HrmpChannelId,
689
+ HrmpOpenChannelRequest,
690
+ InboundDownwardMessage,
691
+ InboundHrmpLimitations,
692
+ InboundHrmpMessage,
693
+ InboundHrmpMessages,
694
+ IncomingParachain,
695
+ IncomingParachainDeploy,
696
+ IncomingParachainFixed,
697
+ InvalidDisputeStatementKind,
698
+ LeasePeriod,
699
+ LeasePeriodOf,
700
+ LocalValidationData,
701
+ MessageIngestionType,
702
+ MessageQueueChain,
703
+ MessagingStateSnapshot,
704
+ MessagingStateSnapshotEgressEntry,
705
+ MultiDisputeStatementSet,
706
+ NewBidder,
707
+ NodeFeatures,
708
+ OccupiedCore,
709
+ OccupiedCoreAssumption,
710
+ OldV1SessionInfo,
711
+ OutboundHrmpChannelLimitations,
712
+ OutboundHrmpMessage,
713
+ ParaGenesisArgs,
714
+ ParaId,
715
+ ParaInfo,
716
+ ParaLifecycle,
717
+ ParaPastCodeMeta,
718
+ ParaScheduling,
719
+ ParaValidatorIndex,
720
+ ParachainDispatchOrigin,
721
+ ParachainInherentData,
722
+ ParachainProposal,
723
+ ParachainsInherentData,
724
+ ParathreadClaim,
725
+ ParathreadClaimQueue,
726
+ ParathreadEntry,
727
+ PendingSlashes,
728
+ PersistedValidationData,
729
+ PvfCheckStatement,
730
+ PvfExecTimeoutKind,
731
+ PvfPrepTimeoutKind,
732
+ QueuedParathread,
733
+ RegisteredParachainInfo,
734
+ RelayBlockNumber,
735
+ RelayChainBlockNumber,
736
+ RelayChainHash,
737
+ RelayHash,
738
+ Remark,
739
+ ReplacementTimes,
740
+ Retriable,
741
+ ScheduledCore,
742
+ Scheduling,
743
+ ScrapedOnChainVotes,
744
+ ServiceQuality,
745
+ SessionInfo,
746
+ SessionInfoValidatorGroup,
747
+ SignedAvailabilityBitfield,
748
+ SignedAvailabilityBitfields,
749
+ SigningContext,
750
+ SlashingOffenceKind,
751
+ SlotRange,
752
+ SlotRange10,
753
+ Statement,
754
+ SubId,
755
+ SystemInherentData,
756
+ TransientValidationData,
757
+ UpgradeGoAhead,
758
+ UpgradeRestriction,
759
+ UpwardMessage,
760
+ ValidDisputeStatementKind,
761
+ ValidationCode,
762
+ ValidationCodeHash,
763
+ ValidationData,
764
+ ValidationDataType,
765
+ ValidationFunctionParams,
766
+ ValidatorSignature,
767
+ ValidityAttestation,
768
+ VecInboundHrmpMessage,
769
+ WinnersData,
770
+ WinnersData10,
771
+ WinnersDataTuple,
772
+ WinnersDataTuple10,
773
+ WinningData,
774
+ WinningData10,
775
+ WinningDataEntry
776
+ } from "@polkadot/types/interfaces/parachains";
777
+ import type {
778
+ FeeDetails,
779
+ InclusionFee,
780
+ RuntimeDispatchInfo,
781
+ RuntimeDispatchInfoV1,
782
+ RuntimeDispatchInfoV2
783
+ } from "@polkadot/types/interfaces/payment";
784
+ import type { Approvals } from "@polkadot/types/interfaces/poll";
785
+ import type {
786
+ ProxyAnnouncement,
787
+ ProxyDefinition,
788
+ ProxyType
789
+ } from "@polkadot/types/interfaces/proxy";
790
+ import type { AccountStatus, AccountValidity } from "@polkadot/types/interfaces/purchase";
791
+ import type { ActiveRecovery, RecoveryConfig } from "@polkadot/types/interfaces/recovery";
792
+ import type { RpcMethods } from "@polkadot/types/interfaces/rpc";
793
+ import type {
794
+ AccountId,
795
+ AccountId20,
796
+ AccountId32,
797
+ AccountId33,
798
+ AccountIdOf,
799
+ AccountIndex,
800
+ Address,
801
+ AssetId,
802
+ Balance,
803
+ BalanceOf,
804
+ Block,
805
+ BlockNumber,
806
+ BlockNumberFor,
807
+ BlockNumberOf,
808
+ Call,
809
+ CallHash,
810
+ CallHashOf,
811
+ ChangesTrieConfiguration,
812
+ ChangesTrieSignal,
813
+ CodecHash,
814
+ Consensus,
815
+ ConsensusEngineId,
816
+ CrateVersion,
817
+ Digest,
818
+ DigestItem,
819
+ EncodedJustification,
820
+ ExtrinsicInclusionMode,
821
+ ExtrinsicsWeight,
822
+ Fixed128,
823
+ Fixed64,
824
+ FixedI128,
825
+ FixedI64,
826
+ FixedU128,
827
+ FixedU64,
828
+ H1024,
829
+ H128,
830
+ H160,
831
+ H2048,
832
+ H256,
833
+ H32,
834
+ H512,
835
+ H64,
836
+ Hash,
837
+ Header,
838
+ HeaderPartial,
839
+ I32F32,
840
+ Index,
841
+ IndicesLookupSource,
842
+ Justification,
843
+ Justifications,
844
+ KeyTypeId,
845
+ KeyValue,
846
+ LockIdentifier,
847
+ LookupSource,
848
+ LookupTarget,
849
+ ModuleId,
850
+ Moment,
851
+ MultiAddress,
852
+ MultiSigner,
853
+ OpaqueCall,
854
+ Origin,
855
+ OriginCaller,
856
+ PalletId,
857
+ PalletVersion,
858
+ PalletsOrigin,
859
+ Pays,
860
+ PerU16,
861
+ Perbill,
862
+ Percent,
863
+ Permill,
864
+ Perquintill,
865
+ Phantom,
866
+ PhantomData,
867
+ PreRuntime,
868
+ Releases,
869
+ RuntimeCall,
870
+ RuntimeDbWeight,
871
+ RuntimeEvent,
872
+ Seal,
873
+ SealV0,
874
+ SignedBlock,
875
+ SignedBlockWithJustification,
876
+ SignedBlockWithJustifications,
877
+ Slot,
878
+ SlotDuration,
879
+ StorageData,
880
+ StorageInfo,
881
+ StorageProof,
882
+ TransactionInfo,
883
+ TransactionLongevity,
884
+ TransactionPriority,
885
+ TransactionStorageProof,
886
+ TransactionTag,
887
+ U32F32,
888
+ ValidatorId,
889
+ ValidatorIdOf,
890
+ Weight,
891
+ WeightMultiplier,
892
+ WeightV0,
893
+ WeightV1,
894
+ WeightV2
895
+ } from "@polkadot/types/interfaces/runtime";
896
+ import type {
897
+ Si0Field,
898
+ Si0LookupTypeId,
899
+ Si0Path,
900
+ Si0Type,
901
+ Si0TypeDef,
902
+ Si0TypeDefArray,
903
+ Si0TypeDefBitSequence,
904
+ Si0TypeDefCompact,
905
+ Si0TypeDefComposite,
906
+ Si0TypeDefPhantom,
907
+ Si0TypeDefPrimitive,
908
+ Si0TypeDefSequence,
909
+ Si0TypeDefTuple,
910
+ Si0TypeDefVariant,
911
+ Si0TypeParameter,
912
+ Si0Variant,
913
+ Si1Field,
914
+ Si1LookupTypeId,
915
+ Si1Path,
916
+ Si1Type,
917
+ Si1TypeDef,
918
+ Si1TypeDefArray,
919
+ Si1TypeDefBitSequence,
920
+ Si1TypeDefCompact,
921
+ Si1TypeDefComposite,
922
+ Si1TypeDefPrimitive,
923
+ Si1TypeDefSequence,
924
+ Si1TypeDefTuple,
925
+ Si1TypeDefVariant,
926
+ Si1TypeParameter,
927
+ Si1Variant,
928
+ SiField,
929
+ SiLookupTypeId,
930
+ SiPath,
931
+ SiType,
932
+ SiTypeDef,
933
+ SiTypeDefArray,
934
+ SiTypeDefBitSequence,
935
+ SiTypeDefCompact,
936
+ SiTypeDefComposite,
937
+ SiTypeDefPrimitive,
938
+ SiTypeDefSequence,
939
+ SiTypeDefTuple,
940
+ SiTypeDefVariant,
941
+ SiTypeParameter,
942
+ SiVariant
943
+ } from "@polkadot/types/interfaces/scaleInfo";
944
+ import type {
945
+ Period,
946
+ Priority,
947
+ SchedulePeriod,
948
+ SchedulePriority,
949
+ Scheduled,
950
+ ScheduledTo254,
951
+ TaskAddress
952
+ } from "@polkadot/types/interfaces/scheduler";
953
+ import type {
954
+ BeefyKey,
955
+ FullIdentification,
956
+ IdentificationTuple,
957
+ Keys,
958
+ MembershipProof,
959
+ SessionIndex,
960
+ SessionKeys1,
961
+ SessionKeys10,
962
+ SessionKeys10B,
963
+ SessionKeys2,
964
+ SessionKeys3,
965
+ SessionKeys4,
966
+ SessionKeys5,
967
+ SessionKeys6,
968
+ SessionKeys6B,
969
+ SessionKeys7,
970
+ SessionKeys7B,
971
+ SessionKeys8,
972
+ SessionKeys8B,
973
+ SessionKeys9,
974
+ SessionKeys9B,
975
+ ValidatorCount
976
+ } from "@polkadot/types/interfaces/session";
977
+ import type {
978
+ Bid,
979
+ BidKind,
980
+ SocietyJudgement,
981
+ SocietyVote,
982
+ StrikeCount,
983
+ VouchingStatus
984
+ } from "@polkadot/types/interfaces/society";
985
+ import type {
986
+ ActiveEraInfo,
987
+ CompactAssignments,
988
+ CompactAssignmentsTo257,
989
+ CompactAssignmentsTo265,
990
+ CompactAssignmentsWith16,
991
+ CompactAssignmentsWith24,
992
+ CompactScore,
993
+ CompactScoreCompact,
994
+ ElectionCompute,
995
+ ElectionPhase,
996
+ ElectionResult,
997
+ ElectionScore,
998
+ ElectionSize,
999
+ ElectionStatus,
1000
+ EraIndex,
1001
+ EraPoints,
1002
+ EraRewardPoints,
1003
+ EraRewards,
1004
+ Exposure,
1005
+ ExtendedBalance,
1006
+ Forcing,
1007
+ IndividualExposure,
1008
+ KeyType,
1009
+ MomentOf,
1010
+ Nominations,
1011
+ NominatorIndex,
1012
+ NominatorIndexCompact,
1013
+ OffchainAccuracy,
1014
+ OffchainAccuracyCompact,
1015
+ PhragmenScore,
1016
+ Points,
1017
+ RawSolution,
1018
+ RawSolutionTo265,
1019
+ RawSolutionWith16,
1020
+ RawSolutionWith24,
1021
+ ReadySolution,
1022
+ RewardDestination,
1023
+ RewardPoint,
1024
+ RoundSnapshot,
1025
+ SeatHolder,
1026
+ SignedSubmission,
1027
+ SignedSubmissionOf,
1028
+ SignedSubmissionTo276,
1029
+ SlashJournalEntry,
1030
+ SlashingSpans,
1031
+ SlashingSpansTo204,
1032
+ SolutionOrSnapshotSize,
1033
+ SolutionSupport,
1034
+ SolutionSupports,
1035
+ SpanIndex,
1036
+ SpanRecord,
1037
+ StakingLedger,
1038
+ StakingLedgerTo223,
1039
+ StakingLedgerTo240,
1040
+ SubmissionIndicesOf,
1041
+ Supports,
1042
+ UnappliedSlash,
1043
+ UnappliedSlashOther,
1044
+ UnlockChunk,
1045
+ ValidatorIndex,
1046
+ ValidatorIndexCompact,
1047
+ ValidatorPrefs,
1048
+ ValidatorPrefsTo145,
1049
+ ValidatorPrefsTo196,
1050
+ ValidatorPrefsWithBlocked,
1051
+ ValidatorPrefsWithCommission,
1052
+ VoteWeight,
1053
+ Voter
1054
+ } from "@polkadot/types/interfaces/staking";
1055
+ import type {
1056
+ ApiId,
1057
+ BlockTrace,
1058
+ BlockTraceEvent,
1059
+ BlockTraceEventData,
1060
+ BlockTraceSpan,
1061
+ KeyValueOption,
1062
+ MigrationStatusResult,
1063
+ ReadProof,
1064
+ RuntimeVersion,
1065
+ RuntimeVersionApi,
1066
+ RuntimeVersionPartial,
1067
+ RuntimeVersionPre3,
1068
+ RuntimeVersionPre4,
1069
+ SpecVersion,
1070
+ StorageChangeSet,
1071
+ TraceBlockResponse,
1072
+ TraceError
1073
+ } from "@polkadot/types/interfaces/state";
1074
+ import type {
1075
+ StatementStoreInvalidStatement,
1076
+ StatementStoreStatementSource,
1077
+ StatementStoreValidStatement
1078
+ } from "@polkadot/types/interfaces/statement";
1079
+ import type { WeightToFeeCoefficient } from "@polkadot/types/interfaces/support";
1080
+ import type {
1081
+ AccountInfo,
1082
+ AccountInfoWithDualRefCount,
1083
+ AccountInfoWithProviders,
1084
+ AccountInfoWithRefCount,
1085
+ AccountInfoWithRefCountU8,
1086
+ AccountInfoWithTripleRefCount,
1087
+ ApplyExtrinsicResult,
1088
+ ApplyExtrinsicResultPre6,
1089
+ ArithmeticError,
1090
+ BlockLength,
1091
+ BlockWeights,
1092
+ ChainProperties,
1093
+ ChainType,
1094
+ ConsumedWeight,
1095
+ DigestOf,
1096
+ DispatchClass,
1097
+ DispatchError,
1098
+ DispatchErrorModule,
1099
+ DispatchErrorModulePre6,
1100
+ DispatchErrorModuleU8,
1101
+ DispatchErrorModuleU8a,
1102
+ DispatchErrorPre6,
1103
+ DispatchErrorPre6First,
1104
+ DispatchErrorTo198,
1105
+ DispatchInfo,
1106
+ DispatchInfoTo190,
1107
+ DispatchInfoTo244,
1108
+ DispatchOutcome,
1109
+ DispatchOutcomePre6,
1110
+ DispatchResult,
1111
+ DispatchResultOf,
1112
+ DispatchResultTo198,
1113
+ Event,
1114
+ EventId,
1115
+ EventIndex,
1116
+ EventRecord,
1117
+ Health,
1118
+ InvalidTransaction,
1119
+ Key,
1120
+ LastRuntimeUpgradeInfo,
1121
+ NetworkState,
1122
+ NetworkStatePeerset,
1123
+ NetworkStatePeersetInfo,
1124
+ NodeRole,
1125
+ NotConnectedPeer,
1126
+ Peer,
1127
+ PeerEndpoint,
1128
+ PeerEndpointAddr,
1129
+ PeerInfo,
1130
+ PeerPing,
1131
+ PerDispatchClassU32,
1132
+ PerDispatchClassWeight,
1133
+ PerDispatchClassWeightsPerClass,
1134
+ Phase,
1135
+ RawOrigin,
1136
+ RefCount,
1137
+ RefCountTo259,
1138
+ SyncState,
1139
+ SystemOrigin,
1140
+ TokenError,
1141
+ TransactionValidityError,
1142
+ TransactionalError,
1143
+ UnknownTransaction,
1144
+ WeightPerClass
1145
+ } from "@polkadot/types/interfaces/system";
1146
+ import type {
1147
+ Bounty,
1148
+ BountyIndex,
1149
+ BountyStatus,
1150
+ BountyStatusActive,
1151
+ BountyStatusCuratorProposed,
1152
+ BountyStatusPendingPayout,
1153
+ OpenTip,
1154
+ OpenTipFinderTo225,
1155
+ OpenTipTip,
1156
+ OpenTipTo225,
1157
+ TreasuryProposal
1158
+ } from "@polkadot/types/interfaces/treasury";
1159
+ import type { Multiplier } from "@polkadot/types/interfaces/txpayment";
1160
+ import type {
1161
+ TransactionSource,
1162
+ TransactionValidity,
1163
+ ValidTransaction
1164
+ } from "@polkadot/types/interfaces/txqueue";
1165
+ import type {
1166
+ ClassDetails,
1167
+ ClassId,
1168
+ ClassMetadata,
1169
+ DepositBalance,
1170
+ DepositBalanceOf,
1171
+ DestroyWitness,
1172
+ InstanceDetails,
1173
+ InstanceId,
1174
+ InstanceMetadata
1175
+ } from "@polkadot/types/interfaces/uniques";
1176
+ import type { Multisig, Timepoint } from "@polkadot/types/interfaces/utility";
1177
+ import type { VestingInfo } from "@polkadot/types/interfaces/vesting";
1178
+ import type {
1179
+ AssetInstance,
1180
+ AssetInstanceV0,
1181
+ AssetInstanceV1,
1182
+ AssetInstanceV2,
1183
+ BodyId,
1184
+ BodyPart,
1185
+ DoubleEncodedCall,
1186
+ Fungibility,
1187
+ FungibilityV0,
1188
+ FungibilityV1,
1189
+ FungibilityV2,
1190
+ InboundStatus,
1191
+ InstructionV2,
1192
+ InteriorMultiLocation,
1193
+ Junction,
1194
+ JunctionV0,
1195
+ JunctionV1,
1196
+ JunctionV2,
1197
+ Junctions,
1198
+ JunctionsV1,
1199
+ JunctionsV2,
1200
+ MultiAsset,
1201
+ MultiAssetFilter,
1202
+ MultiAssetFilterV1,
1203
+ MultiAssetFilterV2,
1204
+ MultiAssetV0,
1205
+ MultiAssetV1,
1206
+ MultiAssetV2,
1207
+ MultiAssets,
1208
+ MultiAssetsV1,
1209
+ MultiAssetsV2,
1210
+ MultiLocation,
1211
+ MultiLocationV0,
1212
+ MultiLocationV1,
1213
+ MultiLocationV2,
1214
+ NetworkId,
1215
+ OriginKindV0,
1216
+ OriginKindV1,
1217
+ OriginKindV2,
1218
+ OutboundStatus,
1219
+ Outcome,
1220
+ QueryId,
1221
+ QueryStatus,
1222
+ QueueConfigData,
1223
+ Response,
1224
+ ResponseV0,
1225
+ ResponseV1,
1226
+ ResponseV2,
1227
+ ResponseV2Error,
1228
+ ResponseV2Result,
1229
+ VersionMigrationStage,
1230
+ VersionedMultiAsset,
1231
+ VersionedMultiAssets,
1232
+ VersionedMultiLocation,
1233
+ VersionedResponse,
1234
+ VersionedXcm,
1235
+ WeightLimitV2,
1236
+ WildFungibility,
1237
+ WildFungibilityV0,
1238
+ WildFungibilityV1,
1239
+ WildFungibilityV2,
1240
+ WildMultiAsset,
1241
+ WildMultiAssetV1,
1242
+ WildMultiAssetV2,
1243
+ Xcm,
1244
+ XcmAssetId,
1245
+ XcmError,
1246
+ XcmErrorV0,
1247
+ XcmErrorV1,
1248
+ XcmErrorV2,
1249
+ XcmOrder,
1250
+ XcmOrderV0,
1251
+ XcmOrderV1,
1252
+ XcmOrderV2,
1253
+ XcmOrigin,
1254
+ XcmOriginKind,
1255
+ XcmV0,
1256
+ XcmV1,
1257
+ XcmV2,
1258
+ XcmVersion,
1259
+ XcmpMessageFormat
1260
+ } from "@polkadot/types/interfaces/xcm";
1261
+ import type { XcmPaymentApiError } from "@polkadot/types/interfaces/xcmPaymentApi";
1262
+ import type { Error } from "@polkadot/types/interfaces/xcmRuntimeApi";
1263
+ import type {
1264
+ BackupStorageProvider,
1265
+ BackupStorageProviderId,
1266
+ ChunkId,
1267
+ FileMetadata,
1268
+ GetBspInfoError,
1269
+ GetChallengePeriodError,
1270
+ GetChallengeSeedError,
1271
+ GetCheckpointChallengesError,
1272
+ GetFileFromFileStorageResult,
1273
+ GetLastTickProviderSubmittedProofError,
1274
+ GetNextDeadlineTickError,
1275
+ GetUsersWithDebtOverThresholdError,
1276
+ IncompleteFileStatus,
1277
+ MainStorageProviderId,
1278
+ MerklePatriciaRoot,
1279
+ Multiaddresses,
1280
+ ProviderId,
1281
+ QueryAvailableStorageCapacityError,
1282
+ QueryBspConfirmChunksToProveForFileError,
1283
+ QueryConfirmChunksToProveForFileError,
1284
+ QueryEarliestChangeCapacityBlockError,
1285
+ QueryFileEarliestVolunteerBlockError,
1286
+ QueryMspConfirmChunksToProveForFileError,
1287
+ QueryMspIdOfBucketIdError,
1288
+ QueryProviderMultiaddressesError,
1289
+ QueryStorageProviderCapacityError,
1290
+ RandomnessOutput,
1291
+ SaveFileToDisk,
1292
+ StorageDataUnit,
1293
+ StorageProviderId,
1294
+ TrieRemoveMutation
1295
+ } from "@storagehub/api-augment/interfaces/storagehubclient";
1296
+
1297
+ declare module "@polkadot/types/types/registry" {
1298
+ interface InterfaceTypes {
1299
+ AbridgedCandidateReceipt: AbridgedCandidateReceipt;
1300
+ AbridgedHostConfiguration: AbridgedHostConfiguration;
1301
+ AbridgedHrmpChannel: AbridgedHrmpChannel;
1302
+ AccountData: AccountData;
1303
+ AccountId: AccountId;
1304
+ AccountId20: AccountId20;
1305
+ AccountId32: AccountId32;
1306
+ AccountId33: AccountId33;
1307
+ AccountIdOf: AccountIdOf;
1308
+ AccountIndex: AccountIndex;
1309
+ AccountInfo: AccountInfo;
1310
+ AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;
1311
+ AccountInfoWithProviders: AccountInfoWithProviders;
1312
+ AccountInfoWithRefCount: AccountInfoWithRefCount;
1313
+ AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;
1314
+ AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;
1315
+ AccountStatus: AccountStatus;
1316
+ AccountValidity: AccountValidity;
1317
+ AccountVote: AccountVote;
1318
+ AccountVoteSplit: AccountVoteSplit;
1319
+ AccountVoteStandard: AccountVoteStandard;
1320
+ ActiveEraInfo: ActiveEraInfo;
1321
+ ActiveGilt: ActiveGilt;
1322
+ ActiveGiltsTotal: ActiveGiltsTotal;
1323
+ ActiveIndex: ActiveIndex;
1324
+ ActiveRecovery: ActiveRecovery;
1325
+ Address: Address;
1326
+ AliveContractInfo: AliveContractInfo;
1327
+ AllowedSlots: AllowedSlots;
1328
+ AnySignature: AnySignature;
1329
+ ApiId: ApiId;
1330
+ ApplyExtrinsicResult: ApplyExtrinsicResult;
1331
+ ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;
1332
+ ApprovalFlag: ApprovalFlag;
1333
+ Approvals: Approvals;
1334
+ ApprovalVotingParams: ApprovalVotingParams;
1335
+ ArithmeticError: ArithmeticError;
1336
+ AssetApproval: AssetApproval;
1337
+ AssetApprovalKey: AssetApprovalKey;
1338
+ AssetBalance: AssetBalance;
1339
+ AssetDestroyWitness: AssetDestroyWitness;
1340
+ AssetDetails: AssetDetails;
1341
+ AssetId: AssetId;
1342
+ AssetInstance: AssetInstance;
1343
+ AssetInstanceV0: AssetInstanceV0;
1344
+ AssetInstanceV1: AssetInstanceV1;
1345
+ AssetInstanceV2: AssetInstanceV2;
1346
+ AssetMetadata: AssetMetadata;
1347
+ AssetOptions: AssetOptions;
1348
+ AssignmentId: AssignmentId;
1349
+ AssignmentKind: AssignmentKind;
1350
+ AsyncBackingParams: AsyncBackingParams;
1351
+ AttestedCandidate: AttestedCandidate;
1352
+ AuctionIndex: AuctionIndex;
1353
+ AuthIndex: AuthIndex;
1354
+ AuthorityDiscoveryId: AuthorityDiscoveryId;
1355
+ AuthorityId: AuthorityId;
1356
+ AuthorityIndex: AuthorityIndex;
1357
+ AuthorityList: AuthorityList;
1358
+ AuthoritySet: AuthoritySet;
1359
+ AuthoritySetChange: AuthoritySetChange;
1360
+ AuthoritySetChanges: AuthoritySetChanges;
1361
+ AuthoritySignature: AuthoritySignature;
1362
+ AuthorityWeight: AuthorityWeight;
1363
+ AvailabilityBitfield: AvailabilityBitfield;
1364
+ AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;
1365
+ BabeAuthorityWeight: BabeAuthorityWeight;
1366
+ BabeBlockWeight: BabeBlockWeight;
1367
+ BabeEpochConfiguration: BabeEpochConfiguration;
1368
+ BabeEquivocationProof: BabeEquivocationProof;
1369
+ BabeGenesisConfiguration: BabeGenesisConfiguration;
1370
+ BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;
1371
+ BabeWeight: BabeWeight;
1372
+ BackedCandidate: BackedCandidate;
1373
+ BackingState: BackingState;
1374
+ BackupStorageProvider: BackupStorageProvider;
1375
+ BackupStorageProviderId: BackupStorageProviderId;
1376
+ Balance: Balance;
1377
+ BalanceLock: BalanceLock;
1378
+ BalanceLockTo212: BalanceLockTo212;
1379
+ BalanceOf: BalanceOf;
1380
+ BalanceStatus: BalanceStatus;
1381
+ BeefyAuthoritySet: BeefyAuthoritySet;
1382
+ BeefyCommitment: BeefyCommitment;
1383
+ BeefyCompactSignedCommitment: BeefyCompactSignedCommitment;
1384
+ BeefyEquivocationProof: BeefyEquivocationProof;
1385
+ BeefyId: BeefyId;
1386
+ BeefyKey: BeefyKey;
1387
+ BeefyNextAuthoritySet: BeefyNextAuthoritySet;
1388
+ BeefyPayload: BeefyPayload;
1389
+ BeefyPayloadId: BeefyPayloadId;
1390
+ BeefySignedCommitment: BeefySignedCommitment;
1391
+ BeefyVersionedFinalityProof: BeefyVersionedFinalityProof;
1392
+ BeefyVoteMessage: BeefyVoteMessage;
1393
+ BenchmarkBatch: BenchmarkBatch;
1394
+ BenchmarkConfig: BenchmarkConfig;
1395
+ BenchmarkList: BenchmarkList;
1396
+ BenchmarkMetadata: BenchmarkMetadata;
1397
+ BenchmarkParameter: BenchmarkParameter;
1398
+ BenchmarkResult: BenchmarkResult;
1399
+ Bid: Bid;
1400
+ Bidder: Bidder;
1401
+ BidKind: BidKind;
1402
+ BitVec: BitVec;
1403
+ Block: Block;
1404
+ BlockAttestations: BlockAttestations;
1405
+ BlockHash: BlockHash;
1406
+ BlockLength: BlockLength;
1407
+ BlockNumber: BlockNumber;
1408
+ BlockNumberFor: BlockNumberFor;
1409
+ BlockNumberOf: BlockNumberOf;
1410
+ BlockStats: BlockStats;
1411
+ BlockTrace: BlockTrace;
1412
+ BlockTraceEvent: BlockTraceEvent;
1413
+ BlockTraceEventData: BlockTraceEventData;
1414
+ BlockTraceSpan: BlockTraceSpan;
1415
+ BlockV0: BlockV0;
1416
+ BlockV1: BlockV1;
1417
+ BlockV2: BlockV2;
1418
+ BlockWeights: BlockWeights;
1419
+ BodyId: BodyId;
1420
+ BodyPart: BodyPart;
1421
+ bool: bool;
1422
+ Bool: Bool;
1423
+ Bounty: Bounty;
1424
+ BountyIndex: BountyIndex;
1425
+ BountyStatus: BountyStatus;
1426
+ BountyStatusActive: BountyStatusActive;
1427
+ BountyStatusCuratorProposed: BountyStatusCuratorProposed;
1428
+ BountyStatusPendingPayout: BountyStatusPendingPayout;
1429
+ BridgedBlockHash: BridgedBlockHash;
1430
+ BridgedBlockNumber: BridgedBlockNumber;
1431
+ BridgedHeader: BridgedHeader;
1432
+ BridgeMessageId: BridgeMessageId;
1433
+ BufferedSessionChange: BufferedSessionChange;
1434
+ Bytes: Bytes;
1435
+ Call: Call;
1436
+ CallHash: CallHash;
1437
+ CallHashOf: CallHashOf;
1438
+ CallIndex: CallIndex;
1439
+ CallOrigin: CallOrigin;
1440
+ CandidateCommitments: CandidateCommitments;
1441
+ CandidateDescriptor: CandidateDescriptor;
1442
+ CandidateEvent: CandidateEvent;
1443
+ CandidateHash: CandidateHash;
1444
+ CandidateInfo: CandidateInfo;
1445
+ CandidatePendingAvailability: CandidatePendingAvailability;
1446
+ CandidateReceipt: CandidateReceipt;
1447
+ ChainId: ChainId;
1448
+ ChainProperties: ChainProperties;
1449
+ ChainType: ChainType;
1450
+ ChangesTrieConfiguration: ChangesTrieConfiguration;
1451
+ ChangesTrieSignal: ChangesTrieSignal;
1452
+ CheckInherentsResult: CheckInherentsResult;
1453
+ ChunkId: ChunkId;
1454
+ ClassDetails: ClassDetails;
1455
+ ClassId: ClassId;
1456
+ ClassMetadata: ClassMetadata;
1457
+ CodecHash: CodecHash;
1458
+ CodeHash: CodeHash;
1459
+ CodeSource: CodeSource;
1460
+ CodeUploadRequest: CodeUploadRequest;
1461
+ CodeUploadResult: CodeUploadResult;
1462
+ CodeUploadResultValue: CodeUploadResultValue;
1463
+ CollationInfo: CollationInfo;
1464
+ CollationInfoV1: CollationInfoV1;
1465
+ CollatorId: CollatorId;
1466
+ CollatorSignature: CollatorSignature;
1467
+ CollectiveOrigin: CollectiveOrigin;
1468
+ CommittedCandidateReceipt: CommittedCandidateReceipt;
1469
+ CompactAssignments: CompactAssignments;
1470
+ CompactAssignmentsTo257: CompactAssignmentsTo257;
1471
+ CompactAssignmentsTo265: CompactAssignmentsTo265;
1472
+ CompactAssignmentsWith16: CompactAssignmentsWith16;
1473
+ CompactAssignmentsWith24: CompactAssignmentsWith24;
1474
+ CompactScore: CompactScore;
1475
+ CompactScoreCompact: CompactScoreCompact;
1476
+ ConfigData: ConfigData;
1477
+ Consensus: Consensus;
1478
+ ConsensusEngineId: ConsensusEngineId;
1479
+ Constraints: Constraints;
1480
+ ConsumedWeight: ConsumedWeight;
1481
+ ContractCallFlags: ContractCallFlags;
1482
+ ContractCallRequest: ContractCallRequest;
1483
+ ContractConstructorSpecLatest: ContractConstructorSpecLatest;
1484
+ ContractConstructorSpecV0: ContractConstructorSpecV0;
1485
+ ContractConstructorSpecV1: ContractConstructorSpecV1;
1486
+ ContractConstructorSpecV2: ContractConstructorSpecV2;
1487
+ ContractConstructorSpecV3: ContractConstructorSpecV3;
1488
+ ContractConstructorSpecV4: ContractConstructorSpecV4;
1489
+ ContractContractSpecV0: ContractContractSpecV0;
1490
+ ContractContractSpecV1: ContractContractSpecV1;
1491
+ ContractContractSpecV2: ContractContractSpecV2;
1492
+ ContractContractSpecV3: ContractContractSpecV3;
1493
+ ContractContractSpecV4: ContractContractSpecV4;
1494
+ ContractContractSpecV5: ContractContractSpecV5;
1495
+ ContractCryptoHasher: ContractCryptoHasher;
1496
+ ContractDiscriminant: ContractDiscriminant;
1497
+ ContractDisplayName: ContractDisplayName;
1498
+ ContractEnvironmentV4: ContractEnvironmentV4;
1499
+ ContractEventParamSpecLatest: ContractEventParamSpecLatest;
1500
+ ContractEventParamSpecV0: ContractEventParamSpecV0;
1501
+ ContractEventParamSpecV2: ContractEventParamSpecV2;
1502
+ ContractEventSpecLatest: ContractEventSpecLatest;
1503
+ ContractEventSpecV0: ContractEventSpecV0;
1504
+ ContractEventSpecV1: ContractEventSpecV1;
1505
+ ContractEventSpecV2: ContractEventSpecV2;
1506
+ ContractEventSpecV3: ContractEventSpecV3;
1507
+ ContractExecResult: ContractExecResult;
1508
+ ContractExecResultOk: ContractExecResultOk;
1509
+ ContractExecResultResult: ContractExecResultResult;
1510
+ ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;
1511
+ ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;
1512
+ ContractExecResultTo255: ContractExecResultTo255;
1513
+ ContractExecResultTo260: ContractExecResultTo260;
1514
+ ContractExecResultTo267: ContractExecResultTo267;
1515
+ ContractExecResultU64: ContractExecResultU64;
1516
+ ContractInfo: ContractInfo;
1517
+ ContractInstantiateResult: ContractInstantiateResult;
1518
+ ContractInstantiateResultTo267: ContractInstantiateResultTo267;
1519
+ ContractInstantiateResultTo299: ContractInstantiateResultTo299;
1520
+ ContractInstantiateResultU64: ContractInstantiateResultU64;
1521
+ ContractLayoutArray: ContractLayoutArray;
1522
+ ContractLayoutCell: ContractLayoutCell;
1523
+ ContractLayoutEnum: ContractLayoutEnum;
1524
+ ContractLayoutHash: ContractLayoutHash;
1525
+ ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;
1526
+ ContractLayoutKey: ContractLayoutKey;
1527
+ ContractLayoutStruct: ContractLayoutStruct;
1528
+ ContractLayoutStructField: ContractLayoutStructField;
1529
+ ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;
1530
+ ContractMessageParamSpecV0: ContractMessageParamSpecV0;
1531
+ ContractMessageParamSpecV2: ContractMessageParamSpecV2;
1532
+ ContractMessageSpecLatest: ContractMessageSpecLatest;
1533
+ ContractMessageSpecV0: ContractMessageSpecV0;
1534
+ ContractMessageSpecV1: ContractMessageSpecV1;
1535
+ ContractMessageSpecV2: ContractMessageSpecV2;
1536
+ ContractMessageSpecV3: ContractMessageSpecV3;
1537
+ ContractMetadata: ContractMetadata;
1538
+ ContractMetadataLatest: ContractMetadataLatest;
1539
+ ContractMetadataV0: ContractMetadataV0;
1540
+ ContractMetadataV1: ContractMetadataV1;
1541
+ ContractMetadataV2: ContractMetadataV2;
1542
+ ContractMetadataV3: ContractMetadataV3;
1543
+ ContractMetadataV4: ContractMetadataV4;
1544
+ ContractMetadataV5: ContractMetadataV5;
1545
+ ContractProject: ContractProject;
1546
+ ContractProjectContract: ContractProjectContract;
1547
+ ContractProjectInfo: ContractProjectInfo;
1548
+ ContractProjectSource: ContractProjectSource;
1549
+ ContractProjectV0: ContractProjectV0;
1550
+ ContractReturnFlags: ContractReturnFlags;
1551
+ ContractSelector: ContractSelector;
1552
+ ContractStorageKey: ContractStorageKey;
1553
+ ContractStorageLayout: ContractStorageLayout;
1554
+ ContractTypeSpec: ContractTypeSpec;
1555
+ Conviction: Conviction;
1556
+ CoreAssignment: CoreAssignment;
1557
+ CoreIndex: CoreIndex;
1558
+ CoreOccupied: CoreOccupied;
1559
+ CoreState: CoreState;
1560
+ CrateVersion: CrateVersion;
1561
+ CreatedBlock: CreatedBlock;
1562
+ CustomMetadata15: CustomMetadata15;
1563
+ CustomValueMetadata15: CustomValueMetadata15;
1564
+ Data: Data;
1565
+ DeferredOffenceOf: DeferredOffenceOf;
1566
+ DefunctVoter: DefunctVoter;
1567
+ DelayKind: DelayKind;
1568
+ DelayKindBest: DelayKindBest;
1569
+ Delegations: Delegations;
1570
+ DeletedContract: DeletedContract;
1571
+ DeliveredMessages: DeliveredMessages;
1572
+ DepositBalance: DepositBalance;
1573
+ DepositBalanceOf: DepositBalanceOf;
1574
+ DestroyWitness: DestroyWitness;
1575
+ Digest: Digest;
1576
+ DigestItem: DigestItem;
1577
+ DigestOf: DigestOf;
1578
+ DispatchClass: DispatchClass;
1579
+ DispatchError: DispatchError;
1580
+ DispatchErrorModule: DispatchErrorModule;
1581
+ DispatchErrorModulePre6: DispatchErrorModulePre6;
1582
+ DispatchErrorModuleU8: DispatchErrorModuleU8;
1583
+ DispatchErrorModuleU8a: DispatchErrorModuleU8a;
1584
+ DispatchErrorPre6: DispatchErrorPre6;
1585
+ DispatchErrorPre6First: DispatchErrorPre6First;
1586
+ DispatchErrorTo198: DispatchErrorTo198;
1587
+ DispatchFeePayment: DispatchFeePayment;
1588
+ DispatchInfo: DispatchInfo;
1589
+ DispatchInfoTo190: DispatchInfoTo190;
1590
+ DispatchInfoTo244: DispatchInfoTo244;
1591
+ DispatchOutcome: DispatchOutcome;
1592
+ DispatchOutcomePre6: DispatchOutcomePre6;
1593
+ DispatchResult: DispatchResult;
1594
+ DispatchResultOf: DispatchResultOf;
1595
+ DispatchResultTo198: DispatchResultTo198;
1596
+ DisputeLocation: DisputeLocation;
1597
+ DisputeProof: DisputeProof;
1598
+ DisputeResult: DisputeResult;
1599
+ DisputeState: DisputeState;
1600
+ DisputeStatement: DisputeStatement;
1601
+ DisputeStatementSet: DisputeStatementSet;
1602
+ DisputesTimeSlot: DisputesTimeSlot;
1603
+ DoubleEncodedCall: DoubleEncodedCall;
1604
+ DoubleVoteReport: DoubleVoteReport;
1605
+ DownwardMessage: DownwardMessage;
1606
+ EcdsaSignature: EcdsaSignature;
1607
+ Ed25519Signature: Ed25519Signature;
1608
+ EIP1559Transaction: EIP1559Transaction;
1609
+ EIP2930Transaction: EIP2930Transaction;
1610
+ ElectionCompute: ElectionCompute;
1611
+ ElectionPhase: ElectionPhase;
1612
+ ElectionResult: ElectionResult;
1613
+ ElectionScore: ElectionScore;
1614
+ ElectionSize: ElectionSize;
1615
+ ElectionStatus: ElectionStatus;
1616
+ EncodedFinalityProofs: EncodedFinalityProofs;
1617
+ EncodedJustification: EncodedJustification;
1618
+ Epoch: Epoch;
1619
+ EpochAuthorship: EpochAuthorship;
1620
+ Era: Era;
1621
+ EraIndex: EraIndex;
1622
+ EraPoints: EraPoints;
1623
+ EraRewardPoints: EraRewardPoints;
1624
+ EraRewards: EraRewards;
1625
+ Error: Error;
1626
+ ErrorMetadataLatest: ErrorMetadataLatest;
1627
+ ErrorMetadataV10: ErrorMetadataV10;
1628
+ ErrorMetadataV11: ErrorMetadataV11;
1629
+ ErrorMetadataV12: ErrorMetadataV12;
1630
+ ErrorMetadataV13: ErrorMetadataV13;
1631
+ ErrorMetadataV14: ErrorMetadataV14;
1632
+ ErrorMetadataV9: ErrorMetadataV9;
1633
+ EthAccessList: EthAccessList;
1634
+ EthAccessListItem: EthAccessListItem;
1635
+ EthAccount: EthAccount;
1636
+ EthAddress: EthAddress;
1637
+ EthBlock: EthBlock;
1638
+ EthBloom: EthBloom;
1639
+ EthCallRequest: EthCallRequest;
1640
+ EthereumAccountId: EthereumAccountId;
1641
+ EthereumAddress: EthereumAddress;
1642
+ EthereumLookupSource: EthereumLookupSource;
1643
+ EthereumSignature: EthereumSignature;
1644
+ EthFeeHistory: EthFeeHistory;
1645
+ EthFilter: EthFilter;
1646
+ EthFilterAddress: EthFilterAddress;
1647
+ EthFilterChanges: EthFilterChanges;
1648
+ EthFilterTopic: EthFilterTopic;
1649
+ EthFilterTopicEntry: EthFilterTopicEntry;
1650
+ EthFilterTopicInner: EthFilterTopicInner;
1651
+ EthHeader: EthHeader;
1652
+ EthLog: EthLog;
1653
+ EthReceipt: EthReceipt;
1654
+ EthReceiptV0: EthReceiptV0;
1655
+ EthReceiptV3: EthReceiptV3;
1656
+ EthRichBlock: EthRichBlock;
1657
+ EthRichHeader: EthRichHeader;
1658
+ EthStorageProof: EthStorageProof;
1659
+ EthSubKind: EthSubKind;
1660
+ EthSubParams: EthSubParams;
1661
+ EthSubResult: EthSubResult;
1662
+ EthSyncInfo: EthSyncInfo;
1663
+ EthSyncStatus: EthSyncStatus;
1664
+ EthTransaction: EthTransaction;
1665
+ EthTransactionAction: EthTransactionAction;
1666
+ EthTransactionCondition: EthTransactionCondition;
1667
+ EthTransactionRequest: EthTransactionRequest;
1668
+ EthTransactionSignature: EthTransactionSignature;
1669
+ EthTransactionStatus: EthTransactionStatus;
1670
+ EthWork: EthWork;
1671
+ Event: Event;
1672
+ EventId: EventId;
1673
+ EventIndex: EventIndex;
1674
+ EventMetadataLatest: EventMetadataLatest;
1675
+ EventMetadataV10: EventMetadataV10;
1676
+ EventMetadataV11: EventMetadataV11;
1677
+ EventMetadataV12: EventMetadataV12;
1678
+ EventMetadataV13: EventMetadataV13;
1679
+ EventMetadataV14: EventMetadataV14;
1680
+ EventMetadataV9: EventMetadataV9;
1681
+ EventRecord: EventRecord;
1682
+ EvmAccount: EvmAccount;
1683
+ EvmCallInfo: EvmCallInfo;
1684
+ EvmCallInfoV2: EvmCallInfoV2;
1685
+ EvmCreateInfo: EvmCreateInfo;
1686
+ EvmCreateInfoV2: EvmCreateInfoV2;
1687
+ EvmLog: EvmLog;
1688
+ EvmVicinity: EvmVicinity;
1689
+ EvmWeightInfo: EvmWeightInfo;
1690
+ ExecReturnValue: ExecReturnValue;
1691
+ ExecutorParam: ExecutorParam;
1692
+ ExecutorParams: ExecutorParams;
1693
+ ExecutorParamsHash: ExecutorParamsHash;
1694
+ ExitError: ExitError;
1695
+ ExitFatal: ExitFatal;
1696
+ ExitReason: ExitReason;
1697
+ ExitRevert: ExitRevert;
1698
+ ExitSucceed: ExitSucceed;
1699
+ ExplicitDisputeStatement: ExplicitDisputeStatement;
1700
+ Exposure: Exposure;
1701
+ ExtendedBalance: ExtendedBalance;
1702
+ Extrinsic: Extrinsic;
1703
+ ExtrinsicEra: ExtrinsicEra;
1704
+ ExtrinsicInclusionMode: ExtrinsicInclusionMode;
1705
+ ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;
1706
+ ExtrinsicMetadataV11: ExtrinsicMetadataV11;
1707
+ ExtrinsicMetadataV12: ExtrinsicMetadataV12;
1708
+ ExtrinsicMetadataV13: ExtrinsicMetadataV13;
1709
+ ExtrinsicMetadataV14: ExtrinsicMetadataV14;
1710
+ ExtrinsicMetadataV15: ExtrinsicMetadataV15;
1711
+ ExtrinsicOrHash: ExtrinsicOrHash;
1712
+ ExtrinsicPayload: ExtrinsicPayload;
1713
+ ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;
1714
+ ExtrinsicPayloadV4: ExtrinsicPayloadV4;
1715
+ ExtrinsicSignature: ExtrinsicSignature;
1716
+ ExtrinsicSignatureV4: ExtrinsicSignatureV4;
1717
+ ExtrinsicStatus: ExtrinsicStatus;
1718
+ ExtrinsicsWeight: ExtrinsicsWeight;
1719
+ ExtrinsicUnknown: ExtrinsicUnknown;
1720
+ ExtrinsicV4: ExtrinsicV4;
1721
+ f32: f32;
1722
+ F32: F32;
1723
+ f64: f64;
1724
+ F64: F64;
1725
+ FeeDetails: FeeDetails;
1726
+ FileMetadata: FileMetadata;
1727
+ Fixed128: Fixed128;
1728
+ Fixed64: Fixed64;
1729
+ FixedI128: FixedI128;
1730
+ FixedI64: FixedI64;
1731
+ FixedU128: FixedU128;
1732
+ FixedU64: FixedU64;
1733
+ Forcing: Forcing;
1734
+ ForkTreePendingChange: ForkTreePendingChange;
1735
+ ForkTreePendingChangeNode: ForkTreePendingChangeNode;
1736
+ FullIdentification: FullIdentification;
1737
+ FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;
1738
+ FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;
1739
+ FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;
1740
+ FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;
1741
+ FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;
1742
+ FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;
1743
+ FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;
1744
+ FunctionMetadataLatest: FunctionMetadataLatest;
1745
+ FunctionMetadataV10: FunctionMetadataV10;
1746
+ FunctionMetadataV11: FunctionMetadataV11;
1747
+ FunctionMetadataV12: FunctionMetadataV12;
1748
+ FunctionMetadataV13: FunctionMetadataV13;
1749
+ FunctionMetadataV14: FunctionMetadataV14;
1750
+ FunctionMetadataV9: FunctionMetadataV9;
1751
+ FundIndex: FundIndex;
1752
+ FundInfo: FundInfo;
1753
+ Fungibility: Fungibility;
1754
+ FungibilityV0: FungibilityV0;
1755
+ FungibilityV1: FungibilityV1;
1756
+ FungibilityV2: FungibilityV2;
1757
+ FungiblesAccessError: FungiblesAccessError;
1758
+ Gas: Gas;
1759
+ GenesisBuildErr: GenesisBuildErr;
1760
+ GetBspInfoError: GetBspInfoError;
1761
+ GetChallengePeriodError: GetChallengePeriodError;
1762
+ GetChallengeSeedError: GetChallengeSeedError;
1763
+ GetCheckpointChallengesError: GetCheckpointChallengesError;
1764
+ GetFileFromFileStorageResult: GetFileFromFileStorageResult;
1765
+ GetLastTickProviderSubmittedProofError: GetLastTickProviderSubmittedProofError;
1766
+ GetNextDeadlineTickError: GetNextDeadlineTickError;
1767
+ GetUsersWithDebtOverThresholdError: GetUsersWithDebtOverThresholdError;
1768
+ GiltBid: GiltBid;
1769
+ GlobalValidationData: GlobalValidationData;
1770
+ GlobalValidationSchedule: GlobalValidationSchedule;
1771
+ GrandpaCommit: GrandpaCommit;
1772
+ GrandpaEquivocation: GrandpaEquivocation;
1773
+ GrandpaEquivocationProof: GrandpaEquivocationProof;
1774
+ GrandpaEquivocationValue: GrandpaEquivocationValue;
1775
+ GrandpaJustification: GrandpaJustification;
1776
+ GrandpaPrecommit: GrandpaPrecommit;
1777
+ GrandpaPrevote: GrandpaPrevote;
1778
+ GrandpaSignedPrecommit: GrandpaSignedPrecommit;
1779
+ GroupIndex: GroupIndex;
1780
+ GroupRotationInfo: GroupRotationInfo;
1781
+ H1024: H1024;
1782
+ H128: H128;
1783
+ H160: H160;
1784
+ H2048: H2048;
1785
+ H256: H256;
1786
+ H32: H32;
1787
+ H512: H512;
1788
+ H64: H64;
1789
+ Hash: Hash;
1790
+ HeadData: HeadData;
1791
+ Header: Header;
1792
+ HeaderPartial: HeaderPartial;
1793
+ Health: Health;
1794
+ Heartbeat: Heartbeat;
1795
+ HeartbeatTo244: HeartbeatTo244;
1796
+ HostConfiguration: HostConfiguration;
1797
+ HostFnWeights: HostFnWeights;
1798
+ HostFnWeightsTo264: HostFnWeightsTo264;
1799
+ HrmpChannel: HrmpChannel;
1800
+ HrmpChannelId: HrmpChannelId;
1801
+ HrmpOpenChannelRequest: HrmpOpenChannelRequest;
1802
+ i128: i128;
1803
+ I128: I128;
1804
+ i16: i16;
1805
+ I16: I16;
1806
+ i256: i256;
1807
+ I256: I256;
1808
+ i32: i32;
1809
+ I32: I32;
1810
+ I32F32: I32F32;
1811
+ i64: i64;
1812
+ I64: I64;
1813
+ i8: i8;
1814
+ I8: I8;
1815
+ IdentificationTuple: IdentificationTuple;
1816
+ IdentityFields: IdentityFields;
1817
+ IdentityInfo: IdentityInfo;
1818
+ IdentityInfoAdditional: IdentityInfoAdditional;
1819
+ IdentityInfoTo198: IdentityInfoTo198;
1820
+ IdentityJudgement: IdentityJudgement;
1821
+ ImmortalEra: ImmortalEra;
1822
+ ImportedAux: ImportedAux;
1823
+ InboundDownwardMessage: InboundDownwardMessage;
1824
+ InboundHrmpLimitations: InboundHrmpLimitations;
1825
+ InboundHrmpMessage: InboundHrmpMessage;
1826
+ InboundHrmpMessages: InboundHrmpMessages;
1827
+ InboundLaneData: InboundLaneData;
1828
+ InboundRelayer: InboundRelayer;
1829
+ InboundStatus: InboundStatus;
1830
+ IncludedBlocks: IncludedBlocks;
1831
+ InclusionFee: InclusionFee;
1832
+ IncomingParachain: IncomingParachain;
1833
+ IncomingParachainDeploy: IncomingParachainDeploy;
1834
+ IncomingParachainFixed: IncomingParachainFixed;
1835
+ IncompleteFileStatus: IncompleteFileStatus;
1836
+ Index: Index;
1837
+ IndicesLookupSource: IndicesLookupSource;
1838
+ IndividualExposure: IndividualExposure;
1839
+ InherentData: InherentData;
1840
+ InherentIdentifier: InherentIdentifier;
1841
+ InitializationData: InitializationData;
1842
+ InstanceDetails: InstanceDetails;
1843
+ InstanceId: InstanceId;
1844
+ InstanceMetadata: InstanceMetadata;
1845
+ InstantiateRequest: InstantiateRequest;
1846
+ InstantiateRequestV1: InstantiateRequestV1;
1847
+ InstantiateRequestV2: InstantiateRequestV2;
1848
+ InstantiateReturnValue: InstantiateReturnValue;
1849
+ InstantiateReturnValueOk: InstantiateReturnValueOk;
1850
+ InstantiateReturnValueTo267: InstantiateReturnValueTo267;
1851
+ InstructionV2: InstructionV2;
1852
+ InstructionWeights: InstructionWeights;
1853
+ InteriorMultiLocation: InteriorMultiLocation;
1854
+ InvalidDisputeStatementKind: InvalidDisputeStatementKind;
1855
+ InvalidTransaction: InvalidTransaction;
1856
+ isize: isize;
1857
+ ISize: ISize;
1858
+ Json: Json;
1859
+ Junction: Junction;
1860
+ Junctions: Junctions;
1861
+ JunctionsV1: JunctionsV1;
1862
+ JunctionsV2: JunctionsV2;
1863
+ JunctionV0: JunctionV0;
1864
+ JunctionV1: JunctionV1;
1865
+ JunctionV2: JunctionV2;
1866
+ Justification: Justification;
1867
+ JustificationNotification: JustificationNotification;
1868
+ Justifications: Justifications;
1869
+ Key: Key;
1870
+ KeyOwnerProof: KeyOwnerProof;
1871
+ Keys: Keys;
1872
+ KeyType: KeyType;
1873
+ KeyTypeId: KeyTypeId;
1874
+ KeyValue: KeyValue;
1875
+ KeyValueOption: KeyValueOption;
1876
+ Kind: Kind;
1877
+ LaneId: LaneId;
1878
+ LastContribution: LastContribution;
1879
+ LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;
1880
+ LeasePeriod: LeasePeriod;
1881
+ LeasePeriodOf: LeasePeriodOf;
1882
+ LegacyTransaction: LegacyTransaction;
1883
+ Limits: Limits;
1884
+ LimitsTo264: LimitsTo264;
1885
+ LocalValidationData: LocalValidationData;
1886
+ LockIdentifier: LockIdentifier;
1887
+ LookupSource: LookupSource;
1888
+ LookupTarget: LookupTarget;
1889
+ LotteryConfig: LotteryConfig;
1890
+ MainStorageProviderId: MainStorageProviderId;
1891
+ MaybeRandomness: MaybeRandomness;
1892
+ MaybeVrf: MaybeVrf;
1893
+ MemberCount: MemberCount;
1894
+ MembershipProof: MembershipProof;
1895
+ MerklePatriciaRoot: MerklePatriciaRoot;
1896
+ MessageData: MessageData;
1897
+ MessageId: MessageId;
1898
+ MessageIngestionType: MessageIngestionType;
1899
+ MessageKey: MessageKey;
1900
+ MessageNonce: MessageNonce;
1901
+ MessageQueueChain: MessageQueueChain;
1902
+ MessagesDeliveryProofOf: MessagesDeliveryProofOf;
1903
+ MessagesProofOf: MessagesProofOf;
1904
+ MessagingStateSnapshot: MessagingStateSnapshot;
1905
+ MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;
1906
+ MetadataAll: MetadataAll;
1907
+ MetadataLatest: MetadataLatest;
1908
+ MetadataV10: MetadataV10;
1909
+ MetadataV11: MetadataV11;
1910
+ MetadataV12: MetadataV12;
1911
+ MetadataV13: MetadataV13;
1912
+ MetadataV14: MetadataV14;
1913
+ MetadataV15: MetadataV15;
1914
+ MetadataV9: MetadataV9;
1915
+ MigrationStatusResult: MigrationStatusResult;
1916
+ Mixnode: Mixnode;
1917
+ MixnodesErr: MixnodesErr;
1918
+ MmrBatchProof: MmrBatchProof;
1919
+ MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;
1920
+ MmrError: MmrError;
1921
+ MmrHash: MmrHash;
1922
+ MmrLeafBatchProof: MmrLeafBatchProof;
1923
+ MmrLeafIndex: MmrLeafIndex;
1924
+ MmrLeafProof: MmrLeafProof;
1925
+ MmrNodeIndex: MmrNodeIndex;
1926
+ MmrProof: MmrProof;
1927
+ MmrRootHash: MmrRootHash;
1928
+ ModuleConstantMetadataV10: ModuleConstantMetadataV10;
1929
+ ModuleConstantMetadataV11: ModuleConstantMetadataV11;
1930
+ ModuleConstantMetadataV12: ModuleConstantMetadataV12;
1931
+ ModuleConstantMetadataV13: ModuleConstantMetadataV13;
1932
+ ModuleConstantMetadataV9: ModuleConstantMetadataV9;
1933
+ ModuleId: ModuleId;
1934
+ ModuleMetadataV10: ModuleMetadataV10;
1935
+ ModuleMetadataV11: ModuleMetadataV11;
1936
+ ModuleMetadataV12: ModuleMetadataV12;
1937
+ ModuleMetadataV13: ModuleMetadataV13;
1938
+ ModuleMetadataV9: ModuleMetadataV9;
1939
+ Moment: Moment;
1940
+ MomentOf: MomentOf;
1941
+ MoreAttestations: MoreAttestations;
1942
+ MortalEra: MortalEra;
1943
+ MultiAddress: MultiAddress;
1944
+ Multiaddresses: Multiaddresses;
1945
+ MultiAsset: MultiAsset;
1946
+ MultiAssetFilter: MultiAssetFilter;
1947
+ MultiAssetFilterV1: MultiAssetFilterV1;
1948
+ MultiAssetFilterV2: MultiAssetFilterV2;
1949
+ MultiAssets: MultiAssets;
1950
+ MultiAssetsV1: MultiAssetsV1;
1951
+ MultiAssetsV2: MultiAssetsV2;
1952
+ MultiAssetV0: MultiAssetV0;
1953
+ MultiAssetV1: MultiAssetV1;
1954
+ MultiAssetV2: MultiAssetV2;
1955
+ MultiDisputeStatementSet: MultiDisputeStatementSet;
1956
+ MultiLocation: MultiLocation;
1957
+ MultiLocationV0: MultiLocationV0;
1958
+ MultiLocationV1: MultiLocationV1;
1959
+ MultiLocationV2: MultiLocationV2;
1960
+ Multiplier: Multiplier;
1961
+ Multisig: Multisig;
1962
+ MultiSignature: MultiSignature;
1963
+ MultiSigner: MultiSigner;
1964
+ NetworkId: NetworkId;
1965
+ NetworkState: NetworkState;
1966
+ NetworkStatePeerset: NetworkStatePeerset;
1967
+ NetworkStatePeersetInfo: NetworkStatePeersetInfo;
1968
+ NewBidder: NewBidder;
1969
+ NextAuthority: NextAuthority;
1970
+ NextConfigDescriptor: NextConfigDescriptor;
1971
+ NextConfigDescriptorV1: NextConfigDescriptorV1;
1972
+ NftCollectionId: NftCollectionId;
1973
+ NftItemId: NftItemId;
1974
+ NodeFeatures: NodeFeatures;
1975
+ NodeRole: NodeRole;
1976
+ Nominations: Nominations;
1977
+ NominatorIndex: NominatorIndex;
1978
+ NominatorIndexCompact: NominatorIndexCompact;
1979
+ NotConnectedPeer: NotConnectedPeer;
1980
+ NpApiError: NpApiError;
1981
+ NpPoolId: NpPoolId;
1982
+ Null: Null;
1983
+ OccupiedCore: OccupiedCore;
1984
+ OccupiedCoreAssumption: OccupiedCoreAssumption;
1985
+ OffchainAccuracy: OffchainAccuracy;
1986
+ OffchainAccuracyCompact: OffchainAccuracyCompact;
1987
+ OffenceDetails: OffenceDetails;
1988
+ Offender: Offender;
1989
+ OldV1SessionInfo: OldV1SessionInfo;
1990
+ OpaqueCall: OpaqueCall;
1991
+ OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;
1992
+ OpaqueMetadata: OpaqueMetadata;
1993
+ OpaqueMultiaddr: OpaqueMultiaddr;
1994
+ OpaqueNetworkState: OpaqueNetworkState;
1995
+ OpaquePeerId: OpaquePeerId;
1996
+ OpaqueTimeSlot: OpaqueTimeSlot;
1997
+ OpenTip: OpenTip;
1998
+ OpenTipFinderTo225: OpenTipFinderTo225;
1999
+ OpenTipTip: OpenTipTip;
2000
+ OpenTipTo225: OpenTipTo225;
2001
+ OperatingMode: OperatingMode;
2002
+ OptionBool: OptionBool;
2003
+ Origin: Origin;
2004
+ OriginCaller: OriginCaller;
2005
+ OriginKindV0: OriginKindV0;
2006
+ OriginKindV1: OriginKindV1;
2007
+ OriginKindV2: OriginKindV2;
2008
+ OutboundHrmpChannelLimitations: OutboundHrmpChannelLimitations;
2009
+ OutboundHrmpMessage: OutboundHrmpMessage;
2010
+ OutboundLaneData: OutboundLaneData;
2011
+ OutboundMessageFee: OutboundMessageFee;
2012
+ OutboundPayload: OutboundPayload;
2013
+ OutboundStatus: OutboundStatus;
2014
+ Outcome: Outcome;
2015
+ OuterEnums15: OuterEnums15;
2016
+ OverweightIndex: OverweightIndex;
2017
+ Owner: Owner;
2018
+ PageCounter: PageCounter;
2019
+ PageIndexData: PageIndexData;
2020
+ PalletCallMetadataLatest: PalletCallMetadataLatest;
2021
+ PalletCallMetadataV14: PalletCallMetadataV14;
2022
+ PalletConstantMetadataLatest: PalletConstantMetadataLatest;
2023
+ PalletConstantMetadataV14: PalletConstantMetadataV14;
2024
+ PalletErrorMetadataLatest: PalletErrorMetadataLatest;
2025
+ PalletErrorMetadataV14: PalletErrorMetadataV14;
2026
+ PalletEventMetadataLatest: PalletEventMetadataLatest;
2027
+ PalletEventMetadataV14: PalletEventMetadataV14;
2028
+ PalletId: PalletId;
2029
+ PalletMetadataLatest: PalletMetadataLatest;
2030
+ PalletMetadataV14: PalletMetadataV14;
2031
+ PalletMetadataV15: PalletMetadataV15;
2032
+ PalletsOrigin: PalletsOrigin;
2033
+ PalletStorageMetadataLatest: PalletStorageMetadataLatest;
2034
+ PalletStorageMetadataV14: PalletStorageMetadataV14;
2035
+ PalletVersion: PalletVersion;
2036
+ ParachainDispatchOrigin: ParachainDispatchOrigin;
2037
+ ParachainInherentData: ParachainInherentData;
2038
+ ParachainProposal: ParachainProposal;
2039
+ ParachainsInherentData: ParachainsInherentData;
2040
+ ParaGenesisArgs: ParaGenesisArgs;
2041
+ ParaId: ParaId;
2042
+ ParaInfo: ParaInfo;
2043
+ ParaLifecycle: ParaLifecycle;
2044
+ Parameter: Parameter;
2045
+ ParaPastCodeMeta: ParaPastCodeMeta;
2046
+ ParaScheduling: ParaScheduling;
2047
+ ParathreadClaim: ParathreadClaim;
2048
+ ParathreadClaimQueue: ParathreadClaimQueue;
2049
+ ParathreadEntry: ParathreadEntry;
2050
+ ParaValidatorIndex: ParaValidatorIndex;
2051
+ Pays: Pays;
2052
+ Peer: Peer;
2053
+ PeerEndpoint: PeerEndpoint;
2054
+ PeerEndpointAddr: PeerEndpointAddr;
2055
+ PeerInfo: PeerInfo;
2056
+ PeerPing: PeerPing;
2057
+ PendingChange: PendingChange;
2058
+ PendingPause: PendingPause;
2059
+ PendingResume: PendingResume;
2060
+ PendingSlashes: PendingSlashes;
2061
+ Perbill: Perbill;
2062
+ Percent: Percent;
2063
+ PerDispatchClassU32: PerDispatchClassU32;
2064
+ PerDispatchClassWeight: PerDispatchClassWeight;
2065
+ PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;
2066
+ Period: Period;
2067
+ Permill: Permill;
2068
+ PermissionLatest: PermissionLatest;
2069
+ PermissionsV1: PermissionsV1;
2070
+ PermissionVersions: PermissionVersions;
2071
+ Perquintill: Perquintill;
2072
+ PersistedValidationData: PersistedValidationData;
2073
+ PerU16: PerU16;
2074
+ Phantom: Phantom;
2075
+ PhantomData: PhantomData;
2076
+ Phase: Phase;
2077
+ PhragmenScore: PhragmenScore;
2078
+ Points: Points;
2079
+ PortableType: PortableType;
2080
+ PortableTypeV14: PortableTypeV14;
2081
+ Precommits: Precommits;
2082
+ PrefabWasmModule: PrefabWasmModule;
2083
+ PrefixedStorageKey: PrefixedStorageKey;
2084
+ PreimageStatus: PreimageStatus;
2085
+ PreimageStatusAvailable: PreimageStatusAvailable;
2086
+ PreRuntime: PreRuntime;
2087
+ Prevotes: Prevotes;
2088
+ Priority: Priority;
2089
+ PriorLock: PriorLock;
2090
+ PropIndex: PropIndex;
2091
+ Proposal: Proposal;
2092
+ ProposalIndex: ProposalIndex;
2093
+ ProviderId: ProviderId;
2094
+ ProxyAnnouncement: ProxyAnnouncement;
2095
+ ProxyDefinition: ProxyDefinition;
2096
+ ProxyState: ProxyState;
2097
+ ProxyType: ProxyType;
2098
+ PvfCheckStatement: PvfCheckStatement;
2099
+ PvfExecTimeoutKind: PvfExecTimeoutKind;
2100
+ PvfPrepTimeoutKind: PvfPrepTimeoutKind;
2101
+ QueryAvailableStorageCapacityError: QueryAvailableStorageCapacityError;
2102
+ QueryBspConfirmChunksToProveForFileError: QueryBspConfirmChunksToProveForFileError;
2103
+ QueryConfirmChunksToProveForFileError: QueryConfirmChunksToProveForFileError;
2104
+ QueryEarliestChangeCapacityBlockError: QueryEarliestChangeCapacityBlockError;
2105
+ QueryFileEarliestVolunteerBlockError: QueryFileEarliestVolunteerBlockError;
2106
+ QueryId: QueryId;
2107
+ QueryMspConfirmChunksToProveForFileError: QueryMspConfirmChunksToProveForFileError;
2108
+ QueryMspIdOfBucketIdError: QueryMspIdOfBucketIdError;
2109
+ QueryProviderMultiaddressesError: QueryProviderMultiaddressesError;
2110
+ QueryStatus: QueryStatus;
2111
+ QueryStorageProviderCapacityError: QueryStorageProviderCapacityError;
2112
+ QueueConfigData: QueueConfigData;
2113
+ QueuedParathread: QueuedParathread;
2114
+ Randomness: Randomness;
2115
+ RandomnessOutput: RandomnessOutput;
2116
+ Raw: Raw;
2117
+ RawAuraPreDigest: RawAuraPreDigest;
2118
+ RawBabePreDigest: RawBabePreDigest;
2119
+ RawBabePreDigestCompat: RawBabePreDigestCompat;
2120
+ RawBabePreDigestPrimary: RawBabePreDigestPrimary;
2121
+ RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;
2122
+ RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;
2123
+ RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;
2124
+ RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;
2125
+ RawBabePreDigestTo159: RawBabePreDigestTo159;
2126
+ RawOrigin: RawOrigin;
2127
+ RawSolution: RawSolution;
2128
+ RawSolutionTo265: RawSolutionTo265;
2129
+ RawSolutionWith16: RawSolutionWith16;
2130
+ RawSolutionWith24: RawSolutionWith24;
2131
+ RawVRFOutput: RawVRFOutput;
2132
+ ReadProof: ReadProof;
2133
+ ReadySolution: ReadySolution;
2134
+ Reasons: Reasons;
2135
+ RecoveryConfig: RecoveryConfig;
2136
+ RefCount: RefCount;
2137
+ RefCountTo259: RefCountTo259;
2138
+ ReferendumIndex: ReferendumIndex;
2139
+ ReferendumInfo: ReferendumInfo;
2140
+ ReferendumInfoFinished: ReferendumInfoFinished;
2141
+ ReferendumInfoTo239: ReferendumInfoTo239;
2142
+ ReferendumStatus: ReferendumStatus;
2143
+ RegisteredParachainInfo: RegisteredParachainInfo;
2144
+ RegistrarIndex: RegistrarIndex;
2145
+ RegistrarInfo: RegistrarInfo;
2146
+ Registration: Registration;
2147
+ RegistrationJudgement: RegistrationJudgement;
2148
+ RegistrationTo198: RegistrationTo198;
2149
+ RelayBlockNumber: RelayBlockNumber;
2150
+ RelayChainBlockNumber: RelayChainBlockNumber;
2151
+ RelayChainHash: RelayChainHash;
2152
+ RelayerId: RelayerId;
2153
+ RelayHash: RelayHash;
2154
+ Releases: Releases;
2155
+ Remark: Remark;
2156
+ Renouncing: Renouncing;
2157
+ RentProjection: RentProjection;
2158
+ ReplacementTimes: ReplacementTimes;
2159
+ ReportedRoundStates: ReportedRoundStates;
2160
+ Reporter: Reporter;
2161
+ ReportIdOf: ReportIdOf;
2162
+ ReserveData: ReserveData;
2163
+ ReserveIdentifier: ReserveIdentifier;
2164
+ Response: Response;
2165
+ ResponseV0: ResponseV0;
2166
+ ResponseV1: ResponseV1;
2167
+ ResponseV2: ResponseV2;
2168
+ ResponseV2Error: ResponseV2Error;
2169
+ ResponseV2Result: ResponseV2Result;
2170
+ Retriable: Retriable;
2171
+ RewardDestination: RewardDestination;
2172
+ RewardPoint: RewardPoint;
2173
+ RoundSnapshot: RoundSnapshot;
2174
+ RoundState: RoundState;
2175
+ RpcMethods: RpcMethods;
2176
+ RuntimeApiMetadataLatest: RuntimeApiMetadataLatest;
2177
+ RuntimeApiMetadataV15: RuntimeApiMetadataV15;
2178
+ RuntimeApiMethodMetadataV15: RuntimeApiMethodMetadataV15;
2179
+ RuntimeApiMethodParamMetadataV15: RuntimeApiMethodParamMetadataV15;
2180
+ RuntimeCall: RuntimeCall;
2181
+ RuntimeDbWeight: RuntimeDbWeight;
2182
+ RuntimeDispatchInfo: RuntimeDispatchInfo;
2183
+ RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;
2184
+ RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;
2185
+ RuntimeEvent: RuntimeEvent;
2186
+ RuntimeVersion: RuntimeVersion;
2187
+ RuntimeVersionApi: RuntimeVersionApi;
2188
+ RuntimeVersionPartial: RuntimeVersionPartial;
2189
+ RuntimeVersionPre3: RuntimeVersionPre3;
2190
+ RuntimeVersionPre4: RuntimeVersionPre4;
2191
+ SaveFileToDisk: SaveFileToDisk;
2192
+ Schedule: Schedule;
2193
+ Scheduled: Scheduled;
2194
+ ScheduledCore: ScheduledCore;
2195
+ ScheduledTo254: ScheduledTo254;
2196
+ SchedulePeriod: SchedulePeriod;
2197
+ SchedulePriority: SchedulePriority;
2198
+ ScheduleTo212: ScheduleTo212;
2199
+ ScheduleTo258: ScheduleTo258;
2200
+ ScheduleTo264: ScheduleTo264;
2201
+ Scheduling: Scheduling;
2202
+ ScrapedOnChainVotes: ScrapedOnChainVotes;
2203
+ Seal: Seal;
2204
+ SealV0: SealV0;
2205
+ SeatHolder: SeatHolder;
2206
+ SeedOf: SeedOf;
2207
+ ServiceQuality: ServiceQuality;
2208
+ SessionIndex: SessionIndex;
2209
+ SessionInfo: SessionInfo;
2210
+ SessionInfoValidatorGroup: SessionInfoValidatorGroup;
2211
+ SessionKeys1: SessionKeys1;
2212
+ SessionKeys10: SessionKeys10;
2213
+ SessionKeys10B: SessionKeys10B;
2214
+ SessionKeys2: SessionKeys2;
2215
+ SessionKeys3: SessionKeys3;
2216
+ SessionKeys4: SessionKeys4;
2217
+ SessionKeys5: SessionKeys5;
2218
+ SessionKeys6: SessionKeys6;
2219
+ SessionKeys6B: SessionKeys6B;
2220
+ SessionKeys7: SessionKeys7;
2221
+ SessionKeys7B: SessionKeys7B;
2222
+ SessionKeys8: SessionKeys8;
2223
+ SessionKeys8B: SessionKeys8B;
2224
+ SessionKeys9: SessionKeys9;
2225
+ SessionKeys9B: SessionKeys9B;
2226
+ SessionPhase: SessionPhase;
2227
+ SessionStatus: SessionStatus;
2228
+ SetId: SetId;
2229
+ SetIndex: SetIndex;
2230
+ Si0Field: Si0Field;
2231
+ Si0LookupTypeId: Si0LookupTypeId;
2232
+ Si0Path: Si0Path;
2233
+ Si0Type: Si0Type;
2234
+ Si0TypeDef: Si0TypeDef;
2235
+ Si0TypeDefArray: Si0TypeDefArray;
2236
+ Si0TypeDefBitSequence: Si0TypeDefBitSequence;
2237
+ Si0TypeDefCompact: Si0TypeDefCompact;
2238
+ Si0TypeDefComposite: Si0TypeDefComposite;
2239
+ Si0TypeDefPhantom: Si0TypeDefPhantom;
2240
+ Si0TypeDefPrimitive: Si0TypeDefPrimitive;
2241
+ Si0TypeDefSequence: Si0TypeDefSequence;
2242
+ Si0TypeDefTuple: Si0TypeDefTuple;
2243
+ Si0TypeDefVariant: Si0TypeDefVariant;
2244
+ Si0TypeParameter: Si0TypeParameter;
2245
+ Si0Variant: Si0Variant;
2246
+ Si1Field: Si1Field;
2247
+ Si1LookupTypeId: Si1LookupTypeId;
2248
+ Si1Path: Si1Path;
2249
+ Si1Type: Si1Type;
2250
+ Si1TypeDef: Si1TypeDef;
2251
+ Si1TypeDefArray: Si1TypeDefArray;
2252
+ Si1TypeDefBitSequence: Si1TypeDefBitSequence;
2253
+ Si1TypeDefCompact: Si1TypeDefCompact;
2254
+ Si1TypeDefComposite: Si1TypeDefComposite;
2255
+ Si1TypeDefPrimitive: Si1TypeDefPrimitive;
2256
+ Si1TypeDefSequence: Si1TypeDefSequence;
2257
+ Si1TypeDefTuple: Si1TypeDefTuple;
2258
+ Si1TypeDefVariant: Si1TypeDefVariant;
2259
+ Si1TypeParameter: Si1TypeParameter;
2260
+ Si1Variant: Si1Variant;
2261
+ SiField: SiField;
2262
+ Signature: Signature;
2263
+ SignedAvailabilityBitfield: SignedAvailabilityBitfield;
2264
+ SignedAvailabilityBitfields: SignedAvailabilityBitfields;
2265
+ SignedBlock: SignedBlock;
2266
+ SignedBlockWithJustification: SignedBlockWithJustification;
2267
+ SignedBlockWithJustifications: SignedBlockWithJustifications;
2268
+ SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;
2269
+ SignedExtensionMetadataV14: SignedExtensionMetadataV14;
2270
+ SignedSubmission: SignedSubmission;
2271
+ SignedSubmissionOf: SignedSubmissionOf;
2272
+ SignedSubmissionTo276: SignedSubmissionTo276;
2273
+ SignerPayload: SignerPayload;
2274
+ SigningContext: SigningContext;
2275
+ SiLookupTypeId: SiLookupTypeId;
2276
+ SiPath: SiPath;
2277
+ SiType: SiType;
2278
+ SiTypeDef: SiTypeDef;
2279
+ SiTypeDefArray: SiTypeDefArray;
2280
+ SiTypeDefBitSequence: SiTypeDefBitSequence;
2281
+ SiTypeDefCompact: SiTypeDefCompact;
2282
+ SiTypeDefComposite: SiTypeDefComposite;
2283
+ SiTypeDefPrimitive: SiTypeDefPrimitive;
2284
+ SiTypeDefSequence: SiTypeDefSequence;
2285
+ SiTypeDefTuple: SiTypeDefTuple;
2286
+ SiTypeDefVariant: SiTypeDefVariant;
2287
+ SiTypeParameter: SiTypeParameter;
2288
+ SiVariant: SiVariant;
2289
+ SlashingOffenceKind: SlashingOffenceKind;
2290
+ SlashingSpans: SlashingSpans;
2291
+ SlashingSpansTo204: SlashingSpansTo204;
2292
+ SlashJournalEntry: SlashJournalEntry;
2293
+ Slot: Slot;
2294
+ SlotDuration: SlotDuration;
2295
+ SlotNumber: SlotNumber;
2296
+ SlotRange: SlotRange;
2297
+ SlotRange10: SlotRange10;
2298
+ SocietyJudgement: SocietyJudgement;
2299
+ SocietyVote: SocietyVote;
2300
+ SolutionOrSnapshotSize: SolutionOrSnapshotSize;
2301
+ SolutionSupport: SolutionSupport;
2302
+ SolutionSupports: SolutionSupports;
2303
+ SpanIndex: SpanIndex;
2304
+ SpanRecord: SpanRecord;
2305
+ SpecVersion: SpecVersion;
2306
+ Sr25519Signature: Sr25519Signature;
2307
+ StakingLedger: StakingLedger;
2308
+ StakingLedgerTo223: StakingLedgerTo223;
2309
+ StakingLedgerTo240: StakingLedgerTo240;
2310
+ Statement: Statement;
2311
+ StatementKind: StatementKind;
2312
+ StatementStoreInvalidStatement: StatementStoreInvalidStatement;
2313
+ StatementStoreStatementSource: StatementStoreStatementSource;
2314
+ StatementStoreValidStatement: StatementStoreValidStatement;
2315
+ StorageChangeSet: StorageChangeSet;
2316
+ StorageData: StorageData;
2317
+ StorageDataUnit: StorageDataUnit;
2318
+ StorageDeposit: StorageDeposit;
2319
+ StorageEntryMetadataLatest: StorageEntryMetadataLatest;
2320
+ StorageEntryMetadataV10: StorageEntryMetadataV10;
2321
+ StorageEntryMetadataV11: StorageEntryMetadataV11;
2322
+ StorageEntryMetadataV12: StorageEntryMetadataV12;
2323
+ StorageEntryMetadataV13: StorageEntryMetadataV13;
2324
+ StorageEntryMetadataV14: StorageEntryMetadataV14;
2325
+ StorageEntryMetadataV9: StorageEntryMetadataV9;
2326
+ StorageEntryModifierLatest: StorageEntryModifierLatest;
2327
+ StorageEntryModifierV10: StorageEntryModifierV10;
2328
+ StorageEntryModifierV11: StorageEntryModifierV11;
2329
+ StorageEntryModifierV12: StorageEntryModifierV12;
2330
+ StorageEntryModifierV13: StorageEntryModifierV13;
2331
+ StorageEntryModifierV14: StorageEntryModifierV14;
2332
+ StorageEntryModifierV9: StorageEntryModifierV9;
2333
+ StorageEntryTypeLatest: StorageEntryTypeLatest;
2334
+ StorageEntryTypeV10: StorageEntryTypeV10;
2335
+ StorageEntryTypeV11: StorageEntryTypeV11;
2336
+ StorageEntryTypeV12: StorageEntryTypeV12;
2337
+ StorageEntryTypeV13: StorageEntryTypeV13;
2338
+ StorageEntryTypeV14: StorageEntryTypeV14;
2339
+ StorageEntryTypeV9: StorageEntryTypeV9;
2340
+ StorageHasher: StorageHasher;
2341
+ StorageHasherV10: StorageHasherV10;
2342
+ StorageHasherV11: StorageHasherV11;
2343
+ StorageHasherV12: StorageHasherV12;
2344
+ StorageHasherV13: StorageHasherV13;
2345
+ StorageHasherV14: StorageHasherV14;
2346
+ StorageHasherV9: StorageHasherV9;
2347
+ StorageInfo: StorageInfo;
2348
+ StorageKey: StorageKey;
2349
+ StorageKind: StorageKind;
2350
+ StorageMetadataV10: StorageMetadataV10;
2351
+ StorageMetadataV11: StorageMetadataV11;
2352
+ StorageMetadataV12: StorageMetadataV12;
2353
+ StorageMetadataV13: StorageMetadataV13;
2354
+ StorageMetadataV9: StorageMetadataV9;
2355
+ StorageProof: StorageProof;
2356
+ StorageProviderId: StorageProviderId;
2357
+ StoredPendingChange: StoredPendingChange;
2358
+ StoredState: StoredState;
2359
+ StrikeCount: StrikeCount;
2360
+ SubId: SubId;
2361
+ SubmissionIndicesOf: SubmissionIndicesOf;
2362
+ Supports: Supports;
2363
+ SyncState: SyncState;
2364
+ SystemInherentData: SystemInherentData;
2365
+ SystemOrigin: SystemOrigin;
2366
+ Tally: Tally;
2367
+ TaskAddress: TaskAddress;
2368
+ TAssetBalance: TAssetBalance;
2369
+ TAssetConversion: TAssetConversion;
2370
+ TAssetDepositBalance: TAssetDepositBalance;
2371
+ Text: Text;
2372
+ Timepoint: Timepoint;
2373
+ TokenError: TokenError;
2374
+ TombstoneContractInfo: TombstoneContractInfo;
2375
+ TraceBlockResponse: TraceBlockResponse;
2376
+ TraceError: TraceError;
2377
+ TransactionalError: TransactionalError;
2378
+ TransactionInfo: TransactionInfo;
2379
+ TransactionLongevity: TransactionLongevity;
2380
+ TransactionPriority: TransactionPriority;
2381
+ TransactionSource: TransactionSource;
2382
+ TransactionStorageProof: TransactionStorageProof;
2383
+ TransactionTag: TransactionTag;
2384
+ TransactionV0: TransactionV0;
2385
+ TransactionV1: TransactionV1;
2386
+ TransactionV2: TransactionV2;
2387
+ TransactionValidity: TransactionValidity;
2388
+ TransactionValidityError: TransactionValidityError;
2389
+ TransientValidationData: TransientValidationData;
2390
+ TreasuryProposal: TreasuryProposal;
2391
+ TrieId: TrieId;
2392
+ TrieIndex: TrieIndex;
2393
+ TrieRemoveMutation: TrieRemoveMutation;
2394
+ Type: Type;
2395
+ u128: u128;
2396
+ U128: U128;
2397
+ u16: u16;
2398
+ U16: U16;
2399
+ u256: u256;
2400
+ U256: U256;
2401
+ u32: u32;
2402
+ U32: U32;
2403
+ U32F32: U32F32;
2404
+ u64: u64;
2405
+ U64: U64;
2406
+ u8: u8;
2407
+ U8: U8;
2408
+ UnappliedSlash: UnappliedSlash;
2409
+ UnappliedSlashOther: UnappliedSlashOther;
2410
+ UncleEntryItem: UncleEntryItem;
2411
+ UnknownTransaction: UnknownTransaction;
2412
+ UnlockChunk: UnlockChunk;
2413
+ UnrewardedRelayer: UnrewardedRelayer;
2414
+ UnrewardedRelayersState: UnrewardedRelayersState;
2415
+ UpgradeGoAhead: UpgradeGoAhead;
2416
+ UpgradeRestriction: UpgradeRestriction;
2417
+ UpwardMessage: UpwardMessage;
2418
+ usize: usize;
2419
+ USize: USize;
2420
+ ValidationCode: ValidationCode;
2421
+ ValidationCodeHash: ValidationCodeHash;
2422
+ ValidationData: ValidationData;
2423
+ ValidationDataType: ValidationDataType;
2424
+ ValidationFunctionParams: ValidationFunctionParams;
2425
+ ValidatorCount: ValidatorCount;
2426
+ ValidatorId: ValidatorId;
2427
+ ValidatorIdOf: ValidatorIdOf;
2428
+ ValidatorIndex: ValidatorIndex;
2429
+ ValidatorIndexCompact: ValidatorIndexCompact;
2430
+ ValidatorPrefs: ValidatorPrefs;
2431
+ ValidatorPrefsTo145: ValidatorPrefsTo145;
2432
+ ValidatorPrefsTo196: ValidatorPrefsTo196;
2433
+ ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;
2434
+ ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;
2435
+ ValidatorSet: ValidatorSet;
2436
+ ValidatorSetId: ValidatorSetId;
2437
+ ValidatorSignature: ValidatorSignature;
2438
+ ValidDisputeStatementKind: ValidDisputeStatementKind;
2439
+ ValidityAttestation: ValidityAttestation;
2440
+ ValidTransaction: ValidTransaction;
2441
+ VecInboundHrmpMessage: VecInboundHrmpMessage;
2442
+ VersionedMultiAsset: VersionedMultiAsset;
2443
+ VersionedMultiAssets: VersionedMultiAssets;
2444
+ VersionedMultiLocation: VersionedMultiLocation;
2445
+ VersionedResponse: VersionedResponse;
2446
+ VersionedXcm: VersionedXcm;
2447
+ VersionMigrationStage: VersionMigrationStage;
2448
+ VestingInfo: VestingInfo;
2449
+ VestingSchedule: VestingSchedule;
2450
+ Vote: Vote;
2451
+ VoteIndex: VoteIndex;
2452
+ Voter: Voter;
2453
+ VoterInfo: VoterInfo;
2454
+ Votes: Votes;
2455
+ VotesTo230: VotesTo230;
2456
+ VoteThreshold: VoteThreshold;
2457
+ VoteWeight: VoteWeight;
2458
+ Voting: Voting;
2459
+ VotingDelegating: VotingDelegating;
2460
+ VotingDirect: VotingDirect;
2461
+ VotingDirectVote: VotingDirectVote;
2462
+ VouchingStatus: VouchingStatus;
2463
+ VrfData: VrfData;
2464
+ VrfOutput: VrfOutput;
2465
+ VrfProof: VrfProof;
2466
+ Weight: Weight;
2467
+ WeightLimitV2: WeightLimitV2;
2468
+ WeightMultiplier: WeightMultiplier;
2469
+ WeightPerClass: WeightPerClass;
2470
+ WeightToFeeCoefficient: WeightToFeeCoefficient;
2471
+ WeightV0: WeightV0;
2472
+ WeightV1: WeightV1;
2473
+ WeightV2: WeightV2;
2474
+ WildFungibility: WildFungibility;
2475
+ WildFungibilityV0: WildFungibilityV0;
2476
+ WildFungibilityV1: WildFungibilityV1;
2477
+ WildFungibilityV2: WildFungibilityV2;
2478
+ WildMultiAsset: WildMultiAsset;
2479
+ WildMultiAssetV1: WildMultiAssetV1;
2480
+ WildMultiAssetV2: WildMultiAssetV2;
2481
+ WinnersData: WinnersData;
2482
+ WinnersData10: WinnersData10;
2483
+ WinnersDataTuple: WinnersDataTuple;
2484
+ WinnersDataTuple10: WinnersDataTuple10;
2485
+ WinningData: WinningData;
2486
+ WinningData10: WinningData10;
2487
+ WinningDataEntry: WinningDataEntry;
2488
+ WithdrawReasons: WithdrawReasons;
2489
+ Xcm: Xcm;
2490
+ XcmAssetId: XcmAssetId;
2491
+ XcmError: XcmError;
2492
+ XcmErrorV0: XcmErrorV0;
2493
+ XcmErrorV1: XcmErrorV1;
2494
+ XcmErrorV2: XcmErrorV2;
2495
+ XcmOrder: XcmOrder;
2496
+ XcmOrderV0: XcmOrderV0;
2497
+ XcmOrderV1: XcmOrderV1;
2498
+ XcmOrderV2: XcmOrderV2;
2499
+ XcmOrigin: XcmOrigin;
2500
+ XcmOriginKind: XcmOriginKind;
2501
+ XcmPaymentApiError: XcmPaymentApiError;
2502
+ XcmpMessageFormat: XcmpMessageFormat;
2503
+ XcmV0: XcmV0;
2504
+ XcmV1: XcmV1;
2505
+ XcmV2: XcmV2;
2506
+ XcmVersion: XcmVersion;
2507
+ } // InterfaceTypes
2508
+ } // declare module