difftreelog
build regenerate types
in: master
7 files changed
tests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth30 };30 };31 common: {31 common: {32 collectionAdminsLimit: u32 & AugmentedConst<ApiType>;32 collectionAdminsLimit: u32 & AugmentedConst<ApiType>;33 collectionCreationPrice: u128 & AugmentedConst<ApiType>;33 /**34 /**34 * Generic const35 * Generic const35 **/36 **/135 * Percentage of spare funds (if any) that are burnt per spend period.136 * Percentage of spare funds (if any) that are burnt per spend period.136 **/137 **/137 burn: Permill & AugmentedConst<ApiType>;138 burn: Permill & AugmentedConst<ApiType>;138 /**139 /**139 * The maximum number of approvals that can wait in the spending queue.140 * The maximum number of approvals that can wait in the spending queue.140 **/141 * 142 * NOTE: This parameter is also used within the Bounties Pallet extension if enabled.143 **/141 maxApprovals: u32 & AugmentedConst<ApiType>;144 maxApprovals: u32 & AugmentedConst<ApiType>;142 /**145 /**143 * The treasury's pallet id, used for deriving its sovereign account ID.146 * The treasury's pallet id, used for deriving its sovereign account ID.tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth11declare module '@polkadot/api-base/types/storage' {11declare module '@polkadot/api-base/types/storage' {12 export interface AugmentedQueries<ApiType extends ApiTypes> {12 export interface AugmentedQueries<ApiType extends ApiTypes> {13 balances: {13 balances: {14 /**14 /**15 * The balance of an account.15 * The Balances pallet example of storing the balance of an account.16 * 16 * 17 * NOTE: This is only used in the case that this pallet is used to store balances.17 * # Example18 **/18 * 19 * ```nocompile20 * impl pallet_balances::Config for Runtime {21 * type AccountStore = StorageMapShim<Self::Account<Runtime>, frame_system::Provider<Runtime>, AccountId, Self::AccountData<Balance>>22 * }23 * ```24 * 25 * You can also store the balance of an account in the `System` pallet.26 * 27 * # Example28 * 29 * ```nocompile30 * impl pallet_balances::Config for Runtime {31 * type AccountStore = System32 * }33 * ```34 * 35 * But this comes with tradeoffs, storing account balances in the system pallet stores36 * `frame_system` data alongside the account data contrary to storing account balances in the37 * `Balances` pallet, which uses a `StorageMap` to store balances data only.38 * NOTE: This is only used in the case that this pallet is used to store balances.39 **/19 account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PalletBalancesAccountData>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;40 account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PalletBalancesAccountData>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;20 /**41 /**21 * Any liquidity locks on some account balances.42 * Any liquidity locks on some account balances.587 * The configuration which controls the dynamics of the outbound queue.608 * The configuration which controls the dynamics of the outbound queue.588 **/609 **/589 queueConfig: AugmentedQuery<ApiType, () => Observable<CumulusPalletXcmpQueueQueueConfigData>, []> & QueryableStorageEntry<ApiType, []>;610 queueConfig: AugmentedQuery<ApiType, () => Observable<CumulusPalletXcmpQueueQueueConfigData>, []> & QueryableStorageEntry<ApiType, []>;611 /**612 * Whether or not the XCMP queue is suspended from executing incoming XCMs or not.613 **/614 queueSuspended: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;590 /**615 /**591 * Any signal messages waiting to be sent.616 * Any signal messages waiting to be sent.592 **/617 **/tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth423 * # </weight>423 * # </weight>424 **/424 **/425 remark: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;425 remark: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;426 /**426 /**427 * Make some on-chain remark and emit event.427 * Make some on-chain remark and emit event.428 * 428 **/429 * # <weight>430 * - `O(b)` where b is the length of the remark.431 * - 1 event.432 * # </weight>433 **/434 remarkWithEvent: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;429 remarkWithEvent: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;435 /**430 /**436 * Set the new runtime code.431 * Set the new runtime code.981 [key: string]: SubmittableExtrinsicFunction<ApiType>;976 [key: string]: SubmittableExtrinsicFunction<ApiType>;982 };977 };983 xcmpQueue: {978 xcmpQueue: {979 /**980 * Resumes all XCM executions for the XCMP queue.981 * 982 * Note that this function doesn't change the status of the in/out bound channels.983 * 984 * - `origin`: Must pass `ControllerOrigin`.985 **/986 resumeXcmExecution: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;984 /**987 /**985 * Services a single overweight XCM.988 * Services a single overweight XCM.986 * 989 * 997 * - `OverweightServiced`: On success.1000 * - `OverweightServiced`: On success.998 **/1001 **/999 serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;1002 serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;1003 /**1004 * Suspends all XCM executions for the XCMP queue, regardless of the sender's origin.1005 * 1006 * - `origin`: Must pass `ControllerOrigin`.1007 **/1008 suspendXcmExecution: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;1009 /**1010 * Overwrites the number of pages of messages which must be in the queue after which we drop any further1011 * messages from the channel.1012 * 1013 * - `origin`: Must pass `Root`.1014 * - `new`: Desired value for `QueueConfigData.drop_threshold`1015 **/1016 updateDropThreshold: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;1017 /**1018 * Overwrites the number of pages of messages which the queue must be reduced to before it signals that1019 * message sending may recommence after it has been suspended.1020 * 1021 * - `origin`: Must pass `Root`.1022 * - `new`: Desired value for `QueueConfigData.resume_threshold`1023 **/1024 updateResumeThreshold: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;1025 /**1026 * Overwrites the number of pages of messages which must be in the queue for the other side to be told to1027 * suspend their sending.1028 * 1029 * - `origin`: Must pass `Root`.1030 * - `new`: Desired value for `QueueConfigData.suspend_value`1031 **/1032 updateSuspendThreshold: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;1033 /**1034 * Overwrites the amount of remaining weight under which we stop processing messages.1035 * 1036 * - `origin`: Must pass `Root`.1037 * - `new`: Desired value for `QueueConfigData.threshold_weight`1038 **/1039 updateThresholdWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;1040 /**1041 * Overwrites the speed to which the available weight approaches the maximum weight.1042 * A lower number results in a faster progression. A value of 1 makes the entire weight available initially.1043 * 1044 * - `origin`: Must pass `Root`.1045 * - `new`: Desired value for `QueueConfigData.weight_restrict_decay`.1046 **/1047 updateWeightRestrictDecay: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;1048 /**1049 * Overwrite the maximum amount of weight any individual message may consume.1050 * Messages above this weight go into the overweight queue and may only be serviced explicitly.1051 * 1052 * - `origin`: Must pass `Root`.1053 * - `new`: Desired value for `QueueConfigData.xcmp_max_individual_weight`.1054 **/1055 updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;1000 /**1056 /**1001 * Generic tx1057 * Generic tx1002 **/1058 **/tests/src/interfaces/augment-types.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */2/* eslint-disable */334import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, 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, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonAccountBasicCrossAccountIdRepr, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV1AbridgedHostConfiguration, PolkadotPrimitivesV1AbridgedHrmpChannel, PolkadotPrimitivesV1PersistedValidationData, PolkadotPrimitivesV1UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpTrieStorageProof, SpVersionRuntimeVersion, UniqueRuntimeRuntime, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateNftData, UpDataStructsCreateReFungibleData, UpDataStructsMetaUpdatePermission, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, 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, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './unique';4import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, 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, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonAccountBasicCrossAccountIdRepr, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV1AbridgedHostConfiguration, PolkadotPrimitivesV1AbridgedHrmpChannel, PolkadotPrimitivesV1PersistedValidationData, PolkadotPrimitivesV1UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpTrieStorageProof, SpVersionRuntimeVersion, UniqueRuntimeRuntime, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateNftData, UpDataStructsCreateReFungibleData, UpDataStructsMetaUpdatePermission, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, 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, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './unique';5import type { Data, StorageKey } from '@polkadot/types';5import type { Data, StorageKey } from '@polkadot/types';6import type { BitVec, Bool, Bytes, I128, I16, I256, I32, I64, I8, Json, Null, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';6import type { BitVec, Bool, Bytes, I128, I16, I256, I32, I64, I8, Json, Null, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';7import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';7import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';18import type { StatementKind } from '@polkadot/types/interfaces/claims';18import type { StatementKind } from '@polkadot/types/interfaces/claims';19import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';19import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';20import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';20import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';21import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultErr, ContractExecResultErrModule, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, 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';21import type { AliveContractInfo, CodeHash, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultErr, ContractExecResultErrModule, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateReturnValue, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';22import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, 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, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';22import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, 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, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';23import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';23import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';24import type { ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';24import type { ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';198 ClassMetadata: ClassMetadata;198 ClassMetadata: ClassMetadata;199 CodecHash: CodecHash;199 CodecHash: CodecHash;200 CodeHash: CodeHash;200 CodeHash: CodeHash;201 CodeSource: CodeSource;202 CodeUploadRequest: CodeUploadRequest;201 CodeUploadRequest: CodeUploadRequest;203 CodeUploadResult: CodeUploadResult;202 CodeUploadResult: CodeUploadResult;204 CodeUploadResultValue: CodeUploadResultValue;203 CodeUploadResultValue: CodeUploadResultValue;251 ContractInfo: ContractInfo;250 ContractInfo: ContractInfo;252 ContractInstantiateResult: ContractInstantiateResult;251 ContractInstantiateResult: ContractInstantiateResult;253 ContractInstantiateResultTo267: ContractInstantiateResultTo267;252 ContractInstantiateResultTo267: ContractInstantiateResultTo267;254 ContractInstantiateResultTo299: ContractInstantiateResultTo299;255 ContractLayoutArray: ContractLayoutArray;253 ContractLayoutArray: ContractLayoutArray;256 ContractLayoutCell: ContractLayoutCell;254 ContractLayoutCell: ContractLayoutCell;257 ContractLayoutEnum: ContractLayoutEnum;255 ContractLayoutEnum: ContractLayoutEnum;593 InstanceId: InstanceId;591 InstanceId: InstanceId;594 InstanceMetadata: InstanceMetadata;592 InstanceMetadata: InstanceMetadata;595 InstantiateRequest: InstantiateRequest;593 InstantiateRequest: InstantiateRequest;596 InstantiateRequestV1: InstantiateRequestV1;597 InstantiateRequestV2: InstantiateRequestV2;598 InstantiateReturnValue: InstantiateReturnValue;594 InstantiateReturnValue: InstantiateReturnValue;599 InstantiateReturnValueOk: InstantiateReturnValueOk;600 InstantiateReturnValueTo267: InstantiateReturnValueTo267;595 InstantiateReturnValueTo267: InstantiateReturnValueTo267;601 InstructionV2: InstructionV2;596 InstructionV2: InstructionV2;602 InstructionWeights: InstructionWeights;597 InstructionWeights: InstructionWeights;1054 SpRuntimeDigest: SpRuntimeDigest;1049 SpRuntimeDigest: SpRuntimeDigest;1055 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1050 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1056 SpRuntimeDispatchError: SpRuntimeDispatchError;1051 SpRuntimeDispatchError: SpRuntimeDispatchError;1052 SpRuntimeModuleError: SpRuntimeModuleError;1057 SpRuntimeMultiSignature: SpRuntimeMultiSignature;1053 SpRuntimeMultiSignature: SpRuntimeMultiSignature;1058 SpRuntimeTokenError: SpRuntimeTokenError;1054 SpRuntimeTokenError: SpRuntimeTokenError;1059 SpTrieStorageProof: SpTrieStorageProof;1055 SpTrieStorageProof: SpTrieStorageProof;tests/src/interfaces/lookup.tsdiffbeforeafterboth259 PalletBalancesError: {259 PalletBalancesError: {260 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']260 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']261 },261 },262 /**262 /**263 * Lookup60: pallet_timestamp::pallet::Call<T>263 * Lookup61: pallet_timestamp::pallet::Call<T>264 **/264 **/265 PalletTimestampCall: {265 PalletTimestampCall: {266 _enum: {266 _enum: {267 set: {267 set: {268 now: 'Compact<u64>'268 now: 'Compact<u64>'269 }269 }270 }270 }271 },271 },272 /**272 /**273 * Lookup63: pallet_transaction_payment::Releases273 * Lookup64: pallet_transaction_payment::Releases274 **/274 **/275 PalletTransactionPaymentReleases: {275 PalletTransactionPaymentReleases: {276 _enum: ['V1Ancient', 'V2']276 _enum: ['V1Ancient', 'V2']277 },277 },278 /**278 /**279 * Lookup65: frame_support::weights::WeightToFeeCoefficient<Balance>279 * Lookup66: frame_support::weights::WeightToFeeCoefficient<Balance>280 **/280 **/281 FrameSupportWeightsWeightToFeeCoefficient: {281 FrameSupportWeightsWeightToFeeCoefficient: {282 coeffInteger: 'u128',282 coeffInteger: 'u128',283 coeffFrac: 'Perbill',283 coeffFrac: 'Perbill',284 negative: 'bool',284 negative: 'bool',285 degree: 'u8'285 degree: 'u8'286 },286 },287 /**287 /**288 * Lookup67: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>288 * Lookup68: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>289 **/289 **/290 PalletTreasuryProposal: {290 PalletTreasuryProposal: {291 proposer: 'AccountId32',291 proposer: 'AccountId32',292 value: 'u128',292 value: 'u128',293 beneficiary: 'AccountId32',293 beneficiary: 'AccountId32',294 bond: 'u128'294 bond: 'u128'295 },295 },296 /**296 /**297 * Lookup70: pallet_treasury::pallet::Call<T, I>297 * Lookup71: pallet_treasury::pallet::Call<T, I>298 **/298 **/299 PalletTreasuryCall: {299 PalletTreasuryCall: {300 _enum: {300 _enum: {301 propose_spend: {301 propose_spend: {310 }310 }311 }311 }312 },312 },313 /**313 /**314 * Lookup72: pallet_treasury::pallet::Event<T, I>314 * Lookup73: pallet_treasury::pallet::Event<T, I>315 **/315 **/316 PalletTreasuryEvent: {316 PalletTreasuryEvent: {317 _enum: {317 _enum: {318 Proposed: {318 Proposed: {341 }341 }342 }342 }343 },343 },344 /**344 /**345 * Lookup75: frame_support::PalletId345 * Lookup76: frame_support::PalletId346 **/346 **/347 FrameSupportPalletId: '[u8;8]',347 FrameSupportPalletId: '[u8;8]',348 /**348 /**349 * Lookup76: pallet_treasury::pallet::Error<T, I>349 * Lookup77: pallet_treasury::pallet::Error<T, I>350 **/350 **/351 PalletTreasuryError: {351 PalletTreasuryError: {352 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals']352 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals']353 },353 },354 /**354 /**355 * Lookup77: pallet_sudo::pallet::Call<T>355 * Lookup78: pallet_sudo::pallet::Call<T>356 **/356 **/357 PalletSudoCall: {357 PalletSudoCall: {358 _enum: {358 _enum: {359 sudo: {359 sudo: {375 }375 }376 }376 }377 },377 },378 /**378 /**379 * Lookup79: frame_system::pallet::Call<T>379 * Lookup80: frame_system::pallet::Call<T>380 **/380 **/381 FrameSystemCall: {381 FrameSystemCall: {382 _enum: {382 _enum: {383 fill_block: {383 fill_block: {413 }413 }414 }414 }415 },415 },416 /**416 /**417 * Lookup82: orml_vesting::module::Call<T>417 * Lookup83: orml_vesting::module::Call<T>418 **/418 **/419 OrmlVestingModuleCall: {419 OrmlVestingModuleCall: {420 _enum: {420 _enum: {421 claim: 'Null',421 claim: 'Null',432 }432 }433 }433 }434 },434 },435 /**435 /**436 * Lookup83: orml_vesting::VestingSchedule<BlockNumber, Balance>436 * Lookup84: orml_vesting::VestingSchedule<BlockNumber, Balance>437 **/437 **/438 OrmlVestingVestingSchedule: {438 OrmlVestingVestingSchedule: {439 start: 'u32',439 start: 'u32',440 period: 'u32',440 period: 'u32',441 periodCount: 'u32',441 periodCount: 'u32',442 perPeriod: 'Compact<u128>'442 perPeriod: 'Compact<u128>'443 },443 },444 /**444 /**445 * Lookup85: cumulus_pallet_xcmp_queue::pallet::Call<T>445 * Lookup86: cumulus_pallet_xcmp_queue::pallet::Call<T>446 **/446 **/447 CumulusPalletXcmpQueueCall: {447 CumulusPalletXcmpQueueCall: {448 _enum: {448 _enum: {449 service_overweight: {449 service_overweight: {450 index: 'u64',450 index: 'u64',451 weightLimit: 'u64'451 weightLimit: 'u64',452 }452 },453 suspend_xcm_execution: 'Null',454 resume_xcm_execution: 'Null',455 update_suspend_threshold: {456 _alias: {457 new_: 'new',458 },459 new_: 'u32',460 },461 update_drop_threshold: {462 _alias: {463 new_: 'new',464 },465 new_: 'u32',466 },467 update_resume_threshold: {468 _alias: {469 new_: 'new',470 },471 new_: 'u32',472 },473 update_threshold_weight: {474 _alias: {475 new_: 'new',476 },477 new_: 'u64',478 },479 update_weight_restrict_decay: {480 _alias: {481 new_: 'new',482 },483 new_: 'u64',484 },485 update_xcmp_max_individual_weight: {486 _alias: {487 new_: 'new',488 },489 new_: 'u64'490 }453 }491 }454 },492 },455 /**493 /**456 * Lookup86: pallet_xcm::pallet::Call<T>494 * Lookup87: pallet_xcm::pallet::Call<T>457 **/495 **/458 PalletXcmCall: {496 PalletXcmCall: {459 _enum: {497 _enum: {460 send: {498 send: {506 }544 }507 }545 }508 },546 },509 /**547 /**510 * Lookup87: xcm::VersionedMultiLocation548 * Lookup88: xcm::VersionedMultiLocation511 **/549 **/512 XcmVersionedMultiLocation: {550 XcmVersionedMultiLocation: {513 _enum: {551 _enum: {514 V0: 'XcmV0MultiLocation',552 V0: 'XcmV0MultiLocation',515 V1: 'XcmV1MultiLocation'553 V1: 'XcmV1MultiLocation'516 }554 }517 },555 },518 /**556 /**519 * Lookup88: xcm::v0::multi_location::MultiLocation557 * Lookup89: xcm::v0::multi_location::MultiLocation520 **/558 **/521 XcmV0MultiLocation: {559 XcmV0MultiLocation: {522 _enum: {560 _enum: {523 Null: 'Null',561 Null: 'Null',531 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'569 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'532 }570 }533 },571 },534 /**572 /**535 * Lookup89: xcm::v0::junction::Junction573 * Lookup90: xcm::v0::junction::Junction536 **/574 **/537 XcmV0Junction: {575 XcmV0Junction: {538 _enum: {576 _enum: {539 Parent: 'Null',577 Parent: 'Null',560 }598 }561 }599 }562 },600 },563 /**601 /**564 * Lookup90: xcm::v0::junction::NetworkId602 * Lookup91: xcm::v0::junction::NetworkId565 **/603 **/566 XcmV0JunctionNetworkId: {604 XcmV0JunctionNetworkId: {567 _enum: {605 _enum: {568 Any: 'Null',606 Any: 'Null',571 Kusama: 'Null'609 Kusama: 'Null'572 }610 }573 },611 },574 /**612 /**575 * Lookup91: xcm::v0::junction::BodyId613 * Lookup92: xcm::v0::junction::BodyId576 **/614 **/577 XcmV0JunctionBodyId: {615 XcmV0JunctionBodyId: {578 _enum: {616 _enum: {579 Unit: 'Null',617 Unit: 'Null',585 Judicial: 'Null'623 Judicial: 'Null'586 }624 }587 },625 },588 /**626 /**589 * Lookup92: xcm::v0::junction::BodyPart627 * Lookup93: xcm::v0::junction::BodyPart590 **/628 **/591 XcmV0JunctionBodyPart: {629 XcmV0JunctionBodyPart: {592 _enum: {630 _enum: {593 Voice: 'Null',631 Voice: 'Null',608 }646 }609 }647 }610 },648 },611 /**649 /**612 * Lookup93: xcm::v1::multilocation::MultiLocation650 * Lookup94: xcm::v1::multilocation::MultiLocation613 **/651 **/614 XcmV1MultiLocation: {652 XcmV1MultiLocation: {615 parents: 'u8',653 parents: 'u8',616 interior: 'XcmV1MultilocationJunctions'654 interior: 'XcmV1MultilocationJunctions'617 },655 },618 /**656 /**619 * Lookup94: xcm::v1::multilocation::Junctions657 * Lookup95: xcm::v1::multilocation::Junctions620 **/658 **/621 XcmV1MultilocationJunctions: {659 XcmV1MultilocationJunctions: {622 _enum: {660 _enum: {623 Here: 'Null',661 Here: 'Null',631 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'669 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'632 }670 }633 },671 },634 /**672 /**635 * Lookup95: xcm::v1::junction::Junction673 * Lookup96: xcm::v1::junction::Junction636 **/674 **/637 XcmV1Junction: {675 XcmV1Junction: {638 _enum: {676 _enum: {639 Parachain: 'Compact<u32>',677 Parachain: 'Compact<u32>',659 }697 }660 }698 }661 },699 },662 /**700 /**663 * Lookup96: xcm::VersionedXcm<Call>701 * Lookup97: xcm::VersionedXcm<Call>664 **/702 **/665 XcmVersionedXcm: {703 XcmVersionedXcm: {666 _enum: {704 _enum: {667 V0: 'XcmV0Xcm',705 V0: 'XcmV0Xcm',668 V1: 'XcmV1Xcm',706 V1: 'XcmV1Xcm',669 V2: 'XcmV2Xcm'707 V2: 'XcmV2Xcm'670 }708 }671 },709 },672 /**710 /**673 * Lookup97: xcm::v0::Xcm<Call>711 * Lookup98: xcm::v0::Xcm<Call>674 **/712 **/675 XcmV0Xcm: {713 XcmV0Xcm: {676 _enum: {714 _enum: {677 WithdrawAsset: {715 WithdrawAsset: {723 }761 }724 }762 }725 },763 },726 /**764 /**727 * Lookup99: xcm::v0::multi_asset::MultiAsset765 * Lookup100: xcm::v0::multi_asset::MultiAsset728 **/766 **/729 XcmV0MultiAsset: {767 XcmV0MultiAsset: {730 _enum: {768 _enum: {731 None: 'Null',769 None: 'Null',762 }800 }763 }801 }764 },802 },765 /**803 /**766 * Lookup100: xcm::v1::multiasset::AssetInstance804 * Lookup101: xcm::v1::multiasset::AssetInstance767 **/805 **/768 XcmV1MultiassetAssetInstance: {806 XcmV1MultiassetAssetInstance: {769 _enum: {807 _enum: {770 Undefined: 'Null',808 Undefined: 'Null',776 Blob: 'Bytes'814 Blob: 'Bytes'777 }815 }778 },816 },779 /**817 /**780 * Lookup104: xcm::v0::order::Order<Call>818 * Lookup105: xcm::v0::order::Order<Call>781 **/819 **/782 XcmV0Order: {820 XcmV0Order: {783 _enum: {821 _enum: {784 Null: 'Null',822 Null: 'Null',819 }857 }820 }858 }821 },859 },822 /**860 /**823 * Lookup106: xcm::v0::Response861 * Lookup107: xcm::v0::Response824 **/862 **/825 XcmV0Response: {863 XcmV0Response: {826 _enum: {864 _enum: {827 Assets: 'Vec<XcmV0MultiAsset>'865 Assets: 'Vec<XcmV0MultiAsset>'828 }866 }829 },867 },830 /**868 /**831 * Lookup107: xcm::v0::OriginKind869 * Lookup108: xcm::v0::OriginKind832 **/870 **/833 XcmV0OriginKind: {871 XcmV0OriginKind: {834 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']872 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']835 },873 },836 /**874 /**837 * Lookup108: xcm::double_encoded::DoubleEncoded<T>875 * Lookup109: xcm::double_encoded::DoubleEncoded<T>838 **/876 **/839 XcmDoubleEncoded: {877 XcmDoubleEncoded: {840 encoded: 'Bytes'878 encoded: 'Bytes'841 },879 },842 /**880 /**843 * Lookup109: xcm::v1::Xcm<Call>881 * Lookup110: xcm::v1::Xcm<Call>844 **/882 **/845 XcmV1Xcm: {883 XcmV1Xcm: {846 _enum: {884 _enum: {847 WithdrawAsset: {885 WithdrawAsset: {898 UnsubscribeVersion: 'Null'936 UnsubscribeVersion: 'Null'899 }937 }900 },938 },901 /**939 /**902 * Lookup110: xcm::v1::multiasset::MultiAssets940 * Lookup111: xcm::v1::multiasset::MultiAssets903 **/941 **/904 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',942 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',905 /**943 /**906 * Lookup112: xcm::v1::multiasset::MultiAsset944 * Lookup113: xcm::v1::multiasset::MultiAsset907 **/945 **/908 XcmV1MultiAsset: {946 XcmV1MultiAsset: {909 id: 'XcmV1MultiassetAssetId',947 id: 'XcmV1MultiassetAssetId',910 fun: 'XcmV1MultiassetFungibility'948 fun: 'XcmV1MultiassetFungibility'911 },949 },912 /**950 /**913 * Lookup113: xcm::v1::multiasset::AssetId951 * Lookup114: xcm::v1::multiasset::AssetId914 **/952 **/915 XcmV1MultiassetAssetId: {953 XcmV1MultiassetAssetId: {916 _enum: {954 _enum: {917 Concrete: 'XcmV1MultiLocation',955 Concrete: 'XcmV1MultiLocation',918 Abstract: 'Bytes'956 Abstract: 'Bytes'919 }957 }920 },958 },921 /**959 /**922 * Lookup114: xcm::v1::multiasset::Fungibility960 * Lookup115: xcm::v1::multiasset::Fungibility923 **/961 **/924 XcmV1MultiassetFungibility: {962 XcmV1MultiassetFungibility: {925 _enum: {963 _enum: {926 Fungible: 'Compact<u128>',964 Fungible: 'Compact<u128>',927 NonFungible: 'XcmV1MultiassetAssetInstance'965 NonFungible: 'XcmV1MultiassetAssetInstance'928 }966 }929 },967 },930 /**968 /**931 * Lookup116: xcm::v1::order::Order<Call>969 * Lookup117: xcm::v1::order::Order<Call>932 **/970 **/933 XcmV1Order: {971 XcmV1Order: {934 _enum: {972 _enum: {935 Noop: 'Null',973 Noop: 'Null',972 }1010 }973 }1011 }974 },1012 },975 /**1013 /**976 * Lookup117: xcm::v1::multiasset::MultiAssetFilter1014 * Lookup118: xcm::v1::multiasset::MultiAssetFilter977 **/1015 **/978 XcmV1MultiassetMultiAssetFilter: {1016 XcmV1MultiassetMultiAssetFilter: {979 _enum: {1017 _enum: {980 Definite: 'XcmV1MultiassetMultiAssets',1018 Definite: 'XcmV1MultiassetMultiAssets',981 Wild: 'XcmV1MultiassetWildMultiAsset'1019 Wild: 'XcmV1MultiassetWildMultiAsset'982 }1020 }983 },1021 },984 /**1022 /**985 * Lookup118: xcm::v1::multiasset::WildMultiAsset1023 * Lookup119: xcm::v1::multiasset::WildMultiAsset986 **/1024 **/987 XcmV1MultiassetWildMultiAsset: {1025 XcmV1MultiassetWildMultiAsset: {988 _enum: {1026 _enum: {989 All: 'Null',1027 All: 'Null',993 }1031 }994 }1032 }995 },1033 },996 /**1034 /**997 * Lookup119: xcm::v1::multiasset::WildFungibility1035 * Lookup120: xcm::v1::multiasset::WildFungibility998 **/1036 **/999 XcmV1MultiassetWildFungibility: {1037 XcmV1MultiassetWildFungibility: {1000 _enum: ['Fungible', 'NonFungible']1038 _enum: ['Fungible', 'NonFungible']1001 },1039 },1002 /**1040 /**1003 * Lookup121: xcm::v1::Response1041 * Lookup122: xcm::v1::Response1004 **/1042 **/1005 XcmV1Response: {1043 XcmV1Response: {1006 _enum: {1044 _enum: {1007 Assets: 'XcmV1MultiassetMultiAssets',1045 Assets: 'XcmV1MultiassetMultiAssets',1008 Version: 'u32'1046 Version: 'u32'1009 }1047 }1010 },1048 },1011 /**1049 /**1012 * Lookup122: xcm::v2::Xcm<Call>1050 * Lookup123: xcm::v2::Xcm<Call>1013 **/1051 **/1014 XcmV2Xcm: 'Vec<XcmV2Instruction>',1052 XcmV2Xcm: 'Vec<XcmV2Instruction>',1015 /**1053 /**1016 * Lookup124: xcm::v2::Instruction<Call>1054 * Lookup125: xcm::v2::Instruction<Call>1017 **/1055 **/1018 XcmV2Instruction: {1056 XcmV2Instruction: {1019 _enum: {1057 _enum: {1020 WithdrawAsset: 'XcmV1MultiassetMultiAssets',1058 WithdrawAsset: 'XcmV1MultiassetMultiAssets',1110 UnsubscribeVersion: 'Null'1148 UnsubscribeVersion: 'Null'1111 }1149 }1112 },1150 },1113 /**1151 /**1114 * Lookup125: xcm::v2::Response1152 * Lookup126: xcm::v2::Response1115 **/1153 **/1116 XcmV2Response: {1154 XcmV2Response: {1117 _enum: {1155 _enum: {1118 Null: 'Null',1156 Null: 'Null',1121 Version: 'u32'1159 Version: 'u32'1122 }1160 }1123 },1161 },1124 /**1162 /**1125 * Lookup128: xcm::v2::traits::Error1163 * Lookup129: xcm::v2::traits::Error1126 **/1164 **/1127 XcmV2TraitsError: {1165 XcmV2TraitsError: {1128 _enum: {1166 _enum: {1129 Overflow: 'Null',1167 Overflow: 'Null',1154 WeightNotComputable: 'Null'1192 WeightNotComputable: 'Null'1155 }1193 }1156 },1194 },1157 /**1195 /**1158 * Lookup129: xcm::v2::WeightLimit1196 * Lookup130: xcm::v2::WeightLimit1159 **/1197 **/1160 XcmV2WeightLimit: {1198 XcmV2WeightLimit: {1161 _enum: {1199 _enum: {1162 Unlimited: 'Null',1200 Unlimited: 'Null',1163 Limited: 'Compact<u64>'1201 Limited: 'Compact<u64>'1164 }1202 }1165 },1203 },1166 /**1204 /**1167 * Lookup130: xcm::VersionedMultiAssets1205 * Lookup131: xcm::VersionedMultiAssets1168 **/1206 **/1169 XcmVersionedMultiAssets: {1207 XcmVersionedMultiAssets: {1170 _enum: {1208 _enum: {1171 V0: 'Vec<XcmV0MultiAsset>',1209 V0: 'Vec<XcmV0MultiAsset>',1172 V1: 'XcmV1MultiassetMultiAssets'1210 V1: 'XcmV1MultiassetMultiAssets'1173 }1211 }1174 },1212 },1175 /**1213 /**1176 * Lookup145: cumulus_pallet_xcm::pallet::Call<T>1214 * Lookup146: cumulus_pallet_xcm::pallet::Call<T>1177 **/1215 **/1178 CumulusPalletXcmCall: 'Null',1216 CumulusPalletXcmCall: 'Null',1179 /**1217 /**1180 * Lookup146: cumulus_pallet_dmp_queue::pallet::Call<T>1218 * Lookup147: cumulus_pallet_dmp_queue::pallet::Call<T>1181 **/1219 **/1182 CumulusPalletDmpQueueCall: {1220 CumulusPalletDmpQueueCall: {1183 _enum: {1221 _enum: {1184 service_overweight: {1222 service_overweight: {1187 }1225 }1188 }1226 }1189 },1227 },1190 /**1228 /**1191 * Lookup147: pallet_inflation::pallet::Call<T>1229 * Lookup148: pallet_inflation::pallet::Call<T>1192 **/1230 **/1193 PalletInflationCall: {1231 PalletInflationCall: {1194 _enum: {1232 _enum: {1195 start_inflation: {1233 start_inflation: {1196 inflationStartRelayBlock: 'u32'1234 inflationStartRelayBlock: 'u32'1197 }1235 }1198 }1236 }1199 },1237 },1200 /**1238 /**1201 * Lookup148: pallet_unique::Call<T>1239 * Lookup149: pallet_unique::Call<T>1202 **/1240 **/1203 PalletUniqueCall: {1241 PalletUniqueCall: {1204 _enum: {1242 _enum: {1205 create_collection: {1243 create_collection: {1327 }1365 }1328 }1366 }1329 },1367 },1330 /**1368 /**1331 * Lookup154: up_data_structs::CollectionMode1369 * Lookup155: up_data_structs::CollectionMode1332 **/1370 **/1333 UpDataStructsCollectionMode: {1371 UpDataStructsCollectionMode: {1334 _enum: {1372 _enum: {1335 NFT: 'Null',1373 NFT: 'Null',1336 Fungible: 'u8',1374 Fungible: 'u8',1337 ReFungible: 'Null'1375 ReFungible: 'Null'1338 }1376 }1339 },1377 },1340 /**1378 /**1341 * Lookup155: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>1379 * Lookup156: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>1342 **/1380 **/1343 UpDataStructsCreateCollectionData: {1381 UpDataStructsCreateCollectionData: {1344 mode: 'UpDataStructsCollectionMode',1382 mode: 'UpDataStructsCollectionMode',1345 access: 'Option<UpDataStructsAccessMode>',1383 access: 'Option<UpDataStructsAccessMode>',1354 constOnChainSchema: 'Bytes',1392 constOnChainSchema: 'Bytes',1355 metaUpdatePermission: 'Option<UpDataStructsMetaUpdatePermission>'1393 metaUpdatePermission: 'Option<UpDataStructsMetaUpdatePermission>'1356 },1394 },1357 /**1395 /**1358 * Lookup157: up_data_structs::AccessMode1396 * Lookup158: up_data_structs::AccessMode1359 **/1397 **/1360 UpDataStructsAccessMode: {1398 UpDataStructsAccessMode: {1361 _enum: ['Normal', 'AllowList']1399 _enum: ['Normal', 'AllowList']1362 },1400 },1363 /**1401 /**1364 * Lookup160: up_data_structs::SchemaVersion1402 * Lookup161: up_data_structs::SchemaVersion1365 **/1403 **/1366 UpDataStructsSchemaVersion: {1404 UpDataStructsSchemaVersion: {1367 _enum: ['ImageURL', 'Unique']1405 _enum: ['ImageURL', 'Unique']1368 },1406 },1369 /**1407 /**1370 * Lookup163: up_data_structs::CollectionLimits1408 * Lookup164: up_data_structs::CollectionLimits1371 **/1409 **/1372 UpDataStructsCollectionLimits: {1410 UpDataStructsCollectionLimits: {1373 accountTokenOwnershipLimit: 'Option<u32>',1411 accountTokenOwnershipLimit: 'Option<u32>',1374 sponsoredDataSize: 'Option<u32>',1412 sponsoredDataSize: 'Option<u32>',1375 sponsoredDataRateLimit: 'Option<Option<u32>>',1413 sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',1376 tokenLimit: 'Option<u32>',1414 tokenLimit: 'Option<u32>',1377 sponsorTransferTimeout: 'Option<u32>',1415 sponsorTransferTimeout: 'Option<u32>',1378 sponsorApproveTimeout: 'Option<u32>',1416 sponsorApproveTimeout: 'Option<u32>',1379 ownerCanTransfer: 'Option<bool>',1417 ownerCanTransfer: 'Option<bool>',1380 ownerCanDestroy: 'Option<bool>',1418 ownerCanDestroy: 'Option<bool>',1381 transfersEnabled: 'Option<bool>'1419 transfersEnabled: 'Option<bool>'1382 },1420 },1421 /**1422 * Lookup166: up_data_structs::SponsoringRateLimit1423 **/1424 UpDataStructsSponsoringRateLimit: {1425 _enum: {1426 SponsoringDisabled: 'Null',1427 Blocks: 'u32'1428 }1429 },1383 /**1430 /**1384 * Lookup169: up_data_structs::MetaUpdatePermission1431 * Lookup170: up_data_structs::MetaUpdatePermission1385 **/1432 **/1386 UpDataStructsMetaUpdatePermission: {1433 UpDataStructsMetaUpdatePermission: {1387 _enum: ['ItemOwner', 'Admin', 'None']1434 _enum: ['ItemOwner', 'Admin', 'None']1388 },1435 },1389 /**1436 /**1390 * Lookup171: pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1437 * Lookup172: pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1391 **/1438 **/1392 PalletCommonAccountBasicCrossAccountIdRepr: {1439 PalletCommonAccountBasicCrossAccountIdRepr: {1393 _enum: {1440 _enum: {1394 Substrate: 'AccountId32',1441 Substrate: 'AccountId32',1395 Ethereum: 'H160'1442 Ethereum: 'H160'1396 }1443 }1397 },1444 },1398 /**1445 /**1399 * Lookup173: up_data_structs::CreateItemData1446 * Lookup174: up_data_structs::CreateItemData1400 **/1447 **/1401 UpDataStructsCreateItemData: {1448 UpDataStructsCreateItemData: {1402 _enum: {1449 _enum: {1403 NFT: 'UpDataStructsCreateNftData',1450 NFT: 'UpDataStructsCreateNftData',1404 Fungible: 'UpDataStructsCreateFungibleData',1451 Fungible: 'UpDataStructsCreateFungibleData',1405 ReFungible: 'UpDataStructsCreateReFungibleData'1452 ReFungible: 'UpDataStructsCreateReFungibleData'1406 }1453 }1407 },1454 },1408 /**1455 /**1409 * Lookup174: up_data_structs::CreateNftData1456 * Lookup175: up_data_structs::CreateNftData1410 **/1457 **/1411 UpDataStructsCreateNftData: {1458 UpDataStructsCreateNftData: {1412 constData: 'Bytes',1459 constData: 'Bytes',1413 variableData: 'Bytes'1460 variableData: 'Bytes'1414 },1461 },1415 /**1462 /**1416 * Lookup176: up_data_structs::CreateFungibleData1463 * Lookup177: up_data_structs::CreateFungibleData1417 **/1464 **/1418 UpDataStructsCreateFungibleData: {1465 UpDataStructsCreateFungibleData: {1419 value: 'u128'1466 value: 'u128'1420 },1467 },1421 /**1468 /**1422 * Lookup177: up_data_structs::CreateReFungibleData1469 * Lookup178: up_data_structs::CreateReFungibleData1423 **/1470 **/1424 UpDataStructsCreateReFungibleData: {1471 UpDataStructsCreateReFungibleData: {1425 constData: 'Bytes',1472 constData: 'Bytes',1426 variableData: 'Bytes',1473 variableData: 'Bytes',1427 pieces: 'u128'1474 pieces: 'u128'1428 },1475 },1429 /**1476 /**1430 * Lookup180: pallet_template_transaction_payment::Call<T>1477 * Lookup181: pallet_template_transaction_payment::Call<T>1431 **/1478 **/1432 PalletTemplateTransactionPaymentCall: 'Null',1479 PalletTemplateTransactionPaymentCall: 'Null',1433 /**1480 /**1434 * Lookup181: pallet_evm::pallet::Call<T>1481 * Lookup182: pallet_evm::pallet::Call<T>1435 **/1482 **/1436 PalletEvmCall: {1483 PalletEvmCall: {1437 _enum: {1484 _enum: {1438 withdraw: {1485 withdraw: {1473 }1520 }1474 }1521 }1475 },1522 },1476 /**1523 /**1477 * Lookup187: pallet_ethereum::pallet::Call<T>1524 * Lookup188: pallet_ethereum::pallet::Call<T>1478 **/1525 **/1479 PalletEthereumCall: {1526 PalletEthereumCall: {1480 _enum: {1527 _enum: {1481 transact: {1528 transact: {1482 transaction: 'EthereumTransactionTransactionV2'1529 transaction: 'EthereumTransactionTransactionV2'1483 }1530 }1484 }1531 }1485 },1532 },1486 /**1533 /**1487 * Lookup188: ethereum::transaction::TransactionV21534 * Lookup189: ethereum::transaction::TransactionV21488 **/1535 **/1489 EthereumTransactionTransactionV2: {1536 EthereumTransactionTransactionV2: {1490 _enum: {1537 _enum: {1491 Legacy: 'EthereumTransactionLegacyTransaction',1538 Legacy: 'EthereumTransactionLegacyTransaction',1492 EIP2930: 'EthereumTransactionEip2930Transaction',1539 EIP2930: 'EthereumTransactionEip2930Transaction',1493 EIP1559: 'EthereumTransactionEip1559Transaction'1540 EIP1559: 'EthereumTransactionEip1559Transaction'1494 }1541 }1495 },1542 },1496 /**1543 /**1497 * Lookup189: ethereum::transaction::LegacyTransaction1544 * Lookup190: ethereum::transaction::LegacyTransaction1498 **/1545 **/1499 EthereumTransactionLegacyTransaction: {1546 EthereumTransactionLegacyTransaction: {1500 nonce: 'U256',1547 nonce: 'U256',1501 gasPrice: 'U256',1548 gasPrice: 'U256',1505 input: 'Bytes',1552 input: 'Bytes',1506 signature: 'EthereumTransactionTransactionSignature'1553 signature: 'EthereumTransactionTransactionSignature'1507 },1554 },1508 /**1555 /**1509 * Lookup190: ethereum::transaction::TransactionAction1556 * Lookup191: ethereum::transaction::TransactionAction1510 **/1557 **/1511 EthereumTransactionTransactionAction: {1558 EthereumTransactionTransactionAction: {1512 _enum: {1559 _enum: {1513 Call: 'H160',1560 Call: 'H160',1514 Create: 'Null'1561 Create: 'Null'1515 }1562 }1516 },1563 },1517 /**1564 /**1518 * Lookup191: ethereum::transaction::TransactionSignature1565 * Lookup192: ethereum::transaction::TransactionSignature1519 **/1566 **/1520 EthereumTransactionTransactionSignature: {1567 EthereumTransactionTransactionSignature: {1521 v: 'u64',1568 v: 'u64',1522 r: 'H256',1569 r: 'H256',1523 s: 'H256'1570 s: 'H256'1524 },1571 },1525 /**1572 /**1526 * Lookup193: ethereum::transaction::EIP2930Transaction1573 * Lookup194: ethereum::transaction::EIP2930Transaction1527 **/1574 **/1528 EthereumTransactionEip2930Transaction: {1575 EthereumTransactionEip2930Transaction: {1529 chainId: 'u64',1576 chainId: 'u64',1530 nonce: 'U256',1577 nonce: 'U256',1538 r: 'H256',1585 r: 'H256',1539 s: 'H256'1586 s: 'H256'1540 },1587 },1541 /**1588 /**1542 * Lookup195: ethereum::transaction::AccessListItem1589 * Lookup196: ethereum::transaction::AccessListItem1543 **/1590 **/1544 EthereumTransactionAccessListItem: {1591 EthereumTransactionAccessListItem: {1545 address: 'H160',1592 address: 'H160',1546 slots: 'Vec<H256>'1593 slots: 'Vec<H256>'1547 },1594 },1548 /**1595 /**1549 * Lookup196: ethereum::transaction::EIP1559Transaction1596 * Lookup197: ethereum::transaction::EIP1559Transaction1550 **/1597 **/1551 EthereumTransactionEip1559Transaction: {1598 EthereumTransactionEip1559Transaction: {1552 chainId: 'u64',1599 chainId: 'u64',1553 nonce: 'U256',1600 nonce: 'U256',1562 r: 'H256',1609 r: 'H256',1563 s: 'H256'1610 s: 'H256'1564 },1611 },1565 /**1612 /**1566 * Lookup197: pallet_evm_migration::pallet::Call<T>1613 * Lookup198: pallet_evm_migration::pallet::Call<T>1567 **/1614 **/1568 PalletEvmMigrationCall: {1615 PalletEvmMigrationCall: {1569 _enum: {1616 _enum: {1570 begin: {1617 begin: {1580 }1627 }1581 }1628 }1582 },1629 },1583 /**1630 /**1584 * Lookup200: pallet_sudo::pallet::Event<T>1631 * Lookup201: pallet_sudo::pallet::Event<T>1585 **/1632 **/1586 PalletSudoEvent: {1633 PalletSudoEvent: {1587 _enum: {1634 _enum: {1588 Sudid: {1635 Sudid: {1596 }1643 }1597 }1644 }1598 },1645 },1599 /**1646 /**1600 * Lookup202: sp_runtime::DispatchError1647 * Lookup203: sp_runtime::DispatchError1601 **/1648 **/1602 SpRuntimeDispatchError: {1649 SpRuntimeDispatchError: {1603 _enum: {1650 _enum: {1604 Other: 'Null',1651 Other: 'Null',1605 CannotLookup: 'Null',1652 CannotLookup: 'Null',1606 BadOrigin: 'Null',1653 BadOrigin: 'Null',1607 Module: {1654 Module: 'SpRuntimeModuleError',1608 index: 'u8',1609 error: 'u8',1610 },1611 ConsumerRemaining: 'Null',1655 ConsumerRemaining: 'Null',1612 NoProviders: 'Null',1656 NoProviders: 'Null',1613 TooManyConsumers: 'Null',1657 TooManyConsumers: 'Null',1614 Token: 'SpRuntimeTokenError',1658 Token: 'SpRuntimeTokenError',1615 Arithmetic: 'SpRuntimeArithmeticError'1659 Arithmetic: 'SpRuntimeArithmeticError'1616 }1660 }1617 },1661 },1662 /**1663 * Lookup204: sp_runtime::ModuleError1664 **/1665 SpRuntimeModuleError: {1666 index: 'u8',1667 error: 'u8'1668 },1618 /**1669 /**1619 * Lookup203: sp_runtime::TokenError1670 * Lookup205: sp_runtime::TokenError1620 **/1671 **/1621 SpRuntimeTokenError: {1672 SpRuntimeTokenError: {1622 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']1673 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']1623 },1674 },1624 /**1675 /**1625 * Lookup204: sp_runtime::ArithmeticError1676 * Lookup206: sp_runtime::ArithmeticError1626 **/1677 **/1627 SpRuntimeArithmeticError: {1678 SpRuntimeArithmeticError: {1628 _enum: ['Underflow', 'Overflow', 'DivisionByZero']1679 _enum: ['Underflow', 'Overflow', 'DivisionByZero']1629 },1680 },1630 /**1681 /**1631 * Lookup205: pallet_sudo::pallet::Error<T>1682 * Lookup207: pallet_sudo::pallet::Error<T>1632 **/1683 **/1633 PalletSudoError: {1684 PalletSudoError: {1634 _enum: ['RequireSudo']1685 _enum: ['RequireSudo']1635 },1686 },1636 /**1687 /**1637 * Lookup206: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>1688 * Lookup208: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>1638 **/1689 **/1639 FrameSystemAccountInfo: {1690 FrameSystemAccountInfo: {1640 nonce: 'u32',1691 nonce: 'u32',1641 consumers: 'u32',1692 consumers: 'u32',1642 providers: 'u32',1693 providers: 'u32',1643 sufficients: 'u32',1694 sufficients: 'u32',1644 data: 'PalletBalancesAccountData'1695 data: 'PalletBalancesAccountData'1645 },1696 },1646 /**1697 /**1647 * Lookup207: frame_support::weights::PerDispatchClass<T>1698 * Lookup209: frame_support::weights::PerDispatchClass<T>1648 **/1699 **/1649 FrameSupportWeightsPerDispatchClassU64: {1700 FrameSupportWeightsPerDispatchClassU64: {1650 normal: 'u64',1701 normal: 'u64',1651 operational: 'u64',1702 operational: 'u64',1652 mandatory: 'u64'1703 mandatory: 'u64'1653 },1704 },1654 /**1705 /**1655 * Lookup208: sp_runtime::generic::digest::Digest1706 * Lookup210: sp_runtime::generic::digest::Digest1656 **/1707 **/1657 SpRuntimeDigest: {1708 SpRuntimeDigest: {1658 logs: 'Vec<SpRuntimeDigestDigestItem>'1709 logs: 'Vec<SpRuntimeDigestDigestItem>'1659 },1710 },1660 /**1711 /**1661 * Lookup210: sp_runtime::generic::digest::DigestItem1712 * Lookup212: sp_runtime::generic::digest::DigestItem1662 **/1713 **/1663 SpRuntimeDigestDigestItem: {1714 SpRuntimeDigestDigestItem: {1664 _enum: {1715 _enum: {1665 Other: 'Bytes',1716 Other: 'Bytes',1673 RuntimeEnvironmentUpdated: 'Null'1724 RuntimeEnvironmentUpdated: 'Null'1674 }1725 }1675 },1726 },1676 /**1727 /**1677 * Lookup212: frame_system::EventRecord<unique_runtime::Event, primitive_types::H256>1728 * Lookup214: frame_system::EventRecord<unique_runtime::Event, primitive_types::H256>1678 **/1729 **/1679 FrameSystemEventRecord: {1730 FrameSystemEventRecord: {1680 phase: 'FrameSystemPhase',1731 phase: 'FrameSystemPhase',1681 event: 'Event',1732 event: 'Event',1682 topics: 'Vec<H256>'1733 topics: 'Vec<H256>'1683 },1734 },1684 /**1735 /**1685 * Lookup214: frame_system::pallet::Event<T>1736 * Lookup216: frame_system::pallet::Event<T>1686 **/1737 **/1687 FrameSystemEvent: {1738 FrameSystemEvent: {1688 _enum: {1739 _enum: {1689 ExtrinsicSuccess: {1740 ExtrinsicSuccess: {1709 }1760 }1710 }1761 }1711 },1762 },1712 /**1763 /**1713 * Lookup215: frame_support::weights::DispatchInfo1764 * Lookup217: frame_support::weights::DispatchInfo1714 **/1765 **/1715 FrameSupportWeightsDispatchInfo: {1766 FrameSupportWeightsDispatchInfo: {1716 weight: 'u64',1767 weight: 'u64',1717 class: 'FrameSupportWeightsDispatchClass',1768 class: 'FrameSupportWeightsDispatchClass',1718 paysFee: 'FrameSupportWeightsPays'1769 paysFee: 'FrameSupportWeightsPays'1719 },1770 },1720 /**1771 /**1721 * Lookup216: frame_support::weights::DispatchClass1772 * Lookup218: frame_support::weights::DispatchClass1722 **/1773 **/1723 FrameSupportWeightsDispatchClass: {1774 FrameSupportWeightsDispatchClass: {1724 _enum: ['Normal', 'Operational', 'Mandatory']1775 _enum: ['Normal', 'Operational', 'Mandatory']1725 },1776 },1726 /**1777 /**1727 * Lookup217: frame_support::weights::Pays1778 * Lookup219: frame_support::weights::Pays1728 **/1779 **/1729 FrameSupportWeightsPays: {1780 FrameSupportWeightsPays: {1730 _enum: ['Yes', 'No']1781 _enum: ['Yes', 'No']1731 },1782 },1732 /**1783 /**1733 * Lookup218: orml_vesting::module::Event<T>1784 * Lookup220: orml_vesting::module::Event<T>1734 **/1785 **/1735 OrmlVestingModuleEvent: {1786 OrmlVestingModuleEvent: {1736 _enum: {1787 _enum: {1737 VestingScheduleAdded: {1788 VestingScheduleAdded: {1748 }1799 }1749 }1800 }1750 },1801 },1751 /**1802 /**1752 * Lookup219: cumulus_pallet_xcmp_queue::pallet::Event<T>1803 * Lookup221: cumulus_pallet_xcmp_queue::pallet::Event<T>1753 **/1804 **/1754 CumulusPalletXcmpQueueEvent: {1805 CumulusPalletXcmpQueueEvent: {1755 _enum: {1806 _enum: {1756 Success: 'Option<H256>',1807 Success: 'Option<H256>',1763 OverweightServiced: '(u64,u64)'1814 OverweightServiced: '(u64,u64)'1764 }1815 }1765 },1816 },1766 /**1817 /**1767 * Lookup220: pallet_xcm::pallet::Event<T>1818 * Lookup222: pallet_xcm::pallet::Event<T>1768 **/1819 **/1769 PalletXcmEvent: {1820 PalletXcmEvent: {1770 _enum: {1821 _enum: {1771 Attempted: 'XcmV2TraitsOutcome',1822 Attempted: 'XcmV2TraitsOutcome',1786 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'1837 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'1787 }1838 }1788 },1839 },1789 /**1840 /**1790 * Lookup221: xcm::v2::traits::Outcome1841 * Lookup223: xcm::v2::traits::Outcome1791 **/1842 **/1792 XcmV2TraitsOutcome: {1843 XcmV2TraitsOutcome: {1793 _enum: {1844 _enum: {1794 Complete: 'u64',1845 Complete: 'u64',1795 Incomplete: '(u64,XcmV2TraitsError)',1846 Incomplete: '(u64,XcmV2TraitsError)',1796 Error: 'XcmV2TraitsError'1847 Error: 'XcmV2TraitsError'1797 }1848 }1798 },1849 },1799 /**1850 /**1800 * Lookup223: cumulus_pallet_xcm::pallet::Event<T>1851 * Lookup225: cumulus_pallet_xcm::pallet::Event<T>1801 **/1852 **/1802 CumulusPalletXcmEvent: {1853 CumulusPalletXcmEvent: {1803 _enum: {1854 _enum: {1804 InvalidFormat: '[u8;8]',1855 InvalidFormat: '[u8;8]',1805 UnsupportedVersion: '[u8;8]',1856 UnsupportedVersion: '[u8;8]',1806 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'1857 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'1807 }1858 }1808 },1859 },1809 /**1860 /**1810 * Lookup224: cumulus_pallet_dmp_queue::pallet::Event<T>1861 * Lookup226: cumulus_pallet_dmp_queue::pallet::Event<T>1811 **/1862 **/1812 CumulusPalletDmpQueueEvent: {1863 CumulusPalletDmpQueueEvent: {1813 _enum: {1864 _enum: {1814 InvalidFormat: '[u8;32]',1865 InvalidFormat: '[u8;32]',1819 OverweightServiced: '(u64,u64)'1870 OverweightServiced: '(u64,u64)'1820 }1871 }1821 },1872 },1822 /**1873 /**1823 * Lookup225: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1874 * Lookup227: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1824 **/1875 **/1825 PalletUniqueRawEvent: {1876 PalletUniqueRawEvent: {1826 _enum: {1877 _enum: {1827 CollectionSponsorRemoved: 'u32',1878 CollectionSponsorRemoved: 'u32',1841 VariableOnChainSchemaSet: 'u32'1892 VariableOnChainSchemaSet: 'u32'1842 }1893 }1843 },1894 },1844 /**1895 /**1845 * Lookup226: pallet_common::pallet::Event<T>1896 * Lookup228: pallet_common::pallet::Event<T>1846 **/1897 **/1847 PalletCommonEvent: {1898 PalletCommonEvent: {1848 _enum: {1899 _enum: {1849 CollectionCreated: '(u32,u8,AccountId32)',1900 CollectionCreated: '(u32,u8,AccountId32)',1854 Approved: '(u32,u32,PalletCommonAccountBasicCrossAccountIdRepr,PalletCommonAccountBasicCrossAccountIdRepr,u128)'1905 Approved: '(u32,u32,PalletCommonAccountBasicCrossAccountIdRepr,PalletCommonAccountBasicCrossAccountIdRepr,u128)'1855 }1906 }1856 },1907 },1857 /**1908 /**1858 * Lookup227: pallet_evm::pallet::Event<T>1909 * Lookup229: pallet_evm::pallet::Event<T>1859 **/1910 **/1860 PalletEvmEvent: {1911 PalletEvmEvent: {1861 _enum: {1912 _enum: {1862 Log: 'EthereumLog',1913 Log: 'EthereumLog',1868 BalanceWithdraw: '(AccountId32,H160,U256)'1919 BalanceWithdraw: '(AccountId32,H160,U256)'1869 }1920 }1870 },1921 },1871 /**1922 /**1872 * Lookup228: ethereum::log::Log1923 * Lookup230: ethereum::log::Log1873 **/1924 **/1874 EthereumLog: {1925 EthereumLog: {1875 address: 'H160',1926 address: 'H160',1876 topics: 'Vec<H256>',1927 topics: 'Vec<H256>',1877 data: 'Bytes'1928 data: 'Bytes'1878 },1929 },1879 /**1930 /**1880 * Lookup229: pallet_ethereum::pallet::Event1931 * Lookup231: pallet_ethereum::pallet::Event1881 **/1932 **/1882 PalletEthereumEvent: {1933 PalletEthereumEvent: {1883 _enum: {1934 _enum: {1884 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'1935 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'1885 }1936 }1886 },1937 },1887 /**1938 /**1888 * Lookup230: evm_core::error::ExitReason1939 * Lookup232: evm_core::error::ExitReason1889 **/1940 **/1890 EvmCoreErrorExitReason: {1941 EvmCoreErrorExitReason: {1891 _enum: {1942 _enum: {1892 Succeed: 'EvmCoreErrorExitSucceed',1943 Succeed: 'EvmCoreErrorExitSucceed',1895 Fatal: 'EvmCoreErrorExitFatal'1946 Fatal: 'EvmCoreErrorExitFatal'1896 }1947 }1897 },1948 },1898 /**1949 /**1899 * Lookup231: evm_core::error::ExitSucceed1950 * Lookup233: evm_core::error::ExitSucceed1900 **/1951 **/1901 EvmCoreErrorExitSucceed: {1952 EvmCoreErrorExitSucceed: {1902 _enum: ['Stopped', 'Returned', 'Suicided']1953 _enum: ['Stopped', 'Returned', 'Suicided']1903 },1954 },1904 /**1955 /**1905 * Lookup232: evm_core::error::ExitError1956 * Lookup234: evm_core::error::ExitError1906 **/1957 **/1907 EvmCoreErrorExitError: {1958 EvmCoreErrorExitError: {1908 _enum: {1959 _enum: {1909 StackUnderflow: 'Null',1960 StackUnderflow: 'Null',1923 Other: 'Text'1974 Other: 'Text'1924 }1975 }1925 },1976 },1926 /**1977 /**1927 * Lookup235: evm_core::error::ExitRevert1978 * Lookup237: evm_core::error::ExitRevert1928 **/1979 **/1929 EvmCoreErrorExitRevert: {1980 EvmCoreErrorExitRevert: {1930 _enum: ['Reverted']1981 _enum: ['Reverted']1931 },1982 },1932 /**1983 /**1933 * Lookup236: evm_core::error::ExitFatal1984 * Lookup238: evm_core::error::ExitFatal1934 **/1985 **/1935 EvmCoreErrorExitFatal: {1986 EvmCoreErrorExitFatal: {1936 _enum: {1987 _enum: {1937 NotSupported: 'Null',1988 NotSupported: 'Null',1940 Other: 'Text'1991 Other: 'Text'1941 }1992 }1942 },1993 },1943 /**1994 /**1944 * Lookup237: frame_system::Phase1995 * Lookup239: frame_system::Phase1945 **/1996 **/1946 FrameSystemPhase: {1997 FrameSystemPhase: {1947 _enum: {1998 _enum: {1948 ApplyExtrinsic: 'u32',1999 ApplyExtrinsic: 'u32',1949 Finalization: 'Null',2000 Finalization: 'Null',1950 Initialization: 'Null'2001 Initialization: 'Null'1951 }2002 }1952 },2003 },1953 /**2004 /**1954 * Lookup239: frame_system::LastRuntimeUpgradeInfo2005 * Lookup241: frame_system::LastRuntimeUpgradeInfo1955 **/2006 **/1956 FrameSystemLastRuntimeUpgradeInfo: {2007 FrameSystemLastRuntimeUpgradeInfo: {1957 specVersion: 'Compact<u32>',2008 specVersion: 'Compact<u32>',1958 specName: 'Text'2009 specName: 'Text'1959 },2010 },1960 /**2011 /**1961 * Lookup240: frame_system::limits::BlockWeights2012 * Lookup242: frame_system::limits::BlockWeights1962 **/2013 **/1963 FrameSystemLimitsBlockWeights: {2014 FrameSystemLimitsBlockWeights: {1964 baseBlock: 'u64',2015 baseBlock: 'u64',1965 maxBlock: 'u64',2016 maxBlock: 'u64',1966 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'2017 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'1967 },2018 },1968 /**2019 /**1969 * Lookup241: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>2020 * Lookup243: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>1970 **/2021 **/1971 FrameSupportWeightsPerDispatchClassWeightsPerClass: {2022 FrameSupportWeightsPerDispatchClassWeightsPerClass: {1972 normal: 'FrameSystemLimitsWeightsPerClass',2023 normal: 'FrameSystemLimitsWeightsPerClass',1973 operational: 'FrameSystemLimitsWeightsPerClass',2024 operational: 'FrameSystemLimitsWeightsPerClass',1974 mandatory: 'FrameSystemLimitsWeightsPerClass'2025 mandatory: 'FrameSystemLimitsWeightsPerClass'1975 },2026 },1976 /**2027 /**1977 * Lookup242: frame_system::limits::WeightsPerClass2028 * Lookup244: frame_system::limits::WeightsPerClass1978 **/2029 **/1979 FrameSystemLimitsWeightsPerClass: {2030 FrameSystemLimitsWeightsPerClass: {1980 baseExtrinsic: 'u64',2031 baseExtrinsic: 'u64',1981 maxExtrinsic: 'Option<u64>',2032 maxExtrinsic: 'Option<u64>',1982 maxTotal: 'Option<u64>',2033 maxTotal: 'Option<u64>',1983 reserved: 'Option<u64>'2034 reserved: 'Option<u64>'1984 },2035 },1985 /**2036 /**1986 * Lookup244: frame_system::limits::BlockLength2037 * Lookup246: frame_system::limits::BlockLength1987 **/2038 **/1988 FrameSystemLimitsBlockLength: {2039 FrameSystemLimitsBlockLength: {1989 max: 'FrameSupportWeightsPerDispatchClassU32'2040 max: 'FrameSupportWeightsPerDispatchClassU32'1990 },2041 },1991 /**2042 /**1992 * Lookup245: frame_support::weights::PerDispatchClass<T>2043 * Lookup247: frame_support::weights::PerDispatchClass<T>1993 **/2044 **/1994 FrameSupportWeightsPerDispatchClassU32: {2045 FrameSupportWeightsPerDispatchClassU32: {1995 normal: 'u32',2046 normal: 'u32',1996 operational: 'u32',2047 operational: 'u32',1997 mandatory: 'u32'2048 mandatory: 'u32'1998 },2049 },1999 /**2050 /**2000 * Lookup246: frame_support::weights::RuntimeDbWeight2051 * Lookup248: frame_support::weights::RuntimeDbWeight2001 **/2052 **/2002 FrameSupportWeightsRuntimeDbWeight: {2053 FrameSupportWeightsRuntimeDbWeight: {2003 read: 'u64',2054 read: 'u64',2004 write: 'u64'2055 write: 'u64'2005 },2056 },2006 /**2057 /**2007 * Lookup247: sp_version::RuntimeVersion2058 * Lookup249: sp_version::RuntimeVersion2008 **/2059 **/2009 SpVersionRuntimeVersion: {2060 SpVersionRuntimeVersion: {2010 specName: 'Text',2061 specName: 'Text',2011 implName: 'Text',2062 implName: 'Text',2016 transactionVersion: 'u32',2067 transactionVersion: 'u32',2017 stateVersion: 'u8'2068 stateVersion: 'u8'2018 },2069 },2019 /**2070 /**2020 * Lookup251: frame_system::pallet::Error<T>2071 * Lookup253: frame_system::pallet::Error<T>2021 **/2072 **/2022 FrameSystemError: {2073 FrameSystemError: {2023 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']2074 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']2024 },2075 },2025 /**2076 /**2026 * Lookup253: orml_vesting::module::Error<T>2077 * Lookup255: orml_vesting::module::Error<T>2027 **/2078 **/2028 OrmlVestingModuleError: {2079 OrmlVestingModuleError: {2029 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2080 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2030 },2081 },2031 /**2082 /**2032 * Lookup255: cumulus_pallet_xcmp_queue::InboundChannelDetails2083 * Lookup257: cumulus_pallet_xcmp_queue::InboundChannelDetails2033 **/2084 **/2034 CumulusPalletXcmpQueueInboundChannelDetails: {2085 CumulusPalletXcmpQueueInboundChannelDetails: {2035 sender: 'u32',2086 sender: 'u32',2036 state: 'CumulusPalletXcmpQueueInboundState',2087 state: 'CumulusPalletXcmpQueueInboundState',2037 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2088 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2038 },2089 },2039 /**2090 /**2040 * Lookup256: cumulus_pallet_xcmp_queue::InboundState2091 * Lookup258: cumulus_pallet_xcmp_queue::InboundState2041 **/2092 **/2042 CumulusPalletXcmpQueueInboundState: {2093 CumulusPalletXcmpQueueInboundState: {2043 _enum: ['Ok', 'Suspended']2094 _enum: ['Ok', 'Suspended']2044 },2095 },2045 /**2096 /**2046 * Lookup259: polkadot_parachain::primitives::XcmpMessageFormat2097 * Lookup261: polkadot_parachain::primitives::XcmpMessageFormat2047 **/2098 **/2048 PolkadotParachainPrimitivesXcmpMessageFormat: {2099 PolkadotParachainPrimitivesXcmpMessageFormat: {2049 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2100 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2050 },2101 },2051 /**2102 /**2052 * Lookup262: cumulus_pallet_xcmp_queue::OutboundChannelDetails2103 * Lookup264: cumulus_pallet_xcmp_queue::OutboundChannelDetails2053 **/2104 **/2054 CumulusPalletXcmpQueueOutboundChannelDetails: {2105 CumulusPalletXcmpQueueOutboundChannelDetails: {2055 recipient: 'u32',2106 recipient: 'u32',2056 state: 'CumulusPalletXcmpQueueOutboundState',2107 state: 'CumulusPalletXcmpQueueOutboundState',2057 signalsExist: 'bool',2108 signalsExist: 'bool',2058 firstIndex: 'u16',2109 firstIndex: 'u16',2059 lastIndex: 'u16'2110 lastIndex: 'u16'2060 },2111 },2061 /**2112 /**2062 * Lookup263: cumulus_pallet_xcmp_queue::OutboundState2113 * Lookup265: cumulus_pallet_xcmp_queue::OutboundState2063 **/2114 **/2064 CumulusPalletXcmpQueueOutboundState: {2115 CumulusPalletXcmpQueueOutboundState: {2065 _enum: ['Ok', 'Suspended']2116 _enum: ['Ok', 'Suspended']2066 },2117 },2067 /**2118 /**2068 * Lookup265: cumulus_pallet_xcmp_queue::QueueConfigData2119 * Lookup267: cumulus_pallet_xcmp_queue::QueueConfigData2069 **/2120 **/2070 CumulusPalletXcmpQueueQueueConfigData: {2121 CumulusPalletXcmpQueueQueueConfigData: {2071 suspendThreshold: 'u32',2122 suspendThreshold: 'u32',2072 dropThreshold: 'u32',2123 dropThreshold: 'u32',2075 weightRestrictDecay: 'u64',2126 weightRestrictDecay: 'u64',2076 xcmpMaxIndividualWeight: 'u64'2127 xcmpMaxIndividualWeight: 'u64'2077 },2128 },2078 /**2129 /**2079 * Lookup267: cumulus_pallet_xcmp_queue::pallet::Error<T>2130 * Lookup269: cumulus_pallet_xcmp_queue::pallet::Error<T>2080 **/2131 **/2081 CumulusPalletXcmpQueueError: {2132 CumulusPalletXcmpQueueError: {2082 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2133 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2083 },2134 },2084 /**2135 /**2085 * Lookup268: pallet_xcm::pallet::Error<T>2136 * Lookup270: pallet_xcm::pallet::Error<T>2086 **/2137 **/2087 PalletXcmError: {2138 PalletXcmError: {2088 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2139 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2089 },2140 },2090 /**2141 /**2091 * Lookup269: cumulus_pallet_xcm::pallet::Error<T>2142 * Lookup271: cumulus_pallet_xcm::pallet::Error<T>2092 **/2143 **/2093 CumulusPalletXcmError: 'Null',2144 CumulusPalletXcmError: 'Null',2094 /**2145 /**2095 * Lookup270: cumulus_pallet_dmp_queue::ConfigData2146 * Lookup272: cumulus_pallet_dmp_queue::ConfigData2096 **/2147 **/2097 CumulusPalletDmpQueueConfigData: {2148 CumulusPalletDmpQueueConfigData: {2098 maxIndividual: 'u64'2149 maxIndividual: 'u64'2099 },2150 },2100 /**2151 /**2101 * Lookup271: cumulus_pallet_dmp_queue::PageIndexData2152 * Lookup273: cumulus_pallet_dmp_queue::PageIndexData2102 **/2153 **/2103 CumulusPalletDmpQueuePageIndexData: {2154 CumulusPalletDmpQueuePageIndexData: {2104 beginUsed: 'u32',2155 beginUsed: 'u32',2105 endUsed: 'u32',2156 endUsed: 'u32',2106 overweightCount: 'u64'2157 overweightCount: 'u64'2107 },2158 },2108 /**2159 /**2109 * Lookup274: cumulus_pallet_dmp_queue::pallet::Error<T>2160 * Lookup276: cumulus_pallet_dmp_queue::pallet::Error<T>2110 **/2161 **/2111 CumulusPalletDmpQueueError: {2162 CumulusPalletDmpQueueError: {2112 _enum: ['Unknown', 'OverLimit']2163 _enum: ['Unknown', 'OverLimit']2113 },2164 },2114 /**2165 /**2115 * Lookup278: pallet_unique::Error<T>2166 * Lookup280: pallet_unique::Error<T>2116 **/2167 **/2117 PalletUniqueError: {2168 PalletUniqueError: {2118 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']2169 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']2119 },2170 },2120 /**2171 /**2121 * Lookup279: up_data_structs::Collection<sp_core::crypto::AccountId32>2172 * Lookup281: up_data_structs::Collection<sp_core::crypto::AccountId32>2122 **/2173 **/2123 UpDataStructsCollection: {2174 UpDataStructsCollection: {2124 owner: 'AccountId32',2175 owner: 'AccountId32',2125 mode: 'UpDataStructsCollectionMode',2176 mode: 'UpDataStructsCollectionMode',2136 constOnChainSchema: 'Bytes',2187 constOnChainSchema: 'Bytes',2137 metaUpdatePermission: 'UpDataStructsMetaUpdatePermission'2188 metaUpdatePermission: 'UpDataStructsMetaUpdatePermission'2138 },2189 },2139 /**2190 /**2140 * Lookup280: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>2191 * Lookup282: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>2141 **/2192 **/2142 UpDataStructsSponsorshipState: {2193 UpDataStructsSponsorshipState: {2143 _enum: {2194 _enum: {2144 Disabled: 'Null',2195 Disabled: 'Null',2145 Unconfirmed: 'AccountId32',2196 Unconfirmed: 'AccountId32',2146 Confirmed: 'AccountId32'2197 Confirmed: 'AccountId32'2147 }2198 }2148 },2199 },2149 /**2200 /**2150 * Lookup283: up_data_structs::CollectionStats2201 * Lookup285: up_data_structs::CollectionStats2151 **/2202 **/2152 UpDataStructsCollectionStats: {2203 UpDataStructsCollectionStats: {2153 created: 'u32',2204 created: 'u32',2154 destroyed: 'u32',2205 destroyed: 'u32',2155 alive: 'u32'2206 alive: 'u32'2156 },2207 },2157 /**2208 /**2158 * Lookup284: pallet_common::pallet::Error<T>2209 * Lookup286: pallet_common::pallet::Error<T>2159 **/2210 **/2160 PalletCommonError: {2211 PalletCommonError: {2161 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'TokenVariableDataLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation']2212 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'TokenVariableDataLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation']2162 },2213 },2163 /**2214 /**2164 * Lookup286: pallet_fungible::pallet::Error<T>2215 * Lookup288: pallet_fungible::pallet::Error<T>2165 **/2216 **/2166 PalletFungibleError: {2217 PalletFungibleError: {2167 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData']2218 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData']2168 },2219 },2169 /**2220 /**2170 * Lookup287: pallet_refungible::ItemData2221 * Lookup289: pallet_refungible::ItemData2171 **/2222 **/2172 PalletRefungibleItemData: {2223 PalletRefungibleItemData: {2173 constData: 'Bytes',2224 constData: 'Bytes',2174 variableData: 'Bytes'2225 variableData: 'Bytes'2175 },2226 },2176 /**2227 /**2177 * Lookup291: pallet_refungible::pallet::Error<T>2228 * Lookup293: pallet_refungible::pallet::Error<T>2178 **/2229 **/2179 PalletRefungibleError: {2230 PalletRefungibleError: {2180 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces']2231 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces']2181 },2232 },2182 /**2233 /**2183 * Lookup292: pallet_nonfungible::ItemData<pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2234 * Lookup294: pallet_nonfungible::ItemData<pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2184 **/2235 **/2185 PalletNonfungibleItemData: {2236 PalletNonfungibleItemData: {2186 constData: 'Bytes',2237 constData: 'Bytes',2187 variableData: 'Bytes',2238 variableData: 'Bytes',2188 owner: 'PalletCommonAccountBasicCrossAccountIdRepr'2239 owner: 'PalletCommonAccountBasicCrossAccountIdRepr'2189 },2240 },2190 /**2241 /**2191 * Lookup293: pallet_nonfungible::pallet::Error<T>2242 * Lookup295: pallet_nonfungible::pallet::Error<T>2192 **/2243 **/2193 PalletNonfungibleError: {2244 PalletNonfungibleError: {2194 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']2245 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']2195 },2246 },2196 /**2247 /**2197 * Lookup295: pallet_evm::pallet::Error<T>2248 * Lookup297: pallet_evm::pallet::Error<T>2198 **/2249 **/2199 PalletEvmError: {2250 PalletEvmError: {2200 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']2251 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']2201 },2252 },2202 /**2253 /**2203 * Lookup298: fp_rpc::TransactionStatus2254 * Lookup300: fp_rpc::TransactionStatus2204 **/2255 **/2205 FpRpcTransactionStatus: {2256 FpRpcTransactionStatus: {2206 transactionHash: 'H256',2257 transactionHash: 'H256',2207 transactionIndex: 'u32',2258 transactionIndex: 'u32',2211 logs: 'Vec<EthereumLog>',2262 logs: 'Vec<EthereumLog>',2212 logsBloom: 'EthbloomBloom'2263 logsBloom: 'EthbloomBloom'2213 },2264 },2214 /**2265 /**2215 * Lookup301: ethbloom::Bloom2266 * Lookup303: ethbloom::Bloom2216 **/2267 **/2217 EthbloomBloom: '[u8;256]',2268 EthbloomBloom: '[u8;256]',2218 /**2269 /**2219 * Lookup303: ethereum::receipt::ReceiptV32270 * Lookup305: ethereum::receipt::ReceiptV32220 **/2271 **/2221 EthereumReceiptReceiptV3: {2272 EthereumReceiptReceiptV3: {2222 _enum: {2273 _enum: {2223 Legacy: 'EthereumReceiptEip658ReceiptData',2274 Legacy: 'EthereumReceiptEip658ReceiptData',2224 EIP2930: 'EthereumReceiptEip658ReceiptData',2275 EIP2930: 'EthereumReceiptEip658ReceiptData',2225 EIP1559: 'EthereumReceiptEip658ReceiptData'2276 EIP1559: 'EthereumReceiptEip658ReceiptData'2226 }2277 }2227 },2278 },2228 /**2279 /**2229 * Lookup304: ethereum::receipt::EIP658ReceiptData2280 * Lookup306: ethereum::receipt::EIP658ReceiptData2230 **/2281 **/2231 EthereumReceiptEip658ReceiptData: {2282 EthereumReceiptEip658ReceiptData: {2232 statusCode: 'u8',2283 statusCode: 'u8',2233 usedGas: 'U256',2284 usedGas: 'U256',2234 logsBloom: 'EthbloomBloom',2285 logsBloom: 'EthbloomBloom',2235 logs: 'Vec<EthereumLog>'2286 logs: 'Vec<EthereumLog>'2236 },2287 },2237 /**2288 /**2238 * Lookup305: ethereum::block::Block<ethereum::transaction::TransactionV2>2289 * Lookup307: ethereum::block::Block<ethereum::transaction::TransactionV2>2239 **/2290 **/2240 EthereumBlock: {2291 EthereumBlock: {2241 header: 'EthereumHeader',2292 header: 'EthereumHeader',2242 transactions: 'Vec<EthereumTransactionTransactionV2>',2293 transactions: 'Vec<EthereumTransactionTransactionV2>',2243 ommers: 'Vec<EthereumHeader>'2294 ommers: 'Vec<EthereumHeader>'2244 },2295 },2245 /**2296 /**2246 * Lookup306: ethereum::header::Header2297 * Lookup308: ethereum::header::Header2247 **/2298 **/2248 EthereumHeader: {2299 EthereumHeader: {2249 parentHash: 'H256',2300 parentHash: 'H256',2250 ommersHash: 'H256',2301 ommersHash: 'H256',2262 mixHash: 'H256',2313 mixHash: 'H256',2263 nonce: 'EthereumTypesHashH64'2314 nonce: 'EthereumTypesHashH64'2264 },2315 },2265 /**2316 /**2266 * Lookup307: ethereum_types::hash::H642317 * Lookup309: ethereum_types::hash::H642267 **/2318 **/2268 EthereumTypesHashH64: '[u8;8]',2319 EthereumTypesHashH64: '[u8;8]',2269 /**2320 /**2270 * Lookup312: pallet_ethereum::pallet::Error<T>2321 * Lookup314: pallet_ethereum::pallet::Error<T>2271 **/2322 **/2272 PalletEthereumError: {2323 PalletEthereumError: {2273 _enum: ['InvalidSignature', 'PreLogExists']2324 _enum: ['InvalidSignature', 'PreLogExists']2274 },2325 },2275 /**2326 /**2276 * Lookup313: pallet_evm_coder_substrate::pallet::Error<T>2327 * Lookup315: pallet_evm_coder_substrate::pallet::Error<T>2277 **/2328 **/2278 PalletEvmCoderSubstrateError: {2329 PalletEvmCoderSubstrateError: {2279 _enum: ['OutOfGas', 'OutOfFund']2330 _enum: ['OutOfGas', 'OutOfFund']2280 },2331 },2281 /**2332 /**2282 * Lookup314: pallet_evm_contract_helpers::SponsoringModeT2333 * Lookup316: pallet_evm_contract_helpers::SponsoringModeT2283 **/2334 **/2284 PalletEvmContractHelpersSponsoringModeT: {2335 PalletEvmContractHelpersSponsoringModeT: {2285 _enum: ['Disabled', 'Allowlisted', 'Generous']2336 _enum: ['Disabled', 'Allowlisted', 'Generous']2286 },2337 },2287 /**2338 /**2288 * Lookup316: pallet_evm_contract_helpers::pallet::Error<T>2339 * Lookup318: pallet_evm_contract_helpers::pallet::Error<T>2289 **/2340 **/2290 PalletEvmContractHelpersError: {2341 PalletEvmContractHelpersError: {2291 _enum: ['NoPermission']2342 _enum: ['NoPermission']2292 },2343 },2293 /**2344 /**2294 * Lookup317: pallet_evm_migration::pallet::Error<T>2345 * Lookup319: pallet_evm_migration::pallet::Error<T>2295 **/2346 **/2296 PalletEvmMigrationError: {2347 PalletEvmMigrationError: {2297 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']2348 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']2298 },2349 },2299 /**2350 /**2300 * Lookup319: sp_runtime::MultiSignature2351 * Lookup321: sp_runtime::MultiSignature2301 **/2352 **/2302 SpRuntimeMultiSignature: {2353 SpRuntimeMultiSignature: {2303 _enum: {2354 _enum: {2304 Ed25519: 'SpCoreEd25519Signature',2355 Ed25519: 'SpCoreEd25519Signature',2305 Sr25519: 'SpCoreSr25519Signature',2356 Sr25519: 'SpCoreSr25519Signature',2306 Ecdsa: 'SpCoreEcdsaSignature'2357 Ecdsa: 'SpCoreEcdsaSignature'2307 }2358 }2308 },2359 },2309 /**2360 /**2310 * Lookup320: sp_core::ed25519::Signature2361 * Lookup322: sp_core::ed25519::Signature2311 **/2362 **/2312 SpCoreEd25519Signature: '[u8;64]',2363 SpCoreEd25519Signature: '[u8;64]',2313 /**2364 /**2314 * Lookup322: sp_core::sr25519::Signature2365 * Lookup324: sp_core::sr25519::Signature2315 **/2366 **/2316 SpCoreSr25519Signature: '[u8;64]',2367 SpCoreSr25519Signature: '[u8;64]',2317 /**2368 /**2318 * Lookup323: sp_core::ecdsa::Signature2369 * Lookup325: sp_core::ecdsa::Signature2319 **/2370 **/2320 SpCoreEcdsaSignature: '[u8;65]',2371 SpCoreEcdsaSignature: '[u8;65]',2321 /**2372 /**2322 * Lookup326: frame_system::extensions::check_spec_version::CheckSpecVersion<T>2373 * Lookup328: frame_system::extensions::check_spec_version::CheckSpecVersion<T>2323 **/2374 **/2324 FrameSystemExtensionsCheckSpecVersion: 'Null',2375 FrameSystemExtensionsCheckSpecVersion: 'Null',2325 /**2376 /**2326 * Lookup327: frame_system::extensions::check_genesis::CheckGenesis<T>2377 * Lookup329: frame_system::extensions::check_genesis::CheckGenesis<T>2327 **/2378 **/2328 FrameSystemExtensionsCheckGenesis: 'Null',2379 FrameSystemExtensionsCheckGenesis: 'Null',2329 /**2380 /**2330 * Lookup330: frame_system::extensions::check_nonce::CheckNonce<T>2381 * Lookup332: frame_system::extensions::check_nonce::CheckNonce<T>2331 **/2382 **/2332 FrameSystemExtensionsCheckNonce: 'Compact<u32>',2383 FrameSystemExtensionsCheckNonce: 'Compact<u32>',2333 /**2384 /**2334 * Lookup331: frame_system::extensions::check_weight::CheckWeight<T>2385 * Lookup333: frame_system::extensions::check_weight::CheckWeight<T>2335 **/2386 **/2336 FrameSystemExtensionsCheckWeight: 'Null',2387 FrameSystemExtensionsCheckWeight: 'Null',2337 /**2388 /**2338 * Lookup332: pallet_template_transaction_payment::ChargeTransactionPayment<unique_runtime::Runtime>2389 * Lookup334: pallet_template_transaction_payment::ChargeTransactionPayment<unique_runtime::Runtime>2339 **/2390 **/2340 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',2391 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',2341 /**2392 /**2342 * Lookup333: unique_runtime::Runtime2393 * Lookup335: unique_runtime::Runtime2343 **/2394 **/2344 UniqueRuntimeRuntime: 'Null'2395 UniqueRuntimeRuntime: 'Null'2345};2396};23462397tests/src/interfaces/types-lookup.tsdiffbeforeafterboth284 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';284 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';285 }285 }286286287 /** @name PalletTimestampCall (60) */287 /** @name PalletTimestampCall (61) */288 export interface PalletTimestampCall extends Enum {288 export interface PalletTimestampCall extends Enum {289 readonly isSet: boolean;289 readonly isSet: boolean;290 readonly asSet: {290 readonly asSet: {293 readonly type: 'Set';293 readonly type: 'Set';294 }294 }295295296 /** @name PalletTransactionPaymentReleases (63) */296 /** @name PalletTransactionPaymentReleases (64) */297 export interface PalletTransactionPaymentReleases extends Enum {297 export interface PalletTransactionPaymentReleases extends Enum {298 readonly isV1Ancient: boolean;298 readonly isV1Ancient: boolean;299 readonly isV2: boolean;299 readonly isV2: boolean;300 readonly type: 'V1Ancient' | 'V2';300 readonly type: 'V1Ancient' | 'V2';301 }301 }302302303 /** @name FrameSupportWeightsWeightToFeeCoefficient (65) */303 /** @name FrameSupportWeightsWeightToFeeCoefficient (66) */304 export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {304 export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {305 readonly coeffInteger: u128;305 readonly coeffInteger: u128;306 readonly coeffFrac: Perbill;306 readonly coeffFrac: Perbill;307 readonly negative: bool;307 readonly negative: bool;308 readonly degree: u8;308 readonly degree: u8;309 }309 }310310311 /** @name PalletTreasuryProposal (67) */311 /** @name PalletTreasuryProposal (68) */312 export interface PalletTreasuryProposal extends Struct {312 export interface PalletTreasuryProposal extends Struct {313 readonly proposer: AccountId32;313 readonly proposer: AccountId32;314 readonly value: u128;314 readonly value: u128;315 readonly beneficiary: AccountId32;315 readonly beneficiary: AccountId32;316 readonly bond: u128;316 readonly bond: u128;317 }317 }318318319 /** @name PalletTreasuryCall (70) */319 /** @name PalletTreasuryCall (71) */320 export interface PalletTreasuryCall extends Enum {320 export interface PalletTreasuryCall extends Enum {321 readonly isProposeSpend: boolean;321 readonly isProposeSpend: boolean;322 readonly asProposeSpend: {322 readonly asProposeSpend: {334 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';334 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';335 }335 }336336337 /** @name PalletTreasuryEvent (72) */337 /** @name PalletTreasuryEvent (73) */338 export interface PalletTreasuryEvent extends Enum {338 export interface PalletTreasuryEvent extends Enum {339 readonly isProposed: boolean;339 readonly isProposed: boolean;340 readonly asProposed: {340 readonly asProposed: {370 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';370 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';371 }371 }372372373 /** @name FrameSupportPalletId (75) */373 /** @name FrameSupportPalletId (76) */374 export interface FrameSupportPalletId extends U8aFixed {}374 export interface FrameSupportPalletId extends U8aFixed {}375375376 /** @name PalletTreasuryError (76) */376 /** @name PalletTreasuryError (77) */377 export interface PalletTreasuryError extends Enum {377 export interface PalletTreasuryError extends Enum {378 readonly isInsufficientProposersBalance: boolean;378 readonly isInsufficientProposersBalance: boolean;379 readonly isInvalidIndex: boolean;379 readonly isInvalidIndex: boolean;380 readonly isTooManyApprovals: boolean;380 readonly isTooManyApprovals: boolean;381 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';381 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';382 }382 }383383384 /** @name PalletSudoCall (77) */384 /** @name PalletSudoCall (78) */385 export interface PalletSudoCall extends Enum {385 export interface PalletSudoCall extends Enum {386 readonly isSudo: boolean;386 readonly isSudo: boolean;387 readonly asSudo: {387 readonly asSudo: {404 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';404 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';405 }405 }406406407 /** @name FrameSystemCall (79) */407 /** @name FrameSystemCall (80) */408 export interface FrameSystemCall extends Enum {408 export interface FrameSystemCall extends Enum {409 readonly isFillBlock: boolean;409 readonly isFillBlock: boolean;410 readonly asFillBlock: {410 readonly asFillBlock: {446 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';446 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';447 }447 }448448449 /** @name OrmlVestingModuleCall (82) */449 /** @name OrmlVestingModuleCall (83) */450 export interface OrmlVestingModuleCall extends Enum {450 export interface OrmlVestingModuleCall extends Enum {451 readonly isClaim: boolean;451 readonly isClaim: boolean;452 readonly isVestedTransfer: boolean;452 readonly isVestedTransfer: boolean;466 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';466 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';467 }467 }468468469 /** @name OrmlVestingVestingSchedule (83) */469 /** @name OrmlVestingVestingSchedule (84) */470 export interface OrmlVestingVestingSchedule extends Struct {470 export interface OrmlVestingVestingSchedule extends Struct {471 readonly start: u32;471 readonly start: u32;472 readonly period: u32;472 readonly period: u32;473 readonly periodCount: u32;473 readonly periodCount: u32;474 readonly perPeriod: Compact<u128>;474 readonly perPeriod: Compact<u128>;475 }475 }476476477 /** @name CumulusPalletXcmpQueueCall (85) */477 /** @name CumulusPalletXcmpQueueCall (86) */478 export interface CumulusPalletXcmpQueueCall extends Enum {478 export interface CumulusPalletXcmpQueueCall extends Enum {479 readonly isServiceOverweight: boolean;479 readonly isServiceOverweight: boolean;480 readonly asServiceOverweight: {480 readonly asServiceOverweight: {481 readonly index: u64;481 readonly index: u64;482 readonly weightLimit: u64;482 readonly weightLimit: u64;483 } & Struct;483 } & Struct;484 readonly isSuspendXcmExecution: boolean;485 readonly isResumeXcmExecution: boolean;486 readonly isUpdateSuspendThreshold: boolean;487 readonly asUpdateSuspendThreshold: {488 readonly new_: u32;489 } & Struct;490 readonly isUpdateDropThreshold: boolean;491 readonly asUpdateDropThreshold: {492 readonly new_: u32;493 } & Struct;494 readonly isUpdateResumeThreshold: boolean;495 readonly asUpdateResumeThreshold: {496 readonly new_: u32;497 } & Struct;498 readonly isUpdateThresholdWeight: boolean;499 readonly asUpdateThresholdWeight: {500 readonly new_: u64;501 } & Struct;502 readonly isUpdateWeightRestrictDecay: boolean;503 readonly asUpdateWeightRestrictDecay: {504 readonly new_: u64;505 } & Struct;506 readonly isUpdateXcmpMaxIndividualWeight: boolean;507 readonly asUpdateXcmpMaxIndividualWeight: {508 readonly new_: u64;509 } & Struct;484 readonly type: 'ServiceOverweight';510 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';485 }511 }486512487 /** @name PalletXcmCall (86) */513 /** @name PalletXcmCall (87) */488 export interface PalletXcmCall extends Enum {514 export interface PalletXcmCall extends Enum {489 readonly isSend: boolean;515 readonly isSend: boolean;490 readonly asSend: {516 readonly asSend: {546 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';572 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';547 }573 }548574549 /** @name XcmVersionedMultiLocation (87) */575 /** @name XcmVersionedMultiLocation (88) */550 export interface XcmVersionedMultiLocation extends Enum {576 export interface XcmVersionedMultiLocation extends Enum {551 readonly isV0: boolean;577 readonly isV0: boolean;552 readonly asV0: XcmV0MultiLocation;578 readonly asV0: XcmV0MultiLocation;555 readonly type: 'V0' | 'V1';581 readonly type: 'V0' | 'V1';556 }582 }557583558 /** @name XcmV0MultiLocation (88) */584 /** @name XcmV0MultiLocation (89) */559 export interface XcmV0MultiLocation extends Enum {585 export interface XcmV0MultiLocation extends Enum {560 readonly isNull: boolean;586 readonly isNull: boolean;561 readonly isX1: boolean;587 readonly isX1: boolean;577 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';603 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';578 }604 }579605580 /** @name XcmV0Junction (89) */606 /** @name XcmV0Junction (90) */581 export interface XcmV0Junction extends Enum {607 export interface XcmV0Junction extends Enum {582 readonly isParent: boolean;608 readonly isParent: boolean;583 readonly isParachain: boolean;609 readonly isParachain: boolean;612 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';638 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';613 }639 }614640615 /** @name XcmV0JunctionNetworkId (90) */641 /** @name XcmV0JunctionNetworkId (91) */616 export interface XcmV0JunctionNetworkId extends Enum {642 export interface XcmV0JunctionNetworkId extends Enum {617 readonly isAny: boolean;643 readonly isAny: boolean;618 readonly isNamed: boolean;644 readonly isNamed: boolean;622 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';648 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';623 }649 }624650625 /** @name XcmV0JunctionBodyId (91) */651 /** @name XcmV0JunctionBodyId (92) */626 export interface XcmV0JunctionBodyId extends Enum {652 export interface XcmV0JunctionBodyId extends Enum {627 readonly isUnit: boolean;653 readonly isUnit: boolean;628 readonly isNamed: boolean;654 readonly isNamed: boolean;636 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';662 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';637 }663 }638664639 /** @name XcmV0JunctionBodyPart (92) */665 /** @name XcmV0JunctionBodyPart (93) */640 export interface XcmV0JunctionBodyPart extends Enum {666 export interface XcmV0JunctionBodyPart extends Enum {641 readonly isVoice: boolean;667 readonly isVoice: boolean;642 readonly isMembers: boolean;668 readonly isMembers: boolean;661 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';687 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';662 }688 }663689664 /** @name XcmV1MultiLocation (93) */690 /** @name XcmV1MultiLocation (94) */665 export interface XcmV1MultiLocation extends Struct {691 export interface XcmV1MultiLocation extends Struct {666 readonly parents: u8;692 readonly parents: u8;667 readonly interior: XcmV1MultilocationJunctions;693 readonly interior: XcmV1MultilocationJunctions;668 }694 }669695670 /** @name XcmV1MultilocationJunctions (94) */696 /** @name XcmV1MultilocationJunctions (95) */671 export interface XcmV1MultilocationJunctions extends Enum {697 export interface XcmV1MultilocationJunctions extends Enum {672 readonly isHere: boolean;698 readonly isHere: boolean;673 readonly isX1: boolean;699 readonly isX1: boolean;689 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';715 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';690 }716 }691717692 /** @name XcmV1Junction (95) */718 /** @name XcmV1Junction (96) */693 export interface XcmV1Junction extends Enum {719 export interface XcmV1Junction extends Enum {694 readonly isParachain: boolean;720 readonly isParachain: boolean;695 readonly asParachain: Compact<u32>;721 readonly asParachain: Compact<u32>;723 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';749 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';724 }750 }725751726 /** @name XcmVersionedXcm (96) */752 /** @name XcmVersionedXcm (97) */727 export interface XcmVersionedXcm extends Enum {753 export interface XcmVersionedXcm extends Enum {728 readonly isV0: boolean;754 readonly isV0: boolean;729 readonly asV0: XcmV0Xcm;755 readonly asV0: XcmV0Xcm;734 readonly type: 'V0' | 'V1' | 'V2';760 readonly type: 'V0' | 'V1' | 'V2';735 }761 }736762737 /** @name XcmV0Xcm (97) */763 /** @name XcmV0Xcm (98) */738 export interface XcmV0Xcm extends Enum {764 export interface XcmV0Xcm extends Enum {739 readonly isWithdrawAsset: boolean;765 readonly isWithdrawAsset: boolean;740 readonly asWithdrawAsset: {766 readonly asWithdrawAsset: {797 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';823 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';798 }824 }799825800 /** @name XcmV0MultiAsset (99) */826 /** @name XcmV0MultiAsset (100) */801 export interface XcmV0MultiAsset extends Enum {827 export interface XcmV0MultiAsset extends Enum {802 readonly isNone: boolean;828 readonly isNone: boolean;803 readonly isAll: boolean;829 readonly isAll: boolean;842 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';868 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';843 }869 }844870845 /** @name XcmV1MultiassetAssetInstance (100) */871 /** @name XcmV1MultiassetAssetInstance (101) */846 export interface XcmV1MultiassetAssetInstance extends Enum {872 export interface XcmV1MultiassetAssetInstance extends Enum {847 readonly isUndefined: boolean;873 readonly isUndefined: boolean;848 readonly isIndex: boolean;874 readonly isIndex: boolean;860 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';886 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';861 }887 }862888863 /** @name XcmV0Order (104) */889 /** @name XcmV0Order (105) */864 export interface XcmV0Order extends Enum {890 export interface XcmV0Order extends Enum {865 readonly isNull: boolean;891 readonly isNull: boolean;866 readonly isDepositAsset: boolean;892 readonly isDepositAsset: boolean;908 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';934 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';909 }935 }910936911 /** @name XcmV0Response (106) */937 /** @name XcmV0Response (107) */912 export interface XcmV0Response extends Enum {938 export interface XcmV0Response extends Enum {913 readonly isAssets: boolean;939 readonly isAssets: boolean;914 readonly asAssets: Vec<XcmV0MultiAsset>;940 readonly asAssets: Vec<XcmV0MultiAsset>;915 readonly type: 'Assets';941 readonly type: 'Assets';916 }942 }917943918 /** @name XcmV0OriginKind (107) */944 /** @name XcmV0OriginKind (108) */919 export interface XcmV0OriginKind extends Enum {945 export interface XcmV0OriginKind extends Enum {920 readonly isNative: boolean;946 readonly isNative: boolean;921 readonly isSovereignAccount: boolean;947 readonly isSovereignAccount: boolean;924 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';950 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';925 }951 }926952927 /** @name XcmDoubleEncoded (108) */953 /** @name XcmDoubleEncoded (109) */928 export interface XcmDoubleEncoded extends Struct {954 export interface XcmDoubleEncoded extends Struct {929 readonly encoded: Bytes;955 readonly encoded: Bytes;930 }956 }931957932 /** @name XcmV1Xcm (109) */958 /** @name XcmV1Xcm (110) */933 export interface XcmV1Xcm extends Enum {959 export interface XcmV1Xcm extends Enum {934 readonly isWithdrawAsset: boolean;960 readonly isWithdrawAsset: boolean;935 readonly asWithdrawAsset: {961 readonly asWithdrawAsset: {998 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';1024 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';999 }1025 }100010261001 /** @name XcmV1MultiassetMultiAssets (110) */1027 /** @name XcmV1MultiassetMultiAssets (111) */1002 export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}1028 export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}100310291004 /** @name XcmV1MultiAsset (112) */1030 /** @name XcmV1MultiAsset (113) */1005 export interface XcmV1MultiAsset extends Struct {1031 export interface XcmV1MultiAsset extends Struct {1006 readonly id: XcmV1MultiassetAssetId;1032 readonly id: XcmV1MultiassetAssetId;1007 readonly fun: XcmV1MultiassetFungibility;1033 readonly fun: XcmV1MultiassetFungibility;1008 }1034 }100910351010 /** @name XcmV1MultiassetAssetId (113) */1036 /** @name XcmV1MultiassetAssetId (114) */1011 export interface XcmV1MultiassetAssetId extends Enum {1037 export interface XcmV1MultiassetAssetId extends Enum {1012 readonly isConcrete: boolean;1038 readonly isConcrete: boolean;1013 readonly asConcrete: XcmV1MultiLocation;1039 readonly asConcrete: XcmV1MultiLocation;1016 readonly type: 'Concrete' | 'Abstract';1042 readonly type: 'Concrete' | 'Abstract';1017 }1043 }101810441019 /** @name XcmV1MultiassetFungibility (114) */1045 /** @name XcmV1MultiassetFungibility (115) */1020 export interface XcmV1MultiassetFungibility extends Enum {1046 export interface XcmV1MultiassetFungibility extends Enum {1021 readonly isFungible: boolean;1047 readonly isFungible: boolean;1022 readonly asFungible: Compact<u128>;1048 readonly asFungible: Compact<u128>;1025 readonly type: 'Fungible' | 'NonFungible';1051 readonly type: 'Fungible' | 'NonFungible';1026 }1052 }102710531028 /** @name XcmV1Order (116) */1054 /** @name XcmV1Order (117) */1029 export interface XcmV1Order extends Enum {1055 export interface XcmV1Order extends Enum {1030 readonly isNoop: boolean;1056 readonly isNoop: boolean;1031 readonly isDepositAsset: boolean;1057 readonly isDepositAsset: boolean;1075 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';1101 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';1076 }1102 }107711031078 /** @name XcmV1MultiassetMultiAssetFilter (117) */1104 /** @name XcmV1MultiassetMultiAssetFilter (118) */1079 export interface XcmV1MultiassetMultiAssetFilter extends Enum {1105 export interface XcmV1MultiassetMultiAssetFilter extends Enum {1080 readonly isDefinite: boolean;1106 readonly isDefinite: boolean;1081 readonly asDefinite: XcmV1MultiassetMultiAssets;1107 readonly asDefinite: XcmV1MultiassetMultiAssets;1084 readonly type: 'Definite' | 'Wild';1110 readonly type: 'Definite' | 'Wild';1085 }1111 }108611121087 /** @name XcmV1MultiassetWildMultiAsset (118) */1113 /** @name XcmV1MultiassetWildMultiAsset (119) */1088 export interface XcmV1MultiassetWildMultiAsset extends Enum {1114 export interface XcmV1MultiassetWildMultiAsset extends Enum {1089 readonly isAll: boolean;1115 readonly isAll: boolean;1090 readonly isAllOf: boolean;1116 readonly isAllOf: boolean;1095 readonly type: 'All' | 'AllOf';1121 readonly type: 'All' | 'AllOf';1096 }1122 }109711231098 /** @name XcmV1MultiassetWildFungibility (119) */1124 /** @name XcmV1MultiassetWildFungibility (120) */1099 export interface XcmV1MultiassetWildFungibility extends Enum {1125 export interface XcmV1MultiassetWildFungibility extends Enum {1100 readonly isFungible: boolean;1126 readonly isFungible: boolean;1101 readonly isNonFungible: boolean;1127 readonly isNonFungible: boolean;1102 readonly type: 'Fungible' | 'NonFungible';1128 readonly type: 'Fungible' | 'NonFungible';1103 }1129 }110411301105 /** @name XcmV1Response (121) */1131 /** @name XcmV1Response (122) */1106 export interface XcmV1Response extends Enum {1132 export interface XcmV1Response extends Enum {1107 readonly isAssets: boolean;1133 readonly isAssets: boolean;1108 readonly asAssets: XcmV1MultiassetMultiAssets;1134 readonly asAssets: XcmV1MultiassetMultiAssets;1111 readonly type: 'Assets' | 'Version';1137 readonly type: 'Assets' | 'Version';1112 }1138 }111311391114 /** @name XcmV2Xcm (122) */1140 /** @name XcmV2Xcm (123) */1115 export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}1141 export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}111611421117 /** @name XcmV2Instruction (124) */1143 /** @name XcmV2Instruction (125) */1118 export interface XcmV2Instruction extends Enum {1144 export interface XcmV2Instruction extends Enum {1119 readonly isWithdrawAsset: boolean;1145 readonly isWithdrawAsset: boolean;1120 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;1146 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;1234 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';1260 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';1235 }1261 }123612621237 /** @name XcmV2Response (125) */1263 /** @name XcmV2Response (126) */1238 export interface XcmV2Response extends Enum {1264 export interface XcmV2Response extends Enum {1239 readonly isNull: boolean;1265 readonly isNull: boolean;1240 readonly isAssets: boolean;1266 readonly isAssets: boolean;1246 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';1272 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';1247 }1273 }124812741249 /** @name XcmV2TraitsError (128) */1275 /** @name XcmV2TraitsError (129) */1250 export interface XcmV2TraitsError extends Enum {1276 export interface XcmV2TraitsError extends Enum {1251 readonly isOverflow: boolean;1277 readonly isOverflow: boolean;1252 readonly isUnimplemented: boolean;1278 readonly isUnimplemented: boolean;1279 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';1305 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';1280 }1306 }128113071282 /** @name XcmV2WeightLimit (129) */1308 /** @name XcmV2WeightLimit (130) */1283 export interface XcmV2WeightLimit extends Enum {1309 export interface XcmV2WeightLimit extends Enum {1284 readonly isUnlimited: boolean;1310 readonly isUnlimited: boolean;1285 readonly isLimited: boolean;1311 readonly isLimited: boolean;1286 readonly asLimited: Compact<u64>;1312 readonly asLimited: Compact<u64>;1287 readonly type: 'Unlimited' | 'Limited';1313 readonly type: 'Unlimited' | 'Limited';1288 }1314 }128913151290 /** @name XcmVersionedMultiAssets (130) */1316 /** @name XcmVersionedMultiAssets (131) */1291 export interface XcmVersionedMultiAssets extends Enum {1317 export interface XcmVersionedMultiAssets extends Enum {1292 readonly isV0: boolean;1318 readonly isV0: boolean;1293 readonly asV0: Vec<XcmV0MultiAsset>;1319 readonly asV0: Vec<XcmV0MultiAsset>;1296 readonly type: 'V0' | 'V1';1322 readonly type: 'V0' | 'V1';1297 }1323 }129813241299 /** @name CumulusPalletXcmCall (145) */1325 /** @name CumulusPalletXcmCall (146) */1300 export type CumulusPalletXcmCall = Null;1326 export type CumulusPalletXcmCall = Null;130113271302 /** @name CumulusPalletDmpQueueCall (146) */1328 /** @name CumulusPalletDmpQueueCall (147) */1303 export interface CumulusPalletDmpQueueCall extends Enum {1329 export interface CumulusPalletDmpQueueCall extends Enum {1304 readonly isServiceOverweight: boolean;1330 readonly isServiceOverweight: boolean;1305 readonly asServiceOverweight: {1331 readonly asServiceOverweight: {1309 readonly type: 'ServiceOverweight';1335 readonly type: 'ServiceOverweight';1310 }1336 }131113371312 /** @name PalletInflationCall (147) */1338 /** @name PalletInflationCall (148) */1313 export interface PalletInflationCall extends Enum {1339 export interface PalletInflationCall extends Enum {1314 readonly isStartInflation: boolean;1340 readonly isStartInflation: boolean;1315 readonly asStartInflation: {1341 readonly asStartInflation: {1318 readonly type: 'StartInflation';1344 readonly type: 'StartInflation';1319 }1345 }132013461321 /** @name PalletUniqueCall (148) */1347 /** @name PalletUniqueCall (149) */1322 export interface PalletUniqueCall extends Enum {1348 export interface PalletUniqueCall extends Enum {1323 readonly isCreateCollection: boolean;1349 readonly isCreateCollection: boolean;1324 readonly asCreateCollection: {1350 readonly asCreateCollection: {1474 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetVariableMetaData' | 'SetMetaUpdatePermissionFlag' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetVariableOnChainSchema' | 'SetCollectionLimits';1500 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetVariableMetaData' | 'SetMetaUpdatePermissionFlag' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetVariableOnChainSchema' | 'SetCollectionLimits';1475 }1501 }147615021477 /** @name UpDataStructsCollectionMode (154) */1503 /** @name UpDataStructsCollectionMode (155) */1478 export interface UpDataStructsCollectionMode extends Enum {1504 export interface UpDataStructsCollectionMode extends Enum {1479 readonly isNft: boolean;1505 readonly isNft: boolean;1480 readonly isFungible: boolean;1506 readonly isFungible: boolean;1483 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1509 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1484 }1510 }148515111486 /** @name UpDataStructsCreateCollectionData (155) */1512 /** @name UpDataStructsCreateCollectionData (156) */1487 export interface UpDataStructsCreateCollectionData extends Struct {1513 export interface UpDataStructsCreateCollectionData extends Struct {1488 readonly mode: UpDataStructsCollectionMode;1514 readonly mode: UpDataStructsCollectionMode;1489 readonly access: Option<UpDataStructsAccessMode>;1515 readonly access: Option<UpDataStructsAccessMode>;1499 readonly metaUpdatePermission: Option<UpDataStructsMetaUpdatePermission>;1525 readonly metaUpdatePermission: Option<UpDataStructsMetaUpdatePermission>;1500 }1526 }150115271502 /** @name UpDataStructsAccessMode (157) */1528 /** @name UpDataStructsAccessMode (158) */1503 export interface UpDataStructsAccessMode extends Enum {1529 export interface UpDataStructsAccessMode extends Enum {1504 readonly isNormal: boolean;1530 readonly isNormal: boolean;1505 readonly isAllowList: boolean;1531 readonly isAllowList: boolean;1506 readonly type: 'Normal' | 'AllowList';1532 readonly type: 'Normal' | 'AllowList';1507 }1533 }150815341509 /** @name UpDataStructsSchemaVersion (160) */1535 /** @name UpDataStructsSchemaVersion (161) */1510 export interface UpDataStructsSchemaVersion extends Enum {1536 export interface UpDataStructsSchemaVersion extends Enum {1511 readonly isImageURL: boolean;1537 readonly isImageURL: boolean;1512 readonly isUnique: boolean;1538 readonly isUnique: boolean;1513 readonly type: 'ImageURL' | 'Unique';1539 readonly type: 'ImageURL' | 'Unique';1514 }1540 }15411542 /** @name UpDataStructsCollectionLimits (164) */1543 export interface UpDataStructsCollectionLimits extends Struct {1544 readonly accountTokenOwnershipLimit: Option<u32>;1545 readonly sponsoredDataSize: Option<u32>;1546 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;1547 readonly tokenLimit: Option<u32>;1548 readonly sponsorTransferTimeout: Option<u32>;1549 readonly sponsorApproveTimeout: Option<u32>;1550 readonly ownerCanTransfer: Option<bool>;1551 readonly ownerCanDestroy: Option<bool>;1552 readonly transfersEnabled: Option<bool>;1553 }151515541516 /** @name UpDataStructsSponsoringRateLimit */1555 /** @name UpDataStructsSponsoringRateLimit (166) */1517 export interface UpDataStructsSponsoringRateLimit extends Enum {1556 export interface UpDataStructsSponsoringRateLimit extends Enum {1518 readonly isSponsoringDisabled: boolean;1557 readonly isSponsoringDisabled: boolean;1519 readonly isBlocks: boolean;1558 readonly isBlocks: boolean;1520 readonly asBlocks: u32;1559 readonly asBlocks: u32;1521 readonly type: 'SponsoringDisabled' | 'Blocks';1560 readonly type: 'SponsoringDisabled' | 'Blocks';1522 }1561 }15231524 /** @name UpDataStructsCollectionLimits (163) */1525 export interface UpDataStructsCollectionLimits extends Struct {1526 readonly accountTokenOwnershipLimit: Option<u32>;1527 readonly sponsoredDataSize: Option<u32>;1528 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;1529 readonly tokenLimit: Option<u32>;1530 readonly sponsorTransferTimeout: Option<u32>;1531 readonly sponsorApproveTimeout: Option<u32>;1532 readonly ownerCanTransfer: Option<bool>;1533 readonly ownerCanDestroy: Option<bool>;1534 readonly transfersEnabled: Option<bool>;1535 }153615621537 /** @name UpDataStructsMetaUpdatePermission (169) */1563 /** @name UpDataStructsMetaUpdatePermission (170) */1538 export interface UpDataStructsMetaUpdatePermission extends Enum {1564 export interface UpDataStructsMetaUpdatePermission extends Enum {1539 readonly isItemOwner: boolean;1565 readonly isItemOwner: boolean;1540 readonly isAdmin: boolean;1566 readonly isAdmin: boolean;1541 readonly isNone: boolean;1567 readonly isNone: boolean;1542 readonly type: 'ItemOwner' | 'Admin' | 'None';1568 readonly type: 'ItemOwner' | 'Admin' | 'None';1543 }1569 }154415701545 /** @name PalletCommonAccountBasicCrossAccountIdRepr (171) */1571 /** @name PalletCommonAccountBasicCrossAccountIdRepr (172) */1546 export interface PalletCommonAccountBasicCrossAccountIdRepr extends Enum {1572 export interface PalletCommonAccountBasicCrossAccountIdRepr extends Enum {1547 readonly isSubstrate: boolean;1573 readonly isSubstrate: boolean;1548 readonly asSubstrate: AccountId32;1574 readonly asSubstrate: AccountId32;1551 readonly type: 'Substrate' | 'Ethereum';1577 readonly type: 'Substrate' | 'Ethereum';1552 }1578 }155315791554 /** @name UpDataStructsCreateItemData (173) */1580 /** @name UpDataStructsCreateItemData (174) */1555 export interface UpDataStructsCreateItemData extends Enum {1581 export interface UpDataStructsCreateItemData extends Enum {1556 readonly isNft: boolean;1582 readonly isNft: boolean;1557 readonly asNft: UpDataStructsCreateNftData;1583 readonly asNft: UpDataStructsCreateNftData;1562 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1588 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1563 }1589 }156415901565 /** @name UpDataStructsCreateNftData (174) */1591 /** @name UpDataStructsCreateNftData (175) */1566 export interface UpDataStructsCreateNftData extends Struct {1592 export interface UpDataStructsCreateNftData extends Struct {1567 readonly constData: Bytes;1593 readonly constData: Bytes;1568 readonly variableData: Bytes;1594 readonly variableData: Bytes;1569 }1595 }157015961571 /** @name UpDataStructsCreateFungibleData (176) */1597 /** @name UpDataStructsCreateFungibleData (177) */1572 export interface UpDataStructsCreateFungibleData extends Struct {1598 export interface UpDataStructsCreateFungibleData extends Struct {1573 readonly value: u128;1599 readonly value: u128;1574 }1600 }157516011576 /** @name UpDataStructsCreateReFungibleData (177) */1602 /** @name UpDataStructsCreateReFungibleData (178) */1577 export interface UpDataStructsCreateReFungibleData extends Struct {1603 export interface UpDataStructsCreateReFungibleData extends Struct {1578 readonly constData: Bytes;1604 readonly constData: Bytes;1579 readonly variableData: Bytes;1605 readonly variableData: Bytes;1580 readonly pieces: u128;1606 readonly pieces: u128;1581 }1607 }158216081583 /** @name PalletTemplateTransactionPaymentCall (180) */1609 /** @name PalletTemplateTransactionPaymentCall (181) */1584 export type PalletTemplateTransactionPaymentCall = Null;1610 export type PalletTemplateTransactionPaymentCall = Null;158516111586 /** @name PalletEvmCall (181) */1612 /** @name PalletEvmCall (182) */1587 export interface PalletEvmCall extends Enum {1613 export interface PalletEvmCall extends Enum {1588 readonly isWithdraw: boolean;1614 readonly isWithdraw: boolean;1589 readonly asWithdraw: {1615 readonly asWithdraw: {1628 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1654 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1629 }1655 }163016561631 /** @name PalletEthereumCall (187) */1657 /** @name PalletEthereumCall (188) */1632 export interface PalletEthereumCall extends Enum {1658 export interface PalletEthereumCall extends Enum {1633 readonly isTransact: boolean;1659 readonly isTransact: boolean;1634 readonly asTransact: {1660 readonly asTransact: {1637 readonly type: 'Transact';1663 readonly type: 'Transact';1638 }1664 }163916651640 /** @name EthereumTransactionTransactionV2 (188) */1666 /** @name EthereumTransactionTransactionV2 (189) */1641 export interface EthereumTransactionTransactionV2 extends Enum {1667 export interface EthereumTransactionTransactionV2 extends Enum {1642 readonly isLegacy: boolean;1668 readonly isLegacy: boolean;1643 readonly asLegacy: EthereumTransactionLegacyTransaction;1669 readonly asLegacy: EthereumTransactionLegacyTransaction;1648 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';1674 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';1649 }1675 }165016761651 /** @name EthereumTransactionLegacyTransaction (189) */1677 /** @name EthereumTransactionLegacyTransaction (190) */1652 export interface EthereumTransactionLegacyTransaction extends Struct {1678 export interface EthereumTransactionLegacyTransaction extends Struct {1653 readonly nonce: U256;1679 readonly nonce: U256;1654 readonly gasPrice: U256;1680 readonly gasPrice: U256;1659 readonly signature: EthereumTransactionTransactionSignature;1685 readonly signature: EthereumTransactionTransactionSignature;1660 }1686 }166116871662 /** @name EthereumTransactionTransactionAction (190) */1688 /** @name EthereumTransactionTransactionAction (191) */1663 export interface EthereumTransactionTransactionAction extends Enum {1689 export interface EthereumTransactionTransactionAction extends Enum {1664 readonly isCall: boolean;1690 readonly isCall: boolean;1665 readonly asCall: H160;1691 readonly asCall: H160;1666 readonly isCreate: boolean;1692 readonly isCreate: boolean;1667 readonly type: 'Call' | 'Create';1693 readonly type: 'Call' | 'Create';1668 }1694 }166916951670 /** @name EthereumTransactionTransactionSignature (191) */1696 /** @name EthereumTransactionTransactionSignature (192) */1671 export interface EthereumTransactionTransactionSignature extends Struct {1697 export interface EthereumTransactionTransactionSignature extends Struct {1672 readonly v: u64;1698 readonly v: u64;1673 readonly r: H256;1699 readonly r: H256;1674 readonly s: H256;1700 readonly s: H256;1675 }1701 }167617021677 /** @name EthereumTransactionEip2930Transaction (193) */1703 /** @name EthereumTransactionEip2930Transaction (194) */1678 export interface EthereumTransactionEip2930Transaction extends Struct {1704 export interface EthereumTransactionEip2930Transaction extends Struct {1679 readonly chainId: u64;1705 readonly chainId: u64;1680 readonly nonce: U256;1706 readonly nonce: U256;1689 readonly s: H256;1715 readonly s: H256;1690 }1716 }169117171692 /** @name EthereumTransactionAccessListItem (195) */1718 /** @name EthereumTransactionAccessListItem (196) */1693 export interface EthereumTransactionAccessListItem extends Struct {1719 export interface EthereumTransactionAccessListItem extends Struct {1694 readonly address: H160;1720 readonly address: H160;1695 readonly slots: Vec<H256>;1721 readonly slots: Vec<H256>;1696 }1722 }169717231698 /** @name EthereumTransactionEip1559Transaction (196) */1724 /** @name EthereumTransactionEip1559Transaction (197) */1699 export interface EthereumTransactionEip1559Transaction extends Struct {1725 export interface EthereumTransactionEip1559Transaction extends Struct {1700 readonly chainId: u64;1726 readonly chainId: u64;1701 readonly nonce: U256;1727 readonly nonce: U256;1711 readonly s: H256;1737 readonly s: H256;1712 }1738 }171317391714 /** @name PalletEvmMigrationCall (197) */1740 /** @name PalletEvmMigrationCall (198) */1715 export interface PalletEvmMigrationCall extends Enum {1741 export interface PalletEvmMigrationCall extends Enum {1716 readonly isBegin: boolean;1742 readonly isBegin: boolean;1717 readonly asBegin: {1743 readonly asBegin: {1730 readonly type: 'Begin' | 'SetData' | 'Finish';1756 readonly type: 'Begin' | 'SetData' | 'Finish';1731 }1757 }173217581733 /** @name PalletSudoEvent (200) */1759 /** @name PalletSudoEvent (201) */1734 export interface PalletSudoEvent extends Enum {1760 export interface PalletSudoEvent extends Enum {1735 readonly isSudid: boolean;1761 readonly isSudid: boolean;1736 readonly asSudid: {1762 readonly asSudid: {1747 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1773 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1748 }1774 }174917751750 /** @name SpRuntimeDispatchError (202) */1776 /** @name SpRuntimeDispatchError (203) */1751 export interface SpRuntimeDispatchError extends Enum {1777 export interface SpRuntimeDispatchError extends Enum {1752 readonly isOther: boolean;1778 readonly isOther: boolean;1753 readonly isCannotLookup: boolean;1779 readonly isCannotLookup: boolean;1754 readonly isBadOrigin: boolean;1780 readonly isBadOrigin: boolean;1755 readonly isModule: boolean;1781 readonly isModule: boolean;1756 readonly asModule: {1782 readonly asModule: SpRuntimeModuleError;1757 readonly index: u8;1758 readonly error: u8;1759 } & Struct;1760 readonly isConsumerRemaining: boolean;1783 readonly isConsumerRemaining: boolean;1761 readonly isNoProviders: boolean;1784 readonly isNoProviders: boolean;1762 readonly isTooManyConsumers: boolean;1785 readonly isTooManyConsumers: boolean;1767 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic';1790 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic';1768 }1791 }17921793 /** @name SpRuntimeModuleError (204) */1794 export interface SpRuntimeModuleError extends Struct {1795 readonly index: u8;1796 readonly error: u8;1797 }176917981770 /** @name SpRuntimeTokenError (203) */1799 /** @name SpRuntimeTokenError (205) */1771 export interface SpRuntimeTokenError extends Enum {1800 export interface SpRuntimeTokenError extends Enum {1772 readonly isNoFunds: boolean;1801 readonly isNoFunds: boolean;1773 readonly isWouldDie: boolean;1802 readonly isWouldDie: boolean;1779 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';1808 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';1780 }1809 }178118101782 /** @name SpRuntimeArithmeticError (204) */1811 /** @name SpRuntimeArithmeticError (206) */1783 export interface SpRuntimeArithmeticError extends Enum {1812 export interface SpRuntimeArithmeticError extends Enum {1784 readonly isUnderflow: boolean;1813 readonly isUnderflow: boolean;1785 readonly isOverflow: boolean;1814 readonly isOverflow: boolean;1786 readonly isDivisionByZero: boolean;1815 readonly isDivisionByZero: boolean;1787 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';1816 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';1788 }1817 }178918181790 /** @name PalletSudoError (205) */1819 /** @name PalletSudoError (207) */1791 export interface PalletSudoError extends Enum {1820 export interface PalletSudoError extends Enum {1792 readonly isRequireSudo: boolean;1821 readonly isRequireSudo: boolean;1793 readonly type: 'RequireSudo';1822 readonly type: 'RequireSudo';1794 }1823 }179518241796 /** @name FrameSystemAccountInfo (206) */1825 /** @name FrameSystemAccountInfo (208) */1797 export interface FrameSystemAccountInfo extends Struct {1826 export interface FrameSystemAccountInfo extends Struct {1798 readonly nonce: u32;1827 readonly nonce: u32;1799 readonly consumers: u32;1828 readonly consumers: u32;1802 readonly data: PalletBalancesAccountData;1831 readonly data: PalletBalancesAccountData;1803 }1832 }180418331805 /** @name FrameSupportWeightsPerDispatchClassU64 (207) */1834 /** @name FrameSupportWeightsPerDispatchClassU64 (209) */1806 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {1835 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {1807 readonly normal: u64;1836 readonly normal: u64;1808 readonly operational: u64;1837 readonly operational: u64;1809 readonly mandatory: u64;1838 readonly mandatory: u64;1810 }1839 }181118401812 /** @name SpRuntimeDigest (208) */1841 /** @name SpRuntimeDigest (210) */1813 export interface SpRuntimeDigest extends Struct {1842 export interface SpRuntimeDigest extends Struct {1814 readonly logs: Vec<SpRuntimeDigestDigestItem>;1843 readonly logs: Vec<SpRuntimeDigestDigestItem>;1815 }1844 }181618451817 /** @name SpRuntimeDigestDigestItem (210) */1846 /** @name SpRuntimeDigestDigestItem (212) */1818 export interface SpRuntimeDigestDigestItem extends Enum {1847 export interface SpRuntimeDigestDigestItem extends Enum {1819 readonly isOther: boolean;1848 readonly isOther: boolean;1820 readonly asOther: Bytes;1849 readonly asOther: Bytes;1828 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';1857 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';1829 }1858 }183018591831 /** @name FrameSystemEventRecord (212) */1860 /** @name FrameSystemEventRecord (214) */1832 export interface FrameSystemEventRecord extends Struct {1861 export interface FrameSystemEventRecord extends Struct {1833 readonly phase: FrameSystemPhase;1862 readonly phase: FrameSystemPhase;1834 readonly event: Event;1863 readonly event: Event;1835 readonly topics: Vec<H256>;1864 readonly topics: Vec<H256>;1836 }1865 }183718661838 /** @name FrameSystemEvent (214) */1867 /** @name FrameSystemEvent (216) */1839 export interface FrameSystemEvent extends Enum {1868 export interface FrameSystemEvent extends Enum {1840 readonly isExtrinsicSuccess: boolean;1869 readonly isExtrinsicSuccess: boolean;1841 readonly asExtrinsicSuccess: {1870 readonly asExtrinsicSuccess: {1863 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';1892 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';1864 }1893 }186518941866 /** @name FrameSupportWeightsDispatchInfo (215) */1895 /** @name FrameSupportWeightsDispatchInfo (217) */1867 export interface FrameSupportWeightsDispatchInfo extends Struct {1896 export interface FrameSupportWeightsDispatchInfo extends Struct {1868 readonly weight: u64;1897 readonly weight: u64;1869 readonly class: FrameSupportWeightsDispatchClass;1898 readonly class: FrameSupportWeightsDispatchClass;1870 readonly paysFee: FrameSupportWeightsPays;1899 readonly paysFee: FrameSupportWeightsPays;1871 }1900 }187219011873 /** @name FrameSupportWeightsDispatchClass (216) */1902 /** @name FrameSupportWeightsDispatchClass (218) */1874 export interface FrameSupportWeightsDispatchClass extends Enum {1903 export interface FrameSupportWeightsDispatchClass extends Enum {1875 readonly isNormal: boolean;1904 readonly isNormal: boolean;1876 readonly isOperational: boolean;1905 readonly isOperational: boolean;1877 readonly isMandatory: boolean;1906 readonly isMandatory: boolean;1878 readonly type: 'Normal' | 'Operational' | 'Mandatory';1907 readonly type: 'Normal' | 'Operational' | 'Mandatory';1879 }1908 }188019091881 /** @name FrameSupportWeightsPays (217) */1910 /** @name FrameSupportWeightsPays (219) */1882 export interface FrameSupportWeightsPays extends Enum {1911 export interface FrameSupportWeightsPays extends Enum {1883 readonly isYes: boolean;1912 readonly isYes: boolean;1884 readonly isNo: boolean;1913 readonly isNo: boolean;1885 readonly type: 'Yes' | 'No';1914 readonly type: 'Yes' | 'No';1886 }1915 }188719161888 /** @name OrmlVestingModuleEvent (218) */1917 /** @name OrmlVestingModuleEvent (220) */1889 export interface OrmlVestingModuleEvent extends Enum {1918 export interface OrmlVestingModuleEvent extends Enum {1890 readonly isVestingScheduleAdded: boolean;1919 readonly isVestingScheduleAdded: boolean;1891 readonly asVestingScheduleAdded: {1920 readonly asVestingScheduleAdded: {1905 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';1934 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';1906 }1935 }190719361908 /** @name CumulusPalletXcmpQueueEvent (219) */1937 /** @name CumulusPalletXcmpQueueEvent (221) */1909 export interface CumulusPalletXcmpQueueEvent extends Enum {1938 export interface CumulusPalletXcmpQueueEvent extends Enum {1910 readonly isSuccess: boolean;1939 readonly isSuccess: boolean;1911 readonly asSuccess: Option<H256>;1940 readonly asSuccess: Option<H256>;1926 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';1955 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';1927 }1956 }192819571929 /** @name PalletXcmEvent (220) */1958 /** @name PalletXcmEvent (222) */1930 export interface PalletXcmEvent extends Enum {1959 export interface PalletXcmEvent extends Enum {1931 readonly isAttempted: boolean;1960 readonly isAttempted: boolean;1932 readonly asAttempted: XcmV2TraitsOutcome;1961 readonly asAttempted: XcmV2TraitsOutcome;1963 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';1992 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';1964 }1993 }196519941966 /** @name XcmV2TraitsOutcome (221) */1995 /** @name XcmV2TraitsOutcome (223) */1967 export interface XcmV2TraitsOutcome extends Enum {1996 export interface XcmV2TraitsOutcome extends Enum {1968 readonly isComplete: boolean;1997 readonly isComplete: boolean;1969 readonly asComplete: u64;1998 readonly asComplete: u64;1974 readonly type: 'Complete' | 'Incomplete' | 'Error';2003 readonly type: 'Complete' | 'Incomplete' | 'Error';1975 }2004 }197620051977 /** @name CumulusPalletXcmEvent (223) */2006 /** @name CumulusPalletXcmEvent (225) */1978 export interface CumulusPalletXcmEvent extends Enum {2007 export interface CumulusPalletXcmEvent extends Enum {1979 readonly isInvalidFormat: boolean;2008 readonly isInvalidFormat: boolean;1980 readonly asInvalidFormat: U8aFixed;2009 readonly asInvalidFormat: U8aFixed;1985 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';2014 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1986 }2015 }198720161988 /** @name CumulusPalletDmpQueueEvent (224) */2017 /** @name CumulusPalletDmpQueueEvent (226) */1989 export interface CumulusPalletDmpQueueEvent extends Enum {2018 export interface CumulusPalletDmpQueueEvent extends Enum {1990 readonly isInvalidFormat: boolean;2019 readonly isInvalidFormat: boolean;1991 readonly asInvalidFormat: U8aFixed;2020 readonly asInvalidFormat: U8aFixed;2002 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2031 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2003 }2032 }200420332005 /** @name PalletUniqueRawEvent (225) */2034 /** @name PalletUniqueRawEvent (227) */2006 export interface PalletUniqueRawEvent extends Enum {2035 export interface PalletUniqueRawEvent extends Enum {2007 readonly isCollectionSponsorRemoved: boolean;2036 readonly isCollectionSponsorRemoved: boolean;2008 readonly asCollectionSponsorRemoved: u32;2037 readonly asCollectionSponsorRemoved: u32;2037 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet' | 'VariableOnChainSchemaSet';2066 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet' | 'VariableOnChainSchemaSet';2038 }2067 }203920682040 /** @name PalletCommonEvent (226) */2069 /** @name PalletCommonEvent (228) */2041 export interface PalletCommonEvent extends Enum {2070 export interface PalletCommonEvent extends Enum {2042 readonly isCollectionCreated: boolean;2071 readonly isCollectionCreated: boolean;2043 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2072 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2054 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved';2083 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved';2055 }2084 }205620852057 /** @name PalletEvmEvent (227) */2086 /** @name PalletEvmEvent (229) */2058 export interface PalletEvmEvent extends Enum {2087 export interface PalletEvmEvent extends Enum {2059 readonly isLog: boolean;2088 readonly isLog: boolean;2060 readonly asLog: EthereumLog;2089 readonly asLog: EthereumLog;2073 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2102 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2074 }2103 }207521042076 /** @name EthereumLog (228) */2105 /** @name EthereumLog (230) */2077 export interface EthereumLog extends Struct {2106 export interface EthereumLog extends Struct {2078 readonly address: H160;2107 readonly address: H160;2079 readonly topics: Vec<H256>;2108 readonly topics: Vec<H256>;2080 readonly data: Bytes;2109 readonly data: Bytes;2081 }2110 }208221112083 /** @name PalletEthereumEvent (229) */2112 /** @name PalletEthereumEvent (231) */2084 export interface PalletEthereumEvent extends Enum {2113 export interface PalletEthereumEvent extends Enum {2085 readonly isExecuted: boolean;2114 readonly isExecuted: boolean;2086 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2115 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2087 readonly type: 'Executed';2116 readonly type: 'Executed';2088 }2117 }208921182090 /** @name EvmCoreErrorExitReason (230) */2119 /** @name EvmCoreErrorExitReason (232) */2091 export interface EvmCoreErrorExitReason extends Enum {2120 export interface EvmCoreErrorExitReason extends Enum {2092 readonly isSucceed: boolean;2121 readonly isSucceed: boolean;2093 readonly asSucceed: EvmCoreErrorExitSucceed;2122 readonly asSucceed: EvmCoreErrorExitSucceed;2100 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2129 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2101 }2130 }210221312103 /** @name EvmCoreErrorExitSucceed (231) */2132 /** @name EvmCoreErrorExitSucceed (233) */2104 export interface EvmCoreErrorExitSucceed extends Enum {2133 export interface EvmCoreErrorExitSucceed extends Enum {2105 readonly isStopped: boolean;2134 readonly isStopped: boolean;2106 readonly isReturned: boolean;2135 readonly isReturned: boolean;2107 readonly isSuicided: boolean;2136 readonly isSuicided: boolean;2108 readonly type: 'Stopped' | 'Returned' | 'Suicided';2137 readonly type: 'Stopped' | 'Returned' | 'Suicided';2109 }2138 }211021392111 /** @name EvmCoreErrorExitError (232) */2140 /** @name EvmCoreErrorExitError (234) */2112 export interface EvmCoreErrorExitError extends Enum {2141 export interface EvmCoreErrorExitError extends Enum {2113 readonly isStackUnderflow: boolean;2142 readonly isStackUnderflow: boolean;2114 readonly isStackOverflow: boolean;2143 readonly isStackOverflow: boolean;2129 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'InvalidCode' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other';2158 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'InvalidCode' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other';2130 }2159 }213121602132 /** @name EvmCoreErrorExitRevert (235) */2161 /** @name EvmCoreErrorExitRevert (237) */2133 export interface EvmCoreErrorExitRevert extends Enum {2162 export interface EvmCoreErrorExitRevert extends Enum {2134 readonly isReverted: boolean;2163 readonly isReverted: boolean;2135 readonly type: 'Reverted';2164 readonly type: 'Reverted';2136 }2165 }213721662138 /** @name EvmCoreErrorExitFatal (236) */2167 /** @name EvmCoreErrorExitFatal (238) */2139 export interface EvmCoreErrorExitFatal extends Enum {2168 export interface EvmCoreErrorExitFatal extends Enum {2140 readonly isNotSupported: boolean;2169 readonly isNotSupported: boolean;2141 readonly isUnhandledInterrupt: boolean;2170 readonly isUnhandledInterrupt: boolean;2146 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2175 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2147 }2176 }214821772149 /** @name FrameSystemPhase (237) */2178 /** @name FrameSystemPhase (239) */2150 export interface FrameSystemPhase extends Enum {2179 export interface FrameSystemPhase extends Enum {2151 readonly isApplyExtrinsic: boolean;2180 readonly isApplyExtrinsic: boolean;2152 readonly asApplyExtrinsic: u32;2181 readonly asApplyExtrinsic: u32;2155 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2184 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2156 }2185 }215721862158 /** @name FrameSystemLastRuntimeUpgradeInfo (239) */2187 /** @name FrameSystemLastRuntimeUpgradeInfo (241) */2159 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2188 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2160 readonly specVersion: Compact<u32>;2189 readonly specVersion: Compact<u32>;2161 readonly specName: Text;2190 readonly specName: Text;2162 }2191 }216321922164 /** @name FrameSystemLimitsBlockWeights (240) */2193 /** @name FrameSystemLimitsBlockWeights (242) */2165 export interface FrameSystemLimitsBlockWeights extends Struct {2194 export interface FrameSystemLimitsBlockWeights extends Struct {2166 readonly baseBlock: u64;2195 readonly baseBlock: u64;2167 readonly maxBlock: u64;2196 readonly maxBlock: u64;2168 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2197 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2169 }2198 }217021992171 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (241) */2200 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (243) */2172 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2201 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2173 readonly normal: FrameSystemLimitsWeightsPerClass;2202 readonly normal: FrameSystemLimitsWeightsPerClass;2174 readonly operational: FrameSystemLimitsWeightsPerClass;2203 readonly operational: FrameSystemLimitsWeightsPerClass;2175 readonly mandatory: FrameSystemLimitsWeightsPerClass;2204 readonly mandatory: FrameSystemLimitsWeightsPerClass;2176 }2205 }217722062178 /** @name FrameSystemLimitsWeightsPerClass (242) */2207 /** @name FrameSystemLimitsWeightsPerClass (244) */2179 export interface FrameSystemLimitsWeightsPerClass extends Struct {2208 export interface FrameSystemLimitsWeightsPerClass extends Struct {2180 readonly baseExtrinsic: u64;2209 readonly baseExtrinsic: u64;2181 readonly maxExtrinsic: Option<u64>;2210 readonly maxExtrinsic: Option<u64>;2182 readonly maxTotal: Option<u64>;2211 readonly maxTotal: Option<u64>;2183 readonly reserved: Option<u64>;2212 readonly reserved: Option<u64>;2184 }2213 }218522142186 /** @name FrameSystemLimitsBlockLength (244) */2215 /** @name FrameSystemLimitsBlockLength (246) */2187 export interface FrameSystemLimitsBlockLength extends Struct {2216 export interface FrameSystemLimitsBlockLength extends Struct {2188 readonly max: FrameSupportWeightsPerDispatchClassU32;2217 readonly max: FrameSupportWeightsPerDispatchClassU32;2189 }2218 }219022192191 /** @name FrameSupportWeightsPerDispatchClassU32 (245) */2220 /** @name FrameSupportWeightsPerDispatchClassU32 (247) */2192 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2221 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2193 readonly normal: u32;2222 readonly normal: u32;2194 readonly operational: u32;2223 readonly operational: u32;2195 readonly mandatory: u32;2224 readonly mandatory: u32;2196 }2225 }219722262198 /** @name FrameSupportWeightsRuntimeDbWeight (246) */2227 /** @name FrameSupportWeightsRuntimeDbWeight (248) */2199 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2228 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2200 readonly read: u64;2229 readonly read: u64;2201 readonly write: u64;2230 readonly write: u64;2202 }2231 }220322322204 /** @name SpVersionRuntimeVersion (247) */2233 /** @name SpVersionRuntimeVersion (249) */2205 export interface SpVersionRuntimeVersion extends Struct {2234 export interface SpVersionRuntimeVersion extends Struct {2206 readonly specName: Text;2235 readonly specName: Text;2207 readonly implName: Text;2236 readonly implName: Text;2213 readonly stateVersion: u8;2242 readonly stateVersion: u8;2214 }2243 }221522442216 /** @name FrameSystemError (251) */2245 /** @name FrameSystemError (253) */2217 export interface FrameSystemError extends Enum {2246 export interface FrameSystemError extends Enum {2218 readonly isInvalidSpecName: boolean;2247 readonly isInvalidSpecName: boolean;2219 readonly isSpecVersionNeedsToIncrease: boolean;2248 readonly isSpecVersionNeedsToIncrease: boolean;2224 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2253 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2225 }2254 }222622552227 /** @name OrmlVestingModuleError (253) */2256 /** @name OrmlVestingModuleError (255) */2228 export interface OrmlVestingModuleError extends Enum {2257 export interface OrmlVestingModuleError extends Enum {2229 readonly isZeroVestingPeriod: boolean;2258 readonly isZeroVestingPeriod: boolean;2230 readonly isZeroVestingPeriodCount: boolean;2259 readonly isZeroVestingPeriodCount: boolean;2235 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2264 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2236 }2265 }223722662238 /** @name CumulusPalletXcmpQueueInboundChannelDetails (255) */2267 /** @name CumulusPalletXcmpQueueInboundChannelDetails (257) */2239 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2268 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2240 readonly sender: u32;2269 readonly sender: u32;2241 readonly state: CumulusPalletXcmpQueueInboundState;2270 readonly state: CumulusPalletXcmpQueueInboundState;2242 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2271 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2243 }2272 }224422732245 /** @name CumulusPalletXcmpQueueInboundState (256) */2274 /** @name CumulusPalletXcmpQueueInboundState (258) */2246 export interface CumulusPalletXcmpQueueInboundState extends Enum {2275 export interface CumulusPalletXcmpQueueInboundState extends Enum {2247 readonly isOk: boolean;2276 readonly isOk: boolean;2248 readonly isSuspended: boolean;2277 readonly isSuspended: boolean;2249 readonly type: 'Ok' | 'Suspended';2278 readonly type: 'Ok' | 'Suspended';2250 }2279 }225122802252 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (259) */2281 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (261) */2253 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2282 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2254 readonly isConcatenatedVersionedXcm: boolean;2283 readonly isConcatenatedVersionedXcm: boolean;2255 readonly isConcatenatedEncodedBlob: boolean;2284 readonly isConcatenatedEncodedBlob: boolean;2256 readonly isSignals: boolean;2285 readonly isSignals: boolean;2257 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2286 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2258 }2287 }225922882260 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (262) */2289 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (264) */2261 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2290 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2262 readonly recipient: u32;2291 readonly recipient: u32;2263 readonly state: CumulusPalletXcmpQueueOutboundState;2292 readonly state: CumulusPalletXcmpQueueOutboundState;2266 readonly lastIndex: u16;2295 readonly lastIndex: u16;2267 }2296 }226822972269 /** @name CumulusPalletXcmpQueueOutboundState (263) */2298 /** @name CumulusPalletXcmpQueueOutboundState (265) */2270 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2299 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2271 readonly isOk: boolean;2300 readonly isOk: boolean;2272 readonly isSuspended: boolean;2301 readonly isSuspended: boolean;2273 readonly type: 'Ok' | 'Suspended';2302 readonly type: 'Ok' | 'Suspended';2274 }2303 }227523042276 /** @name CumulusPalletXcmpQueueQueueConfigData (265) */2305 /** @name CumulusPalletXcmpQueueQueueConfigData (267) */2277 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2306 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2278 readonly suspendThreshold: u32;2307 readonly suspendThreshold: u32;2279 readonly dropThreshold: u32;2308 readonly dropThreshold: u32;2283 readonly xcmpMaxIndividualWeight: u64;2312 readonly xcmpMaxIndividualWeight: u64;2284 }2313 }228523142286 /** @name CumulusPalletXcmpQueueError (267) */2315 /** @name CumulusPalletXcmpQueueError (269) */2287 export interface CumulusPalletXcmpQueueError extends Enum {2316 export interface CumulusPalletXcmpQueueError extends Enum {2288 readonly isFailedToSend: boolean;2317 readonly isFailedToSend: boolean;2289 readonly isBadXcmOrigin: boolean;2318 readonly isBadXcmOrigin: boolean;2293 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2322 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2294 }2323 }229523242296 /** @name PalletXcmError (268) */2325 /** @name PalletXcmError (270) */2297 export interface PalletXcmError extends Enum {2326 export interface PalletXcmError extends Enum {2298 readonly isUnreachable: boolean;2327 readonly isUnreachable: boolean;2299 readonly isSendFailure: boolean;2328 readonly isSendFailure: boolean;2311 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2340 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2312 }2341 }231323422314 /** @name CumulusPalletXcmError (269) */2343 /** @name CumulusPalletXcmError (271) */2315 export type CumulusPalletXcmError = Null;2344 export type CumulusPalletXcmError = Null;231623452317 /** @name CumulusPalletDmpQueueConfigData (270) */2346 /** @name CumulusPalletDmpQueueConfigData (272) */2318 export interface CumulusPalletDmpQueueConfigData extends Struct {2347 export interface CumulusPalletDmpQueueConfigData extends Struct {2319 readonly maxIndividual: u64;2348 readonly maxIndividual: u64;2320 }2349 }232123502322 /** @name CumulusPalletDmpQueuePageIndexData (271) */2351 /** @name CumulusPalletDmpQueuePageIndexData (273) */2323 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2352 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2324 readonly beginUsed: u32;2353 readonly beginUsed: u32;2325 readonly endUsed: u32;2354 readonly endUsed: u32;2326 readonly overweightCount: u64;2355 readonly overweightCount: u64;2327 }2356 }232823572329 /** @name CumulusPalletDmpQueueError (274) */2358 /** @name CumulusPalletDmpQueueError (276) */2330 export interface CumulusPalletDmpQueueError extends Enum {2359 export interface CumulusPalletDmpQueueError extends Enum {2331 readonly isUnknown: boolean;2360 readonly isUnknown: boolean;2332 readonly isOverLimit: boolean;2361 readonly isOverLimit: boolean;2333 readonly type: 'Unknown' | 'OverLimit';2362 readonly type: 'Unknown' | 'OverLimit';2334 }2363 }233523642336 /** @name PalletUniqueError (278) */2365 /** @name PalletUniqueError (280) */2337 export interface PalletUniqueError extends Enum {2366 export interface PalletUniqueError extends Enum {2338 readonly isCollectionDecimalPointLimitExceeded: boolean;2367 readonly isCollectionDecimalPointLimitExceeded: boolean;2339 readonly isConfirmUnsetSponsorFail: boolean;2368 readonly isConfirmUnsetSponsorFail: boolean;2340 readonly isEmptyArgument: boolean;2369 readonly isEmptyArgument: boolean;2341 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';2370 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';2342 }2371 }234323722344 /** @name UpDataStructsCollection (279) */2373 /** @name UpDataStructsCollection (281) */2345 export interface UpDataStructsCollection extends Struct {2374 export interface UpDataStructsCollection extends Struct {2346 readonly owner: AccountId32;2375 readonly owner: AccountId32;2347 readonly mode: UpDataStructsCollectionMode;2376 readonly mode: UpDataStructsCollectionMode;2359 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;2388 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;2360 }2389 }236123902362 /** @name UpDataStructsSponsorshipState (280) */2391 /** @name UpDataStructsSponsorshipState (282) */2363 export interface UpDataStructsSponsorshipState extends Enum {2392 export interface UpDataStructsSponsorshipState extends Enum {2364 readonly isDisabled: boolean;2393 readonly isDisabled: boolean;2365 readonly isUnconfirmed: boolean;2394 readonly isUnconfirmed: boolean;2369 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2398 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2370 }2399 }237124002372 /** @name UpDataStructsCollectionStats (283) */2401 /** @name UpDataStructsCollectionStats (285) */2373 export interface UpDataStructsCollectionStats extends Struct {2402 export interface UpDataStructsCollectionStats extends Struct {2374 readonly created: u32;2403 readonly created: u32;2375 readonly destroyed: u32;2404 readonly destroyed: u32;2376 readonly alive: u32;2405 readonly alive: u32;2377 }2406 }237824072379 /** @name PalletCommonError (284) */2408 /** @name PalletCommonError (286) */2380 export interface PalletCommonError extends Enum {2409 export interface PalletCommonError extends Enum {2381 readonly isCollectionNotFound: boolean;2410 readonly isCollectionNotFound: boolean;2382 readonly isMustBeTokenOwner: boolean;2411 readonly isMustBeTokenOwner: boolean;2404 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'TokenVariableDataLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation';2433 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'TokenVariableDataLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation';2405 }2434 }240624352407 /** @name PalletFungibleError (286) */2436 /** @name PalletFungibleError (288) */2408 export interface PalletFungibleError extends Enum {2437 export interface PalletFungibleError extends Enum {2409 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;2438 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;2410 readonly isFungibleItemsHaveNoId: boolean;2439 readonly isFungibleItemsHaveNoId: boolean;2411 readonly isFungibleItemsDontHaveData: boolean;2440 readonly isFungibleItemsDontHaveData: boolean;2412 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData';2441 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData';2413 }2442 }241424432415 /** @name PalletRefungibleItemData (287) */2444 /** @name PalletRefungibleItemData (289) */2416 export interface PalletRefungibleItemData extends Struct {2445 export interface PalletRefungibleItemData extends Struct {2417 readonly constData: Bytes;2446 readonly constData: Bytes;2418 readonly variableData: Bytes;2447 readonly variableData: Bytes;2419 }2448 }242024492421 /** @name PalletRefungibleError (291) */2450 /** @name PalletRefungibleError (293) */2422 export interface PalletRefungibleError extends Enum {2451 export interface PalletRefungibleError extends Enum {2423 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;2452 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;2424 readonly isWrongRefungiblePieces: boolean;2453 readonly isWrongRefungiblePieces: boolean;2425 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces';2454 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces';2426 }2455 }242724562428 /** @name PalletNonfungibleItemData (292) */2457 /** @name PalletNonfungibleItemData (294) */2429 export interface PalletNonfungibleItemData extends Struct {2458 export interface PalletNonfungibleItemData extends Struct {2430 readonly constData: Bytes;2459 readonly constData: Bytes;2431 readonly variableData: Bytes;2460 readonly variableData: Bytes;2432 readonly owner: PalletCommonAccountBasicCrossAccountIdRepr;2461 readonly owner: PalletCommonAccountBasicCrossAccountIdRepr;2433 }2462 }243424632435 /** @name PalletNonfungibleError (293) */2464 /** @name PalletNonfungibleError (295) */2436 export interface PalletNonfungibleError extends Enum {2465 export interface PalletNonfungibleError extends Enum {2437 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2466 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2438 readonly isNonfungibleItemsHaveNoAmount: boolean;2467 readonly isNonfungibleItemsHaveNoAmount: boolean;2439 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';2468 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';2440 }2469 }244124702442 /** @name PalletEvmError (295) */2471 /** @name PalletEvmError (297) */2443 export interface PalletEvmError extends Enum {2472 export interface PalletEvmError extends Enum {2444 readonly isBalanceLow: boolean;2473 readonly isBalanceLow: boolean;2445 readonly isFeeOverflow: boolean;2474 readonly isFeeOverflow: boolean;2450 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';2479 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';2451 }2480 }245224812453 /** @name FpRpcTransactionStatus (298) */2482 /** @name FpRpcTransactionStatus (300) */2454 export interface FpRpcTransactionStatus extends Struct {2483 export interface FpRpcTransactionStatus extends Struct {2455 readonly transactionHash: H256;2484 readonly transactionHash: H256;2456 readonly transactionIndex: u32;2485 readonly transactionIndex: u32;2461 readonly logsBloom: EthbloomBloom;2490 readonly logsBloom: EthbloomBloom;2462 }2491 }246324922464 /** @name EthbloomBloom (301) */2493 /** @name EthbloomBloom (303) */2465 export interface EthbloomBloom extends U8aFixed {}2494 export interface EthbloomBloom extends U8aFixed {}246624952467 /** @name EthereumReceiptReceiptV3 (303) */2496 /** @name EthereumReceiptReceiptV3 (305) */2468 export interface EthereumReceiptReceiptV3 extends Enum {2497 export interface EthereumReceiptReceiptV3 extends Enum {2469 readonly isLegacy: boolean;2498 readonly isLegacy: boolean;2470 readonly asLegacy: EthereumReceiptEip658ReceiptData;2499 readonly asLegacy: EthereumReceiptEip658ReceiptData;2475 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2504 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2476 }2505 }247725062478 /** @name EthereumReceiptEip658ReceiptData (304) */2507 /** @name EthereumReceiptEip658ReceiptData (306) */2479 export interface EthereumReceiptEip658ReceiptData extends Struct {2508 export interface EthereumReceiptEip658ReceiptData extends Struct {2480 readonly statusCode: u8;2509 readonly statusCode: u8;2481 readonly usedGas: U256;2510 readonly usedGas: U256;2482 readonly logsBloom: EthbloomBloom;2511 readonly logsBloom: EthbloomBloom;2483 readonly logs: Vec<EthereumLog>;2512 readonly logs: Vec<EthereumLog>;2484 }2513 }248525142486 /** @name EthereumBlock (305) */2515 /** @name EthereumBlock (307) */2487 export interface EthereumBlock extends Struct {2516 export interface EthereumBlock extends Struct {2488 readonly header: EthereumHeader;2517 readonly header: EthereumHeader;2489 readonly transactions: Vec<EthereumTransactionTransactionV2>;2518 readonly transactions: Vec<EthereumTransactionTransactionV2>;2490 readonly ommers: Vec<EthereumHeader>;2519 readonly ommers: Vec<EthereumHeader>;2491 }2520 }249225212493 /** @name EthereumHeader (306) */2522 /** @name EthereumHeader (308) */2494 export interface EthereumHeader extends Struct {2523 export interface EthereumHeader extends Struct {2495 readonly parentHash: H256;2524 readonly parentHash: H256;2496 readonly ommersHash: H256;2525 readonly ommersHash: H256;2509 readonly nonce: EthereumTypesHashH64;2538 readonly nonce: EthereumTypesHashH64;2510 }2539 }251125402512 /** @name EthereumTypesHashH64 (307) */2541 /** @name EthereumTypesHashH64 (309) */2513 export interface EthereumTypesHashH64 extends U8aFixed {}2542 export interface EthereumTypesHashH64 extends U8aFixed {}251425432515 /** @name PalletEthereumError (312) */2544 /** @name PalletEthereumError (314) */2516 export interface PalletEthereumError extends Enum {2545 export interface PalletEthereumError extends Enum {2517 readonly isInvalidSignature: boolean;2546 readonly isInvalidSignature: boolean;2518 readonly isPreLogExists: boolean;2547 readonly isPreLogExists: boolean;2519 readonly type: 'InvalidSignature' | 'PreLogExists';2548 readonly type: 'InvalidSignature' | 'PreLogExists';2520 }2549 }252125502522 /** @name PalletEvmCoderSubstrateError (313) */2551 /** @name PalletEvmCoderSubstrateError (315) */2523 export interface PalletEvmCoderSubstrateError extends Enum {2552 export interface PalletEvmCoderSubstrateError extends Enum {2524 readonly isOutOfGas: boolean;2553 readonly isOutOfGas: boolean;2525 readonly isOutOfFund: boolean;2554 readonly isOutOfFund: boolean;2526 readonly type: 'OutOfGas' | 'OutOfFund';2555 readonly type: 'OutOfGas' | 'OutOfFund';2527 }2556 }252825572529 /** @name PalletEvmContractHelpersSponsoringModeT (314) */2558 /** @name PalletEvmContractHelpersSponsoringModeT (316) */2530 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {2559 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {2531 readonly isDisabled: boolean;2560 readonly isDisabled: boolean;2532 readonly isAllowlisted: boolean;2561 readonly isAllowlisted: boolean;2533 readonly isGenerous: boolean;2562 readonly isGenerous: boolean;2534 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';2563 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';2535 }2564 }253625652537 /** @name PalletEvmContractHelpersError (316) */2566 /** @name PalletEvmContractHelpersError (318) */2538 export interface PalletEvmContractHelpersError extends Enum {2567 export interface PalletEvmContractHelpersError extends Enum {2539 readonly isNoPermission: boolean;2568 readonly isNoPermission: boolean;2540 readonly type: 'NoPermission';2569 readonly type: 'NoPermission';2541 }2570 }254225712543 /** @name PalletEvmMigrationError (317) */2572 /** @name PalletEvmMigrationError (319) */2544 export interface PalletEvmMigrationError extends Enum {2573 export interface PalletEvmMigrationError extends Enum {2545 readonly isAccountNotEmpty: boolean;2574 readonly isAccountNotEmpty: boolean;2546 readonly isAccountIsNotMigrating: boolean;2575 readonly isAccountIsNotMigrating: boolean;2547 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';2576 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';2548 }2577 }254925782550 /** @name SpRuntimeMultiSignature (319) */2579 /** @name SpRuntimeMultiSignature (321) */2551 export interface SpRuntimeMultiSignature extends Enum {2580 export interface SpRuntimeMultiSignature extends Enum {2552 readonly isEd25519: boolean;2581 readonly isEd25519: boolean;2553 readonly asEd25519: SpCoreEd25519Signature;2582 readonly asEd25519: SpCoreEd25519Signature;2558 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2587 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2559 }2588 }256025892561 /** @name SpCoreEd25519Signature (320) */2590 /** @name SpCoreEd25519Signature (322) */2562 export interface SpCoreEd25519Signature extends U8aFixed {}2591 export interface SpCoreEd25519Signature extends U8aFixed {}256325922564 /** @name SpCoreSr25519Signature (322) */2593 /** @name SpCoreSr25519Signature (324) */2565 export interface SpCoreSr25519Signature extends U8aFixed {}2594 export interface SpCoreSr25519Signature extends U8aFixed {}256625952567 /** @name SpCoreEcdsaSignature (323) */2596 /** @name SpCoreEcdsaSignature (325) */2568 export interface SpCoreEcdsaSignature extends U8aFixed {}2597 export interface SpCoreEcdsaSignature extends U8aFixed {}256925982570 /** @name FrameSystemExtensionsCheckSpecVersion (326) */2599 /** @name FrameSystemExtensionsCheckSpecVersion (328) */2571 export type FrameSystemExtensionsCheckSpecVersion = Null;2600 export type FrameSystemExtensionsCheckSpecVersion = Null;257226012573 /** @name FrameSystemExtensionsCheckGenesis (327) */2602 /** @name FrameSystemExtensionsCheckGenesis (329) */2574 export type FrameSystemExtensionsCheckGenesis = Null;2603 export type FrameSystemExtensionsCheckGenesis = Null;257526042576 /** @name FrameSystemExtensionsCheckNonce (330) */2605 /** @name FrameSystemExtensionsCheckNonce (332) */2577 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}2606 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}257826072579 /** @name FrameSystemExtensionsCheckWeight (331) */2608 /** @name FrameSystemExtensionsCheckWeight (333) */2580 export type FrameSystemExtensionsCheckWeight = Null;2609 export type FrameSystemExtensionsCheckWeight = Null;258126102582 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (332) */2611 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (334) */2583 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}2612 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}258426132585 /** @name UniqueRuntimeRuntime (333) */2614 /** @name UniqueRuntimeRuntime (335) */2586 export type UniqueRuntimeRuntime = Null;2615 export type UniqueRuntimeRuntime = Null;258726162588} // declare module2617} // declare moduletests/src/interfaces/unique/types.tsdiffbeforeafterboth133 readonly index: u64;133 readonly index: u64;134 readonly weightLimit: u64;134 readonly weightLimit: u64;135 } & Struct;135 } & Struct;136 readonly isSuspendXcmExecution: boolean;137 readonly isResumeXcmExecution: boolean;138 readonly isUpdateSuspendThreshold: boolean;139 readonly asUpdateSuspendThreshold: {140 readonly new_: u32;141 } & Struct;142 readonly isUpdateDropThreshold: boolean;143 readonly asUpdateDropThreshold: {144 readonly new_: u32;145 } & Struct;146 readonly isUpdateResumeThreshold: boolean;147 readonly asUpdateResumeThreshold: {148 readonly new_: u32;149 } & Struct;150 readonly isUpdateThresholdWeight: boolean;151 readonly asUpdateThresholdWeight: {152 readonly new_: u64;153 } & Struct;154 readonly isUpdateWeightRestrictDecay: boolean;155 readonly asUpdateWeightRestrictDecay: {156 readonly new_: u64;157 } & Struct;158 readonly isUpdateXcmpMaxIndividualWeight: boolean;159 readonly asUpdateXcmpMaxIndividualWeight: {160 readonly new_: u64;161 } & Struct;136 readonly type: 'ServiceOverweight';162 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';137}163}138164139/** @name CumulusPalletXcmpQueueError */165/** @name CumulusPalletXcmpQueueError */1634 readonly isCannotLookup: boolean;1660 readonly isCannotLookup: boolean;1635 readonly isBadOrigin: boolean;1661 readonly isBadOrigin: boolean;1636 readonly isModule: boolean;1662 readonly isModule: boolean;1637 readonly asModule: {1663 readonly asModule: SpRuntimeModuleError;1638 readonly index: u8;1639 readonly error: u8;1640 } & Struct;1641 readonly isConsumerRemaining: boolean;1664 readonly isConsumerRemaining: boolean;1642 readonly isNoProviders: boolean;1665 readonly isNoProviders: boolean;1643 readonly isTooManyConsumers: boolean;1666 readonly isTooManyConsumers: boolean;1648 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic';1671 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic';1649}1672}16731674/** @name SpRuntimeModuleError */1675export interface SpRuntimeModuleError extends Struct {1676 readonly index: u8;1677 readonly error: u8;1678}165016791651/** @name SpRuntimeMultiSignature */1680/** @name SpRuntimeMultiSignature */1652export interface SpRuntimeMultiSignature extends Enum {1681export interface SpRuntimeMultiSignature extends Enum {1810 readonly isSponsoringDisabled: boolean;1839 readonly isSponsoringDisabled: boolean;1811 readonly isBlocks: boolean;1840 readonly isBlocks: boolean;1812 readonly asBlocks: u32;1841 readonly asBlocks: u32;1842 readonly type: 'SponsoringDisabled' | 'Blocks';1813}1843}181418441815/** @name UpDataStructsSponsorshipState */1845/** @name UpDataStructsSponsorshipState */