difftreelog
fix after rebase
in: master
9 files changed
tests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -81,6 +81,7 @@
configuration: {
defaultMinGasPrice: u64 & AugmentedConst<ApiType>;
defaultWeightToFeeCoefficient: u32 & AugmentedConst<ApiType>;
+ maxOverridedAllowedLocations: u32 & AugmentedConst<ApiType>;
/**
* Generic const
**/
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -162,6 +162,7 @@
configuration: {
minGasPriceOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;
weightToFeeCoefficientOverride: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
+ xcmAllowedLocationsOverride: AugmentedQuery<ApiType, () => Observable<Option<Vec<XcmV1MultiLocation>>>, []> & QueryableStorageEntry<ApiType, []>;
/**
* Generic query
**/
tests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-rpc.ts
+++ b/tests/src/interfaces/augment-api-rpc.ts
@@ -16,7 +16,7 @@
import type { BlockHash } from '@polkadot/types/interfaces/chain';
import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';
import type { AuthorityId } from '@polkadot/types/interfaces/consensus';
-import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequestV1 } from '@polkadot/types/interfaces/contracts';
+import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequest } from '@polkadot/types/interfaces/contracts';
import type { BlockStats } from '@polkadot/types/interfaces/dev';
import type { CreatedBlock } from '@polkadot/types/interfaces/engine';
import type { EthAccount, EthCallRequest, EthFeeHistory, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';
@@ -24,7 +24,7 @@
import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from '@polkadot/types/interfaces/grandpa';
import type { MmrLeafBatchProof, MmrLeafProof } from '@polkadot/types/interfaces/mmr';
import type { StorageKind } from '@polkadot/types/interfaces/offchain';
-import type { FeeDetails, RuntimeDispatchInfoV1 } from '@polkadot/types/interfaces/payment';
+import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
import type { AccountId, AccountId32, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
import type { MigrationStatusResult, ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';
@@ -174,7 +174,7 @@
* @deprecated Use the runtime interface `api.call.contractsApi.instantiate` instead
* Instantiate a new contract
**/
- instantiate: AugmentedRpc<(request: InstantiateRequestV1 | { origin?: any; value?: any; gasLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;
+ instantiate: AugmentedRpc<(request: InstantiateRequest | { origin?: any; value?: any; gasLimit?: any; storageDepositLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;
/**
* @deprecated Not available in newer versions of the contracts interfaces
* Returns the projected time a given contract will be able to sustain paying its rent
@@ -426,15 +426,13 @@
};
payment: {
/**
- * @deprecated Use `api.call.transactionPaymentApi.queryFeeDetails` instead
* Query the detailed fee of a given encoded extrinsic
**/
queryFeeDetails: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<FeeDetails>>;
/**
- * @deprecated Use `api.call.transactionPaymentApi.queryInfo` instead
* Retrieves the fee information for an encoded extrinsic
**/
- queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfoV1>>;
+ queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfo>>;
};
rmrk: {
/**
tests/src/interfaces/augment-api-runtime.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-runtime.ts
+++ b/tests/src/interfaces/augment-api-runtime.ts
@@ -6,7 +6,7 @@
import '@polkadot/api-base/types/calls';
import type { ApiTypes, AugmentedCall, DecoratedCallBase } from '@polkadot/api-base/types';
-import type { Bytes, Null, Option, Result, U256, Vec, bool, u256, u32, u64 } from '@polkadot/types-codec';
+import type { Bytes, Null, Option, Result, U256, Vec, bool, u256, u64 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { CheckInherentsResult, InherentData } from '@polkadot/types/interfaces/blockbuilder';
import type { BlockHash } from '@polkadot/types/interfaces/chain';
@@ -16,7 +16,6 @@
import type { EvmAccount, EvmCallInfo, EvmCreateInfo } from '@polkadot/types/interfaces/evm';
import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';
import type { OpaqueMetadata } from '@polkadot/types/interfaces/metadata';
-import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
import type { AccountId, Block, H160, H256, Header, Index, KeyTypeId, Permill, SlotDuration } from '@polkadot/types/interfaces/runtime';
import type { RuntimeVersion } from '@polkadot/types/interfaces/state';
import type { ApplyExtrinsicResult, DispatchError } from '@polkadot/types/interfaces/system';
@@ -224,21 +223,6 @@
* Validate the transaction.
**/
validateTransaction: AugmentedCall<ApiType, (source: TransactionSource | 'InBlock' | 'Local' | 'External' | number | Uint8Array, tx: Extrinsic | IExtrinsic | string | Uint8Array, blockHash: BlockHash | string | Uint8Array) => Observable<TransactionValidity>>;
- /**
- * Generic call
- **/
- [key: string]: DecoratedCallBase<ApiType>;
- };
- /** 0x37c8bb1350a9a2a8/2 */
- transactionPaymentApi: {
- /**
- * The transaction fee details
- **/
- queryFeeDetails: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<FeeDetails>>;
- /**
- * The transaction info
- **/
- queryInfo: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<RuntimeDispatchInfo>>;
/**
* Generic call
**/
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -217,6 +217,7 @@
configuration: {
setMinGasPriceOverride: AugmentedSubmittable<(coeff: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;
setWeightToFeeCoefficientOverride: AugmentedSubmittable<(coeff: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;
+ setXcmAllowedLocations: AugmentedSubmittable<(locations: Option<Vec<XcmV1MultiLocation>> | null | Uint8Array | Vec<XcmV1MultiLocation> | (XcmV1MultiLocation | { parents?: any; interior?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Option<Vec<XcmV1MultiLocation>>]>;
/**
* Generic tx
**/
tests/src/interfaces/augment-types.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';78import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';9import type { Data, StorageKey } from '@polkadot/types';10import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';12import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';13import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';14import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';15import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';16import 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';17import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';18import type { BeefyAuthoritySet, BeefyCommitment, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';19import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';20import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';21import 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';22import type { BlockHash } from '@polkadot/types/interfaces/chain';23import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';24import type { StatementKind } from '@polkadot/types/interfaces/claims';25import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';26import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';27import 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';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';29import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';30import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';31import 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';32import type { BlockStats } from '@polkadot/types/interfaces/dev';33import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';34import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';35import 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';36import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';37import 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';38import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';39import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';40import 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';41import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';42import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';43import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';44import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, 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';45import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';46import type { NpApiError } from '@polkadot/types/interfaces/nompools';47import type { StorageKind } from '@polkadot/types/interfaces/offchain';48import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';49import 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, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, 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, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, 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';50import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } from '@polkadot/types/interfaces/payment';51import type { Approvals } from '@polkadot/types/interfaces/poll';52import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';54import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';55import type { RpcMethods } from '@polkadot/types/interfaces/rpc';56import 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, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';57import 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';58import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';59import 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';60import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';61import 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';62import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';63import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';64import 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';65import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';66import type { Multiplier } from '@polkadot/types/interfaces/txpayment';67import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';68import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';69import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';70import type { VestingInfo } from '@polkadot/types/interfaces/vesting';71import 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';7273declare module '@polkadot/types/types/registry' {74 interface InterfaceTypes {75 AbridgedCandidateReceipt: AbridgedCandidateReceipt;76 AbridgedHostConfiguration: AbridgedHostConfiguration;77 AbridgedHrmpChannel: AbridgedHrmpChannel;78 AccountData: AccountData;79 AccountId: AccountId;80 AccountId20: AccountId20;81 AccountId32: AccountId32;82 AccountId33: AccountId33;83 AccountIdOf: AccountIdOf;84 AccountIndex: AccountIndex;85 AccountInfo: AccountInfo;86 AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;87 AccountInfoWithProviders: AccountInfoWithProviders;88 AccountInfoWithRefCount: AccountInfoWithRefCount;89 AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;90 AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;91 AccountStatus: AccountStatus;92 AccountValidity: AccountValidity;93 AccountVote: AccountVote;94 AccountVoteSplit: AccountVoteSplit;95 AccountVoteStandard: AccountVoteStandard;96 ActiveEraInfo: ActiveEraInfo;97 ActiveGilt: ActiveGilt;98 ActiveGiltsTotal: ActiveGiltsTotal;99 ActiveIndex: ActiveIndex;100 ActiveRecovery: ActiveRecovery;101 Address: Address;102 AliveContractInfo: AliveContractInfo;103 AllowedSlots: AllowedSlots;104 AnySignature: AnySignature;105 ApiId: ApiId;106 ApplyExtrinsicResult: ApplyExtrinsicResult;107 ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;108 ApprovalFlag: ApprovalFlag;109 Approvals: Approvals;110 ArithmeticError: ArithmeticError;111 AssetApproval: AssetApproval;112 AssetApprovalKey: AssetApprovalKey;113 AssetBalance: AssetBalance;114 AssetDestroyWitness: AssetDestroyWitness;115 AssetDetails: AssetDetails;116 AssetId: AssetId;117 AssetInstance: AssetInstance;118 AssetInstanceV0: AssetInstanceV0;119 AssetInstanceV1: AssetInstanceV1;120 AssetInstanceV2: AssetInstanceV2;121 AssetMetadata: AssetMetadata;122 AssetOptions: AssetOptions;123 AssignmentId: AssignmentId;124 AssignmentKind: AssignmentKind;125 AttestedCandidate: AttestedCandidate;126 AuctionIndex: AuctionIndex;127 AuthIndex: AuthIndex;128 AuthorityDiscoveryId: AuthorityDiscoveryId;129 AuthorityId: AuthorityId;130 AuthorityIndex: AuthorityIndex;131 AuthorityList: AuthorityList;132 AuthoritySet: AuthoritySet;133 AuthoritySetChange: AuthoritySetChange;134 AuthoritySetChanges: AuthoritySetChanges;135 AuthoritySignature: AuthoritySignature;136 AuthorityWeight: AuthorityWeight;137 AvailabilityBitfield: AvailabilityBitfield;138 AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;139 BabeAuthorityWeight: BabeAuthorityWeight;140 BabeBlockWeight: BabeBlockWeight;141 BabeEpochConfiguration: BabeEpochConfiguration;142 BabeEquivocationProof: BabeEquivocationProof;143 BabeGenesisConfiguration: BabeGenesisConfiguration;144 BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;145 BabeWeight: BabeWeight;146 BackedCandidate: BackedCandidate;147 Balance: Balance;148 BalanceLock: BalanceLock;149 BalanceLockTo212: BalanceLockTo212;150 BalanceOf: BalanceOf;151 BalanceStatus: BalanceStatus;152 BeefyAuthoritySet: BeefyAuthoritySet;153 BeefyCommitment: BeefyCommitment;154 BeefyId: BeefyId;155 BeefyKey: BeefyKey;156 BeefyNextAuthoritySet: BeefyNextAuthoritySet;157 BeefyPayload: BeefyPayload;158 BeefyPayloadId: BeefyPayloadId;159 BeefySignedCommitment: BeefySignedCommitment;160 BenchmarkBatch: BenchmarkBatch;161 BenchmarkConfig: BenchmarkConfig;162 BenchmarkList: BenchmarkList;163 BenchmarkMetadata: BenchmarkMetadata;164 BenchmarkParameter: BenchmarkParameter;165 BenchmarkResult: BenchmarkResult;166 Bid: Bid;167 Bidder: Bidder;168 BidKind: BidKind;169 BitVec: BitVec;170 Block: Block;171 BlockAttestations: BlockAttestations;172 BlockHash: BlockHash;173 BlockLength: BlockLength;174 BlockNumber: BlockNumber;175 BlockNumberFor: BlockNumberFor;176 BlockNumberOf: BlockNumberOf;177 BlockStats: BlockStats;178 BlockTrace: BlockTrace;179 BlockTraceEvent: BlockTraceEvent;180 BlockTraceEventData: BlockTraceEventData;181 BlockTraceSpan: BlockTraceSpan;182 BlockV0: BlockV0;183 BlockV1: BlockV1;184 BlockV2: BlockV2;185 BlockWeights: BlockWeights;186 BodyId: BodyId;187 BodyPart: BodyPart;188 bool: bool;189 Bool: Bool;190 Bounty: Bounty;191 BountyIndex: BountyIndex;192 BountyStatus: BountyStatus;193 BountyStatusActive: BountyStatusActive;194 BountyStatusCuratorProposed: BountyStatusCuratorProposed;195 BountyStatusPendingPayout: BountyStatusPendingPayout;196 BridgedBlockHash: BridgedBlockHash;197 BridgedBlockNumber: BridgedBlockNumber;198 BridgedHeader: BridgedHeader;199 BridgeMessageId: BridgeMessageId;200 BufferedSessionChange: BufferedSessionChange;201 Bytes: Bytes;202 Call: Call;203 CallHash: CallHash;204 CallHashOf: CallHashOf;205 CallIndex: CallIndex;206 CallOrigin: CallOrigin;207 CandidateCommitments: CandidateCommitments;208 CandidateDescriptor: CandidateDescriptor;209 CandidateEvent: CandidateEvent;210 CandidateHash: CandidateHash;211 CandidateInfo: CandidateInfo;212 CandidatePendingAvailability: CandidatePendingAvailability;213 CandidateReceipt: CandidateReceipt;214 ChainId: ChainId;215 ChainProperties: ChainProperties;216 ChainType: ChainType;217 ChangesTrieConfiguration: ChangesTrieConfiguration;218 ChangesTrieSignal: ChangesTrieSignal;219 CheckInherentsResult: CheckInherentsResult;220 ClassDetails: ClassDetails;221 ClassId: ClassId;222 ClassMetadata: ClassMetadata;223 CodecHash: CodecHash;224 CodeHash: CodeHash;225 CodeSource: CodeSource;226 CodeUploadRequest: CodeUploadRequest;227 CodeUploadResult: CodeUploadResult;228 CodeUploadResultValue: CodeUploadResultValue;229 CollationInfo: CollationInfo;230 CollationInfoV1: CollationInfoV1;231 CollatorId: CollatorId;232 CollatorSignature: CollatorSignature;233 CollectiveOrigin: CollectiveOrigin;234 CommittedCandidateReceipt: CommittedCandidateReceipt;235 CompactAssignments: CompactAssignments;236 CompactAssignmentsTo257: CompactAssignmentsTo257;237 CompactAssignmentsTo265: CompactAssignmentsTo265;238 CompactAssignmentsWith16: CompactAssignmentsWith16;239 CompactAssignmentsWith24: CompactAssignmentsWith24;240 CompactScore: CompactScore;241 CompactScoreCompact: CompactScoreCompact;242 ConfigData: ConfigData;243 Consensus: Consensus;244 ConsensusEngineId: ConsensusEngineId;245 ConsumedWeight: ConsumedWeight;246 ContractCallFlags: ContractCallFlags;247 ContractCallRequest: ContractCallRequest;248 ContractConstructorSpecLatest: ContractConstructorSpecLatest;249 ContractConstructorSpecV0: ContractConstructorSpecV0;250 ContractConstructorSpecV1: ContractConstructorSpecV1;251 ContractConstructorSpecV2: ContractConstructorSpecV2;252 ContractConstructorSpecV3: ContractConstructorSpecV3;253 ContractContractSpecV0: ContractContractSpecV0;254 ContractContractSpecV1: ContractContractSpecV1;255 ContractContractSpecV2: ContractContractSpecV2;256 ContractContractSpecV3: ContractContractSpecV3;257 ContractContractSpecV4: ContractContractSpecV4;258 ContractCryptoHasher: ContractCryptoHasher;259 ContractDiscriminant: ContractDiscriminant;260 ContractDisplayName: ContractDisplayName;261 ContractEventParamSpecLatest: ContractEventParamSpecLatest;262 ContractEventParamSpecV0: ContractEventParamSpecV0;263 ContractEventParamSpecV2: ContractEventParamSpecV2;264 ContractEventSpecLatest: ContractEventSpecLatest;265 ContractEventSpecV0: ContractEventSpecV0;266 ContractEventSpecV1: ContractEventSpecV1;267 ContractEventSpecV2: ContractEventSpecV2;268 ContractExecResult: ContractExecResult;269 ContractExecResultOk: ContractExecResultOk;270 ContractExecResultResult: ContractExecResultResult;271 ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;272 ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;273 ContractExecResultTo255: ContractExecResultTo255;274 ContractExecResultTo260: ContractExecResultTo260;275 ContractExecResultTo267: ContractExecResultTo267;276 ContractExecResultU64: ContractExecResultU64;277 ContractInfo: ContractInfo;278 ContractInstantiateResult: ContractInstantiateResult;279 ContractInstantiateResultTo267: ContractInstantiateResultTo267;280 ContractInstantiateResultTo299: ContractInstantiateResultTo299;281 ContractInstantiateResultU64: ContractInstantiateResultU64;282 ContractLayoutArray: ContractLayoutArray;283 ContractLayoutCell: ContractLayoutCell;284 ContractLayoutEnum: ContractLayoutEnum;285 ContractLayoutHash: ContractLayoutHash;286 ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;287 ContractLayoutKey: ContractLayoutKey;288 ContractLayoutStruct: ContractLayoutStruct;289 ContractLayoutStructField: ContractLayoutStructField;290 ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;291 ContractMessageParamSpecV0: ContractMessageParamSpecV0;292 ContractMessageParamSpecV2: ContractMessageParamSpecV2;293 ContractMessageSpecLatest: ContractMessageSpecLatest;294 ContractMessageSpecV0: ContractMessageSpecV0;295 ContractMessageSpecV1: ContractMessageSpecV1;296 ContractMessageSpecV2: ContractMessageSpecV2;297 ContractMetadata: ContractMetadata;298 ContractMetadataLatest: ContractMetadataLatest;299 ContractMetadataV0: ContractMetadataV0;300 ContractMetadataV1: ContractMetadataV1;301 ContractMetadataV2: ContractMetadataV2;302 ContractMetadataV3: ContractMetadataV3;303 ContractMetadataV4: ContractMetadataV4;304 ContractProject: ContractProject;305 ContractProjectContract: ContractProjectContract;306 ContractProjectInfo: ContractProjectInfo;307 ContractProjectSource: ContractProjectSource;308 ContractProjectV0: ContractProjectV0;309 ContractReturnFlags: ContractReturnFlags;310 ContractSelector: ContractSelector;311 ContractStorageKey: ContractStorageKey;312 ContractStorageLayout: ContractStorageLayout;313 ContractTypeSpec: ContractTypeSpec;314 Conviction: Conviction;315 CoreAssignment: CoreAssignment;316 CoreIndex: CoreIndex;317 CoreOccupied: CoreOccupied;318 CoreState: CoreState;319 CrateVersion: CrateVersion;320 CreatedBlock: CreatedBlock;321 CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;322 CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;323 CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;324 CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;325 CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;326 CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;327 CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;328 CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;329 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;330 CumulusPalletXcmCall: CumulusPalletXcmCall;331 CumulusPalletXcmError: CumulusPalletXcmError;332 CumulusPalletXcmEvent: CumulusPalletXcmEvent;333 CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;334 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;335 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;336 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;337 CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;338 CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;339 CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;340 CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;341 CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;342 CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;343 Data: Data;344 DeferredOffenceOf: DeferredOffenceOf;345 DefunctVoter: DefunctVoter;346 DelayKind: DelayKind;347 DelayKindBest: DelayKindBest;348 Delegations: Delegations;349 DeletedContract: DeletedContract;350 DeliveredMessages: DeliveredMessages;351 DepositBalance: DepositBalance;352 DepositBalanceOf: DepositBalanceOf;353 DestroyWitness: DestroyWitness;354 Digest: Digest;355 DigestItem: DigestItem;356 DigestOf: DigestOf;357 DispatchClass: DispatchClass;358 DispatchError: DispatchError;359 DispatchErrorModule: DispatchErrorModule;360 DispatchErrorModulePre6: DispatchErrorModulePre6;361 DispatchErrorModuleU8: DispatchErrorModuleU8;362 DispatchErrorModuleU8a: DispatchErrorModuleU8a;363 DispatchErrorPre6: DispatchErrorPre6;364 DispatchErrorPre6First: DispatchErrorPre6First;365 DispatchErrorTo198: DispatchErrorTo198;366 DispatchFeePayment: DispatchFeePayment;367 DispatchInfo: DispatchInfo;368 DispatchInfoTo190: DispatchInfoTo190;369 DispatchInfoTo244: DispatchInfoTo244;370 DispatchOutcome: DispatchOutcome;371 DispatchOutcomePre6: DispatchOutcomePre6;372 DispatchResult: DispatchResult;373 DispatchResultOf: DispatchResultOf;374 DispatchResultTo198: DispatchResultTo198;375 DisputeLocation: DisputeLocation;376 DisputeResult: DisputeResult;377 DisputeState: DisputeState;378 DisputeStatement: DisputeStatement;379 DisputeStatementSet: DisputeStatementSet;380 DoubleEncodedCall: DoubleEncodedCall;381 DoubleVoteReport: DoubleVoteReport;382 DownwardMessage: DownwardMessage;383 EcdsaSignature: EcdsaSignature;384 Ed25519Signature: Ed25519Signature;385 EIP1559Transaction: EIP1559Transaction;386 EIP2930Transaction: EIP2930Transaction;387 ElectionCompute: ElectionCompute;388 ElectionPhase: ElectionPhase;389 ElectionResult: ElectionResult;390 ElectionScore: ElectionScore;391 ElectionSize: ElectionSize;392 ElectionStatus: ElectionStatus;393 EncodedFinalityProofs: EncodedFinalityProofs;394 EncodedJustification: EncodedJustification;395 Epoch: Epoch;396 EpochAuthorship: EpochAuthorship;397 Era: Era;398 EraIndex: EraIndex;399 EraPoints: EraPoints;400 EraRewardPoints: EraRewardPoints;401 EraRewards: EraRewards;402 ErrorMetadataLatest: ErrorMetadataLatest;403 ErrorMetadataV10: ErrorMetadataV10;404 ErrorMetadataV11: ErrorMetadataV11;405 ErrorMetadataV12: ErrorMetadataV12;406 ErrorMetadataV13: ErrorMetadataV13;407 ErrorMetadataV14: ErrorMetadataV14;408 ErrorMetadataV9: ErrorMetadataV9;409 EthAccessList: EthAccessList;410 EthAccessListItem: EthAccessListItem;411 EthAccount: EthAccount;412 EthAddress: EthAddress;413 EthBlock: EthBlock;414 EthBloom: EthBloom;415 EthbloomBloom: EthbloomBloom;416 EthCallRequest: EthCallRequest;417 EthereumAccountId: EthereumAccountId;418 EthereumAddress: EthereumAddress;419 EthereumBlock: EthereumBlock;420 EthereumHeader: EthereumHeader;421 EthereumLog: EthereumLog;422 EthereumLookupSource: EthereumLookupSource;423 EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;424 EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;425 EthereumSignature: EthereumSignature;426 EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;427 EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;428 EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;429 EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;430 EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;431 EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;432 EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;433 EthereumTypesHashH64: EthereumTypesHashH64;434 EthFeeHistory: EthFeeHistory;435 EthFilter: EthFilter;436 EthFilterAddress: EthFilterAddress;437 EthFilterChanges: EthFilterChanges;438 EthFilterTopic: EthFilterTopic;439 EthFilterTopicEntry: EthFilterTopicEntry;440 EthFilterTopicInner: EthFilterTopicInner;441 EthHeader: EthHeader;442 EthLog: EthLog;443 EthReceipt: EthReceipt;444 EthReceiptV0: EthReceiptV0;445 EthReceiptV3: EthReceiptV3;446 EthRichBlock: EthRichBlock;447 EthRichHeader: EthRichHeader;448 EthStorageProof: EthStorageProof;449 EthSubKind: EthSubKind;450 EthSubParams: EthSubParams;451 EthSubResult: EthSubResult;452 EthSyncInfo: EthSyncInfo;453 EthSyncStatus: EthSyncStatus;454 EthTransaction: EthTransaction;455 EthTransactionAction: EthTransactionAction;456 EthTransactionCondition: EthTransactionCondition;457 EthTransactionRequest: EthTransactionRequest;458 EthTransactionSignature: EthTransactionSignature;459 EthTransactionStatus: EthTransactionStatus;460 EthWork: EthWork;461 Event: Event;462 EventId: EventId;463 EventIndex: EventIndex;464 EventMetadataLatest: EventMetadataLatest;465 EventMetadataV10: EventMetadataV10;466 EventMetadataV11: EventMetadataV11;467 EventMetadataV12: EventMetadataV12;468 EventMetadataV13: EventMetadataV13;469 EventMetadataV14: EventMetadataV14;470 EventMetadataV9: EventMetadataV9;471 EventRecord: EventRecord;472 EvmAccount: EvmAccount;473 EvmCallInfo: EvmCallInfo;474 EvmCoreErrorExitError: EvmCoreErrorExitError;475 EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;476 EvmCoreErrorExitReason: EvmCoreErrorExitReason;477 EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;478 EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;479 EvmCreateInfo: EvmCreateInfo;480 EvmLog: EvmLog;481 EvmVicinity: EvmVicinity;482 ExecReturnValue: ExecReturnValue;483 ExitError: ExitError;484 ExitFatal: ExitFatal;485 ExitReason: ExitReason;486 ExitRevert: ExitRevert;487 ExitSucceed: ExitSucceed;488 ExplicitDisputeStatement: ExplicitDisputeStatement;489 Exposure: Exposure;490 ExtendedBalance: ExtendedBalance;491 Extrinsic: Extrinsic;492 ExtrinsicEra: ExtrinsicEra;493 ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;494 ExtrinsicMetadataV11: ExtrinsicMetadataV11;495 ExtrinsicMetadataV12: ExtrinsicMetadataV12;496 ExtrinsicMetadataV13: ExtrinsicMetadataV13;497 ExtrinsicMetadataV14: ExtrinsicMetadataV14;498 ExtrinsicOrHash: ExtrinsicOrHash;499 ExtrinsicPayload: ExtrinsicPayload;500 ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;501 ExtrinsicPayloadV4: ExtrinsicPayloadV4;502 ExtrinsicSignature: ExtrinsicSignature;503 ExtrinsicSignatureV4: ExtrinsicSignatureV4;504 ExtrinsicStatus: ExtrinsicStatus;505 ExtrinsicsWeight: ExtrinsicsWeight;506 ExtrinsicUnknown: ExtrinsicUnknown;507 ExtrinsicV4: ExtrinsicV4;508 f32: f32;509 F32: F32;510 f64: f64;511 F64: F64;512 FeeDetails: FeeDetails;513 Fixed128: Fixed128;514 Fixed64: Fixed64;515 FixedI128: FixedI128;516 FixedI64: FixedI64;517 FixedU128: FixedU128;518 FixedU64: FixedU64;519 Forcing: Forcing;520 ForkTreePendingChange: ForkTreePendingChange;521 ForkTreePendingChangeNode: ForkTreePendingChangeNode;522 FpRpcTransactionStatus: FpRpcTransactionStatus;523 FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;524 FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;525 FrameSupportDispatchPays: FrameSupportDispatchPays;526 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;527 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;528 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;529 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;530 FrameSupportPalletId: FrameSupportPalletId;531 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;532 FrameSystemAccountInfo: FrameSystemAccountInfo;533 FrameSystemCall: FrameSystemCall;534 FrameSystemError: FrameSystemError;535 FrameSystemEvent: FrameSystemEvent;536 FrameSystemEventRecord: FrameSystemEventRecord;537 FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;538 FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;539 FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;540 FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;541 FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;542 FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;543 FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;544 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;545 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;546 FrameSystemPhase: FrameSystemPhase;547 FullIdentification: FullIdentification;548 FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;549 FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;550 FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;551 FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;552 FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;553 FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;554 FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;555 FunctionMetadataLatest: FunctionMetadataLatest;556 FunctionMetadataV10: FunctionMetadataV10;557 FunctionMetadataV11: FunctionMetadataV11;558 FunctionMetadataV12: FunctionMetadataV12;559 FunctionMetadataV13: FunctionMetadataV13;560 FunctionMetadataV14: FunctionMetadataV14;561 FunctionMetadataV9: FunctionMetadataV9;562 FundIndex: FundIndex;563 FundInfo: FundInfo;564 Fungibility: Fungibility;565 FungibilityV0: FungibilityV0;566 FungibilityV1: FungibilityV1;567 FungibilityV2: FungibilityV2;568 Gas: Gas;569 GiltBid: GiltBid;570 GlobalValidationData: GlobalValidationData;571 GlobalValidationSchedule: GlobalValidationSchedule;572 GrandpaCommit: GrandpaCommit;573 GrandpaEquivocation: GrandpaEquivocation;574 GrandpaEquivocationProof: GrandpaEquivocationProof;575 GrandpaEquivocationValue: GrandpaEquivocationValue;576 GrandpaJustification: GrandpaJustification;577 GrandpaPrecommit: GrandpaPrecommit;578 GrandpaPrevote: GrandpaPrevote;579 GrandpaSignedPrecommit: GrandpaSignedPrecommit;580 GroupIndex: GroupIndex;581 GroupRotationInfo: GroupRotationInfo;582 H1024: H1024;583 H128: H128;584 H160: H160;585 H2048: H2048;586 H256: H256;587 H32: H32;588 H512: H512;589 H64: H64;590 Hash: Hash;591 HeadData: HeadData;592 Header: Header;593 HeaderPartial: HeaderPartial;594 Health: Health;595 Heartbeat: Heartbeat;596 HeartbeatTo244: HeartbeatTo244;597 HostConfiguration: HostConfiguration;598 HostFnWeights: HostFnWeights;599 HostFnWeightsTo264: HostFnWeightsTo264;600 HrmpChannel: HrmpChannel;601 HrmpChannelId: HrmpChannelId;602 HrmpOpenChannelRequest: HrmpOpenChannelRequest;603 i128: i128;604 I128: I128;605 i16: i16;606 I16: I16;607 i256: i256;608 I256: I256;609 i32: i32;610 I32: I32;611 I32F32: I32F32;612 i64: i64;613 I64: I64;614 i8: i8;615 I8: I8;616 IdentificationTuple: IdentificationTuple;617 IdentityFields: IdentityFields;618 IdentityInfo: IdentityInfo;619 IdentityInfoAdditional: IdentityInfoAdditional;620 IdentityInfoTo198: IdentityInfoTo198;621 IdentityJudgement: IdentityJudgement;622 ImmortalEra: ImmortalEra;623 ImportedAux: ImportedAux;624 InboundDownwardMessage: InboundDownwardMessage;625 InboundHrmpMessage: InboundHrmpMessage;626 InboundHrmpMessages: InboundHrmpMessages;627 InboundLaneData: InboundLaneData;628 InboundRelayer: InboundRelayer;629 InboundStatus: InboundStatus;630 IncludedBlocks: IncludedBlocks;631 InclusionFee: InclusionFee;632 IncomingParachain: IncomingParachain;633 IncomingParachainDeploy: IncomingParachainDeploy;634 IncomingParachainFixed: IncomingParachainFixed;635 Index: Index;636 IndicesLookupSource: IndicesLookupSource;637 IndividualExposure: IndividualExposure;638 InherentData: InherentData;639 InherentIdentifier: InherentIdentifier;640 InitializationData: InitializationData;641 InstanceDetails: InstanceDetails;642 InstanceId: InstanceId;643 InstanceMetadata: InstanceMetadata;644 InstantiateRequest: InstantiateRequest;645 InstantiateRequestV1: InstantiateRequestV1;646 InstantiateRequestV2: InstantiateRequestV2;647 InstantiateReturnValue: InstantiateReturnValue;648 InstantiateReturnValueOk: InstantiateReturnValueOk;649 InstantiateReturnValueTo267: InstantiateReturnValueTo267;650 InstructionV2: InstructionV2;651 InstructionWeights: InstructionWeights;652 InteriorMultiLocation: InteriorMultiLocation;653 InvalidDisputeStatementKind: InvalidDisputeStatementKind;654 InvalidTransaction: InvalidTransaction;655 Json: Json;656 Junction: Junction;657 Junctions: Junctions;658 JunctionsV1: JunctionsV1;659 JunctionsV2: JunctionsV2;660 JunctionV0: JunctionV0;661 JunctionV1: JunctionV1;662 JunctionV2: JunctionV2;663 Justification: Justification;664 JustificationNotification: JustificationNotification;665 Justifications: Justifications;666 Key: Key;667 KeyOwnerProof: KeyOwnerProof;668 Keys: Keys;669 KeyType: KeyType;670 KeyTypeId: KeyTypeId;671 KeyValue: KeyValue;672 KeyValueOption: KeyValueOption;673 Kind: Kind;674 LaneId: LaneId;675 LastContribution: LastContribution;676 LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;677 LeasePeriod: LeasePeriod;678 LeasePeriodOf: LeasePeriodOf;679 LegacyTransaction: LegacyTransaction;680 Limits: Limits;681 LimitsTo264: LimitsTo264;682 LocalValidationData: LocalValidationData;683 LockIdentifier: LockIdentifier;684 LookupSource: LookupSource;685 LookupTarget: LookupTarget;686 LotteryConfig: LotteryConfig;687 MaybeRandomness: MaybeRandomness;688 MaybeVrf: MaybeVrf;689 MemberCount: MemberCount;690 MembershipProof: MembershipProof;691 MessageData: MessageData;692 MessageId: MessageId;693 MessageIngestionType: MessageIngestionType;694 MessageKey: MessageKey;695 MessageNonce: MessageNonce;696 MessageQueueChain: MessageQueueChain;697 MessagesDeliveryProofOf: MessagesDeliveryProofOf;698 MessagesProofOf: MessagesProofOf;699 MessagingStateSnapshot: MessagingStateSnapshot;700 MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;701 MetadataAll: MetadataAll;702 MetadataLatest: MetadataLatest;703 MetadataV10: MetadataV10;704 MetadataV11: MetadataV11;705 MetadataV12: MetadataV12;706 MetadataV13: MetadataV13;707 MetadataV14: MetadataV14;708 MetadataV9: MetadataV9;709 MigrationStatusResult: MigrationStatusResult;710 MmrBatchProof: MmrBatchProof;711 MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;712 MmrError: MmrError;713 MmrLeafBatchProof: MmrLeafBatchProof;714 MmrLeafIndex: MmrLeafIndex;715 MmrLeafProof: MmrLeafProof;716 MmrNodeIndex: MmrNodeIndex;717 MmrProof: MmrProof;718 MmrRootHash: MmrRootHash;719 ModuleConstantMetadataV10: ModuleConstantMetadataV10;720 ModuleConstantMetadataV11: ModuleConstantMetadataV11;721 ModuleConstantMetadataV12: ModuleConstantMetadataV12;722 ModuleConstantMetadataV13: ModuleConstantMetadataV13;723 ModuleConstantMetadataV9: ModuleConstantMetadataV9;724 ModuleId: ModuleId;725 ModuleMetadataV10: ModuleMetadataV10;726 ModuleMetadataV11: ModuleMetadataV11;727 ModuleMetadataV12: ModuleMetadataV12;728 ModuleMetadataV13: ModuleMetadataV13;729 ModuleMetadataV9: ModuleMetadataV9;730 Moment: Moment;731 MomentOf: MomentOf;732 MoreAttestations: MoreAttestations;733 MortalEra: MortalEra;734 MultiAddress: MultiAddress;735 MultiAsset: MultiAsset;736 MultiAssetFilter: MultiAssetFilter;737 MultiAssetFilterV1: MultiAssetFilterV1;738 MultiAssetFilterV2: MultiAssetFilterV2;739 MultiAssets: MultiAssets;740 MultiAssetsV1: MultiAssetsV1;741 MultiAssetsV2: MultiAssetsV2;742 MultiAssetV0: MultiAssetV0;743 MultiAssetV1: MultiAssetV1;744 MultiAssetV2: MultiAssetV2;745 MultiDisputeStatementSet: MultiDisputeStatementSet;746 MultiLocation: MultiLocation;747 MultiLocationV0: MultiLocationV0;748 MultiLocationV1: MultiLocationV1;749 MultiLocationV2: MultiLocationV2;750 Multiplier: Multiplier;751 Multisig: Multisig;752 MultiSignature: MultiSignature;753 MultiSigner: MultiSigner;754 NetworkId: NetworkId;755 NetworkState: NetworkState;756 NetworkStatePeerset: NetworkStatePeerset;757 NetworkStatePeersetInfo: NetworkStatePeersetInfo;758 NewBidder: NewBidder;759 NextAuthority: NextAuthority;760 NextConfigDescriptor: NextConfigDescriptor;761 NextConfigDescriptorV1: NextConfigDescriptorV1;762 NodeRole: NodeRole;763 Nominations: Nominations;764 NominatorIndex: NominatorIndex;765 NominatorIndexCompact: NominatorIndexCompact;766 NotConnectedPeer: NotConnectedPeer;767 NpApiError: NpApiError;768 Null: Null;769 OccupiedCore: OccupiedCore;770 OccupiedCoreAssumption: OccupiedCoreAssumption;771 OffchainAccuracy: OffchainAccuracy;772 OffchainAccuracyCompact: OffchainAccuracyCompact;773 OffenceDetails: OffenceDetails;774 Offender: Offender;775 OldV1SessionInfo: OldV1SessionInfo;776 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;777 OpalRuntimeRuntime: OpalRuntimeRuntime;778 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;779 OpaqueCall: OpaqueCall;780 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;781 OpaqueMetadata: OpaqueMetadata;782 OpaqueMultiaddr: OpaqueMultiaddr;783 OpaqueNetworkState: OpaqueNetworkState;784 OpaquePeerId: OpaquePeerId;785 OpaqueTimeSlot: OpaqueTimeSlot;786 OpenTip: OpenTip;787 OpenTipFinderTo225: OpenTipFinderTo225;788 OpenTipTip: OpenTipTip;789 OpenTipTo225: OpenTipTo225;790 OperatingMode: OperatingMode;791 OptionBool: OptionBool;792 Origin: Origin;793 OriginCaller: OriginCaller;794 OriginKindV0: OriginKindV0;795 OriginKindV1: OriginKindV1;796 OriginKindV2: OriginKindV2;797 OrmlTokensAccountData: OrmlTokensAccountData;798 OrmlTokensBalanceLock: OrmlTokensBalanceLock;799 OrmlTokensModuleCall: OrmlTokensModuleCall;800 OrmlTokensModuleError: OrmlTokensModuleError;801 OrmlTokensModuleEvent: OrmlTokensModuleEvent;802 OrmlTokensReserveData: OrmlTokensReserveData;803 OrmlVestingModuleCall: OrmlVestingModuleCall;804 OrmlVestingModuleError: OrmlVestingModuleError;805 OrmlVestingModuleEvent: OrmlVestingModuleEvent;806 OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;807 OrmlXtokensModuleCall: OrmlXtokensModuleCall;808 OrmlXtokensModuleError: OrmlXtokensModuleError;809 OrmlXtokensModuleEvent: OrmlXtokensModuleEvent;810 OutboundHrmpMessage: OutboundHrmpMessage;811 OutboundLaneData: OutboundLaneData;812 OutboundMessageFee: OutboundMessageFee;813 OutboundPayload: OutboundPayload;814 OutboundStatus: OutboundStatus;815 Outcome: Outcome;816 OverweightIndex: OverweightIndex;817 Owner: Owner;818 PageCounter: PageCounter;819 PageIndexData: PageIndexData;820 PalletAppPromotionCall: PalletAppPromotionCall;821 PalletAppPromotionError: PalletAppPromotionError;822 PalletAppPromotionEvent: PalletAppPromotionEvent;823 PalletBalancesAccountData: PalletBalancesAccountData;824 PalletBalancesBalanceLock: PalletBalancesBalanceLock;825 PalletBalancesCall: PalletBalancesCall;826 PalletBalancesError: PalletBalancesError;827 PalletBalancesEvent: PalletBalancesEvent;828 PalletBalancesReasons: PalletBalancesReasons;829 PalletBalancesReleases: PalletBalancesReleases;830 PalletBalancesReserveData: PalletBalancesReserveData;831 PalletCallMetadataLatest: PalletCallMetadataLatest;832 PalletCallMetadataV14: PalletCallMetadataV14;833 PalletCommonError: PalletCommonError;834 PalletCommonEvent: PalletCommonEvent;835 PalletConfigurationCall: PalletConfigurationCall;836 PalletConstantMetadataLatest: PalletConstantMetadataLatest;837 PalletConstantMetadataV14: PalletConstantMetadataV14;838 PalletErrorMetadataLatest: PalletErrorMetadataLatest;839 PalletErrorMetadataV14: PalletErrorMetadataV14;840 PalletEthereumCall: PalletEthereumCall;841 PalletEthereumError: PalletEthereumError;842 PalletEthereumEvent: PalletEthereumEvent;843 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;844 PalletEthereumRawOrigin: PalletEthereumRawOrigin;845 PalletEventMetadataLatest: PalletEventMetadataLatest;846 PalletEventMetadataV14: PalletEventMetadataV14;847 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;848 PalletEvmCall: PalletEvmCall;849 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;850 PalletEvmContractHelpersError: PalletEvmContractHelpersError;851 PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;852 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;853 PalletEvmError: PalletEvmError;854 PalletEvmEvent: PalletEvmEvent;855 PalletEvmMigrationCall: PalletEvmMigrationCall;856 PalletEvmMigrationError: PalletEvmMigrationError;857 PalletEvmMigrationEvent: PalletEvmMigrationEvent;858 PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;859 PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;860 PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;861 PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;862 PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;863 PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;864 PalletFungibleError: PalletFungibleError;865 PalletId: PalletId;866 PalletInflationCall: PalletInflationCall;867 PalletMaintenanceCall: PalletMaintenanceCall;868 PalletMaintenanceError: PalletMaintenanceError;869 PalletMaintenanceEvent: PalletMaintenanceEvent;870 PalletMetadataLatest: PalletMetadataLatest;871 PalletMetadataV14: PalletMetadataV14;872 PalletNonfungibleError: PalletNonfungibleError;873 PalletNonfungibleItemData: PalletNonfungibleItemData;874 PalletRefungibleError: PalletRefungibleError;875 PalletRefungibleItemData: PalletRefungibleItemData;876 PalletRmrkCoreCall: PalletRmrkCoreCall;877 PalletRmrkCoreError: PalletRmrkCoreError;878 PalletRmrkCoreEvent: PalletRmrkCoreEvent;879 PalletRmrkEquipCall: PalletRmrkEquipCall;880 PalletRmrkEquipError: PalletRmrkEquipError;881 PalletRmrkEquipEvent: PalletRmrkEquipEvent;882 PalletsOrigin: PalletsOrigin;883 PalletStorageMetadataLatest: PalletStorageMetadataLatest;884 PalletStorageMetadataV14: PalletStorageMetadataV14;885 PalletStructureCall: PalletStructureCall;886 PalletStructureError: PalletStructureError;887 PalletStructureEvent: PalletStructureEvent;888 PalletSudoCall: PalletSudoCall;889 PalletSudoError: PalletSudoError;890 PalletSudoEvent: PalletSudoEvent;891 PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;892 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;893 PalletTestUtilsCall: PalletTestUtilsCall;894 PalletTestUtilsError: PalletTestUtilsError;895 PalletTestUtilsEvent: PalletTestUtilsEvent;896 PalletTimestampCall: PalletTimestampCall;897 PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;898 PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;899 PalletTreasuryCall: PalletTreasuryCall;900 PalletTreasuryError: PalletTreasuryError;901 PalletTreasuryEvent: PalletTreasuryEvent;902 PalletTreasuryProposal: PalletTreasuryProposal;903 PalletUniqueCall: PalletUniqueCall;904 PalletUniqueError: PalletUniqueError;905 PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;906 PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;907 PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;908 PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;909 PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;910 PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;911 PalletVersion: PalletVersion;912 PalletXcmCall: PalletXcmCall;913 PalletXcmError: PalletXcmError;914 PalletXcmEvent: PalletXcmEvent;915 PalletXcmOrigin: PalletXcmOrigin;916 ParachainDispatchOrigin: ParachainDispatchOrigin;917 ParachainInherentData: ParachainInherentData;918 ParachainProposal: ParachainProposal;919 ParachainsInherentData: ParachainsInherentData;920 ParaGenesisArgs: ParaGenesisArgs;921 ParaId: ParaId;922 ParaInfo: ParaInfo;923 ParaLifecycle: ParaLifecycle;924 Parameter: Parameter;925 ParaPastCodeMeta: ParaPastCodeMeta;926 ParaScheduling: ParaScheduling;927 ParathreadClaim: ParathreadClaim;928 ParathreadClaimQueue: ParathreadClaimQueue;929 ParathreadEntry: ParathreadEntry;930 ParaValidatorIndex: ParaValidatorIndex;931 Pays: Pays;932 Peer: Peer;933 PeerEndpoint: PeerEndpoint;934 PeerEndpointAddr: PeerEndpointAddr;935 PeerInfo: PeerInfo;936 PeerPing: PeerPing;937 PendingChange: PendingChange;938 PendingPause: PendingPause;939 PendingResume: PendingResume;940 Perbill: Perbill;941 Percent: Percent;942 PerDispatchClassU32: PerDispatchClassU32;943 PerDispatchClassWeight: PerDispatchClassWeight;944 PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;945 Period: Period;946 Permill: Permill;947 PermissionLatest: PermissionLatest;948 PermissionsV1: PermissionsV1;949 PermissionVersions: PermissionVersions;950 Perquintill: Perquintill;951 PersistedValidationData: PersistedValidationData;952 PerU16: PerU16;953 Phantom: Phantom;954 PhantomData: PhantomData;955 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;956 Phase: Phase;957 PhragmenScore: PhragmenScore;958 Points: Points;959 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;960 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;961 PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;962 PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;963 PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;964 PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;965 PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;966 PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;967 PortableType: PortableType;968 PortableTypeV14: PortableTypeV14;969 Precommits: Precommits;970 PrefabWasmModule: PrefabWasmModule;971 PrefixedStorageKey: PrefixedStorageKey;972 PreimageStatus: PreimageStatus;973 PreimageStatusAvailable: PreimageStatusAvailable;974 PreRuntime: PreRuntime;975 Prevotes: Prevotes;976 Priority: Priority;977 PriorLock: PriorLock;978 PropIndex: PropIndex;979 Proposal: Proposal;980 ProposalIndex: ProposalIndex;981 ProxyAnnouncement: ProxyAnnouncement;982 ProxyDefinition: ProxyDefinition;983 ProxyState: ProxyState;984 ProxyType: ProxyType;985 PvfCheckStatement: PvfCheckStatement;986 QueryId: QueryId;987 QueryStatus: QueryStatus;988 QueueConfigData: QueueConfigData;989 QueuedParathread: QueuedParathread;990 Randomness: Randomness;991 Raw: Raw;992 RawAuraPreDigest: RawAuraPreDigest;993 RawBabePreDigest: RawBabePreDigest;994 RawBabePreDigestCompat: RawBabePreDigestCompat;995 RawBabePreDigestPrimary: RawBabePreDigestPrimary;996 RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;997 RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;998 RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;999 RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;1000 RawBabePreDigestTo159: RawBabePreDigestTo159;1001 RawOrigin: RawOrigin;1002 RawSolution: RawSolution;1003 RawSolutionTo265: RawSolutionTo265;1004 RawSolutionWith16: RawSolutionWith16;1005 RawSolutionWith24: RawSolutionWith24;1006 RawVRFOutput: RawVRFOutput;1007 ReadProof: ReadProof;1008 ReadySolution: ReadySolution;1009 Reasons: Reasons;1010 RecoveryConfig: RecoveryConfig;1011 RefCount: RefCount;1012 RefCountTo259: RefCountTo259;1013 ReferendumIndex: ReferendumIndex;1014 ReferendumInfo: ReferendumInfo;1015 ReferendumInfoFinished: ReferendumInfoFinished;1016 ReferendumInfoTo239: ReferendumInfoTo239;1017 ReferendumStatus: ReferendumStatus;1018 RegisteredParachainInfo: RegisteredParachainInfo;1019 RegistrarIndex: RegistrarIndex;1020 RegistrarInfo: RegistrarInfo;1021 Registration: Registration;1022 RegistrationJudgement: RegistrationJudgement;1023 RegistrationTo198: RegistrationTo198;1024 RelayBlockNumber: RelayBlockNumber;1025 RelayChainBlockNumber: RelayChainBlockNumber;1026 RelayChainHash: RelayChainHash;1027 RelayerId: RelayerId;1028 RelayHash: RelayHash;1029 Releases: Releases;1030 Remark: Remark;1031 Renouncing: Renouncing;1032 RentProjection: RentProjection;1033 ReplacementTimes: ReplacementTimes;1034 ReportedRoundStates: ReportedRoundStates;1035 Reporter: Reporter;1036 ReportIdOf: ReportIdOf;1037 ReserveData: ReserveData;1038 ReserveIdentifier: ReserveIdentifier;1039 Response: Response;1040 ResponseV0: ResponseV0;1041 ResponseV1: ResponseV1;1042 ResponseV2: ResponseV2;1043 ResponseV2Error: ResponseV2Error;1044 ResponseV2Result: ResponseV2Result;1045 Retriable: Retriable;1046 RewardDestination: RewardDestination;1047 RewardPoint: RewardPoint;1048 RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;1049 RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;1050 RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;1051 RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;1052 RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;1053 RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;1054 RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;1055 RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;1056 RmrkTraitsPartPartType: RmrkTraitsPartPartType;1057 RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;1058 RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;1059 RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;1060 RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;1061 RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;1062 RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;1063 RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;1064 RmrkTraitsTheme: RmrkTraitsTheme;1065 RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;1066 RoundSnapshot: RoundSnapshot;1067 RoundState: RoundState;1068 RpcMethods: RpcMethods;1069 RuntimeDbWeight: RuntimeDbWeight;1070 RuntimeDispatchInfo: RuntimeDispatchInfo;1071 RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;1072 RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;1073 RuntimeVersion: RuntimeVersion;1074 RuntimeVersionApi: RuntimeVersionApi;1075 RuntimeVersionPartial: RuntimeVersionPartial;1076 RuntimeVersionPre3: RuntimeVersionPre3;1077 RuntimeVersionPre4: RuntimeVersionPre4;1078 Schedule: Schedule;1079 Scheduled: Scheduled;1080 ScheduledCore: ScheduledCore;1081 ScheduledTo254: ScheduledTo254;1082 SchedulePeriod: SchedulePeriod;1083 SchedulePriority: SchedulePriority;1084 ScheduleTo212: ScheduleTo212;1085 ScheduleTo258: ScheduleTo258;1086 ScheduleTo264: ScheduleTo264;1087 Scheduling: Scheduling;1088 ScrapedOnChainVotes: ScrapedOnChainVotes;1089 Seal: Seal;1090 SealV0: SealV0;1091 SeatHolder: SeatHolder;1092 SeedOf: SeedOf;1093 ServiceQuality: ServiceQuality;1094 SessionIndex: SessionIndex;1095 SessionInfo: SessionInfo;1096 SessionInfoValidatorGroup: SessionInfoValidatorGroup;1097 SessionKeys1: SessionKeys1;1098 SessionKeys10: SessionKeys10;1099 SessionKeys10B: SessionKeys10B;1100 SessionKeys2: SessionKeys2;1101 SessionKeys3: SessionKeys3;1102 SessionKeys4: SessionKeys4;1103 SessionKeys5: SessionKeys5;1104 SessionKeys6: SessionKeys6;1105 SessionKeys6B: SessionKeys6B;1106 SessionKeys7: SessionKeys7;1107 SessionKeys7B: SessionKeys7B;1108 SessionKeys8: SessionKeys8;1109 SessionKeys8B: SessionKeys8B;1110 SessionKeys9: SessionKeys9;1111 SessionKeys9B: SessionKeys9B;1112 SetId: SetId;1113 SetIndex: SetIndex;1114 Si0Field: Si0Field;1115 Si0LookupTypeId: Si0LookupTypeId;1116 Si0Path: Si0Path;1117 Si0Type: Si0Type;1118 Si0TypeDef: Si0TypeDef;1119 Si0TypeDefArray: Si0TypeDefArray;1120 Si0TypeDefBitSequence: Si0TypeDefBitSequence;1121 Si0TypeDefCompact: Si0TypeDefCompact;1122 Si0TypeDefComposite: Si0TypeDefComposite;1123 Si0TypeDefPhantom: Si0TypeDefPhantom;1124 Si0TypeDefPrimitive: Si0TypeDefPrimitive;1125 Si0TypeDefSequence: Si0TypeDefSequence;1126 Si0TypeDefTuple: Si0TypeDefTuple;1127 Si0TypeDefVariant: Si0TypeDefVariant;1128 Si0TypeParameter: Si0TypeParameter;1129 Si0Variant: Si0Variant;1130 Si1Field: Si1Field;1131 Si1LookupTypeId: Si1LookupTypeId;1132 Si1Path: Si1Path;1133 Si1Type: Si1Type;1134 Si1TypeDef: Si1TypeDef;1135 Si1TypeDefArray: Si1TypeDefArray;1136 Si1TypeDefBitSequence: Si1TypeDefBitSequence;1137 Si1TypeDefCompact: Si1TypeDefCompact;1138 Si1TypeDefComposite: Si1TypeDefComposite;1139 Si1TypeDefPrimitive: Si1TypeDefPrimitive;1140 Si1TypeDefSequence: Si1TypeDefSequence;1141 Si1TypeDefTuple: Si1TypeDefTuple;1142 Si1TypeDefVariant: Si1TypeDefVariant;1143 Si1TypeParameter: Si1TypeParameter;1144 Si1Variant: Si1Variant;1145 SiField: SiField;1146 Signature: Signature;1147 SignedAvailabilityBitfield: SignedAvailabilityBitfield;1148 SignedAvailabilityBitfields: SignedAvailabilityBitfields;1149 SignedBlock: SignedBlock;1150 SignedBlockWithJustification: SignedBlockWithJustification;1151 SignedBlockWithJustifications: SignedBlockWithJustifications;1152 SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1153 SignedExtensionMetadataV14: SignedExtensionMetadataV14;1154 SignedSubmission: SignedSubmission;1155 SignedSubmissionOf: SignedSubmissionOf;1156 SignedSubmissionTo276: SignedSubmissionTo276;1157 SignerPayload: SignerPayload;1158 SigningContext: SigningContext;1159 SiLookupTypeId: SiLookupTypeId;1160 SiPath: SiPath;1161 SiType: SiType;1162 SiTypeDef: SiTypeDef;1163 SiTypeDefArray: SiTypeDefArray;1164 SiTypeDefBitSequence: SiTypeDefBitSequence;1165 SiTypeDefCompact: SiTypeDefCompact;1166 SiTypeDefComposite: SiTypeDefComposite;1167 SiTypeDefPrimitive: SiTypeDefPrimitive;1168 SiTypeDefSequence: SiTypeDefSequence;1169 SiTypeDefTuple: SiTypeDefTuple;1170 SiTypeDefVariant: SiTypeDefVariant;1171 SiTypeParameter: SiTypeParameter;1172 SiVariant: SiVariant;1173 SlashingSpans: SlashingSpans;1174 SlashingSpansTo204: SlashingSpansTo204;1175 SlashJournalEntry: SlashJournalEntry;1176 Slot: Slot;1177 SlotDuration: SlotDuration;1178 SlotNumber: SlotNumber;1179 SlotRange: SlotRange;1180 SlotRange10: SlotRange10;1181 SocietyJudgement: SocietyJudgement;1182 SocietyVote: SocietyVote;1183 SolutionOrSnapshotSize: SolutionOrSnapshotSize;1184 SolutionSupport: SolutionSupport;1185 SolutionSupports: SolutionSupports;1186 SpanIndex: SpanIndex;1187 SpanRecord: SpanRecord;1188 SpCoreEcdsaSignature: SpCoreEcdsaSignature;1189 SpCoreEd25519Signature: SpCoreEd25519Signature;1190 SpCoreSr25519Signature: SpCoreSr25519Signature;1191 SpCoreVoid: SpCoreVoid;1192 SpecVersion: SpecVersion;1193 SpRuntimeArithmeticError: SpRuntimeArithmeticError;1194 SpRuntimeDigest: SpRuntimeDigest;1195 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1196 SpRuntimeDispatchError: SpRuntimeDispatchError;1197 SpRuntimeModuleError: SpRuntimeModuleError;1198 SpRuntimeMultiSignature: SpRuntimeMultiSignature;1199 SpRuntimeTokenError: SpRuntimeTokenError;1200 SpRuntimeTransactionalError: SpRuntimeTransactionalError;1201 SpTrieStorageProof: SpTrieStorageProof;1202 SpVersionRuntimeVersion: SpVersionRuntimeVersion;1203 SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;1204 SpWeightsWeightV2Weight: SpWeightsWeightV2Weight;1205 Sr25519Signature: Sr25519Signature;1206 StakingLedger: StakingLedger;1207 StakingLedgerTo223: StakingLedgerTo223;1208 StakingLedgerTo240: StakingLedgerTo240;1209 Statement: Statement;1210 StatementKind: StatementKind;1211 StorageChangeSet: StorageChangeSet;1212 StorageData: StorageData;1213 StorageDeposit: StorageDeposit;1214 StorageEntryMetadataLatest: StorageEntryMetadataLatest;1215 StorageEntryMetadataV10: StorageEntryMetadataV10;1216 StorageEntryMetadataV11: StorageEntryMetadataV11;1217 StorageEntryMetadataV12: StorageEntryMetadataV12;1218 StorageEntryMetadataV13: StorageEntryMetadataV13;1219 StorageEntryMetadataV14: StorageEntryMetadataV14;1220 StorageEntryMetadataV9: StorageEntryMetadataV9;1221 StorageEntryModifierLatest: StorageEntryModifierLatest;1222 StorageEntryModifierV10: StorageEntryModifierV10;1223 StorageEntryModifierV11: StorageEntryModifierV11;1224 StorageEntryModifierV12: StorageEntryModifierV12;1225 StorageEntryModifierV13: StorageEntryModifierV13;1226 StorageEntryModifierV14: StorageEntryModifierV14;1227 StorageEntryModifierV9: StorageEntryModifierV9;1228 StorageEntryTypeLatest: StorageEntryTypeLatest;1229 StorageEntryTypeV10: StorageEntryTypeV10;1230 StorageEntryTypeV11: StorageEntryTypeV11;1231 StorageEntryTypeV12: StorageEntryTypeV12;1232 StorageEntryTypeV13: StorageEntryTypeV13;1233 StorageEntryTypeV14: StorageEntryTypeV14;1234 StorageEntryTypeV9: StorageEntryTypeV9;1235 StorageHasher: StorageHasher;1236 StorageHasherV10: StorageHasherV10;1237 StorageHasherV11: StorageHasherV11;1238 StorageHasherV12: StorageHasherV12;1239 StorageHasherV13: StorageHasherV13;1240 StorageHasherV14: StorageHasherV14;1241 StorageHasherV9: StorageHasherV9;1242 StorageInfo: StorageInfo;1243 StorageKey: StorageKey;1244 StorageKind: StorageKind;1245 StorageMetadataV10: StorageMetadataV10;1246 StorageMetadataV11: StorageMetadataV11;1247 StorageMetadataV12: StorageMetadataV12;1248 StorageMetadataV13: StorageMetadataV13;1249 StorageMetadataV9: StorageMetadataV9;1250 StorageProof: StorageProof;1251 StoredPendingChange: StoredPendingChange;1252 StoredState: StoredState;1253 StrikeCount: StrikeCount;1254 SubId: SubId;1255 SubmissionIndicesOf: SubmissionIndicesOf;1256 Supports: Supports;1257 SyncState: SyncState;1258 SystemInherentData: SystemInherentData;1259 SystemOrigin: SystemOrigin;1260 Tally: Tally;1261 TaskAddress: TaskAddress;1262 TAssetBalance: TAssetBalance;1263 TAssetDepositBalance: TAssetDepositBalance;1264 Text: Text;1265 Timepoint: Timepoint;1266 TokenError: TokenError;1267 TombstoneContractInfo: TombstoneContractInfo;1268 TraceBlockResponse: TraceBlockResponse;1269 TraceError: TraceError;1270 TransactionalError: TransactionalError;1271 TransactionInfo: TransactionInfo;1272 TransactionLongevity: TransactionLongevity;1273 TransactionPriority: TransactionPriority;1274 TransactionSource: TransactionSource;1275 TransactionStorageProof: TransactionStorageProof;1276 TransactionTag: TransactionTag;1277 TransactionV0: TransactionV0;1278 TransactionV1: TransactionV1;1279 TransactionV2: TransactionV2;1280 TransactionValidity: TransactionValidity;1281 TransactionValidityError: TransactionValidityError;1282 TransientValidationData: TransientValidationData;1283 TreasuryProposal: TreasuryProposal;1284 TrieId: TrieId;1285 TrieIndex: TrieIndex;1286 Type: Type;1287 u128: u128;1288 U128: U128;1289 u16: u16;1290 U16: U16;1291 u256: u256;1292 U256: U256;1293 u32: u32;1294 U32: U32;1295 U32F32: U32F32;1296 u64: u64;1297 U64: U64;1298 u8: u8;1299 U8: U8;1300 UnappliedSlash: UnappliedSlash;1301 UnappliedSlashOther: UnappliedSlashOther;1302 UncleEntryItem: UncleEntryItem;1303 UnknownTransaction: UnknownTransaction;1304 UnlockChunk: UnlockChunk;1305 UnrewardedRelayer: UnrewardedRelayer;1306 UnrewardedRelayersState: UnrewardedRelayersState;1307 UpDataStructsAccessMode: UpDataStructsAccessMode;1308 UpDataStructsCollection: UpDataStructsCollection;1309 UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1310 UpDataStructsCollectionMode: UpDataStructsCollectionMode;1311 UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1312 UpDataStructsCollectionStats: UpDataStructsCollectionStats;1313 UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1314 UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1315 UpDataStructsCreateItemData: UpDataStructsCreateItemData;1316 UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1317 UpDataStructsCreateNftData: UpDataStructsCreateNftData;1318 UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1319 UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1320 UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1321 UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1322 UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1323 UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1324 UpDataStructsProperties: UpDataStructsProperties;1325 UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1326 UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1327 UpDataStructsProperty: UpDataStructsProperty;1328 UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1329 UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1330 UpDataStructsPropertyScope: UpDataStructsPropertyScope;1331 UpDataStructsRpcCollection: UpDataStructsRpcCollection;1332 UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;1333 UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1334 UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1335 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1336 UpDataStructsTokenChild: UpDataStructsTokenChild;1337 UpDataStructsTokenData: UpDataStructsTokenData;1338 UpgradeGoAhead: UpgradeGoAhead;1339 UpgradeRestriction: UpgradeRestriction;1340 UpwardMessage: UpwardMessage;1341 usize: usize;1342 USize: USize;1343 ValidationCode: ValidationCode;1344 ValidationCodeHash: ValidationCodeHash;1345 ValidationData: ValidationData;1346 ValidationDataType: ValidationDataType;1347 ValidationFunctionParams: ValidationFunctionParams;1348 ValidatorCount: ValidatorCount;1349 ValidatorId: ValidatorId;1350 ValidatorIdOf: ValidatorIdOf;1351 ValidatorIndex: ValidatorIndex;1352 ValidatorIndexCompact: ValidatorIndexCompact;1353 ValidatorPrefs: ValidatorPrefs;1354 ValidatorPrefsTo145: ValidatorPrefsTo145;1355 ValidatorPrefsTo196: ValidatorPrefsTo196;1356 ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1357 ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1358 ValidatorSet: ValidatorSet;1359 ValidatorSetId: ValidatorSetId;1360 ValidatorSignature: ValidatorSignature;1361 ValidDisputeStatementKind: ValidDisputeStatementKind;1362 ValidityAttestation: ValidityAttestation;1363 ValidTransaction: ValidTransaction;1364 VecInboundHrmpMessage: VecInboundHrmpMessage;1365 VersionedMultiAsset: VersionedMultiAsset;1366 VersionedMultiAssets: VersionedMultiAssets;1367 VersionedMultiLocation: VersionedMultiLocation;1368 VersionedResponse: VersionedResponse;1369 VersionedXcm: VersionedXcm;1370 VersionMigrationStage: VersionMigrationStage;1371 VestingInfo: VestingInfo;1372 VestingSchedule: VestingSchedule;1373 Vote: Vote;1374 VoteIndex: VoteIndex;1375 Voter: Voter;1376 VoterInfo: VoterInfo;1377 Votes: Votes;1378 VotesTo230: VotesTo230;1379 VoteThreshold: VoteThreshold;1380 VoteWeight: VoteWeight;1381 Voting: Voting;1382 VotingDelegating: VotingDelegating;1383 VotingDirect: VotingDirect;1384 VotingDirectVote: VotingDirectVote;1385 VouchingStatus: VouchingStatus;1386 VrfData: VrfData;1387 VrfOutput: VrfOutput;1388 VrfProof: VrfProof;1389 Weight: Weight;1390 WeightLimitV2: WeightLimitV2;1391 WeightMultiplier: WeightMultiplier;1392 WeightPerClass: WeightPerClass;1393 WeightToFeeCoefficient: WeightToFeeCoefficient;1394 WeightV1: WeightV1;1395 WeightV2: WeightV2;1396 WildFungibility: WildFungibility;1397 WildFungibilityV0: WildFungibilityV0;1398 WildFungibilityV1: WildFungibilityV1;1399 WildFungibilityV2: WildFungibilityV2;1400 WildMultiAsset: WildMultiAsset;1401 WildMultiAssetV1: WildMultiAssetV1;1402 WildMultiAssetV2: WildMultiAssetV2;1403 WinnersData: WinnersData;1404 WinnersData10: WinnersData10;1405 WinnersDataTuple: WinnersDataTuple;1406 WinnersDataTuple10: WinnersDataTuple10;1407 WinningData: WinningData;1408 WinningData10: WinningData10;1409 WinningDataEntry: WinningDataEntry;1410 WithdrawReasons: WithdrawReasons;1411 Xcm: Xcm;1412 XcmAssetId: XcmAssetId;1413 XcmDoubleEncoded: XcmDoubleEncoded;1414 XcmError: XcmError;1415 XcmErrorV0: XcmErrorV0;1416 XcmErrorV1: XcmErrorV1;1417 XcmErrorV2: XcmErrorV2;1418 XcmOrder: XcmOrder;1419 XcmOrderV0: XcmOrderV0;1420 XcmOrderV1: XcmOrderV1;1421 XcmOrderV2: XcmOrderV2;1422 XcmOrigin: XcmOrigin;1423 XcmOriginKind: XcmOriginKind;1424 XcmpMessageFormat: XcmpMessageFormat;1425 XcmV0: XcmV0;1426 XcmV0Junction: XcmV0Junction;1427 XcmV0JunctionBodyId: XcmV0JunctionBodyId;1428 XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1429 XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1430 XcmV0MultiAsset: XcmV0MultiAsset;1431 XcmV0MultiLocation: XcmV0MultiLocation;1432 XcmV0Order: XcmV0Order;1433 XcmV0OriginKind: XcmV0OriginKind;1434 XcmV0Response: XcmV0Response;1435 XcmV0Xcm: XcmV0Xcm;1436 XcmV1: XcmV1;1437 XcmV1Junction: XcmV1Junction;1438 XcmV1MultiAsset: XcmV1MultiAsset;1439 XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1440 XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1441 XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1442 XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1443 XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1444 XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1445 XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1446 XcmV1MultiLocation: XcmV1MultiLocation;1447 XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1448 XcmV1Order: XcmV1Order;1449 XcmV1Response: XcmV1Response;1450 XcmV1Xcm: XcmV1Xcm;1451 XcmV2: XcmV2;1452 XcmV2Instruction: XcmV2Instruction;1453 XcmV2Response: XcmV2Response;1454 XcmV2TraitsError: XcmV2TraitsError;1455 XcmV2TraitsOutcome: XcmV2TraitsOutcome;1456 XcmV2WeightLimit: XcmV2WeightLimit;1457 XcmV2Xcm: XcmV2Xcm;1458 XcmVersion: XcmVersion;1459 XcmVersionedMultiAsset: XcmVersionedMultiAsset;1460 XcmVersionedMultiAssets: XcmVersionedMultiAssets;1461 XcmVersionedMultiLocation: XcmVersionedMultiLocation;1462 XcmVersionedXcm: XcmVersionedXcm;1463 } // InterfaceTypes1464} // declare moduletests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -1333,7 +1333,11 @@
readonly asSetMinGasPriceOverride: {
readonly coeff: Option<u64>;
} & Struct;
- readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';
+ readonly isSetXcmAllowedLocations: boolean;
+ readonly asSetXcmAllowedLocations: {
+ readonly locations: Option<Vec<XcmV1MultiLocation>>;
+ } & Struct;
+ readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';
}
/** @name PalletEthereumCall */
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -2527,20 +2527,23 @@
coeff: 'Option<u32>',
},
set_min_gas_price_override: {
- coeff: 'Option<u64>'
+ coeff: 'Option<u64>',
+ },
+ set_xcm_allowed_locations: {
+ locations: 'Option<Vec<XcmV1MultiLocation>>'
}
}
},
/**
- * Lookup288: pallet_template_transaction_payment::Call<T>
+ * Lookup291: pallet_template_transaction_payment::Call<T>
**/
PalletTemplateTransactionPaymentCall: 'Null',
/**
- * Lookup289: pallet_structure::pallet::Call<T>
+ * Lookup292: pallet_structure::pallet::Call<T>
**/
PalletStructureCall: 'Null',
/**
- * Lookup290: pallet_rmrk_core::pallet::Call<T>
+ * Lookup293: pallet_rmrk_core::pallet::Call<T>
**/
PalletRmrkCoreCall: {
_enum: {
@@ -2631,7 +2634,7 @@
}
},
/**
- * Lookup296: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup299: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceTypes: {
_enum: {
@@ -2641,7 +2644,7 @@
}
},
/**
- * Lookup298: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup301: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceBasicResource: {
src: 'Option<Bytes>',
@@ -2650,7 +2653,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup300: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup303: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceComposableResource: {
parts: 'Vec<u32>',
@@ -2661,7 +2664,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup301: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup304: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceSlotResource: {
base: 'u32',
@@ -2672,7 +2675,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup304: pallet_rmrk_equip::pallet::Call<T>
+ * Lookup307: pallet_rmrk_equip::pallet::Call<T>
**/
PalletRmrkEquipCall: {
_enum: {
@@ -2693,7 +2696,7 @@
}
},
/**
- * Lookup307: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup310: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartPartType: {
_enum: {
@@ -2702,7 +2705,7 @@
}
},
/**
- * Lookup309: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup312: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartFixedPart: {
id: 'u32',
@@ -2710,7 +2713,7 @@
src: 'Bytes'
},
/**
- * Lookup310: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup313: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartSlotPart: {
id: 'u32',
@@ -2719,7 +2722,7 @@
z: 'u32'
},
/**
- * Lookup311: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup314: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartEquippableList: {
_enum: {
@@ -2729,7 +2732,7 @@
}
},
/**
- * Lookup313: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
+ * Lookup316: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
**/
RmrkTraitsTheme: {
name: 'Bytes',
@@ -2737,14 +2740,14 @@
inherit: 'bool'
},
/**
- * Lookup315: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup318: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsThemeThemeProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup317: pallet_app_promotion::pallet::Call<T>
+ * Lookup320: pallet_app_promotion::pallet::Call<T>
**/
PalletAppPromotionCall: {
_enum: {
@@ -2773,7 +2776,7 @@
}
},
/**
- * Lookup318: pallet_foreign_assets::module::Call<T>
+ * Lookup321: pallet_foreign_assets::module::Call<T>
**/
PalletForeignAssetsModuleCall: {
_enum: {
@@ -2790,7 +2793,7 @@
}
},
/**
- * Lookup319: pallet_evm::pallet::Call<T>
+ * Lookup322: pallet_evm::pallet::Call<T>
**/
PalletEvmCall: {
_enum: {
@@ -2833,7 +2836,7 @@
}
},
/**
- * Lookup325: pallet_ethereum::pallet::Call<T>
+ * Lookup328: pallet_ethereum::pallet::Call<T>
**/
PalletEthereumCall: {
_enum: {
@@ -2843,7 +2846,7 @@
}
},
/**
- * Lookup326: ethereum::transaction::TransactionV2
+ * Lookup329: ethereum::transaction::TransactionV2
**/
EthereumTransactionTransactionV2: {
_enum: {
@@ -2853,7 +2856,7 @@
}
},
/**
- * Lookup327: ethereum::transaction::LegacyTransaction
+ * Lookup330: ethereum::transaction::LegacyTransaction
**/
EthereumTransactionLegacyTransaction: {
nonce: 'U256',
@@ -2865,7 +2868,7 @@
signature: 'EthereumTransactionTransactionSignature'
},
/**
- * Lookup328: ethereum::transaction::TransactionAction
+ * Lookup331: ethereum::transaction::TransactionAction
**/
EthereumTransactionTransactionAction: {
_enum: {
@@ -2874,7 +2877,7 @@
}
},
/**
- * Lookup329: ethereum::transaction::TransactionSignature
+ * Lookup332: ethereum::transaction::TransactionSignature
**/
EthereumTransactionTransactionSignature: {
v: 'u64',
@@ -2882,7 +2885,7 @@
s: 'H256'
},
/**
- * Lookup331: ethereum::transaction::EIP2930Transaction
+ * Lookup334: ethereum::transaction::EIP2930Transaction
**/
EthereumTransactionEip2930Transaction: {
chainId: 'u64',
@@ -2898,14 +2901,14 @@
s: 'H256'
},
/**
- * Lookup333: ethereum::transaction::AccessListItem
+ * Lookup336: ethereum::transaction::AccessListItem
**/
EthereumTransactionAccessListItem: {
address: 'H160',
storageKeys: 'Vec<H256>'
},
/**
- * Lookup334: ethereum::transaction::EIP1559Transaction
+ * Lookup337: ethereum::transaction::EIP1559Transaction
**/
EthereumTransactionEip1559Transaction: {
chainId: 'u64',
@@ -2922,7 +2925,7 @@
s: 'H256'
},
/**
- * Lookup335: pallet_evm_migration::pallet::Call<T>
+ * Lookup338: pallet_evm_migration::pallet::Call<T>
**/
PalletEvmMigrationCall: {
_enum: {
@@ -2946,13 +2949,13 @@
}
},
/**
- * Lookup339: pallet_maintenance::pallet::Call<T>
+ * Lookup342: pallet_maintenance::pallet::Call<T>
**/
PalletMaintenanceCall: {
_enum: ['enable', 'disable']
},
/**
- * Lookup340: pallet_test_utils::pallet::Call<T>
+ * Lookup343: pallet_test_utils::pallet::Call<T>
**/
PalletTestUtilsCall: {
_enum: {
@@ -2975,32 +2978,32 @@
}
},
/**
- * Lookup342: pallet_sudo::pallet::Error<T>
+ * Lookup345: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup344: orml_vesting::module::Error<T>
+ * Lookup347: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup345: orml_xtokens::module::Error<T>
+ * Lookup348: orml_xtokens::module::Error<T>
**/
OrmlXtokensModuleError: {
_enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
},
/**
- * Lookup348: orml_tokens::BalanceLock<Balance>
+ * Lookup351: orml_tokens::BalanceLock<Balance>
**/
OrmlTokensBalanceLock: {
id: '[u8;8]',
amount: 'u128'
},
/**
- * Lookup350: orml_tokens::AccountData<Balance>
+ * Lookup353: orml_tokens::AccountData<Balance>
**/
OrmlTokensAccountData: {
free: 'u128',
@@ -3008,20 +3011,20 @@
frozen: 'u128'
},
/**
- * Lookup352: orml_tokens::ReserveData<ReserveIdentifier, Balance>
+ * Lookup355: orml_tokens::ReserveData<ReserveIdentifier, Balance>
**/
OrmlTokensReserveData: {
id: 'Null',
amount: 'u128'
},
/**
- * Lookup354: orml_tokens::module::Error<T>
+ * Lookup357: orml_tokens::module::Error<T>
**/
OrmlTokensModuleError: {
_enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup356: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup359: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -3029,19 +3032,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup357: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup360: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup360: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup363: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup363: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup366: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -3051,13 +3054,13 @@
lastIndex: 'u16'
},
/**
- * Lookup364: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup367: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup366: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup369: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
@@ -3068,29 +3071,29 @@
xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
},
/**
- * Lookup368: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup371: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup369: pallet_xcm::pallet::Error<T>
+ * Lookup372: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
},
/**
- * Lookup370: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup373: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup371: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup374: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
maxIndividual: 'SpWeightsWeightV2Weight'
},
/**
- * Lookup372: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup375: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -3098,26 +3101,26 @@
overweightCount: 'u64'
},
/**
- * Lookup375: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup378: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup379: pallet_unique::Error<T>
+ * Lookup382: pallet_unique::Error<T>
**/
PalletUniqueError: {
_enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
},
/**
- * Lookup380: pallet_unique_scheduler_v2::BlockAgenda<T>
+ * Lookup383: pallet_unique_scheduler_v2::BlockAgenda<T>
**/
PalletUniqueSchedulerV2BlockAgenda: {
agenda: 'Vec<Option<PalletUniqueSchedulerV2Scheduled>>',
freePlaces: 'u32'
},
/**
- * Lookup383: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
+ * Lookup386: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
**/
PalletUniqueSchedulerV2Scheduled: {
maybeId: 'Option<[u8;32]>',
@@ -3127,7 +3130,7 @@
origin: 'OpalRuntimeOriginCaller'
},
/**
- * Lookup384: pallet_unique_scheduler_v2::ScheduledCall<T>
+ * Lookup387: pallet_unique_scheduler_v2::ScheduledCall<T>
**/
PalletUniqueSchedulerV2ScheduledCall: {
_enum: {
@@ -3142,7 +3145,7 @@
}
},
/**
- * Lookup386: opal_runtime::OriginCaller
+ * Lookup389: opal_runtime::OriginCaller
**/
OpalRuntimeOriginCaller: {
_enum: {
@@ -3251,7 +3254,7 @@
}
},
/**
- * Lookup387: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
+ * Lookup390: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
**/
FrameSupportDispatchRawOrigin: {
_enum: {
@@ -3261,7 +3264,7 @@
}
},
/**
- * Lookup388: pallet_xcm::pallet::Origin
+ * Lookup391: pallet_xcm::pallet::Origin
**/
PalletXcmOrigin: {
_enum: {
@@ -3270,7 +3273,7 @@
}
},
/**
- * Lookup389: cumulus_pallet_xcm::pallet::Origin
+ * Lookup392: cumulus_pallet_xcm::pallet::Origin
**/
CumulusPalletXcmOrigin: {
_enum: {
@@ -3279,7 +3282,7 @@
}
},
/**
- * Lookup390: pallet_ethereum::RawOrigin
+ * Lookup393: pallet_ethereum::RawOrigin
**/
PalletEthereumRawOrigin: {
_enum: {
@@ -3287,17 +3290,17 @@
}
},
/**
- * Lookup391: sp_core::Void
+ * Lookup394: sp_core::Void
**/
SpCoreVoid: 'Null',
/**
- * Lookup393: pallet_unique_scheduler_v2::pallet::Error<T>
+ * Lookup396: pallet_unique_scheduler_v2::pallet::Error<T>
**/
PalletUniqueSchedulerV2Error: {
_enum: ['FailedToSchedule', 'AgendaIsExhausted', 'ScheduledCallCorrupted', 'PreimageNotFound', 'TooBigScheduledCall', 'NotFound', 'TargetBlockNumberInPast', 'Named']
},
/**
- * Lookup394: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ * Lookup397: up_data_structs::Collection<sp_core::crypto::AccountId32>
**/
UpDataStructsCollection: {
owner: 'AccountId32',
@@ -3311,7 +3314,7 @@
flags: '[u8;1]'
},
/**
- * Lookup395: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup398: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipStateAccountId32: {
_enum: {
@@ -3321,7 +3324,7 @@
}
},
/**
- * Lookup397: up_data_structs::Properties
+ * Lookup400: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -3329,15 +3332,15 @@
spaceLimit: 'u32'
},
/**
- * Lookup398: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup401: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
/**
- * Lookup403: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ * Lookup406: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
**/
UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
/**
- * Lookup410: up_data_structs::CollectionStats
+ * Lookup413: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -3345,18 +3348,18 @@
alive: 'u32'
},
/**
- * Lookup411: up_data_structs::TokenChild
+ * Lookup414: up_data_structs::TokenChild
**/
UpDataStructsTokenChild: {
token: 'u32',
collection: 'u32'
},
/**
- * Lookup412: PhantomType::up_data_structs<T>
+ * Lookup415: PhantomType::up_data_structs<T>
**/
PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
/**
- * Lookup414: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup417: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
properties: 'Vec<UpDataStructsProperty>',
@@ -3364,7 +3367,7 @@
pieces: 'u128'
},
/**
- * Lookup416: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup419: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -3381,14 +3384,14 @@
flags: 'UpDataStructsRpcCollectionFlags'
},
/**
- * Lookup417: up_data_structs::RpcCollectionFlags
+ * Lookup420: up_data_structs::RpcCollectionFlags
**/
UpDataStructsRpcCollectionFlags: {
foreign: 'bool',
erc721metadata: 'bool'
},
/**
- * Lookup418: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
+ * Lookup421: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
**/
RmrkTraitsCollectionCollectionInfo: {
issuer: 'AccountId32',
@@ -3398,7 +3401,7 @@
nftsCount: 'u32'
},
/**
- * Lookup419: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup422: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsNftNftInfo: {
owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -3408,14 +3411,14 @@
pending: 'bool'
},
/**
- * Lookup421: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+ * Lookup424: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
**/
RmrkTraitsNftRoyaltyInfo: {
recipient: 'AccountId32',
amount: 'Permill'
},
/**
- * Lookup422: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup425: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceInfo: {
id: 'u32',
@@ -3424,14 +3427,14 @@
pendingRemoval: 'bool'
},
/**
- * Lookup423: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup426: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPropertyPropertyInfo: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup424: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup427: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsBaseBaseInfo: {
issuer: 'AccountId32',
@@ -3439,92 +3442,92 @@
symbol: 'Bytes'
},
/**
- * Lookup425: rmrk_traits::nft::NftChild
+ * Lookup428: rmrk_traits::nft::NftChild
**/
RmrkTraitsNftNftChild: {
collectionId: 'u32',
nftId: 'u32'
},
/**
- * Lookup427: pallet_common::pallet::Error<T>
+ * Lookup430: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
_enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']
},
/**
- * Lookup429: pallet_fungible::pallet::Error<T>
+ * Lookup432: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']
},
/**
- * Lookup430: pallet_refungible::ItemData
+ * Lookup433: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes'
},
/**
- * Lookup435: pallet_refungible::pallet::Error<T>
+ * Lookup438: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup436: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup439: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup438: up_data_structs::PropertyScope
+ * Lookup441: up_data_structs::PropertyScope
**/
UpDataStructsPropertyScope: {
_enum: ['None', 'Rmrk']
},
/**
- * Lookup440: pallet_nonfungible::pallet::Error<T>
+ * Lookup443: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup441: pallet_structure::pallet::Error<T>
+ * Lookup444: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
},
/**
- * Lookup442: pallet_rmrk_core::pallet::Error<T>
+ * Lookup445: pallet_rmrk_core::pallet::Error<T>
**/
PalletRmrkCoreError: {
_enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
},
/**
- * Lookup444: pallet_rmrk_equip::pallet::Error<T>
+ * Lookup447: pallet_rmrk_equip::pallet::Error<T>
**/
PalletRmrkEquipError: {
_enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
},
/**
- * Lookup450: pallet_app_promotion::pallet::Error<T>
+ * Lookup453: pallet_app_promotion::pallet::Error<T>
**/
PalletAppPromotionError: {
_enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
},
/**
- * Lookup451: pallet_foreign_assets::module::Error<T>
+ * Lookup454: pallet_foreign_assets::module::Error<T>
**/
PalletForeignAssetsModuleError: {
_enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
},
/**
- * Lookup453: pallet_evm::pallet::Error<T>
+ * Lookup456: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']
},
/**
- * Lookup456: fp_rpc::TransactionStatus
+ * Lookup459: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -3536,11 +3539,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup458: ethbloom::Bloom
+ * Lookup461: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup460: ethereum::receipt::ReceiptV3
+ * Lookup463: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -3550,7 +3553,7 @@
}
},
/**
- * Lookup461: ethereum::receipt::EIP658ReceiptData
+ * Lookup464: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -3559,7 +3562,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup462: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup465: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -3567,7 +3570,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup463: ethereum::header::Header
+ * Lookup466: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -3587,23 +3590,23 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup464: ethereum_types::hash::H64
+ * Lookup467: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup469: pallet_ethereum::pallet::Error<T>
+ * Lookup472: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup470: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup473: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup471: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup474: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
_enum: {
@@ -3613,35 +3616,35 @@
}
},
/**
- * Lookup472: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup475: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup478: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup481: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
},
/**
- * Lookup479: pallet_evm_migration::pallet::Error<T>
+ * Lookup482: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
},
/**
- * Lookup480: pallet_maintenance::pallet::Error<T>
+ * Lookup483: pallet_maintenance::pallet::Error<T>
**/
PalletMaintenanceError: 'Null',
/**
- * Lookup481: pallet_test_utils::pallet::Error<T>
+ * Lookup484: pallet_test_utils::pallet::Error<T>
**/
PalletTestUtilsError: {
_enum: ['TestPalletDisabled', 'TriggerRollback']
},
/**
- * Lookup483: sp_runtime::MultiSignature
+ * Lookup486: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -3651,51 +3654,51 @@
}
},
/**
- * Lookup484: sp_core::ed25519::Signature
+ * Lookup487: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup486: sp_core::sr25519::Signature
+ * Lookup489: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup487: sp_core::ecdsa::Signature
+ * Lookup490: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup490: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup493: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup491: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+ * Lookup494: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: 'Null',
/**
- * Lookup492: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup495: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup495: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup498: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup496: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup499: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup497: opal_runtime::runtime_common::maintenance::CheckMaintenance
+ * Lookup500: opal_runtime::runtime_common::maintenance::CheckMaintenance
**/
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
/**
- * Lookup498: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup501: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup499: opal_runtime::Runtime
+ * Lookup502: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup500: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup503: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
**/
PalletEthereumFakeTransactionFinalizer: 'Null'
};
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -2761,16 +2761,20 @@
readonly asSetMinGasPriceOverride: {
readonly coeff: Option<u64>;
} & Struct;
- readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';
+ readonly isSetXcmAllowedLocations: boolean;
+ readonly asSetXcmAllowedLocations: {
+ readonly locations: Option<Vec<XcmV1MultiLocation>>;
+ } & Struct;
+ readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';
}
- /** @name PalletTemplateTransactionPaymentCall (288) */
+ /** @name PalletTemplateTransactionPaymentCall (291) */
type PalletTemplateTransactionPaymentCall = Null;
- /** @name PalletStructureCall (289) */
+ /** @name PalletStructureCall (292) */
type PalletStructureCall = Null;
- /** @name PalletRmrkCoreCall (290) */
+ /** @name PalletRmrkCoreCall (293) */
interface PalletRmrkCoreCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -2876,7 +2880,7 @@
readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
}
- /** @name RmrkTraitsResourceResourceTypes (296) */
+ /** @name RmrkTraitsResourceResourceTypes (299) */
interface RmrkTraitsResourceResourceTypes extends Enum {
readonly isBasic: boolean;
readonly asBasic: RmrkTraitsResourceBasicResource;
@@ -2887,7 +2891,7 @@
readonly type: 'Basic' | 'Composable' | 'Slot';
}
- /** @name RmrkTraitsResourceBasicResource (298) */
+ /** @name RmrkTraitsResourceBasicResource (301) */
interface RmrkTraitsResourceBasicResource extends Struct {
readonly src: Option<Bytes>;
readonly metadata: Option<Bytes>;
@@ -2895,7 +2899,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceComposableResource (300) */
+ /** @name RmrkTraitsResourceComposableResource (303) */
interface RmrkTraitsResourceComposableResource extends Struct {
readonly parts: Vec<u32>;
readonly base: u32;
@@ -2905,7 +2909,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceSlotResource (301) */
+ /** @name RmrkTraitsResourceSlotResource (304) */
interface RmrkTraitsResourceSlotResource extends Struct {
readonly base: u32;
readonly src: Option<Bytes>;
@@ -2915,7 +2919,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name PalletRmrkEquipCall (304) */
+ /** @name PalletRmrkEquipCall (307) */
interface PalletRmrkEquipCall extends Enum {
readonly isCreateBase: boolean;
readonly asCreateBase: {
@@ -2937,7 +2941,7 @@
readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
}
- /** @name RmrkTraitsPartPartType (307) */
+ /** @name RmrkTraitsPartPartType (310) */
interface RmrkTraitsPartPartType extends Enum {
readonly isFixedPart: boolean;
readonly asFixedPart: RmrkTraitsPartFixedPart;
@@ -2946,14 +2950,14 @@
readonly type: 'FixedPart' | 'SlotPart';
}
- /** @name RmrkTraitsPartFixedPart (309) */
+ /** @name RmrkTraitsPartFixedPart (312) */
interface RmrkTraitsPartFixedPart extends Struct {
readonly id: u32;
readonly z: u32;
readonly src: Bytes;
}
- /** @name RmrkTraitsPartSlotPart (310) */
+ /** @name RmrkTraitsPartSlotPart (313) */
interface RmrkTraitsPartSlotPart extends Struct {
readonly id: u32;
readonly equippable: RmrkTraitsPartEquippableList;
@@ -2961,7 +2965,7 @@
readonly z: u32;
}
- /** @name RmrkTraitsPartEquippableList (311) */
+ /** @name RmrkTraitsPartEquippableList (314) */
interface RmrkTraitsPartEquippableList extends Enum {
readonly isAll: boolean;
readonly isEmpty: boolean;
@@ -2970,20 +2974,20 @@
readonly type: 'All' | 'Empty' | 'Custom';
}
- /** @name RmrkTraitsTheme (313) */
+ /** @name RmrkTraitsTheme (316) */
interface RmrkTraitsTheme extends Struct {
readonly name: Bytes;
readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
readonly inherit: bool;
}
- /** @name RmrkTraitsThemeThemeProperty (315) */
+ /** @name RmrkTraitsThemeThemeProperty (318) */
interface RmrkTraitsThemeThemeProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name PalletAppPromotionCall (317) */
+ /** @name PalletAppPromotionCall (320) */
interface PalletAppPromotionCall extends Enum {
readonly isSetAdminAddress: boolean;
readonly asSetAdminAddress: {
@@ -3017,7 +3021,7 @@
readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
}
- /** @name PalletForeignAssetsModuleCall (318) */
+ /** @name PalletForeignAssetsModuleCall (321) */
interface PalletForeignAssetsModuleCall extends Enum {
readonly isRegisterForeignAsset: boolean;
readonly asRegisterForeignAsset: {
@@ -3034,7 +3038,7 @@
readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
}
- /** @name PalletEvmCall (319) */
+ /** @name PalletEvmCall (322) */
interface PalletEvmCall extends Enum {
readonly isWithdraw: boolean;
readonly asWithdraw: {
@@ -3079,7 +3083,7 @@
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
}
- /** @name PalletEthereumCall (325) */
+ /** @name PalletEthereumCall (328) */
interface PalletEthereumCall extends Enum {
readonly isTransact: boolean;
readonly asTransact: {
@@ -3088,7 +3092,7 @@
readonly type: 'Transact';
}
- /** @name EthereumTransactionTransactionV2 (326) */
+ /** @name EthereumTransactionTransactionV2 (329) */
interface EthereumTransactionTransactionV2 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -3099,7 +3103,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumTransactionLegacyTransaction (327) */
+ /** @name EthereumTransactionLegacyTransaction (330) */
interface EthereumTransactionLegacyTransaction extends Struct {
readonly nonce: U256;
readonly gasPrice: U256;
@@ -3110,7 +3114,7 @@
readonly signature: EthereumTransactionTransactionSignature;
}
- /** @name EthereumTransactionTransactionAction (328) */
+ /** @name EthereumTransactionTransactionAction (331) */
interface EthereumTransactionTransactionAction extends Enum {
readonly isCall: boolean;
readonly asCall: H160;
@@ -3118,14 +3122,14 @@
readonly type: 'Call' | 'Create';
}
- /** @name EthereumTransactionTransactionSignature (329) */
+ /** @name EthereumTransactionTransactionSignature (332) */
interface EthereumTransactionTransactionSignature extends Struct {
readonly v: u64;
readonly r: H256;
readonly s: H256;
}
- /** @name EthereumTransactionEip2930Transaction (331) */
+ /** @name EthereumTransactionEip2930Transaction (334) */
interface EthereumTransactionEip2930Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3140,13 +3144,13 @@
readonly s: H256;
}
- /** @name EthereumTransactionAccessListItem (333) */
+ /** @name EthereumTransactionAccessListItem (336) */
interface EthereumTransactionAccessListItem extends Struct {
readonly address: H160;
readonly storageKeys: Vec<H256>;
}
- /** @name EthereumTransactionEip1559Transaction (334) */
+ /** @name EthereumTransactionEip1559Transaction (337) */
interface EthereumTransactionEip1559Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3162,7 +3166,7 @@
readonly s: H256;
}
- /** @name PalletEvmMigrationCall (335) */
+ /** @name PalletEvmMigrationCall (338) */
interface PalletEvmMigrationCall extends Enum {
readonly isBegin: boolean;
readonly asBegin: {
@@ -3189,14 +3193,14 @@
readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';
}
- /** @name PalletMaintenanceCall (339) */
+ /** @name PalletMaintenanceCall (342) */
interface PalletMaintenanceCall extends Enum {
readonly isEnable: boolean;
readonly isDisable: boolean;
readonly type: 'Enable' | 'Disable';
}
- /** @name PalletTestUtilsCall (340) */
+ /** @name PalletTestUtilsCall (343) */
interface PalletTestUtilsCall extends Enum {
readonly isEnable: boolean;
readonly isSetTestValue: boolean;
@@ -3221,13 +3225,13 @@
readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';
}
- /** @name PalletSudoError (342) */
+ /** @name PalletSudoError (345) */
interface PalletSudoError extends Enum {
readonly isRequireSudo: boolean;
readonly type: 'RequireSudo';
}
- /** @name OrmlVestingModuleError (344) */
+ /** @name OrmlVestingModuleError (347) */
interface OrmlVestingModuleError extends Enum {
readonly isZeroVestingPeriod: boolean;
readonly isZeroVestingPeriodCount: boolean;
@@ -3238,7 +3242,7 @@
readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
}
- /** @name OrmlXtokensModuleError (345) */
+ /** @name OrmlXtokensModuleError (348) */
interface OrmlXtokensModuleError extends Enum {
readonly isAssetHasNoReserve: boolean;
readonly isNotCrossChainTransfer: boolean;
@@ -3262,26 +3266,26 @@
readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
}
- /** @name OrmlTokensBalanceLock (348) */
+ /** @name OrmlTokensBalanceLock (351) */
interface OrmlTokensBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name OrmlTokensAccountData (350) */
+ /** @name OrmlTokensAccountData (353) */
interface OrmlTokensAccountData extends Struct {
readonly free: u128;
readonly reserved: u128;
readonly frozen: u128;
}
- /** @name OrmlTokensReserveData (352) */
+ /** @name OrmlTokensReserveData (355) */
interface OrmlTokensReserveData extends Struct {
readonly id: Null;
readonly amount: u128;
}
- /** @name OrmlTokensModuleError (354) */
+ /** @name OrmlTokensModuleError (357) */
interface OrmlTokensModuleError extends Enum {
readonly isBalanceTooLow: boolean;
readonly isAmountIntoBalanceFailed: boolean;
@@ -3294,21 +3298,21 @@
readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name CumulusPalletXcmpQueueInboundChannelDetails (356) */
+ /** @name CumulusPalletXcmpQueueInboundChannelDetails (359) */
interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
readonly sender: u32;
readonly state: CumulusPalletXcmpQueueInboundState;
readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
}
- /** @name CumulusPalletXcmpQueueInboundState (357) */
+ /** @name CumulusPalletXcmpQueueInboundState (360) */
interface CumulusPalletXcmpQueueInboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name PolkadotParachainPrimitivesXcmpMessageFormat (360) */
+ /** @name PolkadotParachainPrimitivesXcmpMessageFormat (363) */
interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
readonly isConcatenatedVersionedXcm: boolean;
readonly isConcatenatedEncodedBlob: boolean;
@@ -3316,7 +3320,7 @@
readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
}
- /** @name CumulusPalletXcmpQueueOutboundChannelDetails (363) */
+ /** @name CumulusPalletXcmpQueueOutboundChannelDetails (366) */
interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
readonly recipient: u32;
readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -3325,14 +3329,14 @@
readonly lastIndex: u16;
}
- /** @name CumulusPalletXcmpQueueOutboundState (364) */
+ /** @name CumulusPalletXcmpQueueOutboundState (367) */
interface CumulusPalletXcmpQueueOutboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name CumulusPalletXcmpQueueQueueConfigData (366) */
+ /** @name CumulusPalletXcmpQueueQueueConfigData (369) */
interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
readonly suspendThreshold: u32;
readonly dropThreshold: u32;
@@ -3342,7 +3346,7 @@
readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
}
- /** @name CumulusPalletXcmpQueueError (368) */
+ /** @name CumulusPalletXcmpQueueError (371) */
interface CumulusPalletXcmpQueueError extends Enum {
readonly isFailedToSend: boolean;
readonly isBadXcmOrigin: boolean;
@@ -3352,7 +3356,7 @@
readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
}
- /** @name PalletXcmError (369) */
+ /** @name PalletXcmError (372) */
interface PalletXcmError extends Enum {
readonly isUnreachable: boolean;
readonly isSendFailure: boolean;
@@ -3370,29 +3374,29 @@
readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
}
- /** @name CumulusPalletXcmError (370) */
+ /** @name CumulusPalletXcmError (373) */
type CumulusPalletXcmError = Null;
- /** @name CumulusPalletDmpQueueConfigData (371) */
+ /** @name CumulusPalletDmpQueueConfigData (374) */
interface CumulusPalletDmpQueueConfigData extends Struct {
readonly maxIndividual: SpWeightsWeightV2Weight;
}
- /** @name CumulusPalletDmpQueuePageIndexData (372) */
+ /** @name CumulusPalletDmpQueuePageIndexData (375) */
interface CumulusPalletDmpQueuePageIndexData extends Struct {
readonly beginUsed: u32;
readonly endUsed: u32;
readonly overweightCount: u64;
}
- /** @name CumulusPalletDmpQueueError (375) */
+ /** @name CumulusPalletDmpQueueError (378) */
interface CumulusPalletDmpQueueError extends Enum {
readonly isUnknown: boolean;
readonly isOverLimit: boolean;
readonly type: 'Unknown' | 'OverLimit';
}
- /** @name PalletUniqueError (379) */
+ /** @name PalletUniqueError (382) */
interface PalletUniqueError extends Enum {
readonly isCollectionDecimalPointLimitExceeded: boolean;
readonly isEmptyArgument: boolean;
@@ -3400,13 +3404,13 @@
readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
}
- /** @name PalletUniqueSchedulerV2BlockAgenda (380) */
+ /** @name PalletUniqueSchedulerV2BlockAgenda (383) */
interface PalletUniqueSchedulerV2BlockAgenda extends Struct {
readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;
readonly freePlaces: u32;
}
- /** @name PalletUniqueSchedulerV2Scheduled (383) */
+ /** @name PalletUniqueSchedulerV2Scheduled (386) */
interface PalletUniqueSchedulerV2Scheduled extends Struct {
readonly maybeId: Option<U8aFixed>;
readonly priority: u8;
@@ -3415,7 +3419,7 @@
readonly origin: OpalRuntimeOriginCaller;
}
- /** @name PalletUniqueSchedulerV2ScheduledCall (384) */
+ /** @name PalletUniqueSchedulerV2ScheduledCall (387) */
interface PalletUniqueSchedulerV2ScheduledCall extends Enum {
readonly isInline: boolean;
readonly asInline: Bytes;
@@ -3427,7 +3431,7 @@
readonly type: 'Inline' | 'PreimageLookup';
}
- /** @name OpalRuntimeOriginCaller (386) */
+ /** @name OpalRuntimeOriginCaller (389) */
interface OpalRuntimeOriginCaller extends Enum {
readonly isSystem: boolean;
readonly asSystem: FrameSupportDispatchRawOrigin;
@@ -3441,7 +3445,7 @@
readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
}
- /** @name FrameSupportDispatchRawOrigin (387) */
+ /** @name FrameSupportDispatchRawOrigin (390) */
interface FrameSupportDispatchRawOrigin extends Enum {
readonly isRoot: boolean;
readonly isSigned: boolean;
@@ -3450,7 +3454,7 @@
readonly type: 'Root' | 'Signed' | 'None';
}
- /** @name PalletXcmOrigin (388) */
+ /** @name PalletXcmOrigin (391) */
interface PalletXcmOrigin extends Enum {
readonly isXcm: boolean;
readonly asXcm: XcmV1MultiLocation;
@@ -3459,7 +3463,7 @@
readonly type: 'Xcm' | 'Response';
}
- /** @name CumulusPalletXcmOrigin (389) */
+ /** @name CumulusPalletXcmOrigin (392) */
interface CumulusPalletXcmOrigin extends Enum {
readonly isRelay: boolean;
readonly isSiblingParachain: boolean;
@@ -3467,17 +3471,17 @@
readonly type: 'Relay' | 'SiblingParachain';
}
- /** @name PalletEthereumRawOrigin (390) */
+ /** @name PalletEthereumRawOrigin (393) */
interface PalletEthereumRawOrigin extends Enum {
readonly isEthereumTransaction: boolean;
readonly asEthereumTransaction: H160;
readonly type: 'EthereumTransaction';
}
- /** @name SpCoreVoid (391) */
+ /** @name SpCoreVoid (394) */
type SpCoreVoid = Null;
- /** @name PalletUniqueSchedulerV2Error (393) */
+ /** @name PalletUniqueSchedulerV2Error (396) */
interface PalletUniqueSchedulerV2Error extends Enum {
readonly isFailedToSchedule: boolean;
readonly isAgendaIsExhausted: boolean;
@@ -3490,7 +3494,7 @@
readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';
}
- /** @name UpDataStructsCollection (394) */
+ /** @name UpDataStructsCollection (397) */
interface UpDataStructsCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3503,7 +3507,7 @@
readonly flags: U8aFixed;
}
- /** @name UpDataStructsSponsorshipStateAccountId32 (395) */
+ /** @name UpDataStructsSponsorshipStateAccountId32 (398) */
interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3513,43 +3517,43 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name UpDataStructsProperties (397) */
+ /** @name UpDataStructsProperties (400) */
interface UpDataStructsProperties extends Struct {
readonly map: UpDataStructsPropertiesMapBoundedVec;
readonly consumedSpace: u32;
readonly spaceLimit: u32;
}
- /** @name UpDataStructsPropertiesMapBoundedVec (398) */
+ /** @name UpDataStructsPropertiesMapBoundedVec (401) */
interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
- /** @name UpDataStructsPropertiesMapPropertyPermission (403) */
+ /** @name UpDataStructsPropertiesMapPropertyPermission (406) */
interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
- /** @name UpDataStructsCollectionStats (410) */
+ /** @name UpDataStructsCollectionStats (413) */
interface UpDataStructsCollectionStats extends Struct {
readonly created: u32;
readonly destroyed: u32;
readonly alive: u32;
}
- /** @name UpDataStructsTokenChild (411) */
+ /** @name UpDataStructsTokenChild (414) */
interface UpDataStructsTokenChild extends Struct {
readonly token: u32;
readonly collection: u32;
}
- /** @name PhantomTypeUpDataStructs (412) */
+ /** @name PhantomTypeUpDataStructs (415) */
interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
- /** @name UpDataStructsTokenData (414) */
+ /** @name UpDataStructsTokenData (417) */
interface UpDataStructsTokenData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
readonly pieces: u128;
}
- /** @name UpDataStructsRpcCollection (416) */
+ /** @name UpDataStructsRpcCollection (419) */
interface UpDataStructsRpcCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3565,13 +3569,13 @@
readonly flags: UpDataStructsRpcCollectionFlags;
}
- /** @name UpDataStructsRpcCollectionFlags (417) */
+ /** @name UpDataStructsRpcCollectionFlags (420) */
interface UpDataStructsRpcCollectionFlags extends Struct {
readonly foreign: bool;
readonly erc721metadata: bool;
}
- /** @name RmrkTraitsCollectionCollectionInfo (418) */
+ /** @name RmrkTraitsCollectionCollectionInfo (421) */
interface RmrkTraitsCollectionCollectionInfo extends Struct {
readonly issuer: AccountId32;
readonly metadata: Bytes;
@@ -3580,7 +3584,7 @@
readonly nftsCount: u32;
}
- /** @name RmrkTraitsNftNftInfo (419) */
+ /** @name RmrkTraitsNftNftInfo (422) */
interface RmrkTraitsNftNftInfo extends Struct {
readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
@@ -3589,13 +3593,13 @@
readonly pending: bool;
}
- /** @name RmrkTraitsNftRoyaltyInfo (421) */
+ /** @name RmrkTraitsNftRoyaltyInfo (424) */
interface RmrkTraitsNftRoyaltyInfo extends Struct {
readonly recipient: AccountId32;
readonly amount: Permill;
}
- /** @name RmrkTraitsResourceResourceInfo (422) */
+ /** @name RmrkTraitsResourceResourceInfo (425) */
interface RmrkTraitsResourceResourceInfo extends Struct {
readonly id: u32;
readonly resource: RmrkTraitsResourceResourceTypes;
@@ -3603,26 +3607,26 @@
readonly pendingRemoval: bool;
}
- /** @name RmrkTraitsPropertyPropertyInfo (423) */
+ /** @name RmrkTraitsPropertyPropertyInfo (426) */
interface RmrkTraitsPropertyPropertyInfo extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name RmrkTraitsBaseBaseInfo (424) */
+ /** @name RmrkTraitsBaseBaseInfo (427) */
interface RmrkTraitsBaseBaseInfo extends Struct {
readonly issuer: AccountId32;
readonly baseType: Bytes;
readonly symbol: Bytes;
}
- /** @name RmrkTraitsNftNftChild (425) */
+ /** @name RmrkTraitsNftNftChild (428) */
interface RmrkTraitsNftNftChild extends Struct {
readonly collectionId: u32;
readonly nftId: u32;
}
- /** @name PalletCommonError (427) */
+ /** @name PalletCommonError (430) */
interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -3663,7 +3667,7 @@
readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
}
- /** @name PalletFungibleError (429) */
+ /** @name PalletFungibleError (432) */
interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -3674,12 +3678,12 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';
}
- /** @name PalletRefungibleItemData (430) */
+ /** @name PalletRefungibleItemData (433) */
interface PalletRefungibleItemData extends Struct {
readonly constData: Bytes;
}
- /** @name PalletRefungibleError (435) */
+ /** @name PalletRefungibleError (438) */
interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -3689,19 +3693,19 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (436) */
+ /** @name PalletNonfungibleItemData (439) */
interface PalletNonfungibleItemData extends Struct {
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsPropertyScope (438) */
+ /** @name UpDataStructsPropertyScope (441) */
interface UpDataStructsPropertyScope extends Enum {
readonly isNone: boolean;
readonly isRmrk: boolean;
readonly type: 'None' | 'Rmrk';
}
- /** @name PalletNonfungibleError (440) */
+ /** @name PalletNonfungibleError (443) */
interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3709,7 +3713,7 @@
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
}
- /** @name PalletStructureError (441) */
+ /** @name PalletStructureError (444) */
interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -3718,7 +3722,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
}
- /** @name PalletRmrkCoreError (442) */
+ /** @name PalletRmrkCoreError (445) */
interface PalletRmrkCoreError extends Enum {
readonly isCorruptedCollectionType: boolean;
readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -3742,7 +3746,7 @@
readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
}
- /** @name PalletRmrkEquipError (444) */
+ /** @name PalletRmrkEquipError (447) */
interface PalletRmrkEquipError extends Enum {
readonly isPermissionError: boolean;
readonly isNoAvailableBaseId: boolean;
@@ -3754,7 +3758,7 @@
readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
}
- /** @name PalletAppPromotionError (450) */
+ /** @name PalletAppPromotionError (453) */
interface PalletAppPromotionError extends Enum {
readonly isAdminNotSet: boolean;
readonly isNoPermission: boolean;
@@ -3765,7 +3769,7 @@
readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
}
- /** @name PalletForeignAssetsModuleError (451) */
+ /** @name PalletForeignAssetsModuleError (454) */
interface PalletForeignAssetsModuleError extends Enum {
readonly isBadLocation: boolean;
readonly isMultiLocationExisted: boolean;
@@ -3774,7 +3778,7 @@
readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
}
- /** @name PalletEvmError (453) */
+ /** @name PalletEvmError (456) */
interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -3789,7 +3793,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';
}
- /** @name FpRpcTransactionStatus (456) */
+ /** @name FpRpcTransactionStatus (459) */
interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -3800,10 +3804,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (458) */
+ /** @name EthbloomBloom (461) */
interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (460) */
+ /** @name EthereumReceiptReceiptV3 (463) */
interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3814,7 +3818,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (461) */
+ /** @name EthereumReceiptEip658ReceiptData (464) */
interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -3822,14 +3826,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (462) */
+ /** @name EthereumBlock (465) */
interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (463) */
+ /** @name EthereumHeader (466) */
interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -3848,24 +3852,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (464) */
+ /** @name EthereumTypesHashH64 (467) */
interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (469) */
+ /** @name PalletEthereumError (472) */
interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (470) */
+ /** @name PalletEvmCoderSubstrateError (473) */
interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (471) */
+ /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (474) */
interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3875,7 +3879,7 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (472) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (475) */
interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -3883,7 +3887,7 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (478) */
+ /** @name PalletEvmContractHelpersError (481) */
interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly isNoPendingSponsor: boolean;
@@ -3891,7 +3895,7 @@
readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
}
- /** @name PalletEvmMigrationError (479) */
+ /** @name PalletEvmMigrationError (482) */
interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
@@ -3899,17 +3903,17 @@
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
}
- /** @name PalletMaintenanceError (480) */
+ /** @name PalletMaintenanceError (483) */
type PalletMaintenanceError = Null;
- /** @name PalletTestUtilsError (481) */
+ /** @name PalletTestUtilsError (484) */
interface PalletTestUtilsError extends Enum {
readonly isTestPalletDisabled: boolean;
readonly isTriggerRollback: boolean;
readonly type: 'TestPalletDisabled' | 'TriggerRollback';
}
- /** @name SpRuntimeMultiSignature (483) */
+ /** @name SpRuntimeMultiSignature (486) */
interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -3920,40 +3924,40 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (484) */
+ /** @name SpCoreEd25519Signature (487) */
interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (486) */
+ /** @name SpCoreSr25519Signature (489) */
interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (487) */
+ /** @name SpCoreEcdsaSignature (490) */
interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (490) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (493) */
type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckTxVersion (491) */
+ /** @name FrameSystemExtensionsCheckTxVersion (494) */
type FrameSystemExtensionsCheckTxVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (492) */
+ /** @name FrameSystemExtensionsCheckGenesis (495) */
type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (495) */
+ /** @name FrameSystemExtensionsCheckNonce (498) */
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (496) */
+ /** @name FrameSystemExtensionsCheckWeight (499) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (497) */
+ /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (500) */
type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (498) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (501) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (499) */
+ /** @name OpalRuntimeRuntime (502) */
type OpalRuntimeRuntime = Null;
- /** @name PalletEthereumFakeTransactionFinalizer (500) */
+ /** @name PalletEthereumFakeTransactionFinalizer (503) */
type PalletEthereumFakeTransactionFinalizer = Null;
} // declare module