@storagehub/api-augment 0.1.0 → 0.2.2
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 +105 -8
- package/dist/types/{interfaces → parachain/interfaces}/augment-api-tx.d.ts +356 -181
- package/dist/types/{interfaces → parachain/interfaces}/augment-types.d.ts +145 -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 +135 -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 +543 -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 +1419 -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 +325 -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 +202 -8
- package/src/{interfaces → parachain/interfaces}/augment-api-tx.ts +374 -182
- package/src/{interfaces → parachain/interfaces}/augment-types.ts +280 -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 +165 -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 +977 -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 +2776 -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 +398 -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,112 @@ 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
|
+
QueryBspsVolunteeredForFileError,
|
|
1408
|
+
QueryBucketsForMspError,
|
|
1409
|
+
QueryBucketsOfUserStoredByMspError,
|
|
1283
1410
|
QueryConfirmChunksToProveForFileError,
|
|
1284
1411
|
QueryEarliestChangeCapacityBlockError,
|
|
1285
1412
|
QueryFileEarliestVolunteerBlockError,
|
|
1413
|
+
QueryIncompleteStorageRequestMetadataError,
|
|
1286
1414
|
QueryMspConfirmChunksToProveForFileError,
|
|
1287
1415
|
QueryMspIdOfBucketIdError,
|
|
1288
1416
|
QueryProviderMultiaddressesError,
|
|
1289
1417
|
QueryStorageProviderCapacityError,
|
|
1290
1418
|
RandomnessOutput,
|
|
1419
|
+
RemoveFilesFromForestStorageResult,
|
|
1420
|
+
ReputationWeightType,
|
|
1291
1421
|
SaveFileToDisk,
|
|
1422
|
+
ShouldRemoveFile,
|
|
1292
1423
|
StorageDataUnit,
|
|
1293
1424
|
StorageProviderId,
|
|
1294
|
-
|
|
1295
|
-
|
|
1425
|
+
StorageRequestMetadata,
|
|
1426
|
+
TrieRemoveMutation,
|
|
1427
|
+
ValuePropId,
|
|
1428
|
+
ValueProposition,
|
|
1429
|
+
ValuePropositionWithId
|
|
1430
|
+
} from "@storagehub/api-augment/parachain/interfaces/storagehubclient";
|
|
1296
1431
|
|
|
1297
1432
|
declare module "@polkadot/types/types/registry" {
|
|
1298
1433
|
interface InterfaceTypes {
|
|
@@ -1322,6 +1457,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1322
1457
|
ActiveGiltsTotal: ActiveGiltsTotal;
|
|
1323
1458
|
ActiveIndex: ActiveIndex;
|
|
1324
1459
|
ActiveRecovery: ActiveRecovery;
|
|
1460
|
+
AddFilesToForestStorageResult: AddFilesToForestStorageResult;
|
|
1325
1461
|
Address: Address;
|
|
1326
1462
|
AliveContractInfo: AliveContractInfo;
|
|
1327
1463
|
AllowedSlots: AllowedSlots;
|
|
@@ -1339,10 +1475,17 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1339
1475
|
AssetDestroyWitness: AssetDestroyWitness;
|
|
1340
1476
|
AssetDetails: AssetDetails;
|
|
1341
1477
|
AssetId: AssetId;
|
|
1478
|
+
AssetIdV2: AssetIdV2;
|
|
1479
|
+
AssetIdV3: AssetIdV3;
|
|
1480
|
+
AssetIdV4: AssetIdV4;
|
|
1481
|
+
AssetIdV5: AssetIdV5;
|
|
1342
1482
|
AssetInstance: AssetInstance;
|
|
1343
1483
|
AssetInstanceV0: AssetInstanceV0;
|
|
1344
1484
|
AssetInstanceV1: AssetInstanceV1;
|
|
1345
1485
|
AssetInstanceV2: AssetInstanceV2;
|
|
1486
|
+
AssetInstanceV3: AssetInstanceV3;
|
|
1487
|
+
AssetInstanceV4: AssetInstanceV4;
|
|
1488
|
+
AssetInstanceV5: AssetInstanceV5;
|
|
1346
1489
|
AssetMetadata: AssetMetadata;
|
|
1347
1490
|
AssetOptions: AssetOptions;
|
|
1348
1491
|
AssignmentId: AssignmentId;
|
|
@@ -1415,9 +1558,14 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1415
1558
|
BlockV0: BlockV0;
|
|
1416
1559
|
BlockV1: BlockV1;
|
|
1417
1560
|
BlockV2: BlockV2;
|
|
1561
|
+
BlockV3: BlockV3;
|
|
1418
1562
|
BlockWeights: BlockWeights;
|
|
1419
1563
|
BodyId: BodyId;
|
|
1564
|
+
BodyIdV2: BodyIdV2;
|
|
1565
|
+
BodyIdV3: BodyIdV3;
|
|
1420
1566
|
BodyPart: BodyPart;
|
|
1567
|
+
BodyPartV2: BodyPartV2;
|
|
1568
|
+
BodyPartV3: BodyPartV3;
|
|
1421
1569
|
bool: bool;
|
|
1422
1570
|
Bool: Bool;
|
|
1423
1571
|
Bounty: Bounty;
|
|
@@ -1430,9 +1578,11 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1430
1578
|
BridgedBlockNumber: BridgedBlockNumber;
|
|
1431
1579
|
BridgedHeader: BridgedHeader;
|
|
1432
1580
|
BridgeMessageId: BridgeMessageId;
|
|
1581
|
+
BucketId: BucketId;
|
|
1433
1582
|
BufferedSessionChange: BufferedSessionChange;
|
|
1434
1583
|
Bytes: Bytes;
|
|
1435
1584
|
Call: Call;
|
|
1585
|
+
CallDryRunEffects: CallDryRunEffects;
|
|
1436
1586
|
CallHash: CallHash;
|
|
1437
1587
|
CallHashOf: CallHashOf;
|
|
1438
1588
|
CallIndex: CallIndex;
|
|
@@ -1450,6 +1600,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1450
1600
|
ChangesTrieConfiguration: ChangesTrieConfiguration;
|
|
1451
1601
|
ChangesTrieSignal: ChangesTrieSignal;
|
|
1452
1602
|
CheckInherentsResult: CheckInherentsResult;
|
|
1603
|
+
CheckpointChallenge: CheckpointChallenge;
|
|
1453
1604
|
ChunkId: ChunkId;
|
|
1454
1605
|
ClassDetails: ClassDetails;
|
|
1455
1606
|
ClassId: ClassId;
|
|
@@ -1492,6 +1643,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1492
1643
|
ContractContractSpecV3: ContractContractSpecV3;
|
|
1493
1644
|
ContractContractSpecV4: ContractContractSpecV4;
|
|
1494
1645
|
ContractContractSpecV5: ContractContractSpecV5;
|
|
1646
|
+
ContractContractSpecV6: ContractContractSpecV6;
|
|
1495
1647
|
ContractCryptoHasher: ContractCryptoHasher;
|
|
1496
1648
|
ContractDiscriminant: ContractDiscriminant;
|
|
1497
1649
|
ContractDisplayName: ContractDisplayName;
|
|
@@ -1542,12 +1694,15 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1542
1694
|
ContractMetadataV3: ContractMetadataV3;
|
|
1543
1695
|
ContractMetadataV4: ContractMetadataV4;
|
|
1544
1696
|
ContractMetadataV5: ContractMetadataV5;
|
|
1697
|
+
ContractMetadataV6: ContractMetadataV6;
|
|
1545
1698
|
ContractProject: ContractProject;
|
|
1546
1699
|
ContractProjectContract: ContractProjectContract;
|
|
1547
1700
|
ContractProjectInfo: ContractProjectInfo;
|
|
1548
1701
|
ContractProjectSource: ContractProjectSource;
|
|
1549
1702
|
ContractProjectV0: ContractProjectV0;
|
|
1550
1703
|
ContractReturnFlags: ContractReturnFlags;
|
|
1704
|
+
ContractReviveProjectInfo: ContractReviveProjectInfo;
|
|
1705
|
+
ContractReviveProjectSource: ContractReviveProjectSource;
|
|
1551
1706
|
ContractSelector: ContractSelector;
|
|
1552
1707
|
ContractStorageKey: ContractStorageKey;
|
|
1553
1708
|
ContractStorageLayout: ContractStorageLayout;
|
|
@@ -1593,6 +1748,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1593
1748
|
DispatchResult: DispatchResult;
|
|
1594
1749
|
DispatchResultOf: DispatchResultOf;
|
|
1595
1750
|
DispatchResultTo198: DispatchResultTo198;
|
|
1751
|
+
DispatchResultWithPostInfo: DispatchResultWithPostInfo;
|
|
1596
1752
|
DisputeLocation: DisputeLocation;
|
|
1597
1753
|
DisputeProof: DisputeProof;
|
|
1598
1754
|
DisputeResult: DisputeResult;
|
|
@@ -1607,14 +1763,17 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1607
1763
|
Ed25519Signature: Ed25519Signature;
|
|
1608
1764
|
EIP1559Transaction: EIP1559Transaction;
|
|
1609
1765
|
EIP2930Transaction: EIP2930Transaction;
|
|
1766
|
+
EIP7702Transaction: EIP7702Transaction;
|
|
1610
1767
|
ElectionCompute: ElectionCompute;
|
|
1611
1768
|
ElectionPhase: ElectionPhase;
|
|
1612
1769
|
ElectionResult: ElectionResult;
|
|
1770
|
+
ElectionResultToSpec10: ElectionResultToSpec10;
|
|
1613
1771
|
ElectionScore: ElectionScore;
|
|
1614
1772
|
ElectionSize: ElectionSize;
|
|
1615
1773
|
ElectionStatus: ElectionStatus;
|
|
1616
1774
|
EncodedFinalityProofs: EncodedFinalityProofs;
|
|
1617
1775
|
EncodedJustification: EncodedJustification;
|
|
1776
|
+
EnumDeprecationInfoV16: EnumDeprecationInfoV16;
|
|
1618
1777
|
Epoch: Epoch;
|
|
1619
1778
|
EpochAuthorship: EpochAuthorship;
|
|
1620
1779
|
Era: Era;
|
|
@@ -1634,6 +1793,9 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1634
1793
|
EthAccessListItem: EthAccessListItem;
|
|
1635
1794
|
EthAccount: EthAccount;
|
|
1636
1795
|
EthAddress: EthAddress;
|
|
1796
|
+
EthAuthorizationList: EthAuthorizationList;
|
|
1797
|
+
EthAuthorizationListItem: EthAuthorizationListItem;
|
|
1798
|
+
EthAuthorizationSignature: EthAuthorizationSignature;
|
|
1637
1799
|
EthBlock: EthBlock;
|
|
1638
1800
|
EthBloom: EthBloom;
|
|
1639
1801
|
EthCallRequest: EthCallRequest;
|
|
@@ -1649,10 +1811,12 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1649
1811
|
EthFilterTopicEntry: EthFilterTopicEntry;
|
|
1650
1812
|
EthFilterTopicInner: EthFilterTopicInner;
|
|
1651
1813
|
EthHeader: EthHeader;
|
|
1814
|
+
EthLegacyTransactionSignature: EthLegacyTransactionSignature;
|
|
1652
1815
|
EthLog: EthLog;
|
|
1653
1816
|
EthReceipt: EthReceipt;
|
|
1654
1817
|
EthReceiptV0: EthReceiptV0;
|
|
1655
1818
|
EthReceiptV3: EthReceiptV3;
|
|
1819
|
+
EthReceiptV4: EthReceiptV4;
|
|
1656
1820
|
EthRichBlock: EthRichBlock;
|
|
1657
1821
|
EthRichHeader: EthRichHeader;
|
|
1658
1822
|
EthStorageProof: EthStorageProof;
|
|
@@ -1708,16 +1872,20 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1708
1872
|
ExtrinsicMetadataV13: ExtrinsicMetadataV13;
|
|
1709
1873
|
ExtrinsicMetadataV14: ExtrinsicMetadataV14;
|
|
1710
1874
|
ExtrinsicMetadataV15: ExtrinsicMetadataV15;
|
|
1875
|
+
ExtrinsicMetadataV16: ExtrinsicMetadataV16;
|
|
1711
1876
|
ExtrinsicOrHash: ExtrinsicOrHash;
|
|
1712
1877
|
ExtrinsicPayload: ExtrinsicPayload;
|
|
1713
1878
|
ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;
|
|
1714
1879
|
ExtrinsicPayloadV4: ExtrinsicPayloadV4;
|
|
1880
|
+
ExtrinsicPayloadV5: ExtrinsicPayloadV5;
|
|
1715
1881
|
ExtrinsicSignature: ExtrinsicSignature;
|
|
1716
1882
|
ExtrinsicSignatureV4: ExtrinsicSignatureV4;
|
|
1883
|
+
ExtrinsicSignatureV5: ExtrinsicSignatureV5;
|
|
1717
1884
|
ExtrinsicStatus: ExtrinsicStatus;
|
|
1718
1885
|
ExtrinsicsWeight: ExtrinsicsWeight;
|
|
1719
1886
|
ExtrinsicUnknown: ExtrinsicUnknown;
|
|
1720
1887
|
ExtrinsicV4: ExtrinsicV4;
|
|
1888
|
+
ExtrinsicV5: ExtrinsicV5;
|
|
1721
1889
|
f32: f32;
|
|
1722
1890
|
F32: F32;
|
|
1723
1891
|
f64: f64;
|
|
@@ -1754,16 +1922,21 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1754
1922
|
FungibilityV0: FungibilityV0;
|
|
1755
1923
|
FungibilityV1: FungibilityV1;
|
|
1756
1924
|
FungibilityV2: FungibilityV2;
|
|
1925
|
+
FungibilityV3: FungibilityV3;
|
|
1926
|
+
FungibilityV4: FungibilityV4;
|
|
1927
|
+
FungibilityV5: FungibilityV5;
|
|
1757
1928
|
FungiblesAccessError: FungiblesAccessError;
|
|
1758
1929
|
Gas: Gas;
|
|
1930
|
+
GenericApplyDeltaEventInfoError: GenericApplyDeltaEventInfoError;
|
|
1759
1931
|
GenesisBuildErr: GenesisBuildErr;
|
|
1760
1932
|
GetBspInfoError: GetBspInfoError;
|
|
1761
1933
|
GetChallengePeriodError: GetChallengePeriodError;
|
|
1762
1934
|
GetChallengeSeedError: GetChallengeSeedError;
|
|
1763
1935
|
GetCheckpointChallengesError: GetCheckpointChallengesError;
|
|
1764
1936
|
GetFileFromFileStorageResult: GetFileFromFileStorageResult;
|
|
1765
|
-
GetLastTickProviderSubmittedProofError: GetLastTickProviderSubmittedProofError;
|
|
1766
1937
|
GetNextDeadlineTickError: GetNextDeadlineTickError;
|
|
1938
|
+
GetProofSubmissionRecordError: GetProofSubmissionRecordError;
|
|
1939
|
+
GetStakeError: GetStakeError;
|
|
1767
1940
|
GetUsersWithDebtOverThresholdError: GetUsersWithDebtOverThresholdError;
|
|
1768
1941
|
GiltBid: GiltBid;
|
|
1769
1942
|
GlobalValidationData: GlobalValidationData;
|
|
@@ -1793,6 +1966,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1793
1966
|
Health: Health;
|
|
1794
1967
|
Heartbeat: Heartbeat;
|
|
1795
1968
|
HeartbeatTo244: HeartbeatTo244;
|
|
1969
|
+
HintV5: HintV5;
|
|
1796
1970
|
HostConfiguration: HostConfiguration;
|
|
1797
1971
|
HostFnWeights: HostFnWeights;
|
|
1798
1972
|
HostFnWeightsTo264: HostFnWeightsTo264;
|
|
@@ -1833,6 +2007,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1833
2007
|
IncomingParachainDeploy: IncomingParachainDeploy;
|
|
1834
2008
|
IncomingParachainFixed: IncomingParachainFixed;
|
|
1835
2009
|
IncompleteFileStatus: IncompleteFileStatus;
|
|
2010
|
+
IncompleteStorageRequestMetadataResponse: IncompleteStorageRequestMetadataResponse;
|
|
1836
2011
|
Index: Index;
|
|
1837
2012
|
IndicesLookupSource: IndicesLookupSource;
|
|
1838
2013
|
IndividualExposure: IndividualExposure;
|
|
@@ -1849,20 +2024,34 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1849
2024
|
InstantiateReturnValueOk: InstantiateReturnValueOk;
|
|
1850
2025
|
InstantiateReturnValueTo267: InstantiateReturnValueTo267;
|
|
1851
2026
|
InstructionV2: InstructionV2;
|
|
2027
|
+
InstructionV3: InstructionV3;
|
|
2028
|
+
InstructionV4: InstructionV4;
|
|
2029
|
+
InstructionV5: InstructionV5;
|
|
1852
2030
|
InstructionWeights: InstructionWeights;
|
|
1853
2031
|
InteriorMultiLocation: InteriorMultiLocation;
|
|
2032
|
+
InteriorMultiLocationV2: InteriorMultiLocationV2;
|
|
2033
|
+
InteriorMultiLocationV3: InteriorMultiLocationV3;
|
|
2034
|
+
InteriorMultiLocationV5: InteriorMultiLocationV5;
|
|
1854
2035
|
InvalidDisputeStatementKind: InvalidDisputeStatementKind;
|
|
1855
2036
|
InvalidTransaction: InvalidTransaction;
|
|
1856
2037
|
isize: isize;
|
|
1857
2038
|
ISize: ISize;
|
|
2039
|
+
IsStorageRequestOpenToVolunteersError: IsStorageRequestOpenToVolunteersError;
|
|
2040
|
+
ItemDeprecationInfoV16: ItemDeprecationInfoV16;
|
|
1858
2041
|
Json: Json;
|
|
1859
2042
|
Junction: Junction;
|
|
1860
2043
|
Junctions: Junctions;
|
|
1861
2044
|
JunctionsV1: JunctionsV1;
|
|
1862
2045
|
JunctionsV2: JunctionsV2;
|
|
2046
|
+
JunctionsV3: JunctionsV3;
|
|
2047
|
+
JunctionsV4: JunctionsV4;
|
|
2048
|
+
JunctionsV5: JunctionsV5;
|
|
1863
2049
|
JunctionV0: JunctionV0;
|
|
1864
2050
|
JunctionV1: JunctionV1;
|
|
1865
2051
|
JunctionV2: JunctionV2;
|
|
2052
|
+
JunctionV3: JunctionV3;
|
|
2053
|
+
JunctionV4: JunctionV4;
|
|
2054
|
+
JunctionV5: JunctionV5;
|
|
1866
2055
|
Justification: Justification;
|
|
1867
2056
|
JustificationNotification: JustificationNotification;
|
|
1868
2057
|
Justifications: Justifications;
|
|
@@ -1882,12 +2071,16 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1882
2071
|
LegacyTransaction: LegacyTransaction;
|
|
1883
2072
|
Limits: Limits;
|
|
1884
2073
|
LimitsTo264: LimitsTo264;
|
|
2074
|
+
LoadFileInStorageResult: LoadFileInStorageResult;
|
|
1885
2075
|
LocalValidationData: LocalValidationData;
|
|
1886
2076
|
LockIdentifier: LockIdentifier;
|
|
1887
2077
|
LookupSource: LookupSource;
|
|
1888
2078
|
LookupTarget: LookupTarget;
|
|
1889
2079
|
LotteryConfig: LotteryConfig;
|
|
1890
2080
|
MainStorageProviderId: MainStorageProviderId;
|
|
2081
|
+
MaxPalletNameLen: MaxPalletNameLen;
|
|
2082
|
+
MaxPalletsInfo: MaxPalletsInfo;
|
|
2083
|
+
MaybeErrorCodeV3: MaybeErrorCodeV3;
|
|
1891
2084
|
MaybeRandomness: MaybeRandomness;
|
|
1892
2085
|
MaybeVrf: MaybeVrf;
|
|
1893
2086
|
MemberCount: MemberCount;
|
|
@@ -1911,6 +2104,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1911
2104
|
MetadataV13: MetadataV13;
|
|
1912
2105
|
MetadataV14: MetadataV14;
|
|
1913
2106
|
MetadataV15: MetadataV15;
|
|
2107
|
+
MetadataV16: MetadataV16;
|
|
1914
2108
|
MetadataV9: MetadataV9;
|
|
1915
2109
|
MigrationStatusResult: MigrationStatusResult;
|
|
1916
2110
|
Mixnode: Mixnode;
|
|
@@ -1946,22 +2140,39 @@ declare module "@polkadot/types/types/registry" {
|
|
|
1946
2140
|
MultiAssetFilter: MultiAssetFilter;
|
|
1947
2141
|
MultiAssetFilterV1: MultiAssetFilterV1;
|
|
1948
2142
|
MultiAssetFilterV2: MultiAssetFilterV2;
|
|
2143
|
+
MultiAssetFilterV3: MultiAssetFilterV3;
|
|
2144
|
+
MultiAssetFilterV4: MultiAssetFilterV4;
|
|
2145
|
+
MultiAssetFilterV5: MultiAssetFilterV5;
|
|
1949
2146
|
MultiAssets: MultiAssets;
|
|
1950
2147
|
MultiAssetsV1: MultiAssetsV1;
|
|
1951
2148
|
MultiAssetsV2: MultiAssetsV2;
|
|
2149
|
+
MultiAssetsV3: MultiAssetsV3;
|
|
2150
|
+
MultiAssetsV4: MultiAssetsV4;
|
|
2151
|
+
MultiAssetsV5: MultiAssetsV5;
|
|
2152
|
+
MultiAssetTransferFilterV5: MultiAssetTransferFilterV5;
|
|
1952
2153
|
MultiAssetV0: MultiAssetV0;
|
|
1953
2154
|
MultiAssetV1: MultiAssetV1;
|
|
1954
2155
|
MultiAssetV2: MultiAssetV2;
|
|
2156
|
+
MultiAssetV3: MultiAssetV3;
|
|
2157
|
+
MultiAssetV4: MultiAssetV4;
|
|
2158
|
+
MultiAssetV5: MultiAssetV5;
|
|
1955
2159
|
MultiDisputeStatementSet: MultiDisputeStatementSet;
|
|
1956
2160
|
MultiLocation: MultiLocation;
|
|
1957
2161
|
MultiLocationV0: MultiLocationV0;
|
|
1958
2162
|
MultiLocationV1: MultiLocationV1;
|
|
1959
2163
|
MultiLocationV2: MultiLocationV2;
|
|
2164
|
+
MultiLocationV3: MultiLocationV3;
|
|
2165
|
+
MultiLocationV4: MultiLocationV4;
|
|
2166
|
+
MultiLocationV5: MultiLocationV5;
|
|
1960
2167
|
Multiplier: Multiplier;
|
|
1961
2168
|
Multisig: Multisig;
|
|
1962
2169
|
MultiSignature: MultiSignature;
|
|
1963
2170
|
MultiSigner: MultiSigner;
|
|
1964
2171
|
NetworkId: NetworkId;
|
|
2172
|
+
NetworkIdV2: NetworkIdV2;
|
|
2173
|
+
NetworkIdV3: NetworkIdV3;
|
|
2174
|
+
NetworkIdV4: NetworkIdV4;
|
|
2175
|
+
NetworkIdV5: NetworkIdV5;
|
|
1965
2176
|
NetworkState: NetworkState;
|
|
1966
2177
|
NetworkStatePeerset: NetworkStatePeerset;
|
|
1967
2178
|
NetworkStatePeersetInfo: NetworkStatePeersetInfo;
|
|
@@ -2005,6 +2216,8 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2005
2216
|
OriginKindV0: OriginKindV0;
|
|
2006
2217
|
OriginKindV1: OriginKindV1;
|
|
2007
2218
|
OriginKindV2: OriginKindV2;
|
|
2219
|
+
OriginKindV3: OriginKindV3;
|
|
2220
|
+
OriginKindV4: OriginKindV4;
|
|
2008
2221
|
OutboundHrmpChannelLimitations: OutboundHrmpChannelLimitations;
|
|
2009
2222
|
OutboundHrmpMessage: OutboundHrmpMessage;
|
|
2010
2223
|
OutboundLaneData: OutboundLaneData;
|
|
@@ -2012,27 +2225,39 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2012
2225
|
OutboundPayload: OutboundPayload;
|
|
2013
2226
|
OutboundStatus: OutboundStatus;
|
|
2014
2227
|
Outcome: Outcome;
|
|
2228
|
+
OutcomeV4: OutcomeV4;
|
|
2015
2229
|
OuterEnums15: OuterEnums15;
|
|
2016
2230
|
OverweightIndex: OverweightIndex;
|
|
2017
2231
|
Owner: Owner;
|
|
2018
2232
|
PageCounter: PageCounter;
|
|
2019
2233
|
PageIndexData: PageIndexData;
|
|
2234
|
+
PalletAssociatedTypeMetadataV16: PalletAssociatedTypeMetadataV16;
|
|
2020
2235
|
PalletCallMetadataLatest: PalletCallMetadataLatest;
|
|
2021
2236
|
PalletCallMetadataV14: PalletCallMetadataV14;
|
|
2237
|
+
PalletCallMetadataV16: PalletCallMetadataV16;
|
|
2022
2238
|
PalletConstantMetadataLatest: PalletConstantMetadataLatest;
|
|
2023
2239
|
PalletConstantMetadataV14: PalletConstantMetadataV14;
|
|
2240
|
+
PalletConstantMetadataV16: PalletConstantMetadataV16;
|
|
2024
2241
|
PalletErrorMetadataLatest: PalletErrorMetadataLatest;
|
|
2025
2242
|
PalletErrorMetadataV14: PalletErrorMetadataV14;
|
|
2243
|
+
PalletErrorMetadataV16: PalletErrorMetadataV16;
|
|
2026
2244
|
PalletEventMetadataLatest: PalletEventMetadataLatest;
|
|
2027
2245
|
PalletEventMetadataV14: PalletEventMetadataV14;
|
|
2246
|
+
PalletEventMetadataV16: PalletEventMetadataV16;
|
|
2028
2247
|
PalletId: PalletId;
|
|
2248
|
+
PalletInfoV3: PalletInfoV3;
|
|
2249
|
+
PalletInfoV4: PalletInfoV4;
|
|
2250
|
+
PalletInfoV5: PalletInfoV5;
|
|
2029
2251
|
PalletMetadataLatest: PalletMetadataLatest;
|
|
2030
2252
|
PalletMetadataV14: PalletMetadataV14;
|
|
2031
2253
|
PalletMetadataV15: PalletMetadataV15;
|
|
2254
|
+
PalletMetadataV16: PalletMetadataV16;
|
|
2032
2255
|
PalletsOrigin: PalletsOrigin;
|
|
2033
2256
|
PalletStorageMetadataLatest: PalletStorageMetadataLatest;
|
|
2034
2257
|
PalletStorageMetadataV14: PalletStorageMetadataV14;
|
|
2258
|
+
PalletStorageMetadataV16: PalletStorageMetadataV16;
|
|
2035
2259
|
PalletVersion: PalletVersion;
|
|
2260
|
+
PalletViewFunctionMetadataV16: PalletViewFunctionMetadataV16;
|
|
2036
2261
|
ParachainDispatchOrigin: ParachainDispatchOrigin;
|
|
2037
2262
|
ParachainInherentData: ParachainInherentData;
|
|
2038
2263
|
ParachainProposal: ParachainProposal;
|
|
@@ -2078,6 +2303,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2078
2303
|
Points: Points;
|
|
2079
2304
|
PortableType: PortableType;
|
|
2080
2305
|
PortableTypeV14: PortableTypeV14;
|
|
2306
|
+
PostDispatchInfo: PostDispatchInfo;
|
|
2081
2307
|
Precommits: Precommits;
|
|
2082
2308
|
PrefabWasmModule: PrefabWasmModule;
|
|
2083
2309
|
PrefixedStorageKey: PrefixedStorageKey;
|
|
@@ -2100,13 +2326,20 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2100
2326
|
PvfPrepTimeoutKind: PvfPrepTimeoutKind;
|
|
2101
2327
|
QueryAvailableStorageCapacityError: QueryAvailableStorageCapacityError;
|
|
2102
2328
|
QueryBspConfirmChunksToProveForFileError: QueryBspConfirmChunksToProveForFileError;
|
|
2329
|
+
QueryBspsVolunteeredForFileError: QueryBspsVolunteeredForFileError;
|
|
2330
|
+
QueryBucketsForMspError: QueryBucketsForMspError;
|
|
2331
|
+
QueryBucketsOfUserStoredByMspError: QueryBucketsOfUserStoredByMspError;
|
|
2103
2332
|
QueryConfirmChunksToProveForFileError: QueryConfirmChunksToProveForFileError;
|
|
2104
2333
|
QueryEarliestChangeCapacityBlockError: QueryEarliestChangeCapacityBlockError;
|
|
2105
2334
|
QueryFileEarliestVolunteerBlockError: QueryFileEarliestVolunteerBlockError;
|
|
2106
2335
|
QueryId: QueryId;
|
|
2336
|
+
QueryIncompleteStorageRequestMetadataError: QueryIncompleteStorageRequestMetadataError;
|
|
2107
2337
|
QueryMspConfirmChunksToProveForFileError: QueryMspConfirmChunksToProveForFileError;
|
|
2108
2338
|
QueryMspIdOfBucketIdError: QueryMspIdOfBucketIdError;
|
|
2109
2339
|
QueryProviderMultiaddressesError: QueryProviderMultiaddressesError;
|
|
2340
|
+
QueryResponseInfoV3: QueryResponseInfoV3;
|
|
2341
|
+
QueryResponseInfoV4: QueryResponseInfoV4;
|
|
2342
|
+
QueryResponseInfoV5: QueryResponseInfoV5;
|
|
2110
2343
|
QueryStatus: QueryStatus;
|
|
2111
2344
|
QueryStorageProviderCapacityError: QueryStorageProviderCapacityError;
|
|
2112
2345
|
QueueConfigData: QueueConfigData;
|
|
@@ -2153,12 +2386,14 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2153
2386
|
RelayHash: RelayHash;
|
|
2154
2387
|
Releases: Releases;
|
|
2155
2388
|
Remark: Remark;
|
|
2389
|
+
RemoveFilesFromForestStorageResult: RemoveFilesFromForestStorageResult;
|
|
2156
2390
|
Renouncing: Renouncing;
|
|
2157
2391
|
RentProjection: RentProjection;
|
|
2158
2392
|
ReplacementTimes: ReplacementTimes;
|
|
2159
2393
|
ReportedRoundStates: ReportedRoundStates;
|
|
2160
2394
|
Reporter: Reporter;
|
|
2161
2395
|
ReportIdOf: ReportIdOf;
|
|
2396
|
+
ReputationWeightType: ReputationWeightType;
|
|
2162
2397
|
ReserveData: ReserveData;
|
|
2163
2398
|
ReserveIdentifier: ReserveIdentifier;
|
|
2164
2399
|
Response: Response;
|
|
@@ -2166,7 +2401,11 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2166
2401
|
ResponseV1: ResponseV1;
|
|
2167
2402
|
ResponseV2: ResponseV2;
|
|
2168
2403
|
ResponseV2Error: ResponseV2Error;
|
|
2169
|
-
|
|
2404
|
+
ResponseV3: ResponseV3;
|
|
2405
|
+
ResponseV3Error: ResponseV3Error;
|
|
2406
|
+
ResponseV3Result: ResponseV3Result;
|
|
2407
|
+
ResponseV4: ResponseV4;
|
|
2408
|
+
ResponseV5: ResponseV5;
|
|
2170
2409
|
Retriable: Retriable;
|
|
2171
2410
|
RewardDestination: RewardDestination;
|
|
2172
2411
|
RewardPoint: RewardPoint;
|
|
@@ -2175,7 +2414,9 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2175
2414
|
RpcMethods: RpcMethods;
|
|
2176
2415
|
RuntimeApiMetadataLatest: RuntimeApiMetadataLatest;
|
|
2177
2416
|
RuntimeApiMetadataV15: RuntimeApiMetadataV15;
|
|
2417
|
+
RuntimeApiMetadataV16: RuntimeApiMetadataV16;
|
|
2178
2418
|
RuntimeApiMethodMetadataV15: RuntimeApiMethodMetadataV15;
|
|
2419
|
+
RuntimeApiMethodMetadataV16: RuntimeApiMethodMetadataV16;
|
|
2179
2420
|
RuntimeApiMethodParamMetadataV15: RuntimeApiMethodParamMetadataV15;
|
|
2180
2421
|
RuntimeCall: RuntimeCall;
|
|
2181
2422
|
RuntimeDbWeight: RuntimeDbWeight;
|
|
@@ -2227,6 +2468,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2227
2468
|
SessionStatus: SessionStatus;
|
|
2228
2469
|
SetId: SetId;
|
|
2229
2470
|
SetIndex: SetIndex;
|
|
2471
|
+
ShouldRemoveFile: ShouldRemoveFile;
|
|
2230
2472
|
Si0Field: Si0Field;
|
|
2231
2473
|
Si0LookupTypeId: Si0LookupTypeId;
|
|
2232
2474
|
Si0Path: Si0Path;
|
|
@@ -2322,6 +2564,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2322
2564
|
StorageEntryMetadataV12: StorageEntryMetadataV12;
|
|
2323
2565
|
StorageEntryMetadataV13: StorageEntryMetadataV13;
|
|
2324
2566
|
StorageEntryMetadataV14: StorageEntryMetadataV14;
|
|
2567
|
+
StorageEntryMetadataV16: StorageEntryMetadataV16;
|
|
2325
2568
|
StorageEntryMetadataV9: StorageEntryMetadataV9;
|
|
2326
2569
|
StorageEntryModifierLatest: StorageEntryModifierLatest;
|
|
2327
2570
|
StorageEntryModifierV10: StorageEntryModifierV10;
|
|
@@ -2354,6 +2597,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2354
2597
|
StorageMetadataV9: StorageMetadataV9;
|
|
2355
2598
|
StorageProof: StorageProof;
|
|
2356
2599
|
StorageProviderId: StorageProviderId;
|
|
2600
|
+
StorageRequestMetadata: StorageRequestMetadata;
|
|
2357
2601
|
StoredPendingChange: StoredPendingChange;
|
|
2358
2602
|
StoredState: StoredState;
|
|
2359
2603
|
StrikeCount: StrikeCount;
|
|
@@ -2375,6 +2619,8 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2375
2619
|
TraceBlockResponse: TraceBlockResponse;
|
|
2376
2620
|
TraceError: TraceError;
|
|
2377
2621
|
TransactionalError: TransactionalError;
|
|
2622
|
+
TransactionExtensionMetadataLatest: TransactionExtensionMetadataLatest;
|
|
2623
|
+
TransactionExtensionMetadataV16: TransactionExtensionMetadataV16;
|
|
2378
2624
|
TransactionInfo: TransactionInfo;
|
|
2379
2625
|
TransactionLongevity: TransactionLongevity;
|
|
2380
2626
|
TransactionPriority: TransactionPriority;
|
|
@@ -2384,6 +2630,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2384
2630
|
TransactionV0: TransactionV0;
|
|
2385
2631
|
TransactionV1: TransactionV1;
|
|
2386
2632
|
TransactionV2: TransactionV2;
|
|
2633
|
+
TransactionV3: TransactionV3;
|
|
2387
2634
|
TransactionValidity: TransactionValidity;
|
|
2388
2635
|
TransactionValidityError: TransactionValidityError;
|
|
2389
2636
|
TransientValidationData: TransientValidationData;
|
|
@@ -2407,6 +2654,8 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2407
2654
|
U8: U8;
|
|
2408
2655
|
UnappliedSlash: UnappliedSlash;
|
|
2409
2656
|
UnappliedSlashOther: UnappliedSlashOther;
|
|
2657
|
+
UncheckedFungibilityV4: UncheckedFungibilityV4;
|
|
2658
|
+
UncheckedFungibilityV5: UncheckedFungibilityV5;
|
|
2410
2659
|
UncleEntryItem: UncleEntryItem;
|
|
2411
2660
|
UnknownTransaction: UnknownTransaction;
|
|
2412
2661
|
UnlockChunk: UnlockChunk;
|
|
@@ -2438,6 +2687,10 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2438
2687
|
ValidDisputeStatementKind: ValidDisputeStatementKind;
|
|
2439
2688
|
ValidityAttestation: ValidityAttestation;
|
|
2440
2689
|
ValidTransaction: ValidTransaction;
|
|
2690
|
+
ValuePropId: ValuePropId;
|
|
2691
|
+
ValueProposition: ValueProposition;
|
|
2692
|
+
ValuePropositionWithId: ValuePropositionWithId;
|
|
2693
|
+
VariantDeprecationInfoV16: VariantDeprecationInfoV16;
|
|
2441
2694
|
VecInboundHrmpMessage: VecInboundHrmpMessage;
|
|
2442
2695
|
VersionedMultiAsset: VersionedMultiAsset;
|
|
2443
2696
|
VersionedMultiAssets: VersionedMultiAssets;
|
|
@@ -2445,6 +2698,8 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2445
2698
|
VersionedResponse: VersionedResponse;
|
|
2446
2699
|
VersionedXcm: VersionedXcm;
|
|
2447
2700
|
VersionMigrationStage: VersionMigrationStage;
|
|
2701
|
+
VersionV3: VersionV3;
|
|
2702
|
+
VersionV4: VersionV4;
|
|
2448
2703
|
VestingInfo: VestingInfo;
|
|
2449
2704
|
VestingSchedule: VestingSchedule;
|
|
2450
2705
|
Vote: Vote;
|
|
@@ -2465,6 +2720,7 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2465
2720
|
VrfProof: VrfProof;
|
|
2466
2721
|
Weight: Weight;
|
|
2467
2722
|
WeightLimitV2: WeightLimitV2;
|
|
2723
|
+
WeightLimitV3: WeightLimitV3;
|
|
2468
2724
|
WeightMultiplier: WeightMultiplier;
|
|
2469
2725
|
WeightPerClass: WeightPerClass;
|
|
2470
2726
|
WeightToFeeCoefficient: WeightToFeeCoefficient;
|
|
@@ -2475,9 +2731,15 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2475
2731
|
WildFungibilityV0: WildFungibilityV0;
|
|
2476
2732
|
WildFungibilityV1: WildFungibilityV1;
|
|
2477
2733
|
WildFungibilityV2: WildFungibilityV2;
|
|
2734
|
+
WildFungibilityV3: WildFungibilityV3;
|
|
2735
|
+
WildFungibilityV4: WildFungibilityV4;
|
|
2736
|
+
WildFungibilityV5: WildFungibilityV5;
|
|
2478
2737
|
WildMultiAsset: WildMultiAsset;
|
|
2479
2738
|
WildMultiAssetV1: WildMultiAssetV1;
|
|
2480
2739
|
WildMultiAssetV2: WildMultiAssetV2;
|
|
2740
|
+
WildMultiAssetV3: WildMultiAssetV3;
|
|
2741
|
+
WildMultiAssetV4: WildMultiAssetV4;
|
|
2742
|
+
WildMultiAssetV5: WildMultiAssetV5;
|
|
2481
2743
|
WinnersData: WinnersData;
|
|
2482
2744
|
WinnersData10: WinnersData10;
|
|
2483
2745
|
WinnersDataTuple: WinnersDataTuple;
|
|
@@ -2488,14 +2750,17 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2488
2750
|
WithdrawReasons: WithdrawReasons;
|
|
2489
2751
|
Xcm: Xcm;
|
|
2490
2752
|
XcmAssetId: XcmAssetId;
|
|
2753
|
+
XcmDryRunApiError: XcmDryRunApiError;
|
|
2754
|
+
XcmDryRunEffects: XcmDryRunEffects;
|
|
2491
2755
|
XcmError: XcmError;
|
|
2492
2756
|
XcmErrorV0: XcmErrorV0;
|
|
2493
2757
|
XcmErrorV1: XcmErrorV1;
|
|
2494
2758
|
XcmErrorV2: XcmErrorV2;
|
|
2495
|
-
|
|
2759
|
+
XcmErrorV3: XcmErrorV3;
|
|
2760
|
+
XcmErrorV4: XcmErrorV4;
|
|
2761
|
+
XcmErrorV5: XcmErrorV5;
|
|
2496
2762
|
XcmOrderV0: XcmOrderV0;
|
|
2497
2763
|
XcmOrderV1: XcmOrderV1;
|
|
2498
|
-
XcmOrderV2: XcmOrderV2;
|
|
2499
2764
|
XcmOrigin: XcmOrigin;
|
|
2500
2765
|
XcmOriginKind: XcmOriginKind;
|
|
2501
2766
|
XcmPaymentApiError: XcmPaymentApiError;
|
|
@@ -2503,6 +2768,9 @@ declare module "@polkadot/types/types/registry" {
|
|
|
2503
2768
|
XcmV0: XcmV0;
|
|
2504
2769
|
XcmV1: XcmV1;
|
|
2505
2770
|
XcmV2: XcmV2;
|
|
2771
|
+
XcmV3: XcmV3;
|
|
2772
|
+
XcmV4: XcmV4;
|
|
2773
|
+
XcmV5: XcmV5;
|
|
2506
2774
|
XcmVersion: XcmVersion;
|
|
2507
2775
|
} // InterfaceTypes
|
|
2508
2776
|
} // declare module
|