@functionland/react-native-fula 1.14.7 → 1.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (141) hide show
  1. package/LICENSE +20 -20
  2. package/README.md +226 -214
  3. package/android/build.gradle +110 -110
  4. package/android/gradle.properties +5 -5
  5. package/android/src/main/AndroidManifest.xml +3 -3
  6. package/android/src/main/AndroidManifestNew.xml +2 -2
  7. package/android/src/main/java/land/fx/fula/ConfigRef.java +7 -7
  8. package/android/src/main/java/land/fx/fula/Cryptography.java +62 -62
  9. package/android/src/main/java/land/fx/fula/FulaModule.java +1435 -1466
  10. package/android/src/main/java/land/fx/fula/FulaPackage.java +32 -32
  11. package/android/src/main/java/land/fx/fula/SharedPreferenceHelper.java +65 -65
  12. package/android/src/main/java/land/fx/fula/StaticHelper.java +13 -13
  13. package/android/src/main/java/land/fx/fula/ThreadUtils.java +42 -42
  14. package/ios/Cryptography.swift +49 -49
  15. package/ios/Fula-Bridging-Header.h +3 -3
  16. package/ios/Fula.mm +197 -199
  17. package/ios/Fula.swift +1221 -1221
  18. package/ios/UserDataHelper.swift +143 -143
  19. package/lib/commonjs/index.js +2 -2
  20. package/lib/commonjs/index.js.map +1 -1
  21. package/lib/commonjs/interfaces/augment-api-errors.js +4 -0
  22. package/lib/commonjs/interfaces/augment-api-errors.js.map +1 -0
  23. package/lib/commonjs/interfaces/augment-api-rpc.js +4 -0
  24. package/lib/commonjs/interfaces/augment-api-rpc.js.map +1 -0
  25. package/lib/commonjs/interfaces/augment-api-runtime.js +4 -0
  26. package/lib/commonjs/interfaces/augment-api-runtime.js.map +1 -0
  27. package/lib/commonjs/interfaces/augment-api.js +10 -0
  28. package/lib/commonjs/interfaces/augment-api.js.map +1 -0
  29. package/lib/commonjs/interfaces/augment-types.js +4 -0
  30. package/lib/commonjs/interfaces/augment-types.js.map +1 -0
  31. package/lib/commonjs/interfaces/fulaNativeModule.js +1 -2
  32. package/lib/commonjs/interfaces/fulaNativeModule.js.map +1 -1
  33. package/lib/commonjs/interfaces/index.js +6 -0
  34. package/lib/commonjs/interfaces/index.js.map +1 -0
  35. package/lib/commonjs/interfaces/{api-lookup.js → lookup.js} +623 -382
  36. package/lib/commonjs/interfaces/lookup.js.map +1 -0
  37. package/lib/commonjs/interfaces/registry.js +4 -0
  38. package/lib/commonjs/interfaces/registry.js.map +1 -0
  39. package/lib/commonjs/interfaces/types-lookup.js +4 -0
  40. package/lib/commonjs/interfaces/types-lookup.js.map +1 -0
  41. package/lib/commonjs/interfaces/types.js +4 -0
  42. package/lib/commonjs/interfaces/types.js.map +1 -0
  43. package/lib/commonjs/protocols/blockchain.js +123 -76
  44. package/lib/commonjs/protocols/blockchain.js.map +1 -1
  45. package/lib/commonjs/protocols/chain-api.js +151 -37
  46. package/lib/commonjs/protocols/chain-api.js.map +1 -1
  47. package/lib/commonjs/protocols/fula.js +195 -99
  48. package/lib/commonjs/protocols/fula.js.map +1 -1
  49. package/lib/commonjs/protocols/fxblox.js +3 -3
  50. package/lib/commonjs/protocols/fxblox.js.map +1 -1
  51. package/lib/commonjs/types/blockchain.js.map +1 -1
  52. package/lib/commonjs/types/fxblox.js.map +1 -1
  53. package/lib/module/index.js.map +1 -1
  54. package/lib/module/interfaces/augment-api-errors.js +9 -0
  55. package/lib/module/interfaces/augment-api-errors.js.map +1 -0
  56. package/lib/module/interfaces/augment-api-rpc.js +9 -0
  57. package/lib/module/interfaces/augment-api-rpc.js.map +1 -0
  58. package/lib/module/interfaces/augment-api-runtime.js +9 -0
  59. package/lib/module/interfaces/augment-api-runtime.js.map +1 -0
  60. package/lib/module/interfaces/augment-api.js +11 -0
  61. package/lib/module/interfaces/augment-api.js.map +1 -0
  62. package/lib/module/interfaces/augment-types.js +9 -0
  63. package/lib/module/interfaces/augment-types.js.map +1 -0
  64. package/lib/module/interfaces/fulaNativeModule.js.map +1 -1
  65. package/lib/module/interfaces/index.js +5 -0
  66. package/lib/module/interfaces/index.js.map +1 -0
  67. package/lib/module/interfaces/{api-lookup.js → lookup.js} +622 -380
  68. package/lib/module/interfaces/lookup.js.map +1 -0
  69. package/lib/module/interfaces/registry.js +9 -0
  70. package/lib/module/interfaces/registry.js.map +1 -0
  71. package/lib/module/interfaces/types-lookup.js +9 -0
  72. package/lib/module/interfaces/types-lookup.js.map +1 -0
  73. package/lib/module/interfaces/types.js +3 -0
  74. package/lib/module/interfaces/types.js.map +1 -0
  75. package/lib/module/protocols/blockchain.js +120 -75
  76. package/lib/module/protocols/blockchain.js.map +1 -1
  77. package/lib/module/protocols/chain-api.js +142 -31
  78. package/lib/module/protocols/chain-api.js.map +1 -1
  79. package/lib/module/protocols/fula.js +191 -99
  80. package/lib/module/protocols/fula.js.map +1 -1
  81. package/lib/module/protocols/fxblox.js +3 -3
  82. package/lib/module/protocols/fxblox.js.map +1 -1
  83. package/lib/module/types/blockchain.js.map +1 -1
  84. package/lib/module/types/fxblox.js.map +1 -1
  85. package/lib/typescript/interfaces/augment-api-errors.d.ts +442 -0
  86. package/lib/typescript/interfaces/augment-api-errors.d.ts.map +1 -0
  87. package/lib/typescript/interfaces/augment-api-rpc.d.ts +680 -0
  88. package/lib/typescript/interfaces/augment-api-rpc.d.ts.map +1 -0
  89. package/lib/typescript/interfaces/augment-api-runtime.d.ts +248 -0
  90. package/lib/typescript/interfaces/augment-api-runtime.d.ts.map +1 -0
  91. package/lib/typescript/interfaces/augment-api.d.ts +8 -0
  92. package/lib/typescript/interfaces/augment-api.d.ts.map +1 -0
  93. package/lib/typescript/interfaces/augment-types.d.ts +1224 -0
  94. package/lib/typescript/interfaces/augment-types.d.ts.map +1 -0
  95. package/lib/typescript/interfaces/fulaNativeModule.d.ts +7 -3
  96. package/lib/typescript/interfaces/fulaNativeModule.d.ts.map +1 -1
  97. package/lib/typescript/interfaces/index.d.ts +1 -0
  98. package/lib/typescript/interfaces/index.d.ts.map +1 -0
  99. package/lib/typescript/interfaces/{api-lookup.d.ts → lookup.d.ts} +441 -199
  100. package/lib/typescript/interfaces/lookup.d.ts.map +1 -0
  101. package/lib/typescript/interfaces/registry.d.ts +146 -0
  102. package/lib/typescript/interfaces/registry.d.ts.map +1 -0
  103. package/lib/typescript/interfaces/types-lookup.d.ts +1910 -0
  104. package/lib/typescript/interfaces/types-lookup.d.ts.map +1 -0
  105. package/lib/typescript/interfaces/types.d.ts +1 -0
  106. package/lib/typescript/interfaces/types.d.ts.map +1 -0
  107. package/lib/typescript/protocols/blockchain.d.ts +5 -3
  108. package/lib/typescript/protocols/blockchain.d.ts.map +1 -1
  109. package/lib/typescript/protocols/chain-api.d.ts +5 -0
  110. package/lib/typescript/protocols/chain-api.d.ts.map +1 -1
  111. package/lib/typescript/protocols/fula.d.ts +16 -0
  112. package/lib/typescript/protocols/fula.d.ts.map +1 -1
  113. package/lib/typescript/types/blockchain.d.ts +6 -0
  114. package/lib/typescript/types/blockchain.d.ts.map +1 -1
  115. package/package.json +178 -172
  116. package/react-native-fula.podspec +47 -47
  117. package/src/index.tsx +4 -4
  118. package/src/interfaces/augment-api-errors.ts +449 -0
  119. package/src/interfaces/augment-api-rpc.ts +617 -0
  120. package/src/interfaces/augment-api-runtime.ts +224 -0
  121. package/src/interfaces/augment-api.ts +10 -0
  122. package/src/interfaces/augment-types.ts +1230 -0
  123. package/src/interfaces/fulaNativeModule.ts +130 -122
  124. package/src/interfaces/index.ts +4 -0
  125. package/src/interfaces/{api-lookup.ts → lookup.ts} +1889 -1647
  126. package/src/interfaces/registry.ts +152 -0
  127. package/src/interfaces/types-lookup.ts +2043 -0
  128. package/src/interfaces/types.ts +3 -0
  129. package/src/protocols/blockchain.ts +549 -504
  130. package/src/protocols/chain-api.ts +148 -24
  131. package/src/protocols/fula.ts +419 -314
  132. package/src/protocols/fxblox.ts +49 -49
  133. package/src/types/blockchain.ts +89 -81
  134. package/src/types/fxblox.ts +8 -8
  135. package/ios/Fula.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -7
  136. package/ios/Fula.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
  137. package/ios/Fula.xcodeproj/project.xcworkspace/xcuserdata/user246549.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  138. package/ios/Fula.xcodeproj/xcuserdata/user246549.xcuserdatad/xcschemes/xcschememanagement.plist +0 -14
  139. package/lib/commonjs/interfaces/api-lookup.js.map +0 -1
  140. package/lib/module/interfaces/api-lookup.js.map +0 -1
  141. package/lib/typescript/interfaces/api-lookup.d.ts.map +0 -1
