@storagehub/api-augment 0.1.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +674 -0
- package/biome.json +2 -9
- package/dist/parachain/index.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-consts.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-errors.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-events.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-query.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-rpc.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-runtime.js.map +1 -0
- package/dist/parachain/interfaces/augment-api-tx.js.map +1 -0
- package/dist/parachain/interfaces/augment-api.js.map +1 -0
- package/dist/parachain/interfaces/augment-types.js.map +1 -0
- package/dist/parachain/interfaces/definitions.js.map +1 -0
- package/dist/parachain/interfaces/index.js.map +1 -0
- package/dist/{interfaces → parachain/interfaces}/lookup.js +1465 -813
- package/dist/parachain/interfaces/lookup.js.map +1 -0
- package/dist/parachain/interfaces/registry.js.map +1 -0
- package/dist/parachain/interfaces/storagehubclient/definitions.js +7 -0
- package/dist/parachain/interfaces/storagehubclient/definitions.js.map +1 -0
- package/dist/parachain/interfaces/storagehubclient/index.js.map +1 -0
- package/dist/parachain/interfaces/storagehubclient/runtime.js.map +1 -0
- package/dist/parachain/interfaces/storagehubclient/types.js.map +1 -0
- package/dist/parachain/interfaces/types-lookup.js.map +1 -0
- package/dist/parachain/interfaces/types.js.map +1 -0
- package/dist/solochain-evm/index.js +4 -0
- package/dist/solochain-evm/index.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-consts.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-consts.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-errors.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-errors.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-events.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-events.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-query.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-query.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-rpc.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-rpc.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-runtime.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-runtime.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api-tx.js +6 -0
- package/dist/solochain-evm/interfaces/augment-api-tx.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-api.js +10 -0
- package/dist/solochain-evm/interfaces/augment-api.js.map +1 -0
- package/dist/solochain-evm/interfaces/augment-types.js +6 -0
- package/dist/solochain-evm/interfaces/augment-types.js.map +1 -0
- package/dist/solochain-evm/interfaces/definitions.js +2 -0
- package/dist/solochain-evm/interfaces/definitions.js.map +1 -0
- package/dist/solochain-evm/interfaces/index.js +4 -0
- package/dist/solochain-evm/interfaces/index.js.map +1 -0
- package/dist/solochain-evm/interfaces/lookup.js +3744 -0
- package/dist/solochain-evm/interfaces/lookup.js.map +1 -0
- package/dist/solochain-evm/interfaces/registry.js +6 -0
- package/dist/solochain-evm/interfaces/registry.js.map +1 -0
- package/dist/solochain-evm/interfaces/storagehubclient/definitions.js +7 -0
- package/dist/solochain-evm/interfaces/storagehubclient/definitions.js.map +1 -0
- package/dist/solochain-evm/interfaces/storagehubclient/index.js +4 -0
- package/dist/solochain-evm/interfaces/storagehubclient/index.js.map +1 -0
- package/dist/solochain-evm/interfaces/storagehubclient/types.js +4 -0
- package/dist/solochain-evm/interfaces/storagehubclient/types.js.map +1 -0
- package/dist/solochain-evm/interfaces/types-lookup.js +6 -0
- package/dist/solochain-evm/interfaces/types-lookup.js.map +1 -0
- package/dist/solochain-evm/interfaces/types.js +4 -0
- package/dist/solochain-evm/interfaces/types.js.map +1 -0
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-consts.d.ts +147 -20
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-errors.d.ts +235 -8
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-events.d.ts +542 -118
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-query.d.ts +208 -118
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-rpc.d.ts +61 -4
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-runtime.d.ts +97 -8
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-tx.d.ts +356 -181
- package/dist/types/{interfaces → parachain/interfaces}/augment-types.d.ts +144 -11
- package/dist/types/{interfaces → parachain/interfaces}/lookup.d.ts +1067 -513
- package/dist/types/parachain/interfaces/registry.d.ts +311 -0
- package/dist/types/{interfaces → parachain/interfaces}/storagehubclient/types.d.ts +129 -18
- package/dist/types/{interfaces → parachain/interfaces}/types-lookup.d.ts +1619 -887
- package/dist/types/solochain-evm/interfaces/augment-api-consts.d.ts +641 -0
- package/dist/types/solochain-evm/interfaces/augment-api-errors.d.ts +1260 -0
- package/dist/types/solochain-evm/interfaces/augment-api-events.d.ts +2058 -0
- package/dist/types/solochain-evm/interfaces/augment-api-query.d.ts +1317 -0
- package/dist/types/solochain-evm/interfaces/augment-api-rpc.d.ts +775 -0
- package/dist/types/solochain-evm/interfaces/augment-api-runtime.d.ts +535 -0
- package/dist/types/solochain-evm/interfaces/augment-api-tx.d.ts +2381 -0
- package/dist/types/solochain-evm/interfaces/augment-api.d.ts +7 -0
- package/dist/types/solochain-evm/interfaces/augment-types.d.ts +1418 -0
- package/dist/types/solochain-evm/interfaces/index.d.ts +1 -0
- package/dist/types/solochain-evm/interfaces/lookup.d.ts +3363 -0
- package/dist/types/solochain-evm/interfaces/registry.d.ts +252 -0
- package/dist/types/solochain-evm/interfaces/storagehubclient/definitions.d.ts +6 -0
- package/dist/types/solochain-evm/interfaces/storagehubclient/index.d.ts +1 -0
- package/dist/types/solochain-evm/interfaces/storagehubclient/types.d.ts +319 -0
- package/dist/types/solochain-evm/interfaces/types-lookup.d.ts +3577 -0
- package/dist/types/solochain-evm/interfaces/types.d.ts +1 -0
- package/metadata-sh-parachain.json +5 -0
- package/metadata-sh-solochain-evm.json +5 -0
- package/package.json +41 -26
- package/scripts/scrapeMetadata.ts +41 -29
- package/src/parachain/index.ts +3 -0
- package/src/{interfaces → parachain/interfaces}/augment-api-consts.ts +147 -20
- package/src/{interfaces → parachain/interfaces}/augment-api-errors.ts +235 -8
- package/src/{interfaces → parachain/interfaces}/augment-api-events.ts +527 -137
- package/src/{interfaces → parachain/interfaces}/augment-api-query.ts +272 -145
- package/src/{interfaces → parachain/interfaces}/augment-api-rpc.ts +123 -5
- package/src/{interfaces → parachain/interfaces}/augment-api-runtime.ts +183 -8
- package/src/{interfaces → parachain/interfaces}/augment-api-tx.ts +374 -182
- package/src/{interfaces → parachain/interfaces}/augment-types.ts +278 -12
- package/src/parachain/interfaces/definitions.ts +1 -0
- package/src/{interfaces → parachain/interfaces}/lookup.ts +1497 -813
- package/src/{interfaces → parachain/interfaces}/registry.ts +176 -98
- package/src/parachain/interfaces/storagehubclient/definitions.ts +7 -0
- package/src/{interfaces → parachain/interfaces}/storagehubclient/types.ts +158 -18
- package/src/{interfaces → parachain/interfaces}/types-lookup.ts +1970 -896
- package/src/solochain-evm/index.ts +3 -0
- package/src/solochain-evm/interfaces/augment-api-consts.ts +655 -0
- package/src/solochain-evm/interfaces/augment-api-errors.ts +1268 -0
- package/src/solochain-evm/interfaces/augment-api-events.ts +1813 -0
- package/src/solochain-evm/interfaces/augment-api-query.ts +1838 -0
- package/src/solochain-evm/interfaces/augment-api-rpc.ts +1319 -0
- package/src/solochain-evm/interfaces/augment-api-runtime.ts +958 -0
- package/src/solochain-evm/interfaces/augment-api-tx.ts +2818 -0
- package/src/solochain-evm/interfaces/augment-api.ts +10 -0
- package/src/solochain-evm/interfaces/augment-types.ts +2774 -0
- package/src/solochain-evm/interfaces/definitions.ts +1 -0
- package/src/solochain-evm/interfaces/index.ts +4 -0
- package/src/solochain-evm/interfaces/lookup.ts +3788 -0
- package/src/solochain-evm/interfaces/registry.ts +506 -0
- package/src/solochain-evm/interfaces/storagehubclient/definitions.ts +7 -0
- package/src/solochain-evm/interfaces/storagehubclient/index.ts +4 -0
- package/src/solochain-evm/interfaces/storagehubclient/types.ts +391 -0
- package/src/solochain-evm/interfaces/types-lookup.ts +4616 -0
- package/src/solochain-evm/interfaces/types.ts +4 -0
- package/tsconfig.json +17 -20
- package/tsconfig.parachain.json +17 -0
- package/tsconfig.solochain-evm.json +17 -0
- package/tsconfig.tsbuildinfo +1 -0
- package/dist/index.js.map +0 -1
- package/dist/interfaces/augment-api-consts.js.map +0 -1
- package/dist/interfaces/augment-api-errors.js.map +0 -1
- package/dist/interfaces/augment-api-events.js.map +0 -1
- package/dist/interfaces/augment-api-query.js.map +0 -1
- package/dist/interfaces/augment-api-rpc.js.map +0 -1
- package/dist/interfaces/augment-api-runtime.js.map +0 -1
- package/dist/interfaces/augment-api-tx.js.map +0 -1
- package/dist/interfaces/augment-api.js.map +0 -1
- package/dist/interfaces/augment-types.js.map +0 -1
- package/dist/interfaces/definitions.js.map +0 -1
- package/dist/interfaces/index.js.map +0 -1
- package/dist/interfaces/lookup.js.map +0 -1
- package/dist/interfaces/registry.js.map +0 -1
- package/dist/interfaces/storagehubclient/definitions.js +0 -7
- package/dist/interfaces/storagehubclient/definitions.js.map +0 -1
- package/dist/interfaces/storagehubclient/index.js.map +0 -1
- package/dist/interfaces/storagehubclient/runtime.js.map +0 -1
- package/dist/interfaces/storagehubclient/types.js.map +0 -1
- package/dist/interfaces/types-lookup.js.map +0 -1
- package/dist/interfaces/types.js.map +0 -1
- package/dist/types/interfaces/registry.d.ts +0 -272
- package/src/interfaces/storagehubclient/definitions.ts +0 -7
- package/storagehub.json +0 -1
- /package/dist/{index.js → parachain/index.js} +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-consts.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-errors.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-events.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-query.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-rpc.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-runtime.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api-tx.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-api.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/augment-types.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/definitions.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/index.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/registry.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/storagehubclient/index.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/storagehubclient/runtime.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/storagehubclient/types.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/types-lookup.js +0 -0
- /package/dist/{interfaces → parachain/interfaces}/types.js +0 -0
- /package/dist/types/{index.d.ts → parachain/index.d.ts} +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/augment-api.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/definitions.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/index.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/storagehubclient/definitions.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/storagehubclient/index.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/storagehubclient/runtime.d.ts +0 -0
- /package/dist/types/{interfaces → parachain/interfaces}/types.d.ts +0 -0
- /package/{src/index.ts → dist/types/solochain-evm/index.d.ts} +0 -0
- /package/{src/interfaces/definitions.ts → dist/types/solochain-evm/interfaces/definitions.d.ts} +0 -0
- /package/src/{interfaces → parachain/interfaces}/augment-api.ts +0 -0
- /package/src/{interfaces → parachain/interfaces}/index.ts +0 -0
- /package/src/{interfaces → parachain/interfaces}/storagehubclient/index.ts +0 -0
- /package/src/{interfaces → parachain/interfaces}/storagehubclient/runtime.ts +0 -0
- /package/src/{interfaces → parachain/interfaces}/types.ts +0 -0
|
@@ -240,6 +240,7 @@ import type {
|
|
|
240
240
|
ContractContractSpecV3,
|
|
241
241
|
ContractContractSpecV4,
|
|
242
242
|
ContractContractSpecV5,
|
|
243
|
+
ContractContractSpecV6,
|
|
243
244
|
ContractCryptoHasher,
|
|
244
245
|
ContractDiscriminant,
|
|
245
246
|
ContractDisplayName,
|
|
@@ -276,11 +277,14 @@ import type {
|
|
|
276
277
|
ContractMetadataV3,
|
|
277
278
|
ContractMetadataV4,
|
|
278
279
|
ContractMetadataV5,
|
|
280
|
+
ContractMetadataV6,
|
|
279
281
|
ContractProject,
|
|
280
282
|
ContractProjectContract,
|
|
281
283
|
ContractProjectInfo,
|
|
282
284
|
ContractProjectSource,
|
|
283
285
|
ContractProjectV0,
|
|
286
|
+
ContractReviveProjectInfo,
|
|
287
|
+
ContractReviveProjectSource,
|
|
284
288
|
ContractSelector,
|
|
285
289
|
ContractStorageLayout,
|
|
286
290
|
ContractTypeSpec
|
|
@@ -324,6 +328,13 @@ import type {
|
|
|
324
328
|
VotingDirectVote
|
|
325
329
|
} from "@polkadot/types/interfaces/democracy";
|
|
326
330
|
import type { BlockStats } from "@polkadot/types/interfaces/dev";
|
|
331
|
+
import type {
|
|
332
|
+
CallDryRunEffects,
|
|
333
|
+
DispatchResultWithPostInfo,
|
|
334
|
+
PostDispatchInfo,
|
|
335
|
+
XcmDryRunApiError,
|
|
336
|
+
XcmDryRunEffects
|
|
337
|
+
} from "@polkadot/types/interfaces/dryRunApi";
|
|
327
338
|
import type {
|
|
328
339
|
ApprovalFlag,
|
|
329
340
|
DefunctVoter,
|
|
@@ -339,12 +350,17 @@ import type {
|
|
|
339
350
|
BlockV0,
|
|
340
351
|
BlockV1,
|
|
341
352
|
BlockV2,
|
|
353
|
+
BlockV3,
|
|
342
354
|
EIP1559Transaction,
|
|
343
355
|
EIP2930Transaction,
|
|
356
|
+
EIP7702Transaction,
|
|
344
357
|
EthAccessList,
|
|
345
358
|
EthAccessListItem,
|
|
346
359
|
EthAccount,
|
|
347
360
|
EthAddress,
|
|
361
|
+
EthAuthorizationList,
|
|
362
|
+
EthAuthorizationListItem,
|
|
363
|
+
EthAuthorizationSignature,
|
|
348
364
|
EthBlock,
|
|
349
365
|
EthBloom,
|
|
350
366
|
EthCallRequest,
|
|
@@ -356,10 +372,12 @@ import type {
|
|
|
356
372
|
EthFilterTopicEntry,
|
|
357
373
|
EthFilterTopicInner,
|
|
358
374
|
EthHeader,
|
|
375
|
+
EthLegacyTransactionSignature,
|
|
359
376
|
EthLog,
|
|
360
377
|
EthReceipt,
|
|
361
378
|
EthReceiptV0,
|
|
362
379
|
EthReceiptV3,
|
|
380
|
+
EthReceiptV4,
|
|
363
381
|
EthRichBlock,
|
|
364
382
|
EthRichHeader,
|
|
365
383
|
EthStorageProof,
|
|
@@ -382,7 +400,8 @@ import type {
|
|
|
382
400
|
LegacyTransaction,
|
|
383
401
|
TransactionV0,
|
|
384
402
|
TransactionV1,
|
|
385
|
-
TransactionV2
|
|
403
|
+
TransactionV2,
|
|
404
|
+
TransactionV3
|
|
386
405
|
} from "@polkadot/types/interfaces/eth";
|
|
387
406
|
import type {
|
|
388
407
|
EvmAccount,
|
|
@@ -409,10 +428,13 @@ import type {
|
|
|
409
428
|
ExtrinsicPayload,
|
|
410
429
|
ExtrinsicPayloadUnknown,
|
|
411
430
|
ExtrinsicPayloadV4,
|
|
431
|
+
ExtrinsicPayloadV5,
|
|
412
432
|
ExtrinsicSignature,
|
|
413
433
|
ExtrinsicSignatureV4,
|
|
434
|
+
ExtrinsicSignatureV5,
|
|
414
435
|
ExtrinsicUnknown,
|
|
415
436
|
ExtrinsicV4,
|
|
437
|
+
ExtrinsicV5,
|
|
416
438
|
ImmortalEra,
|
|
417
439
|
MortalEra,
|
|
418
440
|
MultiSignature,
|
|
@@ -494,6 +516,7 @@ import type { CallIndex, LotteryConfig } from "@polkadot/types/interfaces/lotter
|
|
|
494
516
|
import type {
|
|
495
517
|
CustomMetadata15,
|
|
496
518
|
CustomValueMetadata15,
|
|
519
|
+
EnumDeprecationInfoV16,
|
|
497
520
|
ErrorMetadataLatest,
|
|
498
521
|
ErrorMetadataV10,
|
|
499
522
|
ErrorMetadataV11,
|
|
@@ -514,6 +537,7 @@ import type {
|
|
|
514
537
|
ExtrinsicMetadataV13,
|
|
515
538
|
ExtrinsicMetadataV14,
|
|
516
539
|
ExtrinsicMetadataV15,
|
|
540
|
+
ExtrinsicMetadataV16,
|
|
517
541
|
FunctionArgumentMetadataLatest,
|
|
518
542
|
FunctionArgumentMetadataV10,
|
|
519
543
|
FunctionArgumentMetadataV11,
|
|
@@ -528,6 +552,7 @@ import type {
|
|
|
528
552
|
FunctionMetadataV13,
|
|
529
553
|
FunctionMetadataV14,
|
|
530
554
|
FunctionMetadataV9,
|
|
555
|
+
ItemDeprecationInfoV16,
|
|
531
556
|
MetadataAll,
|
|
532
557
|
MetadataLatest,
|
|
533
558
|
MetadataV10,
|
|
@@ -536,6 +561,7 @@ import type {
|
|
|
536
561
|
MetadataV13,
|
|
537
562
|
MetadataV14,
|
|
538
563
|
MetadataV15,
|
|
564
|
+
MetadataV16,
|
|
539
565
|
MetadataV9,
|
|
540
566
|
ModuleConstantMetadataV10,
|
|
541
567
|
ModuleConstantMetadataV11,
|
|
@@ -549,24 +575,34 @@ import type {
|
|
|
549
575
|
ModuleMetadataV9,
|
|
550
576
|
OpaqueMetadata,
|
|
551
577
|
OuterEnums15,
|
|
578
|
+
PalletAssociatedTypeMetadataV16,
|
|
552
579
|
PalletCallMetadataLatest,
|
|
553
580
|
PalletCallMetadataV14,
|
|
581
|
+
PalletCallMetadataV16,
|
|
554
582
|
PalletConstantMetadataLatest,
|
|
555
583
|
PalletConstantMetadataV14,
|
|
584
|
+
PalletConstantMetadataV16,
|
|
556
585
|
PalletErrorMetadataLatest,
|
|
557
586
|
PalletErrorMetadataV14,
|
|
587
|
+
PalletErrorMetadataV16,
|
|
558
588
|
PalletEventMetadataLatest,
|
|
559
589
|
PalletEventMetadataV14,
|
|
590
|
+
PalletEventMetadataV16,
|
|
560
591
|
PalletMetadataLatest,
|
|
561
592
|
PalletMetadataV14,
|
|
562
593
|
PalletMetadataV15,
|
|
594
|
+
PalletMetadataV16,
|
|
563
595
|
PalletStorageMetadataLatest,
|
|
564
596
|
PalletStorageMetadataV14,
|
|
597
|
+
PalletStorageMetadataV16,
|
|
598
|
+
PalletViewFunctionMetadataV16,
|
|
565
599
|
PortableType,
|
|
566
600
|
PortableTypeV14,
|
|
567
601
|
RuntimeApiMetadataLatest,
|
|
568
602
|
RuntimeApiMetadataV15,
|
|
603
|
+
RuntimeApiMetadataV16,
|
|
569
604
|
RuntimeApiMethodMetadataV15,
|
|
605
|
+
RuntimeApiMethodMetadataV16,
|
|
570
606
|
RuntimeApiMethodParamMetadataV15,
|
|
571
607
|
SignedExtensionMetadataLatest,
|
|
572
608
|
SignedExtensionMetadataV14,
|
|
@@ -576,6 +612,7 @@ import type {
|
|
|
576
612
|
StorageEntryMetadataV12,
|
|
577
613
|
StorageEntryMetadataV13,
|
|
578
614
|
StorageEntryMetadataV14,
|
|
615
|
+
StorageEntryMetadataV16,
|
|
579
616
|
StorageEntryMetadataV9,
|
|
580
617
|
StorageEntryModifierLatest,
|
|
581
618
|
StorageEntryModifierV10,
|
|
@@ -602,7 +639,10 @@ import type {
|
|
|
602
639
|
StorageMetadataV11,
|
|
603
640
|
StorageMetadataV12,
|
|
604
641
|
StorageMetadataV13,
|
|
605
|
-
StorageMetadataV9
|
|
642
|
+
StorageMetadataV9,
|
|
643
|
+
TransactionExtensionMetadataLatest,
|
|
644
|
+
TransactionExtensionMetadataV16,
|
|
645
|
+
VariantDeprecationInfoV16
|
|
606
646
|
} from "@polkadot/types/interfaces/metadata";
|
|
607
647
|
import type {
|
|
608
648
|
Mixnode,
|
|
@@ -994,6 +1034,7 @@ import type {
|
|
|
994
1034
|
ElectionCompute,
|
|
995
1035
|
ElectionPhase,
|
|
996
1036
|
ElectionResult,
|
|
1037
|
+
ElectionResultToSpec10,
|
|
997
1038
|
ElectionScore,
|
|
998
1039
|
ElectionSize,
|
|
999
1040
|
ElectionStatus,
|
|
@@ -1176,48 +1217,104 @@ import type {
|
|
|
1176
1217
|
import type { Multisig, Timepoint } from "@polkadot/types/interfaces/utility";
|
|
1177
1218
|
import type { VestingInfo } from "@polkadot/types/interfaces/vesting";
|
|
1178
1219
|
import type {
|
|
1220
|
+
AssetIdV2,
|
|
1221
|
+
AssetIdV3,
|
|
1222
|
+
AssetIdV4,
|
|
1223
|
+
AssetIdV5,
|
|
1179
1224
|
AssetInstance,
|
|
1180
1225
|
AssetInstanceV0,
|
|
1181
1226
|
AssetInstanceV1,
|
|
1182
1227
|
AssetInstanceV2,
|
|
1228
|
+
AssetInstanceV3,
|
|
1229
|
+
AssetInstanceV4,
|
|
1230
|
+
AssetInstanceV5,
|
|
1183
1231
|
BodyId,
|
|
1232
|
+
BodyIdV2,
|
|
1233
|
+
BodyIdV3,
|
|
1184
1234
|
BodyPart,
|
|
1235
|
+
BodyPartV2,
|
|
1236
|
+
BodyPartV3,
|
|
1185
1237
|
DoubleEncodedCall,
|
|
1186
1238
|
Fungibility,
|
|
1187
1239
|
FungibilityV0,
|
|
1188
1240
|
FungibilityV1,
|
|
1189
1241
|
FungibilityV2,
|
|
1242
|
+
FungibilityV3,
|
|
1243
|
+
FungibilityV4,
|
|
1244
|
+
FungibilityV5,
|
|
1245
|
+
HintV5,
|
|
1190
1246
|
InboundStatus,
|
|
1191
1247
|
InstructionV2,
|
|
1248
|
+
InstructionV3,
|
|
1249
|
+
InstructionV4,
|
|
1250
|
+
InstructionV5,
|
|
1192
1251
|
InteriorMultiLocation,
|
|
1252
|
+
InteriorMultiLocationV2,
|
|
1253
|
+
InteriorMultiLocationV3,
|
|
1254
|
+
InteriorMultiLocationV5,
|
|
1193
1255
|
Junction,
|
|
1194
1256
|
JunctionV0,
|
|
1195
1257
|
JunctionV1,
|
|
1196
1258
|
JunctionV2,
|
|
1259
|
+
JunctionV3,
|
|
1260
|
+
JunctionV4,
|
|
1261
|
+
JunctionV5,
|
|
1197
1262
|
Junctions,
|
|
1198
1263
|
JunctionsV1,
|
|
1199
1264
|
JunctionsV2,
|
|
1265
|
+
JunctionsV3,
|
|
1266
|
+
JunctionsV4,
|
|
1267
|
+
JunctionsV5,
|
|
1268
|
+
MaxPalletNameLen,
|
|
1269
|
+
MaxPalletsInfo,
|
|
1270
|
+
MaybeErrorCodeV3,
|
|
1200
1271
|
MultiAsset,
|
|
1201
1272
|
MultiAssetFilter,
|
|
1202
1273
|
MultiAssetFilterV1,
|
|
1203
1274
|
MultiAssetFilterV2,
|
|
1275
|
+
MultiAssetFilterV3,
|
|
1276
|
+
MultiAssetFilterV4,
|
|
1277
|
+
MultiAssetFilterV5,
|
|
1278
|
+
MultiAssetTransferFilterV5,
|
|
1204
1279
|
MultiAssetV0,
|
|
1205
1280
|
MultiAssetV1,
|
|
1206
1281
|
MultiAssetV2,
|
|
1282
|
+
MultiAssetV3,
|
|
1283
|
+
MultiAssetV4,
|
|
1284
|
+
MultiAssetV5,
|
|
1207
1285
|
MultiAssets,
|
|
1208
1286
|
MultiAssetsV1,
|
|
1209
1287
|
MultiAssetsV2,
|
|
1288
|
+
MultiAssetsV3,
|
|
1289
|
+
MultiAssetsV4,
|
|
1290
|
+
MultiAssetsV5,
|
|
1210
1291
|
MultiLocation,
|
|
1211
1292
|
MultiLocationV0,
|
|
1212
1293
|
MultiLocationV1,
|
|
1213
1294
|
MultiLocationV2,
|
|
1295
|
+
MultiLocationV3,
|
|
1296
|
+
MultiLocationV4,
|
|
1297
|
+
MultiLocationV5,
|
|
1214
1298
|
NetworkId,
|
|
1299
|
+
NetworkIdV2,
|
|
1300
|
+
NetworkIdV3,
|
|
1301
|
+
NetworkIdV4,
|
|
1302
|
+
NetworkIdV5,
|
|
1215
1303
|
OriginKindV0,
|
|
1216
1304
|
OriginKindV1,
|
|
1217
1305
|
OriginKindV2,
|
|
1306
|
+
OriginKindV3,
|
|
1307
|
+
OriginKindV4,
|
|
1218
1308
|
OutboundStatus,
|
|
1219
1309
|
Outcome,
|
|
1310
|
+
OutcomeV4,
|
|
1311
|
+
PalletInfoV3,
|
|
1312
|
+
PalletInfoV4,
|
|
1313
|
+
PalletInfoV5,
|
|
1220
1314
|
QueryId,
|
|
1315
|
+
QueryResponseInfoV3,
|
|
1316
|
+
QueryResponseInfoV4,
|
|
1317
|
+
QueryResponseInfoV5,
|
|
1221
1318
|
QueryStatus,
|
|
1222
1319
|
QueueConfigData,
|
|
1223
1320
|
Response,
|
|
@@ -1225,74 +1322,111 @@ import type {
|
|
|
1225
1322
|
ResponseV1,
|
|
1226
1323
|
ResponseV2,
|
|
1227
1324
|
ResponseV2Error,
|
|
1228
|
-
|
|
1325
|
+
ResponseV3,
|
|
1326
|
+
ResponseV3Error,
|
|
1327
|
+
ResponseV3Result,
|
|
1328
|
+
ResponseV4,
|
|
1329
|
+
ResponseV5,
|
|
1330
|
+
UncheckedFungibilityV4,
|
|
1331
|
+
UncheckedFungibilityV5,
|
|
1229
1332
|
VersionMigrationStage,
|
|
1333
|
+
VersionV3,
|
|
1334
|
+
VersionV4,
|
|
1230
1335
|
VersionedMultiAsset,
|
|
1231
1336
|
VersionedMultiAssets,
|
|
1232
1337
|
VersionedMultiLocation,
|
|
1233
1338
|
VersionedResponse,
|
|
1234
1339
|
VersionedXcm,
|
|
1235
1340
|
WeightLimitV2,
|
|
1341
|
+
WeightLimitV3,
|
|
1236
1342
|
WildFungibility,
|
|
1237
1343
|
WildFungibilityV0,
|
|
1238
1344
|
WildFungibilityV1,
|
|
1239
1345
|
WildFungibilityV2,
|
|
1346
|
+
WildFungibilityV3,
|
|
1347
|
+
WildFungibilityV4,
|
|
1348
|
+
WildFungibilityV5,
|
|
1240
1349
|
WildMultiAsset,
|
|
1241
1350
|
WildMultiAssetV1,
|
|
1242
1351
|
WildMultiAssetV2,
|
|
1352
|
+
WildMultiAssetV3,
|
|
1353
|
+
WildMultiAssetV4,
|
|
1354
|
+
WildMultiAssetV5,
|
|
1243
1355
|
Xcm,
|
|
1244
1356
|
XcmAssetId,
|
|
1245
1357
|
XcmError,
|
|
1246
1358
|
XcmErrorV0,
|
|
1247
1359
|
XcmErrorV1,
|
|
1248
1360
|
XcmErrorV2,
|
|
1249
|
-
|
|
1361
|
+
XcmErrorV3,
|
|
1362
|
+
XcmErrorV4,
|
|
1363
|
+
XcmErrorV5,
|
|
1250
1364
|
XcmOrderV0,
|
|
1251
1365
|
XcmOrderV1,
|
|
1252
|
-
XcmOrderV2,
|
|
1253
1366
|
XcmOrigin,
|
|
1254
1367
|
XcmOriginKind,
|
|
1255
1368
|
XcmV0,
|
|
1256
1369
|
XcmV1,
|
|
1257
1370
|
XcmV2,
|
|
1371
|
+
XcmV3,
|
|
1372
|
+
XcmV4,
|
|
1373
|
+
XcmV5,
|
|
1258
1374
|
XcmVersion,
|
|
1259
1375
|
XcmpMessageFormat
|
|
1260
1376
|
} from "@polkadot/types/interfaces/xcm";
|
|
1261
1377
|
import type { XcmPaymentApiError } from "@polkadot/types/interfaces/xcmPaymentApi";
|
|
1262
1378
|
import type { Error } from "@polkadot/types/interfaces/xcmRuntimeApi";
|
|
1263
1379
|
import type {
|
|
1380
|
+
AddFilesToForestStorageResult,
|
|
1264
1381
|
BackupStorageProvider,
|
|
1265
1382
|
BackupStorageProviderId,
|
|
1383
|
+
BucketId,
|
|
1384
|
+
CheckpointChallenge,
|
|
1266
1385
|
ChunkId,
|
|
1267
1386
|
FileMetadata,
|
|
1387
|
+
GenericApplyDeltaEventInfoError,
|
|
1268
1388
|
GetBspInfoError,
|
|
1269
1389
|
GetChallengePeriodError,
|
|
1270
1390
|
GetChallengeSeedError,
|
|
1271
1391
|
GetCheckpointChallengesError,
|
|
1272
1392
|
GetFileFromFileStorageResult,
|
|
1273
|
-
GetLastTickProviderSubmittedProofError,
|
|
1274
1393
|
GetNextDeadlineTickError,
|
|
1394
|
+
GetProofSubmissionRecordError,
|
|
1395
|
+
GetStakeError,
|
|
1275
1396
|
GetUsersWithDebtOverThresholdError,
|
|
1276
1397
|
IncompleteFileStatus,
|
|
1398
|
+
IncompleteStorageRequestMetadataResponse,
|
|
1399
|
+
IsStorageRequestOpenToVolunteersError,
|
|
1400
|
+
LoadFileInStorageResult,
|
|
1277
1401
|
MainStorageProviderId,
|
|
1278
1402
|
MerklePatriciaRoot,
|
|
1279
1403
|
Multiaddresses,
|
|
1280
1404
|
ProviderId,
|
|
1281
1405
|
QueryAvailableStorageCapacityError,
|
|
1282
1406
|
QueryBspConfirmChunksToProveForFileError,
|
|
1407
|
+
QueryBucketsForMspError,
|
|
1408
|
+
QueryBucketsOfUserStoredByMspError,
|
|
1283
1409
|
QueryConfirmChunksToProveForFileError,
|
|
1284
1410
|
QueryEarliestChangeCapacityBlockError,
|
|
1285
1411
|
QueryFileEarliestVolunteerBlockError,
|
|
1412
|
+
QueryIncompleteStorageRequestMetadataError,
|
|
1286
1413
|
QueryMspConfirmChunksToProveForFileError,
|
|
1287
1414
|
QueryMspIdOfBucketIdError,
|
|
1288
1415
|
QueryProviderMultiaddressesError,
|
|
1289
1416
|
QueryStorageProviderCapacityError,
|
|
1290
1417
|
RandomnessOutput,
|
|
1418
|
+
RemoveFilesFromForestStorageResult,
|
|
1419
|
+
ReputationWeightType,
|
|
1291
1420
|
SaveFileToDisk,
|
|
1421
|
+
ShouldRemoveFile,
|
|
1292
1422
|
StorageDataUnit,
|
|
1293
1423
|
StorageProviderId,
|
|
1294
|
-
|
|
1295
|
-
|
|
1424
|
+
StorageRequestMetadata,
|
|
1425
|
+
TrieRemoveMutation,
|
|
1426
|
+
ValuePropId,
|
|
1427
|
+
ValueProposition,
|
|
1428
|
+
ValuePropositionWithId
|
|
1429
|
+
} from "@storagehub/api-augment/parachain/interfaces/storagehubclient";
|
|
1296
1430
|
|
|
1297
1431
|
declare module "@polkadot/types/types/registry" {
|
|
1298
1432
|
interface InterfaceTypes {
|
|
@@ -1322,6 +1456,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1322
1456
|
ActiveGiltsTotal: ActiveGiltsTotal;
|
|
1323
1457
|
ActiveIndex: ActiveIndex;
|
|
1324
1458
|
ActiveRecovery: ActiveRecovery;
|
|
1459
|
+
AddFilesToForestStorageResult: AddFilesToForestStorageResult;
|
|
1325
1460
|
Address: Address;
|
|
1326
1461
|
AliveContractInfo: AliveContractInfo;
|
|
1327
1462
|
AllowedSlots: AllowedSlots;
|
|
@@ -1339,10 +1474,17 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1339
1474
|
AssetDestroyWitness: AssetDestroyWitness;
|
|
1340
1475
|
AssetDetails: AssetDetails;
|
|
1341
1476
|
AssetId: AssetId;
|
|
1477
|
+
AssetIdV2: AssetIdV2;
|
|
1478
|
+
AssetIdV3: AssetIdV3;
|
|
1479
|
+
AssetIdV4: AssetIdV4;
|
|
1480
|
+
AssetIdV5: AssetIdV5;
|
|
1342
1481
|
AssetInstance: AssetInstance;
|
|
1343
1482
|
AssetInstanceV0: AssetInstanceV0;
|
|
1344
1483
|
AssetInstanceV1: AssetInstanceV1;
|
|
1345
1484
|
AssetInstanceV2: AssetInstanceV2;
|
|
1485
|
+
AssetInstanceV3: AssetInstanceV3;
|
|
1486
|
+
AssetInstanceV4: AssetInstanceV4;
|
|
1487
|
+
AssetInstanceV5: AssetInstanceV5;
|
|
1346
1488
|
AssetMetadata: AssetMetadata;
|
|
1347
1489
|
AssetOptions: AssetOptions;
|
|
1348
1490
|
AssignmentId: AssignmentId;
|
|
@@ -1415,9 +1557,14 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1415
1557
|
BlockV0: BlockV0;
|
|
1416
1558
|
BlockV1: BlockV1;
|
|
1417
1559
|
BlockV2: BlockV2;
|
|
1560
|
+
BlockV3: BlockV3;
|
|
1418
1561
|
BlockWeights: BlockWeights;
|
|
1419
1562
|
BodyId: BodyId;
|
|
1563
|
+
BodyIdV2: BodyIdV2;
|
|
1564
|
+
BodyIdV3: BodyIdV3;
|
|
1420
1565
|
BodyPart: BodyPart;
|
|
1566
|
+
BodyPartV2: BodyPartV2;
|
|
1567
|
+
BodyPartV3: BodyPartV3;
|
|
1421
1568
|
bool: bool;
|
|
1422
1569
|
Bool: Bool;
|
|
1423
1570
|
Bounty: Bounty;
|
|
@@ -1430,9 +1577,11 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1430
1577
|
BridgedBlockNumber: BridgedBlockNumber;
|
|
1431
1578
|
BridgedHeader: BridgedHeader;
|
|
1432
1579
|
BridgeMessageId: BridgeMessageId;
|
|
1580
|
+
BucketId: BucketId;
|
|
1433
1581
|
BufferedSessionChange: BufferedSessionChange;
|
|
1434
1582
|
Bytes: Bytes;
|
|
1435
1583
|
Call: Call;
|
|
1584
|
+
CallDryRunEffects: CallDryRunEffects;
|
|
1436
1585
|
CallHash: CallHash;
|
|
1437
1586
|
CallHashOf: CallHashOf;
|
|
1438
1587
|
CallIndex: CallIndex;
|
|
@@ -1450,6 +1599,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1450
1599
|
ChangesTrieConfiguration: ChangesTrieConfiguration;
|
|
1451
1600
|
ChangesTrieSignal: ChangesTrieSignal;
|
|
1452
1601
|
CheckInherentsResult: CheckInherentsResult;
|
|
1602
|
+
CheckpointChallenge: CheckpointChallenge;
|
|
1453
1603
|
ChunkId: ChunkId;
|
|
1454
1604
|
ClassDetails: ClassDetails;
|
|
1455
1605
|
ClassId: ClassId;
|
|
@@ -1492,6 +1642,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1492
1642
|
ContractContractSpecV3: ContractContractSpecV3;
|
|
1493
1643
|
ContractContractSpecV4: ContractContractSpecV4;
|
|
1494
1644
|
ContractContractSpecV5: ContractContractSpecV5;
|
|
1645
|
+
ContractContractSpecV6: ContractContractSpecV6;
|
|
1495
1646
|
ContractCryptoHasher: ContractCryptoHasher;
|
|
1496
1647
|
ContractDiscriminant: ContractDiscriminant;
|
|
1497
1648
|
ContractDisplayName: ContractDisplayName;
|
|
@@ -1542,12 +1693,15 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1542
1693
|
ContractMetadataV3: ContractMetadataV3;
|
|
1543
1694
|
ContractMetadataV4: ContractMetadataV4;
|
|
1544
1695
|
ContractMetadataV5: ContractMetadataV5;
|
|
1696
|
+
ContractMetadataV6: ContractMetadataV6;
|
|
1545
1697
|
ContractProject: ContractProject;
|
|
1546
1698
|
ContractProjectContract: ContractProjectContract;
|
|
1547
1699
|
ContractProjectInfo: ContractProjectInfo;
|
|
1548
1700
|
ContractProjectSource: ContractProjectSource;
|
|
1549
1701
|
ContractProjectV0: ContractProjectV0;
|
|
1550
1702
|
ContractReturnFlags: ContractReturnFlags;
|
|
1703
|
+
ContractReviveProjectInfo: ContractReviveProjectInfo;
|
|
1704
|
+
ContractReviveProjectSource: ContractReviveProjectSource;
|
|
1551
1705
|
ContractSelector: ContractSelector;
|
|
1552
1706
|
ContractStorageKey: ContractStorageKey;
|
|
1553
1707
|
ContractStorageLayout: ContractStorageLayout;
|
|
@@ -1593,6 +1747,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1593
1747
|
DispatchResult: DispatchResult;
|
|
1594
1748
|
DispatchResultOf: DispatchResultOf;
|
|
1595
1749
|
DispatchResultTo198: DispatchResultTo198;
|
|
1750
|
+
DispatchResultWithPostInfo: DispatchResultWithPostInfo;
|
|
1596
1751
|
DisputeLocation: DisputeLocation;
|
|
1597
1752
|
DisputeProof: DisputeProof;
|
|
1598
1753
|
DisputeResult: DisputeResult;
|
|
@@ -1607,14 +1762,17 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1607
1762
|
Ed25519Signature: Ed25519Signature;
|
|
1608
1763
|
EIP1559Transaction: EIP1559Transaction;
|
|
1609
1764
|
EIP2930Transaction: EIP2930Transaction;
|
|
1765
|
+
EIP7702Transaction: EIP7702Transaction;
|
|
1610
1766
|
ElectionCompute: ElectionCompute;
|
|
1611
1767
|
ElectionPhase: ElectionPhase;
|
|
1612
1768
|
ElectionResult: ElectionResult;
|
|
1769
|
+
ElectionResultToSpec10: ElectionResultToSpec10;
|
|
1613
1770
|
ElectionScore: ElectionScore;
|
|
1614
1771
|
ElectionSize: ElectionSize;
|
|
1615
1772
|
ElectionStatus: ElectionStatus;
|
|
1616
1773
|
EncodedFinalityProofs: EncodedFinalityProofs;
|
|
1617
1774
|
EncodedJustification: EncodedJustification;
|
|
1775
|
+
EnumDeprecationInfoV16: EnumDeprecationInfoV16;
|
|
1618
1776
|
Epoch: Epoch;
|
|
1619
1777
|
EpochAuthorship: EpochAuthorship;
|
|
1620
1778
|
Era: Era;
|
|
@@ -1634,6 +1792,9 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1634
1792
|
EthAccessListItem: EthAccessListItem;
|
|
1635
1793
|
EthAccount: EthAccount;
|
|
1636
1794
|
EthAddress: EthAddress;
|
|
1795
|
+
EthAuthorizationList: EthAuthorizationList;
|
|
1796
|
+
EthAuthorizationListItem: EthAuthorizationListItem;
|
|
1797
|
+
EthAuthorizationSignature: EthAuthorizationSignature;
|
|
1637
1798
|
EthBlock: EthBlock;
|
|
1638
1799
|
EthBloom: EthBloom;
|
|
1639
1800
|
EthCallRequest: EthCallRequest;
|
|
@@ -1649,10 +1810,12 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1649
1810
|
EthFilterTopicEntry: EthFilterTopicEntry;
|
|
1650
1811
|
EthFilterTopicInner: EthFilterTopicInner;
|
|
1651
1812
|
EthHeader: EthHeader;
|
|
1813
|
+
EthLegacyTransactionSignature: EthLegacyTransactionSignature;
|
|
1652
1814
|
EthLog: EthLog;
|
|
1653
1815
|
EthReceipt: EthReceipt;
|
|
1654
1816
|
EthReceiptV0: EthReceiptV0;
|
|
1655
1817
|
EthReceiptV3: EthReceiptV3;
|
|
1818
|
+
EthReceiptV4: EthReceiptV4;
|
|
1656
1819
|
EthRichBlock: EthRichBlock;
|
|
1657
1820
|
EthRichHeader: EthRichHeader;
|
|
1658
1821
|
EthStorageProof: EthStorageProof;
|
|
@@ -1708,16 +1871,20 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1708
1871
|
ExtrinsicMetadataV13: ExtrinsicMetadataV13;
|
|
1709
1872
|
ExtrinsicMetadataV14: ExtrinsicMetadataV14;
|
|
1710
1873
|
ExtrinsicMetadataV15: ExtrinsicMetadataV15;
|
|
1874
|
+
ExtrinsicMetadataV16: ExtrinsicMetadataV16;
|
|
1711
1875
|
ExtrinsicOrHash: ExtrinsicOrHash;
|
|
1712
1876
|
ExtrinsicPayload: ExtrinsicPayload;
|
|
1713
1877
|
ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;
|
|
1714
1878
|
ExtrinsicPayloadV4: ExtrinsicPayloadV4;
|
|
1879
|
+
ExtrinsicPayloadV5: ExtrinsicPayloadV5;
|
|
1715
1880
|
ExtrinsicSignature: ExtrinsicSignature;
|
|
1716
1881
|
ExtrinsicSignatureV4: ExtrinsicSignatureV4;
|
|
1882
|
+
ExtrinsicSignatureV5: ExtrinsicSignatureV5;
|
|
1717
1883
|
ExtrinsicStatus: ExtrinsicStatus;
|
|
1718
1884
|
ExtrinsicsWeight: ExtrinsicsWeight;
|
|
1719
1885
|
ExtrinsicUnknown: ExtrinsicUnknown;
|
|
1720
1886
|
ExtrinsicV4: ExtrinsicV4;
|
|
1887
|
+
ExtrinsicV5: ExtrinsicV5;
|
|
1721
1888
|
f32: f32;
|
|
1722
1889
|
F32: F32;
|
|
1723
1890
|
f64: f64;
|
|
@@ -1754,16 +1921,21 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1754
1921
|
FungibilityV0: FungibilityV0;
|
|
1755
1922
|
FungibilityV1: FungibilityV1;
|
|
1756
1923
|
FungibilityV2: FungibilityV2;
|
|
1924
|
+
FungibilityV3: FungibilityV3;
|
|
1925
|
+
FungibilityV4: FungibilityV4;
|
|
1926
|
+
FungibilityV5: FungibilityV5;
|
|
1757
1927
|
FungiblesAccessError: FungiblesAccessError;
|
|
1758
1928
|
Gas: Gas;
|
|
1929
|
+
GenericApplyDeltaEventInfoError: GenericApplyDeltaEventInfoError;
|
|
1759
1930
|
GenesisBuildErr: GenesisBuildErr;
|
|
1760
1931
|
GetBspInfoError: GetBspInfoError;
|
|
1761
1932
|
GetChallengePeriodError: GetChallengePeriodError;
|
|
1762
1933
|
GetChallengeSeedError: GetChallengeSeedError;
|
|
1763
1934
|
GetCheckpointChallengesError: GetCheckpointChallengesError;
|
|
1764
1935
|
GetFileFromFileStorageResult: GetFileFromFileStorageResult;
|
|
1765
|
-
GetLastTickProviderSubmittedProofError: GetLastTickProviderSubmittedProofError;
|
|
1766
1936
|
GetNextDeadlineTickError: GetNextDeadlineTickError;
|
|
1937
|
+
GetProofSubmissionRecordError: GetProofSubmissionRecordError;
|
|
1938
|
+
GetStakeError: GetStakeError;
|
|
1767
1939
|
GetUsersWithDebtOverThresholdError: GetUsersWithDebtOverThresholdError;
|
|
1768
1940
|
GiltBid: GiltBid;
|
|
1769
1941
|
GlobalValidationData: GlobalValidationData;
|
|
@@ -1793,6 +1965,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1793
1965
|
Health: Health;
|
|
1794
1966
|
Heartbeat: Heartbeat;
|
|
1795
1967
|
HeartbeatTo244: HeartbeatTo244;
|
|
1968
|
+
HintV5: HintV5;
|
|
1796
1969
|
HostConfiguration: HostConfiguration;
|
|
1797
1970
|
HostFnWeights: HostFnWeights;
|
|
1798
1971
|
HostFnWeightsTo264: HostFnWeightsTo264;
|
|
@@ -1833,6 +2006,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1833
2006
|
IncomingParachainDeploy: IncomingParachainDeploy;
|
|
1834
2007
|
IncomingParachainFixed: IncomingParachainFixed;
|
|
1835
2008
|
IncompleteFileStatus: IncompleteFileStatus;
|
|
2009
|
+
IncompleteStorageRequestMetadataResponse: IncompleteStorageRequestMetadataResponse;
|
|
1836
2010
|
Index: Index;
|
|
1837
2011
|
IndicesLookupSource: IndicesLookupSource;
|
|
1838
2012
|
IndividualExposure: IndividualExposure;
|
|
@@ -1849,20 +2023,34 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1849
2023
|
InstantiateReturnValueOk: InstantiateReturnValueOk;
|
|
1850
2024
|
InstantiateReturnValueTo267: InstantiateReturnValueTo267;
|
|
1851
2025
|
InstructionV2: InstructionV2;
|
|
2026
|
+
InstructionV3: InstructionV3;
|
|
2027
|
+
InstructionV4: InstructionV4;
|
|
2028
|
+
InstructionV5: InstructionV5;
|
|
1852
2029
|
InstructionWeights: InstructionWeights;
|
|
1853
2030
|
InteriorMultiLocation: InteriorMultiLocation;
|
|
2031
|
+
InteriorMultiLocationV2: InteriorMultiLocationV2;
|
|
2032
|
+
InteriorMultiLocationV3: InteriorMultiLocationV3;
|
|
2033
|
+
InteriorMultiLocationV5: InteriorMultiLocationV5;
|
|
1854
2034
|
InvalidDisputeStatementKind: InvalidDisputeStatementKind;
|
|
1855
2035
|
InvalidTransaction: InvalidTransaction;
|
|
1856
2036
|
isize: isize;
|
|
1857
2037
|
ISize: ISize;
|
|
2038
|
+
IsStorageRequestOpenToVolunteersError: IsStorageRequestOpenToVolunteersError;
|
|
2039
|
+
ItemDeprecationInfoV16: ItemDeprecationInfoV16;
|
|
1858
2040
|
Json: Json;
|
|
1859
2041
|
Junction: Junction;
|
|
1860
2042
|
Junctions: Junctions;
|
|
1861
2043
|
JunctionsV1: JunctionsV1;
|
|
1862
2044
|
JunctionsV2: JunctionsV2;
|
|
2045
|
+
JunctionsV3: JunctionsV3;
|
|
2046
|
+
JunctionsV4: JunctionsV4;
|
|
2047
|
+
JunctionsV5: JunctionsV5;
|
|
1863
2048
|
JunctionV0: JunctionV0;
|
|
1864
2049
|
JunctionV1: JunctionV1;
|
|
1865
2050
|
JunctionV2: JunctionV2;
|
|
2051
|
+
JunctionV3: JunctionV3;
|
|
2052
|
+
JunctionV4: JunctionV4;
|
|
2053
|
+
JunctionV5: JunctionV5;
|
|
1866
2054
|
Justification: Justification;
|
|
1867
2055
|
JustificationNotification: JustificationNotification;
|
|
1868
2056
|
Justifications: Justifications;
|
|
@@ -1882,12 +2070,16 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1882
2070
|
LegacyTransaction: LegacyTransaction;
|
|
1883
2071
|
Limits: Limits;
|
|
1884
2072
|
LimitsTo264: LimitsTo264;
|
|
2073
|
+
LoadFileInStorageResult: LoadFileInStorageResult;
|
|
1885
2074
|
LocalValidationData: LocalValidationData;
|
|
1886
2075
|
LockIdentifier: LockIdentifier;
|
|
1887
2076
|
LookupSource: LookupSource;
|
|
1888
2077
|
LookupTarget: LookupTarget;
|
|
1889
2078
|
LotteryConfig: LotteryConfig;
|
|
1890
2079
|
MainStorageProviderId: MainStorageProviderId;
|
|
2080
|
+
MaxPalletNameLen: MaxPalletNameLen;
|
|
2081
|
+
MaxPalletsInfo: MaxPalletsInfo;
|
|
2082
|
+
MaybeErrorCodeV3: MaybeErrorCodeV3;
|
|
1891
2083
|
MaybeRandomness: MaybeRandomness;
|
|
1892
2084
|
MaybeVrf: MaybeVrf;
|
|
1893
2085
|
MemberCount: MemberCount;
|
|
@@ -1911,6 +2103,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1911
2103
|
MetadataV13: MetadataV13;
|
|
1912
2104
|
MetadataV14: MetadataV14;
|
|
1913
2105
|
MetadataV15: MetadataV15;
|
|
2106
|
+
MetadataV16: MetadataV16;
|
|
1914
2107
|
MetadataV9: MetadataV9;
|
|
1915
2108
|
MigrationStatusResult: MigrationStatusResult;
|
|
1916
2109
|
Mixnode: Mixnode;
|
|
@@ -1946,22 +2139,39 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1946
2139
|
MultiAssetFilter: MultiAssetFilter;
|
|
1947
2140
|
MultiAssetFilterV1: MultiAssetFilterV1;
|
|
1948
2141
|
MultiAssetFilterV2: MultiAssetFilterV2;
|
|
2142
|
+
MultiAssetFilterV3: MultiAssetFilterV3;
|
|
2143
|
+
MultiAssetFilterV4: MultiAssetFilterV4;
|
|
2144
|
+
MultiAssetFilterV5: MultiAssetFilterV5;
|
|
1949
2145
|
MultiAssets: MultiAssets;
|
|
1950
2146
|
MultiAssetsV1: MultiAssetsV1;
|
|
1951
2147
|
MultiAssetsV2: MultiAssetsV2;
|
|
2148
|
+
MultiAssetsV3: MultiAssetsV3;
|
|
2149
|
+
MultiAssetsV4: MultiAssetsV4;
|
|
2150
|
+
MultiAssetsV5: MultiAssetsV5;
|
|
2151
|
+
MultiAssetTransferFilterV5: MultiAssetTransferFilterV5;
|
|
1952
2152
|
MultiAssetV0: MultiAssetV0;
|
|
1953
2153
|
MultiAssetV1: MultiAssetV1;
|
|
1954
2154
|
MultiAssetV2: MultiAssetV2;
|
|
2155
|
+
MultiAssetV3: MultiAssetV3;
|
|
2156
|
+
MultiAssetV4: MultiAssetV4;
|
|
2157
|
+
MultiAssetV5: MultiAssetV5;
|
|
1955
2158
|
MultiDisputeStatementSet: MultiDisputeStatementSet;
|
|
1956
2159
|
MultiLocation: MultiLocation;
|
|
1957
2160
|
MultiLocationV0: MultiLocationV0;
|
|
1958
2161
|
MultiLocationV1: MultiLocationV1;
|
|
1959
2162
|
MultiLocationV2: MultiLocationV2;
|
|
2163
|
+
MultiLocationV3: MultiLocationV3;
|
|
2164
|
+
MultiLocationV4: MultiLocationV4;
|
|
2165
|
+
MultiLocationV5: MultiLocationV5;
|
|
1960
2166
|
Multiplier: Multiplier;
|
|
1961
2167
|
Multisig: Multisig;
|
|
1962
2168
|
MultiSignature: MultiSignature;
|
|
1963
2169
|
MultiSigner: MultiSigner;
|
|
1964
2170
|
NetworkId: NetworkId;
|
|
2171
|
+
NetworkIdV2: NetworkIdV2;
|
|
2172
|
+
NetworkIdV3: NetworkIdV3;
|
|
2173
|
+
NetworkIdV4: NetworkIdV4;
|
|
2174
|
+
NetworkIdV5: NetworkIdV5;
|
|
1965
2175
|
NetworkState: NetworkState;
|
|
1966
2176
|
NetworkStatePeerset: NetworkStatePeerset;
|
|
1967
2177
|
NetworkStatePeersetInfo: NetworkStatePeersetInfo;
|
|
@@ -2005,6 +2215,8 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2005
2215
|
OriginKindV0: OriginKindV0;
|
|
2006
2216
|
OriginKindV1: OriginKindV1;
|
|
2007
2217
|
OriginKindV2: OriginKindV2;
|
|
2218
|
+
OriginKindV3: OriginKindV3;
|
|
2219
|
+
OriginKindV4: OriginKindV4;
|
|
2008
2220
|
OutboundHrmpChannelLimitations: OutboundHrmpChannelLimitations;
|
|
2009
2221
|
OutboundHrmpMessage: OutboundHrmpMessage;
|
|
2010
2222
|
OutboundLaneData: OutboundLaneData;
|
|
@@ -2012,27 +2224,39 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2012
2224
|
OutboundPayload: OutboundPayload;
|
|
2013
2225
|
OutboundStatus: OutboundStatus;
|
|
2014
2226
|
Outcome: Outcome;
|
|
2227
|
+
OutcomeV4: OutcomeV4;
|
|
2015
2228
|
OuterEnums15: OuterEnums15;
|
|
2016
2229
|
OverweightIndex: OverweightIndex;
|
|
2017
2230
|
Owner: Owner;
|
|
2018
2231
|
PageCounter: PageCounter;
|
|
2019
2232
|
PageIndexData: PageIndexData;
|
|
2233
|
+
PalletAssociatedTypeMetadataV16: PalletAssociatedTypeMetadataV16;
|
|
2020
2234
|
PalletCallMetadataLatest: PalletCallMetadataLatest;
|
|
2021
2235
|
PalletCallMetadataV14: PalletCallMetadataV14;
|
|
2236
|
+
PalletCallMetadataV16: PalletCallMetadataV16;
|
|
2022
2237
|
PalletConstantMetadataLatest: PalletConstantMetadataLatest;
|
|
2023
2238
|
PalletConstantMetadataV14: PalletConstantMetadataV14;
|
|
2239
|
+
PalletConstantMetadataV16: PalletConstantMetadataV16;
|
|
2024
2240
|
PalletErrorMetadataLatest: PalletErrorMetadataLatest;
|
|
2025
2241
|
PalletErrorMetadataV14: PalletErrorMetadataV14;
|
|
2242
|
+
PalletErrorMetadataV16: PalletErrorMetadataV16;
|
|
2026
2243
|
PalletEventMetadataLatest: PalletEventMetadataLatest;
|
|
2027
2244
|
PalletEventMetadataV14: PalletEventMetadataV14;
|
|
2245
|
+
PalletEventMetadataV16: PalletEventMetadataV16;
|
|
2028
2246
|
PalletId: PalletId;
|
|
2247
|
+
PalletInfoV3: PalletInfoV3;
|
|
2248
|
+
PalletInfoV4: PalletInfoV4;
|
|
2249
|
+
PalletInfoV5: PalletInfoV5;
|
|
2029
2250
|
PalletMetadataLatest: PalletMetadataLatest;
|
|
2030
2251
|
PalletMetadataV14: PalletMetadataV14;
|
|
2031
2252
|
PalletMetadataV15: PalletMetadataV15;
|
|
2253
|
+
PalletMetadataV16: PalletMetadataV16;
|
|
2032
2254
|
PalletsOrigin: PalletsOrigin;
|
|
2033
2255
|
PalletStorageMetadataLatest: PalletStorageMetadataLatest;
|
|
2034
2256
|
PalletStorageMetadataV14: PalletStorageMetadataV14;
|
|
2257
|
+
PalletStorageMetadataV16: PalletStorageMetadataV16;
|
|
2035
2258
|
PalletVersion: PalletVersion;
|
|
2259
|
+
PalletViewFunctionMetadataV16: PalletViewFunctionMetadataV16;
|
|
2036
2260
|
ParachainDispatchOrigin: ParachainDispatchOrigin;
|
|
2037
2261
|
ParachainInherentData: ParachainInherentData;
|
|
2038
2262
|
ParachainProposal: ParachainProposal;
|
|
@@ -2078,6 +2302,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2078
2302
|
Points: Points;
|
|
2079
2303
|
PortableType: PortableType;
|
|
2080
2304
|
PortableTypeV14: PortableTypeV14;
|
|
2305
|
+
PostDispatchInfo: PostDispatchInfo;
|
|
2081
2306
|
Precommits: Precommits;
|
|
2082
2307
|
PrefabWasmModule: PrefabWasmModule;
|
|
2083
2308
|
PrefixedStorageKey: PrefixedStorageKey;
|
|
@@ -2100,13 +2325,19 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2100
2325
|
PvfPrepTimeoutKind: PvfPrepTimeoutKind;
|
|
2101
2326
|
QueryAvailableStorageCapacityError: QueryAvailableStorageCapacityError;
|
|
2102
2327
|
QueryBspConfirmChunksToProveForFileError: QueryBspConfirmChunksToProveForFileError;
|
|
2328
|
+
QueryBucketsForMspError: QueryBucketsForMspError;
|
|
2329
|
+
QueryBucketsOfUserStoredByMspError: QueryBucketsOfUserStoredByMspError;
|
|
2103
2330
|
QueryConfirmChunksToProveForFileError: QueryConfirmChunksToProveForFileError;
|
|
2104
2331
|
QueryEarliestChangeCapacityBlockError: QueryEarliestChangeCapacityBlockError;
|
|
2105
2332
|
QueryFileEarliestVolunteerBlockError: QueryFileEarliestVolunteerBlockError;
|
|
2106
2333
|
QueryId: QueryId;
|
|
2334
|
+
QueryIncompleteStorageRequestMetadataError: QueryIncompleteStorageRequestMetadataError;
|
|
2107
2335
|
QueryMspConfirmChunksToProveForFileError: QueryMspConfirmChunksToProveForFileError;
|
|
2108
2336
|
QueryMspIdOfBucketIdError: QueryMspIdOfBucketIdError;
|
|
2109
2337
|
QueryProviderMultiaddressesError: QueryProviderMultiaddressesError;
|
|
2338
|
+
QueryResponseInfoV3: QueryResponseInfoV3;
|
|
2339
|
+
QueryResponseInfoV4: QueryResponseInfoV4;
|
|
2340
|
+
QueryResponseInfoV5: QueryResponseInfoV5;
|
|
2110
2341
|
QueryStatus: QueryStatus;
|
|
2111
2342
|
QueryStorageProviderCapacityError: QueryStorageProviderCapacityError;
|
|
2112
2343
|
QueueConfigData: QueueConfigData;
|
|
@@ -2153,12 +2384,14 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2153
2384
|
RelayHash: RelayHash;
|
|
2154
2385
|
Releases: Releases;
|
|
2155
2386
|
Remark: Remark;
|
|
2387
|
+
RemoveFilesFromForestStorageResult: RemoveFilesFromForestStorageResult;
|
|
2156
2388
|
Renouncing: Renouncing;
|
|
2157
2389
|
RentProjection: RentProjection;
|
|
2158
2390
|
ReplacementTimes: ReplacementTimes;
|
|
2159
2391
|
ReportedRoundStates: ReportedRoundStates;
|
|
2160
2392
|
Reporter: Reporter;
|
|
2161
2393
|
ReportIdOf: ReportIdOf;
|
|
2394
|
+
ReputationWeightType: ReputationWeightType;
|
|
2162
2395
|
ReserveData: ReserveData;
|
|
2163
2396
|
ReserveIdentifier: ReserveIdentifier;
|
|
2164
2397
|
Response: Response;
|
|
@@ -2166,7 +2399,11 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2166
2399
|
ResponseV1: ResponseV1;
|
|
2167
2400
|
ResponseV2: ResponseV2;
|
|
2168
2401
|
ResponseV2Error: ResponseV2Error;
|
|
2169
|
-
|
|
2402
|
+
ResponseV3: ResponseV3;
|
|
2403
|
+
ResponseV3Error: ResponseV3Error;
|
|
2404
|
+
ResponseV3Result: ResponseV3Result;
|
|
2405
|
+
ResponseV4: ResponseV4;
|
|
2406
|
+
ResponseV5: ResponseV5;
|
|
2170
2407
|
Retriable: Retriable;
|
|
2171
2408
|
RewardDestination: RewardDestination;
|
|
2172
2409
|
RewardPoint: RewardPoint;
|
|
@@ -2175,7 +2412,9 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2175
2412
|
RpcMethods: RpcMethods;
|
|
2176
2413
|
RuntimeApiMetadataLatest: RuntimeApiMetadataLatest;
|
|
2177
2414
|
RuntimeApiMetadataV15: RuntimeApiMetadataV15;
|
|
2415
|
+
RuntimeApiMetadataV16: RuntimeApiMetadataV16;
|
|
2178
2416
|
RuntimeApiMethodMetadataV15: RuntimeApiMethodMetadataV15;
|
|
2417
|
+
RuntimeApiMethodMetadataV16: RuntimeApiMethodMetadataV16;
|
|
2179
2418
|
RuntimeApiMethodParamMetadataV15: RuntimeApiMethodParamMetadataV15;
|
|
2180
2419
|
RuntimeCall: RuntimeCall;
|
|
2181
2420
|
RuntimeDbWeight: RuntimeDbWeight;
|
|
@@ -2227,6 +2466,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2227
2466
|
SessionStatus: SessionStatus;
|
|
2228
2467
|
SetId: SetId;
|
|
2229
2468
|
SetIndex: SetIndex;
|
|
2469
|
+
ShouldRemoveFile: ShouldRemoveFile;
|
|
2230
2470
|
Si0Field: Si0Field;
|
|
2231
2471
|
Si0LookupTypeId: Si0LookupTypeId;
|
|
2232
2472
|
Si0Path: Si0Path;
|
|
@@ -2322,6 +2562,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2322
2562
|
StorageEntryMetadataV12: StorageEntryMetadataV12;
|
|
2323
2563
|
StorageEntryMetadataV13: StorageEntryMetadataV13;
|
|
2324
2564
|
StorageEntryMetadataV14: StorageEntryMetadataV14;
|
|
2565
|
+
StorageEntryMetadataV16: StorageEntryMetadataV16;
|
|
2325
2566
|
StorageEntryMetadataV9: StorageEntryMetadataV9;
|
|
2326
2567
|
StorageEntryModifierLatest: StorageEntryModifierLatest;
|
|
2327
2568
|
StorageEntryModifierV10: StorageEntryModifierV10;
|
|
@@ -2354,6 +2595,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2354
2595
|
StorageMetadataV9: StorageMetadataV9;
|
|
2355
2596
|
StorageProof: StorageProof;
|
|
2356
2597
|
StorageProviderId: StorageProviderId;
|
|
2598
|
+
StorageRequestMetadata: StorageRequestMetadata;
|
|
2357
2599
|
StoredPendingChange: StoredPendingChange;
|
|
2358
2600
|
StoredState: StoredState;
|
|
2359
2601
|
StrikeCount: StrikeCount;
|
|
@@ -2375,6 +2617,8 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2375
2617
|
TraceBlockResponse: TraceBlockResponse;
|
|
2376
2618
|
TraceError: TraceError;
|
|
2377
2619
|
TransactionalError: TransactionalError;
|
|
2620
|
+
TransactionExtensionMetadataLatest: TransactionExtensionMetadataLatest;
|
|
2621
|
+
TransactionExtensionMetadataV16: TransactionExtensionMetadataV16;
|
|
2378
2622
|
TransactionInfo: TransactionInfo;
|
|
2379
2623
|
TransactionLongevity: TransactionLongevity;
|
|
2380
2624
|
TransactionPriority: TransactionPriority;
|
|
@@ -2384,6 +2628,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2384
2628
|
TransactionV0: TransactionV0;
|
|
2385
2629
|
TransactionV1: TransactionV1;
|
|
2386
2630
|
TransactionV2: TransactionV2;
|
|
2631
|
+
TransactionV3: TransactionV3;
|
|
2387
2632
|
TransactionValidity: TransactionValidity;
|
|
2388
2633
|
TransactionValidityError: TransactionValidityError;
|
|
2389
2634
|
TransientValidationData: TransientValidationData;
|
|
@@ -2407,6 +2652,8 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2407
2652
|
U8: U8;
|
|
2408
2653
|
UnappliedSlash: UnappliedSlash;
|
|
2409
2654
|
UnappliedSlashOther: UnappliedSlashOther;
|
|
2655
|
+
UncheckedFungibilityV4: UncheckedFungibilityV4;
|
|
2656
|
+
UncheckedFungibilityV5: UncheckedFungibilityV5;
|
|
2410
2657
|
UncleEntryItem: UncleEntryItem;
|
|
2411
2658
|
UnknownTransaction: UnknownTransaction;
|
|
2412
2659
|
UnlockChunk: UnlockChunk;
|
|
@@ -2438,6 +2685,10 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2438
2685
|
ValidDisputeStatementKind: ValidDisputeStatementKind;
|
|
2439
2686
|
ValidityAttestation: ValidityAttestation;
|
|
2440
2687
|
ValidTransaction: ValidTransaction;
|
|
2688
|
+
ValuePropId: ValuePropId;
|
|
2689
|
+
ValueProposition: ValueProposition;
|
|
2690
|
+
ValuePropositionWithId: ValuePropositionWithId;
|
|
2691
|
+
VariantDeprecationInfoV16: VariantDeprecationInfoV16;
|
|
2441
2692
|
VecInboundHrmpMessage: VecInboundHrmpMessage;
|
|
2442
2693
|
VersionedMultiAsset: VersionedMultiAsset;
|
|
2443
2694
|
VersionedMultiAssets: VersionedMultiAssets;
|
|
@@ -2445,6 +2696,8 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2445
2696
|
VersionedResponse: VersionedResponse;
|
|
2446
2697
|
VersionedXcm: VersionedXcm;
|
|
2447
2698
|
VersionMigrationStage: VersionMigrationStage;
|
|
2699
|
+
VersionV3: VersionV3;
|
|
2700
|
+
VersionV4: VersionV4;
|
|
2448
2701
|
VestingInfo: VestingInfo;
|
|
2449
2702
|
VestingSchedule: VestingSchedule;
|
|
2450
2703
|
Vote: Vote;
|
|
@@ -2465,6 +2718,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2465
2718
|
VrfProof: VrfProof;
|
|
2466
2719
|
Weight: Weight;
|
|
2467
2720
|
WeightLimitV2: WeightLimitV2;
|
|
2721
|
+
WeightLimitV3: WeightLimitV3;
|
|
2468
2722
|
WeightMultiplier: WeightMultiplier;
|
|
2469
2723
|
WeightPerClass: WeightPerClass;
|
|
2470
2724
|
WeightToFeeCoefficient: WeightToFeeCoefficient;
|
|
@@ -2475,9 +2729,15 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2475
2729
|
WildFungibilityV0: WildFungibilityV0;
|
|
2476
2730
|
WildFungibilityV1: WildFungibilityV1;
|
|
2477
2731
|
WildFungibilityV2: WildFungibilityV2;
|
|
2732
|
+
WildFungibilityV3: WildFungibilityV3;
|
|
2733
|
+
WildFungibilityV4: WildFungibilityV4;
|
|
2734
|
+
WildFungibilityV5: WildFungibilityV5;
|
|
2478
2735
|
WildMultiAsset: WildMultiAsset;
|
|
2479
2736
|
WildMultiAssetV1: WildMultiAssetV1;
|
|
2480
2737
|
WildMultiAssetV2: WildMultiAssetV2;
|
|
2738
|
+
WildMultiAssetV3: WildMultiAssetV3;
|
|
2739
|
+
WildMultiAssetV4: WildMultiAssetV4;
|
|
2740
|
+
WildMultiAssetV5: WildMultiAssetV5;
|
|
2481
2741
|
WinnersData: WinnersData;
|
|
2482
2742
|
WinnersData10: WinnersData10;
|
|
2483
2743
|
WinnersDataTuple: WinnersDataTuple;
|
|
@@ -2488,14 +2748,17 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2488
2748
|
WithdrawReasons: WithdrawReasons;
|
|
2489
2749
|
Xcm: Xcm;
|
|
2490
2750
|
XcmAssetId: XcmAssetId;
|
|
2751
|
+
XcmDryRunApiError: XcmDryRunApiError;
|
|
2752
|
+
XcmDryRunEffects: XcmDryRunEffects;
|
|
2491
2753
|
XcmError: XcmError;
|
|
2492
2754
|
XcmErrorV0: XcmErrorV0;
|
|
2493
2755
|
XcmErrorV1: XcmErrorV1;
|
|
2494
2756
|
XcmErrorV2: XcmErrorV2;
|
|
2495
|
-
|
|
2757
|
+
XcmErrorV3: XcmErrorV3;
|
|
2758
|
+
XcmErrorV4: XcmErrorV4;
|
|
2759
|
+
XcmErrorV5: XcmErrorV5;
|
|
2496
2760
|
XcmOrderV0: XcmOrderV0;
|
|
2497
2761
|
XcmOrderV1: XcmOrderV1;
|
|
2498
|
-
XcmOrderV2: XcmOrderV2;
|
|
2499
2762
|
XcmOrigin: XcmOrigin;
|
|
2500
2763
|
XcmOriginKind: XcmOriginKind;
|
|
2501
2764
|
XcmPaymentApiError: XcmPaymentApiError;
|
|
@@ -2503,6 +2766,9 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2503
2766
|
XcmV0: XcmV0;
|
|
2504
2767
|
XcmV1: XcmV1;
|
|
2505
2768
|
XcmV2: XcmV2;
|
|
2769
|
+
XcmV3: XcmV3;
|
|
2770
|
+
XcmV4: XcmV4;
|
|
2771
|
+
XcmV5: XcmV5;
|
|
2506
2772
|
XcmVersion: XcmVersion;
|
|
2507
2773
|
} // InterfaceTypes
|
|
2508
2774
|
} // declare module
|