From ec59960f4b8749f87906fc87eee15fe7b984e6ad Mon Sep 17 00:00:00 2001 From: Shunji Zhan Date: Thu, 28 Mar 2024 11:05:22 +0800 Subject: [PATCH] runtime 2240 (#57) * runtime 2240 * update lock * Revert "update lock" This reverts commit 429a2a25429d222537b3f7c3fa65ed2e0f2bfc19. * Revert "Revert "update lock"" This reverts commit 27fe9143812f89c0b6c6f703813211b8339daffd. * fix --- packages/types/package.json | 2 +- .../src/interfaces/augment-api-consts.ts | 16 + .../src/interfaces/augment-api-errors.ts | 46 +- .../src/interfaces/augment-api-events.ts | 41 +- .../types/src/interfaces/augment-api-query.ts | 26 +- .../types/src/interfaces/augment-api-tx.ts | 20 +- packages/types/src/interfaces/lookup.ts | 1115 ++++++++-------- packages/types/src/interfaces/registry.ts | 21 +- packages/types/src/interfaces/types-lookup.ts | 1162 +++++++++-------- 9 files changed, 1301 insertions(+), 1148 deletions(-) diff --git a/packages/types/package.json b/packages/types/package.json index 8ed0404..fe0024d 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@acala-network/types", - "version": "6.1.1-0", + "version": "6.1.0", "description": "Acala types for @polkadot/api", "author": "Acala Developers ", "license": "Apache-2.0", diff --git a/packages/types/src/interfaces/augment-api-consts.ts b/packages/types/src/interfaces/augment-api-consts.ts index 9c01c36..8f2d7ab 100644 --- a/packages/types/src/interfaces/augment-api-consts.ts +++ b/packages/types/src/interfaces/augment-api-consts.ts @@ -259,6 +259,15 @@ declare module '@polkadot/api-base/types/consts' { **/ [key: string]: Codec; }; + messageQueue: { + heapSize: u32 & AugmentedConst; + maxStale: u32 & AugmentedConst; + serviceWeight: Option & AugmentedConst; + /** + * Generic const + **/ + [key: string]: Codec; + }; multisig: { depositBase: u128 & AugmentedConst; depositFactor: u128 & AugmentedConst; @@ -423,6 +432,13 @@ declare module '@polkadot/api-base/types/consts' { **/ [key: string]: Codec; }; + xcmpQueue: { + maxInboundSuspended: u32 & AugmentedConst; + /** + * Generic const + **/ + [key: string]: Codec; + }; xTokens: { baseXcmWeight: SpWeightsWeightV2Weight & AugmentedConst; selfLocation: StagingXcmV3MultiLocation & AugmentedConst; diff --git a/packages/types/src/interfaces/augment-api-errors.ts b/packages/types/src/interfaces/augment-api-errors.ts index d6ad6a7..e679dbc 100644 --- a/packages/types/src/interfaces/augment-api-errors.ts +++ b/packages/types/src/interfaces/augment-api-errors.ts @@ -163,12 +163,6 @@ declare module '@polkadot/api-base/types/errors' { **/ [key: string]: AugmentedError; }; - cumulusXcm: { - /** - * Generic error - **/ - [key: string]: AugmentedError; - }; currencies: { AmountIntoBalanceFailed: AugmentedError; BalanceTooLow: AugmentedError; @@ -251,14 +245,6 @@ declare module '@polkadot/api-base/types/errors' { **/ [key: string]: AugmentedError; }; - dmpQueue: { - OverLimit: AugmentedError; - Unknown: AugmentedError; - /** - * Generic error - **/ - [key: string]: AugmentedError; - }; earning: { BelowMinBondThreshold: AugmentedError; MaxUnlockChunksExceeded: AugmentedError; @@ -445,6 +431,21 @@ declare module '@polkadot/api-base/types/errors' { **/ [key: string]: AugmentedError; }; + messageQueue: { + AlreadyProcessed: AugmentedError; + InsufficientWeight: AugmentedError; + NoMessage: AugmentedError; + NoPage: AugmentedError; + NotReapable: AugmentedError; + Queued: AugmentedError; + QueuePaused: AugmentedError; + RecursiveDisallowed: AugmentedError; + TemporarilyUnprocessable: AugmentedError; + /** + * Generic error + **/ + [key: string]: AugmentedError; + }; multisig: { AlreadyApproved: AugmentedError; AlreadyStored: AugmentedError; @@ -538,20 +539,25 @@ declare module '@polkadot/api-base/types/errors' { AlreadySubscribed: AugmentedError; BadLocation: AugmentedError; BadVersion: AugmentedError; + CannotCheckOutTeleport: AugmentedError; CannotReanchor: AugmentedError; DestinationNotInvertible: AugmentedError; Empty: AugmentedError; FeesNotMet: AugmentedError; Filtered: AugmentedError; InUse: AugmentedError; - InvalidAsset: AugmentedError; + InvalidAssetNotConcrete: AugmentedError; + InvalidAssetUnknownReserve: AugmentedError; + InvalidAssetUnsupportedReserve: AugmentedError; InvalidOrigin: AugmentedError; + LocalExecutionIncomplete: AugmentedError; LockNotFound: AugmentedError; LowBalance: AugmentedError; NoSubscription: AugmentedError; SendFailure: AugmentedError; TooManyAssets: AugmentedError; TooManyLocks: AugmentedError; + TooManyReserves: AugmentedError; Unreachable: AugmentedError; UnweighableMessage: AugmentedError; /** @@ -665,7 +671,9 @@ declare module '@polkadot/api-base/types/errors' { InvalidSpecName: AugmentedError; NonDefaultComposite: AugmentedError; NonZeroRefCount: AugmentedError; + NothingAuthorized: AugmentedError; SpecVersionNeedsToIncrease: AugmentedError; + Unauthorized: AugmentedError; /** * Generic error **/ @@ -798,11 +806,9 @@ declare module '@polkadot/api-base/types/errors' { [key: string]: AugmentedError; }; xcmpQueue: { - BadOverweightIndex: AugmentedError; - BadXcm: AugmentedError; - BadXcmOrigin: AugmentedError; - FailedToSend: AugmentedError; - WeightOverLimit: AugmentedError; + AlreadyResumed: AugmentedError; + AlreadySuspended: AugmentedError; + BadQueueConfig: AugmentedError; /** * Generic error **/ diff --git a/packages/types/src/interfaces/augment-api-events.ts b/packages/types/src/interfaces/augment-api-events.ts index b88b7ab..402fd97 100644 --- a/packages/types/src/interfaces/augment-api-events.ts +++ b/packages/types/src/interfaces/augment-api-events.ts @@ -9,7 +9,7 @@ import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types'; import type { Bytes, Null, Option, Result, U8aFixed, Vec, bool, i128, i32, u128, u16, u32, u64, u8 } from '@polkadot/types-codec'; import type { ITuple } from '@polkadot/types-codec/types'; import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime'; -import type { AcalaPrimitivesCurrencyAssetIds, AcalaPrimitivesCurrencyAssetMetadata, AcalaPrimitivesCurrencyCurrencyId, AcalaPrimitivesTradingPair, AcalaRuntimeOriginCaller, AcalaRuntimeRuntimeParameters, AcalaRuntimeScheduledTasks, EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, ModuleHomaModuleUnlockChunk, ModuleSupportIncentivesPoolId, ModuleXcmInterfaceModuleXcmInterfaceOperation, OrmlVestingVestingSchedule, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletDemocracyVoteThreshold, PalletMultisigTimepoint, RuntimeCommonProxyType, SpRuntimeDispatchError, SpWeightsWeightV2Weight, StagingXcmV3MultiLocation, XcmV3MultiAsset, XcmV3MultiassetMultiAssets, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup'; +import type { AcalaPrimitivesCurrencyAssetIds, AcalaPrimitivesCurrencyAssetMetadata, AcalaPrimitivesCurrencyCurrencyId, AcalaPrimitivesTradingPair, AcalaRuntimeOriginCaller, AcalaRuntimeRuntimeParameters, AcalaRuntimeScheduledTasks, CumulusPrimitivesCoreAggregateMessageOrigin, EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportMessagesProcessMessageError, FrameSupportTokensMiscBalanceStatus, ModuleHomaModuleUnlockChunk, ModuleSupportIncentivesPoolId, ModuleXcmInterfaceModuleXcmInterfaceOperation, OrmlVestingVestingSchedule, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletDemocracyVoteThreshold, PalletMultisigTimepoint, RuntimeCommonProxyType, SpRuntimeDispatchError, SpWeightsWeightV2Weight, StagingXcmV3MultiLocation, XcmV3MultiAsset, XcmV3MultiassetMultiAssets, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup'; export type __AugmentedEvent = AugmentedEvent; @@ -202,13 +202,17 @@ declare module '@polkadot/api-base/types/events' { [key: string]: AugmentedEvent; }; dmpQueue: { - ExecutedDownward: AugmentedEvent; - InvalidFormat: AugmentedEvent; - MaxMessagesExhausted: AugmentedEvent; - OverweightEnqueued: AugmentedEvent; - OverweightServiced: AugmentedEvent; - UnsupportedVersion: AugmentedEvent; - WeightExhausted: AugmentedEvent; + CleanedSome: AugmentedEvent; + Completed: AugmentedEvent; + CompletedExport: AugmentedEvent; + CompletedOverweightExport: AugmentedEvent; + Exported: AugmentedEvent; + ExportedOverweight: AugmentedEvent; + ExportFailed: AugmentedEvent; + ExportOverweightFailed: AugmentedEvent; + StartedCleanup: AugmentedEvent; + StartedExport: AugmentedEvent; + StartedOverweightExport: AugmentedEvent; /** * Generic event **/ @@ -402,6 +406,16 @@ declare module '@polkadot/api-base/types/events' { **/ [key: string]: AugmentedEvent; }; + messageQueue: { + OverweightEnqueued: AugmentedEvent; + PageReaped: AugmentedEvent; + Processed: AugmentedEvent; + ProcessingFailed: AugmentedEvent; + /** + * Generic event + **/ + [key: string]: AugmentedEvent; + }; multisig: { MultisigApproval: AugmentedEvent; MultisigCancelled: AugmentedEvent; @@ -446,7 +460,6 @@ declare module '@polkadot/api-base/types/events' { parachainSystem: { DownwardMessagesProcessed: AugmentedEvent; DownwardMessagesReceived: AugmentedEvent; - UpgradeAuthorized: AugmentedEvent; UpwardMessageSent: AugmentedEvent], { messageHash: Option }>; ValidationFunctionApplied: AugmentedEvent; ValidationFunctionDiscarded: AugmentedEvent; @@ -565,7 +578,8 @@ declare module '@polkadot/api-base/types/events' { [key: string]: AugmentedEvent; }; sudo: { - KeyChanged: AugmentedEvent], { oldSudoer: Option }>; + KeyChanged: AugmentedEvent, new_: AccountId32], { old: Option, new_: AccountId32 }>; + KeyRemoved: AugmentedEvent; Sudid: AugmentedEvent], { sudoResult: Result }>; SudoAsDone: AugmentedEvent], { sudoResult: Result }>; /** @@ -580,6 +594,7 @@ declare module '@polkadot/api-base/types/events' { KilledAccount: AugmentedEvent; NewAccount: AugmentedEvent; Remarked: AugmentedEvent; + UpgradeAuthorized: AugmentedEvent; /** * Generic event **/ @@ -722,12 +737,6 @@ declare module '@polkadot/api-base/types/events' { [key: string]: AugmentedEvent; }; xcmpQueue: { - BadFormat: AugmentedEvent; - BadVersion: AugmentedEvent; - Fail: AugmentedEvent; - OverweightEnqueued: AugmentedEvent; - OverweightServiced: AugmentedEvent; - Success: AugmentedEvent; XcmpMessageSent: AugmentedEvent; /** * Generic event diff --git a/packages/types/src/interfaces/augment-api-query.ts b/packages/types/src/interfaces/augment-api-query.ts index 78240c0..d1959af 100644 --- a/packages/types/src/interfaces/augment-api-query.ts +++ b/packages/types/src/interfaces/augment-api-query.ts @@ -9,7 +9,7 @@ import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/ import type { BTreeMap, BTreeSet, Bytes, Null, Option, Struct, U256, U8aFixed, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec'; import type { AnyNumber, ITuple } from '@polkadot/types-codec/types'; import type { AccountId32, Call, H160, H256 } from '@polkadot/types/interfaces/runtime'; -import type { AcalaPrimitivesBondingLedgerBondingLedger, AcalaPrimitivesCurrencyAssetIds, AcalaPrimitivesCurrencyAssetMetadata, AcalaPrimitivesCurrencyCurrencyId, AcalaPrimitivesPosition, AcalaPrimitivesTradingPair, AcalaRuntimeRuntimeHoldReason, AcalaRuntimeRuntimeParametersKey, AcalaRuntimeRuntimeParametersValue, AcalaRuntimeScheduledTasks, AcalaRuntimeSessionKeys, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemUnincludedSegmentAncestor, CumulusPalletParachainSystemUnincludedSegmentSegmentTracker, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, FrameSupportDispatchPerDispatchClassWeight, FrameSupportPreimagesBounded, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, ModuleAuctionManagerCollateralAuctionItem, ModuleCdpEngineRiskManagementParams, ModuleDexTradingPairStatus, ModuleEvmModuleAccountInfo, ModuleEvmModuleCodeInfo, ModuleHomaModuleStakingLedger, ModuleSupportDexAggregatedSwapPath, ModuleSupportIncentivesPoolId, ModuleXcmInterfaceModuleXcmInterfaceOperation, NutsfinanceStableAssetStableAssetPoolInfo, OrmlNftClassInfo, OrmlNftTokenInfo, OrmlOracleModuleTimestampedValue, OrmlRewardsPoolInfo, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlTraitsAuctionAuctionInfo, OrmlUtilitiesOrderedSet, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesIdAmount, PalletBalancesReserveData, PalletBountiesBounty, PalletCollectiveVotes, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletMultisigMultisig, PalletPreimageOldRequestStatus, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyProxyDefinition, PalletSchedulerScheduled, PalletTipsOpenTip, PalletTreasuryProposal, PalletTreasurySpendStatus, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV6AbridgedHostConfiguration, PolkadotPrimitivesV6PersistedValidationData, PolkadotPrimitivesV6UpgradeGoAhead, PolkadotPrimitivesV6UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, StagingXcmV3MultiLocation, XcmVersionedAssetId, XcmVersionedMultiLocation } from '@polkadot/types/lookup'; +import type { AcalaPrimitivesBondingLedgerBondingLedger, AcalaPrimitivesCurrencyAssetIds, AcalaPrimitivesCurrencyAssetMetadata, AcalaPrimitivesCurrencyCurrencyId, AcalaPrimitivesPosition, AcalaPrimitivesTradingPair, AcalaRuntimeRuntimeHoldReason, AcalaRuntimeRuntimeParametersKey, AcalaRuntimeRuntimeParametersValue, AcalaRuntimeScheduledTasks, AcalaRuntimeSessionKeys, CumulusPalletDmpQueueMigrationState, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemUnincludedSegmentAncestor, CumulusPalletParachainSystemUnincludedSegmentSegmentTracker, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesCoreAggregateMessageOrigin, FrameSupportDispatchPerDispatchClassWeight, FrameSupportPreimagesBounded, FrameSystemAccountInfo, FrameSystemCodeUpgradeAuthorization, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, ModuleAuctionManagerCollateralAuctionItem, ModuleCdpEngineRiskManagementParams, ModuleDexTradingPairStatus, ModuleEvmModuleAccountInfo, ModuleEvmModuleCodeInfo, ModuleHomaModuleStakingLedger, ModuleSupportDexAggregatedSwapPath, ModuleSupportIncentivesPoolId, ModuleTransactionPaymentModuleChargeFeeMethod, ModuleXcmInterfaceModuleXcmInterfaceOperation, NutsfinanceStableAssetStableAssetPoolInfo, OrmlNftClassInfo, OrmlNftTokenInfo, OrmlOracleModuleTimestampedValue, OrmlRewardsPoolInfo, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlTraitsAuctionAuctionInfo, OrmlUtilitiesOrderedSet, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesIdAmount, PalletBalancesReserveData, PalletBountiesBounty, PalletCollectiveVotes, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletMessageQueueBookState, PalletMessageQueuePage, PalletMultisigMultisig, PalletPreimageOldRequestStatus, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyProxyDefinition, PalletSchedulerScheduled, PalletTipsOpenTip, PalletTreasuryProposal, PalletTreasurySpendStatus, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV6AbridgedHostConfiguration, PolkadotPrimitivesV6PersistedValidationData, PolkadotPrimitivesV6UpgradeGoAhead, PolkadotPrimitivesV6UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, StagingXcmV3MultiLocation, XcmVersionedAssetId, XcmVersionedMultiLocation } from '@polkadot/types/lookup'; import type { Observable } from '@polkadot/types/types'; export type __AugmentedQuery = AugmentedQuery unknown>; @@ -188,11 +188,7 @@ declare module '@polkadot/api-base/types/storage' { [key: string]: QueryableStorageEntry; }; dmpQueue: { - configuration: AugmentedQuery Observable, []> & QueryableStorageEntry; - counterForOverweight: AugmentedQuery Observable, []> & QueryableStorageEntry; - overweight: AugmentedQuery Observable>>, [u64]> & QueryableStorageEntry; - pageIndex: AugmentedQuery Observable, []> & QueryableStorageEntry; - pages: AugmentedQuery Observable>>, [u32]> & QueryableStorageEntry; + migrationStatus: AugmentedQuery Observable, []> & QueryableStorageEntry; /** * Generic query **/ @@ -357,6 +353,15 @@ declare module '@polkadot/api-base/types/storage' { **/ [key: string]: QueryableStorageEntry; }; + messageQueue: { + bookStateFor: AugmentedQuery Observable, [CumulusPrimitivesCoreAggregateMessageOrigin]> & QueryableStorageEntry; + pages: AugmentedQuery Observable>, [CumulusPrimitivesCoreAggregateMessageOrigin, u32]> & QueryableStorageEntry; + serviceHead: AugmentedQuery Observable>, []> & QueryableStorageEntry; + /** + * Generic query + **/ + [key: string]: QueryableStorageEntry; + }; multisig: { multisigs: AugmentedQuery Observable>, [AccountId32, U8aFixed]> & QueryableStorageEntry; /** @@ -393,7 +398,6 @@ declare module '@polkadot/api-base/types/storage' { parachainSystem: { aggregatedUnincludedSegment: AugmentedQuery Observable>, []> & QueryableStorageEntry; announcedHrmpMessagesPerCandidate: AugmentedQuery Observable, []> & QueryableStorageEntry; - authorizedUpgrade: AugmentedQuery Observable>, []> & QueryableStorageEntry; customValidationHeadData: AugmentedQuery Observable>, []> & QueryableStorageEntry; didSetValidationCode: AugmentedQuery Observable, []> & QueryableStorageEntry; hostConfiguration: AugmentedQuery Observable>, []> & QueryableStorageEntry; @@ -527,6 +531,7 @@ declare module '@polkadot/api-base/types/storage' { system: { account: AugmentedQuery Observable, [AccountId32]> & QueryableStorageEntry; allExtrinsicsLen: AugmentedQuery Observable>, []> & QueryableStorageEntry; + authorizedUpgrade: AugmentedQuery Observable>, []> & QueryableStorageEntry; blockHash: AugmentedQuery Observable, [u32]> & QueryableStorageEntry; blockWeight: AugmentedQuery Observable, []> & QueryableStorageEntry; digest: AugmentedQuery Observable, []> & QueryableStorageEntry; @@ -604,6 +609,7 @@ declare module '@polkadot/api-base/types/storage' { alternativeFeeSwapPath: AugmentedQuery Observable>>, [AccountId32]> & QueryableStorageEntry; globalFeeSwapPath: AugmentedQuery Observable>>, [AcalaPrimitivesCurrencyCurrencyId]> & QueryableStorageEntry; nextFeeMultiplier: AugmentedQuery Observable, []> & QueryableStorageEntry; + overrideChargeFeeMethod: AugmentedQuery Observable>, []> & QueryableStorageEntry; poolSize: AugmentedQuery Observable, [AcalaPrimitivesCurrencyCurrencyId]> & QueryableStorageEntry; swapBalanceThreshold: AugmentedQuery Observable, [AcalaPrimitivesCurrencyCurrencyId]> & QueryableStorageEntry; tokenExchangeRate: AugmentedQuery Observable>, [AcalaPrimitivesCurrencyCurrencyId]> & QueryableStorageEntry; @@ -647,14 +653,10 @@ declare module '@polkadot/api-base/types/storage' { [key: string]: QueryableStorageEntry; }; xcmpQueue: { - counterForOverweight: AugmentedQuery Observable, []> & QueryableStorageEntry; deliveryFeeFactor: AugmentedQuery Observable, [u32]> & QueryableStorageEntry; - inboundXcmpMessages: AugmentedQuery Observable, [u32, u32]> & QueryableStorageEntry; - inboundXcmpStatus: AugmentedQuery Observable>, []> & QueryableStorageEntry; + inboundXcmpSuspended: AugmentedQuery Observable>, []> & QueryableStorageEntry; outboundXcmpMessages: AugmentedQuery Observable, [u32, u16]> & QueryableStorageEntry; outboundXcmpStatus: AugmentedQuery Observable>, []> & QueryableStorageEntry; - overweight: AugmentedQuery Observable>>, [u64]> & QueryableStorageEntry; - overweightCount: AugmentedQuery Observable, []> & QueryableStorageEntry; queueConfig: AugmentedQuery Observable, []> & QueryableStorageEntry; queueSuspended: AugmentedQuery Observable, []> & QueryableStorageEntry; signalMessages: AugmentedQuery Observable, [u32]> & QueryableStorageEntry; diff --git a/packages/types/src/interfaces/augment-api-tx.ts b/packages/types/src/interfaces/augment-api-tx.ts index ba5a271..9ad0764 100644 --- a/packages/types/src/interfaces/augment-api-tx.ts +++ b/packages/types/src/interfaces/augment-api-tx.ts @@ -9,7 +9,7 @@ import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableE import type { BTreeMap, Bytes, Compact, Null, Option, U8aFixed, Vec, bool, i128, u128, u16, u32, u64, u8 } from '@polkadot/types-codec'; import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types'; import type { AccountId32, Call, H160, H256, MultiAddress } from '@polkadot/types/interfaces/runtime'; -import type { AcalaPrimitivesAuthoritysOriginId, AcalaPrimitivesCurrencyAssetMetadata, AcalaPrimitivesCurrencyCurrencyId, AcalaRuntimeOriginCaller, AcalaRuntimeRuntimeParameters, AcalaRuntimeScheduledTasks, AcalaRuntimeSessionKeys, CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionAccessListItem, EthereumTransactionTransactionAction, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, ModuleHomaModuleUnlockChunk, ModuleSupportDexAggregatedSwapPath, ModuleSupportDexSwapLimit, ModuleSupportIncentivesPoolId, ModuleXcmInterfaceModuleXcmInterfaceOperation, OrmlTraitsChangeOption, OrmlTraitsChangeU128, OrmlVestingVestingSchedule, PalletDemocracyConviction, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletMultisigTimepoint, RuntimeCommonProxyType, SpWeightsWeightV2Weight, StagingXcmV3MultiLocation, XcmV3WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup'; +import type { AcalaPrimitivesAuthoritysOriginId, AcalaPrimitivesCurrencyAssetMetadata, AcalaPrimitivesCurrencyCurrencyId, AcalaRuntimeOriginCaller, AcalaRuntimeRuntimeParameters, AcalaRuntimeScheduledTasks, AcalaRuntimeSessionKeys, CumulusPrimitivesCoreAggregateMessageOrigin, CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionAccessListItem, EthereumTransactionTransactionAction, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, ModuleHomaModuleUnlockChunk, ModuleSupportDexAggregatedSwapPath, ModuleSupportDexSwapLimit, ModuleSupportIncentivesPoolId, ModuleXcmInterfaceModuleXcmInterfaceOperation, OrmlTraitsChangeOption, OrmlTraitsChangeU128, OrmlVestingVestingSchedule, PalletDemocracyConviction, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletMultisigTimepoint, RuntimeCommonProxyType, SpWeightsWeightV2Weight, StagingXcmV3MultiLocation, XcmV3WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup'; export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>; export type __SubmittableExtrinsic = SubmittableExtrinsic; @@ -204,7 +204,6 @@ declare module '@polkadot/api-base/types/submittable' { [key: string]: SubmittableExtrinsicFunction; }; dmpQueue: { - serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic, [u64, SpWeightsWeightV2Weight]>; /** * Generic tx **/ @@ -401,6 +400,14 @@ declare module '@polkadot/api-base/types/submittable' { **/ [key: string]: SubmittableExtrinsicFunction; }; + messageQueue: { + executeOverweight: AugmentedSubmittable<(messageOrigin: CumulusPrimitivesCoreAggregateMessageOrigin | { Here: any } | { Parent: any } | { Sibling: any } | string | Uint8Array, page: u32 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array, weightLimit: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic, [CumulusPrimitivesCoreAggregateMessageOrigin, u32, u32, SpWeightsWeightV2Weight]>; + reapPage: AugmentedSubmittable<(messageOrigin: CumulusPrimitivesCoreAggregateMessageOrigin | { Here: any } | { Parent: any } | { Sibling: any } | string | Uint8Array, pageIndex: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic, [CumulusPrimitivesCoreAggregateMessageOrigin, u32]>; + /** + * Generic tx + **/ + [key: string]: SubmittableExtrinsicFunction; + }; multisig: { approveAsMulti: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec | (AccountId32 | string | Uint8Array)[], maybeTimepoint: Option | null | Uint8Array | PalletMultisigTimepoint | { height?: any; index?: any } | string, callHash: U8aFixed | string | Uint8Array, maxWeight: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic, [u16, Vec, Option, U8aFixed, SpWeightsWeightV2Weight]>; asMulti: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec | (AccountId32 | string | Uint8Array)[], maybeTimepoint: Option | null | Uint8Array | PalletMultisigTimepoint | { height?: any; index?: any } | string, call: Call | IMethod | string | Uint8Array, maxWeight: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic, [u16, Vec, Option, Call, SpWeightsWeightV2Weight]>; @@ -473,6 +480,7 @@ declare module '@polkadot/api-base/types/submittable' { reserveTransferAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V2: any } | { V3: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32]>; send: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, message: XcmVersionedXcm | { V2: any } | { V3: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedMultiLocation, XcmVersionedXcm]>; teleportAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V2: any } | { V3: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32]>; + transferAssets: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, beneficiary: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, assets: XcmVersionedMultiAssets | { V2: any } | { V3: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array, weightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedMultiLocation, XcmVersionedMultiLocation, XcmVersionedMultiAssets, u32, XcmV3WeightLimit]>; /** * Generic tx **/ @@ -556,6 +564,7 @@ declare module '@polkadot/api-base/types/submittable' { [key: string]: SubmittableExtrinsicFunction; }; sudo: { + removeKey: AugmentedSubmittable<() => SubmittableExtrinsic, []>; setKey: AugmentedSubmittable<(updated: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic, [MultiAddress]>; sudo: AugmentedSubmittable<(call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic, [Call]>; sudoAs: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic, [MultiAddress, Call]>; @@ -566,6 +575,9 @@ declare module '@polkadot/api-base/types/submittable' { [key: string]: SubmittableExtrinsicFunction; }; system: { + applyAuthorizedUpgrade: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic, [Bytes]>; + authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic, [H256]>; + authorizeUpgradeWithoutChecks: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic, [H256]>; killPrefix: AugmentedSubmittable<(prefix: Bytes | string | Uint8Array, subkeys: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic, [Bytes, u32]>; killStorage: AugmentedSubmittable<(keys: Vec | (Bytes | string | Uint8Array)[]) => SubmittableExtrinsic, [Vec]>; remark: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic, [Bytes]>; @@ -691,14 +703,10 @@ declare module '@polkadot/api-base/types/submittable' { }; xcmpQueue: { resumeXcmExecution: AugmentedSubmittable<() => SubmittableExtrinsic, []>; - serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic, [u64, SpWeightsWeightV2Weight]>; suspendXcmExecution: AugmentedSubmittable<() => SubmittableExtrinsic, []>; updateDropThreshold: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic, [u32]>; updateResumeThreshold: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic, [u32]>; updateSuspendThreshold: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic, [u32]>; - updateThresholdWeight: AugmentedSubmittable<(updated: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic, [SpWeightsWeightV2Weight]>; - updateWeightRestrictDecay: AugmentedSubmittable<(updated: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic, [SpWeightsWeightV2Weight]>; - updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic, [SpWeightsWeightV2Weight]>; /** * Generic tx **/ diff --git a/packages/types/src/interfaces/lookup.ts b/packages/types/src/interfaces/lookup.ts index 99bdac1..8457f37 100644 --- a/packages/types/src/interfaces/lookup.ts +++ b/packages/types/src/interfaces/lookup.ts @@ -92,7 +92,11 @@ export default { hash_: 'hash', }, sender: 'AccountId32', - hash_: 'H256' + hash_: 'H256', + }, + UpgradeAuthorized: { + codeHash: 'H256', + checkVersion: 'bool' } } }, @@ -163,7 +167,7 @@ export default { _enum: ['LimitReached', 'NoLayer'] }, /** - * Lookup30: pallet_scheduler::pallet::Event + * Lookup31: pallet_scheduler::pallet::Event **/ PalletSchedulerEvent: { _enum: { @@ -195,7 +199,7 @@ export default { } }, /** - * Lookup35: pallet_utility::pallet::Event + * Lookup36: pallet_utility::pallet::Event **/ PalletUtilityEvent: { _enum: { @@ -215,7 +219,7 @@ export default { } }, /** - * Lookup36: pallet_multisig::pallet::Event + * Lookup37: pallet_multisig::pallet::Event **/ PalletMultisigEvent: { _enum: { @@ -246,14 +250,14 @@ export default { } }, /** - * Lookup37: pallet_multisig::Timepoint + * Lookup38: pallet_multisig::Timepoint **/ PalletMultisigTimepoint: { height: 'u32', index: 'u32' }, /** - * Lookup38: pallet_proxy::pallet::Event + * Lookup39: pallet_proxy::pallet::Event **/ PalletProxyEvent: { _enum: { @@ -286,13 +290,13 @@ export default { } }, /** - * Lookup39: runtime_common::ProxyType + * Lookup40: runtime_common::ProxyType **/ RuntimeCommonProxyType: { _enum: ['Any', 'CancelProxy', 'Governance', 'Auction', 'Swap', 'Loan', 'DexLiquidity', 'StableAssetSwap', 'StableAssetLiquidity', 'Homa'] }, /** - * Lookup41: module_transaction_pause::module::Event + * Lookup42: module_transaction_pause::module::Event **/ ModuleTransactionPauseModuleEvent: { _enum: { @@ -313,7 +317,7 @@ export default { } }, /** - * Lookup44: module_idle_scheduler::module::Event + * Lookup45: module_idle_scheduler::module::Event **/ ModuleIdleSchedulerModuleEvent: { _enum: { @@ -328,7 +332,7 @@ export default { } }, /** - * Lookup45: acala_runtime::ScheduledTasks + * Lookup46: acala_runtime::ScheduledTasks **/ AcalaRuntimeScheduledTasks: { _enum: { @@ -336,7 +340,7 @@ export default { } }, /** - * Lookup46: module_evm::EvmTask + * Lookup47: module_evm::EvmTask **/ ModuleEvmEvmTask: { _enum: { @@ -356,11 +360,11 @@ export default { } }, /** - * Lookup47: acala_runtime::Runtime + * Lookup48: acala_runtime::Runtime **/ AcalaRuntimeRuntime: 'Null', /** - * Lookup48: pallet_preimage::pallet::Event + * Lookup49: pallet_preimage::pallet::Event **/ PalletPreimageEvent: { _enum: { @@ -385,7 +389,7 @@ export default { } }, /** - * Lookup49: pallet_balances::pallet::Event + * Lookup50: pallet_balances::pallet::Event **/ PalletBalancesEvent: { _enum: { @@ -476,13 +480,13 @@ export default { } }, /** - * Lookup50: frame_support::traits::tokens::misc::BalanceStatus + * Lookup51: frame_support::traits::tokens::misc::BalanceStatus **/ FrameSupportTokensMiscBalanceStatus: { _enum: ['Free', 'Reserved'] }, /** - * Lookup51: orml_tokens::module::Event + * Lookup52: orml_tokens::module::Event **/ OrmlTokensModuleEvent: { _enum: { @@ -577,7 +581,7 @@ export default { } }, /** - * Lookup52: acala_primitives::currency::CurrencyId + * Lookup53: acala_primitives::currency::CurrencyId **/ AcalaPrimitivesCurrencyCurrencyId: { _enum: { @@ -590,13 +594,13 @@ export default { } }, /** - * Lookup53: acala_primitives::currency::TokenSymbol + * Lookup54: acala_primitives::currency::TokenSymbol **/ AcalaPrimitivesCurrencyTokenSymbol: { _enum: ['ACA', 'AUSD', 'DOT', 'LDOT', 'TAP', '__Unused5', '__Unused6', '__Unused7', '__Unused8', '__Unused9', '__Unused10', '__Unused11', '__Unused12', '__Unused13', '__Unused14', '__Unused15', '__Unused16', '__Unused17', '__Unused18', '__Unused19', '__Unused20', '__Unused21', '__Unused22', '__Unused23', '__Unused24', '__Unused25', '__Unused26', '__Unused27', '__Unused28', '__Unused29', '__Unused30', '__Unused31', '__Unused32', '__Unused33', '__Unused34', '__Unused35', '__Unused36', '__Unused37', '__Unused38', '__Unused39', '__Unused40', '__Unused41', '__Unused42', '__Unused43', '__Unused44', '__Unused45', '__Unused46', '__Unused47', '__Unused48', '__Unused49', '__Unused50', '__Unused51', '__Unused52', '__Unused53', '__Unused54', '__Unused55', '__Unused56', '__Unused57', '__Unused58', '__Unused59', '__Unused60', '__Unused61', '__Unused62', '__Unused63', '__Unused64', '__Unused65', '__Unused66', '__Unused67', '__Unused68', '__Unused69', '__Unused70', '__Unused71', '__Unused72', '__Unused73', '__Unused74', '__Unused75', '__Unused76', '__Unused77', '__Unused78', '__Unused79', '__Unused80', '__Unused81', '__Unused82', '__Unused83', '__Unused84', '__Unused85', '__Unused86', '__Unused87', '__Unused88', '__Unused89', '__Unused90', '__Unused91', '__Unused92', '__Unused93', '__Unused94', '__Unused95', '__Unused96', '__Unused97', '__Unused98', '__Unused99', '__Unused100', '__Unused101', '__Unused102', '__Unused103', '__Unused104', '__Unused105', '__Unused106', '__Unused107', '__Unused108', '__Unused109', '__Unused110', '__Unused111', '__Unused112', '__Unused113', '__Unused114', '__Unused115', '__Unused116', '__Unused117', '__Unused118', '__Unused119', '__Unused120', '__Unused121', '__Unused122', '__Unused123', '__Unused124', '__Unused125', '__Unused126', '__Unused127', 'KAR', 'KUSD', 'KSM', 'LKSM', 'TAI', '__Unused133', '__Unused134', '__Unused135', '__Unused136', '__Unused137', '__Unused138', '__Unused139', '__Unused140', '__Unused141', '__Unused142', '__Unused143', '__Unused144', '__Unused145', '__Unused146', '__Unused147', '__Unused148', '__Unused149', '__Unused150', '__Unused151', '__Unused152', '__Unused153', '__Unused154', '__Unused155', '__Unused156', '__Unused157', '__Unused158', '__Unused159', '__Unused160', '__Unused161', '__Unused162', '__Unused163', '__Unused164', '__Unused165', '__Unused166', '__Unused167', 'BNC', 'VSKSM', 'PHA', 'KINT', 'KBTC'] }, /** - * Lookup54: acala_primitives::currency::DexShare + * Lookup55: acala_primitives::currency::DexShare **/ AcalaPrimitivesCurrencyDexShare: { _enum: { @@ -608,7 +612,7 @@ export default { } }, /** - * Lookup56: module_currencies::module::Event + * Lookup57: module_currencies::module::Event **/ ModuleCurrenciesModuleEvent: { _enum: { @@ -636,7 +640,7 @@ export default { } }, /** - * Lookup57: orml_vesting::module::Event + * Lookup58: orml_vesting::module::Event **/ OrmlVestingModuleEvent: { _enum: { @@ -655,7 +659,7 @@ export default { } }, /** - * Lookup58: orml_vesting::VestingSchedule + * Lookup59: orml_vesting::VestingSchedule **/ OrmlVestingVestingSchedule: { start: 'u32', @@ -664,7 +668,7 @@ export default { perPeriod: 'Compact' }, /** - * Lookup60: module_transaction_payment::module::Event + * Lookup61: module_transaction_payment::module::Event **/ ModuleTransactionPaymentModuleEvent: { _enum: { @@ -697,7 +701,7 @@ export default { } }, /** - * Lookup62: pallet_treasury::pallet::Event + * Lookup63: pallet_treasury::pallet::Event **/ PalletTreasuryEvent: { _enum: { @@ -759,7 +763,7 @@ export default { } }, /** - * Lookup63: pallet_bounties::pallet::Event + * Lookup64: pallet_bounties::pallet::Event **/ PalletBountiesEvent: { _enum: { @@ -805,7 +809,7 @@ export default { } }, /** - * Lookup64: pallet_tips::pallet::Event + * Lookup65: pallet_tips::pallet::Event **/ PalletTipsEvent: { _enum: { @@ -831,7 +835,7 @@ export default { } }, /** - * Lookup65: module_collator_selection::pallet::Event + * Lookup66: module_collator_selection::pallet::Event **/ ModuleCollatorSelectionEvent: { _enum: { @@ -854,7 +858,7 @@ export default { } }, /** - * Lookup67: pallet_session::pallet::Event + * Lookup68: pallet_session::pallet::Event **/ PalletSessionEvent: { _enum: { @@ -864,7 +868,7 @@ export default { } }, /** - * Lookup68: module_session_manager::module::Event + * Lookup69: module_session_manager::module::Event **/ ModuleSessionManagerModuleEvent: { _enum: { @@ -876,91 +880,17 @@ export default { } }, /** - * Lookup69: cumulus_pallet_xcmp_queue::pallet::Event + * Lookup70: cumulus_pallet_xcmp_queue::pallet::Event **/ CumulusPalletXcmpQueueEvent: { _enum: { - Success: { - messageHash: '[u8;32]', - messageId: '[u8;32]', - weight: 'SpWeightsWeightV2Weight', - }, - Fail: { - messageHash: '[u8;32]', - messageId: '[u8;32]', - error: 'XcmV3TraitsError', - weight: 'SpWeightsWeightV2Weight', - }, - BadVersion: { - messageHash: '[u8;32]', - }, - BadFormat: { - messageHash: '[u8;32]', - }, XcmpMessageSent: { - messageHash: '[u8;32]', - }, - OverweightEnqueued: { - sender: 'u32', - sentAt: 'u32', - index: 'u64', - required: 'SpWeightsWeightV2Weight', - }, - OverweightServiced: { - index: 'u64', - used: 'SpWeightsWeightV2Weight' + messageHash: '[u8;32]' } } }, /** - * Lookup70: xcm::v3::traits::Error - **/ - XcmV3TraitsError: { - _enum: { - Overflow: 'Null', - Unimplemented: 'Null', - UntrustedReserveLocation: 'Null', - UntrustedTeleportLocation: 'Null', - LocationFull: 'Null', - LocationNotInvertible: 'Null', - BadOrigin: 'Null', - InvalidLocation: 'Null', - AssetNotFound: 'Null', - FailedToTransactAsset: 'Null', - NotWithdrawable: 'Null', - LocationCannotHold: 'Null', - ExceedsMaxMessageSize: 'Null', - DestinationUnsupported: 'Null', - Transport: 'Null', - Unroutable: 'Null', - UnknownClaim: 'Null', - FailedToDecode: 'Null', - MaxWeightInvalid: 'Null', - NotHoldingFees: 'Null', - TooExpensive: 'Null', - Trap: 'u64', - ExpectationFalse: 'Null', - PalletNotFound: 'Null', - NameMismatch: 'Null', - VersionIncompatible: 'Null', - HoldingWouldOverflow: 'Null', - ExportError: 'Null', - ReanchorFailed: 'Null', - NoDeal: 'Null', - FeesNotMet: 'Null', - LockError: 'Null', - NoPermission: 'Null', - Unanchored: 'Null', - NotDepositable: 'Null', - UnhandledXcmVersion: 'Null', - WeightLimitReached: 'SpWeightsWeightV2Weight', - Barrier: 'Null', - WeightNotComputable: 'Null', - ExceedsStackLimit: 'Null' - } - }, - /** - * Lookup72: pallet_xcm::pallet::Event + * Lookup71: pallet_xcm::pallet::Event **/ PalletXcmEvent: { _enum: { @@ -1082,7 +1012,7 @@ export default { } }, /** - * Lookup73: xcm::v3::traits::Outcome + * Lookup72: xcm::v3::traits::Outcome **/ XcmV3TraitsOutcome: { _enum: { @@ -1091,6 +1021,53 @@ export default { Error: 'XcmV3TraitsError' } }, + /** + * Lookup73: xcm::v3::traits::Error + **/ + XcmV3TraitsError: { + _enum: { + Overflow: 'Null', + Unimplemented: 'Null', + UntrustedReserveLocation: 'Null', + UntrustedTeleportLocation: 'Null', + LocationFull: 'Null', + LocationNotInvertible: 'Null', + BadOrigin: 'Null', + InvalidLocation: 'Null', + AssetNotFound: 'Null', + FailedToTransactAsset: 'Null', + NotWithdrawable: 'Null', + LocationCannotHold: 'Null', + ExceedsMaxMessageSize: 'Null', + DestinationUnsupported: 'Null', + Transport: 'Null', + Unroutable: 'Null', + UnknownClaim: 'Null', + FailedToDecode: 'Null', + MaxWeightInvalid: 'Null', + NotHoldingFees: 'Null', + TooExpensive: 'Null', + Trap: 'u64', + ExpectationFalse: 'Null', + PalletNotFound: 'Null', + NameMismatch: 'Null', + VersionIncompatible: 'Null', + HoldingWouldOverflow: 'Null', + ExportError: 'Null', + ReanchorFailed: 'Null', + NoDeal: 'Null', + FeesNotMet: 'Null', + LockError: 'Null', + NoPermission: 'Null', + Unanchored: 'Null', + NotDepositable: 'Null', + UnhandledXcmVersion: 'Null', + WeightLimitReached: 'SpWeightsWeightV2Weight', + Barrier: 'Null', + WeightNotComputable: 'Null', + ExceedsStackLimit: 'Null' + } + }, /** * Lookup74: staging_xcm::v3::multilocation::MultiLocation **/ @@ -1165,7 +1142,8 @@ export default { chainId: 'Compact', }, BitcoinCore: 'Null', - BitcoinCash: 'Null' + BitcoinCash: 'Null', + PolkadotBulletin: 'Null' } }, /** @@ -1484,7 +1462,7 @@ export default { _enum: ['Fungible', 'NonFungible'] }, /** - * Lookup109: xcm::v3::WeightLimit + * Lookup108: xcm::v3::WeightLimit **/ XcmV3WeightLimit: { _enum: { @@ -1493,7 +1471,7 @@ export default { } }, /** - * Lookup110: xcm::VersionedMultiAssets + * Lookup109: xcm::VersionedMultiAssets **/ XcmVersionedMultiAssets: { _enum: { @@ -1504,18 +1482,18 @@ export default { } }, /** - * Lookup111: xcm::v2::multiasset::MultiAssets + * Lookup110: xcm::v2::multiasset::MultiAssets **/ XcmV2MultiassetMultiAssets: 'Vec', /** - * Lookup113: xcm::v2::multiasset::MultiAsset + * Lookup112: xcm::v2::multiasset::MultiAsset **/ XcmV2MultiAsset: { id: 'XcmV2MultiassetAssetId', fun: 'XcmV2MultiassetFungibility' }, /** - * Lookup114: xcm::v2::multiasset::AssetId + * Lookup113: xcm::v2::multiasset::AssetId **/ XcmV2MultiassetAssetId: { _enum: { @@ -1524,14 +1502,14 @@ export default { } }, /** - * Lookup115: xcm::v2::multilocation::MultiLocation + * Lookup114: xcm::v2::multilocation::MultiLocation **/ XcmV2MultiLocation: { parents: 'u8', interior: 'XcmV2MultilocationJunctions' }, /** - * Lookup116: xcm::v2::multilocation::Junctions + * Lookup115: xcm::v2::multilocation::Junctions **/ XcmV2MultilocationJunctions: { _enum: { @@ -1547,7 +1525,7 @@ export default { } }, /** - * Lookup117: xcm::v2::junction::Junction + * Lookup116: xcm::v2::junction::Junction **/ XcmV2Junction: { _enum: { @@ -1575,7 +1553,7 @@ export default { } }, /** - * Lookup118: xcm::v2::NetworkId + * Lookup117: xcm::v2::NetworkId **/ XcmV2NetworkId: { _enum: { @@ -1586,7 +1564,7 @@ export default { } }, /** - * Lookup120: xcm::v2::BodyId + * Lookup119: xcm::v2::BodyId **/ XcmV2BodyId: { _enum: { @@ -1603,7 +1581,7 @@ export default { } }, /** - * Lookup121: xcm::v2::BodyPart + * Lookup120: xcm::v2::BodyPart **/ XcmV2BodyPart: { _enum: { @@ -1626,7 +1604,7 @@ export default { } }, /** - * Lookup122: xcm::v2::multiasset::Fungibility + * Lookup121: xcm::v2::multiasset::Fungibility **/ XcmV2MultiassetFungibility: { _enum: { @@ -1635,7 +1613,7 @@ export default { } }, /** - * Lookup123: xcm::v2::multiasset::AssetInstance + * Lookup122: xcm::v2::multiasset::AssetInstance **/ XcmV2MultiassetAssetInstance: { _enum: { @@ -1649,7 +1627,7 @@ export default { } }, /** - * Lookup124: xcm::VersionedMultiLocation + * Lookup123: xcm::VersionedMultiLocation **/ XcmVersionedMultiLocation: { _enum: { @@ -1660,7 +1638,7 @@ export default { } }, /** - * Lookup125: cumulus_pallet_xcm::pallet::Event + * Lookup124: cumulus_pallet_xcm::pallet::Event **/ CumulusPalletXcmEvent: { _enum: { @@ -1670,44 +1648,37 @@ export default { } }, /** - * Lookup126: cumulus_pallet_dmp_queue::pallet::Event + * Lookup125: cumulus_pallet_dmp_queue::pallet::Event **/ CumulusPalletDmpQueueEvent: { _enum: { - InvalidFormat: { - messageHash: '[u8;32]', + StartedExport: 'Null', + Exported: { + page: 'u32', }, - UnsupportedVersion: { - messageHash: '[u8;32]', - }, - ExecutedDownward: { - messageHash: '[u8;32]', - messageId: '[u8;32]', - outcome: 'XcmV3TraitsOutcome', + ExportFailed: { + page: 'u32', }, - WeightExhausted: { - messageHash: '[u8;32]', - messageId: '[u8;32]', - remainingWeight: 'SpWeightsWeightV2Weight', - requiredWeight: 'SpWeightsWeightV2Weight', + CompletedExport: 'Null', + StartedOverweightExport: 'Null', + ExportedOverweight: { + index: 'u64', }, - OverweightEnqueued: { - messageHash: '[u8;32]', - messageId: '[u8;32]', - overweightIndex: 'u64', - requiredWeight: 'SpWeightsWeightV2Weight', + ExportOverweightFailed: { + index: 'u64', }, - OverweightServiced: { - overweightIndex: 'u64', - weightUsed: 'SpWeightsWeightV2Weight', + CompletedOverweightExport: 'Null', + StartedCleanup: 'Null', + CleanedSome: { + keysRemoved: 'u32', }, - MaxMessagesExhausted: { - messageHash: '[u8;32]' + Completed: { + error: 'bool' } } }, /** - * Lookup127: orml_xtokens::module::Event + * Lookup126: orml_xtokens::module::Event **/ OrmlXtokensModuleEvent: { _enum: { @@ -1720,7 +1691,7 @@ export default { } }, /** - * Lookup128: orml_unknown_tokens::module::Event + * Lookup127: orml_unknown_tokens::module::Event **/ OrmlUnknownTokensModuleEvent: { _enum: { @@ -1735,7 +1706,7 @@ export default { } }, /** - * Lookup129: orml_xcm::module::Event + * Lookup128: orml_xcm::module::Event **/ OrmlXcmModuleEvent: { _enum: { @@ -1746,7 +1717,57 @@ export default { } }, /** - * Lookup130: orml_authority::module::Event + * Lookup129: pallet_message_queue::pallet::Event + **/ + PalletMessageQueueEvent: { + _enum: { + ProcessingFailed: { + id: 'H256', + origin: 'CumulusPrimitivesCoreAggregateMessageOrigin', + error: 'FrameSupportMessagesProcessMessageError', + }, + Processed: { + id: 'H256', + origin: 'CumulusPrimitivesCoreAggregateMessageOrigin', + weightUsed: 'SpWeightsWeightV2Weight', + success: 'bool', + }, + OverweightEnqueued: { + id: '[u8;32]', + origin: 'CumulusPrimitivesCoreAggregateMessageOrigin', + pageIndex: 'u32', + messageIndex: 'u32', + }, + PageReaped: { + origin: 'CumulusPrimitivesCoreAggregateMessageOrigin', + index: 'u32' + } + } + }, + /** + * Lookup130: cumulus_primitives_core::AggregateMessageOrigin + **/ + CumulusPrimitivesCoreAggregateMessageOrigin: { + _enum: { + Here: 'Null', + Parent: 'Null', + Sibling: 'u32' + } + }, + /** + * Lookup132: frame_support::traits::messages::ProcessMessageError + **/ + FrameSupportMessagesProcessMessageError: { + _enum: { + BadFormat: 'Null', + Corrupt: 'Null', + Unsupported: 'Null', + Overweight: 'SpWeightsWeightV2Weight', + Yield: 'Null' + } + }, + /** + * Lookup133: orml_authority::module::Event **/ OrmlAuthorityModuleEvent: { _enum: { @@ -1794,7 +1815,7 @@ export default { } }, /** - * Lookup131: acala_runtime::OriginCaller + * Lookup134: acala_runtime::OriginCaller **/ AcalaRuntimeOriginCaller: { _enum: { @@ -1869,7 +1890,7 @@ export default { } }, /** - * Lookup132: frame_support::dispatch::RawOrigin + * Lookup135: frame_support::dispatch::RawOrigin **/ FrameSupportDispatchRawOrigin: { _enum: { @@ -1879,7 +1900,7 @@ export default { } }, /** - * Lookup133: pallet_xcm::pallet::Origin + * Lookup136: pallet_xcm::pallet::Origin **/ PalletXcmOrigin: { _enum: { @@ -1888,7 +1909,7 @@ export default { } }, /** - * Lookup134: cumulus_pallet_xcm::pallet::Origin + * Lookup137: cumulus_pallet_xcm::pallet::Origin **/ CumulusPalletXcmOrigin: { _enum: { @@ -1897,14 +1918,14 @@ export default { } }, /** - * Lookup135: orml_authority::DelayedOrigin + * Lookup138: orml_authority::DelayedOrigin **/ OrmlAuthorityDelayedOrigin: { delay: 'u32', origin: 'AcalaRuntimeOriginCaller' }, /** - * Lookup136: pallet_collective::RawOrigin + * Lookup139: pallet_collective::RawOrigin **/ PalletCollectiveRawOrigin: { _enum: { @@ -1914,11 +1935,11 @@ export default { } }, /** - * Lookup140: sp_core::Void + * Lookup143: sp_core::Void **/ SpCoreVoid: 'Null', /** - * Lookup142: pallet_collective::pallet::Event + * Lookup145: pallet_collective::pallet::Event **/ PalletCollectiveEvent: { _enum: { @@ -1957,13 +1978,13 @@ export default { } }, /** - * Lookup143: pallet_membership::pallet::Event + * Lookup146: pallet_membership::pallet::Event **/ PalletMembershipEvent: { _enum: ['MemberAdded', 'MemberRemoved', 'MembersSwapped', 'MembersReset', 'KeyChanged', 'Dummy'] }, /** - * Lookup150: pallet_democracy::pallet::Event + * Lookup153: pallet_democracy::pallet::Event **/ PalletDemocracyEvent: { _enum: { @@ -2041,13 +2062,13 @@ export default { } }, /** - * Lookup151: pallet_democracy::vote_threshold::VoteThreshold + * Lookup154: pallet_democracy::vote_threshold::VoteThreshold **/ PalletDemocracyVoteThreshold: { _enum: ['SuperMajorityApprove', 'SuperMajorityAgainst', 'SimpleMajority'] }, /** - * Lookup152: pallet_democracy::vote::AccountVote + * Lookup155: pallet_democracy::vote::AccountVote **/ PalletDemocracyVoteAccountVote: { _enum: { @@ -2062,7 +2083,7 @@ export default { } }, /** - * Lookup154: pallet_democracy::types::MetadataOwner + * Lookup157: pallet_democracy::types::MetadataOwner **/ PalletDemocracyMetadataOwner: { _enum: { @@ -2072,7 +2093,7 @@ export default { } }, /** - * Lookup155: orml_oracle::module::Event + * Lookup158: orml_oracle::module::Event **/ OrmlOracleModuleEvent: { _enum: { @@ -2083,7 +2104,7 @@ export default { } }, /** - * Lookup159: orml_auction::module::Event + * Lookup162: orml_auction::module::Event **/ OrmlAuctionModuleEvent: { _enum: { @@ -2095,7 +2116,7 @@ export default { } }, /** - * Lookup160: orml_parameters::module::Event + * Lookup163: orml_parameters::module::Event **/ OrmlParametersModuleEvent: { _enum: { @@ -2105,7 +2126,7 @@ export default { } }, /** - * Lookup161: acala_runtime::RuntimeParameters + * Lookup164: acala_runtime::RuntimeParameters **/ AcalaRuntimeRuntimeParameters: { _enum: { @@ -2113,7 +2134,7 @@ export default { } }, /** - * Lookup162: module_earning::Parameters + * Lookup165: module_earning::Parameters **/ ModuleEarningParameters: { _enum: { @@ -2121,11 +2142,11 @@ export default { } }, /** - * Lookup163: module_earning::InstantUnstakeFee + * Lookup166: module_earning::InstantUnstakeFee **/ ModuleEarningInstantUnstakeFee: 'Null', /** - * Lookup166: module_prices::module::Event + * Lookup169: module_prices::module::Event **/ ModulePricesModuleEvent: { _enum: { @@ -2139,7 +2160,7 @@ export default { } }, /** - * Lookup167: module_dex::module::Event + * Lookup170: module_dex::module::Event **/ ModuleDexModuleEvent: { _enum: { @@ -2201,11 +2222,11 @@ export default { } }, /** - * Lookup170: acala_primitives::TradingPair + * Lookup173: acala_primitives::TradingPair **/ AcalaPrimitivesTradingPair: '(AcalaPrimitivesCurrencyCurrencyId,AcalaPrimitivesCurrencyCurrencyId)', /** - * Lookup171: module_earning::module::Event + * Lookup174: module_earning::module::Event **/ ModuleEarningModuleEvent: { _enum: { @@ -2233,7 +2254,7 @@ export default { } }, /** - * Lookup172: module_auction_manager::module::Event + * Lookup175: module_auction_manager::module::Event **/ ModuleAuctionManagerModuleEvent: { _enum: { @@ -2270,7 +2291,7 @@ export default { } }, /** - * Lookup173: module_loans::module::Event + * Lookup176: module_loans::module::Event **/ ModuleLoansModuleEvent: { _enum: { @@ -2294,7 +2315,7 @@ export default { } }, /** - * Lookup175: module_honzon::module::Event + * Lookup178: module_honzon::module::Event **/ ModuleHonzonModuleEvent: { _enum: { @@ -2319,7 +2340,7 @@ export default { } }, /** - * Lookup176: module_cdp_treasury::module::Event + * Lookup179: module_cdp_treasury::module::Event **/ ModuleCdpTreasuryModuleEvent: { _enum: { @@ -2333,7 +2354,7 @@ export default { } }, /** - * Lookup177: module_cdp_engine::module::Event + * Lookup180: module_cdp_engine::module::Event **/ ModuleCdpEngineModuleEvent: { _enum: { @@ -2384,7 +2405,7 @@ export default { } }, /** - * Lookup179: module_emergency_shutdown::module::Event + * Lookup182: module_emergency_shutdown::module::Event **/ ModuleEmergencyShutdownModuleEvent: { _enum: { @@ -2402,7 +2423,7 @@ export default { } }, /** - * Lookup182: module_homa::module::Event + * Lookup185: module_homa::module::Event **/ ModuleHomaModuleEvent: { _enum: { @@ -2472,14 +2493,14 @@ export default { } }, /** - * Lookup184: module_homa::module::UnlockChunk + * Lookup187: module_homa::module::UnlockChunk **/ ModuleHomaModuleUnlockChunk: { value: 'Compact', era: 'Compact' }, /** - * Lookup185: module_xcm_interface::module::Event + * Lookup188: module_xcm_interface::module::Event **/ ModuleXcmInterfaceModuleEvent: { _enum: { @@ -2494,7 +2515,7 @@ export default { } }, /** - * Lookup186: module_xcm_interface::module::XcmInterfaceOperation + * Lookup189: module_xcm_interface::module::XcmInterfaceOperation **/ ModuleXcmInterfaceModuleXcmInterfaceOperation: { _enum: { @@ -2507,7 +2528,7 @@ export default { } }, /** - * Lookup187: module_incentives::module::Event + * Lookup190: module_incentives::module::Event **/ ModuleIncentivesModuleEvent: { _enum: { @@ -2544,7 +2565,7 @@ export default { } }, /** - * Lookup188: module_support::incentives::PoolId + * Lookup191: module_support::incentives::PoolId **/ ModuleSupportIncentivesPoolId: { _enum: { @@ -2554,7 +2575,7 @@ export default { } }, /** - * Lookup190: module_nft::module::Event + * Lookup193: module_nft::module::Event **/ ModuleNftModuleEvent: { _enum: { @@ -2592,7 +2613,7 @@ export default { } }, /** - * Lookup191: module_asset_registry::module::Event + * Lookup194: module_asset_registry::module::Event **/ ModuleAssetRegistryModuleEvent: { _enum: { @@ -2617,7 +2638,7 @@ export default { } }, /** - * Lookup192: acala_primitives::currency::AssetMetadata + * Lookup195: acala_primitives::currency::AssetMetadata **/ AcalaPrimitivesCurrencyAssetMetadata: { name: 'Bytes', @@ -2626,7 +2647,7 @@ export default { minimalBalance: 'u128' }, /** - * Lookup193: acala_primitives::currency::AssetIds + * Lookup196: acala_primitives::currency::AssetIds **/ AcalaPrimitivesCurrencyAssetIds: { _enum: { @@ -2637,7 +2658,7 @@ export default { } }, /** - * Lookup194: module_liquid_crowdloan::module::Event + * Lookup197: module_liquid_crowdloan::module::Event **/ ModuleLiquidCrowdloanModuleEvent: { _enum: { @@ -2654,7 +2675,7 @@ export default { } }, /** - * Lookup195: module_evm::module::Event + * Lookup198: module_evm::module::Event **/ ModuleEvmModuleEvent: { _enum: { @@ -2711,7 +2732,7 @@ export default { } }, /** - * Lookup197: ethereum::log::Log + * Lookup200: ethereum::log::Log **/ EthereumLog: { address: 'H160', @@ -2719,7 +2740,7 @@ export default { data: 'Bytes' }, /** - * Lookup200: evm_core::error::ExitReason + * Lookup203: evm_core::error::ExitReason **/ EvmCoreErrorExitReason: { _enum: { @@ -2730,13 +2751,13 @@ export default { } }, /** - * Lookup201: evm_core::error::ExitSucceed + * Lookup204: evm_core::error::ExitSucceed **/ EvmCoreErrorExitSucceed: { _enum: ['Stopped', 'Returned', 'Suicided'] }, /** - * Lookup202: evm_core::error::ExitError + * Lookup205: evm_core::error::ExitError **/ EvmCoreErrorExitError: { _enum: { @@ -2754,18 +2775,18 @@ export default { PCUnderflow: 'Null', CreateEmpty: 'Null', Other: 'Text', - __Unused14: 'Null', + MaxNonce: 'Null', InvalidCode: 'u8' } }, /** - * Lookup206: evm_core::error::ExitRevert + * Lookup209: evm_core::error::ExitRevert **/ EvmCoreErrorExitRevert: { _enum: ['Reverted'] }, /** - * Lookup207: evm_core::error::ExitFatal + * Lookup210: evm_core::error::ExitFatal **/ EvmCoreErrorExitFatal: { _enum: { @@ -2776,7 +2797,7 @@ export default { } }, /** - * Lookup208: module_evm_accounts::module::Event + * Lookup211: module_evm_accounts::module::Event **/ ModuleEvmAccountsModuleEvent: { _enum: { @@ -2787,7 +2808,7 @@ export default { } }, /** - * Lookup209: nutsfinance_stable_asset::pallet::Event + * Lookup212: nutsfinance_stable_asset::pallet::Event **/ NutsfinanceStableAssetEvent: { _enum: { @@ -2896,7 +2917,7 @@ export default { } }, /** - * Lookup210: cumulus_pallet_parachain_system::pallet::Event + * Lookup213: cumulus_pallet_parachain_system::pallet::Event **/ CumulusPalletParachainSystemEvent: { _enum: { @@ -2905,9 +2926,6 @@ export default { relayChainBlockNum: 'u32', }, ValidationFunctionDiscarded: 'Null', - UpgradeAuthorized: { - codeHash: 'H256', - }, DownwardMessagesReceived: { count: 'u32', }, @@ -2921,7 +2939,7 @@ export default { } }, /** - * Lookup211: pallet_sudo::pallet::Event + * Lookup214: pallet_sudo::pallet::Event **/ PalletSudoEvent: { _enum: { @@ -2929,15 +2947,20 @@ export default { sudoResult: 'Result', }, KeyChanged: { - oldSudoer: 'Option', + _alias: { + new_: 'new', + }, + old: 'Option', + new_: 'AccountId32', }, + KeyRemoved: 'Null', SudoAsDone: { sudoResult: 'Result' } } }, /** - * Lookup212: frame_system::Phase + * Lookup215: frame_system::Phase **/ FrameSystemPhase: { _enum: { @@ -2947,14 +2970,21 @@ export default { } }, /** - * Lookup214: frame_system::LastRuntimeUpgradeInfo + * Lookup217: frame_system::LastRuntimeUpgradeInfo **/ FrameSystemLastRuntimeUpgradeInfo: { specVersion: 'Compact', specName: 'Text' }, /** - * Lookup215: frame_system::pallet::Call + * Lookup218: frame_system::CodeUpgradeAuthorization + **/ + FrameSystemCodeUpgradeAuthorization: { + codeHash: 'H256', + checkVersion: 'bool' + }, + /** + * Lookup219: frame_system::pallet::Call **/ FrameSystemCall: { _enum: { @@ -2984,12 +3014,22 @@ export default { subkeys: 'u32', }, remark_with_event: { - remark: 'Bytes' + remark: 'Bytes', + }, + __Unused8: 'Null', + authorize_upgrade: { + codeHash: 'H256', + }, + authorize_upgrade_without_checks: { + codeHash: 'H256', + }, + apply_authorized_upgrade: { + code: 'Bytes' } } }, /** - * Lookup219: frame_system::limits::BlockWeights + * Lookup223: frame_system::limits::BlockWeights **/ FrameSystemLimitsBlockWeights: { baseBlock: 'SpWeightsWeightV2Weight', @@ -2997,7 +3037,7 @@ export default { perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass' }, /** - * Lookup220: frame_support::dispatch::PerDispatchClass + * Lookup224: frame_support::dispatch::PerDispatchClass **/ FrameSupportDispatchPerDispatchClassWeightsPerClass: { normal: 'FrameSystemLimitsWeightsPerClass', @@ -3005,7 +3045,7 @@ export default { mandatory: 'FrameSystemLimitsWeightsPerClass' }, /** - * Lookup221: frame_system::limits::WeightsPerClass + * Lookup225: frame_system::limits::WeightsPerClass **/ FrameSystemLimitsWeightsPerClass: { baseExtrinsic: 'SpWeightsWeightV2Weight', @@ -3014,13 +3054,13 @@ export default { reserved: 'Option' }, /** - * Lookup223: frame_system::limits::BlockLength + * Lookup227: frame_system::limits::BlockLength **/ FrameSystemLimitsBlockLength: { max: 'FrameSupportDispatchPerDispatchClassU32' }, /** - * Lookup224: frame_support::dispatch::PerDispatchClass + * Lookup228: frame_support::dispatch::PerDispatchClass **/ FrameSupportDispatchPerDispatchClassU32: { normal: 'u32', @@ -3028,14 +3068,14 @@ export default { mandatory: 'u32' }, /** - * Lookup225: sp_weights::RuntimeDbWeight + * Lookup229: sp_weights::RuntimeDbWeight **/ SpWeightsRuntimeDbWeight: { read: 'u64', write: 'u64' }, /** - * Lookup226: sp_version::RuntimeVersion + * Lookup230: sp_version::RuntimeVersion **/ SpVersionRuntimeVersion: { specName: 'Text', @@ -3048,13 +3088,13 @@ export default { stateVersion: 'u8' }, /** - * Lookup230: frame_system::pallet::Error + * Lookup234: frame_system::pallet::Error **/ FrameSystemError: { - _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered'] + _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered', 'NothingAuthorized', 'Unauthorized'] }, /** - * Lookup231: pallet_timestamp::pallet::Call + * Lookup235: pallet_timestamp::pallet::Call **/ PalletTimestampCall: { _enum: { @@ -3064,7 +3104,7 @@ export default { } }, /** - * Lookup234: pallet_scheduler::Scheduled, BlockNumber, acala_runtime::OriginCaller, sp_core::crypto::AccountId32> + * Lookup238: pallet_scheduler::Scheduled, BlockNumber, acala_runtime::OriginCaller, sp_core::crypto::AccountId32> **/ PalletSchedulerScheduled: { maybeId: 'Option<[u8;32]>', @@ -3074,7 +3114,7 @@ export default { origin: 'AcalaRuntimeOriginCaller' }, /** - * Lookup235: frame_support::traits::preimages::Bounded + * Lookup239: frame_support::traits::preimages::Bounded **/ FrameSupportPreimagesBounded: { _enum: { @@ -3095,7 +3135,7 @@ export default { } }, /** - * Lookup237: pallet_scheduler::pallet::Call + * Lookup241: pallet_scheduler::pallet::Call **/ PalletSchedulerCall: { _enum: { @@ -3135,7 +3175,7 @@ export default { } }, /** - * Lookup239: pallet_utility::pallet::Call + * Lookup243: pallet_utility::pallet::Call **/ PalletUtilityCall: { _enum: { @@ -3163,7 +3203,7 @@ export default { } }, /** - * Lookup241: pallet_multisig::pallet::Call + * Lookup245: pallet_multisig::pallet::Call **/ PalletMultisigCall: { _enum: { @@ -3194,7 +3234,7 @@ export default { } }, /** - * Lookup243: pallet_proxy::pallet::Call + * Lookup247: pallet_proxy::pallet::Call **/ PalletProxyCall: { _enum: { @@ -3247,7 +3287,7 @@ export default { } }, /** - * Lookup246: module_transaction_pause::module::Call + * Lookup250: module_transaction_pause::module::Call **/ ModuleTransactionPauseModuleCall: { _enum: { @@ -3268,7 +3308,7 @@ export default { } }, /** - * Lookup247: module_idle_scheduler::module::Call + * Lookup251: module_idle_scheduler::module::Call **/ ModuleIdleSchedulerModuleCall: { _enum: { @@ -3278,7 +3318,7 @@ export default { } }, /** - * Lookup248: pallet_preimage::pallet::Call + * Lookup252: pallet_preimage::pallet::Call **/ PalletPreimageCall: { _enum: { @@ -3309,7 +3349,7 @@ export default { } }, /** - * Lookup249: pallet_balances::pallet::Call + * Lookup253: pallet_balances::pallet::Call **/ PalletBalancesCall: { _enum: { @@ -3346,7 +3386,7 @@ export default { } }, /** - * Lookup250: module_currencies::module::Call + * Lookup254: module_currencies::module::Call **/ ModuleCurrenciesModuleCall: { _enum: { @@ -3382,7 +3422,7 @@ export default { } }, /** - * Lookup251: orml_vesting::module::Call + * Lookup255: orml_vesting::module::Call **/ OrmlVestingModuleCall: { _enum: { @@ -3401,7 +3441,7 @@ export default { } }, /** - * Lookup253: module_transaction_payment::module::Call + * Lookup257: module_transaction_payment::module::Call **/ ModuleTransactionPaymentModuleCall: { _enum: { @@ -3432,7 +3472,7 @@ export default { } }, /** - * Lookup256: module_support::dex::AggregatedSwapPath + * Lookup260: module_support::dex::AggregatedSwapPath **/ ModuleSupportDexAggregatedSwapPath: { _enum: { @@ -3441,7 +3481,7 @@ export default { } }, /** - * Lookup257: pallet_treasury::pallet::Call + * Lookup261: pallet_treasury::pallet::Call **/ PalletTreasuryCall: { _enum: { @@ -3480,7 +3520,7 @@ export default { } }, /** - * Lookup259: pallet_bounties::pallet::Call + * Lookup263: pallet_bounties::pallet::Call **/ PalletBountiesCall: { _enum: { @@ -3519,7 +3559,7 @@ export default { } }, /** - * Lookup260: pallet_tips::pallet::Call + * Lookup264: pallet_tips::pallet::Call **/ PalletTipsCall: { _enum: { @@ -3560,7 +3600,7 @@ export default { } }, /** - * Lookup261: module_collator_selection::pallet::Call + * Lookup265: module_collator_selection::pallet::Call **/ ModuleCollatorSelectionCall: { _enum: { @@ -3585,7 +3625,7 @@ export default { } }, /** - * Lookup262: pallet_session::pallet::Call + * Lookup266: pallet_session::pallet::Call **/ PalletSessionCall: { _enum: { @@ -3600,21 +3640,21 @@ export default { } }, /** - * Lookup263: acala_runtime::SessionKeys + * Lookup267: acala_runtime::SessionKeys **/ AcalaRuntimeSessionKeys: { aura: 'SpConsensusAuraSr25519AppSr25519Public' }, /** - * Lookup264: sp_consensus_aura::sr25519::app_sr25519::Public + * Lookup268: sp_consensus_aura::sr25519::app_sr25519::Public **/ SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public', /** - * Lookup265: sp_core::sr25519::Public + * Lookup269: sp_core::sr25519::Public **/ SpCoreSr25519Public: '[u8;32]', /** - * Lookup266: module_session_manager::module::Call + * Lookup270: module_session_manager::module::Call **/ ModuleSessionManagerModuleCall: { _enum: { @@ -3625,14 +3665,11 @@ export default { } }, /** - * Lookup267: cumulus_pallet_xcmp_queue::pallet::Call + * Lookup271: cumulus_pallet_xcmp_queue::pallet::Call **/ CumulusPalletXcmpQueueCall: { _enum: { - service_overweight: { - index: 'u64', - weightLimit: 'SpWeightsWeightV2Weight', - }, + __Unused0: 'Null', suspend_xcm_execution: 'Null', resume_xcm_execution: 'Null', update_suspend_threshold: { @@ -3651,30 +3688,12 @@ export default { _alias: { new_: 'new', }, - new_: 'u32', - }, - update_threshold_weight: { - _alias: { - new_: 'new', - }, - new_: 'SpWeightsWeightV2Weight', - }, - update_weight_restrict_decay: { - _alias: { - new_: 'new', - }, - new_: 'SpWeightsWeightV2Weight', - }, - update_xcmp_max_individual_weight: { - _alias: { - new_: 'new', - }, - new_: 'SpWeightsWeightV2Weight' + new_: 'u32' } } }, /** - * Lookup268: pallet_xcm::pallet::Call + * Lookup272: pallet_xcm::pallet::Call **/ PalletXcmCall: { _enum: { @@ -3726,12 +3745,19 @@ export default { weightLimit: 'XcmV3WeightLimit', }, force_suspension: { - suspended: 'bool' + suspended: 'bool', + }, + transfer_assets: { + dest: 'XcmVersionedMultiLocation', + beneficiary: 'XcmVersionedMultiLocation', + assets: 'XcmVersionedMultiAssets', + feeAssetItem: 'u32', + weightLimit: 'XcmV3WeightLimit' } } }, /** - * Lookup269: xcm::VersionedXcm + * Lookup273: xcm::VersionedXcm **/ XcmVersionedXcm: { _enum: { @@ -3742,11 +3768,11 @@ export default { } }, /** - * Lookup270: xcm::v2::Xcm + * Lookup274: xcm::v2::Xcm **/ XcmV2Xcm: 'Vec', /** - * Lookup272: xcm::v2::Instruction + * Lookup276: xcm::v2::Instruction **/ XcmV2Instruction: { _enum: { @@ -3844,7 +3870,7 @@ export default { } }, /** - * Lookup273: xcm::v2::Response + * Lookup277: xcm::v2::Response **/ XcmV2Response: { _enum: { @@ -3855,7 +3881,7 @@ export default { } }, /** - * Lookup276: xcm::v2::traits::Error + * Lookup280: xcm::v2::traits::Error **/ XcmV2TraitsError: { _enum: { @@ -3888,7 +3914,7 @@ export default { } }, /** - * Lookup277: xcm::v2::multiasset::MultiAssetFilter + * Lookup281: xcm::v2::multiasset::MultiAssetFilter **/ XcmV2MultiassetMultiAssetFilter: { _enum: { @@ -3897,7 +3923,7 @@ export default { } }, /** - * Lookup278: xcm::v2::multiasset::WildMultiAsset + * Lookup282: xcm::v2::multiasset::WildMultiAsset **/ XcmV2MultiassetWildMultiAsset: { _enum: { @@ -3909,13 +3935,13 @@ export default { } }, /** - * Lookup279: xcm::v2::multiasset::WildFungibility + * Lookup283: xcm::v2::multiasset::WildFungibility **/ XcmV2MultiassetWildFungibility: { _enum: ['Fungible', 'NonFungible'] }, /** - * Lookup280: xcm::v2::WeightLimit + * Lookup284: xcm::v2::WeightLimit **/ XcmV2WeightLimit: { _enum: { @@ -3924,18 +3950,11 @@ export default { } }, /** - * Lookup289: cumulus_pallet_dmp_queue::pallet::Call + * Lookup293: cumulus_pallet_dmp_queue::pallet::Call **/ - CumulusPalletDmpQueueCall: { - _enum: { - service_overweight: { - index: 'u64', - weightLimit: 'SpWeightsWeightV2Weight' - } - } - }, + CumulusPalletDmpQueueCall: 'Null', /** - * Lookup290: orml_xtokens::module::Call + * Lookup294: orml_xtokens::module::Call **/ OrmlXtokensModuleCall: { _enum: { @@ -3978,7 +3997,7 @@ export default { } }, /** - * Lookup291: xcm::VersionedMultiAsset + * Lookup295: xcm::VersionedMultiAsset **/ XcmVersionedMultiAsset: { _enum: { @@ -3989,7 +4008,7 @@ export default { } }, /** - * Lookup292: orml_xcm::module::Call + * Lookup296: orml_xcm::module::Call **/ OrmlXcmModuleCall: { _enum: { @@ -4000,7 +4019,24 @@ export default { } }, /** - * Lookup293: orml_authority::module::Call + * Lookup297: pallet_message_queue::pallet::Call + **/ + PalletMessageQueueCall: { + _enum: { + reap_page: { + messageOrigin: 'CumulusPrimitivesCoreAggregateMessageOrigin', + pageIndex: 'u32', + }, + execute_overweight: { + messageOrigin: 'CumulusPrimitivesCoreAggregateMessageOrigin', + page: 'u32', + index: 'u32', + weightLimit: 'SpWeightsWeightV2Weight' + } + } + }, + /** + * Lookup298: orml_authority::module::Call **/ OrmlAuthorityModuleCall: { _enum: { @@ -4049,13 +4085,13 @@ export default { } }, /** - * Lookup294: acala_primitives::AuthoritysOriginId + * Lookup299: acala_primitives::AuthoritysOriginId **/ AcalaPrimitivesAuthoritysOriginId: { _enum: ['Root', 'Treasury', 'HonzonTreasury', 'HomaTreasury', 'TreasuryReserve'] }, /** - * Lookup295: frame_support::traits::schedule::DispatchTime + * Lookup300: frame_support::traits::schedule::DispatchTime **/ FrameSupportScheduleDispatchTime: { _enum: { @@ -4064,7 +4100,7 @@ export default { } }, /** - * Lookup296: pallet_collective::pallet::Call + * Lookup301: pallet_collective::pallet::Call **/ PalletCollectiveCall: { _enum: { @@ -4100,7 +4136,7 @@ export default { } }, /** - * Lookup297: pallet_membership::pallet::Call + * Lookup302: pallet_membership::pallet::Call **/ PalletMembershipCall: { _enum: { @@ -4130,7 +4166,7 @@ export default { } }, /** - * Lookup304: pallet_democracy::pallet::Call + * Lookup309: pallet_democracy::pallet::Call **/ PalletDemocracyCall: { _enum: { @@ -4199,13 +4235,13 @@ export default { } }, /** - * Lookup305: pallet_democracy::conviction::Conviction + * Lookup310: pallet_democracy::conviction::Conviction **/ PalletDemocracyConviction: { _enum: ['None', 'Locked1x', 'Locked2x', 'Locked3x', 'Locked4x', 'Locked5x', 'Locked6x'] }, /** - * Lookup307: orml_oracle::module::Call + * Lookup312: orml_oracle::module::Call **/ OrmlOracleModuleCall: { _enum: { @@ -4215,7 +4251,7 @@ export default { } }, /** - * Lookup310: orml_auction::module::Call + * Lookup315: orml_auction::module::Call **/ OrmlAuctionModuleCall: { _enum: { @@ -4226,7 +4262,7 @@ export default { } }, /** - * Lookup311: orml_parameters::module::Call + * Lookup316: orml_parameters::module::Call **/ OrmlParametersModuleCall: { _enum: { @@ -4236,7 +4272,7 @@ export default { } }, /** - * Lookup312: module_prices::module::Call + * Lookup317: module_prices::module::Call **/ ModulePricesModuleCall: { _enum: { @@ -4249,7 +4285,7 @@ export default { } }, /** - * Lookup313: module_dex::module::Call + * Lookup318: module_dex::module::Call **/ ModuleDexModuleCall: { _enum: { @@ -4332,7 +4368,7 @@ export default { } }, /** - * Lookup314: module_dex_oracle::module::Call + * Lookup319: module_dex_oracle::module::Call **/ ModuleDexOracleModuleCall: { _enum: { @@ -4353,7 +4389,7 @@ export default { } }, /** - * Lookup315: module_aggregated_dex::module::Call + * Lookup320: module_aggregated_dex::module::Call **/ ModuleAggregatedDexModuleCall: { _enum: { @@ -4373,7 +4409,7 @@ export default { } }, /** - * Lookup320: module_earning::module::Call + * Lookup325: module_earning::module::Call **/ ModuleEarningModuleCall: { _enum: { @@ -4393,7 +4429,7 @@ export default { } }, /** - * Lookup321: module_auction_manager::module::Call + * Lookup326: module_auction_manager::module::Call **/ ModuleAuctionManagerModuleCall: { _enum: { @@ -4403,11 +4439,11 @@ export default { } }, /** - * Lookup322: module_loans::module::Call + * Lookup327: module_loans::module::Call **/ ModuleLoansModuleCall: 'Null', /** - * Lookup323: module_honzon::module::Call + * Lookup328: module_honzon::module::Call **/ ModuleHonzonModuleCall: { _enum: { @@ -4456,7 +4492,7 @@ export default { } }, /** - * Lookup324: module_cdp_treasury::module::Call + * Lookup329: module_cdp_treasury::module::Call **/ ModuleCdpTreasuryModuleCall: { _enum: { @@ -4486,7 +4522,7 @@ export default { } }, /** - * Lookup325: module_support::dex::SwapLimit + * Lookup330: module_support::dex::SwapLimit **/ ModuleSupportDexSwapLimit: { _enum: { @@ -4495,7 +4531,7 @@ export default { } }, /** - * Lookup326: module_cdp_engine::module::Call + * Lookup331: module_cdp_engine::module::Call **/ ModuleCdpEngineModuleCall: { _enum: { @@ -4524,7 +4560,7 @@ export default { } }, /** - * Lookup327: orml_traits::Change> + * Lookup332: orml_traits::Change> **/ OrmlTraitsChangeOption: { _enum: { @@ -4533,7 +4569,7 @@ export default { } }, /** - * Lookup328: orml_traits::Change + * Lookup333: orml_traits::Change **/ OrmlTraitsChangeU128: { _enum: { @@ -4542,7 +4578,7 @@ export default { } }, /** - * Lookup329: module_emergency_shutdown::module::Call + * Lookup334: module_emergency_shutdown::module::Call **/ ModuleEmergencyShutdownModuleCall: { _enum: { @@ -4554,7 +4590,7 @@ export default { } }, /** - * Lookup330: module_homa::module::Call + * Lookup335: module_homa::module::Call **/ ModuleHomaModuleCall: { _enum: { @@ -4596,7 +4632,7 @@ export default { } }, /** - * Lookup335: module_xcm_interface::module::Call + * Lookup340: module_xcm_interface::module::Call **/ ModuleXcmInterfaceModuleCall: { _enum: { @@ -4606,7 +4642,7 @@ export default { } }, /** - * Lookup338: module_incentives::module::Call + * Lookup343: module_incentives::module::Call **/ ModuleIncentivesModuleCall: { _enum: { @@ -4634,7 +4670,7 @@ export default { } }, /** - * Lookup343: module_nft::module::Call + * Lookup348: module_nft::module::Call **/ ModuleNftModuleCall: { _enum: { @@ -4672,13 +4708,13 @@ export default { } }, /** - * Lookup345: acala_primitives::nft::ClassProperty + * Lookup350: acala_primitives::nft::ClassProperty **/ AcalaPrimitivesNftClassProperty: { _enum: ['__Unused0', 'Transferable', 'Burnable', '__Unused3', 'Mintable', '__Unused5', '__Unused6', '__Unused7', 'ClassPropertiesMutable'] }, /** - * Lookup348: module_asset_registry::module::Call + * Lookup353: module_asset_registry::module::Call **/ ModuleAssetRegistryModuleCall: { _enum: { @@ -4717,7 +4753,7 @@ export default { } }, /** - * Lookup349: module_liquid_crowdloan::module::Call + * Lookup354: module_liquid_crowdloan::module::Call **/ ModuleLiquidCrowdloanModuleCall: { _enum: { @@ -4733,7 +4769,7 @@ export default { } }, /** - * Lookup350: module_evm::module::Call + * Lookup355: module_evm::module::Call **/ ModuleEvmModuleCall: { _enum: { @@ -4831,7 +4867,7 @@ export default { } }, /** - * Lookup351: ethereum::transaction::TransactionAction + * Lookup356: ethereum::transaction::TransactionAction **/ EthereumTransactionTransactionAction: { _enum: { @@ -4840,14 +4876,14 @@ export default { } }, /** - * Lookup353: ethereum::transaction::AccessListItem + * Lookup358: ethereum::transaction::AccessListItem **/ EthereumTransactionAccessListItem: { address: 'H160', storageKeys: 'Vec' }, /** - * Lookup354: module_evm_accounts::module::Call + * Lookup359: module_evm_accounts::module::Call **/ ModuleEvmAccountsModuleCall: { _enum: { @@ -4859,7 +4895,7 @@ export default { } }, /** - * Lookup356: nutsfinance_stable_asset::pallet::Call + * Lookup361: nutsfinance_stable_asset::pallet::Call **/ NutsfinanceStableAssetCall: { _enum: { @@ -4924,7 +4960,7 @@ export default { } }, /** - * Lookup357: cumulus_pallet_parachain_system::pallet::Call + * Lookup362: cumulus_pallet_parachain_system::pallet::Call **/ CumulusPalletParachainSystemCall: { _enum: { @@ -4944,7 +4980,7 @@ export default { } }, /** - * Lookup358: cumulus_primitives_parachain_inherent::ParachainInherentData + * Lookup363: cumulus_primitives_parachain_inherent::ParachainInherentData **/ CumulusPrimitivesParachainInherentParachainInherentData: { validationData: 'PolkadotPrimitivesV6PersistedValidationData', @@ -4953,7 +4989,7 @@ export default { horizontalMessages: 'BTreeMap>' }, /** - * Lookup359: polkadot_primitives::v6::PersistedValidationData + * Lookup364: polkadot_primitives::v6::PersistedValidationData **/ PolkadotPrimitivesV6PersistedValidationData: { parentHead: 'Bytes', @@ -4962,27 +4998,27 @@ export default { maxPovSize: 'u32' }, /** - * Lookup361: sp_trie::storage_proof::StorageProof + * Lookup366: sp_trie::storage_proof::StorageProof **/ SpTrieStorageProof: { trieNodes: 'BTreeSet' }, /** - * Lookup364: polkadot_core_primitives::InboundDownwardMessage + * Lookup369: polkadot_core_primitives::InboundDownwardMessage **/ PolkadotCorePrimitivesInboundDownwardMessage: { sentAt: 'u32', msg: 'Bytes' }, /** - * Lookup367: polkadot_core_primitives::InboundHrmpMessage + * Lookup372: polkadot_core_primitives::InboundHrmpMessage **/ PolkadotCorePrimitivesInboundHrmpMessage: { sentAt: 'u32', data: 'Bytes' }, /** - * Lookup370: pallet_sudo::pallet::Call + * Lookup375: pallet_sudo::pallet::Call **/ PalletSudoCall: { _enum: { @@ -5001,28 +5037,29 @@ export default { }, sudo_as: { who: 'MultiAddress', - call: 'Call' - } + call: 'Call', + }, + remove_key: 'Null' } }, /** - * Lookup371: sp_runtime::traits::BlakeTwo256 + * Lookup376: sp_runtime::traits::BlakeTwo256 **/ SpRuntimeBlakeTwo256: 'Null', /** - * Lookup374: pallet_scheduler::pallet::Error + * Lookup379: pallet_scheduler::pallet::Error **/ PalletSchedulerError: { _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange', 'Named'] }, /** - * Lookup375: pallet_utility::pallet::Error + * Lookup380: pallet_utility::pallet::Error **/ PalletUtilityError: { _enum: ['TooManyCalls'] }, /** - * Lookup377: pallet_multisig::Multisig + * Lookup382: pallet_multisig::Multisig **/ PalletMultisigMultisig: { when: 'PalletMultisigTimepoint', @@ -5031,13 +5068,13 @@ export default { approvals: 'Vec' }, /** - * Lookup379: pallet_multisig::pallet::Error + * Lookup384: pallet_multisig::pallet::Error **/ PalletMultisigError: { _enum: ['MinimumThreshold', 'AlreadyApproved', 'NoApprovalsNeeded', 'TooFewSignatories', 'TooManySignatories', 'SignatoriesOutOfOrder', 'SenderInSignatories', 'NotFound', 'NotOwner', 'NoTimepoint', 'WrongTimepoint', 'UnexpectedTimepoint', 'MaxWeightTooLow', 'AlreadyStored'] }, /** - * Lookup382: pallet_proxy::ProxyDefinition + * Lookup387: pallet_proxy::ProxyDefinition **/ PalletProxyProxyDefinition: { delegate: 'AccountId32', @@ -5045,7 +5082,7 @@ export default { delay: 'u32' }, /** - * Lookup386: pallet_proxy::Announcement + * Lookup391: pallet_proxy::Announcement **/ PalletProxyAnnouncement: { real: 'AccountId32', @@ -5053,19 +5090,19 @@ export default { height: 'u32' }, /** - * Lookup388: pallet_proxy::pallet::Error + * Lookup393: pallet_proxy::pallet::Error **/ PalletProxyError: { _enum: ['TooMany', 'NotFound', 'NotProxy', 'Unproxyable', 'Duplicate', 'NoPermission', 'Unannounced', 'NoSelfProxy'] }, /** - * Lookup389: module_transaction_pause::module::Error + * Lookup394: module_transaction_pause::module::Error **/ ModuleTransactionPauseModuleError: { _enum: ['CannotPause', 'InvalidCharacter'] }, /** - * Lookup390: pallet_preimage::OldRequestStatus + * Lookup395: pallet_preimage::OldRequestStatus **/ PalletPreimageOldRequestStatus: { _enum: { @@ -5081,7 +5118,7 @@ export default { } }, /** - * Lookup393: pallet_preimage::RequestStatus> + * Lookup398: pallet_preimage::RequestStatus> **/ PalletPreimageRequestStatus: { _enum: { @@ -5097,13 +5134,13 @@ export default { } }, /** - * Lookup399: pallet_preimage::pallet::Error + * Lookup404: pallet_preimage::pallet::Error **/ PalletPreimageError: { _enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested', 'TooMany', 'TooFew'] }, /** - * Lookup401: pallet_balances::types::BalanceLock + * Lookup406: pallet_balances::types::BalanceLock **/ PalletBalancesBalanceLock: { id: '[u8;8]', @@ -5111,26 +5148,26 @@ export default { reasons: 'PalletBalancesReasons' }, /** - * Lookup402: pallet_balances::types::Reasons + * Lookup407: pallet_balances::types::Reasons **/ PalletBalancesReasons: { _enum: ['Fee', 'Misc', 'All'] }, /** - * Lookup405: pallet_balances::types::ReserveData + * Lookup410: pallet_balances::types::ReserveData **/ PalletBalancesReserveData: { id: 'AcalaPrimitivesReserveIdentifier', amount: 'u128' }, /** - * Lookup406: acala_primitives::ReserveIdentifier + * Lookup411: acala_primitives::ReserveIdentifier **/ AcalaPrimitivesReserveIdentifier: { _enum: ['CollatorSelection', 'EvmStorageDeposit', 'EvmDeveloperDeposit', 'Honzon', 'Nft', 'TransactionPayment', 'TransactionPaymentDeposit', 'Count'] }, /** - * Lookup410: acala_runtime::RuntimeHoldReason + * Lookup415: acala_runtime::RuntimeHoldReason **/ AcalaRuntimeRuntimeHoldReason: { _enum: { @@ -5146,33 +5183,33 @@ export default { } }, /** - * Lookup411: pallet_preimage::pallet::HoldReason + * Lookup416: pallet_preimage::pallet::HoldReason **/ PalletPreimageHoldReason: { _enum: ['Preimage'] }, /** - * Lookup414: pallet_balances::types::IdAmount + * Lookup419: pallet_balances::types::IdAmount **/ PalletBalancesIdAmount: { id: 'Null', amount: 'u128' }, /** - * Lookup416: pallet_balances::pallet::Error + * Lookup421: pallet_balances::pallet::Error **/ PalletBalancesError: { _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'Expendability', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves', 'TooManyHolds', 'TooManyFreezes'] }, /** - * Lookup419: orml_tokens::BalanceLock + * Lookup424: orml_tokens::BalanceLock **/ OrmlTokensBalanceLock: { id: '[u8;8]', amount: 'u128' }, /** - * Lookup421: orml_tokens::AccountData + * Lookup426: orml_tokens::AccountData **/ OrmlTokensAccountData: { free: 'u128', @@ -5180,42 +5217,51 @@ export default { frozen: 'u128' }, /** - * Lookup423: orml_tokens::ReserveData + * Lookup428: orml_tokens::ReserveData **/ OrmlTokensReserveData: { id: 'AcalaPrimitivesReserveIdentifier', amount: 'u128' }, /** - * Lookup425: orml_tokens::module::Error + * Lookup430: orml_tokens::module::Error **/ OrmlTokensModuleError: { _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves'] }, /** - * Lookup426: module_currencies::module::Error + * Lookup431: module_currencies::module::Error **/ ModuleCurrenciesModuleError: { _enum: ['AmountIntoBalanceFailed', 'BalanceTooLow', 'Erc20InvalidOperation', 'EvmAccountNotFound', 'RealOriginNotFound', 'DepositFailed'] }, /** - * Lookup428: orml_vesting::module::Error + * Lookup433: orml_vesting::module::Error **/ OrmlVestingModuleError: { _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded'] }, /** - * Lookup430: frame_support::PalletId + * Lookup435: module_transaction_payment::module::ChargeFeeMethod + **/ + ModuleTransactionPaymentModuleChargeFeeMethod: { + _enum: { + FeeCurrency: 'AcalaPrimitivesCurrencyCurrencyId', + FeeAggregatedPath: 'Vec' + } + }, + /** + * Lookup436: frame_support::PalletId **/ FrameSupportPalletId: '[u8;8]', /** - * Lookup432: module_transaction_payment::module::Error + * Lookup438: module_transaction_payment::module::Error **/ ModuleTransactionPaymentModuleError: { _enum: ['InvalidSwapPath', 'InvalidBalance', 'InvalidRate', 'InvalidToken', 'DexNotAvailable', 'ChargeFeePoolAlreadyExisted'] }, /** - * Lookup433: pallet_treasury::Proposal + * Lookup439: pallet_treasury::Proposal **/ PalletTreasuryProposal: { proposer: 'AccountId32', @@ -5224,7 +5270,7 @@ export default { bond: 'u128' }, /** - * Lookup436: pallet_treasury::SpendStatus + * Lookup442: pallet_treasury::SpendStatus **/ PalletTreasurySpendStatus: { assetKind: 'Null', @@ -5235,7 +5281,7 @@ export default { status: 'PalletTreasuryPaymentState' }, /** - * Lookup437: pallet_treasury::PaymentState + * Lookup443: pallet_treasury::PaymentState **/ PalletTreasuryPaymentState: { _enum: { @@ -5247,13 +5293,13 @@ export default { } }, /** - * Lookup438: pallet_treasury::pallet::Error + * Lookup444: pallet_treasury::pallet::Error **/ PalletTreasuryError: { _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved', 'FailedToConvertBalance', 'SpendExpired', 'EarlyPayout', 'AlreadyAttempted', 'PayoutError', 'NotAttempted', 'Inconclusive'] }, /** - * Lookup439: pallet_bounties::Bounty + * Lookup445: pallet_bounties::Bounty **/ PalletBountiesBounty: { proposer: 'AccountId32', @@ -5264,7 +5310,7 @@ export default { status: 'PalletBountiesBountyStatus' }, /** - * Lookup440: pallet_bounties::BountyStatus + * Lookup446: pallet_bounties::BountyStatus **/ PalletBountiesBountyStatus: { _enum: { @@ -5286,13 +5332,13 @@ export default { } }, /** - * Lookup442: pallet_bounties::pallet::Error + * Lookup448: pallet_bounties::pallet::Error **/ PalletBountiesError: { _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'ReasonTooBig', 'UnexpectedStatus', 'RequireCurator', 'InvalidValue', 'InvalidFee', 'PendingPayout', 'Premature', 'HasActiveChildBounty', 'TooManyQueued'] }, /** - * Lookup443: pallet_tips::OpenTip + * Lookup449: pallet_tips::OpenTip **/ PalletTipsOpenTip: { reason: 'H256', @@ -5304,55 +5350,35 @@ export default { findersFee: 'bool' }, /** - * Lookup445: pallet_tips::pallet::Error + * Lookup451: pallet_tips::pallet::Error **/ PalletTipsError: { _enum: ['ReasonTooBig', 'AlreadyKnown', 'UnknownTip', 'MaxTipAmountExceeded', 'NotFinder', 'StillOpen', 'Premature'] }, /** - * Lookup449: module_collator_selection::pallet::Error + * Lookup455: module_collator_selection::pallet::Error **/ ModuleCollatorSelectionError: { _enum: ['MaxCandidatesExceeded', 'BelowCandidatesMin', 'StillLocked', 'Unknown', 'Permission', 'AlreadyCandidate', 'NotCandidate', 'NotNonCandidate', 'NothingToWithdraw', 'RequireSessionKey', 'AlreadyInvulnerable', 'InvalidProof', 'MaxInvulnerablesExceeded'] }, /** - * Lookup453: sp_core::crypto::KeyTypeId + * Lookup459: sp_core::crypto::KeyTypeId **/ SpCoreCryptoKeyTypeId: '[u8;4]', /** - * Lookup454: pallet_session::pallet::Error + * Lookup460: pallet_session::pallet::Error **/ PalletSessionError: { _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount'] }, /** - * Lookup459: module_session_manager::module::Error + * Lookup465: module_session_manager::module::Error **/ ModuleSessionManagerModuleError: { _enum: ['InvalidSession', 'InvalidDuration', 'EstimateNextSessionFailed'] }, /** - * Lookup461: cumulus_pallet_xcmp_queue::InboundChannelDetails - **/ - CumulusPalletXcmpQueueInboundChannelDetails: { - sender: 'u32', - state: 'CumulusPalletXcmpQueueInboundState', - messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesPrimitivesXcmpMessageFormat)>' - }, - /** - * Lookup462: cumulus_pallet_xcmp_queue::InboundState - **/ - CumulusPalletXcmpQueueInboundState: { - _enum: ['Ok', 'Suspended'] - }, - /** - * Lookup465: polkadot_parachain_primitives::primitives::XcmpMessageFormat - **/ - PolkadotParachainPrimitivesPrimitivesXcmpMessageFormat: { - _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals'] - }, - /** - * Lookup468: cumulus_pallet_xcmp_queue::OutboundChannelDetails + * Lookup470: cumulus_pallet_xcmp_queue::OutboundChannelDetails **/ CumulusPalletXcmpQueueOutboundChannelDetails: { recipient: 'u32', @@ -5362,30 +5388,27 @@ export default { lastIndex: 'u16' }, /** - * Lookup469: cumulus_pallet_xcmp_queue::OutboundState + * Lookup471: cumulus_pallet_xcmp_queue::OutboundState **/ CumulusPalletXcmpQueueOutboundState: { _enum: ['Ok', 'Suspended'] }, /** - * Lookup471: cumulus_pallet_xcmp_queue::QueueConfigData + * Lookup473: cumulus_pallet_xcmp_queue::QueueConfigData **/ CumulusPalletXcmpQueueQueueConfigData: { suspendThreshold: 'u32', dropThreshold: 'u32', - resumeThreshold: 'u32', - thresholdWeight: 'SpWeightsWeightV2Weight', - weightRestrictDecay: 'SpWeightsWeightV2Weight', - xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight' + resumeThreshold: 'u32' }, /** - * Lookup473: cumulus_pallet_xcmp_queue::pallet::Error + * Lookup474: cumulus_pallet_xcmp_queue::pallet::Error **/ CumulusPalletXcmpQueueError: { - _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit'] + _enum: ['BadQueueConfig', 'AlreadySuspended', 'AlreadyResumed'] }, /** - * Lookup474: pallet_xcm::pallet::QueryStatus + * Lookup475: pallet_xcm::pallet::QueryStatus **/ PalletXcmQueryStatus: { _enum: { @@ -5406,7 +5429,7 @@ export default { } }, /** - * Lookup478: xcm::VersionedResponse + * Lookup479: xcm::VersionedResponse **/ XcmVersionedResponse: { _enum: { @@ -5417,7 +5440,7 @@ export default { } }, /** - * Lookup484: pallet_xcm::pallet::VersionMigrationStage + * Lookup485: pallet_xcm::pallet::VersionMigrationStage **/ PalletXcmVersionMigrationStage: { _enum: { @@ -5428,7 +5451,7 @@ export default { } }, /** - * Lookup487: xcm::VersionedAssetId + * Lookup488: xcm::VersionedAssetId **/ XcmVersionedAssetId: { _enum: { @@ -5439,7 +5462,7 @@ export default { } }, /** - * Lookup488: pallet_xcm::pallet::RemoteLockedFungibleRecord + * Lookup489: pallet_xcm::pallet::RemoteLockedFungibleRecord **/ PalletXcmRemoteLockedFungibleRecord: { amount: 'u128', @@ -5448,61 +5471,95 @@ export default { consumers: 'Vec<(Null,u128)>' }, /** - * Lookup495: pallet_xcm::pallet::Error + * Lookup496: pallet_xcm::pallet::Error **/ PalletXcmError: { - _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed', 'InvalidAsset', 'LowBalance', 'TooManyLocks', 'AccountNotSovereign', 'FeesNotMet', 'LockNotFound', 'InUse'] + _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed', 'CannotCheckOutTeleport', 'LowBalance', 'TooManyLocks', 'AccountNotSovereign', 'FeesNotMet', 'LockNotFound', 'InUse', 'InvalidAssetNotConcrete', 'InvalidAssetUnknownReserve', 'InvalidAssetUnsupportedReserve', 'TooManyReserves', 'LocalExecutionIncomplete'] }, /** - * Lookup496: cumulus_pallet_xcm::pallet::Error + * Lookup497: cumulus_pallet_dmp_queue::pallet::MigrationState **/ - CumulusPalletXcmError: 'Null', + CumulusPalletDmpQueueMigrationState: { + _enum: { + NotStarted: 'Null', + StartedExport: { + nextBeginUsed: 'u32', + }, + CompletedExport: 'Null', + StartedOverweightExport: { + nextOverweightIndex: 'u64', + }, + CompletedOverweightExport: 'Null', + StartedCleanup: { + cursor: 'Option', + }, + Completed: 'Null' + } + }, /** - * Lookup497: cumulus_pallet_dmp_queue::ConfigData + * Lookup500: orml_xtokens::module::Error **/ - CumulusPalletDmpQueueConfigData: { - maxIndividual: 'SpWeightsWeightV2Weight' + OrmlXtokensModuleError: { + _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined'] }, /** - * Lookup498: cumulus_pallet_dmp_queue::PageIndexData + * Lookup503: orml_unknown_tokens::module::Error **/ - CumulusPalletDmpQueuePageIndexData: { - beginUsed: 'u32', - endUsed: 'u32', - overweightCount: 'u64' + OrmlUnknownTokensModuleError: { + _enum: ['BalanceTooLow', 'BalanceOverflow', 'UnhandledAsset'] }, /** - * Lookup501: cumulus_pallet_dmp_queue::pallet::Error + * Lookup504: orml_xcm::module::Error **/ - CumulusPalletDmpQueueError: { - _enum: ['Unknown', 'OverLimit'] + OrmlXcmModuleError: { + _enum: ['Unreachable', 'SendFailure', 'BadVersion'] }, /** - * Lookup502: orml_xtokens::module::Error + * Lookup505: pallet_message_queue::BookState **/ - OrmlXtokensModuleError: { - _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined'] + PalletMessageQueueBookState: { + _alias: { + size_: 'size' + }, + begin: 'u32', + end: 'u32', + count: 'u32', + readyNeighbours: 'Option', + messageCount: 'u64', + size_: 'u64' }, /** - * Lookup505: orml_unknown_tokens::module::Error + * Lookup507: pallet_message_queue::Neighbours **/ - OrmlUnknownTokensModuleError: { - _enum: ['BalanceTooLow', 'BalanceOverflow', 'UnhandledAsset'] + PalletMessageQueueNeighbours: { + prev: 'CumulusPrimitivesCoreAggregateMessageOrigin', + next: 'CumulusPrimitivesCoreAggregateMessageOrigin' }, /** - * Lookup506: orml_xcm::module::Error + * Lookup509: pallet_message_queue::Page **/ - OrmlXcmModuleError: { - _enum: ['Unreachable', 'SendFailure', 'BadVersion'] + PalletMessageQueuePage: { + remaining: 'u32', + remainingSize: 'u32', + firstIndex: 'u32', + first: 'u32', + last: 'u32', + heap: 'Bytes' }, /** - * Lookup508: orml_authority::module::Error + * Lookup511: pallet_message_queue::pallet::Error + **/ + PalletMessageQueueError: { + _enum: ['NotReapable', 'NoPage', 'NoMessage', 'AlreadyProcessed', 'Queued', 'InsufficientWeight', 'TemporarilyUnprocessable', 'QueuePaused', 'RecursiveDisallowed'] + }, + /** + * Lookup513: orml_authority::module::Error **/ OrmlAuthorityModuleError: { _enum: ['FailedToSchedule', 'FailedToCancel', 'FailedToFastTrack', 'FailedToDelay', 'CallNotAuthorized', 'TriggerCallNotPermitted', 'WrongCallWeightBound'] }, /** - * Lookup510: pallet_collective::Votes + * Lookup515: pallet_collective::Votes **/ PalletCollectiveVotes: { index: 'u32', @@ -5512,19 +5569,19 @@ export default { end: 'u32' }, /** - * Lookup511: pallet_collective::pallet::Error + * Lookup516: pallet_collective::pallet::Error **/ PalletCollectiveError: { _enum: ['NotMember', 'DuplicateProposal', 'ProposalMissing', 'WrongIndex', 'DuplicateVote', 'AlreadyInitialized', 'TooEarly', 'TooManyProposals', 'WrongProposalWeight', 'WrongProposalLength', 'PrimeAccountNotMember'] }, /** - * Lookup513: pallet_membership::pallet::Error + * Lookup518: pallet_membership::pallet::Error **/ PalletMembershipError: { _enum: ['AlreadyMember', 'NotMember', 'TooManyMembers'] }, /** - * Lookup524: pallet_democracy::types::ReferendumInfo, Balance> + * Lookup529: pallet_democracy::types::ReferendumInfo, Balance> **/ PalletDemocracyReferendumInfo: { _enum: { @@ -5536,7 +5593,7 @@ export default { } }, /** - * Lookup525: pallet_democracy::types::ReferendumStatus, Balance> + * Lookup530: pallet_democracy::types::ReferendumStatus, Balance> **/ PalletDemocracyReferendumStatus: { end: 'u32', @@ -5546,7 +5603,7 @@ export default { tally: 'PalletDemocracyTally' }, /** - * Lookup526: pallet_democracy::types::Tally + * Lookup531: pallet_democracy::types::Tally **/ PalletDemocracyTally: { ayes: 'u128', @@ -5554,7 +5611,7 @@ export default { turnout: 'u128' }, /** - * Lookup527: pallet_democracy::vote::Voting + * Lookup532: pallet_democracy::vote::Voting **/ PalletDemocracyVoteVoting: { _enum: { @@ -5573,41 +5630,41 @@ export default { } }, /** - * Lookup531: pallet_democracy::types::Delegations + * Lookup536: pallet_democracy::types::Delegations **/ PalletDemocracyDelegations: { votes: 'u128', capital: 'u128' }, /** - * Lookup532: pallet_democracy::vote::PriorLock + * Lookup537: pallet_democracy::vote::PriorLock **/ PalletDemocracyVotePriorLock: '(u32,u128)', /** - * Lookup535: pallet_democracy::pallet::Error + * Lookup540: pallet_democracy::pallet::Error **/ PalletDemocracyError: { _enum: ['ValueLow', 'ProposalMissing', 'AlreadyCanceled', 'DuplicateProposal', 'ProposalBlacklisted', 'NotSimpleMajority', 'InvalidHash', 'NoProposal', 'AlreadyVetoed', 'ReferendumInvalid', 'NoneWaiting', 'NotVoter', 'NoPermission', 'AlreadyDelegating', 'InsufficientFunds', 'NotDelegating', 'VotesExist', 'InstantNotAllowed', 'Nonsense', 'WrongUpperBound', 'MaxVotesReached', 'TooMany', 'VotingPeriodLow', 'PreimageNotExist'] }, /** - * Lookup536: orml_oracle::module::TimestampedValue + * Lookup541: orml_oracle::module::TimestampedValue **/ OrmlOracleModuleTimestampedValue: { value: 'u128', timestamp: 'u64' }, /** - * Lookup537: orml_utilities::ordered_set::OrderedSet + * Lookup542: orml_utilities::ordered_set::OrderedSet **/ OrmlUtilitiesOrderedSet: 'Vec', /** - * Lookup539: orml_oracle::module::Error + * Lookup544: orml_oracle::module::Error **/ OrmlOracleModuleError: { _enum: ['NoPermission', 'AlreadyFeeded'] }, /** - * Lookup542: orml_traits::auction::AuctionInfo + * Lookup547: orml_traits::auction::AuctionInfo **/ OrmlTraitsAuctionAuctionInfo: { bid: 'Option<(AccountId32,u128)>', @@ -5615,26 +5672,26 @@ export default { end: 'Option' }, /** - * Lookup543: orml_auction::module::Error + * Lookup548: orml_auction::module::Error **/ OrmlAuctionModuleError: { _enum: ['AuctionNotExist', 'AuctionNotStarted', 'BidNotAccepted', 'InvalidBidPrice', 'NoAvailableAuctionId'] }, /** - * Lookup544: orml_rewards::PoolInfo + * Lookup549: orml_rewards::PoolInfo **/ OrmlRewardsPoolInfo: { totalShares: 'u128', rewards: 'BTreeMap' }, /** - * Lookup552: orml_rewards::module::Error + * Lookup557: orml_rewards::module::Error **/ OrmlRewardsModuleError: { _enum: ['PoolDoesNotExist', 'ShareDoesNotExist', 'CanSplitOnlyLessThanShare'] }, /** - * Lookup553: orml_nft::ClassInfo, bounded_collections::bounded_vec::BoundedVec> + * Lookup558: orml_nft::ClassInfo, bounded_collections::bounded_vec::BoundedVec> **/ OrmlNftClassInfo: { metadata: 'Bytes', @@ -5643,7 +5700,7 @@ export default { data: 'ModuleNftClassData' }, /** - * Lookup554: module_nft::ClassData + * Lookup559: module_nft::ClassData **/ ModuleNftClassData: { deposit: 'u128', @@ -5651,7 +5708,7 @@ export default { attributes: 'BTreeMap' }, /** - * Lookup556: orml_nft::TokenInfo, bounded_collections::bounded_vec::BoundedVec> + * Lookup560: orml_nft::TokenInfo, bounded_collections::bounded_vec::BoundedVec> **/ OrmlNftTokenInfo: { metadata: 'Bytes', @@ -5659,20 +5716,20 @@ export default { data: 'ModuleNftTokenData' }, /** - * Lookup557: module_nft::TokenData + * Lookup561: module_nft::TokenData **/ ModuleNftTokenData: { deposit: 'u128', attributes: 'BTreeMap' }, /** - * Lookup559: orml_nft::module::Error + * Lookup563: orml_nft::module::Error **/ OrmlNftModuleError: { _enum: ['NoAvailableClassId', 'NoAvailableTokenId', 'TokenNotFound', 'ClassNotFound', 'NoPermission', 'CannotDestroyClass', 'MaxMetadataExceeded'] }, /** - * Lookup560: acala_runtime::RuntimeParametersKey + * Lookup564: acala_runtime::RuntimeParametersKey **/ AcalaRuntimeRuntimeParametersKey: { _enum: { @@ -5680,13 +5737,13 @@ export default { } }, /** - * Lookup561: module_earning::ParametersKey + * Lookup565: module_earning::ParametersKey **/ ModuleEarningParametersKey: { _enum: ['InstantUnstakeFee'] }, /** - * Lookup562: acala_runtime::RuntimeParametersValue + * Lookup566: acala_runtime::RuntimeParametersValue **/ AcalaRuntimeRuntimeParametersValue: { _enum: { @@ -5694,7 +5751,7 @@ export default { } }, /** - * Lookup563: module_earning::ParametersValue + * Lookup567: module_earning::ParametersValue **/ ModuleEarningParametersValue: { _enum: { @@ -5702,17 +5759,17 @@ export default { } }, /** - * Lookup564: orml_parameters::module::Error + * Lookup568: orml_parameters::module::Error **/ OrmlParametersModuleError: 'Null', /** - * Lookup565: module_prices::module::Error + * Lookup569: module_prices::module::Error **/ ModulePricesModuleError: { _enum: ['AccessPriceFailed', 'NoLockedPrice'] }, /** - * Lookup566: module_dex::TradingPairStatus + * Lookup570: module_dex::TradingPairStatus **/ ModuleDexTradingPairStatus: { _enum: { @@ -5722,7 +5779,7 @@ export default { } }, /** - * Lookup567: module_dex::ProvisioningParameters + * Lookup571: module_dex::ProvisioningParameters **/ ModuleDexProvisioningParameters: { minContribution: '(u128,u128)', @@ -5731,25 +5788,25 @@ export default { notBefore: 'u32' }, /** - * Lookup570: module_dex::module::Error + * Lookup574: module_dex::module::Error **/ ModuleDexModuleError: { _enum: ['AlreadyEnabled', 'MustBeEnabled', 'MustBeProvisioning', 'MustBeDisabled', 'NotAllowedList', 'InvalidContributionIncrement', 'InvalidLiquidityIncrement', 'InvalidCurrencyId', 'InvalidTradingPathLength', 'InsufficientTargetAmount', 'ExcessiveSupplyAmount', 'InsufficientLiquidity', 'ZeroSupplyAmount', 'ZeroTargetAmount', 'UnacceptableShareIncrement', 'UnacceptableLiquidityWithdrawn', 'InvariantCheckFailed', 'UnqualifiedProvision', 'StillProvisioning', 'AssetUnregistered', 'InvalidTradingPath', 'NotAllowedRefund', 'CannotSwap'] }, /** - * Lookup575: module_dex_oracle::module::Error + * Lookup579: module_dex_oracle::module::Error **/ ModuleDexOracleModuleError: { _enum: ['AveragePriceAlreadyEnabled', 'AveragePriceMustBeEnabled', 'InvalidPool', 'InvalidCurrencyId', 'IntervalIsZero'] }, /** - * Lookup578: module_aggregated_dex::module::Error + * Lookup582: module_aggregated_dex::module::Error **/ ModuleAggregatedDexModuleError: { _enum: ['CannotSwap', 'InvalidPoolId', 'InvalidTokenIndex', 'InvalidSwapPath'] }, /** - * Lookup579: acala_primitives::bonding::ledger::BondingLedger + * Lookup583: acala_primitives::bonding::ledger::BondingLedger **/ AcalaPrimitivesBondingLedgerBondingLedger: { total: 'u128', @@ -5757,20 +5814,20 @@ export default { unlocking: 'Vec' }, /** - * Lookup581: acala_primitives::bonding::ledger::UnlockChunk + * Lookup585: acala_primitives::bonding::ledger::UnlockChunk **/ AcalaPrimitivesBondingLedgerUnlockChunk: { value: 'u128', unlockAt: 'u32' }, /** - * Lookup583: module_earning::module::Error + * Lookup587: module_earning::module::Error **/ ModuleEarningModuleError: { _enum: ['BelowMinBondThreshold', 'MaxUnlockChunksExceeded', 'NotBonded', 'NotAllowed'] }, /** - * Lookup584: module_auction_manager::CollateralAuctionItem + * Lookup588: module_auction_manager::CollateralAuctionItem **/ ModuleAuctionManagerCollateralAuctionItem: { refundRecipient: 'AccountId32', @@ -5781,38 +5838,38 @@ export default { startTime: 'u32' }, /** - * Lookup585: module_auction_manager::module::Error + * Lookup589: module_auction_manager::module::Error **/ ModuleAuctionManagerModuleError: { _enum: ['AuctionNotExists', 'InReverseStage', 'InvalidFeedPrice', 'MustAfterShutdown', 'InvalidBidPrice', 'InvalidAmount'] }, /** - * Lookup587: acala_primitives::Position + * Lookup591: acala_primitives::Position **/ AcalaPrimitivesPosition: { collateral: 'u128', debit: 'u128' }, /** - * Lookup588: module_loans::module::Error + * Lookup592: module_loans::module::Error **/ ModuleLoansModuleError: { _enum: ['AmountConvertFailed'] }, /** - * Lookup590: module_honzon::module::Error + * Lookup594: module_honzon::module::Error **/ ModuleHonzonModuleError: { _enum: ['NoPermission', 'AlreadyShutdown', 'AuthorizationNotExists', 'AlreadyAuthorized'] }, /** - * Lookup591: module_cdp_treasury::module::Error + * Lookup595: module_cdp_treasury::module::Error **/ ModuleCdpTreasuryModuleError: { _enum: ['CollateralNotEnough', 'SurplusPoolNotEnough', 'DebitPoolNotEnough', 'CannotSwap', 'NotDexShare'] }, /** - * Lookup592: module_cdp_engine::RiskManagementParams + * Lookup596: module_cdp_engine::RiskManagementParams **/ ModuleCdpEngineRiskManagementParams: { maximumTotalDebitValue: 'u128', @@ -5822,63 +5879,63 @@ export default { requiredCollateralRatio: 'Option' }, /** - * Lookup597: module_cdp_engine::module::Error + * Lookup601: module_cdp_engine::module::Error **/ ModuleCdpEngineModuleError: { _enum: ['ExceedDebitValueHardCap', 'BelowRequiredCollateralRatio', 'BelowLiquidationRatio', 'MustBeUnsafe', 'MustBeSafe', 'InvalidCollateralType', 'RemainDebitValueTooSmall', 'CollateralAmountBelowMinimum', 'InvalidFeedPrice', 'NoDebitValue', 'AlreadyShutdown', 'MustAfterShutdown', 'CollateralNotEnough', 'NotEnoughDebitDecrement', 'ConvertDebitBalanceFailed', 'LiquidationFailed', 'TooManyLiquidationContracts', 'CollateralContractNotFound', 'InvalidRate'] }, /** - * Lookup598: module_emergency_shutdown::module::Error + * Lookup602: module_emergency_shutdown::module::Error **/ ModuleEmergencyShutdownModuleError: { _enum: ['AlreadyShutdown', 'MustAfterShutdown', 'CanNotRefund', 'ExistPotentialSurplus', 'ExistUnhandledDebit'] }, /** - * Lookup599: module_homa::module::StakingLedger + * Lookup603: module_homa::module::StakingLedger **/ ModuleHomaModuleStakingLedger: { bonded: 'Compact', unlocking: 'Vec' }, /** - * Lookup603: module_homa::module::Error + * Lookup607: module_homa::module::Error **/ ModuleHomaModuleError: { _enum: ['BelowMintThreshold', 'BelowRedeemThreshold', 'ExceededStakingCurrencySoftCap', 'InsufficientUnclaimedRedemption', 'OutdatedEraIndex', 'FastMatchIsNotAllowed', 'CannotCompletelyFastMatch', 'InvalidRate', 'InvalidLastEraBumpedBlock'] }, /** - * Lookup605: module_xcm_interface::module::Error + * Lookup609: module_xcm_interface::module::Error **/ ModuleXcmInterfaceModuleError: { _enum: ['XcmFailed'] }, /** - * Lookup607: module_incentives::module::Error + * Lookup611: module_incentives::module::Error **/ ModuleIncentivesModuleError: { _enum: ['NotEnough', 'InvalidCurrencyId', 'InvalidPoolId', 'InvalidRate'] }, /** - * Lookup608: module_nft::module::Error + * Lookup612: module_nft::module::Error **/ ModuleNftModuleError: { _enum: ['ClassIdNotFound', 'TokenIdNotFound', 'NoPermission', 'InvalidQuantity', 'NonTransferable', 'NonBurnable', 'NonMintable', 'CannotDestroyClass', 'Immutable', 'AttributesTooLarge', 'IncorrectTokenId'] }, /** - * Lookup609: module_asset_registry::module::Error + * Lookup613: module_asset_registry::module::Error **/ ModuleAssetRegistryModuleError: { _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted'] }, /** - * Lookup610: module_evm::module::AccountInfo + * Lookup614: module_evm::module::AccountInfo **/ ModuleEvmModuleAccountInfo: { nonce: 'u32', contractInfo: 'Option' }, /** - * Lookup612: module_evm::module::ContractInfo + * Lookup616: module_evm::module::ContractInfo **/ ModuleEvmModuleContractInfo: { codeHash: 'H256', @@ -5886,32 +5943,32 @@ export default { published: 'bool' }, /** - * Lookup615: module_evm::module::CodeInfo + * Lookup619: module_evm::module::CodeInfo **/ ModuleEvmModuleCodeInfo: { codeSize: 'u32', refCount: 'u32' }, /** - * Lookup616: module_evm::module::Error + * Lookup620: module_evm::module::Error **/ ModuleEvmModuleError: { _enum: ['AddressNotMapped', 'ContractNotFound', 'NoPermission', 'ContractDevelopmentNotEnabled', 'ContractDevelopmentAlreadyEnabled', 'ContractAlreadyPublished', 'ContractExceedsMaxCodeSize', 'ContractAlreadyExisted', 'OutOfStorage', 'ChargeFeeFailed', 'CannotKillContract', 'ReserveStorageFailed', 'UnreserveStorageFailed', 'ChargeStorageFailed', 'InvalidDecimals', 'StrictCallFailed', 'NotEOA'] }, /** - * Lookup617: module_evm_bridge::module::Error + * Lookup621: module_evm_bridge::module::Error **/ ModuleEvmBridgeModuleError: { _enum: ['ExecutionFail', 'ExecutionRevert', 'ExecutionFatal', 'ExecutionError', 'InvalidReturnValue'] }, /** - * Lookup618: module_evm_accounts::module::Error + * Lookup622: module_evm_accounts::module::Error **/ ModuleEvmAccountsModuleError: { _enum: ['AccountIdHasMapped', 'EthAddressHasMapped', 'BadSignature', 'InvalidSignature', 'NonZeroRefCount'] }, /** - * Lookup619: nutsfinance_stable_asset::StableAssetPoolInfo + * Lookup623: nutsfinance_stable_asset::StableAssetPoolInfo **/ NutsfinanceStableAssetStableAssetPoolInfo: { poolAsset: 'AcalaPrimitivesCurrencyCurrencyId', @@ -5932,13 +5989,13 @@ export default { precision: 'u128' }, /** - * Lookup620: nutsfinance_stable_asset::pallet::Error + * Lookup624: nutsfinance_stable_asset::pallet::Error **/ NutsfinanceStableAssetError: { _enum: ['InconsistentStorage', 'InvalidPoolAsset', 'ArgumentsMismatch', 'ArgumentsError', 'PoolNotFound', 'Math', 'InvalidPoolValue', 'MintUnderMin', 'SwapUnderMin', 'RedeemUnderMin', 'RedeemOverMax'] }, /** - * Lookup622: cumulus_pallet_parachain_system::unincluded_segment::Ancestor + * Lookup626: cumulus_pallet_parachain_system::unincluded_segment::Ancestor **/ CumulusPalletParachainSystemUnincludedSegmentAncestor: { usedBandwidth: 'CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth', @@ -5946,7 +6003,7 @@ export default { consumedGoAheadSignal: 'Option' }, /** - * Lookup623: cumulus_pallet_parachain_system::unincluded_segment::UsedBandwidth + * Lookup627: cumulus_pallet_parachain_system::unincluded_segment::UsedBandwidth **/ CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth: { umpMsgCount: 'u32', @@ -5954,20 +6011,20 @@ export default { hrmpOutgoing: 'BTreeMap' }, /** - * Lookup625: cumulus_pallet_parachain_system::unincluded_segment::HrmpChannelUpdate + * Lookup629: cumulus_pallet_parachain_system::unincluded_segment::HrmpChannelUpdate **/ CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate: { msgCount: 'u32', totalBytes: 'u32' }, /** - * Lookup629: polkadot_primitives::v6::UpgradeGoAhead + * Lookup633: polkadot_primitives::v6::UpgradeGoAhead **/ PolkadotPrimitivesV6UpgradeGoAhead: { _enum: ['Abort', 'GoAhead'] }, /** - * Lookup630: cumulus_pallet_parachain_system::unincluded_segment::SegmentTracker + * Lookup634: cumulus_pallet_parachain_system::unincluded_segment::SegmentTracker **/ CumulusPalletParachainSystemUnincludedSegmentSegmentTracker: { usedBandwidth: 'CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth', @@ -5975,13 +6032,13 @@ export default { consumedGoAheadSignal: 'Option' }, /** - * Lookup632: polkadot_primitives::v6::UpgradeRestriction + * Lookup636: polkadot_primitives::v6::UpgradeRestriction **/ PolkadotPrimitivesV6UpgradeRestriction: { _enum: ['Present'] }, /** - * Lookup633: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot + * Lookup637: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot **/ CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: { dmqMqcHead: 'H256', @@ -5990,14 +6047,14 @@ export default { egressChannels: 'Vec<(u32,PolkadotPrimitivesV6AbridgedHrmpChannel)>' }, /** - * Lookup634: cumulus_pallet_parachain_system::relay_state_snapshot::RelayDispatchQueueRemainingCapacity + * Lookup638: cumulus_pallet_parachain_system::relay_state_snapshot::RelayDispatchQueueRemainingCapacity **/ CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity: { remainingCount: 'u32', remainingSize: 'u32' }, /** - * Lookup637: polkadot_primitives::v6::AbridgedHrmpChannel + * Lookup641: polkadot_primitives::v6::AbridgedHrmpChannel **/ PolkadotPrimitivesV6AbridgedHrmpChannel: { maxCapacity: 'u32', @@ -6008,7 +6065,7 @@ export default { mqcHead: 'Option' }, /** - * Lookup638: polkadot_primitives::v6::AbridgedHostConfiguration + * Lookup642: polkadot_primitives::v6::AbridgedHostConfiguration **/ PolkadotPrimitivesV6AbridgedHostConfiguration: { maxCodeSize: 'u32', @@ -6023,82 +6080,75 @@ export default { asyncBackingParams: 'PolkadotPrimitivesV6AsyncBackingAsyncBackingParams' }, /** - * Lookup639: polkadot_primitives::v6::async_backing::AsyncBackingParams + * Lookup643: polkadot_primitives::v6::async_backing::AsyncBackingParams **/ PolkadotPrimitivesV6AsyncBackingAsyncBackingParams: { maxCandidateDepth: 'u32', allowedAncestryLen: 'u32' }, /** - * Lookup645: polkadot_core_primitives::OutboundHrmpMessage + * Lookup649: polkadot_core_primitives::OutboundHrmpMessage **/ PolkadotCorePrimitivesOutboundHrmpMessage: { recipient: 'u32', data: 'Bytes' }, /** - * Lookup646: cumulus_pallet_parachain_system::CodeUpgradeAuthorization - **/ - CumulusPalletParachainSystemCodeUpgradeAuthorization: { - codeHash: 'H256', - checkVersion: 'bool' - }, - /** - * Lookup647: cumulus_pallet_parachain_system::pallet::Error + * Lookup650: cumulus_pallet_parachain_system::pallet::Error **/ CumulusPalletParachainSystemError: { _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized'] }, /** - * Lookup648: pallet_sudo::pallet::Error + * Lookup651: pallet_sudo::pallet::Error **/ PalletSudoError: { _enum: ['RequireSudo'] }, /** - * Lookup651: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender + * Lookup654: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender **/ FrameSystemExtensionsCheckNonZeroSender: 'Null', /** - * Lookup652: frame_system::extensions::check_spec_version::CheckSpecVersion + * Lookup655: frame_system::extensions::check_spec_version::CheckSpecVersion **/ FrameSystemExtensionsCheckSpecVersion: 'Null', /** - * Lookup653: frame_system::extensions::check_tx_version::CheckTxVersion + * Lookup656: frame_system::extensions::check_tx_version::CheckTxVersion **/ FrameSystemExtensionsCheckTxVersion: 'Null', /** - * Lookup654: frame_system::extensions::check_genesis::CheckGenesis + * Lookup657: frame_system::extensions::check_genesis::CheckGenesis **/ FrameSystemExtensionsCheckGenesis: 'Null', /** - * Lookup657: runtime_common::check_nonce::CheckNonce + * Lookup660: runtime_common::check_nonce::CheckNonce **/ RuntimeCommonCheckNonce: { nonce: 'Compact' }, /** - * Lookup658: frame_system::extensions::check_weight::CheckWeight + * Lookup661: frame_system::extensions::check_weight::CheckWeight **/ FrameSystemExtensionsCheckWeight: 'Null', /** - * Lookup659: module_evm::SetEvmOrigin + * Lookup662: module_evm::SetEvmOrigin **/ ModuleEvmSetEvmOrigin: 'Null', /** - * Lookup660: module_transaction_payment::ChargeTransactionPayment + * Lookup663: module_transaction_payment::ChargeTransactionPayment **/ ModuleTransactionPaymentChargeTransactionPayment: 'Compact', /** - * Lookup661: acala_runtime::StorageDepositPerByte + * Lookup664: acala_runtime::StorageDepositPerByte **/ AcalaRuntimeStorageDepositPerByte: 'Null', /** - * Lookup662: acala_runtime::TxFeePerGas + * Lookup665: acala_runtime::TxFeePerGas **/ AcalaRuntimeTxFeePerGas: 'Null', /** - * Lookup664: acala_primitives::signature::AcalaMultiSignature + * Lookup667: acala_primitives::signature::AcalaMultiSignature **/ AcalaPrimitivesSignatureAcalaMultiSignature: { _enum: { @@ -6107,19 +6157,20 @@ export default { Ecdsa: 'SpCoreEcdsaSignature', Ethereum: '[u8;65]', Eip1559: '[u8;65]', - AcalaEip712: '[u8;65]' + AcalaEip712: '[u8;65]', + Eip2930: '[u8;65]' } }, /** - * Lookup665: sp_core::ed25519::Signature + * Lookup668: sp_core::ed25519::Signature **/ SpCoreEd25519Signature: '[u8;64]', /** - * Lookup667: sp_core::sr25519::Signature + * Lookup670: sp_core::sr25519::Signature **/ SpCoreSr25519Signature: '[u8;64]', /** - * Lookup668: sp_core::ecdsa::Signature + * Lookup671: sp_core::ecdsa::Signature **/ SpCoreEcdsaSignature: '[u8;65]' }; diff --git a/packages/types/src/interfaces/registry.ts b/packages/types/src/interfaces/registry.ts index c96a189..98f1cca 100644 --- a/packages/types/src/interfaces/registry.ts +++ b/packages/types/src/interfaces/registry.ts @@ -5,7 +5,7 @@ // this is required to allow for ambient/previous definitions import '@polkadot/types/types/registry'; -import type { AcalaPrimitivesAuthoritysOriginId, AcalaPrimitivesBondingLedgerBondingLedger, AcalaPrimitivesBondingLedgerUnlockChunk, AcalaPrimitivesCurrencyAssetIds, AcalaPrimitivesCurrencyAssetMetadata, AcalaPrimitivesCurrencyCurrencyId, AcalaPrimitivesCurrencyDexShare, AcalaPrimitivesCurrencyTokenSymbol, AcalaPrimitivesNftClassProperty, AcalaPrimitivesPosition, AcalaPrimitivesReserveIdentifier, AcalaPrimitivesSignatureAcalaMultiSignature, AcalaPrimitivesTradingPair, AcalaRuntimeOriginCaller, AcalaRuntimeRuntime, AcalaRuntimeRuntimeHoldReason, AcalaRuntimeRuntimeParameters, AcalaRuntimeRuntimeParametersKey, AcalaRuntimeRuntimeParametersValue, AcalaRuntimeScheduledTasks, AcalaRuntimeSessionKeys, AcalaRuntimeStorageDepositPerByte, AcalaRuntimeTxFeePerGas, CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity, CumulusPalletParachainSystemUnincludedSegmentAncestor, CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate, CumulusPalletParachainSystemUnincludedSegmentSegmentTracker, CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionAccessListItem, EthereumTransactionTransactionAction, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonZeroSender, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, ModuleAggregatedDexModuleCall, ModuleAggregatedDexModuleError, ModuleAssetRegistryModuleCall, ModuleAssetRegistryModuleError, ModuleAssetRegistryModuleEvent, ModuleAuctionManagerCollateralAuctionItem, ModuleAuctionManagerModuleCall, ModuleAuctionManagerModuleError, ModuleAuctionManagerModuleEvent, ModuleCdpEngineModuleCall, ModuleCdpEngineModuleError, ModuleCdpEngineModuleEvent, ModuleCdpEngineRiskManagementParams, ModuleCdpTreasuryModuleCall, ModuleCdpTreasuryModuleError, ModuleCdpTreasuryModuleEvent, ModuleCollatorSelectionCall, ModuleCollatorSelectionError, ModuleCollatorSelectionEvent, ModuleCurrenciesModuleCall, ModuleCurrenciesModuleError, ModuleCurrenciesModuleEvent, ModuleDexModuleCall, ModuleDexModuleError, ModuleDexModuleEvent, ModuleDexOracleModuleCall, ModuleDexOracleModuleError, ModuleDexProvisioningParameters, ModuleDexTradingPairStatus, ModuleEarningInstantUnstakeFee, ModuleEarningModuleCall, ModuleEarningModuleError, ModuleEarningModuleEvent, ModuleEarningParameters, ModuleEarningParametersKey, ModuleEarningParametersValue, ModuleEmergencyShutdownModuleCall, ModuleEmergencyShutdownModuleError, ModuleEmergencyShutdownModuleEvent, ModuleEvmAccountsModuleCall, ModuleEvmAccountsModuleError, ModuleEvmAccountsModuleEvent, ModuleEvmBridgeModuleError, ModuleEvmEvmTask, ModuleEvmModuleAccountInfo, ModuleEvmModuleCall, ModuleEvmModuleCodeInfo, ModuleEvmModuleContractInfo, ModuleEvmModuleError, ModuleEvmModuleEvent, ModuleEvmSetEvmOrigin, ModuleHomaModuleCall, ModuleHomaModuleError, ModuleHomaModuleEvent, ModuleHomaModuleStakingLedger, ModuleHomaModuleUnlockChunk, ModuleHonzonModuleCall, ModuleHonzonModuleError, ModuleHonzonModuleEvent, ModuleIdleSchedulerModuleCall, ModuleIdleSchedulerModuleEvent, ModuleIncentivesModuleCall, ModuleIncentivesModuleError, ModuleIncentivesModuleEvent, ModuleLiquidCrowdloanModuleCall, ModuleLiquidCrowdloanModuleEvent, ModuleLoansModuleCall, ModuleLoansModuleError, ModuleLoansModuleEvent, ModuleNftClassData, ModuleNftModuleCall, ModuleNftModuleError, ModuleNftModuleEvent, ModuleNftTokenData, ModulePricesModuleCall, ModulePricesModuleError, ModulePricesModuleEvent, ModuleSessionManagerModuleCall, ModuleSessionManagerModuleError, ModuleSessionManagerModuleEvent, ModuleSupportDexAggregatedSwapPath, ModuleSupportDexSwapLimit, ModuleSupportIncentivesPoolId, ModuleTransactionPauseModuleCall, ModuleTransactionPauseModuleError, ModuleTransactionPauseModuleEvent, ModuleTransactionPaymentChargeTransactionPayment, ModuleTransactionPaymentModuleCall, ModuleTransactionPaymentModuleError, ModuleTransactionPaymentModuleEvent, ModuleXcmInterfaceModuleCall, ModuleXcmInterfaceModuleError, ModuleXcmInterfaceModuleEvent, ModuleXcmInterfaceModuleXcmInterfaceOperation, NutsfinanceStableAssetCall, NutsfinanceStableAssetError, NutsfinanceStableAssetEvent, NutsfinanceStableAssetStableAssetPoolInfo, OrmlAuctionModuleCall, OrmlAuctionModuleError, OrmlAuctionModuleEvent, OrmlAuthorityDelayedOrigin, OrmlAuthorityModuleCall, OrmlAuthorityModuleError, OrmlAuthorityModuleEvent, OrmlNftClassInfo, OrmlNftModuleError, OrmlNftTokenInfo, OrmlOracleModuleCall, OrmlOracleModuleError, OrmlOracleModuleEvent, OrmlOracleModuleTimestampedValue, OrmlParametersModuleCall, OrmlParametersModuleError, OrmlParametersModuleEvent, OrmlRewardsModuleError, OrmlRewardsPoolInfo, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlTraitsAuctionAuctionInfo, OrmlTraitsChangeOption, OrmlTraitsChangeU128, OrmlUnknownTokensModuleError, OrmlUnknownTokensModuleEvent, OrmlUtilitiesOrderedSet, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXcmModuleCall, OrmlXcmModuleError, OrmlXcmModuleEvent, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletBountiesBounty, PalletBountiesBountyStatus, PalletBountiesCall, PalletBountiesError, PalletBountiesEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletMultisigCall, PalletMultisigError, PalletMultisigEvent, PalletMultisigMultisig, PalletMultisigTimepoint, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageHoldReason, PalletPreimageOldRequestStatus, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTimestampCall, PalletTipsCall, PalletTipsError, PalletTipsEvent, PalletTipsOpenTip, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryPaymentState, PalletTreasuryProposal, PalletTreasurySpendStatus, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesPrimitivesXcmpMessageFormat, PolkadotPrimitivesV6AbridgedHostConfiguration, PolkadotPrimitivesV6AbridgedHrmpChannel, PolkadotPrimitivesV6AsyncBackingAsyncBackingParams, PolkadotPrimitivesV6PersistedValidationData, PolkadotPrimitivesV6UpgradeGoAhead, PolkadotPrimitivesV6UpgradeRestriction, RuntimeCommonCheckNonce, RuntimeCommonProxyType, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, StagingXcmV3MultiLocation, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup'; +import type { AcalaPrimitivesAuthoritysOriginId, AcalaPrimitivesBondingLedgerBondingLedger, AcalaPrimitivesBondingLedgerUnlockChunk, AcalaPrimitivesCurrencyAssetIds, AcalaPrimitivesCurrencyAssetMetadata, AcalaPrimitivesCurrencyCurrencyId, AcalaPrimitivesCurrencyDexShare, AcalaPrimitivesCurrencyTokenSymbol, AcalaPrimitivesNftClassProperty, AcalaPrimitivesPosition, AcalaPrimitivesReserveIdentifier, AcalaPrimitivesSignatureAcalaMultiSignature, AcalaPrimitivesTradingPair, AcalaRuntimeOriginCaller, AcalaRuntimeRuntime, AcalaRuntimeRuntimeHoldReason, AcalaRuntimeRuntimeParameters, AcalaRuntimeRuntimeParametersKey, AcalaRuntimeRuntimeParametersValue, AcalaRuntimeScheduledTasks, AcalaRuntimeSessionKeys, AcalaRuntimeStorageDepositPerByte, AcalaRuntimeTxFeePerGas, CumulusPalletDmpQueueCall, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueueMigrationState, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity, CumulusPalletParachainSystemUnincludedSegmentAncestor, CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate, CumulusPalletParachainSystemUnincludedSegmentSegmentTracker, CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesCoreAggregateMessageOrigin, CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionAccessListItem, EthereumTransactionTransactionAction, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportMessagesProcessMessageError, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemCodeUpgradeAuthorization, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonZeroSender, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, ModuleAggregatedDexModuleCall, ModuleAggregatedDexModuleError, ModuleAssetRegistryModuleCall, ModuleAssetRegistryModuleError, ModuleAssetRegistryModuleEvent, ModuleAuctionManagerCollateralAuctionItem, ModuleAuctionManagerModuleCall, ModuleAuctionManagerModuleError, ModuleAuctionManagerModuleEvent, ModuleCdpEngineModuleCall, ModuleCdpEngineModuleError, ModuleCdpEngineModuleEvent, ModuleCdpEngineRiskManagementParams, ModuleCdpTreasuryModuleCall, ModuleCdpTreasuryModuleError, ModuleCdpTreasuryModuleEvent, ModuleCollatorSelectionCall, ModuleCollatorSelectionError, ModuleCollatorSelectionEvent, ModuleCurrenciesModuleCall, ModuleCurrenciesModuleError, ModuleCurrenciesModuleEvent, ModuleDexModuleCall, ModuleDexModuleError, ModuleDexModuleEvent, ModuleDexOracleModuleCall, ModuleDexOracleModuleError, ModuleDexProvisioningParameters, ModuleDexTradingPairStatus, ModuleEarningInstantUnstakeFee, ModuleEarningModuleCall, ModuleEarningModuleError, ModuleEarningModuleEvent, ModuleEarningParameters, ModuleEarningParametersKey, ModuleEarningParametersValue, ModuleEmergencyShutdownModuleCall, ModuleEmergencyShutdownModuleError, ModuleEmergencyShutdownModuleEvent, ModuleEvmAccountsModuleCall, ModuleEvmAccountsModuleError, ModuleEvmAccountsModuleEvent, ModuleEvmBridgeModuleError, ModuleEvmEvmTask, ModuleEvmModuleAccountInfo, ModuleEvmModuleCall, ModuleEvmModuleCodeInfo, ModuleEvmModuleContractInfo, ModuleEvmModuleError, ModuleEvmModuleEvent, ModuleEvmSetEvmOrigin, ModuleHomaModuleCall, ModuleHomaModuleError, ModuleHomaModuleEvent, ModuleHomaModuleStakingLedger, ModuleHomaModuleUnlockChunk, ModuleHonzonModuleCall, ModuleHonzonModuleError, ModuleHonzonModuleEvent, ModuleIdleSchedulerModuleCall, ModuleIdleSchedulerModuleEvent, ModuleIncentivesModuleCall, ModuleIncentivesModuleError, ModuleIncentivesModuleEvent, ModuleLiquidCrowdloanModuleCall, ModuleLiquidCrowdloanModuleEvent, ModuleLoansModuleCall, ModuleLoansModuleError, ModuleLoansModuleEvent, ModuleNftClassData, ModuleNftModuleCall, ModuleNftModuleError, ModuleNftModuleEvent, ModuleNftTokenData, ModulePricesModuleCall, ModulePricesModuleError, ModulePricesModuleEvent, ModuleSessionManagerModuleCall, ModuleSessionManagerModuleError, ModuleSessionManagerModuleEvent, ModuleSupportDexAggregatedSwapPath, ModuleSupportDexSwapLimit, ModuleSupportIncentivesPoolId, ModuleTransactionPauseModuleCall, ModuleTransactionPauseModuleError, ModuleTransactionPauseModuleEvent, ModuleTransactionPaymentChargeTransactionPayment, ModuleTransactionPaymentModuleCall, ModuleTransactionPaymentModuleChargeFeeMethod, ModuleTransactionPaymentModuleError, ModuleTransactionPaymentModuleEvent, ModuleXcmInterfaceModuleCall, ModuleXcmInterfaceModuleError, ModuleXcmInterfaceModuleEvent, ModuleXcmInterfaceModuleXcmInterfaceOperation, NutsfinanceStableAssetCall, NutsfinanceStableAssetError, NutsfinanceStableAssetEvent, NutsfinanceStableAssetStableAssetPoolInfo, OrmlAuctionModuleCall, OrmlAuctionModuleError, OrmlAuctionModuleEvent, OrmlAuthorityDelayedOrigin, OrmlAuthorityModuleCall, OrmlAuthorityModuleError, OrmlAuthorityModuleEvent, OrmlNftClassInfo, OrmlNftModuleError, OrmlNftTokenInfo, OrmlOracleModuleCall, OrmlOracleModuleError, OrmlOracleModuleEvent, OrmlOracleModuleTimestampedValue, OrmlParametersModuleCall, OrmlParametersModuleError, OrmlParametersModuleEvent, OrmlRewardsModuleError, OrmlRewardsPoolInfo, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlTraitsAuctionAuctionInfo, OrmlTraitsChangeOption, OrmlTraitsChangeU128, OrmlUnknownTokensModuleError, OrmlUnknownTokensModuleEvent, OrmlUtilitiesOrderedSet, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXcmModuleCall, OrmlXcmModuleError, OrmlXcmModuleEvent, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletBountiesBounty, PalletBountiesBountyStatus, PalletBountiesCall, PalletBountiesError, PalletBountiesEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletMessageQueueBookState, PalletMessageQueueCall, PalletMessageQueueError, PalletMessageQueueEvent, PalletMessageQueueNeighbours, PalletMessageQueuePage, PalletMultisigCall, PalletMultisigError, PalletMultisigEvent, PalletMultisigMultisig, PalletMultisigTimepoint, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageHoldReason, PalletPreimageOldRequestStatus, PalletPreimageRequestStatus, PalletProxyAnnouncement, PalletProxyCall, PalletProxyError, PalletProxyEvent, PalletProxyProxyDefinition, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTimestampCall, PalletTipsCall, PalletTipsError, PalletTipsEvent, PalletTipsOpenTip, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryPaymentState, PalletTreasuryProposal, PalletTreasurySpendStatus, PalletUtilityCall, PalletUtilityError, PalletUtilityEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV6AbridgedHostConfiguration, PolkadotPrimitivesV6AbridgedHrmpChannel, PolkadotPrimitivesV6AsyncBackingAsyncBackingParams, PolkadotPrimitivesV6PersistedValidationData, PolkadotPrimitivesV6UpgradeGoAhead, PolkadotPrimitivesV6UpgradeRestriction, RuntimeCommonCheckNonce, RuntimeCommonProxyType, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, StagingXcmV3MultiLocation, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup'; declare module '@polkadot/types/types/registry' { interface InterfaceTypes { @@ -33,12 +33,9 @@ declare module '@polkadot/types/types/registry' { AcalaRuntimeStorageDepositPerByte: AcalaRuntimeStorageDepositPerByte; AcalaRuntimeTxFeePerGas: AcalaRuntimeTxFeePerGas; CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall; - CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData; - CumulusPalletDmpQueueError: CumulusPalletDmpQueueError; CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent; - CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData; + CumulusPalletDmpQueueMigrationState: CumulusPalletDmpQueueMigrationState; CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall; - CumulusPalletParachainSystemCodeUpgradeAuthorization: CumulusPalletParachainSystemCodeUpgradeAuthorization; CumulusPalletParachainSystemError: CumulusPalletParachainSystemError; CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent; CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot; @@ -47,17 +44,15 @@ declare module '@polkadot/types/types/registry' { CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate: CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate; CumulusPalletParachainSystemUnincludedSegmentSegmentTracker: CumulusPalletParachainSystemUnincludedSegmentSegmentTracker; CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth; - CumulusPalletXcmError: CumulusPalletXcmError; CumulusPalletXcmEvent: CumulusPalletXcmEvent; CumulusPalletXcmOrigin: CumulusPalletXcmOrigin; CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall; CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError; CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent; - CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails; - CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState; CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails; CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState; CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData; + CumulusPrimitivesCoreAggregateMessageOrigin: CumulusPrimitivesCoreAggregateMessageOrigin; CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData; EthereumLog: EthereumLog; EthereumTransactionAccessListItem: EthereumTransactionAccessListItem; @@ -74,12 +69,14 @@ declare module '@polkadot/types/types/registry' { FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight; FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass; FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin; + FrameSupportMessagesProcessMessageError: FrameSupportMessagesProcessMessageError; FrameSupportPalletId: FrameSupportPalletId; FrameSupportPreimagesBounded: FrameSupportPreimagesBounded; FrameSupportScheduleDispatchTime: FrameSupportScheduleDispatchTime; FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus; FrameSystemAccountInfo: FrameSystemAccountInfo; FrameSystemCall: FrameSystemCall; + FrameSystemCodeUpgradeAuthorization: FrameSystemCodeUpgradeAuthorization; FrameSystemError: FrameSystemError; FrameSystemEvent: FrameSystemEvent; FrameSystemEventRecord: FrameSystemEventRecord; @@ -181,6 +178,7 @@ declare module '@polkadot/types/types/registry' { ModuleTransactionPauseModuleEvent: ModuleTransactionPauseModuleEvent; ModuleTransactionPaymentChargeTransactionPayment: ModuleTransactionPaymentChargeTransactionPayment; ModuleTransactionPaymentModuleCall: ModuleTransactionPaymentModuleCall; + ModuleTransactionPaymentModuleChargeFeeMethod: ModuleTransactionPaymentModuleChargeFeeMethod; ModuleTransactionPaymentModuleError: ModuleTransactionPaymentModuleError; ModuleTransactionPaymentModuleEvent: ModuleTransactionPaymentModuleEvent; ModuleXcmInterfaceModuleCall: ModuleXcmInterfaceModuleCall; @@ -265,6 +263,12 @@ declare module '@polkadot/types/types/registry' { PalletMembershipCall: PalletMembershipCall; PalletMembershipError: PalletMembershipError; PalletMembershipEvent: PalletMembershipEvent; + PalletMessageQueueBookState: PalletMessageQueueBookState; + PalletMessageQueueCall: PalletMessageQueueCall; + PalletMessageQueueError: PalletMessageQueueError; + PalletMessageQueueEvent: PalletMessageQueueEvent; + PalletMessageQueueNeighbours: PalletMessageQueueNeighbours; + PalletMessageQueuePage: PalletMessageQueuePage; PalletMultisigCall: PalletMultisigCall; PalletMultisigError: PalletMultisigError; PalletMultisigEvent: PalletMultisigEvent; @@ -315,7 +319,6 @@ declare module '@polkadot/types/types/registry' { PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage; PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage; PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage; - PolkadotParachainPrimitivesPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesPrimitivesXcmpMessageFormat; PolkadotPrimitivesV6AbridgedHostConfiguration: PolkadotPrimitivesV6AbridgedHostConfiguration; PolkadotPrimitivesV6AbridgedHrmpChannel: PolkadotPrimitivesV6AbridgedHrmpChannel; PolkadotPrimitivesV6AsyncBackingAsyncBackingParams: PolkadotPrimitivesV6AsyncBackingAsyncBackingParams; diff --git a/packages/types/src/interfaces/types-lookup.ts b/packages/types/src/interfaces/types-lookup.ts index 21a07e6..e9c501d 100644 --- a/packages/types/src/interfaces/types-lookup.ts +++ b/packages/types/src/interfaces/types-lookup.ts @@ -93,7 +93,12 @@ declare module '@polkadot/types/lookup' { readonly sender: AccountId32; readonly hash_: H256; } & Struct; - readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked'; + readonly isUpgradeAuthorized: boolean; + readonly asUpgradeAuthorized: { + readonly codeHash: H256; + readonly checkVersion: bool; + } & Struct; + readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked' | 'UpgradeAuthorized'; } /** @name FrameSupportDispatchDispatchInfo (22) */ @@ -177,7 +182,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'LimitReached' | 'NoLayer'; } - /** @name PalletSchedulerEvent (30) */ + /** @name PalletSchedulerEvent (31) */ interface PalletSchedulerEvent extends Enum { readonly isScheduled: boolean; readonly asScheduled: { @@ -213,7 +218,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallUnavailable' | 'PeriodicFailed' | 'PermanentlyOverweight'; } - /** @name PalletUtilityEvent (35) */ + /** @name PalletUtilityEvent (36) */ interface PalletUtilityEvent extends Enum { readonly isBatchInterrupted: boolean; readonly asBatchInterrupted: { @@ -234,7 +239,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'BatchInterrupted' | 'BatchCompleted' | 'BatchCompletedWithErrors' | 'ItemCompleted' | 'ItemFailed' | 'DispatchedAs'; } - /** @name PalletMultisigEvent (36) */ + /** @name PalletMultisigEvent (37) */ interface PalletMultisigEvent extends Enum { readonly isNewMultisig: boolean; readonly asNewMultisig: { @@ -267,13 +272,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'NewMultisig' | 'MultisigApproval' | 'MultisigExecuted' | 'MultisigCancelled'; } - /** @name PalletMultisigTimepoint (37) */ + /** @name PalletMultisigTimepoint (38) */ interface PalletMultisigTimepoint extends Struct { readonly height: u32; readonly index: u32; } - /** @name PalletProxyEvent (38) */ + /** @name PalletProxyEvent (39) */ interface PalletProxyEvent extends Enum { readonly isProxyExecuted: boolean; readonly asProxyExecuted: { @@ -309,7 +314,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ProxyExecuted' | 'PureCreated' | 'Announced' | 'ProxyAdded' | 'ProxyRemoved'; } - /** @name RuntimeCommonProxyType (39) */ + /** @name RuntimeCommonProxyType (40) */ interface RuntimeCommonProxyType extends Enum { readonly isAny: boolean; readonly isCancelProxy: boolean; @@ -324,7 +329,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Any' | 'CancelProxy' | 'Governance' | 'Auction' | 'Swap' | 'Loan' | 'DexLiquidity' | 'StableAssetSwap' | 'StableAssetLiquidity' | 'Homa'; } - /** @name ModuleTransactionPauseModuleEvent (41) */ + /** @name ModuleTransactionPauseModuleEvent (42) */ interface ModuleTransactionPauseModuleEvent extends Enum { readonly isTransactionPaused: boolean; readonly asTransactionPaused: { @@ -347,7 +352,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'TransactionPaused' | 'TransactionUnpaused' | 'EvmPrecompilePaused' | 'EvmPrecompileUnpaused'; } - /** @name ModuleIdleSchedulerModuleEvent (44) */ + /** @name ModuleIdleSchedulerModuleEvent (45) */ interface ModuleIdleSchedulerModuleEvent extends Enum { readonly isTaskDispatched: boolean; readonly asTaskDispatched: { @@ -362,14 +367,14 @@ declare module '@polkadot/types/lookup' { readonly type: 'TaskDispatched' | 'TaskAdded'; } - /** @name AcalaRuntimeScheduledTasks (45) */ + /** @name AcalaRuntimeScheduledTasks (46) */ interface AcalaRuntimeScheduledTasks extends Enum { readonly isEvmTask: boolean; readonly asEvmTask: ModuleEvmEvmTask; readonly type: 'EvmTask'; } - /** @name ModuleEvmEvmTask (46) */ + /** @name ModuleEvmEvmTask (47) */ interface ModuleEvmEvmTask extends Enum { readonly isSchedule: boolean; readonly asSchedule: { @@ -389,10 +394,10 @@ declare module '@polkadot/types/lookup' { readonly type: 'Schedule' | 'Remove'; } - /** @name AcalaRuntimeRuntime (47) */ + /** @name AcalaRuntimeRuntime (48) */ type AcalaRuntimeRuntime = Null; - /** @name PalletPreimageEvent (48) */ + /** @name PalletPreimageEvent (49) */ interface PalletPreimageEvent extends Enum { readonly isNoted: boolean; readonly asNoted: { @@ -409,7 +414,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Noted' | 'Requested' | 'Cleared'; } - /** @name PalletBalancesEvent (49) */ + /** @name PalletBalancesEvent (50) */ interface PalletBalancesEvent extends Enum { readonly isEndowed: boolean; readonly asEndowed: { @@ -519,14 +524,14 @@ declare module '@polkadot/types/lookup' { readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed'; } - /** @name FrameSupportTokensMiscBalanceStatus (50) */ + /** @name FrameSupportTokensMiscBalanceStatus (51) */ interface FrameSupportTokensMiscBalanceStatus extends Enum { readonly isFree: boolean; readonly isReserved: boolean; readonly type: 'Free' | 'Reserved'; } - /** @name OrmlTokensModuleEvent (51) */ + /** @name OrmlTokensModuleEvent (52) */ interface OrmlTokensModuleEvent extends Enum { readonly isEndowed: boolean; readonly asEndowed: { @@ -636,7 +641,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved' | 'Locked' | 'Unlocked' | 'Issued' | 'Rescinded'; } - /** @name AcalaPrimitivesCurrencyCurrencyId (52) */ + /** @name AcalaPrimitivesCurrencyCurrencyId (53) */ interface AcalaPrimitivesCurrencyCurrencyId extends Enum { readonly isToken: boolean; readonly asToken: AcalaPrimitivesCurrencyTokenSymbol; @@ -653,7 +658,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Token' | 'DexShare' | 'Erc20' | 'StableAssetPoolToken' | 'LiquidCrowdloan' | 'ForeignAsset'; } - /** @name AcalaPrimitivesCurrencyTokenSymbol (53) */ + /** @name AcalaPrimitivesCurrencyTokenSymbol (54) */ interface AcalaPrimitivesCurrencyTokenSymbol extends Enum { readonly isAca: boolean; readonly isAusd: boolean; @@ -673,7 +678,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Aca' | 'Ausd' | 'Dot' | 'Ldot' | 'Tap' | 'Kar' | 'Kusd' | 'Ksm' | 'Lksm' | 'Tai' | 'Bnc' | 'Vsksm' | 'Pha' | 'Kint' | 'Kbtc'; } - /** @name AcalaPrimitivesCurrencyDexShare (54) */ + /** @name AcalaPrimitivesCurrencyDexShare (55) */ interface AcalaPrimitivesCurrencyDexShare extends Enum { readonly isToken: boolean; readonly asToken: AcalaPrimitivesCurrencyTokenSymbol; @@ -688,7 +693,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Token' | 'Erc20' | 'LiquidCrowdloan' | 'ForeignAsset' | 'StableAssetPoolToken'; } - /** @name ModuleCurrenciesModuleEvent (56) */ + /** @name ModuleCurrenciesModuleEvent (57) */ interface ModuleCurrenciesModuleEvent extends Enum { readonly isTransferred: boolean; readonly asTransferred: { @@ -718,7 +723,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Transferred' | 'Withdrawn' | 'Deposited' | 'DustSwept'; } - /** @name OrmlVestingModuleEvent (57) */ + /** @name OrmlVestingModuleEvent (58) */ interface OrmlVestingModuleEvent extends Enum { readonly isVestingScheduleAdded: boolean; readonly asVestingScheduleAdded: { @@ -738,7 +743,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated'; } - /** @name OrmlVestingVestingSchedule (58) */ + /** @name OrmlVestingVestingSchedule (59) */ interface OrmlVestingVestingSchedule extends Struct { readonly start: u32; readonly period: u32; @@ -746,7 +751,7 @@ declare module '@polkadot/types/lookup' { readonly perPeriod: Compact; } - /** @name ModuleTransactionPaymentModuleEvent (60) */ + /** @name ModuleTransactionPaymentModuleEvent (61) */ interface ModuleTransactionPaymentModuleEvent extends Enum { readonly isChargeFeePoolEnabled: boolean; readonly asChargeFeePoolEnabled: { @@ -781,7 +786,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ChargeFeePoolEnabled' | 'ChargeFeePoolSwapped' | 'ChargeFeePoolDisabled' | 'TransactionFeePaid'; } - /** @name PalletTreasuryEvent (62) */ + /** @name PalletTreasuryEvent (63) */ interface PalletTreasuryEvent extends Enum { readonly isProposed: boolean; readonly asProposed: { @@ -855,7 +860,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive' | 'AssetSpendApproved' | 'AssetSpendVoided' | 'Paid' | 'PaymentFailed' | 'SpendProcessed'; } - /** @name PalletBountiesEvent (63) */ + /** @name PalletBountiesEvent (64) */ interface PalletBountiesEvent extends Enum { readonly isBountyProposed: boolean; readonly asBountyProposed: { @@ -910,7 +915,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'BountyProposed' | 'BountyRejected' | 'BountyBecameActive' | 'BountyAwarded' | 'BountyClaimed' | 'BountyCanceled' | 'BountyExtended' | 'BountyApproved' | 'CuratorProposed' | 'CuratorUnassigned' | 'CuratorAccepted'; } - /** @name PalletTipsEvent (64) */ + /** @name PalletTipsEvent (65) */ interface PalletTipsEvent extends Enum { readonly isNewTip: boolean; readonly asNewTip: { @@ -939,7 +944,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NewTip' | 'TipClosing' | 'TipClosed' | 'TipRetracted' | 'TipSlashed'; } - /** @name ModuleCollatorSelectionEvent (65) */ + /** @name ModuleCollatorSelectionEvent (66) */ interface ModuleCollatorSelectionEvent extends Enum { readonly isNewInvulnerables: boolean; readonly asNewInvulnerables: { @@ -965,7 +970,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NewInvulnerables' | 'NewDesiredCandidates' | 'NewCandidacyBond' | 'CandidateAdded' | 'CandidateRemoved'; } - /** @name PalletSessionEvent (67) */ + /** @name PalletSessionEvent (68) */ interface PalletSessionEvent extends Enum { readonly isNewSession: boolean; readonly asNewSession: { @@ -974,7 +979,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NewSession'; } - /** @name ModuleSessionManagerModuleEvent (68) */ + /** @name ModuleSessionManagerModuleEvent (69) */ interface ModuleSessionManagerModuleEvent extends Enum { readonly isScheduledSessionDuration: boolean; readonly asScheduledSessionDuration: { @@ -985,96 +990,16 @@ declare module '@polkadot/types/lookup' { readonly type: 'ScheduledSessionDuration'; } - /** @name CumulusPalletXcmpQueueEvent (69) */ + /** @name CumulusPalletXcmpQueueEvent (70) */ interface CumulusPalletXcmpQueueEvent extends Enum { - readonly isSuccess: boolean; - readonly asSuccess: { - readonly messageHash: U8aFixed; - readonly messageId: U8aFixed; - readonly weight: SpWeightsWeightV2Weight; - } & Struct; - readonly isFail: boolean; - readonly asFail: { - readonly messageHash: U8aFixed; - readonly messageId: U8aFixed; - readonly error: XcmV3TraitsError; - readonly weight: SpWeightsWeightV2Weight; - } & Struct; - readonly isBadVersion: boolean; - readonly asBadVersion: { - readonly messageHash: U8aFixed; - } & Struct; - readonly isBadFormat: boolean; - readonly asBadFormat: { - readonly messageHash: U8aFixed; - } & Struct; readonly isXcmpMessageSent: boolean; readonly asXcmpMessageSent: { readonly messageHash: U8aFixed; } & Struct; - readonly isOverweightEnqueued: boolean; - readonly asOverweightEnqueued: { - readonly sender: u32; - readonly sentAt: u32; - readonly index: u64; - readonly required: SpWeightsWeightV2Weight; - } & Struct; - readonly isOverweightServiced: boolean; - readonly asOverweightServiced: { - readonly index: u64; - readonly used: SpWeightsWeightV2Weight; - } & Struct; - readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced'; + readonly type: 'XcmpMessageSent'; } - /** @name XcmV3TraitsError (70) */ - interface XcmV3TraitsError extends Enum { - readonly isOverflow: boolean; - readonly isUnimplemented: boolean; - readonly isUntrustedReserveLocation: boolean; - readonly isUntrustedTeleportLocation: boolean; - readonly isLocationFull: boolean; - readonly isLocationNotInvertible: boolean; - readonly isBadOrigin: boolean; - readonly isInvalidLocation: boolean; - readonly isAssetNotFound: boolean; - readonly isFailedToTransactAsset: boolean; - readonly isNotWithdrawable: boolean; - readonly isLocationCannotHold: boolean; - readonly isExceedsMaxMessageSize: boolean; - readonly isDestinationUnsupported: boolean; - readonly isTransport: boolean; - readonly isUnroutable: boolean; - readonly isUnknownClaim: boolean; - readonly isFailedToDecode: boolean; - readonly isMaxWeightInvalid: boolean; - readonly isNotHoldingFees: boolean; - readonly isTooExpensive: boolean; - readonly isTrap: boolean; - readonly asTrap: u64; - readonly isExpectationFalse: boolean; - readonly isPalletNotFound: boolean; - readonly isNameMismatch: boolean; - readonly isVersionIncompatible: boolean; - readonly isHoldingWouldOverflow: boolean; - readonly isExportError: boolean; - readonly isReanchorFailed: boolean; - readonly isNoDeal: boolean; - readonly isFeesNotMet: boolean; - readonly isLockError: boolean; - readonly isNoPermission: boolean; - readonly isUnanchored: boolean; - readonly isNotDepositable: boolean; - readonly isUnhandledXcmVersion: boolean; - readonly isWeightLimitReached: boolean; - readonly asWeightLimitReached: SpWeightsWeightV2Weight; - readonly isBarrier: boolean; - readonly isWeightNotComputable: boolean; - readonly isExceedsStackLimit: boolean; - readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'LocationFull' | 'LocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'ExpectationFalse' | 'PalletNotFound' | 'NameMismatch' | 'VersionIncompatible' | 'HoldingWouldOverflow' | 'ExportError' | 'ReanchorFailed' | 'NoDeal' | 'FeesNotMet' | 'LockError' | 'NoPermission' | 'Unanchored' | 'NotDepositable' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable' | 'ExceedsStackLimit'; - } - - /** @name PalletXcmEvent (72) */ + /** @name PalletXcmEvent (71) */ interface PalletXcmEvent extends Enum { readonly isAttempted: boolean; readonly asAttempted: { @@ -1211,7 +1136,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'InvalidQuerierVersion' | 'InvalidQuerier' | 'VersionNotifyStarted' | 'VersionNotifyRequested' | 'VersionNotifyUnrequested' | 'FeesPaid' | 'AssetsClaimed'; } - /** @name XcmV3TraitsOutcome (73) */ + /** @name XcmV3TraitsOutcome (72) */ interface XcmV3TraitsOutcome extends Enum { readonly isComplete: boolean; readonly asComplete: SpWeightsWeightV2Weight; @@ -1222,6 +1147,53 @@ declare module '@polkadot/types/lookup' { readonly type: 'Complete' | 'Incomplete' | 'Error'; } + /** @name XcmV3TraitsError (73) */ + interface XcmV3TraitsError extends Enum { + readonly isOverflow: boolean; + readonly isUnimplemented: boolean; + readonly isUntrustedReserveLocation: boolean; + readonly isUntrustedTeleportLocation: boolean; + readonly isLocationFull: boolean; + readonly isLocationNotInvertible: boolean; + readonly isBadOrigin: boolean; + readonly isInvalidLocation: boolean; + readonly isAssetNotFound: boolean; + readonly isFailedToTransactAsset: boolean; + readonly isNotWithdrawable: boolean; + readonly isLocationCannotHold: boolean; + readonly isExceedsMaxMessageSize: boolean; + readonly isDestinationUnsupported: boolean; + readonly isTransport: boolean; + readonly isUnroutable: boolean; + readonly isUnknownClaim: boolean; + readonly isFailedToDecode: boolean; + readonly isMaxWeightInvalid: boolean; + readonly isNotHoldingFees: boolean; + readonly isTooExpensive: boolean; + readonly isTrap: boolean; + readonly asTrap: u64; + readonly isExpectationFalse: boolean; + readonly isPalletNotFound: boolean; + readonly isNameMismatch: boolean; + readonly isVersionIncompatible: boolean; + readonly isHoldingWouldOverflow: boolean; + readonly isExportError: boolean; + readonly isReanchorFailed: boolean; + readonly isNoDeal: boolean; + readonly isFeesNotMet: boolean; + readonly isLockError: boolean; + readonly isNoPermission: boolean; + readonly isUnanchored: boolean; + readonly isNotDepositable: boolean; + readonly isUnhandledXcmVersion: boolean; + readonly isWeightLimitReached: boolean; + readonly asWeightLimitReached: SpWeightsWeightV2Weight; + readonly isBarrier: boolean; + readonly isWeightNotComputable: boolean; + readonly isExceedsStackLimit: boolean; + readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'LocationFull' | 'LocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'ExpectationFalse' | 'PalletNotFound' | 'NameMismatch' | 'VersionIncompatible' | 'HoldingWouldOverflow' | 'ExportError' | 'ReanchorFailed' | 'NoDeal' | 'FeesNotMet' | 'LockError' | 'NoPermission' | 'Unanchored' | 'NotDepositable' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable' | 'ExceedsStackLimit'; + } + /** @name StagingXcmV3MultiLocation (74) */ interface StagingXcmV3MultiLocation extends Struct { readonly parents: u8; @@ -1309,7 +1281,8 @@ declare module '@polkadot/types/lookup' { } & Struct; readonly isBitcoinCore: boolean; readonly isBitcoinCash: boolean; - readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash'; + readonly isPolkadotBulletin: boolean; + readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash' | 'PolkadotBulletin'; } /** @name XcmV3JunctionBodyId (80) */ @@ -1674,7 +1647,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Fungible' | 'NonFungible'; } - /** @name XcmV3WeightLimit (109) */ + /** @name XcmV3WeightLimit (108) */ interface XcmV3WeightLimit extends Enum { readonly isUnlimited: boolean; readonly isLimited: boolean; @@ -1682,7 +1655,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Unlimited' | 'Limited'; } - /** @name XcmVersionedMultiAssets (110) */ + /** @name XcmVersionedMultiAssets (109) */ interface XcmVersionedMultiAssets extends Enum { readonly isV2: boolean; readonly asV2: XcmV2MultiassetMultiAssets; @@ -1691,16 +1664,16 @@ declare module '@polkadot/types/lookup' { readonly type: 'V2' | 'V3'; } - /** @name XcmV2MultiassetMultiAssets (111) */ + /** @name XcmV2MultiassetMultiAssets (110) */ interface XcmV2MultiassetMultiAssets extends Vec {} - /** @name XcmV2MultiAsset (113) */ + /** @name XcmV2MultiAsset (112) */ interface XcmV2MultiAsset extends Struct { readonly id: XcmV2MultiassetAssetId; readonly fun: XcmV2MultiassetFungibility; } - /** @name XcmV2MultiassetAssetId (114) */ + /** @name XcmV2MultiassetAssetId (113) */ interface XcmV2MultiassetAssetId extends Enum { readonly isConcrete: boolean; readonly asConcrete: XcmV2MultiLocation; @@ -1709,13 +1682,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'Concrete' | 'Abstract'; } - /** @name XcmV2MultiLocation (115) */ + /** @name XcmV2MultiLocation (114) */ interface XcmV2MultiLocation extends Struct { readonly parents: u8; readonly interior: XcmV2MultilocationJunctions; } - /** @name XcmV2MultilocationJunctions (116) */ + /** @name XcmV2MultilocationJunctions (115) */ interface XcmV2MultilocationJunctions extends Enum { readonly isHere: boolean; readonly isX1: boolean; @@ -1737,7 +1710,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8'; } - /** @name XcmV2Junction (117) */ + /** @name XcmV2Junction (116) */ interface XcmV2Junction extends Enum { readonly isParachain: boolean; readonly asParachain: Compact; @@ -1771,7 +1744,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality'; } - /** @name XcmV2NetworkId (118) */ + /** @name XcmV2NetworkId (117) */ interface XcmV2NetworkId extends Enum { readonly isAny: boolean; readonly isNamed: boolean; @@ -1781,7 +1754,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama'; } - /** @name XcmV2BodyId (120) */ + /** @name XcmV2BodyId (119) */ interface XcmV2BodyId extends Enum { readonly isUnit: boolean; readonly isNamed: boolean; @@ -1798,7 +1771,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury'; } - /** @name XcmV2BodyPart (121) */ + /** @name XcmV2BodyPart (120) */ interface XcmV2BodyPart extends Enum { readonly isVoice: boolean; readonly isMembers: boolean; @@ -1823,7 +1796,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion'; } - /** @name XcmV2MultiassetFungibility (122) */ + /** @name XcmV2MultiassetFungibility (121) */ interface XcmV2MultiassetFungibility extends Enum { readonly isFungible: boolean; readonly asFungible: Compact; @@ -1832,7 +1805,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Fungible' | 'NonFungible'; } - /** @name XcmV2MultiassetAssetInstance (123) */ + /** @name XcmV2MultiassetAssetInstance (122) */ interface XcmV2MultiassetAssetInstance extends Enum { readonly isUndefined: boolean; readonly isIndex: boolean; @@ -1850,7 +1823,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob'; } - /** @name XcmVersionedMultiLocation (124) */ + /** @name XcmVersionedMultiLocation (123) */ interface XcmVersionedMultiLocation extends Enum { readonly isV2: boolean; readonly asV2: XcmV2MultiLocation; @@ -1859,7 +1832,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'V2' | 'V3'; } - /** @name CumulusPalletXcmEvent (125) */ + /** @name CumulusPalletXcmEvent (124) */ interface CumulusPalletXcmEvent extends Enum { readonly isInvalidFormat: boolean; readonly asInvalidFormat: U8aFixed; @@ -1870,49 +1843,41 @@ declare module '@polkadot/types/lookup' { readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward'; } - /** @name CumulusPalletDmpQueueEvent (126) */ + /** @name CumulusPalletDmpQueueEvent (125) */ interface CumulusPalletDmpQueueEvent extends Enum { - readonly isInvalidFormat: boolean; - readonly asInvalidFormat: { - readonly messageHash: U8aFixed; - } & Struct; - readonly isUnsupportedVersion: boolean; - readonly asUnsupportedVersion: { - readonly messageHash: U8aFixed; - } & Struct; - readonly isExecutedDownward: boolean; - readonly asExecutedDownward: { - readonly messageHash: U8aFixed; - readonly messageId: U8aFixed; - readonly outcome: XcmV3TraitsOutcome; - } & Struct; - readonly isWeightExhausted: boolean; - readonly asWeightExhausted: { - readonly messageHash: U8aFixed; - readonly messageId: U8aFixed; - readonly remainingWeight: SpWeightsWeightV2Weight; - readonly requiredWeight: SpWeightsWeightV2Weight; + readonly isStartedExport: boolean; + readonly isExported: boolean; + readonly asExported: { + readonly page: u32; + } & Struct; + readonly isExportFailed: boolean; + readonly asExportFailed: { + readonly page: u32; + } & Struct; + readonly isCompletedExport: boolean; + readonly isStartedOverweightExport: boolean; + readonly isExportedOverweight: boolean; + readonly asExportedOverweight: { + readonly index: u64; } & Struct; - readonly isOverweightEnqueued: boolean; - readonly asOverweightEnqueued: { - readonly messageHash: U8aFixed; - readonly messageId: U8aFixed; - readonly overweightIndex: u64; - readonly requiredWeight: SpWeightsWeightV2Weight; + readonly isExportOverweightFailed: boolean; + readonly asExportOverweightFailed: { + readonly index: u64; } & Struct; - readonly isOverweightServiced: boolean; - readonly asOverweightServiced: { - readonly overweightIndex: u64; - readonly weightUsed: SpWeightsWeightV2Weight; + readonly isCompletedOverweightExport: boolean; + readonly isStartedCleanup: boolean; + readonly isCleanedSome: boolean; + readonly asCleanedSome: { + readonly keysRemoved: u32; } & Struct; - readonly isMaxMessagesExhausted: boolean; - readonly asMaxMessagesExhausted: { - readonly messageHash: U8aFixed; + readonly isCompleted: boolean; + readonly asCompleted: { + readonly error: bool; } & Struct; - readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced' | 'MaxMessagesExhausted'; + readonly type: 'StartedExport' | 'Exported' | 'ExportFailed' | 'CompletedExport' | 'StartedOverweightExport' | 'ExportedOverweight' | 'ExportOverweightFailed' | 'CompletedOverweightExport' | 'StartedCleanup' | 'CleanedSome' | 'Completed'; } - /** @name OrmlXtokensModuleEvent (127) */ + /** @name OrmlXtokensModuleEvent (126) */ interface OrmlXtokensModuleEvent extends Enum { readonly isTransferredMultiAssets: boolean; readonly asTransferredMultiAssets: { @@ -1924,7 +1889,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'TransferredMultiAssets'; } - /** @name OrmlUnknownTokensModuleEvent (128) */ + /** @name OrmlUnknownTokensModuleEvent (127) */ interface OrmlUnknownTokensModuleEvent extends Enum { readonly isDeposited: boolean; readonly asDeposited: { @@ -1939,7 +1904,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Deposited' | 'Withdrawn'; } - /** @name OrmlXcmModuleEvent (129) */ + /** @name OrmlXcmModuleEvent (128) */ interface OrmlXcmModuleEvent extends Enum { readonly isSent: boolean; readonly asSent: { @@ -1949,7 +1914,57 @@ declare module '@polkadot/types/lookup' { readonly type: 'Sent'; } - /** @name OrmlAuthorityModuleEvent (130) */ + /** @name PalletMessageQueueEvent (129) */ + interface PalletMessageQueueEvent extends Enum { + readonly isProcessingFailed: boolean; + readonly asProcessingFailed: { + readonly id: H256; + readonly origin: CumulusPrimitivesCoreAggregateMessageOrigin; + readonly error: FrameSupportMessagesProcessMessageError; + } & Struct; + readonly isProcessed: boolean; + readonly asProcessed: { + readonly id: H256; + readonly origin: CumulusPrimitivesCoreAggregateMessageOrigin; + readonly weightUsed: SpWeightsWeightV2Weight; + readonly success: bool; + } & Struct; + readonly isOverweightEnqueued: boolean; + readonly asOverweightEnqueued: { + readonly id: U8aFixed; + readonly origin: CumulusPrimitivesCoreAggregateMessageOrigin; + readonly pageIndex: u32; + readonly messageIndex: u32; + } & Struct; + readonly isPageReaped: boolean; + readonly asPageReaped: { + readonly origin: CumulusPrimitivesCoreAggregateMessageOrigin; + readonly index: u32; + } & Struct; + readonly type: 'ProcessingFailed' | 'Processed' | 'OverweightEnqueued' | 'PageReaped'; + } + + /** @name CumulusPrimitivesCoreAggregateMessageOrigin (130) */ + interface CumulusPrimitivesCoreAggregateMessageOrigin extends Enum { + readonly isHere: boolean; + readonly isParent: boolean; + readonly isSibling: boolean; + readonly asSibling: u32; + readonly type: 'Here' | 'Parent' | 'Sibling'; + } + + /** @name FrameSupportMessagesProcessMessageError (132) */ + interface FrameSupportMessagesProcessMessageError extends Enum { + readonly isBadFormat: boolean; + readonly isCorrupt: boolean; + readonly isUnsupported: boolean; + readonly isOverweight: boolean; + readonly asOverweight: SpWeightsWeightV2Weight; + readonly isYield: boolean; + readonly type: 'BadFormat' | 'Corrupt' | 'Unsupported' | 'Overweight' | 'Yield'; + } + + /** @name OrmlAuthorityModuleEvent (133) */ interface OrmlAuthorityModuleEvent extends Enum { readonly isDispatched: boolean; readonly asDispatched: { @@ -1994,7 +2009,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Dispatched' | 'Scheduled' | 'FastTracked' | 'Delayed' | 'Cancelled' | 'AuthorizedCall' | 'RemovedAuthorizedCall' | 'TriggeredCallBy'; } - /** @name AcalaRuntimeOriginCaller (131) */ + /** @name AcalaRuntimeOriginCaller (134) */ interface AcalaRuntimeOriginCaller extends Enum { readonly isSystem: boolean; readonly asSystem: FrameSupportDispatchRawOrigin; @@ -2016,7 +2031,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Authority' | 'GeneralCouncil' | 'FinancialCouncil' | 'HomaCouncil' | 'TechnicalCommittee'; } - /** @name FrameSupportDispatchRawOrigin (132) */ + /** @name FrameSupportDispatchRawOrigin (135) */ interface FrameSupportDispatchRawOrigin extends Enum { readonly isRoot: boolean; readonly isSigned: boolean; @@ -2025,7 +2040,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Root' | 'Signed' | 'None'; } - /** @name PalletXcmOrigin (133) */ + /** @name PalletXcmOrigin (136) */ interface PalletXcmOrigin extends Enum { readonly isXcm: boolean; readonly asXcm: StagingXcmV3MultiLocation; @@ -2034,7 +2049,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Xcm' | 'Response'; } - /** @name CumulusPalletXcmOrigin (134) */ + /** @name CumulusPalletXcmOrigin (137) */ interface CumulusPalletXcmOrigin extends Enum { readonly isRelay: boolean; readonly isSiblingParachain: boolean; @@ -2042,13 +2057,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'Relay' | 'SiblingParachain'; } - /** @name OrmlAuthorityDelayedOrigin (135) */ + /** @name OrmlAuthorityDelayedOrigin (138) */ interface OrmlAuthorityDelayedOrigin extends Struct { readonly delay: u32; readonly origin: AcalaRuntimeOriginCaller; } - /** @name PalletCollectiveRawOrigin (136) */ + /** @name PalletCollectiveRawOrigin (139) */ interface PalletCollectiveRawOrigin extends Enum { readonly isMembers: boolean; readonly asMembers: ITuple<[u32, u32]>; @@ -2058,10 +2073,10 @@ declare module '@polkadot/types/lookup' { readonly type: 'Members' | 'Member' | 'Phantom'; } - /** @name SpCoreVoid (140) */ + /** @name SpCoreVoid (143) */ type SpCoreVoid = Null; - /** @name PalletCollectiveEvent (142) */ + /** @name PalletCollectiveEvent (145) */ interface PalletCollectiveEvent extends Enum { readonly isProposed: boolean; readonly asProposed: { @@ -2105,7 +2120,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Proposed' | 'Voted' | 'Approved' | 'Disapproved' | 'Executed' | 'MemberExecuted' | 'Closed'; } - /** @name PalletMembershipEvent (143) */ + /** @name PalletMembershipEvent (146) */ interface PalletMembershipEvent extends Enum { readonly isMemberAdded: boolean; readonly isMemberRemoved: boolean; @@ -2116,7 +2131,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'MemberAdded' | 'MemberRemoved' | 'MembersSwapped' | 'MembersReset' | 'KeyChanged' | 'Dummy'; } - /** @name PalletDemocracyEvent (150) */ + /** @name PalletDemocracyEvent (153) */ interface PalletDemocracyEvent extends Enum { readonly isProposed: boolean; readonly asProposed: { @@ -2199,7 +2214,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Proposed' | 'Tabled' | 'ExternalTabled' | 'Started' | 'Passed' | 'NotPassed' | 'Cancelled' | 'Delegated' | 'Undelegated' | 'Vetoed' | 'Blacklisted' | 'Voted' | 'Seconded' | 'ProposalCanceled' | 'MetadataSet' | 'MetadataCleared' | 'MetadataTransferred'; } - /** @name PalletDemocracyVoteThreshold (151) */ + /** @name PalletDemocracyVoteThreshold (154) */ interface PalletDemocracyVoteThreshold extends Enum { readonly isSuperMajorityApprove: boolean; readonly isSuperMajorityAgainst: boolean; @@ -2207,7 +2222,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'SuperMajorityApprove' | 'SuperMajorityAgainst' | 'SimpleMajority'; } - /** @name PalletDemocracyVoteAccountVote (152) */ + /** @name PalletDemocracyVoteAccountVote (155) */ interface PalletDemocracyVoteAccountVote extends Enum { readonly isStandard: boolean; readonly asStandard: { @@ -2222,7 +2237,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Standard' | 'Split'; } - /** @name PalletDemocracyMetadataOwner (154) */ + /** @name PalletDemocracyMetadataOwner (157) */ interface PalletDemocracyMetadataOwner extends Enum { readonly isExternal: boolean; readonly isProposal: boolean; @@ -2232,7 +2247,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'External' | 'Proposal' | 'Referendum'; } - /** @name OrmlOracleModuleEvent (155) */ + /** @name OrmlOracleModuleEvent (158) */ interface OrmlOracleModuleEvent extends Enum { readonly isNewFeedData: boolean; readonly asNewFeedData: { @@ -2242,7 +2257,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NewFeedData'; } - /** @name OrmlAuctionModuleEvent (159) */ + /** @name OrmlAuctionModuleEvent (162) */ interface OrmlAuctionModuleEvent extends Enum { readonly isBid: boolean; readonly asBid: { @@ -2253,7 +2268,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Bid'; } - /** @name OrmlParametersModuleEvent (160) */ + /** @name OrmlParametersModuleEvent (163) */ interface OrmlParametersModuleEvent extends Enum { readonly isUpdated: boolean; readonly asUpdated: { @@ -2262,24 +2277,24 @@ declare module '@polkadot/types/lookup' { readonly type: 'Updated'; } - /** @name AcalaRuntimeRuntimeParameters (161) */ + /** @name AcalaRuntimeRuntimeParameters (164) */ interface AcalaRuntimeRuntimeParameters extends Enum { readonly isEarning: boolean; readonly asEarning: ModuleEarningParameters; readonly type: 'Earning'; } - /** @name ModuleEarningParameters (162) */ + /** @name ModuleEarningParameters (165) */ interface ModuleEarningParameters extends Enum { readonly isInstantUnstakeFee: boolean; readonly asInstantUnstakeFee: ITuple<[ModuleEarningInstantUnstakeFee, Option]>; readonly type: 'InstantUnstakeFee'; } - /** @name ModuleEarningInstantUnstakeFee (163) */ + /** @name ModuleEarningInstantUnstakeFee (166) */ type ModuleEarningInstantUnstakeFee = Null; - /** @name ModulePricesModuleEvent (166) */ + /** @name ModulePricesModuleEvent (169) */ interface ModulePricesModuleEvent extends Enum { readonly isLockPrice: boolean; readonly asLockPrice: { @@ -2293,7 +2308,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'LockPrice' | 'UnlockPrice'; } - /** @name ModuleDexModuleEvent (167) */ + /** @name ModuleDexModuleEvent (170) */ interface ModuleDexModuleEvent extends Enum { readonly isAddProvision: boolean; readonly asAddProvision: { @@ -2363,10 +2378,10 @@ declare module '@polkadot/types/lookup' { readonly type: 'AddProvision' | 'AddLiquidity' | 'RemoveLiquidity' | 'Swap' | 'EnableTradingPair' | 'ListProvisioning' | 'DisableTradingPair' | 'ProvisioningToEnabled' | 'RefundProvision' | 'ProvisioningAborted'; } - /** @name AcalaPrimitivesTradingPair (170) */ + /** @name AcalaPrimitivesTradingPair (173) */ interface AcalaPrimitivesTradingPair extends ITuple<[AcalaPrimitivesCurrencyCurrencyId, AcalaPrimitivesCurrencyCurrencyId]> {} - /** @name ModuleEarningModuleEvent (171) */ + /** @name ModuleEarningModuleEvent (174) */ interface ModuleEarningModuleEvent extends Enum { readonly isBonded: boolean; readonly asBonded: { @@ -2397,7 +2412,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Bonded' | 'Unbonded' | 'InstantUnbonded' | 'Rebonded' | 'Withdrawn'; } - /** @name ModuleAuctionManagerModuleEvent (172) */ + /** @name ModuleAuctionManagerModuleEvent (175) */ interface ModuleAuctionManagerModuleEvent extends Enum { readonly isNewCollateralAuction: boolean; readonly asNewCollateralAuction: { @@ -2437,7 +2452,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NewCollateralAuction' | 'CancelAuction' | 'CollateralAuctionDealt' | 'DexTakeCollateralAuction' | 'CollateralAuctionAborted'; } - /** @name ModuleLoansModuleEvent (173) */ + /** @name ModuleLoansModuleEvent (176) */ interface ModuleLoansModuleEvent extends Enum { readonly isPositionUpdated: boolean; readonly asPositionUpdated: { @@ -2462,7 +2477,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'PositionUpdated' | 'ConfiscateCollateralAndDebit' | 'TransferLoan'; } - /** @name ModuleHonzonModuleEvent (175) */ + /** @name ModuleHonzonModuleEvent (178) */ interface ModuleHonzonModuleEvent extends Enum { readonly isAuthorization: boolean; readonly asAuthorization: { @@ -2489,7 +2504,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Authorization' | 'UnAuthorization' | 'UnAuthorizationAll' | 'TransferDebit'; } - /** @name ModuleCdpTreasuryModuleEvent (176) */ + /** @name ModuleCdpTreasuryModuleEvent (179) */ interface ModuleCdpTreasuryModuleEvent extends Enum { readonly isExpectedCollateralAuctionSizeUpdated: boolean; readonly asExpectedCollateralAuctionSizeUpdated: { @@ -2503,7 +2518,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ExpectedCollateralAuctionSizeUpdated' | 'DebitOffsetBufferUpdated'; } - /** @name ModuleCdpEngineModuleEvent (177) */ + /** @name ModuleCdpEngineModuleEvent (180) */ interface ModuleCdpEngineModuleEvent extends Enum { readonly isLiquidateUnsafeCDP: boolean; readonly asLiquidateUnsafeCDP: { @@ -2562,7 +2577,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'LiquidateUnsafeCDP' | 'SettleCDPInDebit' | 'CloseCDPInDebitByDEX' | 'InterestRatePerSecUpdated' | 'LiquidationRatioUpdated' | 'LiquidationPenaltyUpdated' | 'RequiredCollateralRatioUpdated' | 'MaximumTotalDebitValueUpdated' | 'LiquidationContractRegistered' | 'LiquidationContractDeregistered'; } - /** @name ModuleEmergencyShutdownModuleEvent (179) */ + /** @name ModuleEmergencyShutdownModuleEvent (182) */ interface ModuleEmergencyShutdownModuleEvent extends Enum { readonly isShutdown: boolean; readonly asShutdown: { @@ -2581,7 +2596,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Shutdown' | 'OpenRefund' | 'Refund'; } - /** @name ModuleHomaModuleEvent (182) */ + /** @name ModuleHomaModuleEvent (185) */ interface ModuleHomaModuleEvent extends Enum { readonly isMinted: boolean; readonly asMinted: { @@ -2665,13 +2680,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'Minted' | 'RequestedRedeem' | 'RedeemRequestCancelled' | 'RedeemedByFastMatch' | 'RedeemedByUnbond' | 'WithdrawRedemption' | 'CurrentEraBumped' | 'CurrentEraReset' | 'LedgerBondedReset' | 'LedgerUnlockingReset' | 'SoftBondedCapPerSubAccountUpdated' | 'EstimatedRewardRatePerEraUpdated' | 'CommissionRateUpdated' | 'FastMatchFeeRateUpdated' | 'LastEraBumpedBlockUpdated' | 'BumpEraFrequencyUpdated'; } - /** @name ModuleHomaModuleUnlockChunk (184) */ + /** @name ModuleHomaModuleUnlockChunk (187) */ interface ModuleHomaModuleUnlockChunk extends Struct { readonly value: Compact; readonly era: Compact; } - /** @name ModuleXcmInterfaceModuleEvent (185) */ + /** @name ModuleXcmInterfaceModuleEvent (188) */ interface ModuleXcmInterfaceModuleEvent extends Enum { readonly isXcmDestWeightUpdated: boolean; readonly asXcmDestWeightUpdated: { @@ -2686,7 +2701,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'XcmDestWeightUpdated' | 'XcmFeeUpdated'; } - /** @name ModuleXcmInterfaceModuleXcmInterfaceOperation (186) */ + /** @name ModuleXcmInterfaceModuleXcmInterfaceOperation (189) */ interface ModuleXcmInterfaceModuleXcmInterfaceOperation extends Enum { readonly isXtokensTransfer: boolean; readonly isHomaWithdrawUnbonded: boolean; @@ -2698,7 +2713,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'XtokensTransfer' | 'HomaWithdrawUnbonded' | 'HomaBondExtra' | 'HomaUnbond' | 'ParachainFee' | 'ProxyReserveTransferAssets'; } - /** @name ModuleIncentivesModuleEvent (187) */ + /** @name ModuleIncentivesModuleEvent (190) */ interface ModuleIncentivesModuleEvent extends Enum { readonly isDepositDexShare: boolean; readonly asDepositDexShare: { @@ -2739,7 +2754,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'DepositDexShare' | 'WithdrawDexShare' | 'ClaimRewards' | 'IncentiveRewardAmountUpdated' | 'ClaimRewardDeductionRateUpdated' | 'ClaimRewardDeductionCurrencyUpdated'; } - /** @name ModuleSupportIncentivesPoolId (188) */ + /** @name ModuleSupportIncentivesPoolId (191) */ interface ModuleSupportIncentivesPoolId extends Enum { readonly isLoans: boolean; readonly asLoans: AcalaPrimitivesCurrencyCurrencyId; @@ -2750,7 +2765,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Loans' | 'Dex' | 'Earning'; } - /** @name ModuleNftModuleEvent (190) */ + /** @name ModuleNftModuleEvent (193) */ interface ModuleNftModuleEvent extends Enum { readonly isCreatedClass: boolean; readonly asCreatedClass: { @@ -2792,7 +2807,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'CreatedClass' | 'MintedToken' | 'TransferredToken' | 'BurnedToken' | 'BurnedTokenWithRemark' | 'DestroyedClass'; } - /** @name ModuleAssetRegistryModuleEvent (191) */ + /** @name ModuleAssetRegistryModuleEvent (194) */ interface ModuleAssetRegistryModuleEvent extends Enum { readonly isForeignAssetRegistered: boolean; readonly asForeignAssetRegistered: { @@ -2819,7 +2834,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated'; } - /** @name AcalaPrimitivesCurrencyAssetMetadata (192) */ + /** @name AcalaPrimitivesCurrencyAssetMetadata (195) */ interface AcalaPrimitivesCurrencyAssetMetadata extends Struct { readonly name: Bytes; readonly symbol: Bytes; @@ -2827,7 +2842,7 @@ declare module '@polkadot/types/lookup' { readonly minimalBalance: u128; } - /** @name AcalaPrimitivesCurrencyAssetIds (193) */ + /** @name AcalaPrimitivesCurrencyAssetIds (196) */ interface AcalaPrimitivesCurrencyAssetIds extends Enum { readonly isErc20: boolean; readonly asErc20: H160; @@ -2840,7 +2855,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Erc20' | 'StableAssetId' | 'ForeignAssetId' | 'NativeAssetId'; } - /** @name ModuleLiquidCrowdloanModuleEvent (194) */ + /** @name ModuleLiquidCrowdloanModuleEvent (197) */ interface ModuleLiquidCrowdloanModuleEvent extends Enum { readonly isRedeemed: boolean; readonly asRedeemed: { @@ -2858,7 +2873,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Redeemed' | 'TransferFromCrowdloanVaultRequested' | 'RedeemCurrencyIdUpdated'; } - /** @name ModuleEvmModuleEvent (195) */ + /** @name ModuleEvmModuleEvent (198) */ interface ModuleEvmModuleEvent extends Enum { readonly isCreated: boolean; readonly asCreated: { @@ -2923,14 +2938,14 @@ declare module '@polkadot/types/lookup' { readonly type: 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'TransferredMaintainer' | 'ContractDevelopmentEnabled' | 'ContractDevelopmentDisabled' | 'ContractPublished' | 'ContractSetCode' | 'ContractSelfdestructed'; } - /** @name EthereumLog (197) */ + /** @name EthereumLog (200) */ interface EthereumLog extends Struct { readonly address: H160; readonly topics: Vec; readonly data: Bytes; } - /** @name EvmCoreErrorExitReason (200) */ + /** @name EvmCoreErrorExitReason (203) */ interface EvmCoreErrorExitReason extends Enum { readonly isSucceed: boolean; readonly asSucceed: EvmCoreErrorExitSucceed; @@ -2943,7 +2958,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal'; } - /** @name EvmCoreErrorExitSucceed (201) */ + /** @name EvmCoreErrorExitSucceed (204) */ interface EvmCoreErrorExitSucceed extends Enum { readonly isStopped: boolean; readonly isReturned: boolean; @@ -2951,7 +2966,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Stopped' | 'Returned' | 'Suicided'; } - /** @name EvmCoreErrorExitError (202) */ + /** @name EvmCoreErrorExitError (205) */ interface EvmCoreErrorExitError extends Enum { readonly isStackUnderflow: boolean; readonly isStackOverflow: boolean; @@ -2968,18 +2983,19 @@ declare module '@polkadot/types/lookup' { readonly isCreateEmpty: boolean; readonly isOther: boolean; readonly asOther: Text; + readonly isMaxNonce: boolean; readonly isInvalidCode: boolean; readonly asInvalidCode: u8; - readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode'; + readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'MaxNonce' | 'InvalidCode'; } - /** @name EvmCoreErrorExitRevert (206) */ + /** @name EvmCoreErrorExitRevert (209) */ interface EvmCoreErrorExitRevert extends Enum { readonly isReverted: boolean; readonly type: 'Reverted'; } - /** @name EvmCoreErrorExitFatal (207) */ + /** @name EvmCoreErrorExitFatal (210) */ interface EvmCoreErrorExitFatal extends Enum { readonly isNotSupported: boolean; readonly isUnhandledInterrupt: boolean; @@ -2990,7 +3006,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other'; } - /** @name ModuleEvmAccountsModuleEvent (208) */ + /** @name ModuleEvmAccountsModuleEvent (211) */ interface ModuleEvmAccountsModuleEvent extends Enum { readonly isClaimAccount: boolean; readonly asClaimAccount: { @@ -3000,7 +3016,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ClaimAccount'; } - /** @name NutsfinanceStableAssetEvent (209) */ + /** @name NutsfinanceStableAssetEvent (212) */ interface NutsfinanceStableAssetEvent extends Enum { readonly isCreatePool: boolean; readonly asCreatePool: { @@ -3119,7 +3135,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'CreatePool' | 'Minted' | 'TokenSwapped' | 'RedeemedProportion' | 'RedeemedSingle' | 'RedeemedMulti' | 'BalanceUpdated' | 'YieldCollected' | 'FeeCollected' | 'AModified' | 'FeeModified' | 'RecipientModified'; } - /** @name CumulusPalletParachainSystemEvent (210) */ + /** @name CumulusPalletParachainSystemEvent (213) */ interface CumulusPalletParachainSystemEvent extends Enum { readonly isValidationFunctionStored: boolean; readonly isValidationFunctionApplied: boolean; @@ -3127,10 +3143,6 @@ declare module '@polkadot/types/lookup' { readonly relayChainBlockNum: u32; } & Struct; readonly isValidationFunctionDiscarded: boolean; - readonly isUpgradeAuthorized: boolean; - readonly asUpgradeAuthorized: { - readonly codeHash: H256; - } & Struct; readonly isDownwardMessagesReceived: boolean; readonly asDownwardMessagesReceived: { readonly count: u32; @@ -3144,10 +3156,10 @@ declare module '@polkadot/types/lookup' { readonly asUpwardMessageSent: { readonly messageHash: Option; } & Struct; - readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed' | 'UpwardMessageSent'; + readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed' | 'UpwardMessageSent'; } - /** @name PalletSudoEvent (211) */ + /** @name PalletSudoEvent (214) */ interface PalletSudoEvent extends Enum { readonly isSudid: boolean; readonly asSudid: { @@ -3155,16 +3167,18 @@ declare module '@polkadot/types/lookup' { } & Struct; readonly isKeyChanged: boolean; readonly asKeyChanged: { - readonly oldSudoer: Option; + readonly old: Option; + readonly new_: AccountId32; } & Struct; + readonly isKeyRemoved: boolean; readonly isSudoAsDone: boolean; readonly asSudoAsDone: { readonly sudoResult: Result; } & Struct; - readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone'; + readonly type: 'Sudid' | 'KeyChanged' | 'KeyRemoved' | 'SudoAsDone'; } - /** @name FrameSystemPhase (212) */ + /** @name FrameSystemPhase (215) */ interface FrameSystemPhase extends Enum { readonly isApplyExtrinsic: boolean; readonly asApplyExtrinsic: u32; @@ -3173,13 +3187,19 @@ declare module '@polkadot/types/lookup' { readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization'; } - /** @name FrameSystemLastRuntimeUpgradeInfo (214) */ + /** @name FrameSystemLastRuntimeUpgradeInfo (217) */ interface FrameSystemLastRuntimeUpgradeInfo extends Struct { readonly specVersion: Compact; readonly specName: Text; } - /** @name FrameSystemCall (215) */ + /** @name FrameSystemCodeUpgradeAuthorization (218) */ + interface FrameSystemCodeUpgradeAuthorization extends Struct { + readonly codeHash: H256; + readonly checkVersion: bool; + } + + /** @name FrameSystemCall (219) */ interface FrameSystemCall extends Enum { readonly isRemark: boolean; readonly asRemark: { @@ -3214,24 +3234,36 @@ declare module '@polkadot/types/lookup' { readonly asRemarkWithEvent: { readonly remark: Bytes; } & Struct; - readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent'; + readonly isAuthorizeUpgrade: boolean; + readonly asAuthorizeUpgrade: { + readonly codeHash: H256; + } & Struct; + readonly isAuthorizeUpgradeWithoutChecks: boolean; + readonly asAuthorizeUpgradeWithoutChecks: { + readonly codeHash: H256; + } & Struct; + readonly isApplyAuthorizedUpgrade: boolean; + readonly asApplyAuthorizedUpgrade: { + readonly code: Bytes; + } & Struct; + readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent' | 'AuthorizeUpgrade' | 'AuthorizeUpgradeWithoutChecks' | 'ApplyAuthorizedUpgrade'; } - /** @name FrameSystemLimitsBlockWeights (219) */ + /** @name FrameSystemLimitsBlockWeights (223) */ interface FrameSystemLimitsBlockWeights extends Struct { readonly baseBlock: SpWeightsWeightV2Weight; readonly maxBlock: SpWeightsWeightV2Weight; readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass; } - /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (220) */ + /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (224) */ interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct { readonly normal: FrameSystemLimitsWeightsPerClass; readonly operational: FrameSystemLimitsWeightsPerClass; readonly mandatory: FrameSystemLimitsWeightsPerClass; } - /** @name FrameSystemLimitsWeightsPerClass (221) */ + /** @name FrameSystemLimitsWeightsPerClass (225) */ interface FrameSystemLimitsWeightsPerClass extends Struct { readonly baseExtrinsic: SpWeightsWeightV2Weight; readonly maxExtrinsic: Option; @@ -3239,25 +3271,25 @@ declare module '@polkadot/types/lookup' { readonly reserved: Option; } - /** @name FrameSystemLimitsBlockLength (223) */ + /** @name FrameSystemLimitsBlockLength (227) */ interface FrameSystemLimitsBlockLength extends Struct { readonly max: FrameSupportDispatchPerDispatchClassU32; } - /** @name FrameSupportDispatchPerDispatchClassU32 (224) */ + /** @name FrameSupportDispatchPerDispatchClassU32 (228) */ interface FrameSupportDispatchPerDispatchClassU32 extends Struct { readonly normal: u32; readonly operational: u32; readonly mandatory: u32; } - /** @name SpWeightsRuntimeDbWeight (225) */ + /** @name SpWeightsRuntimeDbWeight (229) */ interface SpWeightsRuntimeDbWeight extends Struct { readonly read: u64; readonly write: u64; } - /** @name SpVersionRuntimeVersion (226) */ + /** @name SpVersionRuntimeVersion (230) */ interface SpVersionRuntimeVersion extends Struct { readonly specName: Text; readonly implName: Text; @@ -3269,7 +3301,7 @@ declare module '@polkadot/types/lookup' { readonly stateVersion: u8; } - /** @name FrameSystemError (230) */ + /** @name FrameSystemError (234) */ interface FrameSystemError extends Enum { readonly isInvalidSpecName: boolean; readonly isSpecVersionNeedsToIncrease: boolean; @@ -3277,10 +3309,12 @@ declare module '@polkadot/types/lookup' { readonly isNonDefaultComposite: boolean; readonly isNonZeroRefCount: boolean; readonly isCallFiltered: boolean; - readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered'; + readonly isNothingAuthorized: boolean; + readonly isUnauthorized: boolean; + readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered' | 'NothingAuthorized' | 'Unauthorized'; } - /** @name PalletTimestampCall (231) */ + /** @name PalletTimestampCall (235) */ interface PalletTimestampCall extends Enum { readonly isSet: boolean; readonly asSet: { @@ -3289,7 +3323,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Set'; } - /** @name PalletSchedulerScheduled (234) */ + /** @name PalletSchedulerScheduled (238) */ interface PalletSchedulerScheduled extends Struct { readonly maybeId: Option; readonly priority: u8; @@ -3298,7 +3332,7 @@ declare module '@polkadot/types/lookup' { readonly origin: AcalaRuntimeOriginCaller; } - /** @name FrameSupportPreimagesBounded (235) */ + /** @name FrameSupportPreimagesBounded (239) */ interface FrameSupportPreimagesBounded extends Enum { readonly isLegacy: boolean; readonly asLegacy: { @@ -3314,7 +3348,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Legacy' | 'Inline' | 'Lookup'; } - /** @name PalletSchedulerCall (237) */ + /** @name PalletSchedulerCall (241) */ interface PalletSchedulerCall extends Enum { readonly isSchedule: boolean; readonly asSchedule: { @@ -3358,7 +3392,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter'; } - /** @name PalletUtilityCall (239) */ + /** @name PalletUtilityCall (243) */ interface PalletUtilityCall extends Enum { readonly isBatch: boolean; readonly asBatch: { @@ -3390,7 +3424,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight'; } - /** @name PalletMultisigCall (241) */ + /** @name PalletMultisigCall (245) */ interface PalletMultisigCall extends Enum { readonly isAsMultiThreshold1: boolean; readonly asAsMultiThreshold1: { @@ -3423,7 +3457,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti'; } - /** @name PalletProxyCall (243) */ + /** @name PalletProxyCall (247) */ interface PalletProxyCall extends Enum { readonly isProxy: boolean; readonly asProxy: { @@ -3483,7 +3517,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced'; } - /** @name ModuleTransactionPauseModuleCall (246) */ + /** @name ModuleTransactionPauseModuleCall (250) */ interface ModuleTransactionPauseModuleCall extends Enum { readonly isPauseTransaction: boolean; readonly asPauseTransaction: { @@ -3506,7 +3540,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'PauseTransaction' | 'UnpauseTransaction' | 'PauseEvmPrecompile' | 'UnpauseEvmPrecompile'; } - /** @name ModuleIdleSchedulerModuleCall (247) */ + /** @name ModuleIdleSchedulerModuleCall (251) */ interface ModuleIdleSchedulerModuleCall extends Enum { readonly isScheduleTask: boolean; readonly asScheduleTask: { @@ -3515,7 +3549,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ScheduleTask'; } - /** @name PalletPreimageCall (248) */ + /** @name PalletPreimageCall (252) */ interface PalletPreimageCall extends Enum { readonly isNotePreimage: boolean; readonly asNotePreimage: { @@ -3540,7 +3574,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage' | 'EnsureUpdated'; } - /** @name PalletBalancesCall (249) */ + /** @name PalletBalancesCall (253) */ interface PalletBalancesCall extends Enum { readonly isTransferAllowDeath: boolean; readonly asTransferAllowDeath: { @@ -3580,7 +3614,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance'; } - /** @name ModuleCurrenciesModuleCall (250) */ + /** @name ModuleCurrenciesModuleCall (254) */ interface ModuleCurrenciesModuleCall extends Enum { readonly isTransfer: boolean; readonly asTransfer: { @@ -3620,7 +3654,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Transfer' | 'TransferNativeCurrency' | 'UpdateBalance' | 'SweepDust' | 'ForceSetLock' | 'ForceRemoveLock'; } - /** @name OrmlVestingModuleCall (251) */ + /** @name OrmlVestingModuleCall (255) */ interface OrmlVestingModuleCall extends Enum { readonly isClaim: boolean; readonly isVestedTransfer: boolean; @@ -3640,7 +3674,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor'; } - /** @name ModuleTransactionPaymentModuleCall (253) */ + /** @name ModuleTransactionPaymentModuleCall (257) */ interface ModuleTransactionPaymentModuleCall extends Enum { readonly isSetAlternativeFeeSwapPath: boolean; readonly asSetAlternativeFeeSwapPath: { @@ -3674,7 +3708,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'SetAlternativeFeeSwapPath' | 'EnableChargeFeePool' | 'DisableChargeFeePool' | 'WithFeePath' | 'WithFeeCurrency' | 'WithFeeAggregatedPath'; } - /** @name ModuleSupportDexAggregatedSwapPath (256) */ + /** @name ModuleSupportDexAggregatedSwapPath (260) */ interface ModuleSupportDexAggregatedSwapPath extends Enum { readonly isDex: boolean; readonly asDex: Vec; @@ -3683,7 +3717,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Dex' | 'Taiga'; } - /** @name PalletTreasuryCall (257) */ + /** @name PalletTreasuryCall (261) */ interface PalletTreasuryCall extends Enum { readonly isProposeSpend: boolean; readonly asProposeSpend: { @@ -3729,7 +3763,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'SpendLocal' | 'RemoveApproval' | 'Spend' | 'Payout' | 'CheckStatus' | 'VoidSpend'; } - /** @name PalletBountiesCall (259) */ + /** @name PalletBountiesCall (263) */ interface PalletBountiesCall extends Enum { readonly isProposeBounty: boolean; readonly asProposeBounty: { @@ -3775,7 +3809,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ProposeBounty' | 'ApproveBounty' | 'ProposeCurator' | 'UnassignCurator' | 'AcceptCurator' | 'AwardBounty' | 'ClaimBounty' | 'CloseBounty' | 'ExtendBountyExpiry'; } - /** @name PalletTipsCall (260) */ + /** @name PalletTipsCall (264) */ interface PalletTipsCall extends Enum { readonly isReportAwesome: boolean; readonly asReportAwesome: { @@ -3808,7 +3842,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ReportAwesome' | 'RetractTip' | 'TipNew' | 'Tip' | 'CloseTip' | 'SlashTip'; } - /** @name ModuleCollatorSelectionCall (261) */ + /** @name ModuleCollatorSelectionCall (265) */ interface ModuleCollatorSelectionCall extends Enum { readonly isSetInvulnerables: boolean; readonly asSetInvulnerables: { @@ -3832,7 +3866,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'SetInvulnerables' | 'SetDesiredCandidates' | 'SetCandidacyBond' | 'RegisterAsCandidate' | 'RegisterCandidate' | 'LeaveIntent' | 'WithdrawBond'; } - /** @name PalletSessionCall (262) */ + /** @name PalletSessionCall (266) */ interface PalletSessionCall extends Enum { readonly isSetKeys: boolean; readonly asSetKeys: { @@ -3843,18 +3877,18 @@ declare module '@polkadot/types/lookup' { readonly type: 'SetKeys' | 'PurgeKeys'; } - /** @name AcalaRuntimeSessionKeys (263) */ + /** @name AcalaRuntimeSessionKeys (267) */ interface AcalaRuntimeSessionKeys extends Struct { readonly aura: SpConsensusAuraSr25519AppSr25519Public; } - /** @name SpConsensusAuraSr25519AppSr25519Public (264) */ + /** @name SpConsensusAuraSr25519AppSr25519Public (268) */ interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {} - /** @name SpCoreSr25519Public (265) */ + /** @name SpCoreSr25519Public (269) */ interface SpCoreSr25519Public extends U8aFixed {} - /** @name ModuleSessionManagerModuleCall (266) */ + /** @name ModuleSessionManagerModuleCall (270) */ interface ModuleSessionManagerModuleCall extends Enum { readonly isScheduleSessionDuration: boolean; readonly asScheduleSessionDuration: { @@ -3864,13 +3898,8 @@ declare module '@polkadot/types/lookup' { readonly type: 'ScheduleSessionDuration'; } - /** @name CumulusPalletXcmpQueueCall (267) */ + /** @name CumulusPalletXcmpQueueCall (271) */ interface CumulusPalletXcmpQueueCall extends Enum { - readonly isServiceOverweight: boolean; - readonly asServiceOverweight: { - readonly index: u64; - readonly weightLimit: SpWeightsWeightV2Weight; - } & Struct; readonly isSuspendXcmExecution: boolean; readonly isResumeXcmExecution: boolean; readonly isUpdateSuspendThreshold: boolean; @@ -3885,22 +3914,10 @@ declare module '@polkadot/types/lookup' { readonly asUpdateResumeThreshold: { readonly new_: u32; } & Struct; - readonly isUpdateThresholdWeight: boolean; - readonly asUpdateThresholdWeight: { - readonly new_: SpWeightsWeightV2Weight; - } & Struct; - readonly isUpdateWeightRestrictDecay: boolean; - readonly asUpdateWeightRestrictDecay: { - readonly new_: SpWeightsWeightV2Weight; - } & Struct; - readonly isUpdateXcmpMaxIndividualWeight: boolean; - readonly asUpdateXcmpMaxIndividualWeight: { - readonly new_: SpWeightsWeightV2Weight; - } & Struct; - readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight'; + readonly type: 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold'; } - /** @name PalletXcmCall (268) */ + /** @name PalletXcmCall (272) */ interface PalletXcmCall extends Enum { readonly isSend: boolean; readonly asSend: { @@ -3963,10 +3980,18 @@ declare module '@polkadot/types/lookup' { readonly asForceSuspension: { readonly suspended: bool; } & Struct; - readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets' | 'ForceSuspension'; + readonly isTransferAssets: boolean; + readonly asTransferAssets: { + readonly dest: XcmVersionedMultiLocation; + readonly beneficiary: XcmVersionedMultiLocation; + readonly assets: XcmVersionedMultiAssets; + readonly feeAssetItem: u32; + readonly weightLimit: XcmV3WeightLimit; + } & Struct; + readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets' | 'ForceSuspension' | 'TransferAssets'; } - /** @name XcmVersionedXcm (269) */ + /** @name XcmVersionedXcm (273) */ interface XcmVersionedXcm extends Enum { readonly isV2: boolean; readonly asV2: XcmV2Xcm; @@ -3975,10 +4000,10 @@ declare module '@polkadot/types/lookup' { readonly type: 'V2' | 'V3'; } - /** @name XcmV2Xcm (270) */ + /** @name XcmV2Xcm (274) */ interface XcmV2Xcm extends Vec {} - /** @name XcmV2Instruction (272) */ + /** @name XcmV2Instruction (276) */ interface XcmV2Instruction extends Enum { readonly isWithdrawAsset: boolean; readonly asWithdrawAsset: XcmV2MultiassetMultiAssets; @@ -4098,7 +4123,7 @@ declare module '@polkadot/types/lookup' { 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'; } - /** @name XcmV2Response (273) */ + /** @name XcmV2Response (277) */ interface XcmV2Response extends Enum { readonly isNull: boolean; readonly isAssets: boolean; @@ -4110,7 +4135,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version'; } - /** @name XcmV2TraitsError (276) */ + /** @name XcmV2TraitsError (280) */ interface XcmV2TraitsError extends Enum { readonly isOverflow: boolean; readonly isUnimplemented: boolean; @@ -4143,7 +4168,7 @@ declare module '@polkadot/types/lookup' { 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'; } - /** @name XcmV2MultiassetMultiAssetFilter (277) */ + /** @name XcmV2MultiassetMultiAssetFilter (281) */ interface XcmV2MultiassetMultiAssetFilter extends Enum { readonly isDefinite: boolean; readonly asDefinite: XcmV2MultiassetMultiAssets; @@ -4152,7 +4177,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Definite' | 'Wild'; } - /** @name XcmV2MultiassetWildMultiAsset (278) */ + /** @name XcmV2MultiassetWildMultiAsset (282) */ interface XcmV2MultiassetWildMultiAsset extends Enum { readonly isAll: boolean; readonly isAllOf: boolean; @@ -4163,14 +4188,14 @@ declare module '@polkadot/types/lookup' { readonly type: 'All' | 'AllOf'; } - /** @name XcmV2MultiassetWildFungibility (279) */ + /** @name XcmV2MultiassetWildFungibility (283) */ interface XcmV2MultiassetWildFungibility extends Enum { readonly isFungible: boolean; readonly isNonFungible: boolean; readonly type: 'Fungible' | 'NonFungible'; } - /** @name XcmV2WeightLimit (280) */ + /** @name XcmV2WeightLimit (284) */ interface XcmV2WeightLimit extends Enum { readonly isUnlimited: boolean; readonly isLimited: boolean; @@ -4178,17 +4203,10 @@ declare module '@polkadot/types/lookup' { readonly type: 'Unlimited' | 'Limited'; } - /** @name CumulusPalletDmpQueueCall (289) */ - interface CumulusPalletDmpQueueCall extends Enum { - readonly isServiceOverweight: boolean; - readonly asServiceOverweight: { - readonly index: u64; - readonly weightLimit: SpWeightsWeightV2Weight; - } & Struct; - readonly type: 'ServiceOverweight'; - } + /** @name CumulusPalletDmpQueueCall (293) */ + type CumulusPalletDmpQueueCall = Null; - /** @name OrmlXtokensModuleCall (290) */ + /** @name OrmlXtokensModuleCall (294) */ interface OrmlXtokensModuleCall extends Enum { readonly isTransfer: boolean; readonly asTransfer: { @@ -4235,7 +4253,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets'; } - /** @name XcmVersionedMultiAsset (291) */ + /** @name XcmVersionedMultiAsset (295) */ interface XcmVersionedMultiAsset extends Enum { readonly isV2: boolean; readonly asV2: XcmV2MultiAsset; @@ -4244,7 +4262,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'V2' | 'V3'; } - /** @name OrmlXcmModuleCall (292) */ + /** @name OrmlXcmModuleCall (296) */ interface OrmlXcmModuleCall extends Enum { readonly isSendAsSovereign: boolean; readonly asSendAsSovereign: { @@ -4254,7 +4272,24 @@ declare module '@polkadot/types/lookup' { readonly type: 'SendAsSovereign'; } - /** @name OrmlAuthorityModuleCall (293) */ + /** @name PalletMessageQueueCall (297) */ + interface PalletMessageQueueCall extends Enum { + readonly isReapPage: boolean; + readonly asReapPage: { + readonly messageOrigin: CumulusPrimitivesCoreAggregateMessageOrigin; + readonly pageIndex: u32; + } & Struct; + readonly isExecuteOverweight: boolean; + readonly asExecuteOverweight: { + readonly messageOrigin: CumulusPrimitivesCoreAggregateMessageOrigin; + readonly page: u32; + readonly index: u32; + readonly weightLimit: SpWeightsWeightV2Weight; + } & Struct; + readonly type: 'ReapPage' | 'ExecuteOverweight'; + } + + /** @name OrmlAuthorityModuleCall (298) */ interface OrmlAuthorityModuleCall extends Enum { readonly isDispatchAs: boolean; readonly asDispatchAs: { @@ -4302,7 +4337,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'DispatchAs' | 'ScheduleDispatch' | 'FastTrackScheduledDispatch' | 'DelayScheduledDispatch' | 'CancelScheduledDispatch' | 'AuthorizeCall' | 'RemoveAuthorizedCall' | 'TriggerCall'; } - /** @name AcalaPrimitivesAuthoritysOriginId (294) */ + /** @name AcalaPrimitivesAuthoritysOriginId (299) */ interface AcalaPrimitivesAuthoritysOriginId extends Enum { readonly isRoot: boolean; readonly isTreasury: boolean; @@ -4312,7 +4347,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Root' | 'Treasury' | 'HonzonTreasury' | 'HomaTreasury' | 'TreasuryReserve'; } - /** @name FrameSupportScheduleDispatchTime (295) */ + /** @name FrameSupportScheduleDispatchTime (300) */ interface FrameSupportScheduleDispatchTime extends Enum { readonly isAt: boolean; readonly asAt: u32; @@ -4321,7 +4356,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'At' | 'After'; } - /** @name PalletCollectiveCall (296) */ + /** @name PalletCollectiveCall (301) */ interface PalletCollectiveCall extends Enum { readonly isSetMembers: boolean; readonly asSetMembers: { @@ -4360,7 +4395,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'SetMembers' | 'Execute' | 'Propose' | 'Vote' | 'DisapproveProposal' | 'Close'; } - /** @name PalletMembershipCall (297) */ + /** @name PalletMembershipCall (302) */ interface PalletMembershipCall extends Enum { readonly isAddMember: boolean; readonly asAddMember: { @@ -4391,7 +4426,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'AddMember' | 'RemoveMember' | 'SwapMember' | 'ResetMembers' | 'ChangeKey' | 'SetPrime' | 'ClearPrime'; } - /** @name PalletDemocracyCall (304) */ + /** @name PalletDemocracyCall (309) */ interface PalletDemocracyCall extends Enum { readonly isPropose: boolean; readonly asPropose: { @@ -4475,7 +4510,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Propose' | 'Second' | 'Vote' | 'EmergencyCancel' | 'ExternalPropose' | 'ExternalProposeMajority' | 'ExternalProposeDefault' | 'FastTrack' | 'VetoExternal' | 'CancelReferendum' | 'Delegate' | 'Undelegate' | 'ClearPublicProposals' | 'Unlock' | 'RemoveVote' | 'RemoveOtherVote' | 'Blacklist' | 'CancelProposal' | 'SetMetadata'; } - /** @name PalletDemocracyConviction (305) */ + /** @name PalletDemocracyConviction (310) */ interface PalletDemocracyConviction extends Enum { readonly isNone: boolean; readonly isLocked1x: boolean; @@ -4487,7 +4522,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'None' | 'Locked1x' | 'Locked2x' | 'Locked3x' | 'Locked4x' | 'Locked5x' | 'Locked6x'; } - /** @name OrmlOracleModuleCall (307) */ + /** @name OrmlOracleModuleCall (312) */ interface OrmlOracleModuleCall extends Enum { readonly isFeedValues: boolean; readonly asFeedValues: { @@ -4496,7 +4531,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'FeedValues'; } - /** @name OrmlAuctionModuleCall (310) */ + /** @name OrmlAuctionModuleCall (315) */ interface OrmlAuctionModuleCall extends Enum { readonly isBid: boolean; readonly asBid: { @@ -4506,7 +4541,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Bid'; } - /** @name OrmlParametersModuleCall (311) */ + /** @name OrmlParametersModuleCall (316) */ interface OrmlParametersModuleCall extends Enum { readonly isSetParameter: boolean; readonly asSetParameter: { @@ -4515,7 +4550,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'SetParameter'; } - /** @name ModulePricesModuleCall (312) */ + /** @name ModulePricesModuleCall (317) */ interface ModulePricesModuleCall extends Enum { readonly isLockPrice: boolean; readonly asLockPrice: { @@ -4528,7 +4563,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'LockPrice' | 'UnlockPrice'; } - /** @name ModuleDexModuleCall (313) */ + /** @name ModuleDexModuleCall (318) */ interface ModuleDexModuleCall extends Enum { readonly isSwapWithExactSupply: boolean; readonly asSwapWithExactSupply: { @@ -4622,7 +4657,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'SwapWithExactSupply' | 'SwapWithExactTarget' | 'AddLiquidity' | 'AddProvision' | 'ClaimDexShare' | 'RemoveLiquidity' | 'ListProvisioning' | 'UpdateProvisioningParameters' | 'EndProvisioning' | 'EnableTradingPair' | 'DisableTradingPair' | 'RefundProvision' | 'AbortProvisioning'; } - /** @name ModuleDexOracleModuleCall (314) */ + /** @name ModuleDexOracleModuleCall (319) */ interface ModuleDexOracleModuleCall extends Enum { readonly isEnableAveragePrice: boolean; readonly asEnableAveragePrice: { @@ -4644,7 +4679,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'EnableAveragePrice' | 'DisableAveragePrice' | 'UpdateAveragePriceInterval'; } - /** @name ModuleAggregatedDexModuleCall (315) */ + /** @name ModuleAggregatedDexModuleCall (320) */ interface ModuleAggregatedDexModuleCall extends Enum { readonly isSwapWithExactSupply: boolean; readonly asSwapWithExactSupply: { @@ -4665,7 +4700,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'SwapWithExactSupply' | 'SwapWithExactTarget' | 'UpdateAggregatedSwapPaths'; } - /** @name ModuleEarningModuleCall (320) */ + /** @name ModuleEarningModuleCall (325) */ interface ModuleEarningModuleCall extends Enum { readonly isBond: boolean; readonly asBond: { @@ -4687,7 +4722,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Bond' | 'Unbond' | 'UnbondInstant' | 'Rebond' | 'WithdrawUnbonded'; } - /** @name ModuleAuctionManagerModuleCall (321) */ + /** @name ModuleAuctionManagerModuleCall (326) */ interface ModuleAuctionManagerModuleCall extends Enum { readonly isCancel: boolean; readonly asCancel: { @@ -4696,10 +4731,10 @@ declare module '@polkadot/types/lookup' { readonly type: 'Cancel'; } - /** @name ModuleLoansModuleCall (322) */ + /** @name ModuleLoansModuleCall (327) */ type ModuleLoansModuleCall = Null; - /** @name ModuleHonzonModuleCall (323) */ + /** @name ModuleHonzonModuleCall (328) */ interface ModuleHonzonModuleCall extends Enum { readonly isAdjustLoan: boolean; readonly asAdjustLoan: { @@ -4755,7 +4790,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'AdjustLoan' | 'CloseLoanHasDebitByDex' | 'TransferLoanFrom' | 'Authorize' | 'Unauthorize' | 'UnauthorizeAll' | 'ExpandPositionCollateral' | 'ShrinkPositionDebit' | 'AdjustLoanByDebitValue' | 'TransferDebit'; } - /** @name ModuleCdpTreasuryModuleCall (324) */ + /** @name ModuleCdpTreasuryModuleCall (329) */ interface ModuleCdpTreasuryModuleCall extends Enum { readonly isExtractSurplusToTreasury: boolean; readonly asExtractSurplusToTreasury: { @@ -4785,7 +4820,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ExtractSurplusToTreasury' | 'AuctionCollateral' | 'ExchangeCollateralToStable' | 'SetExpectedCollateralAuctionSize' | 'SetDebitOffsetBuffer'; } - /** @name ModuleSupportDexSwapLimit (325) */ + /** @name ModuleSupportDexSwapLimit (330) */ interface ModuleSupportDexSwapLimit extends Enum { readonly isExactSupply: boolean; readonly asExactSupply: ITuple<[u128, u128]>; @@ -4794,7 +4829,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ExactSupply' | 'ExactTarget'; } - /** @name ModuleCdpEngineModuleCall (326) */ + /** @name ModuleCdpEngineModuleCall (331) */ interface ModuleCdpEngineModuleCall extends Enum { readonly isLiquidate: boolean; readonly asLiquidate: { @@ -4826,7 +4861,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Liquidate' | 'Settle' | 'SetCollateralParams' | 'RegisterLiquidationContract' | 'DeregisterLiquidationContract'; } - /** @name OrmlTraitsChangeOption (327) */ + /** @name OrmlTraitsChangeOption (332) */ interface OrmlTraitsChangeOption extends Enum { readonly isNoChange: boolean; readonly isNewValue: boolean; @@ -4834,7 +4869,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NoChange' | 'NewValue'; } - /** @name OrmlTraitsChangeU128 (328) */ + /** @name OrmlTraitsChangeU128 (333) */ interface OrmlTraitsChangeU128 extends Enum { readonly isNoChange: boolean; readonly isNewValue: boolean; @@ -4842,7 +4877,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NoChange' | 'NewValue'; } - /** @name ModuleEmergencyShutdownModuleCall (329) */ + /** @name ModuleEmergencyShutdownModuleCall (334) */ interface ModuleEmergencyShutdownModuleCall extends Enum { readonly isEmergencyShutdown: boolean; readonly isOpenCollateralRefund: boolean; @@ -4853,7 +4888,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'EmergencyShutdown' | 'OpenCollateralRefund' | 'RefundCollaterals'; } - /** @name ModuleHomaModuleCall (330) */ + /** @name ModuleHomaModuleCall (335) */ interface ModuleHomaModuleCall extends Enum { readonly isMint: boolean; readonly asMint: { @@ -4903,7 +4938,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Mint' | 'RequestRedeem' | 'FastMatchRedeems' | 'ClaimRedemption' | 'UpdateHomaParams' | 'UpdateBumpEraParams' | 'ResetLedgers' | 'ResetCurrentEra' | 'ForceBumpCurrentEra' | 'FastMatchRedeemsCompletely'; } - /** @name ModuleXcmInterfaceModuleCall (335) */ + /** @name ModuleXcmInterfaceModuleCall (340) */ interface ModuleXcmInterfaceModuleCall extends Enum { readonly isUpdateXcmDestWeightAndFee: boolean; readonly asUpdateXcmDestWeightAndFee: { @@ -4912,7 +4947,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'UpdateXcmDestWeightAndFee'; } - /** @name ModuleIncentivesModuleCall (338) */ + /** @name ModuleIncentivesModuleCall (343) */ interface ModuleIncentivesModuleCall extends Enum { readonly isDepositDexShare: boolean; readonly asDepositDexShare: { @@ -4944,7 +4979,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'DepositDexShare' | 'WithdrawDexShare' | 'ClaimRewards' | 'UpdateIncentiveRewards' | 'UpdateClaimRewardDeductionRates' | 'UpdateClaimRewardDeductionCurrency'; } - /** @name ModuleNftModuleCall (343) */ + /** @name ModuleNftModuleCall (348) */ interface ModuleNftModuleCall extends Enum { readonly isCreateClass: boolean; readonly asCreateClass: { @@ -4987,7 +5022,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'CreateClass' | 'Mint' | 'Transfer' | 'Burn' | 'BurnWithRemark' | 'DestroyClass' | 'UpdateClassProperties'; } - /** @name AcalaPrimitivesNftClassProperty (345) */ + /** @name AcalaPrimitivesNftClassProperty (350) */ interface AcalaPrimitivesNftClassProperty extends Enum { readonly isTransferable: boolean; readonly isBurnable: boolean; @@ -4996,7 +5031,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Transferable' | 'Burnable' | 'Mintable' | 'ClassPropertiesMutable'; } - /** @name ModuleAssetRegistryModuleCall (348) */ + /** @name ModuleAssetRegistryModuleCall (353) */ interface ModuleAssetRegistryModuleCall extends Enum { readonly isRegisterForeignAsset: boolean; readonly asRegisterForeignAsset: { @@ -5041,7 +5076,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset' | 'RegisterStableAsset' | 'UpdateStableAsset' | 'RegisterErc20Asset' | 'UpdateErc20Asset' | 'RegisterNativeAsset' | 'UpdateNativeAsset'; } - /** @name ModuleLiquidCrowdloanModuleCall (349) */ + /** @name ModuleLiquidCrowdloanModuleCall (354) */ interface ModuleLiquidCrowdloanModuleCall extends Enum { readonly isRedeem: boolean; readonly asRedeem: { @@ -5058,7 +5093,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Redeem' | 'TransferFromCrowdloanVault' | 'SetRedeemCurrencyId'; } - /** @name ModuleEvmModuleCall (350) */ + /** @name ModuleEvmModuleCall (355) */ interface ModuleEvmModuleCall extends Enum { readonly isEthCall: boolean; readonly asEthCall: { @@ -5168,7 +5203,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'EthCall' | 'Call' | 'ScheduledCall' | 'Create' | 'Create2' | 'CreateNftContract' | 'CreatePredeployContract' | 'TransferMaintainer' | 'PublishContract' | 'PublishFree' | 'EnableContractDevelopment' | 'DisableContractDevelopment' | 'SetCode' | 'Selfdestruct' | 'StrictCall' | 'EthCallV2'; } - /** @name EthereumTransactionTransactionAction (351) */ + /** @name EthereumTransactionTransactionAction (356) */ interface EthereumTransactionTransactionAction extends Enum { readonly isCall: boolean; readonly asCall: H160; @@ -5176,13 +5211,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'Call' | 'Create'; } - /** @name EthereumTransactionAccessListItem (353) */ + /** @name EthereumTransactionAccessListItem (358) */ interface EthereumTransactionAccessListItem extends Struct { readonly address: H160; readonly storageKeys: Vec; } - /** @name ModuleEvmAccountsModuleCall (354) */ + /** @name ModuleEvmAccountsModuleCall (359) */ interface ModuleEvmAccountsModuleCall extends Enum { readonly isClaimAccount: boolean; readonly asClaimAccount: { @@ -5193,7 +5228,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ClaimAccount' | 'ClaimDefaultAccount'; } - /** @name NutsfinanceStableAssetCall (356) */ + /** @name NutsfinanceStableAssetCall (361) */ interface NutsfinanceStableAssetCall extends Enum { readonly isCreatePool: boolean; readonly asCreatePool: { @@ -5265,7 +5300,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'CreatePool' | 'Mint' | 'Swap' | 'RedeemProportion' | 'RedeemSingle' | 'RedeemMulti' | 'ModifyA' | 'ModifyFees' | 'ModifyRecipients'; } - /** @name CumulusPalletParachainSystemCall (357) */ + /** @name CumulusPalletParachainSystemCall (362) */ interface CumulusPalletParachainSystemCall extends Enum { readonly isSetValidationData: boolean; readonly asSetValidationData: { @@ -5287,7 +5322,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade'; } - /** @name CumulusPrimitivesParachainInherentParachainInherentData (358) */ + /** @name CumulusPrimitivesParachainInherentParachainInherentData (363) */ interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct { readonly validationData: PolkadotPrimitivesV6PersistedValidationData; readonly relayChainState: SpTrieStorageProof; @@ -5295,7 +5330,7 @@ declare module '@polkadot/types/lookup' { readonly horizontalMessages: BTreeMap>; } - /** @name PolkadotPrimitivesV6PersistedValidationData (359) */ + /** @name PolkadotPrimitivesV6PersistedValidationData (364) */ interface PolkadotPrimitivesV6PersistedValidationData extends Struct { readonly parentHead: Bytes; readonly relayParentNumber: u32; @@ -5303,24 +5338,24 @@ declare module '@polkadot/types/lookup' { readonly maxPovSize: u32; } - /** @name SpTrieStorageProof (361) */ + /** @name SpTrieStorageProof (366) */ interface SpTrieStorageProof extends Struct { readonly trieNodes: BTreeSet; } - /** @name PolkadotCorePrimitivesInboundDownwardMessage (364) */ + /** @name PolkadotCorePrimitivesInboundDownwardMessage (369) */ interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct { readonly sentAt: u32; readonly msg: Bytes; } - /** @name PolkadotCorePrimitivesInboundHrmpMessage (367) */ + /** @name PolkadotCorePrimitivesInboundHrmpMessage (372) */ interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct { readonly sentAt: u32; readonly data: Bytes; } - /** @name PalletSudoCall (370) */ + /** @name PalletSudoCall (375) */ interface PalletSudoCall extends Enum { readonly isSudo: boolean; readonly asSudo: { @@ -5340,13 +5375,14 @@ declare module '@polkadot/types/lookup' { readonly who: MultiAddress; readonly call: Call; } & Struct; - readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs'; + readonly isRemoveKey: boolean; + readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey'; } - /** @name SpRuntimeBlakeTwo256 (371) */ + /** @name SpRuntimeBlakeTwo256 (376) */ type SpRuntimeBlakeTwo256 = Null; - /** @name PalletSchedulerError (374) */ + /** @name PalletSchedulerError (379) */ interface PalletSchedulerError extends Enum { readonly isFailedToSchedule: boolean; readonly isNotFound: boolean; @@ -5356,13 +5392,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named'; } - /** @name PalletUtilityError (375) */ + /** @name PalletUtilityError (380) */ interface PalletUtilityError extends Enum { readonly isTooManyCalls: boolean; readonly type: 'TooManyCalls'; } - /** @name PalletMultisigMultisig (377) */ + /** @name PalletMultisigMultisig (382) */ interface PalletMultisigMultisig extends Struct { readonly when: PalletMultisigTimepoint; readonly deposit: u128; @@ -5370,7 +5406,7 @@ declare module '@polkadot/types/lookup' { readonly approvals: Vec; } - /** @name PalletMultisigError (379) */ + /** @name PalletMultisigError (384) */ interface PalletMultisigError extends Enum { readonly isMinimumThreshold: boolean; readonly isAlreadyApproved: boolean; @@ -5389,21 +5425,21 @@ declare module '@polkadot/types/lookup' { readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored'; } - /** @name PalletProxyProxyDefinition (382) */ + /** @name PalletProxyProxyDefinition (387) */ interface PalletProxyProxyDefinition extends Struct { readonly delegate: AccountId32; readonly proxyType: RuntimeCommonProxyType; readonly delay: u32; } - /** @name PalletProxyAnnouncement (386) */ + /** @name PalletProxyAnnouncement (391) */ interface PalletProxyAnnouncement extends Struct { readonly real: AccountId32; readonly callHash: H256; readonly height: u32; } - /** @name PalletProxyError (388) */ + /** @name PalletProxyError (393) */ interface PalletProxyError extends Enum { readonly isTooMany: boolean; readonly isNotFound: boolean; @@ -5416,14 +5452,14 @@ declare module '@polkadot/types/lookup' { readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy'; } - /** @name ModuleTransactionPauseModuleError (389) */ + /** @name ModuleTransactionPauseModuleError (394) */ interface ModuleTransactionPauseModuleError extends Enum { readonly isCannotPause: boolean; readonly isInvalidCharacter: boolean; readonly type: 'CannotPause' | 'InvalidCharacter'; } - /** @name PalletPreimageOldRequestStatus (390) */ + /** @name PalletPreimageOldRequestStatus (395) */ interface PalletPreimageOldRequestStatus extends Enum { readonly isUnrequested: boolean; readonly asUnrequested: { @@ -5439,7 +5475,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Unrequested' | 'Requested'; } - /** @name PalletPreimageRequestStatus (393) */ + /** @name PalletPreimageRequestStatus (398) */ interface PalletPreimageRequestStatus extends Enum { readonly isUnrequested: boolean; readonly asUnrequested: { @@ -5455,7 +5491,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Unrequested' | 'Requested'; } - /** @name PalletPreimageError (399) */ + /** @name PalletPreimageError (404) */ interface PalletPreimageError extends Enum { readonly isTooBig: boolean; readonly isAlreadyNoted: boolean; @@ -5468,14 +5504,14 @@ declare module '@polkadot/types/lookup' { readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested' | 'TooMany' | 'TooFew'; } - /** @name PalletBalancesBalanceLock (401) */ + /** @name PalletBalancesBalanceLock (406) */ interface PalletBalancesBalanceLock extends Struct { readonly id: U8aFixed; readonly amount: u128; readonly reasons: PalletBalancesReasons; } - /** @name PalletBalancesReasons (402) */ + /** @name PalletBalancesReasons (407) */ interface PalletBalancesReasons extends Enum { readonly isFee: boolean; readonly isMisc: boolean; @@ -5483,13 +5519,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'Fee' | 'Misc' | 'All'; } - /** @name PalletBalancesReserveData (405) */ + /** @name PalletBalancesReserveData (410) */ interface PalletBalancesReserveData extends Struct { readonly id: AcalaPrimitivesReserveIdentifier; readonly amount: u128; } - /** @name AcalaPrimitivesReserveIdentifier (406) */ + /** @name AcalaPrimitivesReserveIdentifier (411) */ interface AcalaPrimitivesReserveIdentifier extends Enum { readonly isCollatorSelection: boolean; readonly isEvmStorageDeposit: boolean; @@ -5502,26 +5538,26 @@ declare module '@polkadot/types/lookup' { readonly type: 'CollatorSelection' | 'EvmStorageDeposit' | 'EvmDeveloperDeposit' | 'Honzon' | 'Nft' | 'TransactionPayment' | 'TransactionPaymentDeposit' | 'Count'; } - /** @name AcalaRuntimeRuntimeHoldReason (410) */ + /** @name AcalaRuntimeRuntimeHoldReason (415) */ interface AcalaRuntimeRuntimeHoldReason extends Enum { readonly isPreimage: boolean; readonly asPreimage: PalletPreimageHoldReason; readonly type: 'Preimage'; } - /** @name PalletPreimageHoldReason (411) */ + /** @name PalletPreimageHoldReason (416) */ interface PalletPreimageHoldReason extends Enum { readonly isPreimage: boolean; readonly type: 'Preimage'; } - /** @name PalletBalancesIdAmount (414) */ + /** @name PalletBalancesIdAmount (419) */ interface PalletBalancesIdAmount extends Struct { readonly id: Null; readonly amount: u128; } - /** @name PalletBalancesError (416) */ + /** @name PalletBalancesError (421) */ interface PalletBalancesError extends Enum { readonly isVestingBalance: boolean; readonly isLiquidityRestrictions: boolean; @@ -5536,26 +5572,26 @@ declare module '@polkadot/types/lookup' { readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes'; } - /** @name OrmlTokensBalanceLock (419) */ + /** @name OrmlTokensBalanceLock (424) */ interface OrmlTokensBalanceLock extends Struct { readonly id: U8aFixed; readonly amount: u128; } - /** @name OrmlTokensAccountData (421) */ + /** @name OrmlTokensAccountData (426) */ interface OrmlTokensAccountData extends Struct { readonly free: u128; readonly reserved: u128; readonly frozen: u128; } - /** @name OrmlTokensReserveData (423) */ + /** @name OrmlTokensReserveData (428) */ interface OrmlTokensReserveData extends Struct { readonly id: AcalaPrimitivesReserveIdentifier; readonly amount: u128; } - /** @name OrmlTokensModuleError (425) */ + /** @name OrmlTokensModuleError (430) */ interface OrmlTokensModuleError extends Enum { readonly isBalanceTooLow: boolean; readonly isAmountIntoBalanceFailed: boolean; @@ -5568,7 +5604,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves'; } - /** @name ModuleCurrenciesModuleError (426) */ + /** @name ModuleCurrenciesModuleError (431) */ interface ModuleCurrenciesModuleError extends Enum { readonly isAmountIntoBalanceFailed: boolean; readonly isBalanceTooLow: boolean; @@ -5579,7 +5615,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'AmountIntoBalanceFailed' | 'BalanceTooLow' | 'Erc20InvalidOperation' | 'EvmAccountNotFound' | 'RealOriginNotFound' | 'DepositFailed'; } - /** @name OrmlVestingModuleError (428) */ + /** @name OrmlVestingModuleError (433) */ interface OrmlVestingModuleError extends Enum { readonly isZeroVestingPeriod: boolean; readonly isZeroVestingPeriodCount: boolean; @@ -5590,10 +5626,19 @@ declare module '@polkadot/types/lookup' { readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded'; } - /** @name FrameSupportPalletId (430) */ + /** @name ModuleTransactionPaymentModuleChargeFeeMethod (435) */ + interface ModuleTransactionPaymentModuleChargeFeeMethod extends Enum { + readonly isFeeCurrency: boolean; + readonly asFeeCurrency: AcalaPrimitivesCurrencyCurrencyId; + readonly isFeeAggregatedPath: boolean; + readonly asFeeAggregatedPath: Vec; + readonly type: 'FeeCurrency' | 'FeeAggregatedPath'; + } + + /** @name FrameSupportPalletId (436) */ interface FrameSupportPalletId extends U8aFixed {} - /** @name ModuleTransactionPaymentModuleError (432) */ + /** @name ModuleTransactionPaymentModuleError (438) */ interface ModuleTransactionPaymentModuleError extends Enum { readonly isInvalidSwapPath: boolean; readonly isInvalidBalance: boolean; @@ -5604,7 +5649,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'InvalidSwapPath' | 'InvalidBalance' | 'InvalidRate' | 'InvalidToken' | 'DexNotAvailable' | 'ChargeFeePoolAlreadyExisted'; } - /** @name PalletTreasuryProposal (433) */ + /** @name PalletTreasuryProposal (439) */ interface PalletTreasuryProposal extends Struct { readonly proposer: AccountId32; readonly value: u128; @@ -5612,7 +5657,7 @@ declare module '@polkadot/types/lookup' { readonly bond: u128; } - /** @name PalletTreasurySpendStatus (436) */ + /** @name PalletTreasurySpendStatus (442) */ interface PalletTreasurySpendStatus extends Struct { readonly assetKind: Null; readonly amount: u128; @@ -5622,7 +5667,7 @@ declare module '@polkadot/types/lookup' { readonly status: PalletTreasuryPaymentState; } - /** @name PalletTreasuryPaymentState (437) */ + /** @name PalletTreasuryPaymentState (443) */ interface PalletTreasuryPaymentState extends Enum { readonly isPending: boolean; readonly isAttempted: boolean; @@ -5633,7 +5678,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Pending' | 'Attempted' | 'Failed'; } - /** @name PalletTreasuryError (438) */ + /** @name PalletTreasuryError (444) */ interface PalletTreasuryError extends Enum { readonly isInsufficientProposersBalance: boolean; readonly isInvalidIndex: boolean; @@ -5650,7 +5695,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved' | 'FailedToConvertBalance' | 'SpendExpired' | 'EarlyPayout' | 'AlreadyAttempted' | 'PayoutError' | 'NotAttempted' | 'Inconclusive'; } - /** @name PalletBountiesBounty (439) */ + /** @name PalletBountiesBounty (445) */ interface PalletBountiesBounty extends Struct { readonly proposer: AccountId32; readonly value: u128; @@ -5660,7 +5705,7 @@ declare module '@polkadot/types/lookup' { readonly status: PalletBountiesBountyStatus; } - /** @name PalletBountiesBountyStatus (440) */ + /** @name PalletBountiesBountyStatus (446) */ interface PalletBountiesBountyStatus extends Enum { readonly isProposed: boolean; readonly isApproved: boolean; @@ -5683,7 +5728,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Proposed' | 'Approved' | 'Funded' | 'CuratorProposed' | 'Active' | 'PendingPayout'; } - /** @name PalletBountiesError (442) */ + /** @name PalletBountiesError (448) */ interface PalletBountiesError extends Enum { readonly isInsufficientProposersBalance: boolean; readonly isInvalidIndex: boolean; @@ -5699,7 +5744,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'ReasonTooBig' | 'UnexpectedStatus' | 'RequireCurator' | 'InvalidValue' | 'InvalidFee' | 'PendingPayout' | 'Premature' | 'HasActiveChildBounty' | 'TooManyQueued'; } - /** @name PalletTipsOpenTip (443) */ + /** @name PalletTipsOpenTip (449) */ interface PalletTipsOpenTip extends Struct { readonly reason: H256; readonly who: AccountId32; @@ -5710,7 +5755,7 @@ declare module '@polkadot/types/lookup' { readonly findersFee: bool; } - /** @name PalletTipsError (445) */ + /** @name PalletTipsError (451) */ interface PalletTipsError extends Enum { readonly isReasonTooBig: boolean; readonly isAlreadyKnown: boolean; @@ -5722,7 +5767,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ReasonTooBig' | 'AlreadyKnown' | 'UnknownTip' | 'MaxTipAmountExceeded' | 'NotFinder' | 'StillOpen' | 'Premature'; } - /** @name ModuleCollatorSelectionError (449) */ + /** @name ModuleCollatorSelectionError (455) */ interface ModuleCollatorSelectionError extends Enum { readonly isMaxCandidatesExceeded: boolean; readonly isBelowCandidatesMin: boolean; @@ -5740,10 +5785,10 @@ declare module '@polkadot/types/lookup' { readonly type: 'MaxCandidatesExceeded' | 'BelowCandidatesMin' | 'StillLocked' | 'Unknown' | 'Permission' | 'AlreadyCandidate' | 'NotCandidate' | 'NotNonCandidate' | 'NothingToWithdraw' | 'RequireSessionKey' | 'AlreadyInvulnerable' | 'InvalidProof' | 'MaxInvulnerablesExceeded'; } - /** @name SpCoreCryptoKeyTypeId (453) */ + /** @name SpCoreCryptoKeyTypeId (459) */ interface SpCoreCryptoKeyTypeId extends U8aFixed {} - /** @name PalletSessionError (454) */ + /** @name PalletSessionError (460) */ interface PalletSessionError extends Enum { readonly isInvalidProof: boolean; readonly isNoAssociatedValidatorId: boolean; @@ -5753,7 +5798,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount'; } - /** @name ModuleSessionManagerModuleError (459) */ + /** @name ModuleSessionManagerModuleError (465) */ interface ModuleSessionManagerModuleError extends Enum { readonly isInvalidSession: boolean; readonly isInvalidDuration: boolean; @@ -5761,29 +5806,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'InvalidSession' | 'InvalidDuration' | 'EstimateNextSessionFailed'; } - /** @name CumulusPalletXcmpQueueInboundChannelDetails (461) */ - interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct { - readonly sender: u32; - readonly state: CumulusPalletXcmpQueueInboundState; - readonly messageMetadata: Vec>; - } - - /** @name CumulusPalletXcmpQueueInboundState (462) */ - interface CumulusPalletXcmpQueueInboundState extends Enum { - readonly isOk: boolean; - readonly isSuspended: boolean; - readonly type: 'Ok' | 'Suspended'; - } - - /** @name PolkadotParachainPrimitivesPrimitivesXcmpMessageFormat (465) */ - interface PolkadotParachainPrimitivesPrimitivesXcmpMessageFormat extends Enum { - readonly isConcatenatedVersionedXcm: boolean; - readonly isConcatenatedEncodedBlob: boolean; - readonly isSignals: boolean; - readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals'; - } - - /** @name CumulusPalletXcmpQueueOutboundChannelDetails (468) */ + /** @name CumulusPalletXcmpQueueOutboundChannelDetails (470) */ interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct { readonly recipient: u32; readonly state: CumulusPalletXcmpQueueOutboundState; @@ -5792,34 +5815,29 @@ declare module '@polkadot/types/lookup' { readonly lastIndex: u16; } - /** @name CumulusPalletXcmpQueueOutboundState (469) */ + /** @name CumulusPalletXcmpQueueOutboundState (471) */ interface CumulusPalletXcmpQueueOutboundState extends Enum { readonly isOk: boolean; readonly isSuspended: boolean; readonly type: 'Ok' | 'Suspended'; } - /** @name CumulusPalletXcmpQueueQueueConfigData (471) */ + /** @name CumulusPalletXcmpQueueQueueConfigData (473) */ interface CumulusPalletXcmpQueueQueueConfigData extends Struct { readonly suspendThreshold: u32; readonly dropThreshold: u32; readonly resumeThreshold: u32; - readonly thresholdWeight: SpWeightsWeightV2Weight; - readonly weightRestrictDecay: SpWeightsWeightV2Weight; - readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight; } - /** @name CumulusPalletXcmpQueueError (473) */ + /** @name CumulusPalletXcmpQueueError (474) */ interface CumulusPalletXcmpQueueError extends Enum { - readonly isFailedToSend: boolean; - readonly isBadXcmOrigin: boolean; - readonly isBadXcm: boolean; - readonly isBadOverweightIndex: boolean; - readonly isWeightOverLimit: boolean; - readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit'; + readonly isBadQueueConfig: boolean; + readonly isAlreadySuspended: boolean; + readonly isAlreadyResumed: boolean; + readonly type: 'BadQueueConfig' | 'AlreadySuspended' | 'AlreadyResumed'; } - /** @name PalletXcmQueryStatus (474) */ + /** @name PalletXcmQueryStatus (475) */ interface PalletXcmQueryStatus extends Enum { readonly isPending: boolean; readonly asPending: { @@ -5841,7 +5859,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Pending' | 'VersionNotifier' | 'Ready'; } - /** @name XcmVersionedResponse (478) */ + /** @name XcmVersionedResponse (479) */ interface XcmVersionedResponse extends Enum { readonly isV2: boolean; readonly asV2: XcmV2Response; @@ -5850,7 +5868,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'V2' | 'V3'; } - /** @name PalletXcmVersionMigrationStage (484) */ + /** @name PalletXcmVersionMigrationStage (485) */ interface PalletXcmVersionMigrationStage extends Enum { readonly isMigrateSupportedVersion: boolean; readonly isMigrateVersionNotifiers: boolean; @@ -5860,14 +5878,14 @@ declare module '@polkadot/types/lookup' { readonly type: 'MigrateSupportedVersion' | 'MigrateVersionNotifiers' | 'NotifyCurrentTargets' | 'MigrateAndNotifyOldTargets'; } - /** @name XcmVersionedAssetId (487) */ + /** @name XcmVersionedAssetId (488) */ interface XcmVersionedAssetId extends Enum { readonly isV3: boolean; readonly asV3: XcmV3MultiassetAssetId; readonly type: 'V3'; } - /** @name PalletXcmRemoteLockedFungibleRecord (488) */ + /** @name PalletXcmRemoteLockedFungibleRecord (489) */ interface PalletXcmRemoteLockedFungibleRecord extends Struct { readonly amount: u128; readonly owner: XcmVersionedMultiLocation; @@ -5875,7 +5893,7 @@ declare module '@polkadot/types/lookup' { readonly consumers: Vec>; } - /** @name PalletXcmError (495) */ + /** @name PalletXcmError (496) */ interface PalletXcmError extends Enum { readonly isUnreachable: boolean; readonly isSendFailure: boolean; @@ -5890,39 +5908,43 @@ declare module '@polkadot/types/lookup' { readonly isBadLocation: boolean; readonly isNoSubscription: boolean; readonly isAlreadySubscribed: boolean; - readonly isInvalidAsset: boolean; + readonly isCannotCheckOutTeleport: boolean; readonly isLowBalance: boolean; readonly isTooManyLocks: boolean; readonly isAccountNotSovereign: boolean; readonly isFeesNotMet: boolean; readonly isLockNotFound: boolean; readonly isInUse: boolean; - readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed' | 'InvalidAsset' | 'LowBalance' | 'TooManyLocks' | 'AccountNotSovereign' | 'FeesNotMet' | 'LockNotFound' | 'InUse'; - } - - /** @name CumulusPalletXcmError (496) */ - type CumulusPalletXcmError = Null; - - /** @name CumulusPalletDmpQueueConfigData (497) */ - interface CumulusPalletDmpQueueConfigData extends Struct { - readonly maxIndividual: SpWeightsWeightV2Weight; - } - - /** @name CumulusPalletDmpQueuePageIndexData (498) */ - interface CumulusPalletDmpQueuePageIndexData extends Struct { - readonly beginUsed: u32; - readonly endUsed: u32; - readonly overweightCount: u64; + readonly isInvalidAssetNotConcrete: boolean; + readonly isInvalidAssetUnknownReserve: boolean; + readonly isInvalidAssetUnsupportedReserve: boolean; + readonly isTooManyReserves: boolean; + readonly isLocalExecutionIncomplete: boolean; + readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed' | 'CannotCheckOutTeleport' | 'LowBalance' | 'TooManyLocks' | 'AccountNotSovereign' | 'FeesNotMet' | 'LockNotFound' | 'InUse' | 'InvalidAssetNotConcrete' | 'InvalidAssetUnknownReserve' | 'InvalidAssetUnsupportedReserve' | 'TooManyReserves' | 'LocalExecutionIncomplete'; } - /** @name CumulusPalletDmpQueueError (501) */ - interface CumulusPalletDmpQueueError extends Enum { - readonly isUnknown: boolean; - readonly isOverLimit: boolean; - readonly type: 'Unknown' | 'OverLimit'; + /** @name CumulusPalletDmpQueueMigrationState (497) */ + interface CumulusPalletDmpQueueMigrationState extends Enum { + readonly isNotStarted: boolean; + readonly isStartedExport: boolean; + readonly asStartedExport: { + readonly nextBeginUsed: u32; + } & Struct; + readonly isCompletedExport: boolean; + readonly isStartedOverweightExport: boolean; + readonly asStartedOverweightExport: { + readonly nextOverweightIndex: u64; + } & Struct; + readonly isCompletedOverweightExport: boolean; + readonly isStartedCleanup: boolean; + readonly asStartedCleanup: { + readonly cursor: Option; + } & Struct; + readonly isCompleted: boolean; + readonly type: 'NotStarted' | 'StartedExport' | 'CompletedExport' | 'StartedOverweightExport' | 'CompletedOverweightExport' | 'StartedCleanup' | 'Completed'; } - /** @name OrmlXtokensModuleError (502) */ + /** @name OrmlXtokensModuleError (500) */ interface OrmlXtokensModuleError extends Enum { readonly isAssetHasNoReserve: boolean; readonly isNotCrossChainTransfer: boolean; @@ -5946,7 +5968,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined'; } - /** @name OrmlUnknownTokensModuleError (505) */ + /** @name OrmlUnknownTokensModuleError (503) */ interface OrmlUnknownTokensModuleError extends Enum { readonly isBalanceTooLow: boolean; readonly isBalanceOverflow: boolean; @@ -5954,7 +5976,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'BalanceTooLow' | 'BalanceOverflow' | 'UnhandledAsset'; } - /** @name OrmlXcmModuleError (506) */ + /** @name OrmlXcmModuleError (504) */ interface OrmlXcmModuleError extends Enum { readonly isUnreachable: boolean; readonly isSendFailure: boolean; @@ -5962,7 +5984,47 @@ declare module '@polkadot/types/lookup' { readonly type: 'Unreachable' | 'SendFailure' | 'BadVersion'; } - /** @name OrmlAuthorityModuleError (508) */ + /** @name PalletMessageQueueBookState (505) */ + interface PalletMessageQueueBookState extends Struct { + readonly begin: u32; + readonly end: u32; + readonly count: u32; + readonly readyNeighbours: Option; + readonly messageCount: u64; + readonly size_: u64; + } + + /** @name PalletMessageQueueNeighbours (507) */ + interface PalletMessageQueueNeighbours extends Struct { + readonly prev: CumulusPrimitivesCoreAggregateMessageOrigin; + readonly next: CumulusPrimitivesCoreAggregateMessageOrigin; + } + + /** @name PalletMessageQueuePage (509) */ + interface PalletMessageQueuePage extends Struct { + readonly remaining: u32; + readonly remainingSize: u32; + readonly firstIndex: u32; + readonly first: u32; + readonly last: u32; + readonly heap: Bytes; + } + + /** @name PalletMessageQueueError (511) */ + interface PalletMessageQueueError extends Enum { + readonly isNotReapable: boolean; + readonly isNoPage: boolean; + readonly isNoMessage: boolean; + readonly isAlreadyProcessed: boolean; + readonly isQueued: boolean; + readonly isInsufficientWeight: boolean; + readonly isTemporarilyUnprocessable: boolean; + readonly isQueuePaused: boolean; + readonly isRecursiveDisallowed: boolean; + readonly type: 'NotReapable' | 'NoPage' | 'NoMessage' | 'AlreadyProcessed' | 'Queued' | 'InsufficientWeight' | 'TemporarilyUnprocessable' | 'QueuePaused' | 'RecursiveDisallowed'; + } + + /** @name OrmlAuthorityModuleError (513) */ interface OrmlAuthorityModuleError extends Enum { readonly isFailedToSchedule: boolean; readonly isFailedToCancel: boolean; @@ -5974,7 +6036,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'FailedToSchedule' | 'FailedToCancel' | 'FailedToFastTrack' | 'FailedToDelay' | 'CallNotAuthorized' | 'TriggerCallNotPermitted' | 'WrongCallWeightBound'; } - /** @name PalletCollectiveVotes (510) */ + /** @name PalletCollectiveVotes (515) */ interface PalletCollectiveVotes extends Struct { readonly index: u32; readonly threshold: u32; @@ -5983,7 +6045,7 @@ declare module '@polkadot/types/lookup' { readonly end: u32; } - /** @name PalletCollectiveError (511) */ + /** @name PalletCollectiveError (516) */ interface PalletCollectiveError extends Enum { readonly isNotMember: boolean; readonly isDuplicateProposal: boolean; @@ -5999,7 +6061,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NotMember' | 'DuplicateProposal' | 'ProposalMissing' | 'WrongIndex' | 'DuplicateVote' | 'AlreadyInitialized' | 'TooEarly' | 'TooManyProposals' | 'WrongProposalWeight' | 'WrongProposalLength' | 'PrimeAccountNotMember'; } - /** @name PalletMembershipError (513) */ + /** @name PalletMembershipError (518) */ interface PalletMembershipError extends Enum { readonly isAlreadyMember: boolean; readonly isNotMember: boolean; @@ -6007,7 +6069,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'AlreadyMember' | 'NotMember' | 'TooManyMembers'; } - /** @name PalletDemocracyReferendumInfo (524) */ + /** @name PalletDemocracyReferendumInfo (529) */ interface PalletDemocracyReferendumInfo extends Enum { readonly isOngoing: boolean; readonly asOngoing: PalletDemocracyReferendumStatus; @@ -6019,7 +6081,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Ongoing' | 'Finished'; } - /** @name PalletDemocracyReferendumStatus (525) */ + /** @name PalletDemocracyReferendumStatus (530) */ interface PalletDemocracyReferendumStatus extends Struct { readonly end: u32; readonly proposal: FrameSupportPreimagesBounded; @@ -6028,14 +6090,14 @@ declare module '@polkadot/types/lookup' { readonly tally: PalletDemocracyTally; } - /** @name PalletDemocracyTally (526) */ + /** @name PalletDemocracyTally (531) */ interface PalletDemocracyTally extends Struct { readonly ayes: u128; readonly nays: u128; readonly turnout: u128; } - /** @name PalletDemocracyVoteVoting (527) */ + /** @name PalletDemocracyVoteVoting (532) */ interface PalletDemocracyVoteVoting extends Enum { readonly isDirect: boolean; readonly asDirect: { @@ -6054,16 +6116,16 @@ declare module '@polkadot/types/lookup' { readonly type: 'Direct' | 'Delegating'; } - /** @name PalletDemocracyDelegations (531) */ + /** @name PalletDemocracyDelegations (536) */ interface PalletDemocracyDelegations extends Struct { readonly votes: u128; readonly capital: u128; } - /** @name PalletDemocracyVotePriorLock (532) */ + /** @name PalletDemocracyVotePriorLock (537) */ interface PalletDemocracyVotePriorLock extends ITuple<[u32, u128]> {} - /** @name PalletDemocracyError (535) */ + /** @name PalletDemocracyError (540) */ interface PalletDemocracyError extends Enum { readonly isValueLow: boolean; readonly isProposalMissing: boolean; @@ -6092,30 +6154,30 @@ declare module '@polkadot/types/lookup' { readonly type: 'ValueLow' | 'ProposalMissing' | 'AlreadyCanceled' | 'DuplicateProposal' | 'ProposalBlacklisted' | 'NotSimpleMajority' | 'InvalidHash' | 'NoProposal' | 'AlreadyVetoed' | 'ReferendumInvalid' | 'NoneWaiting' | 'NotVoter' | 'NoPermission' | 'AlreadyDelegating' | 'InsufficientFunds' | 'NotDelegating' | 'VotesExist' | 'InstantNotAllowed' | 'Nonsense' | 'WrongUpperBound' | 'MaxVotesReached' | 'TooMany' | 'VotingPeriodLow' | 'PreimageNotExist'; } - /** @name OrmlOracleModuleTimestampedValue (536) */ + /** @name OrmlOracleModuleTimestampedValue (541) */ interface OrmlOracleModuleTimestampedValue extends Struct { readonly value: u128; readonly timestamp: u64; } - /** @name OrmlUtilitiesOrderedSet (537) */ + /** @name OrmlUtilitiesOrderedSet (542) */ interface OrmlUtilitiesOrderedSet extends Vec {} - /** @name OrmlOracleModuleError (539) */ + /** @name OrmlOracleModuleError (544) */ interface OrmlOracleModuleError extends Enum { readonly isNoPermission: boolean; readonly isAlreadyFeeded: boolean; readonly type: 'NoPermission' | 'AlreadyFeeded'; } - /** @name OrmlTraitsAuctionAuctionInfo (542) */ + /** @name OrmlTraitsAuctionAuctionInfo (547) */ interface OrmlTraitsAuctionAuctionInfo extends Struct { readonly bid: Option>; readonly start: u32; readonly end: Option; } - /** @name OrmlAuctionModuleError (543) */ + /** @name OrmlAuctionModuleError (548) */ interface OrmlAuctionModuleError extends Enum { readonly isAuctionNotExist: boolean; readonly isAuctionNotStarted: boolean; @@ -6125,13 +6187,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'AuctionNotExist' | 'AuctionNotStarted' | 'BidNotAccepted' | 'InvalidBidPrice' | 'NoAvailableAuctionId'; } - /** @name OrmlRewardsPoolInfo (544) */ + /** @name OrmlRewardsPoolInfo (549) */ interface OrmlRewardsPoolInfo extends Struct { readonly totalShares: u128; readonly rewards: BTreeMap>; } - /** @name OrmlRewardsModuleError (552) */ + /** @name OrmlRewardsModuleError (557) */ interface OrmlRewardsModuleError extends Enum { readonly isPoolDoesNotExist: boolean; readonly isShareDoesNotExist: boolean; @@ -6139,7 +6201,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'PoolDoesNotExist' | 'ShareDoesNotExist' | 'CanSplitOnlyLessThanShare'; } - /** @name OrmlNftClassInfo (553) */ + /** @name OrmlNftClassInfo (558) */ interface OrmlNftClassInfo extends Struct { readonly metadata: Bytes; readonly totalIssuance: u64; @@ -6147,27 +6209,27 @@ declare module '@polkadot/types/lookup' { readonly data: ModuleNftClassData; } - /** @name ModuleNftClassData (554) */ + /** @name ModuleNftClassData (559) */ interface ModuleNftClassData extends Struct { readonly deposit: u128; readonly properties: u8; readonly attributes: BTreeMap; } - /** @name OrmlNftTokenInfo (556) */ + /** @name OrmlNftTokenInfo (560) */ interface OrmlNftTokenInfo extends Struct { readonly metadata: Bytes; readonly owner: AccountId32; readonly data: ModuleNftTokenData; } - /** @name ModuleNftTokenData (557) */ + /** @name ModuleNftTokenData (561) */ interface ModuleNftTokenData extends Struct { readonly deposit: u128; readonly attributes: BTreeMap; } - /** @name OrmlNftModuleError (559) */ + /** @name OrmlNftModuleError (563) */ interface OrmlNftModuleError extends Enum { readonly isNoAvailableClassId: boolean; readonly isNoAvailableTokenId: boolean; @@ -6179,44 +6241,44 @@ declare module '@polkadot/types/lookup' { readonly type: 'NoAvailableClassId' | 'NoAvailableTokenId' | 'TokenNotFound' | 'ClassNotFound' | 'NoPermission' | 'CannotDestroyClass' | 'MaxMetadataExceeded'; } - /** @name AcalaRuntimeRuntimeParametersKey (560) */ + /** @name AcalaRuntimeRuntimeParametersKey (564) */ interface AcalaRuntimeRuntimeParametersKey extends Enum { readonly isEarning: boolean; readonly asEarning: ModuleEarningParametersKey; readonly type: 'Earning'; } - /** @name ModuleEarningParametersKey (561) */ + /** @name ModuleEarningParametersKey (565) */ interface ModuleEarningParametersKey extends Enum { readonly isInstantUnstakeFee: boolean; readonly type: 'InstantUnstakeFee'; } - /** @name AcalaRuntimeRuntimeParametersValue (562) */ + /** @name AcalaRuntimeRuntimeParametersValue (566) */ interface AcalaRuntimeRuntimeParametersValue extends Enum { readonly isEarning: boolean; readonly asEarning: ModuleEarningParametersValue; readonly type: 'Earning'; } - /** @name ModuleEarningParametersValue (563) */ + /** @name ModuleEarningParametersValue (567) */ interface ModuleEarningParametersValue extends Enum { readonly isInstantUnstakeFee: boolean; readonly asInstantUnstakeFee: Permill; readonly type: 'InstantUnstakeFee'; } - /** @name OrmlParametersModuleError (564) */ + /** @name OrmlParametersModuleError (568) */ type OrmlParametersModuleError = Null; - /** @name ModulePricesModuleError (565) */ + /** @name ModulePricesModuleError (569) */ interface ModulePricesModuleError extends Enum { readonly isAccessPriceFailed: boolean; readonly isNoLockedPrice: boolean; readonly type: 'AccessPriceFailed' | 'NoLockedPrice'; } - /** @name ModuleDexTradingPairStatus (566) */ + /** @name ModuleDexTradingPairStatus (570) */ interface ModuleDexTradingPairStatus extends Enum { readonly isDisabled: boolean; readonly isProvisioning: boolean; @@ -6225,7 +6287,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Disabled' | 'Provisioning' | 'Enabled'; } - /** @name ModuleDexProvisioningParameters (567) */ + /** @name ModuleDexProvisioningParameters (571) */ interface ModuleDexProvisioningParameters extends Struct { readonly minContribution: ITuple<[u128, u128]>; readonly targetProvision: ITuple<[u128, u128]>; @@ -6233,7 +6295,7 @@ declare module '@polkadot/types/lookup' { readonly notBefore: u32; } - /** @name ModuleDexModuleError (570) */ + /** @name ModuleDexModuleError (574) */ interface ModuleDexModuleError extends Enum { readonly isAlreadyEnabled: boolean; readonly isMustBeEnabled: boolean; @@ -6261,7 +6323,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'AlreadyEnabled' | 'MustBeEnabled' | 'MustBeProvisioning' | 'MustBeDisabled' | 'NotAllowedList' | 'InvalidContributionIncrement' | 'InvalidLiquidityIncrement' | 'InvalidCurrencyId' | 'InvalidTradingPathLength' | 'InsufficientTargetAmount' | 'ExcessiveSupplyAmount' | 'InsufficientLiquidity' | 'ZeroSupplyAmount' | 'ZeroTargetAmount' | 'UnacceptableShareIncrement' | 'UnacceptableLiquidityWithdrawn' | 'InvariantCheckFailed' | 'UnqualifiedProvision' | 'StillProvisioning' | 'AssetUnregistered' | 'InvalidTradingPath' | 'NotAllowedRefund' | 'CannotSwap'; } - /** @name ModuleDexOracleModuleError (575) */ + /** @name ModuleDexOracleModuleError (579) */ interface ModuleDexOracleModuleError extends Enum { readonly isAveragePriceAlreadyEnabled: boolean; readonly isAveragePriceMustBeEnabled: boolean; @@ -6271,7 +6333,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'AveragePriceAlreadyEnabled' | 'AveragePriceMustBeEnabled' | 'InvalidPool' | 'InvalidCurrencyId' | 'IntervalIsZero'; } - /** @name ModuleAggregatedDexModuleError (578) */ + /** @name ModuleAggregatedDexModuleError (582) */ interface ModuleAggregatedDexModuleError extends Enum { readonly isCannotSwap: boolean; readonly isInvalidPoolId: boolean; @@ -6280,20 +6342,20 @@ declare module '@polkadot/types/lookup' { readonly type: 'CannotSwap' | 'InvalidPoolId' | 'InvalidTokenIndex' | 'InvalidSwapPath'; } - /** @name AcalaPrimitivesBondingLedgerBondingLedger (579) */ + /** @name AcalaPrimitivesBondingLedgerBondingLedger (583) */ interface AcalaPrimitivesBondingLedgerBondingLedger extends Struct { readonly total: u128; readonly active: u128; readonly unlocking: Vec; } - /** @name AcalaPrimitivesBondingLedgerUnlockChunk (581) */ + /** @name AcalaPrimitivesBondingLedgerUnlockChunk (585) */ interface AcalaPrimitivesBondingLedgerUnlockChunk extends Struct { readonly value: u128; readonly unlockAt: u32; } - /** @name ModuleEarningModuleError (583) */ + /** @name ModuleEarningModuleError (587) */ interface ModuleEarningModuleError extends Enum { readonly isBelowMinBondThreshold: boolean; readonly isMaxUnlockChunksExceeded: boolean; @@ -6302,7 +6364,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'BelowMinBondThreshold' | 'MaxUnlockChunksExceeded' | 'NotBonded' | 'NotAllowed'; } - /** @name ModuleAuctionManagerCollateralAuctionItem (584) */ + /** @name ModuleAuctionManagerCollateralAuctionItem (588) */ interface ModuleAuctionManagerCollateralAuctionItem extends Struct { readonly refundRecipient: AccountId32; readonly currencyId: AcalaPrimitivesCurrencyCurrencyId; @@ -6312,7 +6374,7 @@ declare module '@polkadot/types/lookup' { readonly startTime: u32; } - /** @name ModuleAuctionManagerModuleError (585) */ + /** @name ModuleAuctionManagerModuleError (589) */ interface ModuleAuctionManagerModuleError extends Enum { readonly isAuctionNotExists: boolean; readonly isInReverseStage: boolean; @@ -6323,19 +6385,19 @@ declare module '@polkadot/types/lookup' { readonly type: 'AuctionNotExists' | 'InReverseStage' | 'InvalidFeedPrice' | 'MustAfterShutdown' | 'InvalidBidPrice' | 'InvalidAmount'; } - /** @name AcalaPrimitivesPosition (587) */ + /** @name AcalaPrimitivesPosition (591) */ interface AcalaPrimitivesPosition extends Struct { readonly collateral: u128; readonly debit: u128; } - /** @name ModuleLoansModuleError (588) */ + /** @name ModuleLoansModuleError (592) */ interface ModuleLoansModuleError extends Enum { readonly isAmountConvertFailed: boolean; readonly type: 'AmountConvertFailed'; } - /** @name ModuleHonzonModuleError (590) */ + /** @name ModuleHonzonModuleError (594) */ interface ModuleHonzonModuleError extends Enum { readonly isNoPermission: boolean; readonly isAlreadyShutdown: boolean; @@ -6344,7 +6406,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NoPermission' | 'AlreadyShutdown' | 'AuthorizationNotExists' | 'AlreadyAuthorized'; } - /** @name ModuleCdpTreasuryModuleError (591) */ + /** @name ModuleCdpTreasuryModuleError (595) */ interface ModuleCdpTreasuryModuleError extends Enum { readonly isCollateralNotEnough: boolean; readonly isSurplusPoolNotEnough: boolean; @@ -6354,7 +6416,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'CollateralNotEnough' | 'SurplusPoolNotEnough' | 'DebitPoolNotEnough' | 'CannotSwap' | 'NotDexShare'; } - /** @name ModuleCdpEngineRiskManagementParams (592) */ + /** @name ModuleCdpEngineRiskManagementParams (596) */ interface ModuleCdpEngineRiskManagementParams extends Struct { readonly maximumTotalDebitValue: u128; readonly interestRatePerSec: Option; @@ -6363,7 +6425,7 @@ declare module '@polkadot/types/lookup' { readonly requiredCollateralRatio: Option; } - /** @name ModuleCdpEngineModuleError (597) */ + /** @name ModuleCdpEngineModuleError (601) */ interface ModuleCdpEngineModuleError extends Enum { readonly isExceedDebitValueHardCap: boolean; readonly isBelowRequiredCollateralRatio: boolean; @@ -6387,7 +6449,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ExceedDebitValueHardCap' | 'BelowRequiredCollateralRatio' | 'BelowLiquidationRatio' | 'MustBeUnsafe' | 'MustBeSafe' | 'InvalidCollateralType' | 'RemainDebitValueTooSmall' | 'CollateralAmountBelowMinimum' | 'InvalidFeedPrice' | 'NoDebitValue' | 'AlreadyShutdown' | 'MustAfterShutdown' | 'CollateralNotEnough' | 'NotEnoughDebitDecrement' | 'ConvertDebitBalanceFailed' | 'LiquidationFailed' | 'TooManyLiquidationContracts' | 'CollateralContractNotFound' | 'InvalidRate'; } - /** @name ModuleEmergencyShutdownModuleError (598) */ + /** @name ModuleEmergencyShutdownModuleError (602) */ interface ModuleEmergencyShutdownModuleError extends Enum { readonly isAlreadyShutdown: boolean; readonly isMustAfterShutdown: boolean; @@ -6397,13 +6459,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'AlreadyShutdown' | 'MustAfterShutdown' | 'CanNotRefund' | 'ExistPotentialSurplus' | 'ExistUnhandledDebit'; } - /** @name ModuleHomaModuleStakingLedger (599) */ + /** @name ModuleHomaModuleStakingLedger (603) */ interface ModuleHomaModuleStakingLedger extends Struct { readonly bonded: Compact; readonly unlocking: Vec; } - /** @name ModuleHomaModuleError (603) */ + /** @name ModuleHomaModuleError (607) */ interface ModuleHomaModuleError extends Enum { readonly isBelowMintThreshold: boolean; readonly isBelowRedeemThreshold: boolean; @@ -6417,13 +6479,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'BelowMintThreshold' | 'BelowRedeemThreshold' | 'ExceededStakingCurrencySoftCap' | 'InsufficientUnclaimedRedemption' | 'OutdatedEraIndex' | 'FastMatchIsNotAllowed' | 'CannotCompletelyFastMatch' | 'InvalidRate' | 'InvalidLastEraBumpedBlock'; } - /** @name ModuleXcmInterfaceModuleError (605) */ + /** @name ModuleXcmInterfaceModuleError (609) */ interface ModuleXcmInterfaceModuleError extends Enum { readonly isXcmFailed: boolean; readonly type: 'XcmFailed'; } - /** @name ModuleIncentivesModuleError (607) */ + /** @name ModuleIncentivesModuleError (611) */ interface ModuleIncentivesModuleError extends Enum { readonly isNotEnough: boolean; readonly isInvalidCurrencyId: boolean; @@ -6432,7 +6494,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NotEnough' | 'InvalidCurrencyId' | 'InvalidPoolId' | 'InvalidRate'; } - /** @name ModuleNftModuleError (608) */ + /** @name ModuleNftModuleError (612) */ interface ModuleNftModuleError extends Enum { readonly isClassIdNotFound: boolean; readonly isTokenIdNotFound: boolean; @@ -6448,7 +6510,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ClassIdNotFound' | 'TokenIdNotFound' | 'NoPermission' | 'InvalidQuantity' | 'NonTransferable' | 'NonBurnable' | 'NonMintable' | 'CannotDestroyClass' | 'Immutable' | 'AttributesTooLarge' | 'IncorrectTokenId'; } - /** @name ModuleAssetRegistryModuleError (609) */ + /** @name ModuleAssetRegistryModuleError (613) */ interface ModuleAssetRegistryModuleError extends Enum { readonly isBadLocation: boolean; readonly isMultiLocationExisted: boolean; @@ -6457,26 +6519,26 @@ declare module '@polkadot/types/lookup' { readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted'; } - /** @name ModuleEvmModuleAccountInfo (610) */ + /** @name ModuleEvmModuleAccountInfo (614) */ interface ModuleEvmModuleAccountInfo extends Struct { readonly nonce: u32; readonly contractInfo: Option; } - /** @name ModuleEvmModuleContractInfo (612) */ + /** @name ModuleEvmModuleContractInfo (616) */ interface ModuleEvmModuleContractInfo extends Struct { readonly codeHash: H256; readonly maintainer: H160; readonly published: bool; } - /** @name ModuleEvmModuleCodeInfo (615) */ + /** @name ModuleEvmModuleCodeInfo (619) */ interface ModuleEvmModuleCodeInfo extends Struct { readonly codeSize: u32; readonly refCount: u32; } - /** @name ModuleEvmModuleError (616) */ + /** @name ModuleEvmModuleError (620) */ interface ModuleEvmModuleError extends Enum { readonly isAddressNotMapped: boolean; readonly isContractNotFound: boolean; @@ -6498,7 +6560,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'AddressNotMapped' | 'ContractNotFound' | 'NoPermission' | 'ContractDevelopmentNotEnabled' | 'ContractDevelopmentAlreadyEnabled' | 'ContractAlreadyPublished' | 'ContractExceedsMaxCodeSize' | 'ContractAlreadyExisted' | 'OutOfStorage' | 'ChargeFeeFailed' | 'CannotKillContract' | 'ReserveStorageFailed' | 'UnreserveStorageFailed' | 'ChargeStorageFailed' | 'InvalidDecimals' | 'StrictCallFailed' | 'NotEOA'; } - /** @name ModuleEvmBridgeModuleError (617) */ + /** @name ModuleEvmBridgeModuleError (621) */ interface ModuleEvmBridgeModuleError extends Enum { readonly isExecutionFail: boolean; readonly isExecutionRevert: boolean; @@ -6508,7 +6570,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ExecutionFail' | 'ExecutionRevert' | 'ExecutionFatal' | 'ExecutionError' | 'InvalidReturnValue'; } - /** @name ModuleEvmAccountsModuleError (618) */ + /** @name ModuleEvmAccountsModuleError (622) */ interface ModuleEvmAccountsModuleError extends Enum { readonly isAccountIdHasMapped: boolean; readonly isEthAddressHasMapped: boolean; @@ -6518,7 +6580,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'AccountIdHasMapped' | 'EthAddressHasMapped' | 'BadSignature' | 'InvalidSignature' | 'NonZeroRefCount'; } - /** @name NutsfinanceStableAssetStableAssetPoolInfo (619) */ + /** @name NutsfinanceStableAssetStableAssetPoolInfo (623) */ interface NutsfinanceStableAssetStableAssetPoolInfo extends Struct { readonly poolAsset: AcalaPrimitivesCurrencyCurrencyId; readonly assets: Vec; @@ -6538,7 +6600,7 @@ declare module '@polkadot/types/lookup' { readonly precision: u128; } - /** @name NutsfinanceStableAssetError (620) */ + /** @name NutsfinanceStableAssetError (624) */ interface NutsfinanceStableAssetError extends Enum { readonly isInconsistentStorage: boolean; readonly isInvalidPoolAsset: boolean; @@ -6554,47 +6616,47 @@ declare module '@polkadot/types/lookup' { readonly type: 'InconsistentStorage' | 'InvalidPoolAsset' | 'ArgumentsMismatch' | 'ArgumentsError' | 'PoolNotFound' | 'Math' | 'InvalidPoolValue' | 'MintUnderMin' | 'SwapUnderMin' | 'RedeemUnderMin' | 'RedeemOverMax'; } - /** @name CumulusPalletParachainSystemUnincludedSegmentAncestor (622) */ + /** @name CumulusPalletParachainSystemUnincludedSegmentAncestor (626) */ interface CumulusPalletParachainSystemUnincludedSegmentAncestor extends Struct { readonly usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth; readonly paraHeadHash: Option; readonly consumedGoAheadSignal: Option; } - /** @name CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth (623) */ + /** @name CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth (627) */ interface CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth extends Struct { readonly umpMsgCount: u32; readonly umpTotalBytes: u32; readonly hrmpOutgoing: BTreeMap; } - /** @name CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate (625) */ + /** @name CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate (629) */ interface CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate extends Struct { readonly msgCount: u32; readonly totalBytes: u32; } - /** @name PolkadotPrimitivesV6UpgradeGoAhead (629) */ + /** @name PolkadotPrimitivesV6UpgradeGoAhead (633) */ interface PolkadotPrimitivesV6UpgradeGoAhead extends Enum { readonly isAbort: boolean; readonly isGoAhead: boolean; readonly type: 'Abort' | 'GoAhead'; } - /** @name CumulusPalletParachainSystemUnincludedSegmentSegmentTracker (630) */ + /** @name CumulusPalletParachainSystemUnincludedSegmentSegmentTracker (634) */ interface CumulusPalletParachainSystemUnincludedSegmentSegmentTracker extends Struct { readonly usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth; readonly hrmpWatermark: Option; readonly consumedGoAheadSignal: Option; } - /** @name PolkadotPrimitivesV6UpgradeRestriction (632) */ + /** @name PolkadotPrimitivesV6UpgradeRestriction (636) */ interface PolkadotPrimitivesV6UpgradeRestriction extends Enum { readonly isPresent: boolean; readonly type: 'Present'; } - /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (633) */ + /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (637) */ interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct { readonly dmqMqcHead: H256; readonly relayDispatchQueueRemainingCapacity: CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity; @@ -6602,13 +6664,13 @@ declare module '@polkadot/types/lookup' { readonly egressChannels: Vec>; } - /** @name CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity (634) */ + /** @name CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity (638) */ interface CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity extends Struct { readonly remainingCount: u32; readonly remainingSize: u32; } - /** @name PolkadotPrimitivesV6AbridgedHrmpChannel (637) */ + /** @name PolkadotPrimitivesV6AbridgedHrmpChannel (641) */ interface PolkadotPrimitivesV6AbridgedHrmpChannel extends Struct { readonly maxCapacity: u32; readonly maxTotalSize: u32; @@ -6618,7 +6680,7 @@ declare module '@polkadot/types/lookup' { readonly mqcHead: Option; } - /** @name PolkadotPrimitivesV6AbridgedHostConfiguration (638) */ + /** @name PolkadotPrimitivesV6AbridgedHostConfiguration (642) */ interface PolkadotPrimitivesV6AbridgedHostConfiguration extends Struct { readonly maxCodeSize: u32; readonly maxHeadDataSize: u32; @@ -6632,25 +6694,19 @@ declare module '@polkadot/types/lookup' { readonly asyncBackingParams: PolkadotPrimitivesV6AsyncBackingAsyncBackingParams; } - /** @name PolkadotPrimitivesV6AsyncBackingAsyncBackingParams (639) */ + /** @name PolkadotPrimitivesV6AsyncBackingAsyncBackingParams (643) */ interface PolkadotPrimitivesV6AsyncBackingAsyncBackingParams extends Struct { readonly maxCandidateDepth: u32; readonly allowedAncestryLen: u32; } - /** @name PolkadotCorePrimitivesOutboundHrmpMessage (645) */ + /** @name PolkadotCorePrimitivesOutboundHrmpMessage (649) */ interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct { readonly recipient: u32; readonly data: Bytes; } - /** @name CumulusPalletParachainSystemCodeUpgradeAuthorization (646) */ - interface CumulusPalletParachainSystemCodeUpgradeAuthorization extends Struct { - readonly codeHash: H256; - readonly checkVersion: bool; - } - - /** @name CumulusPalletParachainSystemError (647) */ + /** @name CumulusPalletParachainSystemError (650) */ interface CumulusPalletParachainSystemError extends Enum { readonly isOverlappingUpgrades: boolean; readonly isProhibitedByPolkadot: boolean; @@ -6663,45 +6719,45 @@ declare module '@polkadot/types/lookup' { readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized'; } - /** @name PalletSudoError (648) */ + /** @name PalletSudoError (651) */ interface PalletSudoError extends Enum { readonly isRequireSudo: boolean; readonly type: 'RequireSudo'; } - /** @name FrameSystemExtensionsCheckNonZeroSender (651) */ + /** @name FrameSystemExtensionsCheckNonZeroSender (654) */ type FrameSystemExtensionsCheckNonZeroSender = Null; - /** @name FrameSystemExtensionsCheckSpecVersion (652) */ + /** @name FrameSystemExtensionsCheckSpecVersion (655) */ type FrameSystemExtensionsCheckSpecVersion = Null; - /** @name FrameSystemExtensionsCheckTxVersion (653) */ + /** @name FrameSystemExtensionsCheckTxVersion (656) */ type FrameSystemExtensionsCheckTxVersion = Null; - /** @name FrameSystemExtensionsCheckGenesis (654) */ + /** @name FrameSystemExtensionsCheckGenesis (657) */ type FrameSystemExtensionsCheckGenesis = Null; - /** @name RuntimeCommonCheckNonce (657) */ + /** @name RuntimeCommonCheckNonce (660) */ interface RuntimeCommonCheckNonce extends Struct { readonly nonce: Compact; } - /** @name FrameSystemExtensionsCheckWeight (658) */ + /** @name FrameSystemExtensionsCheckWeight (661) */ type FrameSystemExtensionsCheckWeight = Null; - /** @name ModuleEvmSetEvmOrigin (659) */ + /** @name ModuleEvmSetEvmOrigin (662) */ type ModuleEvmSetEvmOrigin = Null; - /** @name ModuleTransactionPaymentChargeTransactionPayment (660) */ + /** @name ModuleTransactionPaymentChargeTransactionPayment (663) */ interface ModuleTransactionPaymentChargeTransactionPayment extends Compact {} - /** @name AcalaRuntimeStorageDepositPerByte (661) */ + /** @name AcalaRuntimeStorageDepositPerByte (664) */ type AcalaRuntimeStorageDepositPerByte = Null; - /** @name AcalaRuntimeTxFeePerGas (662) */ + /** @name AcalaRuntimeTxFeePerGas (665) */ type AcalaRuntimeTxFeePerGas = Null; - /** @name AcalaPrimitivesSignatureAcalaMultiSignature (664) */ + /** @name AcalaPrimitivesSignatureAcalaMultiSignature (667) */ interface AcalaPrimitivesSignatureAcalaMultiSignature extends Enum { readonly isEd25519: boolean; readonly asEd25519: SpCoreEd25519Signature; @@ -6715,16 +6771,18 @@ declare module '@polkadot/types/lookup' { readonly asEip1559: U8aFixed; readonly isAcalaEip712: boolean; readonly asAcalaEip712: U8aFixed; - readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Ethereum' | 'Eip1559' | 'AcalaEip712'; + readonly isEip2930: boolean; + readonly asEip2930: U8aFixed; + readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Ethereum' | 'Eip1559' | 'AcalaEip712' | 'Eip2930'; } - /** @name SpCoreEd25519Signature (665) */ + /** @name SpCoreEd25519Signature (668) */ interface SpCoreEd25519Signature extends U8aFixed {} - /** @name SpCoreSr25519Signature (667) */ + /** @name SpCoreSr25519Signature (670) */ interface SpCoreSr25519Signature extends U8aFixed {} - /** @name SpCoreEcdsaSignature (668) */ + /** @name SpCoreEcdsaSignature (671) */ interface SpCoreEcdsaSignature extends U8aFixed {} } // declare module