@@ -0,0 +1,1230 @@
1
+ // Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2
+ /* eslint-disable */
3
+
4
+ // import type lookup before we augment - in some environments
5
+ // this is required to allow for ambient/previous definitions
6
+ import '@polkadot/types/types/registry';
7
+
8
+ import type { Data, StorageKey } from '@polkadot/types';
9
+ import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, ISize, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, isize, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
10
+ import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
11
+ import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';
12
+ import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';
13
+ import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';
14
+ import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';
15
+ import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';
16
+ import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';
17
+ import type { BeefyAuthoritySet, BeefyCommitment, BeefyEquivocationProof, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, BeefyVoteMessage, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';
18
+ import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';
19
+ import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';
20
+ import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';
21
+ import type { BlockHash } from '@polkadot/types/interfaces/chain';
22
+ import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';
23
+ import type { StatementKind } from '@polkadot/types/interfaces/claims';
24
+ import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';
25
+ import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';
26
+ import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractExecResultU64, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractInstantiateResultU64, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';
27
+ import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractConstructorSpecV4, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEnvironmentV4, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMessageSpecV3, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';
28
+ import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';
29
+ import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';
30
+ import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';
31
+ import type { BlockStats } from '@polkadot/types/interfaces/dev';
32
+ import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';
33
+ import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';
34
+ import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';
35
+ import type { EvmAccount, EvmCallInfo, EvmCallInfoV2, EvmCreateInfo, EvmCreateInfoV2, EvmLog, EvmVicinity, EvmWeightInfo, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';
36
+ import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';
37
+ import type { FungiblesAccessError } from '@polkadot/types/interfaces/fungibles';
38
+ import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';
39
+ import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';
40
+ import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';
41
+ import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';
42
+ import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';
43
+ import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';
44
+ import type { CustomMetadata15, CustomValueMetadata15, ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, ExtrinsicMetadataV15, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV15, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, OuterEnums15, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletMetadataV15, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, RuntimeApiMetadataLatest, RuntimeApiMetadataV15, RuntimeApiMethodMetadataV15, RuntimeApiMethodParamMetadataV15, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';
45
+ import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrHash, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';
46
+ import type { NftCollectionId, NftItemId } from '@polkadot/types/interfaces/nfts';
47
+ import type { NpApiError, NpPoolId } from '@polkadot/types/interfaces/nompools';
48
+ import type { StorageKind } from '@polkadot/types/interfaces/offchain';
49
+ import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';
50
+ import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeProof, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DisputesTimeSlot, DoubleVoteReport, DownwardMessage, ExecutorParam, ExecutorParams, ExecutorParamsHash, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PendingSlashes, PersistedValidationData, PvfCheckStatement, PvfExecTimeoutKind, PvfPrepTimeoutKind, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlashingOffenceKind, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';
51
+ import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } from '@polkadot/types/interfaces/payment';
52
+ import type { Approvals } from '@polkadot/types/interfaces/poll';
53
+ import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';
54
+ import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';
55
+ import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';
56
+ import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
57
+ import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeCall, RuntimeDbWeight, RuntimeEvent, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV0, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';
58
+ import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';
59
+ import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';
60
+ import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';
61
+ import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';
62
+ import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';
63
+ import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';
64
+ import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';
65
+ import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ApplyExtrinsicResultPre6, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModulePre6, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorPre6, DispatchErrorPre6First, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchOutcomePre6, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, TransactionalError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';
66
+ import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';
67
+ import type { Multiplier } from '@polkadot/types/interfaces/txpayment';
68
+ import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';
69
+ import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';
70
+ import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';
71
+ import type { VestingInfo } from '@polkadot/types/interfaces/vesting';
72
+ import type { AssetInstance, AssetInstanceV0, AssetInstanceV1, AssetInstanceV2, BodyId, BodyPart, DoubleEncodedCall, Fungibility, FungibilityV0, FungibilityV1, FungibilityV2, InboundStatus, InstructionV2, InteriorMultiLocation, Junction, JunctionV0, JunctionV1, JunctionV2, Junctions, JunctionsV1, JunctionsV2, MultiAsset, MultiAssetFilter, MultiAssetFilterV1, MultiAssetFilterV2, MultiAssetV0, MultiAssetV1, MultiAssetV2, MultiAssets, MultiAssetsV1, MultiAssetsV2, MultiLocation, MultiLocationV0, MultiLocationV1, MultiLocationV2, NetworkId, OriginKindV0, OriginKindV1, OriginKindV2, OutboundStatus, Outcome, QueryId, QueryStatus, QueueConfigData, Response, ResponseV0, ResponseV1, ResponseV2, ResponseV2Error, ResponseV2Result, VersionMigrationStage, VersionedMultiAsset, VersionedMultiAssets, VersionedMultiLocation, VersionedResponse, VersionedXcm, WeightLimitV2, WildFungibility, WildFungibilityV0, WildFungibilityV1, WildFungibilityV2, WildMultiAsset, WildMultiAssetV1, WildMultiAssetV2, Xcm, XcmAssetId, XcmError, XcmErrorV0, XcmErrorV1, XcmErrorV2, XcmOrder, XcmOrderV0, XcmOrderV1, XcmOrderV2, XcmOrigin, XcmOriginKind, XcmV0, XcmV1, XcmV2, XcmVersion, XcmpMessageFormat } from '@polkadot/types/interfaces/xcm';
73
+
74
+ declare module '@polkadot/types/types/registry' {
75
+ interface InterfaceTypes {
76
+ AbridgedCandidateReceipt: AbridgedCandidateReceipt;
77
+ AbridgedHostConfiguration: AbridgedHostConfiguration;
78
+ AbridgedHrmpChannel: AbridgedHrmpChannel;
79
+ AccountData: AccountData;
80
+ AccountId: AccountId;
81
+ AccountId20: AccountId20;
82
+ AccountId32: AccountId32;
83
+ AccountId33: AccountId33;
84
+ AccountIdOf: AccountIdOf;
85
+ AccountIndex: AccountIndex;
86
+ AccountInfo: AccountInfo;
87
+ AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;
88
+ AccountInfoWithProviders: AccountInfoWithProviders;
89
+ AccountInfoWithRefCount: AccountInfoWithRefCount;
90
+ AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;
91
+ AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;
92
+ AccountStatus: AccountStatus;
93
+ AccountValidity: AccountValidity;
94
+ AccountVote: AccountVote;
95
+ AccountVoteSplit: AccountVoteSplit;
96
+ AccountVoteStandard: AccountVoteStandard;
97
+ ActiveEraInfo: ActiveEraInfo;
98
+ ActiveGilt: ActiveGilt;
99
+ ActiveGiltsTotal: ActiveGiltsTotal;
100
+ ActiveIndex: ActiveIndex;
101
+ ActiveRecovery: ActiveRecovery;
102
+ Address: Address;
103
+ AliveContractInfo: AliveContractInfo;
104
+ AllowedSlots: AllowedSlots;
105
+ AnySignature: AnySignature;
106
+ ApiId: ApiId;
107
+ ApplyExtrinsicResult: ApplyExtrinsicResult;
108
+ ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;
109
+ ApprovalFlag: ApprovalFlag;
110
+ Approvals: Approvals;
111
+ ArithmeticError: ArithmeticError;
112
+ AssetApproval: AssetApproval;
113
+ AssetApprovalKey: AssetApprovalKey;
114
+ AssetBalance: AssetBalance;
115
+ AssetDestroyWitness: AssetDestroyWitness;
116
+ AssetDetails: AssetDetails;
117
+ AssetId: AssetId;
118
+ AssetInstance: AssetInstance;
119
+ AssetInstanceV0: AssetInstanceV0;
120
+ AssetInstanceV1: AssetInstanceV1;
121
+ AssetInstanceV2: AssetInstanceV2;
122
+ AssetMetadata: AssetMetadata;
123
+ AssetOptions: AssetOptions;
124
+ AssignmentId: AssignmentId;
125
+ AssignmentKind: AssignmentKind;
126
+ AttestedCandidate: AttestedCandidate;
127
+ AuctionIndex: AuctionIndex;
128
+ AuthIndex: AuthIndex;
129
+ AuthorityDiscoveryId: AuthorityDiscoveryId;
130
+ AuthorityId: AuthorityId;
131
+ AuthorityIndex: AuthorityIndex;
132
+ AuthorityList: AuthorityList;
133
+ AuthoritySet: AuthoritySet;
134
+ AuthoritySetChange: AuthoritySetChange;
135
+ AuthoritySetChanges: AuthoritySetChanges;
136
+ AuthoritySignature: AuthoritySignature;
137
+ AuthorityWeight: AuthorityWeight;
138
+ AvailabilityBitfield: AvailabilityBitfield;
139
+ AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;
140
+ BabeAuthorityWeight: BabeAuthorityWeight;
141
+ BabeBlockWeight: BabeBlockWeight;
142
+ BabeEpochConfiguration: BabeEpochConfiguration;
143
+ BabeEquivocationProof: BabeEquivocationProof;
144
+ BabeGenesisConfiguration: BabeGenesisConfiguration;
145
+ BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;
146
+ BabeWeight: BabeWeight;
147
+ BackedCandidate: BackedCandidate;
148
+ Balance: Balance;
149
+ BalanceLock: BalanceLock;
150
+ BalanceLockTo212: BalanceLockTo212;
151
+ BalanceOf: BalanceOf;
152
+ BalanceStatus: BalanceStatus;
153
+ BeefyAuthoritySet: BeefyAuthoritySet;
154
+ BeefyCommitment: BeefyCommitment;
155
+ BeefyEquivocationProof: BeefyEquivocationProof;
156
+ BeefyId: BeefyId;
157
+ BeefyKey: BeefyKey;
158
+ BeefyNextAuthoritySet: BeefyNextAuthoritySet;
159
+ BeefyPayload: BeefyPayload;
160
+ BeefyPayloadId: BeefyPayloadId;
161
+ BeefySignedCommitment: BeefySignedCommitment;
162
+ BeefyVoteMessage: BeefyVoteMessage;
163
+ BenchmarkBatch: BenchmarkBatch;
164
+ BenchmarkConfig: BenchmarkConfig;
165
+ BenchmarkList: BenchmarkList;
166
+ BenchmarkMetadata: BenchmarkMetadata;
167
+ BenchmarkParameter: BenchmarkParameter;
168
+ BenchmarkResult: BenchmarkResult;
169
+ Bid: Bid;
170
+ Bidder: Bidder;
171
+ BidKind: BidKind;
172
+ BitVec: BitVec;
173
+ Block: Block;
174
+ BlockAttestations: BlockAttestations;
175
+ BlockHash: BlockHash;
176
+ BlockLength: BlockLength;
177
+ BlockNumber: BlockNumber;
178
+ BlockNumberFor: BlockNumberFor;
179
+ BlockNumberOf: BlockNumberOf;
180
+ BlockStats: BlockStats;
181
+ BlockTrace: BlockTrace;
182
+ BlockTraceEvent: BlockTraceEvent;
183
+ BlockTraceEventData: BlockTraceEventData;
184
+ BlockTraceSpan: BlockTraceSpan;
185
+ BlockV0: BlockV0;
186
+ BlockV1: BlockV1;
187
+ BlockV2: BlockV2;
188
+ BlockWeights: BlockWeights;
189
+ BodyId: BodyId;
190
+ BodyPart: BodyPart;
191
+ bool: bool;
192
+ Bool: Bool;
193
+ Bounty: Bounty;
194
+ BountyIndex: BountyIndex;
195
+ BountyStatus: BountyStatus;
196
+ BountyStatusActive: BountyStatusActive;
197
+ BountyStatusCuratorProposed: BountyStatusCuratorProposed;
198
+ BountyStatusPendingPayout: BountyStatusPendingPayout;
199
+ BridgedBlockHash: BridgedBlockHash;
200
+ BridgedBlockNumber: BridgedBlockNumber;
201
+ BridgedHeader: BridgedHeader;
202
+ BridgeMessageId: BridgeMessageId;
203
+ BufferedSessionChange: BufferedSessionChange;
204
+ Bytes: Bytes;
205
+ Call: Call;
206
+ CallHash: CallHash;
207
+ CallHashOf: CallHashOf;
208
+ CallIndex: CallIndex;
209
+ CallOrigin: CallOrigin;
210
+ CandidateCommitments: CandidateCommitments;
211
+ CandidateDescriptor: CandidateDescriptor;
212
+ CandidateEvent: CandidateEvent;
213
+ CandidateHash: CandidateHash;
214
+ CandidateInfo: CandidateInfo;
215
+ CandidatePendingAvailability: CandidatePendingAvailability;
216
+ CandidateReceipt: CandidateReceipt;
217
+ ChainId: ChainId;
218
+ ChainProperties: ChainProperties;
219
+ ChainType: ChainType;
220
+ ChangesTrieConfiguration: ChangesTrieConfiguration;
221
+ ChangesTrieSignal: ChangesTrieSignal;
222
+ CheckInherentsResult: CheckInherentsResult;
223
+ ClassDetails: ClassDetails;
224
+ ClassId: ClassId;
225
+ ClassMetadata: ClassMetadata;
226
+ CodecHash: CodecHash;
227
+ CodeHash: CodeHash;
228
+ CodeSource: CodeSource;
229
+ CodeUploadRequest: CodeUploadRequest;
230
+ CodeUploadResult: CodeUploadResult;
231
+ CodeUploadResultValue: CodeUploadResultValue;
232
+ CollationInfo: CollationInfo;
233
+ CollationInfoV1: CollationInfoV1;
234
+ CollatorId: CollatorId;
235
+ CollatorSignature: CollatorSignature;
236
+ CollectiveOrigin: CollectiveOrigin;
237
+ CommittedCandidateReceipt: CommittedCandidateReceipt;
238
+ CompactAssignments: CompactAssignments;
239
+ CompactAssignmentsTo257: CompactAssignmentsTo257;
240
+ CompactAssignmentsTo265: CompactAssignmentsTo265;
241
+ CompactAssignmentsWith16: CompactAssignmentsWith16;
242
+ CompactAssignmentsWith24: CompactAssignmentsWith24;
243
+ CompactScore: CompactScore;
244
+ CompactScoreCompact: CompactScoreCompact;
245
+ ConfigData: ConfigData;
246
+ Consensus: Consensus;
247
+ ConsensusEngineId: ConsensusEngineId;
248
+ ConsumedWeight: ConsumedWeight;
249
+ ContractCallFlags: ContractCallFlags;
250
+ ContractCallRequest: ContractCallRequest;
251
+ ContractConstructorSpecLatest: ContractConstructorSpecLatest;
252
+ ContractConstructorSpecV0: ContractConstructorSpecV0;
253
+ ContractConstructorSpecV1: ContractConstructorSpecV1;
254
+ ContractConstructorSpecV2: ContractConstructorSpecV2;
255
+ ContractConstructorSpecV3: ContractConstructorSpecV3;
256
+ ContractConstructorSpecV4: ContractConstructorSpecV4;
257
+ ContractContractSpecV0: ContractContractSpecV0;
258
+ ContractContractSpecV1: ContractContractSpecV1;
259
+ ContractContractSpecV2: ContractContractSpecV2;
260
+ ContractContractSpecV3: ContractContractSpecV3;
261
+ ContractContractSpecV4: ContractContractSpecV4;
262
+ ContractCryptoHasher: ContractCryptoHasher;
263
+ ContractDiscriminant: ContractDiscriminant;
264
+ ContractDisplayName: ContractDisplayName;
265
+ ContractEnvironmentV4: ContractEnvironmentV4;
266
+ ContractEventParamSpecLatest: ContractEventParamSpecLatest;
267
+ ContractEventParamSpecV0: ContractEventParamSpecV0;
268
+ ContractEventParamSpecV2: ContractEventParamSpecV2;
269
+ ContractEventSpecLatest: ContractEventSpecLatest;
270
+ ContractEventSpecV0: ContractEventSpecV0;
271
+ ContractEventSpecV1: ContractEventSpecV1;
272
+ ContractEventSpecV2: ContractEventSpecV2;
273
+ ContractExecResult: ContractExecResult;
274
+ ContractExecResultOk: ContractExecResultOk;
275
+ ContractExecResultResult: ContractExecResultResult;
276
+ ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;
277
+ ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;
278
+ ContractExecResultTo255: ContractExecResultTo255;
279
+ ContractExecResultTo260: ContractExecResultTo260;
280
+ ContractExecResultTo267: ContractExecResultTo267;
281
+ ContractExecResultU64: ContractExecResultU64;
282
+ ContractInfo: ContractInfo;
283
+ ContractInstantiateResult: ContractInstantiateResult;
284
+ ContractInstantiateResultTo267: ContractInstantiateResultTo267;
285
+ ContractInstantiateResultTo299: ContractInstantiateResultTo299;
286
+ ContractInstantiateResultU64: ContractInstantiateResultU64;
287
+ ContractLayoutArray: ContractLayoutArray;
288
+ ContractLayoutCell: ContractLayoutCell;
289
+ ContractLayoutEnum: ContractLayoutEnum;
290
+ ContractLayoutHash: ContractLayoutHash;
291
+ ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;
292
+ ContractLayoutKey: ContractLayoutKey;
293
+ ContractLayoutStruct: ContractLayoutStruct;
294
+ ContractLayoutStructField: ContractLayoutStructField;
295
+ ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;
296
+ ContractMessageParamSpecV0: ContractMessageParamSpecV0;
297
+ ContractMessageParamSpecV2: ContractMessageParamSpecV2;
298
+ ContractMessageSpecLatest: ContractMessageSpecLatest;
299
+ ContractMessageSpecV0: ContractMessageSpecV0;
300
+ ContractMessageSpecV1: ContractMessageSpecV1;
301
+ ContractMessageSpecV2: ContractMessageSpecV2;
302
+ ContractMessageSpecV3: ContractMessageSpecV3;
303
+ ContractMetadata: ContractMetadata;
304
+ ContractMetadataLatest: ContractMetadataLatest;
305
+ ContractMetadataV0: ContractMetadataV0;
306
+ ContractMetadataV1: ContractMetadataV1;
307
+ ContractMetadataV2: ContractMetadataV2;
308
+ ContractMetadataV3: ContractMetadataV3;
309
+ ContractMetadataV4: ContractMetadataV4;
310
+ ContractProject: ContractProject;
311
+ ContractProjectContract: ContractProjectContract;
312
+ ContractProjectInfo: ContractProjectInfo;
313
+ ContractProjectSource: ContractProjectSource;
314
+ ContractProjectV0: ContractProjectV0;
315
+ ContractReturnFlags: ContractReturnFlags;
316
+ ContractSelector: ContractSelector;
317
+ ContractStorageKey: ContractStorageKey;
318
+ ContractStorageLayout: ContractStorageLayout;
319
+ ContractTypeSpec: ContractTypeSpec;
320
+ Conviction: Conviction;
321
+ CoreAssignment: CoreAssignment;
322
+ CoreIndex: CoreIndex;
323
+ CoreOccupied: CoreOccupied;
324
+ CoreState: CoreState;
325
+ CrateVersion: CrateVersion;
326
+ CreatedBlock: CreatedBlock;
327
+ CustomMetadata15: CustomMetadata15;
328
+ CustomValueMetadata15: CustomValueMetadata15;
329
+ Data: Data;
330
+ DeferredOffenceOf: DeferredOffenceOf;
331
+ DefunctVoter: DefunctVoter;
332
+ DelayKind: DelayKind;
333
+ DelayKindBest: DelayKindBest;
334
+ Delegations: Delegations;
335
+ DeletedContract: DeletedContract;
336
+ DeliveredMessages: DeliveredMessages;
337
+ DepositBalance: DepositBalance;
338
+ DepositBalanceOf: DepositBalanceOf;
339
+ DestroyWitness: DestroyWitness;
340
+ Digest: Digest;
341
+ DigestItem: DigestItem;
342
+ DigestOf: DigestOf;
343
+ DispatchClass: DispatchClass;
344
+ DispatchError: DispatchError;
345
+ DispatchErrorModule: DispatchErrorModule;
346
+ DispatchErrorModulePre6: DispatchErrorModulePre6;
347
+ DispatchErrorModuleU8: DispatchErrorModuleU8;
348
+ DispatchErrorModuleU8a: DispatchErrorModuleU8a;
349
+ DispatchErrorPre6: DispatchErrorPre6;
350
+ DispatchErrorPre6First: DispatchErrorPre6First;
351
+ DispatchErrorTo198: DispatchErrorTo198;
352
+ DispatchFeePayment: DispatchFeePayment;
353
+ DispatchInfo: DispatchInfo;
354
+ DispatchInfoTo190: DispatchInfoTo190;
355
+ DispatchInfoTo244: DispatchInfoTo244;
356
+ DispatchOutcome: DispatchOutcome;
357
+ DispatchOutcomePre6: DispatchOutcomePre6;
358
+ DispatchResult: DispatchResult;
359
+ DispatchResultOf: DispatchResultOf;
360
+ DispatchResultTo198: DispatchResultTo198;
361
+ DisputeLocation: DisputeLocation;
362
+ DisputeProof: DisputeProof;
363
+ DisputeResult: DisputeResult;
364
+ DisputeState: DisputeState;
365
+ DisputeStatement: DisputeStatement;
366
+ DisputeStatementSet: DisputeStatementSet;
367
+ DisputesTimeSlot: DisputesTimeSlot;
368
+ DoubleEncodedCall: DoubleEncodedCall;
369
+ DoubleVoteReport: DoubleVoteReport;
370
+ DownwardMessage: DownwardMessage;
371
+ EcdsaSignature: EcdsaSignature;
372
+ Ed25519Signature: Ed25519Signature;
373
+ EIP1559Transaction: EIP1559Transaction;
374
+ EIP2930Transaction: EIP2930Transaction;
375
+ ElectionCompute: ElectionCompute;
376
+ ElectionPhase: ElectionPhase;
377
+ ElectionResult: ElectionResult;
378
+ ElectionScore: ElectionScore;
379
+ ElectionSize: ElectionSize;
380
+ ElectionStatus: ElectionStatus;
381
+ EncodedFinalityProofs: EncodedFinalityProofs;
382
+ EncodedJustification: EncodedJustification;
383
+ Epoch: Epoch;
384
+ EpochAuthorship: EpochAuthorship;
385
+ Era: Era;
386
+ EraIndex: EraIndex;
387
+ EraPoints: EraPoints;
388
+ EraRewardPoints: EraRewardPoints;
389
+ EraRewards: EraRewards;
390
+ ErrorMetadataLatest: ErrorMetadataLatest;
391
+ ErrorMetadataV10: ErrorMetadataV10;
392
+ ErrorMetadataV11: ErrorMetadataV11;
393
+ ErrorMetadataV12: ErrorMetadataV12;
394
+ ErrorMetadataV13: ErrorMetadataV13;
395
+ ErrorMetadataV14: ErrorMetadataV14;
396
+ ErrorMetadataV9: ErrorMetadataV9;
397
+ EthAccessList: EthAccessList;
398
+ EthAccessListItem: EthAccessListItem;
399
+ EthAccount: EthAccount;
400
+ EthAddress: EthAddress;
401
+ EthBlock: EthBlock;
402
+ EthBloom: EthBloom;
403
+ EthCallRequest: EthCallRequest;
404
+ EthereumAccountId: EthereumAccountId;
405
+ EthereumAddress: EthereumAddress;
406
+ EthereumLookupSource: EthereumLookupSource;
407
+ EthereumSignature: EthereumSignature;
408
+ EthFeeHistory: EthFeeHistory;
409
+ EthFilter: EthFilter;
410
+ EthFilterAddress: EthFilterAddress;
411
+ EthFilterChanges: EthFilterChanges;
412
+ EthFilterTopic: EthFilterTopic;
413
+ EthFilterTopicEntry: EthFilterTopicEntry;
414
+ EthFilterTopicInner: EthFilterTopicInner;
415
+ EthHeader: EthHeader;
416
+ EthLog: EthLog;
417
+ EthReceipt: EthReceipt;
418
+ EthReceiptV0: EthReceiptV0;
419
+ EthReceiptV3: EthReceiptV3;
420
+ EthRichBlock: EthRichBlock;
421
+ EthRichHeader: EthRichHeader;
422
+ EthStorageProof: EthStorageProof;
423
+ EthSubKind: EthSubKind;
424
+ EthSubParams: EthSubParams;
425
+ EthSubResult: EthSubResult;
426
+ EthSyncInfo: EthSyncInfo;
427
+ EthSyncStatus: EthSyncStatus;
428
+ EthTransaction: EthTransaction;
429
+ EthTransactionAction: EthTransactionAction;
430
+ EthTransactionCondition: EthTransactionCondition;
431
+ EthTransactionRequest: EthTransactionRequest;
432
+ EthTransactionSignature: EthTransactionSignature;
433
+ EthTransactionStatus: EthTransactionStatus;
434
+ EthWork: EthWork;
435
+ Event: Event;
436
+ EventId: EventId;
437
+ EventIndex: EventIndex;
438
+ EventMetadataLatest: EventMetadataLatest;
439
+ EventMetadataV10: EventMetadataV10;
440
+ EventMetadataV11: EventMetadataV11;
441
+ EventMetadataV12: EventMetadataV12;
442
+ EventMetadataV13: EventMetadataV13;
443
+ EventMetadataV14: EventMetadataV14;
444
+ EventMetadataV9: EventMetadataV9;
445
+ EventRecord: EventRecord;
446
+ EvmAccount: EvmAccount;
447
+ EvmCallInfo: EvmCallInfo;
448
+ EvmCallInfoV2: EvmCallInfoV2;
449
+ EvmCreateInfo: EvmCreateInfo;
450
+ EvmCreateInfoV2: EvmCreateInfoV2;
451
+ EvmLog: EvmLog;
452
+ EvmVicinity: EvmVicinity;
453
+ EvmWeightInfo: EvmWeightInfo;
454
+ ExecReturnValue: ExecReturnValue;
455
+ ExecutorParam: ExecutorParam;
456
+ ExecutorParams: ExecutorParams;
457
+ ExecutorParamsHash: ExecutorParamsHash;
458
+ ExitError: ExitError;
459
+ ExitFatal: ExitFatal;
460
+ ExitReason: ExitReason;
461
+ ExitRevert: ExitRevert;
462
+ ExitSucceed: ExitSucceed;
463
+ ExplicitDisputeStatement: ExplicitDisputeStatement;
464
+ Exposure: Exposure;
465
+ ExtendedBalance: ExtendedBalance;
466
+ Extrinsic: Extrinsic;
467
+ ExtrinsicEra: ExtrinsicEra;
468
+ ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;
469
+ ExtrinsicMetadataV11: ExtrinsicMetadataV11;
470
+ ExtrinsicMetadataV12: ExtrinsicMetadataV12;
471
+ ExtrinsicMetadataV13: ExtrinsicMetadataV13;
472
+ ExtrinsicMetadataV14: ExtrinsicMetadataV14;
473
+ ExtrinsicMetadataV15: ExtrinsicMetadataV15;
474
+ ExtrinsicOrHash: ExtrinsicOrHash;
475
+ ExtrinsicPayload: ExtrinsicPayload;
476
+ ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;
477
+ ExtrinsicPayloadV4: ExtrinsicPayloadV4;
478
+ ExtrinsicSignature: ExtrinsicSignature;
479
+ ExtrinsicSignatureV4: ExtrinsicSignatureV4;
480
+ ExtrinsicStatus: ExtrinsicStatus;
481
+ ExtrinsicsWeight: ExtrinsicsWeight;
482
+ ExtrinsicUnknown: ExtrinsicUnknown;
483
+ ExtrinsicV4: ExtrinsicV4;
484
+ f32: f32;
485
+ F32: F32;
486
+ f64: f64;
487
+ F64: F64;
488
+ FeeDetails: FeeDetails;
489
+ Fixed128: Fixed128;
490
+ Fixed64: Fixed64;
491
+ FixedI128: FixedI128;
492
+ FixedI64: FixedI64;
493
+ FixedU128: FixedU128;
494
+ FixedU64: FixedU64;
495
+ Forcing: Forcing;
496
+ ForkTreePendingChange: ForkTreePendingChange;
497
+ ForkTreePendingChangeNode: ForkTreePendingChangeNode;
498
+ FullIdentification: FullIdentification;
499
+ FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;
500
+ FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;
501
+ FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;
502
+ FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;
503
+ FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;
504
+ FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;
505
+ FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;
506
+ FunctionMetadataLatest: FunctionMetadataLatest;
507
+ FunctionMetadataV10: FunctionMetadataV10;
508
+ FunctionMetadataV11: FunctionMetadataV11;
509
+ FunctionMetadataV12: FunctionMetadataV12;
510
+ FunctionMetadataV13: FunctionMetadataV13;
511
+ FunctionMetadataV14: FunctionMetadataV14;
512
+ FunctionMetadataV9: FunctionMetadataV9;
513
+ FundIndex: FundIndex;
514
+ FundInfo: FundInfo;
515
+ Fungibility: Fungibility;
516
+ FungibilityV0: FungibilityV0;
517
+ FungibilityV1: FungibilityV1;
518
+ FungibilityV2: FungibilityV2;
519
+ FungiblesAccessError: FungiblesAccessError;
520
+ Gas: Gas;
521
+ GiltBid: GiltBid;
522
+ GlobalValidationData: GlobalValidationData;
523
+ GlobalValidationSchedule: GlobalValidationSchedule;
524
+ GrandpaCommit: GrandpaCommit;
525
+ GrandpaEquivocation: GrandpaEquivocation;
526
+ GrandpaEquivocationProof: GrandpaEquivocationProof;
527
+ GrandpaEquivocationValue: GrandpaEquivocationValue;
528
+ GrandpaJustification: GrandpaJustification;
529
+ GrandpaPrecommit: GrandpaPrecommit;
530
+ GrandpaPrevote: GrandpaPrevote;
531
+ GrandpaSignedPrecommit: GrandpaSignedPrecommit;
532
+ GroupIndex: GroupIndex;
533
+ GroupRotationInfo: GroupRotationInfo;
534
+ H1024: H1024;
535
+ H128: H128;
536
+ H160: H160;
537
+ H2048: H2048;
538
+ H256: H256;
539
+ H32: H32;
540
+ H512: H512;
541
+ H64: H64;
542
+ Hash: Hash;
543
+ HeadData: HeadData;
544
+ Header: Header;
545
+ HeaderPartial: HeaderPartial;
546
+ Health: Health;
547
+ Heartbeat: Heartbeat;
548
+ HeartbeatTo244: HeartbeatTo244;
549
+ HostConfiguration: HostConfiguration;
550
+ HostFnWeights: HostFnWeights;
551
+ HostFnWeightsTo264: HostFnWeightsTo264;
552
+ HrmpChannel: HrmpChannel;
553
+ HrmpChannelId: HrmpChannelId;
554
+ HrmpOpenChannelRequest: HrmpOpenChannelRequest;
555
+ i128: i128;
556
+ I128: I128;
557
+ i16: i16;
558
+ I16: I16;
559
+ i256: i256;
560
+ I256: I256;
561
+ i32: i32;
562
+ I32: I32;
563
+ I32F32: I32F32;
564
+ i64: i64;
565
+ I64: I64;
566
+ i8: i8;
567
+ I8: I8;
568
+ IdentificationTuple: IdentificationTuple;
569
+ IdentityFields: IdentityFields;
570
+ IdentityInfo: IdentityInfo;
571
+ IdentityInfoAdditional: IdentityInfoAdditional;
572
+ IdentityInfoTo198: IdentityInfoTo198;
573
+ IdentityJudgement: IdentityJudgement;
574
+ ImmortalEra: ImmortalEra;
575
+ ImportedAux: ImportedAux;
576
+ InboundDownwardMessage: InboundDownwardMessage;
577
+ InboundHrmpMessage: InboundHrmpMessage;
578
+ InboundHrmpMessages: InboundHrmpMessages;
579
+ InboundLaneData: InboundLaneData;
580
+ InboundRelayer: InboundRelayer;
581
+ InboundStatus: InboundStatus;
582
+ IncludedBlocks: IncludedBlocks;
583
+ InclusionFee: InclusionFee;
584
+ IncomingParachain: IncomingParachain;
585
+ IncomingParachainDeploy: IncomingParachainDeploy;
586
+ IncomingParachainFixed: IncomingParachainFixed;
587
+ Index: Index;
588
+ IndicesLookupSource: IndicesLookupSource;
589
+ IndividualExposure: IndividualExposure;
590
+ InherentData: InherentData;
591
+ InherentIdentifier: InherentIdentifier;
592
+ InitializationData: InitializationData;
593
+ InstanceDetails: InstanceDetails;
594
+ InstanceId: InstanceId;
595
+ InstanceMetadata: InstanceMetadata;
596
+ InstantiateRequest: InstantiateRequest;
597
+ InstantiateRequestV1: InstantiateRequestV1;
598
+ InstantiateRequestV2: InstantiateRequestV2;
599
+ InstantiateReturnValue: InstantiateReturnValue;
600
+ InstantiateReturnValueOk: InstantiateReturnValueOk;
601
+ InstantiateReturnValueTo267: InstantiateReturnValueTo267;
602
+ InstructionV2: InstructionV2;
603
+ InstructionWeights: InstructionWeights;
604
+ InteriorMultiLocation: InteriorMultiLocation;
605
+ InvalidDisputeStatementKind: InvalidDisputeStatementKind;
606
+ InvalidTransaction: InvalidTransaction;
607
+ isize: isize;
608
+ ISize: ISize;
609
+ Json: Json;
610
+ Junction: Junction;
611
+ Junctions: Junctions;
612
+ JunctionsV1: JunctionsV1;
613
+ JunctionsV2: JunctionsV2;
614
+ JunctionV0: JunctionV0;
615
+ JunctionV1: JunctionV1;
616
+ JunctionV2: JunctionV2;
617
+ Justification: Justification;
618
+ JustificationNotification: JustificationNotification;
619
+ Justifications: Justifications;
620
+ Key: Key;
621
+ KeyOwnerProof: KeyOwnerProof;
622
+ Keys: Keys;
623
+ KeyType: KeyType;
624
+ KeyTypeId: KeyTypeId;
625
+ KeyValue: KeyValue;
626
+ KeyValueOption: KeyValueOption;
627
+ Kind: Kind;
628
+ LaneId: LaneId;
629
+ LastContribution: LastContribution;
630
+ LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;
631
+ LeasePeriod: LeasePeriod;
632
+ LeasePeriodOf: LeasePeriodOf;
633
+ LegacyTransaction: LegacyTransaction;
634
+ Limits: Limits;
635
+ LimitsTo264: LimitsTo264;
636
+ LocalValidationData: LocalValidationData;
637
+ LockIdentifier: LockIdentifier;
638
+ LookupSource: LookupSource;
639
+ LookupTarget: LookupTarget;
640
+ LotteryConfig: LotteryConfig;
641
+ MaybeRandomness: MaybeRandomness;
642
+ MaybeVrf: MaybeVrf;
643
+ MemberCount: MemberCount;
644
+ MembershipProof: MembershipProof;
645
+ MessageData: MessageData;
646
+ MessageId: MessageId;
647
+ MessageIngestionType: MessageIngestionType;
648
+ MessageKey: MessageKey;
649
+ MessageNonce: MessageNonce;
650
+ MessageQueueChain: MessageQueueChain;
651
+ MessagesDeliveryProofOf: MessagesDeliveryProofOf;
652
+ MessagesProofOf: MessagesProofOf;
653
+ MessagingStateSnapshot: MessagingStateSnapshot;
654
+ MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;
655
+ MetadataAll: MetadataAll;
656
+ MetadataLatest: MetadataLatest;
657
+ MetadataV10: MetadataV10;
658
+ MetadataV11: MetadataV11;
659
+ MetadataV12: MetadataV12;
660
+ MetadataV13: MetadataV13;
661
+ MetadataV14: MetadataV14;
662
+ MetadataV15: MetadataV15;
663
+ MetadataV9: MetadataV9;
664
+ MigrationStatusResult: MigrationStatusResult;
665
+ MmrBatchProof: MmrBatchProof;
666
+ MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;
667
+ MmrError: MmrError;
668
+ MmrHash: MmrHash;
669
+ MmrLeafBatchProof: MmrLeafBatchProof;
670
+ MmrLeafIndex: MmrLeafIndex;
671
+ MmrLeafProof: MmrLeafProof;
672
+ MmrNodeIndex: MmrNodeIndex;
673
+ MmrProof: MmrProof;
674
+ MmrRootHash: MmrRootHash;
675
+ ModuleConstantMetadataV10: ModuleConstantMetadataV10;
676
+ ModuleConstantMetadataV11: ModuleConstantMetadataV11;
677
+ ModuleConstantMetadataV12: ModuleConstantMetadataV12;
678
+ ModuleConstantMetadataV13: ModuleConstantMetadataV13;
679
+ ModuleConstantMetadataV9: ModuleConstantMetadataV9;
680
+ ModuleId: ModuleId;
681
+ ModuleMetadataV10: ModuleMetadataV10;
682
+ ModuleMetadataV11: ModuleMetadataV11;
683
+ ModuleMetadataV12: ModuleMetadataV12;
684
+ ModuleMetadataV13: ModuleMetadataV13;
685
+ ModuleMetadataV9: ModuleMetadataV9;
686
+ Moment: Moment;
687
+ MomentOf: MomentOf;
688
+ MoreAttestations: MoreAttestations;
689
+ MortalEra: MortalEra;
690
+ MultiAddress: MultiAddress;
691
+ MultiAsset: MultiAsset;
692
+ MultiAssetFilter: MultiAssetFilter;
693
+ MultiAssetFilterV1: MultiAssetFilterV1;
694
+ MultiAssetFilterV2: MultiAssetFilterV2;
695
+ MultiAssets: MultiAssets;
696
+ MultiAssetsV1: MultiAssetsV1;
697
+ MultiAssetsV2: MultiAssetsV2;
698
+ MultiAssetV0: MultiAssetV0;
699
+ MultiAssetV1: MultiAssetV1;
700
+ MultiAssetV2: MultiAssetV2;
701
+ MultiDisputeStatementSet: MultiDisputeStatementSet;
702
+ MultiLocation: MultiLocation;
703
+ MultiLocationV0: MultiLocationV0;
704
+ MultiLocationV1: MultiLocationV1;
705
+ MultiLocationV2: MultiLocationV2;
706
+ Multiplier: Multiplier;
707
+ Multisig: Multisig;
708
+ MultiSignature: MultiSignature;
709
+ MultiSigner: MultiSigner;
710
+ NetworkId: NetworkId;
711
+ NetworkState: NetworkState;
712
+ NetworkStatePeerset: NetworkStatePeerset;
713
+ NetworkStatePeersetInfo: NetworkStatePeersetInfo;
714
+ NewBidder: NewBidder;
715
+ NextAuthority: NextAuthority;
716
+ NextConfigDescriptor: NextConfigDescriptor;
717
+ NextConfigDescriptorV1: NextConfigDescriptorV1;
718
+ NftCollectionId: NftCollectionId;
719
+ NftItemId: NftItemId;
720
+ NodeRole: NodeRole;
721
+ Nominations: Nominations;
722
+ NominatorIndex: NominatorIndex;
723
+ NominatorIndexCompact: NominatorIndexCompact;
724
+ NotConnectedPeer: NotConnectedPeer;
725
+ NpApiError: NpApiError;
726
+ NpPoolId: NpPoolId;
727
+ Null: Null;
728
+ OccupiedCore: OccupiedCore;
729
+ OccupiedCoreAssumption: OccupiedCoreAssumption;
730
+ OffchainAccuracy: OffchainAccuracy;
731
+ OffchainAccuracyCompact: OffchainAccuracyCompact;
732
+ OffenceDetails: OffenceDetails;
733
+ Offender: Offender;
734
+ OldV1SessionInfo: OldV1SessionInfo;
735
+ OpaqueCall: OpaqueCall;
736
+ OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;
737
+ OpaqueMetadata: OpaqueMetadata;
738
+ OpaqueMultiaddr: OpaqueMultiaddr;
739
+ OpaqueNetworkState: OpaqueNetworkState;
740
+ OpaquePeerId: OpaquePeerId;
741
+ OpaqueTimeSlot: OpaqueTimeSlot;
742
+ OpenTip: OpenTip;
743
+ OpenTipFinderTo225: OpenTipFinderTo225;
744
+ OpenTipTip: OpenTipTip;
745
+ OpenTipTo225: OpenTipTo225;
746
+ OperatingMode: OperatingMode;
747
+ OptionBool: OptionBool;
748
+ Origin: Origin;
749
+ OriginCaller: OriginCaller;
750
+ OriginKindV0: OriginKindV0;
751
+ OriginKindV1: OriginKindV1;
752
+ OriginKindV2: OriginKindV2;
753
+ OutboundHrmpMessage: OutboundHrmpMessage;
754
+ OutboundLaneData: OutboundLaneData;
755
+ OutboundMessageFee: OutboundMessageFee;
756
+ OutboundPayload: OutboundPayload;
757
+ OutboundStatus: OutboundStatus;
758
+ Outcome: Outcome;
759
+ OuterEnums15: OuterEnums15;
760
+ OverweightIndex: OverweightIndex;
761
+ Owner: Owner;
762
+ PageCounter: PageCounter;
763
+ PageIndexData: PageIndexData;
764
+ PalletCallMetadataLatest: PalletCallMetadataLatest;
765
+ PalletCallMetadataV14: PalletCallMetadataV14;
766
+ PalletConstantMetadataLatest: PalletConstantMetadataLatest;
767
+ PalletConstantMetadataV14: PalletConstantMetadataV14;
768
+ PalletErrorMetadataLatest: PalletErrorMetadataLatest;
769
+ PalletErrorMetadataV14: PalletErrorMetadataV14;
770
+ PalletEventMetadataLatest: PalletEventMetadataLatest;
771
+ PalletEventMetadataV14: PalletEventMetadataV14;
772
+ PalletId: PalletId;
773
+ PalletMetadataLatest: PalletMetadataLatest;
774
+ PalletMetadataV14: PalletMetadataV14;
775
+ PalletMetadataV15: PalletMetadataV15;
776
+ PalletsOrigin: PalletsOrigin;
777
+ PalletStorageMetadataLatest: PalletStorageMetadataLatest;
778
+ PalletStorageMetadataV14: PalletStorageMetadataV14;
779
+ PalletVersion: PalletVersion;
780
+ ParachainDispatchOrigin: ParachainDispatchOrigin;
781
+ ParachainInherentData: ParachainInherentData;
782
+ ParachainProposal: ParachainProposal;
783
+ ParachainsInherentData: ParachainsInherentData;
784
+ ParaGenesisArgs: ParaGenesisArgs;
785
+ ParaId: ParaId;
786
+ ParaInfo: ParaInfo;
787
+ ParaLifecycle: ParaLifecycle;
788
+ Parameter: Parameter;
789
+ ParaPastCodeMeta: ParaPastCodeMeta;
790
+ ParaScheduling: ParaScheduling;
791
+ ParathreadClaim: ParathreadClaim;
792
+ ParathreadClaimQueue: ParathreadClaimQueue;
793
+ ParathreadEntry: ParathreadEntry;
794
+ ParaValidatorIndex: ParaValidatorIndex;
795
+ Pays: Pays;
796
+ Peer: Peer;
797
+ PeerEndpoint: PeerEndpoint;
798
+ PeerEndpointAddr: PeerEndpointAddr;
799
+ PeerInfo: PeerInfo;
800
+ PeerPing: PeerPing;
801
+ PendingChange: PendingChange;
802
+ PendingPause: PendingPause;
803
+ PendingResume: PendingResume;
804
+ PendingSlashes: PendingSlashes;
805
+ Perbill: Perbill;
806
+ Percent: Percent;
807
+ PerDispatchClassU32: PerDispatchClassU32;
808
+ PerDispatchClassWeight: PerDispatchClassWeight;
809
+ PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;
810
+ Period: Period;
811
+ Permill: Permill;
812
+ PermissionLatest: PermissionLatest;
813
+ PermissionsV1: PermissionsV1;
814
+ PermissionVersions: PermissionVersions;
815
+ Perquintill: Perquintill;
816
+ PersistedValidationData: PersistedValidationData;
817
+ PerU16: PerU16;
818
+ Phantom: Phantom;
819
+ PhantomData: PhantomData;
820
+ Phase: Phase;
821
+ PhragmenScore: PhragmenScore;
822
+ Points: Points;
823
+ PortableType: PortableType;
824
+ PortableTypeV14: PortableTypeV14;
825
+ Precommits: Precommits;
826
+ PrefabWasmModule: PrefabWasmModule;
827
+ PrefixedStorageKey: PrefixedStorageKey;
828
+ PreimageStatus: PreimageStatus;
829
+ PreimageStatusAvailable: PreimageStatusAvailable;
830
+ PreRuntime: PreRuntime;
831
+ Prevotes: Prevotes;
832
+ Priority: Priority;
833
+ PriorLock: PriorLock;
834
+ PropIndex: PropIndex;
835
+ Proposal: Proposal;
836
+ ProposalIndex: ProposalIndex;
837
+ ProxyAnnouncement: ProxyAnnouncement;
838
+ ProxyDefinition: ProxyDefinition;
839
+ ProxyState: ProxyState;
840
+ ProxyType: ProxyType;
841
+ PvfCheckStatement: PvfCheckStatement;
842
+ PvfExecTimeoutKind: PvfExecTimeoutKind;
843
+ PvfPrepTimeoutKind: PvfPrepTimeoutKind;
844
+ QueryId: QueryId;
845
+ QueryStatus: QueryStatus;
846
+ QueueConfigData: QueueConfigData;
847
+ QueuedParathread: QueuedParathread;
848
+ Randomness: Randomness;
849
+ Raw: Raw;
850
+ RawAuraPreDigest: RawAuraPreDigest;
851
+ RawBabePreDigest: RawBabePreDigest;
852
+ RawBabePreDigestCompat: RawBabePreDigestCompat;
853
+ RawBabePreDigestPrimary: RawBabePreDigestPrimary;
854
+ RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;
855
+ RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;
856
+ RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;
857
+ RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;
858
+ RawBabePreDigestTo159: RawBabePreDigestTo159;
859
+ RawOrigin: RawOrigin;
860
+ RawSolution: RawSolution;
861
+ RawSolutionTo265: RawSolutionTo265;
862
+ RawSolutionWith16: RawSolutionWith16;
863
+ RawSolutionWith24: RawSolutionWith24;
864
+ RawVRFOutput: RawVRFOutput;
865
+ ReadProof: ReadProof;
866
+ ReadySolution: ReadySolution;
867
+ Reasons: Reasons;
868
+ RecoveryConfig: RecoveryConfig;
869
+ RefCount: RefCount;
870
+ RefCountTo259: RefCountTo259;
871
+ ReferendumIndex: ReferendumIndex;
872
+ ReferendumInfo: ReferendumInfo;
873
+ ReferendumInfoFinished: ReferendumInfoFinished;
874
+ ReferendumInfoTo239: ReferendumInfoTo239;
875
+ ReferendumStatus: ReferendumStatus;
876
+ RegisteredParachainInfo: RegisteredParachainInfo;
877
+ RegistrarIndex: RegistrarIndex;
878
+ RegistrarInfo: RegistrarInfo;
879
+ Registration: Registration;
880
+ RegistrationJudgement: RegistrationJudgement;
881
+ RegistrationTo198: RegistrationTo198;
882
+ RelayBlockNumber: RelayBlockNumber;
883
+ RelayChainBlockNumber: RelayChainBlockNumber;
884
+ RelayChainHash: RelayChainHash;
885
+ RelayerId: RelayerId;
886
+ RelayHash: RelayHash;
887
+ Releases: Releases;
888
+ Remark: Remark;
889
+ Renouncing: Renouncing;
890
+ RentProjection: RentProjection;
891
+ ReplacementTimes: ReplacementTimes;
892
+ ReportedRoundStates: ReportedRoundStates;
893
+ Reporter: Reporter;
894
+ ReportIdOf: ReportIdOf;
895
+ ReserveData: ReserveData;
896
+ ReserveIdentifier: ReserveIdentifier;
897
+ Response: Response;
898
+ ResponseV0: ResponseV0;
899
+ ResponseV1: ResponseV1;
900
+ ResponseV2: ResponseV2;
901
+ ResponseV2Error: ResponseV2Error;
902
+ ResponseV2Result: ResponseV2Result;
903
+ Retriable: Retriable;
904
+ RewardDestination: RewardDestination;
905
+ RewardPoint: RewardPoint;
906
+ RoundSnapshot: RoundSnapshot;
907
+ RoundState: RoundState;
908
+ RpcMethods: RpcMethods;
909
+ RuntimeApiMetadataLatest: RuntimeApiMetadataLatest;
910
+ RuntimeApiMetadataV15: RuntimeApiMetadataV15;
911
+ RuntimeApiMethodMetadataV15: RuntimeApiMethodMetadataV15;
912
+ RuntimeApiMethodParamMetadataV15: RuntimeApiMethodParamMetadataV15;
913
+ RuntimeCall: RuntimeCall;
914
+ RuntimeDbWeight: RuntimeDbWeight;
915
+ RuntimeDispatchInfo: RuntimeDispatchInfo;
916
+ RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;
917
+ RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;
918
+ RuntimeEvent: RuntimeEvent;
919
+ RuntimeVersion: RuntimeVersion;
920
+ RuntimeVersionApi: RuntimeVersionApi;
921
+ RuntimeVersionPartial: RuntimeVersionPartial;
922
+ RuntimeVersionPre3: RuntimeVersionPre3;
923
+ RuntimeVersionPre4: RuntimeVersionPre4;
924
+ Schedule: Schedule;
925
+ Scheduled: Scheduled;
926
+ ScheduledCore: ScheduledCore;
927
+ ScheduledTo254: ScheduledTo254;
928
+ SchedulePeriod: SchedulePeriod;
929
+ SchedulePriority: SchedulePriority;
930
+ ScheduleTo212: ScheduleTo212;
931
+ ScheduleTo258: ScheduleTo258;
932
+ ScheduleTo264: ScheduleTo264;
933
+ Scheduling: Scheduling;
934
+ ScrapedOnChainVotes: ScrapedOnChainVotes;
935
+ Seal: Seal;
936
+ SealV0: SealV0;
937
+ SeatHolder: SeatHolder;
938
+ SeedOf: SeedOf;
939
+ ServiceQuality: ServiceQuality;
940
+ SessionIndex: SessionIndex;
941
+ SessionInfo: SessionInfo;
942
+ SessionInfoValidatorGroup: SessionInfoValidatorGroup;
943
+ SessionKeys1: SessionKeys1;
944
+ SessionKeys10: SessionKeys10;
945
+ SessionKeys10B: SessionKeys10B;
946
+ SessionKeys2: SessionKeys2;
947
+ SessionKeys3: SessionKeys3;
948
+ SessionKeys4: SessionKeys4;
949
+ SessionKeys5: SessionKeys5;
950
+ SessionKeys6: SessionKeys6;
951
+ SessionKeys6B: SessionKeys6B;
952
+ SessionKeys7: SessionKeys7;
953
+ SessionKeys7B: SessionKeys7B;
954
+ SessionKeys8: SessionKeys8;
955
+ SessionKeys8B: SessionKeys8B;
956
+ SessionKeys9: SessionKeys9;
957
+ SessionKeys9B: SessionKeys9B;
958
+ SetId: SetId;
959
+ SetIndex: SetIndex;
960
+ Si0Field: Si0Field;
961
+ Si0LookupTypeId: Si0LookupTypeId;
962
+ Si0Path: Si0Path;
963
+ Si0Type: Si0Type;
964
+ Si0TypeDef: Si0TypeDef;
965
+ Si0TypeDefArray: Si0TypeDefArray;
966
+ Si0TypeDefBitSequence: Si0TypeDefBitSequence;
967
+ Si0TypeDefCompact: Si0TypeDefCompact;
968
+ Si0TypeDefComposite: Si0TypeDefComposite;
969
+ Si0TypeDefPhantom: Si0TypeDefPhantom;
970
+ Si0TypeDefPrimitive: Si0TypeDefPrimitive;
971
+ Si0TypeDefSequence: Si0TypeDefSequence;
972
+ Si0TypeDefTuple: Si0TypeDefTuple;
973
+ Si0TypeDefVariant: Si0TypeDefVariant;
974
+ Si0TypeParameter: Si0TypeParameter;
975
+ Si0Variant: Si0Variant;
976
+ Si1Field: Si1Field;
977
+ Si1LookupTypeId: Si1LookupTypeId;
978
+ Si1Path: Si1Path;
979
+ Si1Type: Si1Type;
980
+ Si1TypeDef: Si1TypeDef;
981
+ Si1TypeDefArray: Si1TypeDefArray;
982
+ Si1TypeDefBitSequence: Si1TypeDefBitSequence;
983
+ Si1TypeDefCompact: Si1TypeDefCompact;
984
+ Si1TypeDefComposite: Si1TypeDefComposite;
985
+ Si1TypeDefPrimitive: Si1TypeDefPrimitive;
986
+ Si1TypeDefSequence: Si1TypeDefSequence;
987
+ Si1TypeDefTuple: Si1TypeDefTuple;
988
+ Si1TypeDefVariant: Si1TypeDefVariant;
989
+ Si1TypeParameter: Si1TypeParameter;
990
+ Si1Variant: Si1Variant;
991
+ SiField: SiField;
992
+ Signature: Signature;
993
+ SignedAvailabilityBitfield: SignedAvailabilityBitfield;
994
+ SignedAvailabilityBitfields: SignedAvailabilityBitfields;
995
+ SignedBlock: SignedBlock;
996
+ SignedBlockWithJustification: SignedBlockWithJustification;
997
+ SignedBlockWithJustifications: SignedBlockWithJustifications;
998
+ SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;
999
+ SignedExtensionMetadataV14: SignedExtensionMetadataV14;
1000
+ SignedSubmission: SignedSubmission;
1001
+ SignedSubmissionOf: SignedSubmissionOf;
1002
+ SignedSubmissionTo276: SignedSubmissionTo276;
1003
+ SignerPayload: SignerPayload;
1004
+ SigningContext: SigningContext;
1005
+ SiLookupTypeId: SiLookupTypeId;
1006
+ SiPath: SiPath;
1007
+ SiType: SiType;
1008
+ SiTypeDef: SiTypeDef;
1009
+ SiTypeDefArray: SiTypeDefArray;
1010
+ SiTypeDefBitSequence: SiTypeDefBitSequence;
1011
+ SiTypeDefCompact: SiTypeDefCompact;
1012
+ SiTypeDefComposite: SiTypeDefComposite;
1013
+ SiTypeDefPrimitive: SiTypeDefPrimitive;
1014
+ SiTypeDefSequence: SiTypeDefSequence;
1015
+ SiTypeDefTuple: SiTypeDefTuple;
1016
+ SiTypeDefVariant: SiTypeDefVariant;
1017
+ SiTypeParameter: SiTypeParameter;
1018
+ SiVariant: SiVariant;
1019
+ SlashingOffenceKind: SlashingOffenceKind;
1020
+ SlashingSpans: SlashingSpans;
1021
+ SlashingSpansTo204: SlashingSpansTo204;
1022
+ SlashJournalEntry: SlashJournalEntry;
1023
+ Slot: Slot;
1024
+ SlotDuration: SlotDuration;
1025
+ SlotNumber: SlotNumber;
1026
+ SlotRange: SlotRange;
1027
+ SlotRange10: SlotRange10;
1028
+ SocietyJudgement: SocietyJudgement;
1029
+ SocietyVote: SocietyVote;
1030
+ SolutionOrSnapshotSize: SolutionOrSnapshotSize;
1031
+ SolutionSupport: SolutionSupport;
1032
+ SolutionSupports: SolutionSupports;
1033
+ SpanIndex: SpanIndex;
1034
+ SpanRecord: SpanRecord;
1035
+ SpecVersion: SpecVersion;
1036
+ Sr25519Signature: Sr25519Signature;
1037
+ StakingLedger: StakingLedger;
1038
+ StakingLedgerTo223: StakingLedgerTo223;
1039
+ StakingLedgerTo240: StakingLedgerTo240;
1040
+ Statement: Statement;
1041
+ StatementKind: StatementKind;
1042
+ StorageChangeSet: StorageChangeSet;
1043
+ StorageData: StorageData;
1044
+ StorageDeposit: StorageDeposit;
1045
+ StorageEntryMetadataLatest: StorageEntryMetadataLatest;
1046
+ StorageEntryMetadataV10: StorageEntryMetadataV10;
1047
+ StorageEntryMetadataV11: StorageEntryMetadataV11;
1048
+ StorageEntryMetadataV12: StorageEntryMetadataV12;
1049
+ StorageEntryMetadataV13: StorageEntryMetadataV13;
1050
+ StorageEntryMetadataV14: StorageEntryMetadataV14;
1051
+ StorageEntryMetadataV9: StorageEntryMetadataV9;
1052
+ StorageEntryModifierLatest: StorageEntryModifierLatest;
1053
+ StorageEntryModifierV10: StorageEntryModifierV10;
1054
+ StorageEntryModifierV11: StorageEntryModifierV11;
1055
+ StorageEntryModifierV12: StorageEntryModifierV12;
1056
+ StorageEntryModifierV13: StorageEntryModifierV13;
1057
+ StorageEntryModifierV14: StorageEntryModifierV14;
1058
+ StorageEntryModifierV9: StorageEntryModifierV9;
1059
+ StorageEntryTypeLatest: StorageEntryTypeLatest;
1060
+ StorageEntryTypeV10: StorageEntryTypeV10;
1061
+ StorageEntryTypeV11: StorageEntryTypeV11;
1062
+ StorageEntryTypeV12: StorageEntryTypeV12;
1063
+ StorageEntryTypeV13: StorageEntryTypeV13;
1064
+ StorageEntryTypeV14: StorageEntryTypeV14;
1065
+ StorageEntryTypeV9: StorageEntryTypeV9;
1066
+ StorageHasher: StorageHasher;
1067
+ StorageHasherV10: StorageHasherV10;
1068
+ StorageHasherV11: StorageHasherV11;
1069
+ StorageHasherV12: StorageHasherV12;
1070
+ StorageHasherV13: StorageHasherV13;
1071
+ StorageHasherV14: StorageHasherV14;
1072
+ StorageHasherV9: StorageHasherV9;
1073
+ StorageInfo: StorageInfo;
1074
+ StorageKey: StorageKey;
1075
+ StorageKind: StorageKind;
1076
+ StorageMetadataV10: StorageMetadataV10;
1077
+ StorageMetadataV11: StorageMetadataV11;
1078
+ StorageMetadataV12: StorageMetadataV12;
1079
+ StorageMetadataV13: StorageMetadataV13;
1080
+ StorageMetadataV9: StorageMetadataV9;
1081
+ StorageProof: StorageProof;
1082
+ StoredPendingChange: StoredPendingChange;
1083
+ StoredState: StoredState;
1084
+ StrikeCount: StrikeCount;
1085
+ SubId: SubId;
1086
+ SubmissionIndicesOf: SubmissionIndicesOf;
1087
+ Supports: Supports;
1088
+ SyncState: SyncState;
1089
+ SystemInherentData: SystemInherentData;
1090
+ SystemOrigin: SystemOrigin;
1091
+ Tally: Tally;
1092
+ TaskAddress: TaskAddress;
1093
+ TAssetBalance: TAssetBalance;
1094
+ TAssetDepositBalance: TAssetDepositBalance;
1095
+ Text: Text;
1096
+ Timepoint: Timepoint;
1097
+ TokenError: TokenError;
1098
+ TombstoneContractInfo: TombstoneContractInfo;
1099
+ TraceBlockResponse: TraceBlockResponse;
1100
+ TraceError: TraceError;
1101
+ TransactionalError: TransactionalError;
1102
+ TransactionInfo: TransactionInfo;
1103
+ TransactionLongevity: TransactionLongevity;
1104
+ TransactionPriority: TransactionPriority;
1105
+ TransactionSource: TransactionSource;
1106
+ TransactionStorageProof: TransactionStorageProof;
1107
+ TransactionTag: TransactionTag;
1108
+ TransactionV0: TransactionV0;
1109
+ TransactionV1: TransactionV1;
1110
+ TransactionV2: TransactionV2;
1111
+ TransactionValidity: TransactionValidity;
1112
+ TransactionValidityError: TransactionValidityError;
1113
+ TransientValidationData: TransientValidationData;
1114
+ TreasuryProposal: TreasuryProposal;
1115
+ TrieId: TrieId;
1116
+ TrieIndex: TrieIndex;
1117
+ Type: Type;
1118
+ u128: u128;
1119
+ U128: U128;
1120
+ u16: u16;
1121
+ U16: U16;
1122
+ u256: u256;
1123
+ U256: U256;
1124
+ u32: u32;
1125
+ U32: U32;
1126
+ U32F32: U32F32;
1127
+ u64: u64;
1128
+ U64: U64;
1129
+ u8: u8;
1130
+ U8: U8;
1131
+ UnappliedSlash: UnappliedSlash;
1132
+ UnappliedSlashOther: UnappliedSlashOther;
1133
+ UncleEntryItem: UncleEntryItem;
1134
+ UnknownTransaction: UnknownTransaction;
1135
+ UnlockChunk: UnlockChunk;
1136
+ UnrewardedRelayer: UnrewardedRelayer;
1137
+ UnrewardedRelayersState: UnrewardedRelayersState;
1138
+ UpgradeGoAhead: UpgradeGoAhead;
1139
+ UpgradeRestriction: UpgradeRestriction;
1140
+ UpwardMessage: UpwardMessage;
1141
+ usize: usize;
1142
+ USize: USize;
1143
+ ValidationCode: ValidationCode;
1144
+ ValidationCodeHash: ValidationCodeHash;
1145
+ ValidationData: ValidationData;
1146
+ ValidationDataType: ValidationDataType;
1147
+ ValidationFunctionParams: ValidationFunctionParams;
1148
+ ValidatorCount: ValidatorCount;
1149
+ ValidatorId: ValidatorId;
1150
+ ValidatorIdOf: ValidatorIdOf;
1151
+ ValidatorIndex: ValidatorIndex;
1152
+ ValidatorIndexCompact: ValidatorIndexCompact;
1153
+ ValidatorPrefs: ValidatorPrefs;
1154
+ ValidatorPrefsTo145: ValidatorPrefsTo145;
1155
+ ValidatorPrefsTo196: ValidatorPrefsTo196;
1156
+ ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;
1157
+ ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;
1158
+ ValidatorSet: ValidatorSet;
1159
+ ValidatorSetId: ValidatorSetId;
1160
+ ValidatorSignature: ValidatorSignature;
1161
+ ValidDisputeStatementKind: ValidDisputeStatementKind;
1162
+ ValidityAttestation: ValidityAttestation;
1163
+ ValidTransaction: ValidTransaction;
1164
+ VecInboundHrmpMessage: VecInboundHrmpMessage;
1165
+ VersionedMultiAsset: VersionedMultiAsset;
1166
+ VersionedMultiAssets: VersionedMultiAssets;
1167
+ VersionedMultiLocation: VersionedMultiLocation;
1168
+ VersionedResponse: VersionedResponse;
1169
+ VersionedXcm: VersionedXcm;
1170
+ VersionMigrationStage: VersionMigrationStage;
1171
+ VestingInfo: VestingInfo;
1172
+ VestingSchedule: VestingSchedule;
1173
+ Vote: Vote;
1174
+ VoteIndex: VoteIndex;
1175
+ Voter: Voter;
1176
+ VoterInfo: VoterInfo;
1177
+ Votes: Votes;
1178
+ VotesTo230: VotesTo230;
1179
+ VoteThreshold: VoteThreshold;
1180
+ VoteWeight: VoteWeight;
1181
+ Voting: Voting;
1182
+ VotingDelegating: VotingDelegating;
1183
+ VotingDirect: VotingDirect;
1184
+ VotingDirectVote: VotingDirectVote;
1185
+ VouchingStatus: VouchingStatus;
1186
+ VrfData: VrfData;
1187
+ VrfOutput: VrfOutput;
1188
+ VrfProof: VrfProof;
1189
+ Weight: Weight;
1190
+ WeightLimitV2: WeightLimitV2;
1191
+ WeightMultiplier: WeightMultiplier;
1192
+ WeightPerClass: WeightPerClass;
1193
+ WeightToFeeCoefficient: WeightToFeeCoefficient;
1194
+ WeightV0: WeightV0;
1195
+ WeightV1: WeightV1;
1196
+ WeightV2: WeightV2;
1197
+ WildFungibility: WildFungibility;
1198
+ WildFungibilityV0: WildFungibilityV0;
1199
+ WildFungibilityV1: WildFungibilityV1;
1200
+ WildFungibilityV2: WildFungibilityV2;
1201
+ WildMultiAsset: WildMultiAsset;
1202
+ WildMultiAssetV1: WildMultiAssetV1;
1203
+ WildMultiAssetV2: WildMultiAssetV2;
1204
+ WinnersData: WinnersData;
1205
+ WinnersData10: WinnersData10;
1206
+ WinnersDataTuple: WinnersDataTuple;
1207
+ WinnersDataTuple10: WinnersDataTuple10;
1208
+ WinningData: WinningData;
1209
+ WinningData10: WinningData10;
1210
+ WinningDataEntry: WinningDataEntry;
1211
+ WithdrawReasons: WithdrawReasons;
1212
+ Xcm: Xcm;
1213
+ XcmAssetId: XcmAssetId;
1214
+ XcmError: XcmError;
1215
+ XcmErrorV0: XcmErrorV0;
1216
+ XcmErrorV1: XcmErrorV1;
1217
+ XcmErrorV2: XcmErrorV2;
1218
+ XcmOrder: XcmOrder;
1219
+ XcmOrderV0: XcmOrderV0;
1220
+ XcmOrderV1: XcmOrderV1;
1221
+ XcmOrderV2: XcmOrderV2;
1222
+ XcmOrigin: XcmOrigin;
1223
+ XcmOriginKind: XcmOriginKind;
1224
+ XcmpMessageFormat: XcmpMessageFormat;
1225
+ XcmV0: XcmV0;
1226
+ XcmV1: XcmV1;
1227
+ XcmV2: XcmV2;
1228
+ XcmVersion: XcmVersion;
1229
+ } // InterfaceTypes
1230
+ } // declare module