diff --git a/packages/types/src/interfaces/augment-api-consts.ts b/packages/types/src/interfaces/augment-api-consts.ts index 8f2d7ab..4ac72da 100644 --- a/packages/types/src/interfaces/augment-api-consts.ts +++ b/packages/types/src/interfaces/augment-api-consts.ts @@ -6,10 +6,10 @@ import '@polkadot/api-base/types/consts'; import type { ApiTypes, AugmentedConst } from '@polkadot/api-base/types'; -import type { Option, U8aFixed, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec'; +import type { Null, Option, U8aFixed, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec'; import type { Codec, ITuple } from '@polkadot/types-codec/types'; import type { AccountId32, H160, Percent, Permill } from '@polkadot/types/interfaces/runtime'; -import type { AcalaPrimitivesCurrencyCurrencyId, FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, StagingXcmV3MultiLocation } from '@polkadot/types/lookup'; +import type { AcalaPrimitivesCurrencyCurrencyId, FrameSupportPalletId, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, StagingXcmV4Location } from '@polkadot/types/lookup'; export type __AugmentedConst = AugmentedConst; @@ -53,7 +53,6 @@ declare module '@polkadot/api-base/types/consts' { balances: { existentialDeposit: u128 & AugmentedConst; maxFreezes: u32 & AugmentedConst; - maxHolds: u32 & AugmentedConst; maxLocks: u32 & AugmentedConst; maxReserves: u32 & AugmentedConst; /** @@ -288,6 +287,13 @@ declare module '@polkadot/api-base/types/consts' { **/ [key: string]: Codec; }; + parachainSystem: { + selfParaId: u32 & AugmentedConst; + /** + * Generic const + **/ + [key: string]: Codec; + }; prices: { getLiquidCurrencyId: AcalaPrimitivesCurrencyCurrencyId & AugmentedConst; getStableCurrencyId: AcalaPrimitivesCurrencyCurrencyId & AugmentedConst; @@ -425,7 +431,7 @@ declare module '@polkadot/api-base/types/consts' { xcmInterface: { parachainAccount: AccountId32 & AugmentedConst; relayChainUnbondingSlashingSpans: u32 & AugmentedConst; - selfLocation: StagingXcmV3MultiLocation & AugmentedConst; + selfLocation: StagingXcmV4Location & AugmentedConst; stakingCurrencyId: AcalaPrimitivesCurrencyCurrencyId & AugmentedConst; /** * Generic const @@ -441,7 +447,8 @@ declare module '@polkadot/api-base/types/consts' { }; xTokens: { baseXcmWeight: SpWeightsWeightV2Weight & AugmentedConst; - selfLocation: StagingXcmV3MultiLocation & AugmentedConst; + rateLimiterId: Null & AugmentedConst; + selfLocation: StagingXcmV4Location & AugmentedConst; /** * Generic const **/ diff --git a/packages/types/src/interfaces/augment-api-errors.ts b/packages/types/src/interfaces/augment-api-errors.ts index e679dbc..96181e1 100644 --- a/packages/types/src/interfaces/augment-api-errors.ts +++ b/packages/types/src/interfaces/augment-api-errors.ts @@ -33,7 +33,7 @@ declare module '@polkadot/api-base/types/errors' { AssetIdExisted: AugmentedError; AssetIdNotExists: AugmentedError; BadLocation: AugmentedError; - MultiLocationExisted: AugmentedError; + LocationExisted: AugmentedError; /** * Generic error **/ @@ -77,10 +77,12 @@ declare module '@polkadot/api-base/types/errors' { }; balances: { DeadAccount: AugmentedError; + DeltaZero: AugmentedError; ExistentialDeposit: AugmentedError; ExistingVestingSchedule: AugmentedError; Expendability: AugmentedError; InsufficientBalance: AugmentedError; + IssuanceDeactivated: AugmentedError; LiquidityRestrictions: AugmentedError; TooManyFreezes: AugmentedError; TooManyHolds: AugmentedError; @@ -604,6 +606,7 @@ declare module '@polkadot/api-base/types/errors' { rewards: { CanSplitOnlyLessThanShare: AugmentedError; PoolDoesNotExist: AugmentedError; + ShareBelowMinimal: AugmentedError; ShareDoesNotExist: AugmentedError; /** * Generic error @@ -669,6 +672,7 @@ declare module '@polkadot/api-base/types/errors' { CallFiltered: AugmentedError; FailedToExtractRuntimeVersion: AugmentedError; InvalidSpecName: AugmentedError; + MultiBlockMigrationsOngoing: AugmentedError; NonDefaultComposite: AugmentedError; NonZeroRefCount: AugmentedError; NothingAuthorized: AugmentedError; @@ -828,7 +832,8 @@ declare module '@polkadot/api-base/types/errors' { MinXcmFeeNotDefined: AugmentedError; NotCrossChainTransfer: AugmentedError; NotCrossChainTransferableCurrency: AugmentedError; - NotSupportedMultiLocation: AugmentedError; + NotSupportedLocation: AugmentedError; + RateLimited: AugmentedError; TooManyAssetsBeingSent: AugmentedError; UnweighableMessage: AugmentedError; XcmExecutionFailed: AugmentedError; diff --git a/packages/types/src/interfaces/augment-api-events.ts b/packages/types/src/interfaces/augment-api-events.ts index 402fd97..a91c798 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, 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'; +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, StagingXcmV4Asset, StagingXcmV4AssetAssets, StagingXcmV4Location, StagingXcmV4Response, StagingXcmV4TraitsOutcome, StagingXcmV4Xcm, XcmV3TraitsError, XcmVersionedAssets, XcmVersionedLocation } from '@polkadot/types/lookup'; export type __AugmentedEvent = AugmentedEvent; @@ -25,8 +25,8 @@ declare module '@polkadot/api-base/types/events' { assetRegistry: { AssetRegistered: AugmentedEvent; AssetUpdated: AugmentedEvent; - ForeignAssetRegistered: AugmentedEvent; - ForeignAssetUpdated: AugmentedEvent; + ForeignAssetRegistered: AugmentedEvent; + ForeignAssetUpdated: AugmentedEvent; /** * Generic event **/ @@ -81,6 +81,7 @@ declare module '@polkadot/api-base/types/events' { Slashed: AugmentedEvent; Suspended: AugmentedEvent; Thawed: AugmentedEvent; + TotalIssuanceForced: AugmentedEvent; Transfer: AugmentedEvent; Unlocked: AugmentedEvent; Unreserved: AugmentedEvent; @@ -144,7 +145,7 @@ declare module '@polkadot/api-base/types/events' { [key: string]: AugmentedEvent; }; cumulusXcm: { - ExecutedDownward: AugmentedEvent; + ExecutedDownward: AugmentedEvent; InvalidFormat: AugmentedEvent; UnsupportedVersion: AugmentedEvent; /** @@ -201,23 +202,6 @@ declare module '@polkadot/api-base/types/events' { **/ [key: string]: AugmentedEvent; }; - dmpQueue: { - CleanedSome: AugmentedEvent; - Completed: AugmentedEvent; - CompletedExport: AugmentedEvent; - CompletedOverweightExport: AugmentedEvent; - Exported: AugmentedEvent; - ExportedOverweight: AugmentedEvent; - ExportFailed: AugmentedEvent; - ExportOverweightFailed: AugmentedEvent; - StartedCleanup: AugmentedEvent; - StartedExport: AugmentedEvent; - StartedOverweightExport: AugmentedEvent; - /** - * Generic event - **/ - [key: string]: AugmentedEvent; - }; earning: { Bonded: AugmentedEvent; InstantUnbonded: AugmentedEvent; @@ -451,7 +435,7 @@ declare module '@polkadot/api-base/types/events' { [key: string]: AugmentedEvent; }; ormlXcm: { - Sent: AugmentedEvent; + Sent: AugmentedEvent; /** * Generic event **/ @@ -477,29 +461,30 @@ declare module '@polkadot/api-base/types/events' { [key: string]: AugmentedEvent; }; polkadotXcm: { - AssetsClaimed: AugmentedEvent; - AssetsTrapped: AugmentedEvent; - Attempted: AugmentedEvent; - FeesPaid: AugmentedEvent; - InvalidQuerier: AugmentedEvent], { origin: StagingXcmV3MultiLocation, queryId: u64, expectedQuerier: StagingXcmV3MultiLocation, maybeActualQuerier: Option }>; - InvalidQuerierVersion: AugmentedEvent; - InvalidResponder: AugmentedEvent], { origin: StagingXcmV3MultiLocation, queryId: u64, expectedLocation: Option }>; - InvalidResponderVersion: AugmentedEvent; + AssetsClaimed: AugmentedEvent; + AssetsTrapped: AugmentedEvent; + Attempted: AugmentedEvent; + FeesPaid: AugmentedEvent; + InvalidQuerier: AugmentedEvent], { origin: StagingXcmV4Location, queryId: u64, expectedQuerier: StagingXcmV4Location, maybeActualQuerier: Option }>; + InvalidQuerierVersion: AugmentedEvent; + InvalidResponder: AugmentedEvent], { origin: StagingXcmV4Location, queryId: u64, expectedLocation: Option }>; + InvalidResponderVersion: AugmentedEvent; Notified: AugmentedEvent; NotifyDecodeFailed: AugmentedEvent; NotifyDispatchError: AugmentedEvent; NotifyOverweight: AugmentedEvent; - NotifyTargetMigrationFail: AugmentedEvent; - NotifyTargetSendFail: AugmentedEvent; - ResponseReady: AugmentedEvent; + NotifyTargetMigrationFail: AugmentedEvent; + NotifyTargetSendFail: AugmentedEvent; + ResponseReady: AugmentedEvent; ResponseTaken: AugmentedEvent; - Sent: AugmentedEvent; - SupportedVersionChanged: AugmentedEvent; - UnexpectedResponse: AugmentedEvent; - VersionChangeNotified: AugmentedEvent; - VersionNotifyRequested: AugmentedEvent; - VersionNotifyStarted: AugmentedEvent; - VersionNotifyUnrequested: AugmentedEvent; + Sent: AugmentedEvent; + SupportedVersionChanged: AugmentedEvent; + UnexpectedResponse: AugmentedEvent; + VersionChangeNotified: AugmentedEvent; + VersionMigrationFinished: AugmentedEvent; + VersionNotifyRequested: AugmentedEvent; + VersionNotifyStarted: AugmentedEvent; + VersionNotifyUnrequested: AugmentedEvent; /** * Generic event **/ @@ -539,6 +524,9 @@ declare module '@polkadot/api-base/types/events' { Dispatched: AugmentedEvent, id: Option, result: Result], { task: ITuple<[u32, u32]>, id: Option, result: Result }>; PeriodicFailed: AugmentedEvent, id: Option], { task: ITuple<[u32, u32]>, id: Option }>; PermanentlyOverweight: AugmentedEvent, id: Option], { task: ITuple<[u32, u32]>, id: Option }>; + RetryCancelled: AugmentedEvent, id: Option], { task: ITuple<[u32, u32]>, id: Option }>; + RetryFailed: AugmentedEvent, id: Option], { task: ITuple<[u32, u32]>, id: Option }>; + RetrySet: AugmentedEvent, id: Option, period: u32, retries: u8], { task: ITuple<[u32, u32]>, id: Option, period: u32, retries: u8 }>; Scheduled: AugmentedEvent; /** * Generic event @@ -700,8 +688,8 @@ declare module '@polkadot/api-base/types/events' { [key: string]: AugmentedEvent; }; unknownTokens: { - Deposited: AugmentedEvent; - Withdrawn: AugmentedEvent; + Deposited: AugmentedEvent; + Withdrawn: AugmentedEvent; /** * Generic event **/ @@ -744,7 +732,7 @@ declare module '@polkadot/api-base/types/events' { [key: string]: AugmentedEvent; }; xTokens: { - TransferredMultiAssets: AugmentedEvent; + TransferredAssets: AugmentedEvent; /** * Generic event **/ diff --git a/packages/types/src/interfaces/augment-api-query.ts b/packages/types/src/interfaces/augment-api-query.ts index d1959af..a08eb6f 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, 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 { AcalaPrimitivesBondingLedgerBondingLedger, AcalaPrimitivesCurrencyAssetIds, AcalaPrimitivesCurrencyAssetMetadata, AcalaPrimitivesCurrencyCurrencyId, AcalaPrimitivesPosition, AcalaPrimitivesTradingPair, AcalaRuntimeRuntimeHoldReason, AcalaRuntimeRuntimeParametersKey, AcalaRuntimeRuntimeParametersValue, AcalaRuntimeScheduledTasks, AcalaRuntimeSessionKeys, 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, PalletSchedulerRetryConfig, PalletSchedulerScheduled, PalletTipsOpenTip, PalletTreasuryProposal, PalletTreasurySpendStatus, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV6AbridgedHostConfiguration, PolkadotPrimitivesV6PersistedValidationData, PolkadotPrimitivesV6UpgradeGoAhead, PolkadotPrimitivesV6UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, StagingXcmV3MultiLocation, StagingXcmV4Location, XcmVersionedAssetId, XcmVersionedLocation } from '@polkadot/types/lookup'; import type { Observable } from '@polkadot/types/types'; export type __AugmentedQuery = AugmentedQuery unknown>; @@ -187,13 +187,6 @@ declare module '@polkadot/api-base/types/storage' { **/ [key: string]: QueryableStorageEntry; }; - dmpQueue: { - migrationStatus: AugmentedQuery Observable, []> & QueryableStorageEntry; - /** - * Generic query - **/ - [key: string]: QueryableStorageEntry; - }; earning: { ledger: AugmentedQuery Observable>, [AccountId32]> & QueryableStorageEntry; /** @@ -435,15 +428,15 @@ declare module '@polkadot/api-base/types/storage' { polkadotXcm: { assetTraps: AugmentedQuery Observable, [H256]> & QueryableStorageEntry; currentMigration: AugmentedQuery Observable>, []> & QueryableStorageEntry; - lockedFungibles: AugmentedQuery Observable>>>, [AccountId32]> & QueryableStorageEntry; + lockedFungibles: AugmentedQuery Observable>>>, [AccountId32]> & QueryableStorageEntry; queries: AugmentedQuery Observable>, [u64]> & QueryableStorageEntry; queryCounter: AugmentedQuery Observable, []> & QueryableStorageEntry; - remoteLockedFungibles: AugmentedQuery Observable>, [u32, AccountId32, XcmVersionedAssetId]> & QueryableStorageEntry; + remoteLockedFungibles: AugmentedQuery Observable>, [u32, AccountId32, XcmVersionedAssetId]> & QueryableStorageEntry; safeXcmVersion: AugmentedQuery Observable>, []> & QueryableStorageEntry; - supportedVersion: AugmentedQuery Observable>, [u32, XcmVersionedMultiLocation]> & QueryableStorageEntry; - versionDiscoveryQueue: AugmentedQuery Observable>>, []> & QueryableStorageEntry; - versionNotifiers: AugmentedQuery Observable>, [u32, XcmVersionedMultiLocation]> & QueryableStorageEntry; - versionNotifyTargets: AugmentedQuery Observable>>, [u32, XcmVersionedMultiLocation]> & QueryableStorageEntry; + supportedVersion: AugmentedQuery Observable>, [u32, XcmVersionedLocation]> & QueryableStorageEntry; + versionDiscoveryQueue: AugmentedQuery Observable>>, []> & QueryableStorageEntry; + versionNotifiers: AugmentedQuery Observable>, [u32, XcmVersionedLocation]> & QueryableStorageEntry; + versionNotifyTargets: AugmentedQuery Observable>>, [u32, XcmVersionedLocation]> & QueryableStorageEntry; xcmExecutionSuspended: AugmentedQuery Observable, []> & QueryableStorageEntry; /** * Generic query @@ -486,6 +479,7 @@ declare module '@polkadot/api-base/types/storage' { agenda: AugmentedQuery Observable>>, [u32]> & QueryableStorageEntry; incompleteSince: AugmentedQuery Observable>, []> & QueryableStorageEntry; lookup: AugmentedQuery Observable>>, [U8aFixed]> & QueryableStorageEntry; + retries: AugmentedQuery | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array]) => Observable>, [ITuple<[u32, u32]>]> & QueryableStorageEntry]>; /** * Generic query **/ @@ -541,6 +535,7 @@ declare module '@polkadot/api-base/types/storage' { executionPhase: AugmentedQuery Observable>, []> & QueryableStorageEntry; extrinsicCount: AugmentedQuery Observable>, []> & QueryableStorageEntry; extrinsicData: AugmentedQuery Observable, [u32]> & QueryableStorageEntry; + inherentsApplied: AugmentedQuery Observable, []> & QueryableStorageEntry; lastRuntimeUpgrade: AugmentedQuery Observable>, []> & QueryableStorageEntry; number: AugmentedQuery Observable, []> & QueryableStorageEntry; parentHash: AugmentedQuery Observable, []> & QueryableStorageEntry; @@ -631,8 +626,8 @@ declare module '@polkadot/api-base/types/storage' { [key: string]: QueryableStorageEntry; }; unknownTokens: { - abstractFungibleBalances: AugmentedQuery Observable, [StagingXcmV3MultiLocation, Bytes]> & QueryableStorageEntry; - concreteFungibleBalances: AugmentedQuery Observable, [StagingXcmV3MultiLocation, StagingXcmV3MultiLocation]> & QueryableStorageEntry; + abstractFungibleBalances: AugmentedQuery Observable, [StagingXcmV4Location, Bytes]> & QueryableStorageEntry; + concreteFungibleBalances: AugmentedQuery Observable, [StagingXcmV4Location, StagingXcmV4Location]> & QueryableStorageEntry; /** * Generic query **/ diff --git a/packages/types/src/interfaces/augment-api-runtime.ts b/packages/types/src/interfaces/augment-api-runtime.ts index 514623e..fdf2b13 100644 --- a/packages/types/src/interfaces/augment-api-runtime.ts +++ b/packages/types/src/interfaces/augment-api-runtime.ts @@ -17,7 +17,6 @@ import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics'; import type { OpaqueMetadata } from '@polkadot/types/interfaces/metadata'; import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment'; import type { AccountId, Balance, Block, H160, Header, Index, KeyTypeId, SlotDuration, Weight } from '@polkadot/types/interfaces/runtime'; -import type { RuntimeVersion } from '@polkadot/types/interfaces/state'; import type { ApplyExtrinsicResult, DispatchError } from '@polkadot/types/interfaces/system'; import type { TransactionSource, TransactionValidity } from '@polkadot/types/interfaces/txqueue'; import type { EthereumTransactionAccessListItem } from '@polkadot/types/lookup'; @@ -88,25 +87,6 @@ declare module '@polkadot/api-base/types/calls' { **/ [key: string]: DecoratedCallBase; }; - /** 0xdf6acb689907609b/4 */ - core: { - /** - * Execute the given block. - **/ - executeBlock: AugmentedCall Observable>; - /** - * Initialize a block with the given header. - **/ - initializeBlock: AugmentedCall Observable>; - /** - * Returns the version of the runtime. - **/ - version: AugmentedCall Observable>; - /** - * Generic call - **/ - [key: string]: DecoratedCallBase; - }; /** 0xe3df3f2aa8a5cc57/2 */ evmRuntimeRPCApi: { /** diff --git a/packages/types/src/interfaces/augment-api-tx.ts b/packages/types/src/interfaces/augment-api-tx.ts index 9ad0764..1767484 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, 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'; +import type { AcalaPrimitivesAuthoritysOriginId, AcalaPrimitivesCurrencyAssetMetadata, AcalaPrimitivesCurrencyCurrencyId, AcalaRuntimeOriginCaller, AcalaRuntimeRuntimeParameters, AcalaRuntimeScheduledTasks, AcalaRuntimeSessionKeys, CumulusPrimitivesCoreAggregateMessageOrigin, CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionAccessListItem, EthereumTransactionTransactionAction, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, ModuleHomaModuleUnlockChunk, ModuleSupportDexAggregatedSwapPath, ModuleSupportDexSwapLimit, ModuleSupportIncentivesPoolId, ModuleXcmInterfaceModuleXcmInterfaceOperation, OrmlTraitsChangeOption, OrmlTraitsChangeU128, OrmlVestingVestingSchedule, PalletBalancesAdjustmentDirection, PalletDemocracyConviction, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletMultisigTimepoint, RuntimeCommonProxyType, SpWeightsWeightV2Weight, StagingXcmV4Location, XcmV3WeightLimit, XcmVersionedAsset, XcmVersionedAssets, XcmVersionedLocation, XcmVersionedXcm } from '@polkadot/types/lookup'; export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>; export type __SubmittableExtrinsic = SubmittableExtrinsic; @@ -35,11 +35,11 @@ declare module '@polkadot/api-base/types/submittable' { }; assetRegistry: { registerErc20Asset: AugmentedSubmittable<(contract: H160 | string | Uint8Array, minimalBalance: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic, [H160, u128]>; - registerForeignAsset: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, metadata: AcalaPrimitivesCurrencyAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedMultiLocation, AcalaPrimitivesCurrencyAssetMetadata]>; + registerForeignAsset: AugmentedSubmittable<(location: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, metadata: AcalaPrimitivesCurrencyAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedLocation, AcalaPrimitivesCurrencyAssetMetadata]>; registerNativeAsset: AugmentedSubmittable<(currencyId: AcalaPrimitivesCurrencyCurrencyId | { Token: any } | { DexShare: any } | { Erc20: any } | { StableAssetPoolToken: any } | { LiquidCrowdloan: any } | { ForeignAsset: any } | string | Uint8Array, metadata: AcalaPrimitivesCurrencyAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic, [AcalaPrimitivesCurrencyCurrencyId, AcalaPrimitivesCurrencyAssetMetadata]>; registerStableAsset: AugmentedSubmittable<(metadata: AcalaPrimitivesCurrencyAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic, [AcalaPrimitivesCurrencyAssetMetadata]>; updateErc20Asset: AugmentedSubmittable<(contract: H160 | string | Uint8Array, metadata: AcalaPrimitivesCurrencyAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic, [H160, AcalaPrimitivesCurrencyAssetMetadata]>; - updateForeignAsset: AugmentedSubmittable<(foreignAssetId: u16 | AnyNumber | Uint8Array, location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, metadata: AcalaPrimitivesCurrencyAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic, [u16, XcmVersionedMultiLocation, AcalaPrimitivesCurrencyAssetMetadata]>; + updateForeignAsset: AugmentedSubmittable<(foreignAssetId: u16 | AnyNumber | Uint8Array, location: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, metadata: AcalaPrimitivesCurrencyAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic, [u16, XcmVersionedLocation, AcalaPrimitivesCurrencyAssetMetadata]>; updateNativeAsset: AugmentedSubmittable<(currencyId: AcalaPrimitivesCurrencyCurrencyId | { Token: any } | { DexShare: any } | { Erc20: any } | { StableAssetPoolToken: any } | { LiquidCrowdloan: any } | { ForeignAsset: any } | string | Uint8Array, metadata: AcalaPrimitivesCurrencyAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic, [AcalaPrimitivesCurrencyCurrencyId, AcalaPrimitivesCurrencyAssetMetadata]>; updateStableAsset: AugmentedSubmittable<(stableAssetId: u32 | AnyNumber | Uint8Array, metadata: AcalaPrimitivesCurrencyAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic, [u32, AcalaPrimitivesCurrencyAssetMetadata]>; /** @@ -76,6 +76,7 @@ declare module '@polkadot/api-base/types/submittable' { [key: string]: SubmittableExtrinsicFunction; }; balances: { + forceAdjustTotalIssuance: AugmentedSubmittable<(direction: PalletBalancesAdjustmentDirection | 'Increase' | 'Decrease' | number | Uint8Array, delta: Compact | AnyNumber | Uint8Array) => SubmittableExtrinsic, [PalletBalancesAdjustmentDirection, Compact]>; forceSetBalance: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, newFree: Compact | AnyNumber | Uint8Array) => SubmittableExtrinsic, [MultiAddress, Compact]>; forceTransfer: AugmentedSubmittable<(source: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact | AnyNumber | Uint8Array) => SubmittableExtrinsic, [MultiAddress, MultiAddress, Compact]>; forceUnreserve: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic, [MultiAddress, u128]>; @@ -203,12 +204,6 @@ declare module '@polkadot/api-base/types/submittable' { **/ [key: string]: SubmittableExtrinsicFunction; }; - dmpQueue: { - /** - * Generic tx - **/ - [key: string]: SubmittableExtrinsicFunction; - }; earning: { bond: AugmentedSubmittable<(amount: Compact | AnyNumber | Uint8Array) => SubmittableExtrinsic, [Compact]>; rebond: AugmentedSubmittable<(amount: Compact | AnyNumber | Uint8Array) => SubmittableExtrinsic, [Compact]>; @@ -445,7 +440,7 @@ declare module '@polkadot/api-base/types/submittable' { [key: string]: SubmittableExtrinsicFunction; }; ormlXcm: { - sendAsSovereign: AugmentedSubmittable<(dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, message: XcmVersionedXcm | { V2: any } | { V3: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedMultiLocation, XcmVersionedXcm]>; + sendAsSovereign: AugmentedSubmittable<(dest: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, message: XcmVersionedXcm | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedLocation, XcmVersionedXcm]>; /** * Generic tx **/ @@ -469,18 +464,19 @@ declare module '@polkadot/api-base/types/submittable' { [key: string]: SubmittableExtrinsicFunction; }; polkadotXcm: { - execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V2: any } | { V3: any } | string | Uint8Array, maxWeight: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedXcm, SpWeightsWeightV2Weight]>; + claimAssets: AugmentedSubmittable<(assets: XcmVersionedAssets | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, beneficiary: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedAssets, XcmVersionedLocation]>; + execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, maxWeight: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedXcm, SpWeightsWeightV2Weight]>; forceDefaultXcmVersion: AugmentedSubmittable<(maybeXcmVersion: Option | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic, [Option]>; - forceSubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedMultiLocation]>; + forceSubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedLocation]>; forceSuspension: AugmentedSubmittable<(suspended: bool | boolean | Uint8Array) => SubmittableExtrinsic, [bool]>; - forceUnsubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedMultiLocation]>; - forceXcmVersion: AugmentedSubmittable<(location: StagingXcmV3MultiLocation | { parents?: any; interior?: any } | string | Uint8Array, version: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic, [StagingXcmV3MultiLocation, u32]>; - limitedReserveTransferAssets: 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]>; - limitedTeleportAssets: 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]>; - 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]>; + forceUnsubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedLocation]>; + forceXcmVersion: AugmentedSubmittable<(location: StagingXcmV4Location | { parents?: any; interior?: any } | string | Uint8Array, version: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic, [StagingXcmV4Location, u32]>; + limitedReserveTransferAssets: AugmentedSubmittable<(dest: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, beneficiary: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, assets: XcmVersionedAssets | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array, weightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedLocation, XcmVersionedLocation, XcmVersionedAssets, u32, XcmV3WeightLimit]>; + limitedTeleportAssets: AugmentedSubmittable<(dest: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, beneficiary: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, assets: XcmVersionedAssets | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array, weightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedLocation, XcmVersionedLocation, XcmVersionedAssets, u32, XcmV3WeightLimit]>; + reserveTransferAssets: AugmentedSubmittable<(dest: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, beneficiary: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, assets: XcmVersionedAssets | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic, [XcmVersionedLocation, XcmVersionedLocation, XcmVersionedAssets, u32]>; + send: AugmentedSubmittable<(dest: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, message: XcmVersionedXcm | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedLocation, XcmVersionedXcm]>; + teleportAssets: AugmentedSubmittable<(dest: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, beneficiary: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, assets: XcmVersionedAssets | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic, [XcmVersionedLocation, XcmVersionedLocation, XcmVersionedAssets, u32]>; + transferAssets: AugmentedSubmittable<(dest: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, beneficiary: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, assets: XcmVersionedAssets | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, feeAssetItem: u32 | AnyNumber | Uint8Array, weightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedLocation, XcmVersionedLocation, XcmVersionedAssets, u32, XcmV3WeightLimit]>; /** * Generic tx **/ @@ -524,10 +520,14 @@ declare module '@polkadot/api-base/types/submittable' { scheduler: { cancel: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic, [u32, u32]>; cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic, [U8aFixed]>; + cancelRetry: AugmentedSubmittable<(task: ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array]) => SubmittableExtrinsic, [ITuple<[u32, u32]>]>; + cancelRetryNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic, [U8aFixed]>; schedule: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic, [u32, Option>, u8, Call]>; scheduleAfter: AugmentedSubmittable<(after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic, [u32, Option>, u8, Call]>; scheduleNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic, [U8aFixed, u32, Option>, u8, Call]>; scheduleNamedAfter: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic, [U8aFixed, u32, Option>, u8, Call]>; + setRetry: AugmentedSubmittable<(task: ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], retries: u8 | AnyNumber | Uint8Array, period: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic, [ITuple<[u32, u32]>, u8, u32]>; + setRetryNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, retries: u8 | AnyNumber | Uint8Array, period: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic, [U8aFixed, u8, u32]>; /** * Generic tx **/ @@ -713,12 +713,12 @@ declare module '@polkadot/api-base/types/submittable' { [key: string]: SubmittableExtrinsicFunction; }; xTokens: { - transfer: AugmentedSubmittable<(currencyId: AcalaPrimitivesCurrencyCurrencyId | { Token: any } | { DexShare: any } | { Erc20: any } | { StableAssetPoolToken: any } | { LiquidCrowdloan: any } | { ForeignAsset: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic, [AcalaPrimitivesCurrencyCurrencyId, u128, XcmVersionedMultiLocation, XcmV3WeightLimit]>; - transferMultiasset: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V2: any } | { V3: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedMultiAsset, XcmVersionedMultiLocation, XcmV3WeightLimit]>; - transferMultiassets: AugmentedSubmittable<(assets: XcmVersionedMultiAssets | { V2: any } | { V3: any } | string | Uint8Array, feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedMultiAssets, u32, XcmVersionedMultiLocation, XcmV3WeightLimit]>; - transferMultiassetWithFee: AugmentedSubmittable<(asset: XcmVersionedMultiAsset | { V2: any } | { V3: any } | string | Uint8Array, fee: XcmVersionedMultiAsset | { V2: any } | { V3: any } | string | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedMultiAsset, XcmVersionedMultiAsset, XcmVersionedMultiLocation, XcmV3WeightLimit]>; - transferMulticurrencies: AugmentedSubmittable<(currencies: Vec> | ([AcalaPrimitivesCurrencyCurrencyId | { Token: any } | { DexShare: any } | { Erc20: any } | { StableAssetPoolToken: any } | { LiquidCrowdloan: any } | { ForeignAsset: any } | string | Uint8Array, u128 | AnyNumber | Uint8Array])[], feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic, [Vec>, u32, XcmVersionedMultiLocation, XcmV3WeightLimit]>; - transferWithFee: AugmentedSubmittable<(currencyId: AcalaPrimitivesCurrencyCurrencyId | { Token: any } | { DexShare: any } | { Erc20: any } | { StableAssetPoolToken: any } | { LiquidCrowdloan: any } | { ForeignAsset: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, fee: u128 | AnyNumber | Uint8Array, dest: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic, [AcalaPrimitivesCurrencyCurrencyId, u128, u128, XcmVersionedMultiLocation, XcmV3WeightLimit]>; + transfer: AugmentedSubmittable<(currencyId: AcalaPrimitivesCurrencyCurrencyId | { Token: any } | { DexShare: any } | { Erc20: any } | { StableAssetPoolToken: any } | { LiquidCrowdloan: any } | { ForeignAsset: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, dest: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic, [AcalaPrimitivesCurrencyCurrencyId, u128, XcmVersionedLocation, XcmV3WeightLimit]>; + transferMultiasset: AugmentedSubmittable<(asset: XcmVersionedAsset | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, dest: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedAsset, XcmVersionedLocation, XcmV3WeightLimit]>; + transferMultiassets: AugmentedSubmittable<(assets: XcmVersionedAssets | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedAssets, u32, XcmVersionedLocation, XcmV3WeightLimit]>; + transferMultiassetWithFee: AugmentedSubmittable<(asset: XcmVersionedAsset | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, fee: XcmVersionedAsset | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, dest: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic, [XcmVersionedAsset, XcmVersionedAsset, XcmVersionedLocation, XcmV3WeightLimit]>; + transferMulticurrencies: AugmentedSubmittable<(currencies: Vec> | ([AcalaPrimitivesCurrencyCurrencyId | { Token: any } | { DexShare: any } | { Erc20: any } | { StableAssetPoolToken: any } | { LiquidCrowdloan: any } | { ForeignAsset: any } | string | Uint8Array, u128 | AnyNumber | Uint8Array])[], feeItem: u32 | AnyNumber | Uint8Array, dest: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic, [Vec>, u32, XcmVersionedLocation, XcmV3WeightLimit]>; + transferWithFee: AugmentedSubmittable<(currencyId: AcalaPrimitivesCurrencyCurrencyId | { Token: any } | { DexShare: any } | { Erc20: any } | { StableAssetPoolToken: any } | { LiquidCrowdloan: any } | { ForeignAsset: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, fee: u128 | AnyNumber | Uint8Array, dest: XcmVersionedLocation | { V2: any } | { V3: any } | { V4: any } | string | Uint8Array, destWeightLimit: XcmV3WeightLimit | { Unlimited: any } | { Limited: any } | string | Uint8Array) => SubmittableExtrinsic, [AcalaPrimitivesCurrencyCurrencyId, u128, u128, XcmVersionedLocation, XcmV3WeightLimit]>; /** * Generic tx **/ diff --git a/packages/types/src/interfaces/lookup.ts b/packages/types/src/interfaces/lookup.ts index 8457f37..2b87596 100644 --- a/packages/types/src/interfaces/lookup.ts +++ b/packages/types/src/interfaces/lookup.ts @@ -24,7 +24,7 @@ export default { flags: 'u128' }, /** - * Lookup8: frame_support::dispatch::PerDispatchClass + * Lookup9: frame_support::dispatch::PerDispatchClass **/ FrameSupportDispatchPerDispatchClassWeight: { normal: 'SpWeightsWeightV2Weight', @@ -32,20 +32,20 @@ export default { mandatory: 'SpWeightsWeightV2Weight' }, /** - * Lookup9: sp_weights::weight_v2::Weight + * Lookup10: sp_weights::weight_v2::Weight **/ SpWeightsWeightV2Weight: { refTime: 'Compact', proofSize: 'Compact' }, /** - * Lookup14: sp_runtime::generic::digest::Digest + * Lookup15: sp_runtime::generic::digest::Digest **/ SpRuntimeDigest: { logs: 'Vec' }, /** - * Lookup16: sp_runtime::generic::digest::DigestItem + * Lookup17: sp_runtime::generic::digest::DigestItem **/ SpRuntimeDigestDigestItem: { _enum: { @@ -61,7 +61,7 @@ export default { } }, /** - * Lookup19: frame_system::EventRecord + * Lookup20: frame_system::EventRecord **/ FrameSystemEventRecord: { phase: 'FrameSystemPhase', @@ -69,7 +69,7 @@ export default { topics: 'Vec' }, /** - * Lookup21: frame_system::pallet::Event + * Lookup22: frame_system::pallet::Event **/ FrameSystemEvent: { _enum: { @@ -101,7 +101,7 @@ export default { } }, /** - * Lookup22: frame_support::dispatch::DispatchInfo + * Lookup23: frame_support::dispatch::DispatchInfo **/ FrameSupportDispatchDispatchInfo: { weight: 'SpWeightsWeightV2Weight', @@ -109,19 +109,19 @@ export default { paysFee: 'FrameSupportDispatchPays' }, /** - * Lookup23: frame_support::dispatch::DispatchClass + * Lookup24: frame_support::dispatch::DispatchClass **/ FrameSupportDispatchDispatchClass: { _enum: ['Normal', 'Operational', 'Mandatory'] }, /** - * Lookup24: frame_support::dispatch::Pays + * Lookup25: frame_support::dispatch::Pays **/ FrameSupportDispatchPays: { _enum: ['Yes', 'No'] }, /** - * Lookup25: sp_runtime::DispatchError + * Lookup26: sp_runtime::DispatchError **/ SpRuntimeDispatchError: { _enum: { @@ -142,26 +142,26 @@ export default { } }, /** - * Lookup26: sp_runtime::ModuleError + * Lookup27: sp_runtime::ModuleError **/ SpRuntimeModuleError: { index: 'u8', error: '[u8;4]' }, /** - * Lookup27: sp_runtime::TokenError + * Lookup28: sp_runtime::TokenError **/ SpRuntimeTokenError: { _enum: ['FundsUnavailable', 'OnlyProvider', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported', 'CannotCreateHold', 'NotExpendable', 'Blocked'] }, /** - * Lookup28: sp_arithmetic::ArithmeticError + * Lookup29: sp_arithmetic::ArithmeticError **/ SpArithmeticArithmeticError: { _enum: ['Underflow', 'Overflow', 'DivisionByZero'] }, /** - * Lookup29: sp_runtime::TransactionalError + * Lookup30: sp_runtime::TransactionalError **/ SpRuntimeTransactionalError: { _enum: ['LimitReached', 'NoLayer'] @@ -184,6 +184,16 @@ export default { id: 'Option<[u8;32]>', result: 'Result', }, + RetrySet: { + task: '(u32,u32)', + id: 'Option<[u8;32]>', + period: 'u32', + retries: 'u8', + }, + RetryCancelled: { + task: '(u32,u32)', + id: 'Option<[u8;32]>', + }, CallUnavailable: { task: '(u32,u32)', id: 'Option<[u8;32]>', @@ -192,6 +202,10 @@ export default { task: '(u32,u32)', id: 'Option<[u8;32]>', }, + RetryFailed: { + task: '(u32,u32)', + id: 'Option<[u8;32]>', + }, PermanentlyOverweight: { task: '(u32,u32)', id: 'Option<[u8;32]>' @@ -475,7 +489,14 @@ export default { }, Thawed: { who: 'AccountId32', - amount: 'u128' + amount: 'u128', + }, + TotalIssuanceForced: { + _alias: { + new_: 'new', + }, + old: 'u128', + new_: 'u128' } } }, @@ -895,21 +916,21 @@ export default { PalletXcmEvent: { _enum: { Attempted: { - outcome: 'XcmV3TraitsOutcome', + outcome: 'StagingXcmV4TraitsOutcome', }, Sent: { - origin: 'StagingXcmV3MultiLocation', - destination: 'StagingXcmV3MultiLocation', - message: 'XcmV3Xcm', + origin: 'StagingXcmV4Location', + destination: 'StagingXcmV4Location', + message: 'StagingXcmV4Xcm', messageId: '[u8;32]', }, UnexpectedResponse: { - origin: 'StagingXcmV3MultiLocation', + origin: 'StagingXcmV4Location', queryId: 'u64', }, ResponseReady: { queryId: 'u64', - response: 'XcmV3Response', + response: 'StagingXcmV4Response', }, Notified: { queryId: 'u64', @@ -934,12 +955,12 @@ export default { callIndex: 'u8', }, InvalidResponder: { - origin: 'StagingXcmV3MultiLocation', + origin: 'StagingXcmV4Location', queryId: 'u64', - expectedLocation: 'Option', + expectedLocation: 'Option', }, InvalidResponderVersion: { - origin: 'StagingXcmV3MultiLocation', + origin: 'StagingXcmV4Location', queryId: 'u64', }, ResponseTaken: { @@ -950,75 +971,85 @@ export default { hash_: 'hash', }, hash_: 'H256', - origin: 'StagingXcmV3MultiLocation', - assets: 'XcmVersionedMultiAssets', + origin: 'StagingXcmV4Location', + assets: 'XcmVersionedAssets', }, VersionChangeNotified: { - destination: 'StagingXcmV3MultiLocation', + destination: 'StagingXcmV4Location', result: 'u32', - cost: 'XcmV3MultiassetMultiAssets', + cost: 'StagingXcmV4AssetAssets', messageId: '[u8;32]', }, SupportedVersionChanged: { - location: 'StagingXcmV3MultiLocation', + location: 'StagingXcmV4Location', version: 'u32', }, NotifyTargetSendFail: { - location: 'StagingXcmV3MultiLocation', + location: 'StagingXcmV4Location', queryId: 'u64', error: 'XcmV3TraitsError', }, NotifyTargetMigrationFail: { - location: 'XcmVersionedMultiLocation', + location: 'XcmVersionedLocation', queryId: 'u64', }, InvalidQuerierVersion: { - origin: 'StagingXcmV3MultiLocation', + origin: 'StagingXcmV4Location', queryId: 'u64', }, InvalidQuerier: { - origin: 'StagingXcmV3MultiLocation', + origin: 'StagingXcmV4Location', queryId: 'u64', - expectedQuerier: 'StagingXcmV3MultiLocation', - maybeActualQuerier: 'Option', + expectedQuerier: 'StagingXcmV4Location', + maybeActualQuerier: 'Option', }, VersionNotifyStarted: { - destination: 'StagingXcmV3MultiLocation', - cost: 'XcmV3MultiassetMultiAssets', + destination: 'StagingXcmV4Location', + cost: 'StagingXcmV4AssetAssets', messageId: '[u8;32]', }, VersionNotifyRequested: { - destination: 'StagingXcmV3MultiLocation', - cost: 'XcmV3MultiassetMultiAssets', + destination: 'StagingXcmV4Location', + cost: 'StagingXcmV4AssetAssets', messageId: '[u8;32]', }, VersionNotifyUnrequested: { - destination: 'StagingXcmV3MultiLocation', - cost: 'XcmV3MultiassetMultiAssets', + destination: 'StagingXcmV4Location', + cost: 'StagingXcmV4AssetAssets', messageId: '[u8;32]', }, FeesPaid: { - paying: 'StagingXcmV3MultiLocation', - fees: 'XcmV3MultiassetMultiAssets', + paying: 'StagingXcmV4Location', + fees: 'StagingXcmV4AssetAssets', }, AssetsClaimed: { _alias: { hash_: 'hash', }, hash_: 'H256', - origin: 'StagingXcmV3MultiLocation', - assets: 'XcmVersionedMultiAssets' + origin: 'StagingXcmV4Location', + assets: 'XcmVersionedAssets', + }, + VersionMigrationFinished: { + version: 'u32' } } }, /** - * Lookup72: xcm::v3::traits::Outcome + * Lookup72: staging_xcm::v4::traits::Outcome **/ - XcmV3TraitsOutcome: { + StagingXcmV4TraitsOutcome: { _enum: { - Complete: 'SpWeightsWeightV2Weight', - Incomplete: '(SpWeightsWeightV2Weight,XcmV3TraitsError)', - Error: 'XcmV3TraitsError' + Complete: { + used: 'SpWeightsWeightV2Weight', + }, + Incomplete: { + used: 'SpWeightsWeightV2Weight', + error: 'XcmV3TraitsError', + }, + Error: { + error: 'XcmV3TraitsError' + } } }, /** @@ -1069,44 +1100,44 @@ export default { } }, /** - * Lookup74: staging_xcm::v3::multilocation::MultiLocation + * Lookup74: staging_xcm::v4::location::Location **/ - StagingXcmV3MultiLocation: { + StagingXcmV4Location: { parents: 'u8', - interior: 'XcmV3Junctions' + interior: 'StagingXcmV4Junctions' }, /** - * Lookup75: xcm::v3::junctions::Junctions + * Lookup75: staging_xcm::v4::junctions::Junctions **/ - XcmV3Junctions: { + StagingXcmV4Junctions: { _enum: { Here: 'Null', - X1: 'XcmV3Junction', - X2: '(XcmV3Junction,XcmV3Junction)', - X3: '(XcmV3Junction,XcmV3Junction,XcmV3Junction)', - X4: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)', - X5: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)', - X6: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)', - X7: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)', - X8: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)' + X1: '[Lookup77;1]', + X2: '[Lookup77;2]', + X3: '[Lookup77;3]', + X4: '[Lookup77;4]', + X5: '[Lookup77;5]', + X6: '[Lookup77;6]', + X7: '[Lookup77;7]', + X8: '[Lookup77;8]' } }, /** - * Lookup76: xcm::v3::junction::Junction + * Lookup77: staging_xcm::v4::junction::Junction **/ - XcmV3Junction: { + StagingXcmV4Junction: { _enum: { Parachain: 'Compact', AccountId32: { - network: 'Option', + network: 'Option', id: '[u8;32]', }, AccountIndex64: { - network: 'Option', + network: 'Option', index: 'Compact', }, AccountKey20: { - network: 'Option', + network: 'Option', key: '[u8;20]', }, PalletInstance: 'u8', @@ -1120,13 +1151,13 @@ export default { id: 'XcmV3JunctionBodyId', part: 'XcmV3JunctionBodyPart', }, - GlobalConsensus: 'XcmV3JunctionNetworkId' + GlobalConsensus: 'StagingXcmV4JunctionNetworkId' } }, /** - * Lookup79: xcm::v3::junction::NetworkId + * Lookup80: staging_xcm::v4::junction::NetworkId **/ - XcmV3JunctionNetworkId: { + StagingXcmV4JunctionNetworkId: { _enum: { ByGenesis: '[u8;32]', ByFork: { @@ -1147,7 +1178,7 @@ export default { } }, /** - * Lookup80: xcm::v3::junction::BodyId + * Lookup81: xcm::v3::junction::BodyId **/ XcmV3JunctionBodyId: { _enum: { @@ -1164,7 +1195,7 @@ export default { } }, /** - * Lookup81: xcm::v3::junction::BodyPart + * Lookup82: xcm::v3::junction::BodyPart **/ XcmV3JunctionBodyPart: { _enum: { @@ -1187,31 +1218,31 @@ export default { } }, /** - * Lookup82: xcm::v3::Xcm + * Lookup90: staging_xcm::v4::Xcm **/ - XcmV3Xcm: 'Vec', + StagingXcmV4Xcm: 'Vec', /** - * Lookup84: xcm::v3::Instruction + * Lookup92: staging_xcm::v4::Instruction **/ - XcmV3Instruction: { + StagingXcmV4Instruction: { _enum: { - WithdrawAsset: 'XcmV3MultiassetMultiAssets', - ReserveAssetDeposited: 'XcmV3MultiassetMultiAssets', - ReceiveTeleportedAsset: 'XcmV3MultiassetMultiAssets', + WithdrawAsset: 'StagingXcmV4AssetAssets', + ReserveAssetDeposited: 'StagingXcmV4AssetAssets', + ReceiveTeleportedAsset: 'StagingXcmV4AssetAssets', QueryResponse: { queryId: 'Compact', - response: 'XcmV3Response', + response: 'StagingXcmV4Response', maxWeight: 'SpWeightsWeightV2Weight', - querier: 'Option', + querier: 'Option', }, TransferAsset: { - assets: 'XcmV3MultiassetMultiAssets', - beneficiary: 'StagingXcmV3MultiLocation', + assets: 'StagingXcmV4AssetAssets', + beneficiary: 'StagingXcmV4Location', }, TransferReserveAsset: { - assets: 'XcmV3MultiassetMultiAssets', - dest: 'StagingXcmV3MultiLocation', - xcm: 'XcmV3Xcm', + assets: 'StagingXcmV4AssetAssets', + dest: 'StagingXcmV4Location', + xcm: 'StagingXcmV4Xcm', }, Transact: { originKind: 'XcmV2OriginKind', @@ -1232,47 +1263,47 @@ export default { recipient: 'Compact', }, ClearOrigin: 'Null', - DescendOrigin: 'XcmV3Junctions', - ReportError: 'XcmV3QueryResponseInfo', + DescendOrigin: 'StagingXcmV4Junctions', + ReportError: 'StagingXcmV4QueryResponseInfo', DepositAsset: { - assets: 'XcmV3MultiassetMultiAssetFilter', - beneficiary: 'StagingXcmV3MultiLocation', + assets: 'StagingXcmV4AssetAssetFilter', + beneficiary: 'StagingXcmV4Location', }, DepositReserveAsset: { - assets: 'XcmV3MultiassetMultiAssetFilter', - dest: 'StagingXcmV3MultiLocation', - xcm: 'XcmV3Xcm', + assets: 'StagingXcmV4AssetAssetFilter', + dest: 'StagingXcmV4Location', + xcm: 'StagingXcmV4Xcm', }, ExchangeAsset: { - give: 'XcmV3MultiassetMultiAssetFilter', - want: 'XcmV3MultiassetMultiAssets', + give: 'StagingXcmV4AssetAssetFilter', + want: 'StagingXcmV4AssetAssets', maximal: 'bool', }, InitiateReserveWithdraw: { - assets: 'XcmV3MultiassetMultiAssetFilter', - reserve: 'StagingXcmV3MultiLocation', - xcm: 'XcmV3Xcm', + assets: 'StagingXcmV4AssetAssetFilter', + reserve: 'StagingXcmV4Location', + xcm: 'StagingXcmV4Xcm', }, InitiateTeleport: { - assets: 'XcmV3MultiassetMultiAssetFilter', - dest: 'StagingXcmV3MultiLocation', - xcm: 'XcmV3Xcm', + assets: 'StagingXcmV4AssetAssetFilter', + dest: 'StagingXcmV4Location', + xcm: 'StagingXcmV4Xcm', }, ReportHolding: { - responseInfo: 'XcmV3QueryResponseInfo', - assets: 'XcmV3MultiassetMultiAssetFilter', + responseInfo: 'StagingXcmV4QueryResponseInfo', + assets: 'StagingXcmV4AssetAssetFilter', }, BuyExecution: { - fees: 'XcmV3MultiAsset', + fees: 'StagingXcmV4Asset', weightLimit: 'XcmV3WeightLimit', }, RefundSurplus: 'Null', - SetErrorHandler: 'XcmV3Xcm', - SetAppendix: 'XcmV3Xcm', + SetErrorHandler: 'StagingXcmV4Xcm', + SetAppendix: 'StagingXcmV4Xcm', ClearError: 'Null', ClaimAsset: { - assets: 'XcmV3MultiassetMultiAssets', - ticket: 'StagingXcmV3MultiLocation', + assets: 'StagingXcmV4AssetAssets', + ticket: 'StagingXcmV4Location', }, Trap: 'Compact', SubscribeVersion: { @@ -1280,14 +1311,14 @@ export default { maxResponseWeight: 'SpWeightsWeightV2Weight', }, UnsubscribeVersion: 'Null', - BurnAsset: 'XcmV3MultiassetMultiAssets', - ExpectAsset: 'XcmV3MultiassetMultiAssets', - ExpectOrigin: 'Option', + BurnAsset: 'StagingXcmV4AssetAssets', + ExpectAsset: 'StagingXcmV4AssetAssets', + ExpectOrigin: 'Option', ExpectError: 'Option<(u32,XcmV3TraitsError)>', ExpectTransactStatus: 'XcmV3MaybeErrorCode', QueryPallet: { moduleName: 'Bytes', - responseInfo: 'XcmV3QueryResponseInfo', + responseInfo: 'StagingXcmV4QueryResponseInfo', }, ExpectPallet: { index: 'Compact', @@ -1296,75 +1327,70 @@ export default { crateMajor: 'Compact', minCrateMinor: 'Compact', }, - ReportTransactStatus: 'XcmV3QueryResponseInfo', + ReportTransactStatus: 'StagingXcmV4QueryResponseInfo', ClearTransactStatus: 'Null', - UniversalOrigin: 'XcmV3Junction', + UniversalOrigin: 'StagingXcmV4Junction', ExportMessage: { - network: 'XcmV3JunctionNetworkId', - destination: 'XcmV3Junctions', - xcm: 'XcmV3Xcm', + network: 'StagingXcmV4JunctionNetworkId', + destination: 'StagingXcmV4Junctions', + xcm: 'StagingXcmV4Xcm', }, LockAsset: { - asset: 'XcmV3MultiAsset', - unlocker: 'StagingXcmV3MultiLocation', + asset: 'StagingXcmV4Asset', + unlocker: 'StagingXcmV4Location', }, UnlockAsset: { - asset: 'XcmV3MultiAsset', - target: 'StagingXcmV3MultiLocation', + asset: 'StagingXcmV4Asset', + target: 'StagingXcmV4Location', }, NoteUnlockable: { - asset: 'XcmV3MultiAsset', - owner: 'StagingXcmV3MultiLocation', + asset: 'StagingXcmV4Asset', + owner: 'StagingXcmV4Location', }, RequestUnlock: { - asset: 'XcmV3MultiAsset', - locker: 'StagingXcmV3MultiLocation', + asset: 'StagingXcmV4Asset', + locker: 'StagingXcmV4Location', }, SetFeesMode: { jitWithdraw: 'bool', }, SetTopic: '[u8;32]', ClearTopic: 'Null', - AliasOrigin: 'StagingXcmV3MultiLocation', + AliasOrigin: 'StagingXcmV4Location', UnpaidExecution: { weightLimit: 'XcmV3WeightLimit', - checkOrigin: 'Option' + checkOrigin: 'Option' } } }, /** - * Lookup85: xcm::v3::multiasset::MultiAssets + * Lookup93: staging_xcm::v4::asset::Assets **/ - XcmV3MultiassetMultiAssets: 'Vec', + StagingXcmV4AssetAssets: 'Vec', /** - * Lookup87: xcm::v3::multiasset::MultiAsset + * Lookup95: staging_xcm::v4::asset::Asset **/ - XcmV3MultiAsset: { - id: 'XcmV3MultiassetAssetId', - fun: 'XcmV3MultiassetFungibility' + StagingXcmV4Asset: { + id: 'StagingXcmV4AssetAssetId', + fun: 'StagingXcmV4AssetFungibility' }, /** - * Lookup88: xcm::v3::multiasset::AssetId + * Lookup96: staging_xcm::v4::asset::AssetId **/ - XcmV3MultiassetAssetId: { - _enum: { - Concrete: 'StagingXcmV3MultiLocation', - Abstract: '[u8;32]' - } - }, + StagingXcmV4AssetAssetId: 'StagingXcmV4Location', /** - * Lookup89: xcm::v3::multiasset::Fungibility + * Lookup97: staging_xcm::v4::asset::Fungibility **/ - XcmV3MultiassetFungibility: { + StagingXcmV4AssetFungibility: { _enum: { Fungible: 'Compact', - NonFungible: 'XcmV3MultiassetAssetInstance' + NonFungible: 'StagingXcmV4AssetAssetInstance' } }, /** - * Lookup90: xcm::v3::multiasset::AssetInstance + * Lookup98: staging_xcm::v4::asset::AssetInstance **/ - XcmV3MultiassetAssetInstance: { + StagingXcmV4AssetAssetInstance: { _enum: { Undefined: 'Null', Index: 'Compact', @@ -1375,22 +1401,22 @@ export default { } }, /** - * Lookup92: xcm::v3::Response + * Lookup100: staging_xcm::v4::Response **/ - XcmV3Response: { + StagingXcmV4Response: { _enum: { Null: 'Null', - Assets: 'XcmV3MultiassetMultiAssets', + Assets: 'StagingXcmV4AssetAssets', ExecutionResult: 'Option<(u32,XcmV3TraitsError)>', Version: 'u32', - PalletsInfo: 'Vec', + PalletsInfo: 'Vec', DispatchResult: 'XcmV3MaybeErrorCode' } }, /** - * Lookup96: xcm::v3::PalletInfo + * Lookup104: staging_xcm::v4::PalletInfo **/ - XcmV3PalletInfo: { + StagingXcmV4PalletInfo: { index: 'Compact', name: 'Bytes', moduleName: 'Bytes', @@ -1399,7 +1425,7 @@ export default { patch: 'Compact' }, /** - * Lookup99: xcm::v3::MaybeErrorCode + * Lookup107: xcm::v3::MaybeErrorCode **/ XcmV3MaybeErrorCode: { _enum: { @@ -1409,60 +1435,60 @@ export default { } }, /** - * Lookup102: xcm::v2::OriginKind + * Lookup110: xcm::v2::OriginKind **/ XcmV2OriginKind: { _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm'] }, /** - * Lookup103: xcm::double_encoded::DoubleEncoded + * Lookup111: xcm::double_encoded::DoubleEncoded **/ XcmDoubleEncoded: { encoded: 'Bytes' }, /** - * Lookup104: xcm::v3::QueryResponseInfo + * Lookup112: staging_xcm::v4::QueryResponseInfo **/ - XcmV3QueryResponseInfo: { - destination: 'StagingXcmV3MultiLocation', + StagingXcmV4QueryResponseInfo: { + destination: 'StagingXcmV4Location', queryId: 'Compact', maxWeight: 'SpWeightsWeightV2Weight' }, /** - * Lookup105: xcm::v3::multiasset::MultiAssetFilter + * Lookup113: staging_xcm::v4::asset::AssetFilter **/ - XcmV3MultiassetMultiAssetFilter: { + StagingXcmV4AssetAssetFilter: { _enum: { - Definite: 'XcmV3MultiassetMultiAssets', - Wild: 'XcmV3MultiassetWildMultiAsset' + Definite: 'StagingXcmV4AssetAssets', + Wild: 'StagingXcmV4AssetWildAsset' } }, /** - * Lookup106: xcm::v3::multiasset::WildMultiAsset + * Lookup114: staging_xcm::v4::asset::WildAsset **/ - XcmV3MultiassetWildMultiAsset: { + StagingXcmV4AssetWildAsset: { _enum: { All: 'Null', AllOf: { - id: 'XcmV3MultiassetAssetId', - fun: 'XcmV3MultiassetWildFungibility', + id: 'StagingXcmV4AssetAssetId', + fun: 'StagingXcmV4AssetWildFungibility', }, AllCounted: 'Compact', AllOfCounted: { - id: 'XcmV3MultiassetAssetId', - fun: 'XcmV3MultiassetWildFungibility', + id: 'StagingXcmV4AssetAssetId', + fun: 'StagingXcmV4AssetWildFungibility', count: 'Compact' } } }, /** - * Lookup107: xcm::v3::multiasset::WildFungibility + * Lookup115: staging_xcm::v4::asset::WildFungibility **/ - XcmV3MultiassetWildFungibility: { + StagingXcmV4AssetWildFungibility: { _enum: ['Fungible', 'NonFungible'] }, /** - * Lookup108: xcm::v3::WeightLimit + * Lookup116: xcm::v3::WeightLimit **/ XcmV3WeightLimit: { _enum: { @@ -1471,29 +1497,30 @@ export default { } }, /** - * Lookup109: xcm::VersionedMultiAssets + * Lookup117: xcm::VersionedAssets **/ - XcmVersionedMultiAssets: { + XcmVersionedAssets: { _enum: { __Unused0: 'Null', V2: 'XcmV2MultiassetMultiAssets', __Unused2: 'Null', - V3: 'XcmV3MultiassetMultiAssets' + V3: 'XcmV3MultiassetMultiAssets', + V4: 'StagingXcmV4AssetAssets' } }, /** - * Lookup110: xcm::v2::multiasset::MultiAssets + * Lookup118: xcm::v2::multiasset::MultiAssets **/ XcmV2MultiassetMultiAssets: 'Vec', /** - * Lookup112: xcm::v2::multiasset::MultiAsset + * Lookup120: xcm::v2::multiasset::MultiAsset **/ XcmV2MultiAsset: { id: 'XcmV2MultiassetAssetId', fun: 'XcmV2MultiassetFungibility' }, /** - * Lookup113: xcm::v2::multiasset::AssetId + * Lookup121: xcm::v2::multiasset::AssetId **/ XcmV2MultiassetAssetId: { _enum: { @@ -1502,14 +1529,14 @@ export default { } }, /** - * Lookup114: xcm::v2::multilocation::MultiLocation + * Lookup122: xcm::v2::multilocation::MultiLocation **/ XcmV2MultiLocation: { parents: 'u8', interior: 'XcmV2MultilocationJunctions' }, /** - * Lookup115: xcm::v2::multilocation::Junctions + * Lookup123: xcm::v2::multilocation::Junctions **/ XcmV2MultilocationJunctions: { _enum: { @@ -1525,7 +1552,7 @@ export default { } }, /** - * Lookup116: xcm::v2::junction::Junction + * Lookup124: xcm::v2::junction::Junction **/ XcmV2Junction: { _enum: { @@ -1553,7 +1580,7 @@ export default { } }, /** - * Lookup117: xcm::v2::NetworkId + * Lookup125: xcm::v2::NetworkId **/ XcmV2NetworkId: { _enum: { @@ -1564,7 +1591,7 @@ export default { } }, /** - * Lookup119: xcm::v2::BodyId + * Lookup127: xcm::v2::BodyId **/ XcmV2BodyId: { _enum: { @@ -1581,7 +1608,7 @@ export default { } }, /** - * Lookup120: xcm::v2::BodyPart + * Lookup128: xcm::v2::BodyPart **/ XcmV2BodyPart: { _enum: { @@ -1604,7 +1631,7 @@ export default { } }, /** - * Lookup121: xcm::v2::multiasset::Fungibility + * Lookup129: xcm::v2::multiasset::Fungibility **/ XcmV2MultiassetFungibility: { _enum: { @@ -1613,7 +1640,7 @@ export default { } }, /** - * Lookup122: xcm::v2::multiasset::AssetInstance + * Lookup130: xcm::v2::multiasset::AssetInstance **/ XcmV2MultiassetAssetInstance: { _enum: { @@ -1627,97 +1654,188 @@ export default { } }, /** - * Lookup123: xcm::VersionedMultiLocation + * Lookup131: xcm::v3::multiasset::MultiAssets + **/ + XcmV3MultiassetMultiAssets: 'Vec', + /** + * Lookup133: xcm::v3::multiasset::MultiAsset **/ - XcmVersionedMultiLocation: { + XcmV3MultiAsset: { + id: 'XcmV3MultiassetAssetId', + fun: 'XcmV3MultiassetFungibility' + }, + /** + * Lookup134: xcm::v3::multiasset::AssetId + **/ + XcmV3MultiassetAssetId: { _enum: { - __Unused0: 'Null', - V2: 'XcmV2MultiLocation', - __Unused2: 'Null', - V3: 'StagingXcmV3MultiLocation' + Concrete: 'StagingXcmV3MultiLocation', + Abstract: '[u8;32]' } }, /** - * Lookup124: cumulus_pallet_xcm::pallet::Event + * Lookup135: staging_xcm::v3::multilocation::MultiLocation **/ - CumulusPalletXcmEvent: { + StagingXcmV3MultiLocation: { + parents: 'u8', + interior: 'XcmV3Junctions' + }, + /** + * Lookup136: xcm::v3::junctions::Junctions + **/ + XcmV3Junctions: { _enum: { - InvalidFormat: '[u8;32]', - UnsupportedVersion: '[u8;32]', - ExecutedDownward: '([u8;32],XcmV3TraitsOutcome)' + Here: 'Null', + X1: 'XcmV3Junction', + X2: '(XcmV3Junction,XcmV3Junction)', + X3: '(XcmV3Junction,XcmV3Junction,XcmV3Junction)', + X4: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)', + X5: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)', + X6: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)', + X7: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)', + X8: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)' } }, /** - * Lookup125: cumulus_pallet_dmp_queue::pallet::Event + * Lookup137: xcm::v3::junction::Junction **/ - CumulusPalletDmpQueueEvent: { + XcmV3Junction: { _enum: { - StartedExport: 'Null', - Exported: { - page: 'u32', + Parachain: 'Compact', + AccountId32: { + network: 'Option', + id: '[u8;32]', }, - ExportFailed: { - page: 'u32', + AccountIndex64: { + network: 'Option', + index: 'Compact', + }, + AccountKey20: { + network: 'Option', + key: '[u8;20]', + }, + PalletInstance: 'u8', + GeneralIndex: 'Compact', + GeneralKey: { + length: 'u8', + data: '[u8;32]', }, - CompletedExport: 'Null', - StartedOverweightExport: 'Null', - ExportedOverweight: { - index: 'u64', + OnlyChild: 'Null', + Plurality: { + id: 'XcmV3JunctionBodyId', + part: 'XcmV3JunctionBodyPart', }, - ExportOverweightFailed: { - index: 'u64', + GlobalConsensus: 'XcmV3JunctionNetworkId' + } + }, + /** + * Lookup139: xcm::v3::junction::NetworkId + **/ + XcmV3JunctionNetworkId: { + _enum: { + ByGenesis: '[u8;32]', + ByFork: { + blockNumber: 'u64', + blockHash: '[u8;32]', }, - CompletedOverweightExport: 'Null', - StartedCleanup: 'Null', - CleanedSome: { - keysRemoved: 'u32', + Polkadot: 'Null', + Kusama: 'Null', + Westend: 'Null', + Rococo: 'Null', + Wococo: 'Null', + Ethereum: { + chainId: 'Compact', }, - Completed: { - error: 'bool' - } + BitcoinCore: 'Null', + BitcoinCash: 'Null', + PolkadotBulletin: 'Null' + } + }, + /** + * Lookup140: xcm::v3::multiasset::Fungibility + **/ + XcmV3MultiassetFungibility: { + _enum: { + Fungible: 'Compact', + NonFungible: 'XcmV3MultiassetAssetInstance' + } + }, + /** + * Lookup141: xcm::v3::multiasset::AssetInstance + **/ + XcmV3MultiassetAssetInstance: { + _enum: { + Undefined: 'Null', + Index: 'Compact', + Array4: '[u8;4]', + Array8: '[u8;8]', + Array16: '[u8;16]', + Array32: '[u8;32]' } }, /** - * Lookup126: orml_xtokens::module::Event + * Lookup142: xcm::VersionedLocation + **/ + XcmVersionedLocation: { + _enum: { + __Unused0: 'Null', + V2: 'XcmV2MultiLocation', + __Unused2: 'Null', + V3: 'StagingXcmV3MultiLocation', + V4: 'StagingXcmV4Location' + } + }, + /** + * Lookup143: cumulus_pallet_xcm::pallet::Event + **/ + CumulusPalletXcmEvent: { + _enum: { + InvalidFormat: '[u8;32]', + UnsupportedVersion: '[u8;32]', + ExecutedDownward: '([u8;32],StagingXcmV4TraitsOutcome)' + } + }, + /** + * Lookup144: orml_xtokens::module::Event **/ OrmlXtokensModuleEvent: { _enum: { - TransferredMultiAssets: { + TransferredAssets: { sender: 'AccountId32', - assets: 'XcmV3MultiassetMultiAssets', - fee: 'XcmV3MultiAsset', - dest: 'StagingXcmV3MultiLocation' + assets: 'StagingXcmV4AssetAssets', + fee: 'StagingXcmV4Asset', + dest: 'StagingXcmV4Location' } } }, /** - * Lookup127: orml_unknown_tokens::module::Event + * Lookup145: orml_unknown_tokens::module::Event **/ OrmlUnknownTokensModuleEvent: { _enum: { Deposited: { - asset: 'XcmV3MultiAsset', - who: 'StagingXcmV3MultiLocation', + asset: 'StagingXcmV4Asset', + who: 'StagingXcmV4Location', }, Withdrawn: { - asset: 'XcmV3MultiAsset', - who: 'StagingXcmV3MultiLocation' + asset: 'StagingXcmV4Asset', + who: 'StagingXcmV4Location' } } }, /** - * Lookup128: orml_xcm::module::Event + * Lookup146: orml_xcm::module::Event **/ OrmlXcmModuleEvent: { _enum: { Sent: { - to: 'StagingXcmV3MultiLocation', - message: 'XcmV3Xcm' + to: 'StagingXcmV4Location', + message: 'StagingXcmV4Xcm' } } }, /** - * Lookup129: pallet_message_queue::pallet::Event + * Lookup147: pallet_message_queue::pallet::Event **/ PalletMessageQueueEvent: { _enum: { @@ -1745,7 +1863,7 @@ export default { } }, /** - * Lookup130: cumulus_primitives_core::AggregateMessageOrigin + * Lookup148: cumulus_primitives_core::AggregateMessageOrigin **/ CumulusPrimitivesCoreAggregateMessageOrigin: { _enum: { @@ -1755,7 +1873,7 @@ export default { } }, /** - * Lookup132: frame_support::traits::messages::ProcessMessageError + * Lookup150: frame_support::traits::messages::ProcessMessageError **/ FrameSupportMessagesProcessMessageError: { _enum: { @@ -1767,7 +1885,7 @@ export default { } }, /** - * Lookup133: orml_authority::module::Event + * Lookup151: orml_authority::module::Event **/ OrmlAuthorityModuleEvent: { _enum: { @@ -1815,7 +1933,7 @@ export default { } }, /** - * Lookup134: acala_runtime::OriginCaller + * Lookup152: acala_runtime::OriginCaller **/ AcalaRuntimeOriginCaller: { _enum: { @@ -1890,7 +2008,7 @@ export default { } }, /** - * Lookup135: frame_support::dispatch::RawOrigin + * Lookup153: frame_support::dispatch::RawOrigin **/ FrameSupportDispatchRawOrigin: { _enum: { @@ -1900,16 +2018,16 @@ export default { } }, /** - * Lookup136: pallet_xcm::pallet::Origin + * Lookup154: pallet_xcm::pallet::Origin **/ PalletXcmOrigin: { _enum: { - Xcm: 'StagingXcmV3MultiLocation', - Response: 'StagingXcmV3MultiLocation' + Xcm: 'StagingXcmV4Location', + Response: 'StagingXcmV4Location' } }, /** - * Lookup137: cumulus_pallet_xcm::pallet::Origin + * Lookup155: cumulus_pallet_xcm::pallet::Origin **/ CumulusPalletXcmOrigin: { _enum: { @@ -1918,14 +2036,14 @@ export default { } }, /** - * Lookup138: orml_authority::DelayedOrigin + * Lookup156: orml_authority::DelayedOrigin **/ OrmlAuthorityDelayedOrigin: { delay: 'u32', origin: 'AcalaRuntimeOriginCaller' }, /** - * Lookup139: pallet_collective::RawOrigin + * Lookup157: pallet_collective::RawOrigin **/ PalletCollectiveRawOrigin: { _enum: { @@ -1935,11 +2053,11 @@ export default { } }, /** - * Lookup143: sp_core::Void + * Lookup161: sp_core::Void **/ SpCoreVoid: 'Null', /** - * Lookup145: pallet_collective::pallet::Event + * Lookup163: pallet_collective::pallet::Event **/ PalletCollectiveEvent: { _enum: { @@ -1978,13 +2096,13 @@ export default { } }, /** - * Lookup146: pallet_membership::pallet::Event + * Lookup164: pallet_membership::pallet::Event **/ PalletMembershipEvent: { _enum: ['MemberAdded', 'MemberRemoved', 'MembersSwapped', 'MembersReset', 'KeyChanged', 'Dummy'] }, /** - * Lookup153: pallet_democracy::pallet::Event + * Lookup171: pallet_democracy::pallet::Event **/ PalletDemocracyEvent: { _enum: { @@ -2062,13 +2180,13 @@ export default { } }, /** - * Lookup154: pallet_democracy::vote_threshold::VoteThreshold + * Lookup172: pallet_democracy::vote_threshold::VoteThreshold **/ PalletDemocracyVoteThreshold: { _enum: ['SuperMajorityApprove', 'SuperMajorityAgainst', 'SimpleMajority'] }, /** - * Lookup155: pallet_democracy::vote::AccountVote + * Lookup173: pallet_democracy::vote::AccountVote **/ PalletDemocracyVoteAccountVote: { _enum: { @@ -2083,7 +2201,7 @@ export default { } }, /** - * Lookup157: pallet_democracy::types::MetadataOwner + * Lookup175: pallet_democracy::types::MetadataOwner **/ PalletDemocracyMetadataOwner: { _enum: { @@ -2093,7 +2211,7 @@ export default { } }, /** - * Lookup158: orml_oracle::module::Event + * Lookup176: orml_oracle::module::Event **/ OrmlOracleModuleEvent: { _enum: { @@ -2104,7 +2222,7 @@ export default { } }, /** - * Lookup162: orml_auction::module::Event + * Lookup180: orml_auction::module::Event **/ OrmlAuctionModuleEvent: { _enum: { @@ -2116,7 +2234,7 @@ export default { } }, /** - * Lookup163: orml_parameters::module::Event + * Lookup181: orml_parameters::module::Event **/ OrmlParametersModuleEvent: { _enum: { @@ -2126,7 +2244,7 @@ export default { } }, /** - * Lookup164: acala_runtime::RuntimeParameters + * Lookup182: acala_runtime::RuntimeParameters **/ AcalaRuntimeRuntimeParameters: { _enum: { @@ -2134,7 +2252,7 @@ export default { } }, /** - * Lookup165: module_earning::Parameters + * Lookup183: module_earning::Parameters **/ ModuleEarningParameters: { _enum: { @@ -2142,11 +2260,11 @@ export default { } }, /** - * Lookup166: module_earning::InstantUnstakeFee + * Lookup184: module_earning::InstantUnstakeFee **/ ModuleEarningInstantUnstakeFee: 'Null', /** - * Lookup169: module_prices::module::Event + * Lookup187: module_prices::module::Event **/ ModulePricesModuleEvent: { _enum: { @@ -2160,7 +2278,7 @@ export default { } }, /** - * Lookup170: module_dex::module::Event + * Lookup188: module_dex::module::Event **/ ModuleDexModuleEvent: { _enum: { @@ -2222,11 +2340,11 @@ export default { } }, /** - * Lookup173: acala_primitives::TradingPair + * Lookup191: acala_primitives::TradingPair **/ AcalaPrimitivesTradingPair: '(AcalaPrimitivesCurrencyCurrencyId,AcalaPrimitivesCurrencyCurrencyId)', /** - * Lookup174: module_earning::module::Event + * Lookup192: module_earning::module::Event **/ ModuleEarningModuleEvent: { _enum: { @@ -2254,7 +2372,7 @@ export default { } }, /** - * Lookup175: module_auction_manager::module::Event + * Lookup193: module_auction_manager::module::Event **/ ModuleAuctionManagerModuleEvent: { _enum: { @@ -2291,7 +2409,7 @@ export default { } }, /** - * Lookup176: module_loans::module::Event + * Lookup194: module_loans::module::Event **/ ModuleLoansModuleEvent: { _enum: { @@ -2315,7 +2433,7 @@ export default { } }, /** - * Lookup178: module_honzon::module::Event + * Lookup196: module_honzon::module::Event **/ ModuleHonzonModuleEvent: { _enum: { @@ -2340,7 +2458,7 @@ export default { } }, /** - * Lookup179: module_cdp_treasury::module::Event + * Lookup197: module_cdp_treasury::module::Event **/ ModuleCdpTreasuryModuleEvent: { _enum: { @@ -2354,7 +2472,7 @@ export default { } }, /** - * Lookup180: module_cdp_engine::module::Event + * Lookup198: module_cdp_engine::module::Event **/ ModuleCdpEngineModuleEvent: { _enum: { @@ -2405,7 +2523,7 @@ export default { } }, /** - * Lookup182: module_emergency_shutdown::module::Event + * Lookup200: module_emergency_shutdown::module::Event **/ ModuleEmergencyShutdownModuleEvent: { _enum: { @@ -2423,7 +2541,7 @@ export default { } }, /** - * Lookup185: module_homa::module::Event + * Lookup203: module_homa::module::Event **/ ModuleHomaModuleEvent: { _enum: { @@ -2493,14 +2611,14 @@ export default { } }, /** - * Lookup187: module_homa::module::UnlockChunk + * Lookup205: module_homa::module::UnlockChunk **/ ModuleHomaModuleUnlockChunk: { value: 'Compact', era: 'Compact' }, /** - * Lookup188: module_xcm_interface::module::Event + * Lookup206: module_xcm_interface::module::Event **/ ModuleXcmInterfaceModuleEvent: { _enum: { @@ -2515,7 +2633,7 @@ export default { } }, /** - * Lookup189: module_xcm_interface::module::XcmInterfaceOperation + * Lookup207: module_xcm_interface::module::XcmInterfaceOperation **/ ModuleXcmInterfaceModuleXcmInterfaceOperation: { _enum: { @@ -2523,12 +2641,12 @@ export default { HomaWithdrawUnbonded: 'Null', HomaBondExtra: 'Null', HomaUnbond: 'Null', - ParachainFee: 'StagingXcmV3MultiLocation', + ParachainFee: 'StagingXcmV4Location', ProxyReserveTransferAssets: 'Null' } }, /** - * Lookup190: module_incentives::module::Event + * Lookup208: module_incentives::module::Event **/ ModuleIncentivesModuleEvent: { _enum: { @@ -2565,7 +2683,7 @@ export default { } }, /** - * Lookup191: module_support::incentives::PoolId + * Lookup209: module_support::incentives::PoolId **/ ModuleSupportIncentivesPoolId: { _enum: { @@ -2575,7 +2693,7 @@ export default { } }, /** - * Lookup193: module_nft::module::Event + * Lookup211: module_nft::module::Event **/ ModuleNftModuleEvent: { _enum: { @@ -2613,18 +2731,18 @@ export default { } }, /** - * Lookup194: module_asset_registry::module::Event + * Lookup212: module_asset_registry::module::Event **/ ModuleAssetRegistryModuleEvent: { _enum: { ForeignAssetRegistered: { assetId: 'u16', - assetAddress: 'StagingXcmV3MultiLocation', + assetAddress: 'StagingXcmV4Location', metadata: 'AcalaPrimitivesCurrencyAssetMetadata', }, ForeignAssetUpdated: { assetId: 'u16', - assetAddress: 'StagingXcmV3MultiLocation', + assetAddress: 'StagingXcmV4Location', metadata: 'AcalaPrimitivesCurrencyAssetMetadata', }, AssetRegistered: { @@ -2638,7 +2756,7 @@ export default { } }, /** - * Lookup195: acala_primitives::currency::AssetMetadata + * Lookup213: acala_primitives::currency::AssetMetadata **/ AcalaPrimitivesCurrencyAssetMetadata: { name: 'Bytes', @@ -2647,7 +2765,7 @@ export default { minimalBalance: 'u128' }, /** - * Lookup196: acala_primitives::currency::AssetIds + * Lookup214: acala_primitives::currency::AssetIds **/ AcalaPrimitivesCurrencyAssetIds: { _enum: { @@ -2658,7 +2776,7 @@ export default { } }, /** - * Lookup197: module_liquid_crowdloan::module::Event + * Lookup215: module_liquid_crowdloan::module::Event **/ ModuleLiquidCrowdloanModuleEvent: { _enum: { @@ -2675,7 +2793,7 @@ export default { } }, /** - * Lookup198: module_evm::module::Event + * Lookup216: module_evm::module::Event **/ ModuleEvmModuleEvent: { _enum: { @@ -2732,7 +2850,7 @@ export default { } }, /** - * Lookup200: ethereum::log::Log + * Lookup218: ethereum::log::Log **/ EthereumLog: { address: 'H160', @@ -2740,7 +2858,7 @@ export default { data: 'Bytes' }, /** - * Lookup203: evm_core::error::ExitReason + * Lookup221: evm_core::error::ExitReason **/ EvmCoreErrorExitReason: { _enum: { @@ -2751,13 +2869,13 @@ export default { } }, /** - * Lookup204: evm_core::error::ExitSucceed + * Lookup222: evm_core::error::ExitSucceed **/ EvmCoreErrorExitSucceed: { _enum: ['Stopped', 'Returned', 'Suicided'] }, /** - * Lookup205: evm_core::error::ExitError + * Lookup223: evm_core::error::ExitError **/ EvmCoreErrorExitError: { _enum: { @@ -2780,13 +2898,13 @@ export default { } }, /** - * Lookup209: evm_core::error::ExitRevert + * Lookup227: evm_core::error::ExitRevert **/ EvmCoreErrorExitRevert: { _enum: ['Reverted'] }, /** - * Lookup210: evm_core::error::ExitFatal + * Lookup228: evm_core::error::ExitFatal **/ EvmCoreErrorExitFatal: { _enum: { @@ -2797,7 +2915,7 @@ export default { } }, /** - * Lookup211: module_evm_accounts::module::Event + * Lookup229: module_evm_accounts::module::Event **/ ModuleEvmAccountsModuleEvent: { _enum: { @@ -2808,7 +2926,7 @@ export default { } }, /** - * Lookup212: nutsfinance_stable_asset::pallet::Event + * Lookup230: nutsfinance_stable_asset::pallet::Event **/ NutsfinanceStableAssetEvent: { _enum: { @@ -2917,7 +3035,7 @@ export default { } }, /** - * Lookup213: cumulus_pallet_parachain_system::pallet::Event + * Lookup231: cumulus_pallet_parachain_system::pallet::Event **/ CumulusPalletParachainSystemEvent: { _enum: { @@ -2939,7 +3057,7 @@ export default { } }, /** - * Lookup214: pallet_sudo::pallet::Event + * Lookup232: pallet_sudo::pallet::Event **/ PalletSudoEvent: { _enum: { @@ -2960,7 +3078,7 @@ export default { } }, /** - * Lookup215: frame_system::Phase + * Lookup233: frame_system::Phase **/ FrameSystemPhase: { _enum: { @@ -2970,21 +3088,21 @@ export default { } }, /** - * Lookup217: frame_system::LastRuntimeUpgradeInfo + * Lookup235: frame_system::LastRuntimeUpgradeInfo **/ FrameSystemLastRuntimeUpgradeInfo: { specVersion: 'Compact', specName: 'Text' }, /** - * Lookup218: frame_system::CodeUpgradeAuthorization + * Lookup236: frame_system::CodeUpgradeAuthorization **/ FrameSystemCodeUpgradeAuthorization: { codeHash: 'H256', checkVersion: 'bool' }, /** - * Lookup219: frame_system::pallet::Call + * Lookup237: frame_system::pallet::Call **/ FrameSystemCall: { _enum: { @@ -3029,7 +3147,7 @@ export default { } }, /** - * Lookup223: frame_system::limits::BlockWeights + * Lookup241: frame_system::limits::BlockWeights **/ FrameSystemLimitsBlockWeights: { baseBlock: 'SpWeightsWeightV2Weight', @@ -3037,7 +3155,7 @@ export default { perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass' }, /** - * Lookup224: frame_support::dispatch::PerDispatchClass + * Lookup242: frame_support::dispatch::PerDispatchClass **/ FrameSupportDispatchPerDispatchClassWeightsPerClass: { normal: 'FrameSystemLimitsWeightsPerClass', @@ -3045,7 +3163,7 @@ export default { mandatory: 'FrameSystemLimitsWeightsPerClass' }, /** - * Lookup225: frame_system::limits::WeightsPerClass + * Lookup243: frame_system::limits::WeightsPerClass **/ FrameSystemLimitsWeightsPerClass: { baseExtrinsic: 'SpWeightsWeightV2Weight', @@ -3054,13 +3172,13 @@ export default { reserved: 'Option' }, /** - * Lookup227: frame_system::limits::BlockLength + * Lookup245: frame_system::limits::BlockLength **/ FrameSystemLimitsBlockLength: { max: 'FrameSupportDispatchPerDispatchClassU32' }, /** - * Lookup228: frame_support::dispatch::PerDispatchClass + * Lookup246: frame_support::dispatch::PerDispatchClass **/ FrameSupportDispatchPerDispatchClassU32: { normal: 'u32', @@ -3068,14 +3186,14 @@ export default { mandatory: 'u32' }, /** - * Lookup229: sp_weights::RuntimeDbWeight + * Lookup247: sp_weights::RuntimeDbWeight **/ SpWeightsRuntimeDbWeight: { read: 'u64', write: 'u64' }, /** - * Lookup230: sp_version::RuntimeVersion + * Lookup248: sp_version::RuntimeVersion **/ SpVersionRuntimeVersion: { specName: 'Text', @@ -3088,13 +3206,13 @@ export default { stateVersion: 'u8' }, /** - * Lookup234: frame_system::pallet::Error + * Lookup252: frame_system::pallet::Error **/ FrameSystemError: { - _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered', 'NothingAuthorized', 'Unauthorized'] + _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered', 'MultiBlockMigrationsOngoing', 'NothingAuthorized', 'Unauthorized'] }, /** - * Lookup235: pallet_timestamp::pallet::Call + * Lookup253: pallet_timestamp::pallet::Call **/ PalletTimestampCall: { _enum: { @@ -3104,7 +3222,7 @@ export default { } }, /** - * Lookup238: pallet_scheduler::Scheduled, BlockNumber, acala_runtime::OriginCaller, sp_core::crypto::AccountId32> + * Lookup256: pallet_scheduler::Scheduled, BlockNumber, acala_runtime::OriginCaller, sp_core::crypto::AccountId32> **/ PalletSchedulerScheduled: { maybeId: 'Option<[u8;32]>', @@ -3114,7 +3232,7 @@ export default { origin: 'AcalaRuntimeOriginCaller' }, /** - * Lookup239: frame_support::traits::preimages::Bounded + * Lookup257: frame_support::traits::preimages::Bounded **/ FrameSupportPreimagesBounded: { _enum: { @@ -3135,7 +3253,7 @@ export default { } }, /** - * Lookup241: pallet_scheduler::pallet::Call + * Lookup259: pallet_scheduler::pallet::Call **/ PalletSchedulerCall: { _enum: { @@ -3170,12 +3288,28 @@ export default { after: 'u32', maybePeriodic: 'Option<(u32,u32)>', priority: 'u8', - call: 'Call' + call: 'Call', + }, + set_retry: { + task: '(u32,u32)', + retries: 'u8', + period: 'u32', + }, + set_retry_named: { + id: '[u8;32]', + retries: 'u8', + period: 'u32', + }, + cancel_retry: { + task: '(u32,u32)', + }, + cancel_retry_named: { + id: '[u8;32]' } } }, /** - * Lookup243: pallet_utility::pallet::Call + * Lookup261: pallet_utility::pallet::Call **/ PalletUtilityCall: { _enum: { @@ -3203,7 +3337,7 @@ export default { } }, /** - * Lookup245: pallet_multisig::pallet::Call + * Lookup263: pallet_multisig::pallet::Call **/ PalletMultisigCall: { _enum: { @@ -3234,7 +3368,7 @@ export default { } }, /** - * Lookup247: pallet_proxy::pallet::Call + * Lookup265: pallet_proxy::pallet::Call **/ PalletProxyCall: { _enum: { @@ -3287,7 +3421,7 @@ export default { } }, /** - * Lookup250: module_transaction_pause::module::Call + * Lookup268: module_transaction_pause::module::Call **/ ModuleTransactionPauseModuleCall: { _enum: { @@ -3308,7 +3442,7 @@ export default { } }, /** - * Lookup251: module_idle_scheduler::module::Call + * Lookup269: module_idle_scheduler::module::Call **/ ModuleIdleSchedulerModuleCall: { _enum: { @@ -3318,7 +3452,7 @@ export default { } }, /** - * Lookup252: pallet_preimage::pallet::Call + * Lookup270: pallet_preimage::pallet::Call **/ PalletPreimageCall: { _enum: { @@ -3349,7 +3483,7 @@ export default { } }, /** - * Lookup253: pallet_balances::pallet::Call + * Lookup271: pallet_balances::pallet::Call **/ PalletBalancesCall: { _enum: { @@ -3381,12 +3515,22 @@ export default { __Unused7: 'Null', force_set_balance: { who: 'MultiAddress', - newFree: 'Compact' + newFree: 'Compact', + }, + force_adjust_total_issuance: { + direction: 'PalletBalancesAdjustmentDirection', + delta: 'Compact' } } }, /** - * Lookup254: module_currencies::module::Call + * Lookup272: pallet_balances::types::AdjustmentDirection + **/ + PalletBalancesAdjustmentDirection: { + _enum: ['Increase', 'Decrease'] + }, + /** + * Lookup273: module_currencies::module::Call **/ ModuleCurrenciesModuleCall: { _enum: { @@ -3422,7 +3566,7 @@ export default { } }, /** - * Lookup255: orml_vesting::module::Call + * Lookup274: orml_vesting::module::Call **/ OrmlVestingModuleCall: { _enum: { @@ -3441,7 +3585,7 @@ export default { } }, /** - * Lookup257: module_transaction_payment::module::Call + * Lookup276: module_transaction_payment::module::Call **/ ModuleTransactionPaymentModuleCall: { _enum: { @@ -3472,7 +3616,7 @@ export default { } }, /** - * Lookup260: module_support::dex::AggregatedSwapPath + * Lookup279: module_support::dex::AggregatedSwapPath **/ ModuleSupportDexAggregatedSwapPath: { _enum: { @@ -3481,7 +3625,7 @@ export default { } }, /** - * Lookup261: pallet_treasury::pallet::Call + * Lookup280: pallet_treasury::pallet::Call **/ PalletTreasuryCall: { _enum: { @@ -3520,7 +3664,7 @@ export default { } }, /** - * Lookup263: pallet_bounties::pallet::Call + * Lookup282: pallet_bounties::pallet::Call **/ PalletBountiesCall: { _enum: { @@ -3559,7 +3703,7 @@ export default { } }, /** - * Lookup264: pallet_tips::pallet::Call + * Lookup283: pallet_tips::pallet::Call **/ PalletTipsCall: { _enum: { @@ -3600,7 +3744,7 @@ export default { } }, /** - * Lookup265: module_collator_selection::pallet::Call + * Lookup284: module_collator_selection::pallet::Call **/ ModuleCollatorSelectionCall: { _enum: { @@ -3625,7 +3769,7 @@ export default { } }, /** - * Lookup266: pallet_session::pallet::Call + * Lookup285: pallet_session::pallet::Call **/ PalletSessionCall: { _enum: { @@ -3640,21 +3784,21 @@ export default { } }, /** - * Lookup267: acala_runtime::SessionKeys + * Lookup286: acala_runtime::SessionKeys **/ AcalaRuntimeSessionKeys: { aura: 'SpConsensusAuraSr25519AppSr25519Public' }, /** - * Lookup268: sp_consensus_aura::sr25519::app_sr25519::Public + * Lookup287: sp_consensus_aura::sr25519::app_sr25519::Public **/ SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public', /** - * Lookup269: sp_core::sr25519::Public + * Lookup288: sp_core::sr25519::Public **/ SpCoreSr25519Public: '[u8;32]', /** - * Lookup270: module_session_manager::module::Call + * Lookup289: module_session_manager::module::Call **/ ModuleSessionManagerModuleCall: { _enum: { @@ -3665,7 +3809,7 @@ export default { } }, /** - * Lookup271: cumulus_pallet_xcmp_queue::pallet::Call + * Lookup290: cumulus_pallet_xcmp_queue::pallet::Call **/ CumulusPalletXcmpQueueCall: { _enum: { @@ -3693,24 +3837,24 @@ export default { } }, /** - * Lookup272: pallet_xcm::pallet::Call + * Lookup291: pallet_xcm::pallet::Call **/ PalletXcmCall: { _enum: { send: { - dest: 'XcmVersionedMultiLocation', + dest: 'XcmVersionedLocation', message: 'XcmVersionedXcm', }, teleport_assets: { - dest: 'XcmVersionedMultiLocation', - beneficiary: 'XcmVersionedMultiLocation', - assets: 'XcmVersionedMultiAssets', + dest: 'XcmVersionedLocation', + beneficiary: 'XcmVersionedLocation', + assets: 'XcmVersionedAssets', feeAssetItem: 'u32', }, reserve_transfer_assets: { - dest: 'XcmVersionedMultiLocation', - beneficiary: 'XcmVersionedMultiLocation', - assets: 'XcmVersionedMultiAssets', + dest: 'XcmVersionedLocation', + beneficiary: 'XcmVersionedLocation', + assets: 'XcmVersionedAssets', feeAssetItem: 'u32', }, execute: { @@ -3718,29 +3862,29 @@ export default { maxWeight: 'SpWeightsWeightV2Weight', }, force_xcm_version: { - location: 'StagingXcmV3MultiLocation', + location: 'StagingXcmV4Location', version: 'u32', }, force_default_xcm_version: { maybeXcmVersion: 'Option', }, force_subscribe_version_notify: { - location: 'XcmVersionedMultiLocation', + location: 'XcmVersionedLocation', }, force_unsubscribe_version_notify: { - location: 'XcmVersionedMultiLocation', + location: 'XcmVersionedLocation', }, limited_reserve_transfer_assets: { - dest: 'XcmVersionedMultiLocation', - beneficiary: 'XcmVersionedMultiLocation', - assets: 'XcmVersionedMultiAssets', + dest: 'XcmVersionedLocation', + beneficiary: 'XcmVersionedLocation', + assets: 'XcmVersionedAssets', feeAssetItem: 'u32', weightLimit: 'XcmV3WeightLimit', }, limited_teleport_assets: { - dest: 'XcmVersionedMultiLocation', - beneficiary: 'XcmVersionedMultiLocation', - assets: 'XcmVersionedMultiAssets', + dest: 'XcmVersionedLocation', + beneficiary: 'XcmVersionedLocation', + assets: 'XcmVersionedAssets', feeAssetItem: 'u32', weightLimit: 'XcmV3WeightLimit', }, @@ -3748,31 +3892,36 @@ export default { suspended: 'bool', }, transfer_assets: { - dest: 'XcmVersionedMultiLocation', - beneficiary: 'XcmVersionedMultiLocation', - assets: 'XcmVersionedMultiAssets', + dest: 'XcmVersionedLocation', + beneficiary: 'XcmVersionedLocation', + assets: 'XcmVersionedAssets', feeAssetItem: 'u32', - weightLimit: 'XcmV3WeightLimit' + weightLimit: 'XcmV3WeightLimit', + }, + claim_assets: { + assets: 'XcmVersionedAssets', + beneficiary: 'XcmVersionedLocation' } } }, /** - * Lookup273: xcm::VersionedXcm + * Lookup292: xcm::VersionedXcm **/ XcmVersionedXcm: { _enum: { __Unused0: 'Null', __Unused1: 'Null', V2: 'XcmV2Xcm', - V3: 'XcmV3Xcm' + V3: 'XcmV3Xcm', + V4: 'StagingXcmV4Xcm' } }, /** - * Lookup274: xcm::v2::Xcm + * Lookup293: xcm::v2::Xcm **/ XcmV2Xcm: 'Vec', /** - * Lookup276: xcm::v2::Instruction + * Lookup295: xcm::v2::Instruction **/ XcmV2Instruction: { _enum: { @@ -3870,7 +4019,7 @@ export default { } }, /** - * Lookup277: xcm::v2::Response + * Lookup296: xcm::v2::Response **/ XcmV2Response: { _enum: { @@ -3881,7 +4030,7 @@ export default { } }, /** - * Lookup280: xcm::v2::traits::Error + * Lookup299: xcm::v2::traits::Error **/ XcmV2TraitsError: { _enum: { @@ -3914,7 +4063,7 @@ export default { } }, /** - * Lookup281: xcm::v2::multiasset::MultiAssetFilter + * Lookup300: xcm::v2::multiasset::MultiAssetFilter **/ XcmV2MultiassetMultiAssetFilter: { _enum: { @@ -3923,7 +4072,7 @@ export default { } }, /** - * Lookup282: xcm::v2::multiasset::WildMultiAsset + * Lookup301: xcm::v2::multiasset::WildMultiAsset **/ XcmV2MultiassetWildMultiAsset: { _enum: { @@ -3935,13 +4084,13 @@ export default { } }, /** - * Lookup283: xcm::v2::multiasset::WildFungibility + * Lookup302: xcm::v2::multiasset::WildFungibility **/ XcmV2MultiassetWildFungibility: { _enum: ['Fungible', 'NonFungible'] }, /** - * Lookup284: xcm::v2::WeightLimit + * Lookup303: xcm::v2::WeightLimit **/ XcmV2WeightLimit: { _enum: { @@ -3950,76 +4099,284 @@ export default { } }, /** - * Lookup293: cumulus_pallet_dmp_queue::pallet::Call + * Lookup304: xcm::v3::Xcm + **/ + XcmV3Xcm: 'Vec', + /** + * Lookup306: xcm::v3::Instruction + **/ + XcmV3Instruction: { + _enum: { + WithdrawAsset: 'XcmV3MultiassetMultiAssets', + ReserveAssetDeposited: 'XcmV3MultiassetMultiAssets', + ReceiveTeleportedAsset: 'XcmV3MultiassetMultiAssets', + QueryResponse: { + queryId: 'Compact', + response: 'XcmV3Response', + maxWeight: 'SpWeightsWeightV2Weight', + querier: 'Option', + }, + TransferAsset: { + assets: 'XcmV3MultiassetMultiAssets', + beneficiary: 'StagingXcmV3MultiLocation', + }, + TransferReserveAsset: { + assets: 'XcmV3MultiassetMultiAssets', + dest: 'StagingXcmV3MultiLocation', + xcm: 'XcmV3Xcm', + }, + Transact: { + originKind: 'XcmV2OriginKind', + requireWeightAtMost: 'SpWeightsWeightV2Weight', + call: 'XcmDoubleEncoded', + }, + HrmpNewChannelOpenRequest: { + sender: 'Compact', + maxMessageSize: 'Compact', + maxCapacity: 'Compact', + }, + HrmpChannelAccepted: { + recipient: 'Compact', + }, + HrmpChannelClosing: { + initiator: 'Compact', + sender: 'Compact', + recipient: 'Compact', + }, + ClearOrigin: 'Null', + DescendOrigin: 'XcmV3Junctions', + ReportError: 'XcmV3QueryResponseInfo', + DepositAsset: { + assets: 'XcmV3MultiassetMultiAssetFilter', + beneficiary: 'StagingXcmV3MultiLocation', + }, + DepositReserveAsset: { + assets: 'XcmV3MultiassetMultiAssetFilter', + dest: 'StagingXcmV3MultiLocation', + xcm: 'XcmV3Xcm', + }, + ExchangeAsset: { + give: 'XcmV3MultiassetMultiAssetFilter', + want: 'XcmV3MultiassetMultiAssets', + maximal: 'bool', + }, + InitiateReserveWithdraw: { + assets: 'XcmV3MultiassetMultiAssetFilter', + reserve: 'StagingXcmV3MultiLocation', + xcm: 'XcmV3Xcm', + }, + InitiateTeleport: { + assets: 'XcmV3MultiassetMultiAssetFilter', + dest: 'StagingXcmV3MultiLocation', + xcm: 'XcmV3Xcm', + }, + ReportHolding: { + responseInfo: 'XcmV3QueryResponseInfo', + assets: 'XcmV3MultiassetMultiAssetFilter', + }, + BuyExecution: { + fees: 'XcmV3MultiAsset', + weightLimit: 'XcmV3WeightLimit', + }, + RefundSurplus: 'Null', + SetErrorHandler: 'XcmV3Xcm', + SetAppendix: 'XcmV3Xcm', + ClearError: 'Null', + ClaimAsset: { + assets: 'XcmV3MultiassetMultiAssets', + ticket: 'StagingXcmV3MultiLocation', + }, + Trap: 'Compact', + SubscribeVersion: { + queryId: 'Compact', + maxResponseWeight: 'SpWeightsWeightV2Weight', + }, + UnsubscribeVersion: 'Null', + BurnAsset: 'XcmV3MultiassetMultiAssets', + ExpectAsset: 'XcmV3MultiassetMultiAssets', + ExpectOrigin: 'Option', + ExpectError: 'Option<(u32,XcmV3TraitsError)>', + ExpectTransactStatus: 'XcmV3MaybeErrorCode', + QueryPallet: { + moduleName: 'Bytes', + responseInfo: 'XcmV3QueryResponseInfo', + }, + ExpectPallet: { + index: 'Compact', + name: 'Bytes', + moduleName: 'Bytes', + crateMajor: 'Compact', + minCrateMinor: 'Compact', + }, + ReportTransactStatus: 'XcmV3QueryResponseInfo', + ClearTransactStatus: 'Null', + UniversalOrigin: 'XcmV3Junction', + ExportMessage: { + network: 'XcmV3JunctionNetworkId', + destination: 'XcmV3Junctions', + xcm: 'XcmV3Xcm', + }, + LockAsset: { + asset: 'XcmV3MultiAsset', + unlocker: 'StagingXcmV3MultiLocation', + }, + UnlockAsset: { + asset: 'XcmV3MultiAsset', + target: 'StagingXcmV3MultiLocation', + }, + NoteUnlockable: { + asset: 'XcmV3MultiAsset', + owner: 'StagingXcmV3MultiLocation', + }, + RequestUnlock: { + asset: 'XcmV3MultiAsset', + locker: 'StagingXcmV3MultiLocation', + }, + SetFeesMode: { + jitWithdraw: 'bool', + }, + SetTopic: '[u8;32]', + ClearTopic: 'Null', + AliasOrigin: 'StagingXcmV3MultiLocation', + UnpaidExecution: { + weightLimit: 'XcmV3WeightLimit', + checkOrigin: 'Option' + } + } + }, + /** + * Lookup307: xcm::v3::Response + **/ + XcmV3Response: { + _enum: { + Null: 'Null', + Assets: 'XcmV3MultiassetMultiAssets', + ExecutionResult: 'Option<(u32,XcmV3TraitsError)>', + Version: 'u32', + PalletsInfo: 'Vec', + DispatchResult: 'XcmV3MaybeErrorCode' + } + }, + /** + * Lookup309: xcm::v3::PalletInfo + **/ + XcmV3PalletInfo: { + index: 'Compact', + name: 'Bytes', + moduleName: 'Bytes', + major: 'Compact', + minor: 'Compact', + patch: 'Compact' + }, + /** + * Lookup313: xcm::v3::QueryResponseInfo + **/ + XcmV3QueryResponseInfo: { + destination: 'StagingXcmV3MultiLocation', + queryId: 'Compact', + maxWeight: 'SpWeightsWeightV2Weight' + }, + /** + * Lookup314: xcm::v3::multiasset::MultiAssetFilter + **/ + XcmV3MultiassetMultiAssetFilter: { + _enum: { + Definite: 'XcmV3MultiassetMultiAssets', + Wild: 'XcmV3MultiassetWildMultiAsset' + } + }, + /** + * Lookup315: xcm::v3::multiasset::WildMultiAsset + **/ + XcmV3MultiassetWildMultiAsset: { + _enum: { + All: 'Null', + AllOf: { + id: 'XcmV3MultiassetAssetId', + fun: 'XcmV3MultiassetWildFungibility', + }, + AllCounted: 'Compact', + AllOfCounted: { + id: 'XcmV3MultiassetAssetId', + fun: 'XcmV3MultiassetWildFungibility', + count: 'Compact' + } + } + }, + /** + * Lookup316: xcm::v3::multiasset::WildFungibility **/ - CumulusPalletDmpQueueCall: 'Null', + XcmV3MultiassetWildFungibility: { + _enum: ['Fungible', 'NonFungible'] + }, /** - * Lookup294: orml_xtokens::module::Call + * Lookup328: orml_xtokens::module::Call **/ OrmlXtokensModuleCall: { _enum: { transfer: { currencyId: 'AcalaPrimitivesCurrencyCurrencyId', amount: 'u128', - dest: 'XcmVersionedMultiLocation', + dest: 'XcmVersionedLocation', destWeightLimit: 'XcmV3WeightLimit', }, transfer_multiasset: { - asset: 'XcmVersionedMultiAsset', - dest: 'XcmVersionedMultiLocation', + asset: 'XcmVersionedAsset', + dest: 'XcmVersionedLocation', destWeightLimit: 'XcmV3WeightLimit', }, transfer_with_fee: { currencyId: 'AcalaPrimitivesCurrencyCurrencyId', amount: 'u128', fee: 'u128', - dest: 'XcmVersionedMultiLocation', + dest: 'XcmVersionedLocation', destWeightLimit: 'XcmV3WeightLimit', }, transfer_multiasset_with_fee: { - asset: 'XcmVersionedMultiAsset', - fee: 'XcmVersionedMultiAsset', - dest: 'XcmVersionedMultiLocation', + asset: 'XcmVersionedAsset', + fee: 'XcmVersionedAsset', + dest: 'XcmVersionedLocation', destWeightLimit: 'XcmV3WeightLimit', }, transfer_multicurrencies: { currencies: 'Vec<(AcalaPrimitivesCurrencyCurrencyId,u128)>', feeItem: 'u32', - dest: 'XcmVersionedMultiLocation', + dest: 'XcmVersionedLocation', destWeightLimit: 'XcmV3WeightLimit', }, transfer_multiassets: { - assets: 'XcmVersionedMultiAssets', + assets: 'XcmVersionedAssets', feeItem: 'u32', - dest: 'XcmVersionedMultiLocation', + dest: 'XcmVersionedLocation', destWeightLimit: 'XcmV3WeightLimit' } } }, /** - * Lookup295: xcm::VersionedMultiAsset + * Lookup329: xcm::VersionedAsset **/ - XcmVersionedMultiAsset: { + XcmVersionedAsset: { _enum: { __Unused0: 'Null', V2: 'XcmV2MultiAsset', __Unused2: 'Null', - V3: 'XcmV3MultiAsset' + V3: 'XcmV3MultiAsset', + V4: 'StagingXcmV4Asset' } }, /** - * Lookup296: orml_xcm::module::Call + * Lookup330: orml_xcm::module::Call **/ OrmlXcmModuleCall: { _enum: { send_as_sovereign: { - dest: 'XcmVersionedMultiLocation', + dest: 'XcmVersionedLocation', message: 'XcmVersionedXcm' } } }, /** - * Lookup297: pallet_message_queue::pallet::Call + * Lookup331: pallet_message_queue::pallet::Call **/ PalletMessageQueueCall: { _enum: { @@ -4036,7 +4393,7 @@ export default { } }, /** - * Lookup298: orml_authority::module::Call + * Lookup332: orml_authority::module::Call **/ OrmlAuthorityModuleCall: { _enum: { @@ -4085,13 +4442,13 @@ export default { } }, /** - * Lookup299: acala_primitives::AuthoritysOriginId + * Lookup333: acala_primitives::AuthoritysOriginId **/ AcalaPrimitivesAuthoritysOriginId: { _enum: ['Root', 'Treasury', 'HonzonTreasury', 'HomaTreasury', 'TreasuryReserve'] }, /** - * Lookup300: frame_support::traits::schedule::DispatchTime + * Lookup334: frame_support::traits::schedule::DispatchTime **/ FrameSupportScheduleDispatchTime: { _enum: { @@ -4100,7 +4457,7 @@ export default { } }, /** - * Lookup301: pallet_collective::pallet::Call + * Lookup335: pallet_collective::pallet::Call **/ PalletCollectiveCall: { _enum: { @@ -4136,7 +4493,7 @@ export default { } }, /** - * Lookup302: pallet_membership::pallet::Call + * Lookup336: pallet_membership::pallet::Call **/ PalletMembershipCall: { _enum: { @@ -4166,7 +4523,7 @@ export default { } }, /** - * Lookup309: pallet_democracy::pallet::Call + * Lookup343: pallet_democracy::pallet::Call **/ PalletDemocracyCall: { _enum: { @@ -4235,13 +4592,13 @@ export default { } }, /** - * Lookup310: pallet_democracy::conviction::Conviction + * Lookup344: pallet_democracy::conviction::Conviction **/ PalletDemocracyConviction: { _enum: ['None', 'Locked1x', 'Locked2x', 'Locked3x', 'Locked4x', 'Locked5x', 'Locked6x'] }, /** - * Lookup312: orml_oracle::module::Call + * Lookup346: orml_oracle::module::Call **/ OrmlOracleModuleCall: { _enum: { @@ -4251,7 +4608,7 @@ export default { } }, /** - * Lookup315: orml_auction::module::Call + * Lookup349: orml_auction::module::Call **/ OrmlAuctionModuleCall: { _enum: { @@ -4262,7 +4619,7 @@ export default { } }, /** - * Lookup316: orml_parameters::module::Call + * Lookup350: orml_parameters::module::Call **/ OrmlParametersModuleCall: { _enum: { @@ -4272,7 +4629,7 @@ export default { } }, /** - * Lookup317: module_prices::module::Call + * Lookup351: module_prices::module::Call **/ ModulePricesModuleCall: { _enum: { @@ -4285,7 +4642,7 @@ export default { } }, /** - * Lookup318: module_dex::module::Call + * Lookup352: module_dex::module::Call **/ ModuleDexModuleCall: { _enum: { @@ -4368,7 +4725,7 @@ export default { } }, /** - * Lookup319: module_dex_oracle::module::Call + * Lookup353: module_dex_oracle::module::Call **/ ModuleDexOracleModuleCall: { _enum: { @@ -4389,7 +4746,7 @@ export default { } }, /** - * Lookup320: module_aggregated_dex::module::Call + * Lookup354: module_aggregated_dex::module::Call **/ ModuleAggregatedDexModuleCall: { _enum: { @@ -4409,7 +4766,7 @@ export default { } }, /** - * Lookup325: module_earning::module::Call + * Lookup359: module_earning::module::Call **/ ModuleEarningModuleCall: { _enum: { @@ -4429,7 +4786,7 @@ export default { } }, /** - * Lookup326: module_auction_manager::module::Call + * Lookup360: module_auction_manager::module::Call **/ ModuleAuctionManagerModuleCall: { _enum: { @@ -4439,11 +4796,11 @@ export default { } }, /** - * Lookup327: module_loans::module::Call + * Lookup361: module_loans::module::Call **/ ModuleLoansModuleCall: 'Null', /** - * Lookup328: module_honzon::module::Call + * Lookup362: module_honzon::module::Call **/ ModuleHonzonModuleCall: { _enum: { @@ -4492,7 +4849,7 @@ export default { } }, /** - * Lookup329: module_cdp_treasury::module::Call + * Lookup363: module_cdp_treasury::module::Call **/ ModuleCdpTreasuryModuleCall: { _enum: { @@ -4522,7 +4879,7 @@ export default { } }, /** - * Lookup330: module_support::dex::SwapLimit + * Lookup364: module_support::dex::SwapLimit **/ ModuleSupportDexSwapLimit: { _enum: { @@ -4531,7 +4888,7 @@ export default { } }, /** - * Lookup331: module_cdp_engine::module::Call + * Lookup365: module_cdp_engine::module::Call **/ ModuleCdpEngineModuleCall: { _enum: { @@ -4560,7 +4917,7 @@ export default { } }, /** - * Lookup332: orml_traits::Change> + * Lookup366: orml_traits::Change> **/ OrmlTraitsChangeOption: { _enum: { @@ -4569,7 +4926,7 @@ export default { } }, /** - * Lookup333: orml_traits::Change + * Lookup367: orml_traits::Change **/ OrmlTraitsChangeU128: { _enum: { @@ -4578,7 +4935,7 @@ export default { } }, /** - * Lookup334: module_emergency_shutdown::module::Call + * Lookup368: module_emergency_shutdown::module::Call **/ ModuleEmergencyShutdownModuleCall: { _enum: { @@ -4590,7 +4947,7 @@ export default { } }, /** - * Lookup335: module_homa::module::Call + * Lookup369: module_homa::module::Call **/ ModuleHomaModuleCall: { _enum: { @@ -4632,7 +4989,7 @@ export default { } }, /** - * Lookup340: module_xcm_interface::module::Call + * Lookup374: module_xcm_interface::module::Call **/ ModuleXcmInterfaceModuleCall: { _enum: { @@ -4642,7 +4999,7 @@ export default { } }, /** - * Lookup343: module_incentives::module::Call + * Lookup377: module_incentives::module::Call **/ ModuleIncentivesModuleCall: { _enum: { @@ -4670,7 +5027,7 @@ export default { } }, /** - * Lookup348: module_nft::module::Call + * Lookup382: module_nft::module::Call **/ ModuleNftModuleCall: { _enum: { @@ -4708,23 +5065,23 @@ export default { } }, /** - * Lookup350: acala_primitives::nft::ClassProperty + * Lookup384: acala_primitives::nft::ClassProperty **/ AcalaPrimitivesNftClassProperty: { _enum: ['__Unused0', 'Transferable', 'Burnable', '__Unused3', 'Mintable', '__Unused5', '__Unused6', '__Unused7', 'ClassPropertiesMutable'] }, /** - * Lookup353: module_asset_registry::module::Call + * Lookup387: module_asset_registry::module::Call **/ ModuleAssetRegistryModuleCall: { _enum: { register_foreign_asset: { - location: 'XcmVersionedMultiLocation', + location: 'XcmVersionedLocation', metadata: 'AcalaPrimitivesCurrencyAssetMetadata', }, update_foreign_asset: { foreignAssetId: 'u16', - location: 'XcmVersionedMultiLocation', + location: 'XcmVersionedLocation', metadata: 'AcalaPrimitivesCurrencyAssetMetadata', }, register_stable_asset: { @@ -4753,7 +5110,7 @@ export default { } }, /** - * Lookup354: module_liquid_crowdloan::module::Call + * Lookup388: module_liquid_crowdloan::module::Call **/ ModuleLiquidCrowdloanModuleCall: { _enum: { @@ -4769,7 +5126,7 @@ export default { } }, /** - * Lookup355: module_evm::module::Call + * Lookup389: module_evm::module::Call **/ ModuleEvmModuleCall: { _enum: { @@ -4867,7 +5224,7 @@ export default { } }, /** - * Lookup356: ethereum::transaction::TransactionAction + * Lookup390: ethereum::transaction::TransactionAction **/ EthereumTransactionTransactionAction: { _enum: { @@ -4876,14 +5233,14 @@ export default { } }, /** - * Lookup358: ethereum::transaction::AccessListItem + * Lookup392: ethereum::transaction::AccessListItem **/ EthereumTransactionAccessListItem: { address: 'H160', storageKeys: 'Vec' }, /** - * Lookup359: module_evm_accounts::module::Call + * Lookup393: module_evm_accounts::module::Call **/ ModuleEvmAccountsModuleCall: { _enum: { @@ -4895,7 +5252,7 @@ export default { } }, /** - * Lookup361: nutsfinance_stable_asset::pallet::Call + * Lookup395: nutsfinance_stable_asset::pallet::Call **/ NutsfinanceStableAssetCall: { _enum: { @@ -4960,7 +5317,7 @@ export default { } }, /** - * Lookup362: cumulus_pallet_parachain_system::pallet::Call + * Lookup396: cumulus_pallet_parachain_system::pallet::Call **/ CumulusPalletParachainSystemCall: { _enum: { @@ -4980,7 +5337,7 @@ export default { } }, /** - * Lookup363: cumulus_primitives_parachain_inherent::ParachainInherentData + * Lookup397: cumulus_primitives_parachain_inherent::ParachainInherentData **/ CumulusPrimitivesParachainInherentParachainInherentData: { validationData: 'PolkadotPrimitivesV6PersistedValidationData', @@ -4989,7 +5346,7 @@ export default { horizontalMessages: 'BTreeMap>' }, /** - * Lookup364: polkadot_primitives::v6::PersistedValidationData + * Lookup398: polkadot_primitives::v6::PersistedValidationData **/ PolkadotPrimitivesV6PersistedValidationData: { parentHead: 'Bytes', @@ -4998,27 +5355,27 @@ export default { maxPovSize: 'u32' }, /** - * Lookup366: sp_trie::storage_proof::StorageProof + * Lookup400: sp_trie::storage_proof::StorageProof **/ SpTrieStorageProof: { trieNodes: 'BTreeSet' }, /** - * Lookup369: polkadot_core_primitives::InboundDownwardMessage + * Lookup403: polkadot_core_primitives::InboundDownwardMessage **/ PolkadotCorePrimitivesInboundDownwardMessage: { sentAt: 'u32', msg: 'Bytes' }, /** - * Lookup372: polkadot_core_primitives::InboundHrmpMessage + * Lookup406: polkadot_core_primitives::InboundHrmpMessage **/ PolkadotCorePrimitivesInboundHrmpMessage: { sentAt: 'u32', data: 'Bytes' }, /** - * Lookup375: pallet_sudo::pallet::Call + * Lookup409: pallet_sudo::pallet::Call **/ PalletSudoCall: { _enum: { @@ -5043,23 +5400,31 @@ export default { } }, /** - * Lookup376: sp_runtime::traits::BlakeTwo256 + * Lookup410: sp_runtime::traits::BlakeTwo256 **/ SpRuntimeBlakeTwo256: 'Null', /** - * Lookup379: pallet_scheduler::pallet::Error + * Lookup413: pallet_scheduler::RetryConfig + **/ + PalletSchedulerRetryConfig: { + totalRetries: 'u8', + remaining: 'u8', + period: 'u32' + }, + /** + * Lookup414: pallet_scheduler::pallet::Error **/ PalletSchedulerError: { _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange', 'Named'] }, /** - * Lookup380: pallet_utility::pallet::Error + * Lookup415: pallet_utility::pallet::Error **/ PalletUtilityError: { _enum: ['TooManyCalls'] }, /** - * Lookup382: pallet_multisig::Multisig + * Lookup417: pallet_multisig::Multisig **/ PalletMultisigMultisig: { when: 'PalletMultisigTimepoint', @@ -5068,13 +5433,13 @@ export default { approvals: 'Vec' }, /** - * Lookup384: pallet_multisig::pallet::Error + * Lookup419: pallet_multisig::pallet::Error **/ PalletMultisigError: { _enum: ['MinimumThreshold', 'AlreadyApproved', 'NoApprovalsNeeded', 'TooFewSignatories', 'TooManySignatories', 'SignatoriesOutOfOrder', 'SenderInSignatories', 'NotFound', 'NotOwner', 'NoTimepoint', 'WrongTimepoint', 'UnexpectedTimepoint', 'MaxWeightTooLow', 'AlreadyStored'] }, /** - * Lookup387: pallet_proxy::ProxyDefinition + * Lookup422: pallet_proxy::ProxyDefinition **/ PalletProxyProxyDefinition: { delegate: 'AccountId32', @@ -5082,7 +5447,7 @@ export default { delay: 'u32' }, /** - * Lookup391: pallet_proxy::Announcement + * Lookup426: pallet_proxy::Announcement **/ PalletProxyAnnouncement: { real: 'AccountId32', @@ -5090,19 +5455,19 @@ export default { height: 'u32' }, /** - * Lookup393: pallet_proxy::pallet::Error + * Lookup428: pallet_proxy::pallet::Error **/ PalletProxyError: { _enum: ['TooMany', 'NotFound', 'NotProxy', 'Unproxyable', 'Duplicate', 'NoPermission', 'Unannounced', 'NoSelfProxy'] }, /** - * Lookup394: module_transaction_pause::module::Error + * Lookup429: module_transaction_pause::module::Error **/ ModuleTransactionPauseModuleError: { _enum: ['CannotPause', 'InvalidCharacter'] }, /** - * Lookup395: pallet_preimage::OldRequestStatus + * Lookup430: pallet_preimage::OldRequestStatus **/ PalletPreimageOldRequestStatus: { _enum: { @@ -5118,7 +5483,7 @@ export default { } }, /** - * Lookup398: pallet_preimage::RequestStatus> + * Lookup433: pallet_preimage::RequestStatus> **/ PalletPreimageRequestStatus: { _enum: { @@ -5134,13 +5499,13 @@ export default { } }, /** - * Lookup404: pallet_preimage::pallet::Error + * Lookup439: pallet_preimage::pallet::Error **/ PalletPreimageError: { _enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested', 'TooMany', 'TooFew'] }, /** - * Lookup406: pallet_balances::types::BalanceLock + * Lookup441: pallet_balances::types::BalanceLock **/ PalletBalancesBalanceLock: { id: '[u8;8]', @@ -5148,26 +5513,26 @@ export default { reasons: 'PalletBalancesReasons' }, /** - * Lookup407: pallet_balances::types::Reasons + * Lookup442: pallet_balances::types::Reasons **/ PalletBalancesReasons: { _enum: ['Fee', 'Misc', 'All'] }, /** - * Lookup410: pallet_balances::types::ReserveData + * Lookup445: pallet_balances::types::ReserveData **/ PalletBalancesReserveData: { id: 'AcalaPrimitivesReserveIdentifier', amount: 'u128' }, /** - * Lookup411: acala_primitives::ReserveIdentifier + * Lookup446: acala_primitives::ReserveIdentifier **/ AcalaPrimitivesReserveIdentifier: { _enum: ['CollatorSelection', 'EvmStorageDeposit', 'EvmDeveloperDeposit', 'Honzon', 'Nft', 'TransactionPayment', 'TransactionPaymentDeposit', 'Count'] }, /** - * Lookup415: acala_runtime::RuntimeHoldReason + * Lookup450: acala_runtime::RuntimeHoldReason **/ AcalaRuntimeRuntimeHoldReason: { _enum: { @@ -5183,33 +5548,33 @@ export default { } }, /** - * Lookup416: pallet_preimage::pallet::HoldReason + * Lookup451: pallet_preimage::pallet::HoldReason **/ PalletPreimageHoldReason: { _enum: ['Preimage'] }, /** - * Lookup419: pallet_balances::types::IdAmount + * Lookup454: pallet_balances::types::IdAmount **/ PalletBalancesIdAmount: { id: 'Null', amount: 'u128' }, /** - * Lookup421: pallet_balances::pallet::Error + * Lookup456: pallet_balances::pallet::Error **/ PalletBalancesError: { - _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'Expendability', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves', 'TooManyHolds', 'TooManyFreezes'] + _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'Expendability', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves', 'TooManyHolds', 'TooManyFreezes', 'IssuanceDeactivated', 'DeltaZero'] }, /** - * Lookup424: orml_tokens::BalanceLock + * Lookup459: orml_tokens::BalanceLock **/ OrmlTokensBalanceLock: { id: '[u8;8]', amount: 'u128' }, /** - * Lookup426: orml_tokens::AccountData + * Lookup461: orml_tokens::AccountData **/ OrmlTokensAccountData: { free: 'u128', @@ -5217,32 +5582,32 @@ export default { frozen: 'u128' }, /** - * Lookup428: orml_tokens::ReserveData + * Lookup463: orml_tokens::ReserveData **/ OrmlTokensReserveData: { id: 'AcalaPrimitivesReserveIdentifier', amount: 'u128' }, /** - * Lookup430: orml_tokens::module::Error + * Lookup465: orml_tokens::module::Error **/ OrmlTokensModuleError: { _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves'] }, /** - * Lookup431: module_currencies::module::Error + * Lookup466: module_currencies::module::Error **/ ModuleCurrenciesModuleError: { _enum: ['AmountIntoBalanceFailed', 'BalanceTooLow', 'Erc20InvalidOperation', 'EvmAccountNotFound', 'RealOriginNotFound', 'DepositFailed'] }, /** - * Lookup433: orml_vesting::module::Error + * Lookup468: orml_vesting::module::Error **/ OrmlVestingModuleError: { _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded'] }, /** - * Lookup435: module_transaction_payment::module::ChargeFeeMethod + * Lookup470: module_transaction_payment::module::ChargeFeeMethod **/ ModuleTransactionPaymentModuleChargeFeeMethod: { _enum: { @@ -5251,17 +5616,17 @@ export default { } }, /** - * Lookup436: frame_support::PalletId + * Lookup471: frame_support::PalletId **/ FrameSupportPalletId: '[u8;8]', /** - * Lookup438: module_transaction_payment::module::Error + * Lookup473: module_transaction_payment::module::Error **/ ModuleTransactionPaymentModuleError: { _enum: ['InvalidSwapPath', 'InvalidBalance', 'InvalidRate', 'InvalidToken', 'DexNotAvailable', 'ChargeFeePoolAlreadyExisted'] }, /** - * Lookup439: pallet_treasury::Proposal + * Lookup474: pallet_treasury::Proposal **/ PalletTreasuryProposal: { proposer: 'AccountId32', @@ -5270,7 +5635,7 @@ export default { bond: 'u128' }, /** - * Lookup442: pallet_treasury::SpendStatus + * Lookup477: pallet_treasury::SpendStatus **/ PalletTreasurySpendStatus: { assetKind: 'Null', @@ -5281,7 +5646,7 @@ export default { status: 'PalletTreasuryPaymentState' }, /** - * Lookup443: pallet_treasury::PaymentState + * Lookup478: pallet_treasury::PaymentState **/ PalletTreasuryPaymentState: { _enum: { @@ -5293,13 +5658,13 @@ export default { } }, /** - * Lookup444: pallet_treasury::pallet::Error + * Lookup479: pallet_treasury::pallet::Error **/ PalletTreasuryError: { _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved', 'FailedToConvertBalance', 'SpendExpired', 'EarlyPayout', 'AlreadyAttempted', 'PayoutError', 'NotAttempted', 'Inconclusive'] }, /** - * Lookup445: pallet_bounties::Bounty + * Lookup480: pallet_bounties::Bounty **/ PalletBountiesBounty: { proposer: 'AccountId32', @@ -5310,7 +5675,7 @@ export default { status: 'PalletBountiesBountyStatus' }, /** - * Lookup446: pallet_bounties::BountyStatus + * Lookup481: pallet_bounties::BountyStatus **/ PalletBountiesBountyStatus: { _enum: { @@ -5332,13 +5697,13 @@ export default { } }, /** - * Lookup448: pallet_bounties::pallet::Error + * Lookup483: pallet_bounties::pallet::Error **/ PalletBountiesError: { _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'ReasonTooBig', 'UnexpectedStatus', 'RequireCurator', 'InvalidValue', 'InvalidFee', 'PendingPayout', 'Premature', 'HasActiveChildBounty', 'TooManyQueued'] }, /** - * Lookup449: pallet_tips::OpenTip + * Lookup484: pallet_tips::OpenTip **/ PalletTipsOpenTip: { reason: 'H256', @@ -5350,35 +5715,35 @@ export default { findersFee: 'bool' }, /** - * Lookup451: pallet_tips::pallet::Error + * Lookup486: pallet_tips::pallet::Error **/ PalletTipsError: { _enum: ['ReasonTooBig', 'AlreadyKnown', 'UnknownTip', 'MaxTipAmountExceeded', 'NotFinder', 'StillOpen', 'Premature'] }, /** - * Lookup455: module_collator_selection::pallet::Error + * Lookup490: module_collator_selection::pallet::Error **/ ModuleCollatorSelectionError: { _enum: ['MaxCandidatesExceeded', 'BelowCandidatesMin', 'StillLocked', 'Unknown', 'Permission', 'AlreadyCandidate', 'NotCandidate', 'NotNonCandidate', 'NothingToWithdraw', 'RequireSessionKey', 'AlreadyInvulnerable', 'InvalidProof', 'MaxInvulnerablesExceeded'] }, /** - * Lookup459: sp_core::crypto::KeyTypeId + * Lookup494: sp_core::crypto::KeyTypeId **/ SpCoreCryptoKeyTypeId: '[u8;4]', /** - * Lookup460: pallet_session::pallet::Error + * Lookup495: pallet_session::pallet::Error **/ PalletSessionError: { _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount'] }, /** - * Lookup465: module_session_manager::module::Error + * Lookup500: module_session_manager::module::Error **/ ModuleSessionManagerModuleError: { _enum: ['InvalidSession', 'InvalidDuration', 'EstimateNextSessionFailed'] }, /** - * Lookup470: cumulus_pallet_xcmp_queue::OutboundChannelDetails + * Lookup505: cumulus_pallet_xcmp_queue::OutboundChannelDetails **/ CumulusPalletXcmpQueueOutboundChannelDetails: { recipient: 'u32', @@ -5388,13 +5753,13 @@ export default { lastIndex: 'u16' }, /** - * Lookup471: cumulus_pallet_xcmp_queue::OutboundState + * Lookup506: cumulus_pallet_xcmp_queue::OutboundState **/ CumulusPalletXcmpQueueOutboundState: { _enum: ['Ok', 'Suspended'] }, /** - * Lookup473: cumulus_pallet_xcmp_queue::QueueConfigData + * Lookup508: cumulus_pallet_xcmp_queue::QueueConfigData **/ CumulusPalletXcmpQueueQueueConfigData: { suspendThreshold: 'u32', @@ -5402,24 +5767,24 @@ export default { resumeThreshold: 'u32' }, /** - * Lookup474: cumulus_pallet_xcmp_queue::pallet::Error + * Lookup509: cumulus_pallet_xcmp_queue::pallet::Error **/ CumulusPalletXcmpQueueError: { _enum: ['BadQueueConfig', 'AlreadySuspended', 'AlreadyResumed'] }, /** - * Lookup475: pallet_xcm::pallet::QueryStatus + * Lookup510: pallet_xcm::pallet::QueryStatus **/ PalletXcmQueryStatus: { _enum: { Pending: { - responder: 'XcmVersionedMultiLocation', - maybeMatchQuerier: 'Option', + responder: 'XcmVersionedLocation', + maybeMatchQuerier: 'Option', maybeNotify: 'Option<(u8,u8)>', timeout: 'u32', }, VersionNotifier: { - origin: 'XcmVersionedMultiLocation', + origin: 'XcmVersionedLocation', isActive: 'bool', }, Ready: { @@ -5429,18 +5794,19 @@ export default { } }, /** - * Lookup479: xcm::VersionedResponse + * Lookup514: xcm::VersionedResponse **/ XcmVersionedResponse: { _enum: { __Unused0: 'Null', __Unused1: 'Null', V2: 'XcmV2Response', - V3: 'XcmV3Response' + V3: 'XcmV3Response', + V4: 'StagingXcmV4Response' } }, /** - * Lookup485: pallet_xcm::pallet::VersionMigrationStage + * Lookup520: pallet_xcm::pallet::VersionMigrationStage **/ PalletXcmVersionMigrationStage: { _enum: { @@ -5451,71 +5817,52 @@ export default { } }, /** - * Lookup488: xcm::VersionedAssetId + * Lookup523: xcm::VersionedAssetId **/ XcmVersionedAssetId: { _enum: { __Unused0: 'Null', __Unused1: 'Null', __Unused2: 'Null', - V3: 'XcmV3MultiassetAssetId' + V3: 'XcmV3MultiassetAssetId', + V4: 'StagingXcmV4AssetAssetId' } }, /** - * Lookup489: pallet_xcm::pallet::RemoteLockedFungibleRecord + * Lookup524: pallet_xcm::pallet::RemoteLockedFungibleRecord **/ PalletXcmRemoteLockedFungibleRecord: { amount: 'u128', - owner: 'XcmVersionedMultiLocation', - locker: 'XcmVersionedMultiLocation', + owner: 'XcmVersionedLocation', + locker: 'XcmVersionedLocation', consumers: 'Vec<(Null,u128)>' }, /** - * Lookup496: pallet_xcm::pallet::Error + * Lookup531: pallet_xcm::pallet::Error **/ PalletXcmError: { _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'] }, /** - * Lookup497: cumulus_pallet_dmp_queue::pallet::MigrationState - **/ - CumulusPalletDmpQueueMigrationState: { - _enum: { - NotStarted: 'Null', - StartedExport: { - nextBeginUsed: 'u32', - }, - CompletedExport: 'Null', - StartedOverweightExport: { - nextOverweightIndex: 'u64', - }, - CompletedOverweightExport: 'Null', - StartedCleanup: { - cursor: 'Option', - }, - Completed: 'Null' - } - }, - /** - * Lookup500: orml_xtokens::module::Error + * Lookup532: orml_xtokens::module::Error **/ OrmlXtokensModuleError: { - _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined'] + _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedLocation', 'MinXcmFeeNotDefined', 'RateLimited'] }, /** - * Lookup503: orml_unknown_tokens::module::Error + * Lookup535: orml_unknown_tokens::module::Error **/ OrmlUnknownTokensModuleError: { _enum: ['BalanceTooLow', 'BalanceOverflow', 'UnhandledAsset'] }, /** - * Lookup504: orml_xcm::module::Error + * Lookup536: orml_xcm::module::Error **/ OrmlXcmModuleError: { _enum: ['Unreachable', 'SendFailure', 'BadVersion'] }, /** - * Lookup505: pallet_message_queue::BookState + * Lookup537: pallet_message_queue::BookState **/ PalletMessageQueueBookState: { _alias: { @@ -5529,14 +5876,14 @@ export default { size_: 'u64' }, /** - * Lookup507: pallet_message_queue::Neighbours + * Lookup539: pallet_message_queue::Neighbours **/ PalletMessageQueueNeighbours: { prev: 'CumulusPrimitivesCoreAggregateMessageOrigin', next: 'CumulusPrimitivesCoreAggregateMessageOrigin' }, /** - * Lookup509: pallet_message_queue::Page + * Lookup541: pallet_message_queue::Page **/ PalletMessageQueuePage: { remaining: 'u32', @@ -5547,19 +5894,19 @@ export default { heap: 'Bytes' }, /** - * Lookup511: pallet_message_queue::pallet::Error + * Lookup543: pallet_message_queue::pallet::Error **/ PalletMessageQueueError: { _enum: ['NotReapable', 'NoPage', 'NoMessage', 'AlreadyProcessed', 'Queued', 'InsufficientWeight', 'TemporarilyUnprocessable', 'QueuePaused', 'RecursiveDisallowed'] }, /** - * Lookup513: orml_authority::module::Error + * Lookup545: orml_authority::module::Error **/ OrmlAuthorityModuleError: { _enum: ['FailedToSchedule', 'FailedToCancel', 'FailedToFastTrack', 'FailedToDelay', 'CallNotAuthorized', 'TriggerCallNotPermitted', 'WrongCallWeightBound'] }, /** - * Lookup515: pallet_collective::Votes + * Lookup547: pallet_collective::Votes **/ PalletCollectiveVotes: { index: 'u32', @@ -5569,19 +5916,19 @@ export default { end: 'u32' }, /** - * Lookup516: pallet_collective::pallet::Error + * Lookup548: pallet_collective::pallet::Error **/ PalletCollectiveError: { _enum: ['NotMember', 'DuplicateProposal', 'ProposalMissing', 'WrongIndex', 'DuplicateVote', 'AlreadyInitialized', 'TooEarly', 'TooManyProposals', 'WrongProposalWeight', 'WrongProposalLength', 'PrimeAccountNotMember'] }, /** - * Lookup518: pallet_membership::pallet::Error + * Lookup550: pallet_membership::pallet::Error **/ PalletMembershipError: { _enum: ['AlreadyMember', 'NotMember', 'TooManyMembers'] }, /** - * Lookup529: pallet_democracy::types::ReferendumInfo, Balance> + * Lookup561: pallet_democracy::types::ReferendumInfo, Balance> **/ PalletDemocracyReferendumInfo: { _enum: { @@ -5593,7 +5940,7 @@ export default { } }, /** - * Lookup530: pallet_democracy::types::ReferendumStatus, Balance> + * Lookup562: pallet_democracy::types::ReferendumStatus, Balance> **/ PalletDemocracyReferendumStatus: { end: 'u32', @@ -5603,7 +5950,7 @@ export default { tally: 'PalletDemocracyTally' }, /** - * Lookup531: pallet_democracy::types::Tally + * Lookup563: pallet_democracy::types::Tally **/ PalletDemocracyTally: { ayes: 'u128', @@ -5611,7 +5958,7 @@ export default { turnout: 'u128' }, /** - * Lookup532: pallet_democracy::vote::Voting + * Lookup564: pallet_democracy::vote::Voting **/ PalletDemocracyVoteVoting: { _enum: { @@ -5630,41 +5977,41 @@ export default { } }, /** - * Lookup536: pallet_democracy::types::Delegations + * Lookup568: pallet_democracy::types::Delegations **/ PalletDemocracyDelegations: { votes: 'u128', capital: 'u128' }, /** - * Lookup537: pallet_democracy::vote::PriorLock + * Lookup569: pallet_democracy::vote::PriorLock **/ PalletDemocracyVotePriorLock: '(u32,u128)', /** - * Lookup540: pallet_democracy::pallet::Error + * Lookup572: 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'] }, /** - * Lookup541: orml_oracle::module::TimestampedValue + * Lookup573: orml_oracle::module::TimestampedValue **/ OrmlOracleModuleTimestampedValue: { value: 'u128', timestamp: 'u64' }, /** - * Lookup542: orml_utilities::ordered_set::OrderedSet + * Lookup574: orml_utilities::ordered_set::OrderedSet **/ OrmlUtilitiesOrderedSet: 'Vec', /** - * Lookup544: orml_oracle::module::Error + * Lookup576: orml_oracle::module::Error **/ OrmlOracleModuleError: { _enum: ['NoPermission', 'AlreadyFeeded'] }, /** - * Lookup547: orml_traits::auction::AuctionInfo + * Lookup579: orml_traits::auction::AuctionInfo **/ OrmlTraitsAuctionAuctionInfo: { bid: 'Option<(AccountId32,u128)>', @@ -5672,26 +6019,26 @@ export default { end: 'Option' }, /** - * Lookup548: orml_auction::module::Error + * Lookup580: orml_auction::module::Error **/ OrmlAuctionModuleError: { _enum: ['AuctionNotExist', 'AuctionNotStarted', 'BidNotAccepted', 'InvalidBidPrice', 'NoAvailableAuctionId'] }, /** - * Lookup549: orml_rewards::PoolInfo + * Lookup581: orml_rewards::PoolInfo **/ OrmlRewardsPoolInfo: { totalShares: 'u128', rewards: 'BTreeMap' }, /** - * Lookup557: orml_rewards::module::Error + * Lookup589: orml_rewards::module::Error **/ OrmlRewardsModuleError: { - _enum: ['PoolDoesNotExist', 'ShareDoesNotExist', 'CanSplitOnlyLessThanShare'] + _enum: ['PoolDoesNotExist', 'ShareDoesNotExist', 'CanSplitOnlyLessThanShare', 'ShareBelowMinimal'] }, /** - * Lookup558: orml_nft::ClassInfo, bounded_collections::bounded_vec::BoundedVec> + * Lookup590: orml_nft::ClassInfo, bounded_collections::bounded_vec::BoundedVec> **/ OrmlNftClassInfo: { metadata: 'Bytes', @@ -5700,7 +6047,7 @@ export default { data: 'ModuleNftClassData' }, /** - * Lookup559: module_nft::ClassData + * Lookup591: module_nft::ClassData **/ ModuleNftClassData: { deposit: 'u128', @@ -5708,7 +6055,7 @@ export default { attributes: 'BTreeMap' }, /** - * Lookup560: orml_nft::TokenInfo, bounded_collections::bounded_vec::BoundedVec> + * Lookup593: orml_nft::TokenInfo, bounded_collections::bounded_vec::BoundedVec> **/ OrmlNftTokenInfo: { metadata: 'Bytes', @@ -5716,20 +6063,20 @@ export default { data: 'ModuleNftTokenData' }, /** - * Lookup561: module_nft::TokenData + * Lookup594: module_nft::TokenData **/ ModuleNftTokenData: { deposit: 'u128', attributes: 'BTreeMap' }, /** - * Lookup563: orml_nft::module::Error + * Lookup596: orml_nft::module::Error **/ OrmlNftModuleError: { _enum: ['NoAvailableClassId', 'NoAvailableTokenId', 'TokenNotFound', 'ClassNotFound', 'NoPermission', 'CannotDestroyClass', 'MaxMetadataExceeded'] }, /** - * Lookup564: acala_runtime::RuntimeParametersKey + * Lookup597: acala_runtime::RuntimeParametersKey **/ AcalaRuntimeRuntimeParametersKey: { _enum: { @@ -5737,13 +6084,13 @@ export default { } }, /** - * Lookup565: module_earning::ParametersKey + * Lookup598: module_earning::ParametersKey **/ ModuleEarningParametersKey: { _enum: ['InstantUnstakeFee'] }, /** - * Lookup566: acala_runtime::RuntimeParametersValue + * Lookup599: acala_runtime::RuntimeParametersValue **/ AcalaRuntimeRuntimeParametersValue: { _enum: { @@ -5751,7 +6098,7 @@ export default { } }, /** - * Lookup567: module_earning::ParametersValue + * Lookup600: module_earning::ParametersValue **/ ModuleEarningParametersValue: { _enum: { @@ -5759,17 +6106,17 @@ export default { } }, /** - * Lookup568: orml_parameters::module::Error + * Lookup601: orml_parameters::module::Error **/ OrmlParametersModuleError: 'Null', /** - * Lookup569: module_prices::module::Error + * Lookup602: module_prices::module::Error **/ ModulePricesModuleError: { _enum: ['AccessPriceFailed', 'NoLockedPrice'] }, /** - * Lookup570: module_dex::TradingPairStatus + * Lookup603: module_dex::TradingPairStatus **/ ModuleDexTradingPairStatus: { _enum: { @@ -5779,7 +6126,7 @@ export default { } }, /** - * Lookup571: module_dex::ProvisioningParameters + * Lookup604: module_dex::ProvisioningParameters **/ ModuleDexProvisioningParameters: { minContribution: '(u128,u128)', @@ -5788,25 +6135,25 @@ export default { notBefore: 'u32' }, /** - * Lookup574: module_dex::module::Error + * Lookup607: 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'] }, /** - * Lookup579: module_dex_oracle::module::Error + * Lookup612: module_dex_oracle::module::Error **/ ModuleDexOracleModuleError: { _enum: ['AveragePriceAlreadyEnabled', 'AveragePriceMustBeEnabled', 'InvalidPool', 'InvalidCurrencyId', 'IntervalIsZero'] }, /** - * Lookup582: module_aggregated_dex::module::Error + * Lookup615: module_aggregated_dex::module::Error **/ ModuleAggregatedDexModuleError: { _enum: ['CannotSwap', 'InvalidPoolId', 'InvalidTokenIndex', 'InvalidSwapPath'] }, /** - * Lookup583: acala_primitives::bonding::ledger::BondingLedger + * Lookup616: acala_primitives::bonding::ledger::BondingLedger **/ AcalaPrimitivesBondingLedgerBondingLedger: { total: 'u128', @@ -5814,20 +6161,20 @@ export default { unlocking: 'Vec' }, /** - * Lookup585: acala_primitives::bonding::ledger::UnlockChunk + * Lookup618: acala_primitives::bonding::ledger::UnlockChunk **/ AcalaPrimitivesBondingLedgerUnlockChunk: { value: 'u128', unlockAt: 'u32' }, /** - * Lookup587: module_earning::module::Error + * Lookup620: module_earning::module::Error **/ ModuleEarningModuleError: { _enum: ['BelowMinBondThreshold', 'MaxUnlockChunksExceeded', 'NotBonded', 'NotAllowed'] }, /** - * Lookup588: module_auction_manager::CollateralAuctionItem + * Lookup621: module_auction_manager::CollateralAuctionItem **/ ModuleAuctionManagerCollateralAuctionItem: { refundRecipient: 'AccountId32', @@ -5838,38 +6185,38 @@ export default { startTime: 'u32' }, /** - * Lookup589: module_auction_manager::module::Error + * Lookup622: module_auction_manager::module::Error **/ ModuleAuctionManagerModuleError: { _enum: ['AuctionNotExists', 'InReverseStage', 'InvalidFeedPrice', 'MustAfterShutdown', 'InvalidBidPrice', 'InvalidAmount'] }, /** - * Lookup591: acala_primitives::Position + * Lookup624: acala_primitives::Position **/ AcalaPrimitivesPosition: { collateral: 'u128', debit: 'u128' }, /** - * Lookup592: module_loans::module::Error + * Lookup625: module_loans::module::Error **/ ModuleLoansModuleError: { _enum: ['AmountConvertFailed'] }, /** - * Lookup594: module_honzon::module::Error + * Lookup627: module_honzon::module::Error **/ ModuleHonzonModuleError: { _enum: ['NoPermission', 'AlreadyShutdown', 'AuthorizationNotExists', 'AlreadyAuthorized'] }, /** - * Lookup595: module_cdp_treasury::module::Error + * Lookup628: module_cdp_treasury::module::Error **/ ModuleCdpTreasuryModuleError: { _enum: ['CollateralNotEnough', 'SurplusPoolNotEnough', 'DebitPoolNotEnough', 'CannotSwap', 'NotDexShare'] }, /** - * Lookup596: module_cdp_engine::RiskManagementParams + * Lookup629: module_cdp_engine::RiskManagementParams **/ ModuleCdpEngineRiskManagementParams: { maximumTotalDebitValue: 'u128', @@ -5879,63 +6226,63 @@ export default { requiredCollateralRatio: 'Option' }, /** - * Lookup601: module_cdp_engine::module::Error + * Lookup634: 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'] }, /** - * Lookup602: module_emergency_shutdown::module::Error + * Lookup635: module_emergency_shutdown::module::Error **/ ModuleEmergencyShutdownModuleError: { _enum: ['AlreadyShutdown', 'MustAfterShutdown', 'CanNotRefund', 'ExistPotentialSurplus', 'ExistUnhandledDebit'] }, /** - * Lookup603: module_homa::module::StakingLedger + * Lookup636: module_homa::module::StakingLedger **/ ModuleHomaModuleStakingLedger: { bonded: 'Compact', unlocking: 'Vec' }, /** - * Lookup607: module_homa::module::Error + * Lookup640: module_homa::module::Error **/ ModuleHomaModuleError: { _enum: ['BelowMintThreshold', 'BelowRedeemThreshold', 'ExceededStakingCurrencySoftCap', 'InsufficientUnclaimedRedemption', 'OutdatedEraIndex', 'FastMatchIsNotAllowed', 'CannotCompletelyFastMatch', 'InvalidRate', 'InvalidLastEraBumpedBlock'] }, /** - * Lookup609: module_xcm_interface::module::Error + * Lookup642: module_xcm_interface::module::Error **/ ModuleXcmInterfaceModuleError: { _enum: ['XcmFailed'] }, /** - * Lookup611: module_incentives::module::Error + * Lookup644: module_incentives::module::Error **/ ModuleIncentivesModuleError: { _enum: ['NotEnough', 'InvalidCurrencyId', 'InvalidPoolId', 'InvalidRate'] }, /** - * Lookup612: module_nft::module::Error + * Lookup645: module_nft::module::Error **/ ModuleNftModuleError: { _enum: ['ClassIdNotFound', 'TokenIdNotFound', 'NoPermission', 'InvalidQuantity', 'NonTransferable', 'NonBurnable', 'NonMintable', 'CannotDestroyClass', 'Immutable', 'AttributesTooLarge', 'IncorrectTokenId'] }, /** - * Lookup613: module_asset_registry::module::Error + * Lookup646: module_asset_registry::module::Error **/ ModuleAssetRegistryModuleError: { - _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted'] + _enum: ['BadLocation', 'LocationExisted', 'AssetIdNotExists', 'AssetIdExisted'] }, /** - * Lookup614: module_evm::module::AccountInfo + * Lookup647: module_evm::module::AccountInfo **/ ModuleEvmModuleAccountInfo: { nonce: 'u32', contractInfo: 'Option' }, /** - * Lookup616: module_evm::module::ContractInfo + * Lookup649: module_evm::module::ContractInfo **/ ModuleEvmModuleContractInfo: { codeHash: 'H256', @@ -5943,32 +6290,32 @@ export default { published: 'bool' }, /** - * Lookup619: module_evm::module::CodeInfo + * Lookup652: module_evm::module::CodeInfo **/ ModuleEvmModuleCodeInfo: { codeSize: 'u32', refCount: 'u32' }, /** - * Lookup620: module_evm::module::Error + * Lookup653: module_evm::module::Error **/ ModuleEvmModuleError: { _enum: ['AddressNotMapped', 'ContractNotFound', 'NoPermission', 'ContractDevelopmentNotEnabled', 'ContractDevelopmentAlreadyEnabled', 'ContractAlreadyPublished', 'ContractExceedsMaxCodeSize', 'ContractAlreadyExisted', 'OutOfStorage', 'ChargeFeeFailed', 'CannotKillContract', 'ReserveStorageFailed', 'UnreserveStorageFailed', 'ChargeStorageFailed', 'InvalidDecimals', 'StrictCallFailed', 'NotEOA'] }, /** - * Lookup621: module_evm_bridge::module::Error + * Lookup654: module_evm_bridge::module::Error **/ ModuleEvmBridgeModuleError: { _enum: ['ExecutionFail', 'ExecutionRevert', 'ExecutionFatal', 'ExecutionError', 'InvalidReturnValue'] }, /** - * Lookup622: module_evm_accounts::module::Error + * Lookup655: module_evm_accounts::module::Error **/ ModuleEvmAccountsModuleError: { _enum: ['AccountIdHasMapped', 'EthAddressHasMapped', 'BadSignature', 'InvalidSignature', 'NonZeroRefCount'] }, /** - * Lookup623: nutsfinance_stable_asset::StableAssetPoolInfo + * Lookup656: nutsfinance_stable_asset::StableAssetPoolInfo **/ NutsfinanceStableAssetStableAssetPoolInfo: { poolAsset: 'AcalaPrimitivesCurrencyCurrencyId', @@ -5989,13 +6336,13 @@ export default { precision: 'u128' }, /** - * Lookup624: nutsfinance_stable_asset::pallet::Error + * Lookup657: nutsfinance_stable_asset::pallet::Error **/ NutsfinanceStableAssetError: { _enum: ['InconsistentStorage', 'InvalidPoolAsset', 'ArgumentsMismatch', 'ArgumentsError', 'PoolNotFound', 'Math', 'InvalidPoolValue', 'MintUnderMin', 'SwapUnderMin', 'RedeemUnderMin', 'RedeemOverMax'] }, /** - * Lookup626: cumulus_pallet_parachain_system::unincluded_segment::Ancestor + * Lookup659: cumulus_pallet_parachain_system::unincluded_segment::Ancestor **/ CumulusPalletParachainSystemUnincludedSegmentAncestor: { usedBandwidth: 'CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth', @@ -6003,7 +6350,7 @@ export default { consumedGoAheadSignal: 'Option' }, /** - * Lookup627: cumulus_pallet_parachain_system::unincluded_segment::UsedBandwidth + * Lookup660: cumulus_pallet_parachain_system::unincluded_segment::UsedBandwidth **/ CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth: { umpMsgCount: 'u32', @@ -6011,20 +6358,20 @@ export default { hrmpOutgoing: 'BTreeMap' }, /** - * Lookup629: cumulus_pallet_parachain_system::unincluded_segment::HrmpChannelUpdate + * Lookup662: cumulus_pallet_parachain_system::unincluded_segment::HrmpChannelUpdate **/ CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate: { msgCount: 'u32', totalBytes: 'u32' }, /** - * Lookup633: polkadot_primitives::v6::UpgradeGoAhead + * Lookup666: polkadot_primitives::v6::UpgradeGoAhead **/ PolkadotPrimitivesV6UpgradeGoAhead: { _enum: ['Abort', 'GoAhead'] }, /** - * Lookup634: cumulus_pallet_parachain_system::unincluded_segment::SegmentTracker + * Lookup667: cumulus_pallet_parachain_system::unincluded_segment::SegmentTracker **/ CumulusPalletParachainSystemUnincludedSegmentSegmentTracker: { usedBandwidth: 'CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth', @@ -6032,13 +6379,13 @@ export default { consumedGoAheadSignal: 'Option' }, /** - * Lookup636: polkadot_primitives::v6::UpgradeRestriction + * Lookup669: polkadot_primitives::v6::UpgradeRestriction **/ PolkadotPrimitivesV6UpgradeRestriction: { _enum: ['Present'] }, /** - * Lookup637: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot + * Lookup670: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot **/ CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: { dmqMqcHead: 'H256', @@ -6047,14 +6394,14 @@ export default { egressChannels: 'Vec<(u32,PolkadotPrimitivesV6AbridgedHrmpChannel)>' }, /** - * Lookup638: cumulus_pallet_parachain_system::relay_state_snapshot::RelayDispatchQueueRemainingCapacity + * Lookup671: cumulus_pallet_parachain_system::relay_state_snapshot::RelayDispatchQueueRemainingCapacity **/ CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity: { remainingCount: 'u32', remainingSize: 'u32' }, /** - * Lookup641: polkadot_primitives::v6::AbridgedHrmpChannel + * Lookup674: polkadot_primitives::v6::AbridgedHrmpChannel **/ PolkadotPrimitivesV6AbridgedHrmpChannel: { maxCapacity: 'u32', @@ -6065,7 +6412,7 @@ export default { mqcHead: 'Option' }, /** - * Lookup642: polkadot_primitives::v6::AbridgedHostConfiguration + * Lookup675: polkadot_primitives::v6::AbridgedHostConfiguration **/ PolkadotPrimitivesV6AbridgedHostConfiguration: { maxCodeSize: 'u32', @@ -6080,75 +6427,75 @@ export default { asyncBackingParams: 'PolkadotPrimitivesV6AsyncBackingAsyncBackingParams' }, /** - * Lookup643: polkadot_primitives::v6::async_backing::AsyncBackingParams + * Lookup676: polkadot_primitives::v6::async_backing::AsyncBackingParams **/ PolkadotPrimitivesV6AsyncBackingAsyncBackingParams: { maxCandidateDepth: 'u32', allowedAncestryLen: 'u32' }, /** - * Lookup649: polkadot_core_primitives::OutboundHrmpMessage + * Lookup682: polkadot_core_primitives::OutboundHrmpMessage **/ PolkadotCorePrimitivesOutboundHrmpMessage: { recipient: 'u32', data: 'Bytes' }, /** - * Lookup650: cumulus_pallet_parachain_system::pallet::Error + * Lookup683: cumulus_pallet_parachain_system::pallet::Error **/ CumulusPalletParachainSystemError: { _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized'] }, /** - * Lookup651: pallet_sudo::pallet::Error + * Lookup684: pallet_sudo::pallet::Error **/ PalletSudoError: { _enum: ['RequireSudo'] }, /** - * Lookup654: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender + * Lookup687: frame_system::extensions::check_non_zero_sender::CheckNonZeroSender **/ FrameSystemExtensionsCheckNonZeroSender: 'Null', /** - * Lookup655: frame_system::extensions::check_spec_version::CheckSpecVersion + * Lookup688: frame_system::extensions::check_spec_version::CheckSpecVersion **/ FrameSystemExtensionsCheckSpecVersion: 'Null', /** - * Lookup656: frame_system::extensions::check_tx_version::CheckTxVersion + * Lookup689: frame_system::extensions::check_tx_version::CheckTxVersion **/ FrameSystemExtensionsCheckTxVersion: 'Null', /** - * Lookup657: frame_system::extensions::check_genesis::CheckGenesis + * Lookup690: frame_system::extensions::check_genesis::CheckGenesis **/ FrameSystemExtensionsCheckGenesis: 'Null', /** - * Lookup660: runtime_common::check_nonce::CheckNonce + * Lookup693: runtime_common::check_nonce::CheckNonce **/ RuntimeCommonCheckNonce: { nonce: 'Compact' }, /** - * Lookup661: frame_system::extensions::check_weight::CheckWeight + * Lookup694: frame_system::extensions::check_weight::CheckWeight **/ FrameSystemExtensionsCheckWeight: 'Null', /** - * Lookup662: module_evm::SetEvmOrigin + * Lookup695: module_evm::SetEvmOrigin **/ ModuleEvmSetEvmOrigin: 'Null', /** - * Lookup663: module_transaction_payment::ChargeTransactionPayment + * Lookup696: module_transaction_payment::ChargeTransactionPayment **/ ModuleTransactionPaymentChargeTransactionPayment: 'Compact', /** - * Lookup664: acala_runtime::StorageDepositPerByte + * Lookup697: acala_runtime::StorageDepositPerByte **/ AcalaRuntimeStorageDepositPerByte: 'Null', /** - * Lookup665: acala_runtime::TxFeePerGas + * Lookup698: acala_runtime::TxFeePerGas **/ AcalaRuntimeTxFeePerGas: 'Null', /** - * Lookup667: acala_primitives::signature::AcalaMultiSignature + * Lookup700: acala_primitives::signature::AcalaMultiSignature **/ AcalaPrimitivesSignatureAcalaMultiSignature: { _enum: { @@ -6162,15 +6509,15 @@ export default { } }, /** - * Lookup668: sp_core::ed25519::Signature + * Lookup701: sp_core::ed25519::Signature **/ SpCoreEd25519Signature: '[u8;64]', /** - * Lookup670: sp_core::sr25519::Signature + * Lookup703: sp_core::sr25519::Signature **/ SpCoreSr25519Signature: '[u8;64]', /** - * Lookup671: sp_core::ecdsa::Signature + * Lookup704: sp_core::ecdsa::Signature **/ SpCoreEcdsaSignature: '[u8;65]' }; diff --git a/packages/types/src/interfaces/registry.ts b/packages/types/src/interfaces/registry.ts index 98f1cca..14513da 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, 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'; +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, 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, PalletBalancesAdjustmentDirection, 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, PalletSchedulerRetryConfig, 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, StagingXcmV4Asset, StagingXcmV4AssetAssetFilter, StagingXcmV4AssetAssetId, StagingXcmV4AssetAssetInstance, StagingXcmV4AssetAssets, StagingXcmV4AssetFungibility, StagingXcmV4AssetWildAsset, StagingXcmV4AssetWildFungibility, StagingXcmV4Instruction, StagingXcmV4Junction, StagingXcmV4JunctionNetworkId, StagingXcmV4Junctions, StagingXcmV4Location, StagingXcmV4PalletInfo, StagingXcmV4QueryResponseInfo, StagingXcmV4Response, StagingXcmV4TraitsOutcome, StagingXcmV4Xcm, 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, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAsset, XcmVersionedAssetId, XcmVersionedAssets, XcmVersionedLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup'; declare module '@polkadot/types/types/registry' { interface InterfaceTypes { @@ -32,9 +32,6 @@ declare module '@polkadot/types/types/registry' { AcalaRuntimeSessionKeys: AcalaRuntimeSessionKeys; AcalaRuntimeStorageDepositPerByte: AcalaRuntimeStorageDepositPerByte; AcalaRuntimeTxFeePerGas: AcalaRuntimeTxFeePerGas; - CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall; - CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent; - CumulusPalletDmpQueueMigrationState: CumulusPalletDmpQueueMigrationState; CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall; CumulusPalletParachainSystemError: CumulusPalletParachainSystemError; CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent; @@ -230,6 +227,7 @@ declare module '@polkadot/types/types/registry' { OrmlXtokensModuleError: OrmlXtokensModuleError; OrmlXtokensModuleEvent: OrmlXtokensModuleEvent; PalletBalancesAccountData: PalletBalancesAccountData; + PalletBalancesAdjustmentDirection: PalletBalancesAdjustmentDirection; PalletBalancesBalanceLock: PalletBalancesBalanceLock; PalletBalancesCall: PalletBalancesCall; PalletBalancesError: PalletBalancesError; @@ -288,6 +286,7 @@ declare module '@polkadot/types/types/registry' { PalletSchedulerCall: PalletSchedulerCall; PalletSchedulerError: PalletSchedulerError; PalletSchedulerEvent: PalletSchedulerEvent; + PalletSchedulerRetryConfig: PalletSchedulerRetryConfig; PalletSchedulerScheduled: PalletSchedulerScheduled; PalletSessionCall: PalletSessionCall; PalletSessionError: PalletSessionError; @@ -347,6 +346,24 @@ declare module '@polkadot/types/types/registry' { SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight; SpWeightsWeightV2Weight: SpWeightsWeightV2Weight; StagingXcmV3MultiLocation: StagingXcmV3MultiLocation; + StagingXcmV4Asset: StagingXcmV4Asset; + StagingXcmV4AssetAssetFilter: StagingXcmV4AssetAssetFilter; + StagingXcmV4AssetAssetId: StagingXcmV4AssetAssetId; + StagingXcmV4AssetAssetInstance: StagingXcmV4AssetAssetInstance; + StagingXcmV4AssetAssets: StagingXcmV4AssetAssets; + StagingXcmV4AssetFungibility: StagingXcmV4AssetFungibility; + StagingXcmV4AssetWildAsset: StagingXcmV4AssetWildAsset; + StagingXcmV4AssetWildFungibility: StagingXcmV4AssetWildFungibility; + StagingXcmV4Instruction: StagingXcmV4Instruction; + StagingXcmV4Junction: StagingXcmV4Junction; + StagingXcmV4JunctionNetworkId: StagingXcmV4JunctionNetworkId; + StagingXcmV4Junctions: StagingXcmV4Junctions; + StagingXcmV4Location: StagingXcmV4Location; + StagingXcmV4PalletInfo: StagingXcmV4PalletInfo; + StagingXcmV4QueryResponseInfo: StagingXcmV4QueryResponseInfo; + StagingXcmV4Response: StagingXcmV4Response; + StagingXcmV4TraitsOutcome: StagingXcmV4TraitsOutcome; + StagingXcmV4Xcm: StagingXcmV4Xcm; XcmDoubleEncoded: XcmDoubleEncoded; XcmV2BodyId: XcmV2BodyId; XcmV2BodyPart: XcmV2BodyPart; @@ -387,13 +404,12 @@ declare module '@polkadot/types/types/registry' { XcmV3QueryResponseInfo: XcmV3QueryResponseInfo; XcmV3Response: XcmV3Response; XcmV3TraitsError: XcmV3TraitsError; - XcmV3TraitsOutcome: XcmV3TraitsOutcome; XcmV3WeightLimit: XcmV3WeightLimit; XcmV3Xcm: XcmV3Xcm; + XcmVersionedAsset: XcmVersionedAsset; XcmVersionedAssetId: XcmVersionedAssetId; - XcmVersionedMultiAsset: XcmVersionedMultiAsset; - XcmVersionedMultiAssets: XcmVersionedMultiAssets; - XcmVersionedMultiLocation: XcmVersionedMultiLocation; + XcmVersionedAssets: XcmVersionedAssets; + XcmVersionedLocation: XcmVersionedLocation; XcmVersionedResponse: XcmVersionedResponse; XcmVersionedXcm: XcmVersionedXcm; } // InterfaceTypes diff --git a/packages/types/src/interfaces/types-lookup.ts b/packages/types/src/interfaces/types-lookup.ts index e9c501d..7a817d9 100644 --- a/packages/types/src/interfaces/types-lookup.ts +++ b/packages/types/src/interfaces/types-lookup.ts @@ -29,25 +29,25 @@ declare module '@polkadot/types/lookup' { readonly flags: u128; } - /** @name FrameSupportDispatchPerDispatchClassWeight (8) */ + /** @name FrameSupportDispatchPerDispatchClassWeight (9) */ interface FrameSupportDispatchPerDispatchClassWeight extends Struct { readonly normal: SpWeightsWeightV2Weight; readonly operational: SpWeightsWeightV2Weight; readonly mandatory: SpWeightsWeightV2Weight; } - /** @name SpWeightsWeightV2Weight (9) */ + /** @name SpWeightsWeightV2Weight (10) */ interface SpWeightsWeightV2Weight extends Struct { readonly refTime: Compact; readonly proofSize: Compact; } - /** @name SpRuntimeDigest (14) */ + /** @name SpRuntimeDigest (15) */ interface SpRuntimeDigest extends Struct { readonly logs: Vec; } - /** @name SpRuntimeDigestDigestItem (16) */ + /** @name SpRuntimeDigestDigestItem (17) */ interface SpRuntimeDigestDigestItem extends Enum { readonly isOther: boolean; readonly asOther: Bytes; @@ -61,14 +61,14 @@ declare module '@polkadot/types/lookup' { readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated'; } - /** @name FrameSystemEventRecord (19) */ + /** @name FrameSystemEventRecord (20) */ interface FrameSystemEventRecord extends Struct { readonly phase: FrameSystemPhase; readonly event: Event; readonly topics: Vec; } - /** @name FrameSystemEvent (21) */ + /** @name FrameSystemEvent (22) */ interface FrameSystemEvent extends Enum { readonly isExtrinsicSuccess: boolean; readonly asExtrinsicSuccess: { @@ -101,14 +101,14 @@ declare module '@polkadot/types/lookup' { readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked' | 'UpgradeAuthorized'; } - /** @name FrameSupportDispatchDispatchInfo (22) */ + /** @name FrameSupportDispatchDispatchInfo (23) */ interface FrameSupportDispatchDispatchInfo extends Struct { readonly weight: SpWeightsWeightV2Weight; readonly class: FrameSupportDispatchDispatchClass; readonly paysFee: FrameSupportDispatchPays; } - /** @name FrameSupportDispatchDispatchClass (23) */ + /** @name FrameSupportDispatchDispatchClass (24) */ interface FrameSupportDispatchDispatchClass extends Enum { readonly isNormal: boolean; readonly isOperational: boolean; @@ -116,14 +116,14 @@ declare module '@polkadot/types/lookup' { readonly type: 'Normal' | 'Operational' | 'Mandatory'; } - /** @name FrameSupportDispatchPays (24) */ + /** @name FrameSupportDispatchPays (25) */ interface FrameSupportDispatchPays extends Enum { readonly isYes: boolean; readonly isNo: boolean; readonly type: 'Yes' | 'No'; } - /** @name SpRuntimeDispatchError (25) */ + /** @name SpRuntimeDispatchError (26) */ interface SpRuntimeDispatchError extends Enum { readonly isOther: boolean; readonly isCannotLookup: boolean; @@ -146,13 +146,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable' | 'RootNotAllowed'; } - /** @name SpRuntimeModuleError (26) */ + /** @name SpRuntimeModuleError (27) */ interface SpRuntimeModuleError extends Struct { readonly index: u8; readonly error: U8aFixed; } - /** @name SpRuntimeTokenError (27) */ + /** @name SpRuntimeTokenError (28) */ interface SpRuntimeTokenError extends Enum { readonly isFundsUnavailable: boolean; readonly isOnlyProvider: boolean; @@ -167,7 +167,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'FundsUnavailable' | 'OnlyProvider' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported' | 'CannotCreateHold' | 'NotExpendable' | 'Blocked'; } - /** @name SpArithmeticArithmeticError (28) */ + /** @name SpArithmeticArithmeticError (29) */ interface SpArithmeticArithmeticError extends Enum { readonly isUnderflow: boolean; readonly isOverflow: boolean; @@ -175,7 +175,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero'; } - /** @name SpRuntimeTransactionalError (29) */ + /** @name SpRuntimeTransactionalError (30) */ interface SpRuntimeTransactionalError extends Enum { readonly isLimitReached: boolean; readonly isNoLayer: boolean; @@ -200,6 +200,18 @@ declare module '@polkadot/types/lookup' { readonly id: Option; readonly result: Result; } & Struct; + readonly isRetrySet: boolean; + readonly asRetrySet: { + readonly task: ITuple<[u32, u32]>; + readonly id: Option; + readonly period: u32; + readonly retries: u8; + } & Struct; + readonly isRetryCancelled: boolean; + readonly asRetryCancelled: { + readonly task: ITuple<[u32, u32]>; + readonly id: Option; + } & Struct; readonly isCallUnavailable: boolean; readonly asCallUnavailable: { readonly task: ITuple<[u32, u32]>; @@ -210,12 +222,17 @@ declare module '@polkadot/types/lookup' { readonly task: ITuple<[u32, u32]>; readonly id: Option; } & Struct; + readonly isRetryFailed: boolean; + readonly asRetryFailed: { + readonly task: ITuple<[u32, u32]>; + readonly id: Option; + } & Struct; readonly isPermanentlyOverweight: boolean; readonly asPermanentlyOverweight: { readonly task: ITuple<[u32, u32]>; readonly id: Option; } & Struct; - readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallUnavailable' | 'PeriodicFailed' | 'PermanentlyOverweight'; + readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'RetrySet' | 'RetryCancelled' | 'CallUnavailable' | 'PeriodicFailed' | 'RetryFailed' | 'PermanentlyOverweight'; } /** @name PalletUtilityEvent (36) */ @@ -521,7 +538,12 @@ declare module '@polkadot/types/lookup' { readonly who: AccountId32; readonly amount: u128; } & Struct; - readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed'; + readonly isTotalIssuanceForced: boolean; + readonly asTotalIssuanceForced: { + readonly old: u128; + readonly new_: u128; + } & Struct; + readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed' | 'TotalIssuanceForced'; } /** @name FrameSupportTokensMiscBalanceStatus (51) */ @@ -1003,24 +1025,24 @@ declare module '@polkadot/types/lookup' { interface PalletXcmEvent extends Enum { readonly isAttempted: boolean; readonly asAttempted: { - readonly outcome: XcmV3TraitsOutcome; + readonly outcome: StagingXcmV4TraitsOutcome; } & Struct; readonly isSent: boolean; readonly asSent: { - readonly origin: StagingXcmV3MultiLocation; - readonly destination: StagingXcmV3MultiLocation; - readonly message: XcmV3Xcm; + readonly origin: StagingXcmV4Location; + readonly destination: StagingXcmV4Location; + readonly message: StagingXcmV4Xcm; readonly messageId: U8aFixed; } & Struct; readonly isUnexpectedResponse: boolean; readonly asUnexpectedResponse: { - readonly origin: StagingXcmV3MultiLocation; + readonly origin: StagingXcmV4Location; readonly queryId: u64; } & Struct; readonly isResponseReady: boolean; readonly asResponseReady: { readonly queryId: u64; - readonly response: XcmV3Response; + readonly response: StagingXcmV4Response; } & Struct; readonly isNotified: boolean; readonly asNotified: { @@ -1050,13 +1072,13 @@ declare module '@polkadot/types/lookup' { } & Struct; readonly isInvalidResponder: boolean; readonly asInvalidResponder: { - readonly origin: StagingXcmV3MultiLocation; + readonly origin: StagingXcmV4Location; readonly queryId: u64; - readonly expectedLocation: Option; + readonly expectedLocation: Option; } & Struct; readonly isInvalidResponderVersion: boolean; readonly asInvalidResponderVersion: { - readonly origin: StagingXcmV3MultiLocation; + readonly origin: StagingXcmV4Location; readonly queryId: u64; } & Struct; readonly isResponseTaken: boolean; @@ -1066,84 +1088,95 @@ declare module '@polkadot/types/lookup' { readonly isAssetsTrapped: boolean; readonly asAssetsTrapped: { readonly hash_: H256; - readonly origin: StagingXcmV3MultiLocation; - readonly assets: XcmVersionedMultiAssets; + readonly origin: StagingXcmV4Location; + readonly assets: XcmVersionedAssets; } & Struct; readonly isVersionChangeNotified: boolean; readonly asVersionChangeNotified: { - readonly destination: StagingXcmV3MultiLocation; + readonly destination: StagingXcmV4Location; readonly result: u32; - readonly cost: XcmV3MultiassetMultiAssets; + readonly cost: StagingXcmV4AssetAssets; readonly messageId: U8aFixed; } & Struct; readonly isSupportedVersionChanged: boolean; readonly asSupportedVersionChanged: { - readonly location: StagingXcmV3MultiLocation; + readonly location: StagingXcmV4Location; readonly version: u32; } & Struct; readonly isNotifyTargetSendFail: boolean; readonly asNotifyTargetSendFail: { - readonly location: StagingXcmV3MultiLocation; + readonly location: StagingXcmV4Location; readonly queryId: u64; readonly error: XcmV3TraitsError; } & Struct; readonly isNotifyTargetMigrationFail: boolean; readonly asNotifyTargetMigrationFail: { - readonly location: XcmVersionedMultiLocation; + readonly location: XcmVersionedLocation; readonly queryId: u64; } & Struct; readonly isInvalidQuerierVersion: boolean; readonly asInvalidQuerierVersion: { - readonly origin: StagingXcmV3MultiLocation; + readonly origin: StagingXcmV4Location; readonly queryId: u64; } & Struct; readonly isInvalidQuerier: boolean; readonly asInvalidQuerier: { - readonly origin: StagingXcmV3MultiLocation; + readonly origin: StagingXcmV4Location; readonly queryId: u64; - readonly expectedQuerier: StagingXcmV3MultiLocation; - readonly maybeActualQuerier: Option; + readonly expectedQuerier: StagingXcmV4Location; + readonly maybeActualQuerier: Option; } & Struct; readonly isVersionNotifyStarted: boolean; readonly asVersionNotifyStarted: { - readonly destination: StagingXcmV3MultiLocation; - readonly cost: XcmV3MultiassetMultiAssets; + readonly destination: StagingXcmV4Location; + readonly cost: StagingXcmV4AssetAssets; readonly messageId: U8aFixed; } & Struct; readonly isVersionNotifyRequested: boolean; readonly asVersionNotifyRequested: { - readonly destination: StagingXcmV3MultiLocation; - readonly cost: XcmV3MultiassetMultiAssets; + readonly destination: StagingXcmV4Location; + readonly cost: StagingXcmV4AssetAssets; readonly messageId: U8aFixed; } & Struct; readonly isVersionNotifyUnrequested: boolean; readonly asVersionNotifyUnrequested: { - readonly destination: StagingXcmV3MultiLocation; - readonly cost: XcmV3MultiassetMultiAssets; + readonly destination: StagingXcmV4Location; + readonly cost: StagingXcmV4AssetAssets; readonly messageId: U8aFixed; } & Struct; readonly isFeesPaid: boolean; readonly asFeesPaid: { - readonly paying: StagingXcmV3MultiLocation; - readonly fees: XcmV3MultiassetMultiAssets; + readonly paying: StagingXcmV4Location; + readonly fees: StagingXcmV4AssetAssets; } & Struct; readonly isAssetsClaimed: boolean; readonly asAssetsClaimed: { readonly hash_: H256; - readonly origin: StagingXcmV3MultiLocation; - readonly assets: XcmVersionedMultiAssets; + readonly origin: StagingXcmV4Location; + readonly assets: XcmVersionedAssets; + } & Struct; + readonly isVersionMigrationFinished: boolean; + readonly asVersionMigrationFinished: { + readonly version: u32; } & Struct; - 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'; + 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' | 'VersionMigrationFinished'; } - /** @name XcmV3TraitsOutcome (72) */ - interface XcmV3TraitsOutcome extends Enum { + /** @name StagingXcmV4TraitsOutcome (72) */ + interface StagingXcmV4TraitsOutcome extends Enum { readonly isComplete: boolean; - readonly asComplete: SpWeightsWeightV2Weight; + readonly asComplete: { + readonly used: SpWeightsWeightV2Weight; + } & Struct; readonly isIncomplete: boolean; - readonly asIncomplete: ITuple<[SpWeightsWeightV2Weight, XcmV3TraitsError]>; + readonly asIncomplete: { + readonly used: SpWeightsWeightV2Weight; + readonly error: XcmV3TraitsError; + } & Struct; readonly isError: boolean; - readonly asError: XcmV3TraitsError; + readonly asError: { + readonly error: XcmV3TraitsError; + } & Struct; readonly type: 'Complete' | 'Incomplete' | 'Error'; } @@ -1194,51 +1227,51 @@ declare module '@polkadot/types/lookup' { 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 { + /** @name StagingXcmV4Location (74) */ + interface StagingXcmV4Location extends Struct { readonly parents: u8; - readonly interior: XcmV3Junctions; + readonly interior: StagingXcmV4Junctions; } - /** @name XcmV3Junctions (75) */ - interface XcmV3Junctions extends Enum { + /** @name StagingXcmV4Junctions (75) */ + interface StagingXcmV4Junctions extends Enum { readonly isHere: boolean; readonly isX1: boolean; - readonly asX1: XcmV3Junction; + readonly asX1: Vec; readonly isX2: boolean; - readonly asX2: ITuple<[XcmV3Junction, XcmV3Junction]>; + readonly asX2: Vec; readonly isX3: boolean; - readonly asX3: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction]>; + readonly asX3: Vec; readonly isX4: boolean; - readonly asX4: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>; + readonly asX4: Vec; readonly isX5: boolean; - readonly asX5: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>; + readonly asX5: Vec; readonly isX6: boolean; - readonly asX6: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>; + readonly asX6: Vec; readonly isX7: boolean; - readonly asX7: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>; + readonly asX7: Vec; readonly isX8: boolean; - readonly asX8: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>; + readonly asX8: Vec; readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8'; } - /** @name XcmV3Junction (76) */ - interface XcmV3Junction extends Enum { + /** @name StagingXcmV4Junction (77) */ + interface StagingXcmV4Junction extends Enum { readonly isParachain: boolean; readonly asParachain: Compact; readonly isAccountId32: boolean; readonly asAccountId32: { - readonly network: Option; + readonly network: Option; readonly id: U8aFixed; } & Struct; readonly isAccountIndex64: boolean; readonly asAccountIndex64: { - readonly network: Option; + readonly network: Option; readonly index: Compact; } & Struct; readonly isAccountKey20: boolean; readonly asAccountKey20: { - readonly network: Option; + readonly network: Option; readonly key: U8aFixed; } & Struct; readonly isPalletInstance: boolean; @@ -1257,12 +1290,12 @@ declare module '@polkadot/types/lookup' { readonly part: XcmV3JunctionBodyPart; } & Struct; readonly isGlobalConsensus: boolean; - readonly asGlobalConsensus: XcmV3JunctionNetworkId; + readonly asGlobalConsensus: StagingXcmV4JunctionNetworkId; readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus'; } - /** @name XcmV3JunctionNetworkId (79) */ - interface XcmV3JunctionNetworkId extends Enum { + /** @name StagingXcmV4JunctionNetworkId (80) */ + interface StagingXcmV4JunctionNetworkId extends Enum { readonly isByGenesis: boolean; readonly asByGenesis: U8aFixed; readonly isByFork: boolean; @@ -1285,7 +1318,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash' | 'PolkadotBulletin'; } - /** @name XcmV3JunctionBodyId (80) */ + /** @name XcmV3JunctionBodyId (81) */ interface XcmV3JunctionBodyId extends Enum { readonly isUnit: boolean; readonly isMoniker: boolean; @@ -1302,7 +1335,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Unit' | 'Moniker' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury'; } - /** @name XcmV3JunctionBodyPart (81) */ + /** @name XcmV3JunctionBodyPart (82) */ interface XcmV3JunctionBodyPart extends Enum { readonly isVoice: boolean; readonly isMembers: boolean; @@ -1327,34 +1360,34 @@ declare module '@polkadot/types/lookup' { readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion'; } - /** @name XcmV3Xcm (82) */ - interface XcmV3Xcm extends Vec {} + /** @name StagingXcmV4Xcm (90) */ + interface StagingXcmV4Xcm extends Vec {} - /** @name XcmV3Instruction (84) */ - interface XcmV3Instruction extends Enum { + /** @name StagingXcmV4Instruction (92) */ + interface StagingXcmV4Instruction extends Enum { readonly isWithdrawAsset: boolean; - readonly asWithdrawAsset: XcmV3MultiassetMultiAssets; + readonly asWithdrawAsset: StagingXcmV4AssetAssets; readonly isReserveAssetDeposited: boolean; - readonly asReserveAssetDeposited: XcmV3MultiassetMultiAssets; + readonly asReserveAssetDeposited: StagingXcmV4AssetAssets; readonly isReceiveTeleportedAsset: boolean; - readonly asReceiveTeleportedAsset: XcmV3MultiassetMultiAssets; + readonly asReceiveTeleportedAsset: StagingXcmV4AssetAssets; readonly isQueryResponse: boolean; readonly asQueryResponse: { readonly queryId: Compact; - readonly response: XcmV3Response; + readonly response: StagingXcmV4Response; readonly maxWeight: SpWeightsWeightV2Weight; - readonly querier: Option; + readonly querier: Option; } & Struct; readonly isTransferAsset: boolean; readonly asTransferAsset: { - readonly assets: XcmV3MultiassetMultiAssets; - readonly beneficiary: StagingXcmV3MultiLocation; + readonly assets: StagingXcmV4AssetAssets; + readonly beneficiary: StagingXcmV4Location; } & Struct; readonly isTransferReserveAsset: boolean; readonly asTransferReserveAsset: { - readonly assets: XcmV3MultiassetMultiAssets; - readonly dest: StagingXcmV3MultiLocation; - readonly xcm: XcmV3Xcm; + readonly assets: StagingXcmV4AssetAssets; + readonly dest: StagingXcmV4Location; + readonly xcm: StagingXcmV4Xcm; } & Struct; readonly isTransact: boolean; readonly asTransact: { @@ -1380,58 +1413,58 @@ declare module '@polkadot/types/lookup' { } & Struct; readonly isClearOrigin: boolean; readonly isDescendOrigin: boolean; - readonly asDescendOrigin: XcmV3Junctions; + readonly asDescendOrigin: StagingXcmV4Junctions; readonly isReportError: boolean; - readonly asReportError: XcmV3QueryResponseInfo; + readonly asReportError: StagingXcmV4QueryResponseInfo; readonly isDepositAsset: boolean; readonly asDepositAsset: { - readonly assets: XcmV3MultiassetMultiAssetFilter; - readonly beneficiary: StagingXcmV3MultiLocation; + readonly assets: StagingXcmV4AssetAssetFilter; + readonly beneficiary: StagingXcmV4Location; } & Struct; readonly isDepositReserveAsset: boolean; readonly asDepositReserveAsset: { - readonly assets: XcmV3MultiassetMultiAssetFilter; - readonly dest: StagingXcmV3MultiLocation; - readonly xcm: XcmV3Xcm; + readonly assets: StagingXcmV4AssetAssetFilter; + readonly dest: StagingXcmV4Location; + readonly xcm: StagingXcmV4Xcm; } & Struct; readonly isExchangeAsset: boolean; readonly asExchangeAsset: { - readonly give: XcmV3MultiassetMultiAssetFilter; - readonly want: XcmV3MultiassetMultiAssets; + readonly give: StagingXcmV4AssetAssetFilter; + readonly want: StagingXcmV4AssetAssets; readonly maximal: bool; } & Struct; readonly isInitiateReserveWithdraw: boolean; readonly asInitiateReserveWithdraw: { - readonly assets: XcmV3MultiassetMultiAssetFilter; - readonly reserve: StagingXcmV3MultiLocation; - readonly xcm: XcmV3Xcm; + readonly assets: StagingXcmV4AssetAssetFilter; + readonly reserve: StagingXcmV4Location; + readonly xcm: StagingXcmV4Xcm; } & Struct; readonly isInitiateTeleport: boolean; readonly asInitiateTeleport: { - readonly assets: XcmV3MultiassetMultiAssetFilter; - readonly dest: StagingXcmV3MultiLocation; - readonly xcm: XcmV3Xcm; + readonly assets: StagingXcmV4AssetAssetFilter; + readonly dest: StagingXcmV4Location; + readonly xcm: StagingXcmV4Xcm; } & Struct; readonly isReportHolding: boolean; readonly asReportHolding: { - readonly responseInfo: XcmV3QueryResponseInfo; - readonly assets: XcmV3MultiassetMultiAssetFilter; + readonly responseInfo: StagingXcmV4QueryResponseInfo; + readonly assets: StagingXcmV4AssetAssetFilter; } & Struct; readonly isBuyExecution: boolean; readonly asBuyExecution: { - readonly fees: XcmV3MultiAsset; + readonly fees: StagingXcmV4Asset; readonly weightLimit: XcmV3WeightLimit; } & Struct; readonly isRefundSurplus: boolean; readonly isSetErrorHandler: boolean; - readonly asSetErrorHandler: XcmV3Xcm; + readonly asSetErrorHandler: StagingXcmV4Xcm; readonly isSetAppendix: boolean; - readonly asSetAppendix: XcmV3Xcm; + readonly asSetAppendix: StagingXcmV4Xcm; readonly isClearError: boolean; readonly isClaimAsset: boolean; readonly asClaimAsset: { - readonly assets: XcmV3MultiassetMultiAssets; - readonly ticket: StagingXcmV3MultiLocation; + readonly assets: StagingXcmV4AssetAssets; + readonly ticket: StagingXcmV4Location; } & Struct; readonly isTrap: boolean; readonly asTrap: Compact; @@ -1442,11 +1475,11 @@ declare module '@polkadot/types/lookup' { } & Struct; readonly isUnsubscribeVersion: boolean; readonly isBurnAsset: boolean; - readonly asBurnAsset: XcmV3MultiassetMultiAssets; + readonly asBurnAsset: StagingXcmV4AssetAssets; readonly isExpectAsset: boolean; - readonly asExpectAsset: XcmV3MultiassetMultiAssets; + readonly asExpectAsset: StagingXcmV4AssetAssets; readonly isExpectOrigin: boolean; - readonly asExpectOrigin: Option; + readonly asExpectOrigin: Option; readonly isExpectError: boolean; readonly asExpectError: Option>; readonly isExpectTransactStatus: boolean; @@ -1454,7 +1487,7 @@ declare module '@polkadot/types/lookup' { readonly isQueryPallet: boolean; readonly asQueryPallet: { readonly moduleName: Bytes; - readonly responseInfo: XcmV3QueryResponseInfo; + readonly responseInfo: StagingXcmV4QueryResponseInfo; } & Struct; readonly isExpectPallet: boolean; readonly asExpectPallet: { @@ -1465,35 +1498,35 @@ declare module '@polkadot/types/lookup' { readonly minCrateMinor: Compact; } & Struct; readonly isReportTransactStatus: boolean; - readonly asReportTransactStatus: XcmV3QueryResponseInfo; + readonly asReportTransactStatus: StagingXcmV4QueryResponseInfo; readonly isClearTransactStatus: boolean; readonly isUniversalOrigin: boolean; - readonly asUniversalOrigin: XcmV3Junction; + readonly asUniversalOrigin: StagingXcmV4Junction; readonly isExportMessage: boolean; readonly asExportMessage: { - readonly network: XcmV3JunctionNetworkId; - readonly destination: XcmV3Junctions; - readonly xcm: XcmV3Xcm; + readonly network: StagingXcmV4JunctionNetworkId; + readonly destination: StagingXcmV4Junctions; + readonly xcm: StagingXcmV4Xcm; } & Struct; readonly isLockAsset: boolean; readonly asLockAsset: { - readonly asset: XcmV3MultiAsset; - readonly unlocker: StagingXcmV3MultiLocation; + readonly asset: StagingXcmV4Asset; + readonly unlocker: StagingXcmV4Location; } & Struct; readonly isUnlockAsset: boolean; readonly asUnlockAsset: { - readonly asset: XcmV3MultiAsset; - readonly target: StagingXcmV3MultiLocation; + readonly asset: StagingXcmV4Asset; + readonly target: StagingXcmV4Location; } & Struct; readonly isNoteUnlockable: boolean; readonly asNoteUnlockable: { - readonly asset: XcmV3MultiAsset; - readonly owner: StagingXcmV3MultiLocation; + readonly asset: StagingXcmV4Asset; + readonly owner: StagingXcmV4Location; } & Struct; readonly isRequestUnlock: boolean; readonly asRequestUnlock: { - readonly asset: XcmV3MultiAsset; - readonly locker: StagingXcmV3MultiLocation; + readonly asset: StagingXcmV4Asset; + readonly locker: StagingXcmV4Location; } & Struct; readonly isSetFeesMode: boolean; readonly asSetFeesMode: { @@ -1503,44 +1536,38 @@ declare module '@polkadot/types/lookup' { readonly asSetTopic: U8aFixed; readonly isClearTopic: boolean; readonly isAliasOrigin: boolean; - readonly asAliasOrigin: StagingXcmV3MultiLocation; + readonly asAliasOrigin: StagingXcmV4Location; readonly isUnpaidExecution: boolean; readonly asUnpaidExecution: { readonly weightLimit: XcmV3WeightLimit; - readonly checkOrigin: Option; + readonly checkOrigin: Option; } & Struct; readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'ReportHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion' | 'BurnAsset' | 'ExpectAsset' | 'ExpectOrigin' | 'ExpectError' | 'ExpectTransactStatus' | 'QueryPallet' | 'ExpectPallet' | 'ReportTransactStatus' | 'ClearTransactStatus' | 'UniversalOrigin' | 'ExportMessage' | 'LockAsset' | 'UnlockAsset' | 'NoteUnlockable' | 'RequestUnlock' | 'SetFeesMode' | 'SetTopic' | 'ClearTopic' | 'AliasOrigin' | 'UnpaidExecution'; } - /** @name XcmV3MultiassetMultiAssets (85) */ - interface XcmV3MultiassetMultiAssets extends Vec {} + /** @name StagingXcmV4AssetAssets (93) */ + interface StagingXcmV4AssetAssets extends Vec {} - /** @name XcmV3MultiAsset (87) */ - interface XcmV3MultiAsset extends Struct { - readonly id: XcmV3MultiassetAssetId; - readonly fun: XcmV3MultiassetFungibility; + /** @name StagingXcmV4Asset (95) */ + interface StagingXcmV4Asset extends Struct { + readonly id: StagingXcmV4AssetAssetId; + readonly fun: StagingXcmV4AssetFungibility; } - /** @name XcmV3MultiassetAssetId (88) */ - interface XcmV3MultiassetAssetId extends Enum { - readonly isConcrete: boolean; - readonly asConcrete: StagingXcmV3MultiLocation; - readonly isAbstract: boolean; - readonly asAbstract: U8aFixed; - readonly type: 'Concrete' | 'Abstract'; - } + /** @name StagingXcmV4AssetAssetId (96) */ + interface StagingXcmV4AssetAssetId extends StagingXcmV4Location {} - /** @name XcmV3MultiassetFungibility (89) */ - interface XcmV3MultiassetFungibility extends Enum { + /** @name StagingXcmV4AssetFungibility (97) */ + interface StagingXcmV4AssetFungibility extends Enum { readonly isFungible: boolean; readonly asFungible: Compact; readonly isNonFungible: boolean; - readonly asNonFungible: XcmV3MultiassetAssetInstance; + readonly asNonFungible: StagingXcmV4AssetAssetInstance; readonly type: 'Fungible' | 'NonFungible'; } - /** @name XcmV3MultiassetAssetInstance (90) */ - interface XcmV3MultiassetAssetInstance extends Enum { + /** @name StagingXcmV4AssetAssetInstance (98) */ + interface StagingXcmV4AssetAssetInstance extends Enum { readonly isUndefined: boolean; readonly isIndex: boolean; readonly asIndex: Compact; @@ -1555,24 +1582,24 @@ declare module '@polkadot/types/lookup' { readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32'; } - /** @name XcmV3Response (92) */ - interface XcmV3Response extends Enum { + /** @name StagingXcmV4Response (100) */ + interface StagingXcmV4Response extends Enum { readonly isNull: boolean; readonly isAssets: boolean; - readonly asAssets: XcmV3MultiassetMultiAssets; + readonly asAssets: StagingXcmV4AssetAssets; readonly isExecutionResult: boolean; readonly asExecutionResult: Option>; readonly isVersion: boolean; readonly asVersion: u32; readonly isPalletsInfo: boolean; - readonly asPalletsInfo: Vec; + readonly asPalletsInfo: Vec; readonly isDispatchResult: boolean; readonly asDispatchResult: XcmV3MaybeErrorCode; readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version' | 'PalletsInfo' | 'DispatchResult'; } - /** @name XcmV3PalletInfo (96) */ - interface XcmV3PalletInfo extends Struct { + /** @name StagingXcmV4PalletInfo (104) */ + interface StagingXcmV4PalletInfo extends Struct { readonly index: Compact; readonly name: Bytes; readonly moduleName: Bytes; @@ -1581,7 +1608,7 @@ declare module '@polkadot/types/lookup' { readonly patch: Compact; } - /** @name XcmV3MaybeErrorCode (99) */ + /** @name XcmV3MaybeErrorCode (107) */ interface XcmV3MaybeErrorCode extends Enum { readonly isSuccess: boolean; readonly isError: boolean; @@ -1591,7 +1618,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Success' | 'Error' | 'TruncatedError'; } - /** @name XcmV2OriginKind (102) */ + /** @name XcmV2OriginKind (110) */ interface XcmV2OriginKind extends Enum { readonly isNative: boolean; readonly isSovereignAccount: boolean; @@ -1600,54 +1627,54 @@ declare module '@polkadot/types/lookup' { readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm'; } - /** @name XcmDoubleEncoded (103) */ + /** @name XcmDoubleEncoded (111) */ interface XcmDoubleEncoded extends Struct { readonly encoded: Bytes; } - /** @name XcmV3QueryResponseInfo (104) */ - interface XcmV3QueryResponseInfo extends Struct { - readonly destination: StagingXcmV3MultiLocation; + /** @name StagingXcmV4QueryResponseInfo (112) */ + interface StagingXcmV4QueryResponseInfo extends Struct { + readonly destination: StagingXcmV4Location; readonly queryId: Compact; readonly maxWeight: SpWeightsWeightV2Weight; } - /** @name XcmV3MultiassetMultiAssetFilter (105) */ - interface XcmV3MultiassetMultiAssetFilter extends Enum { + /** @name StagingXcmV4AssetAssetFilter (113) */ + interface StagingXcmV4AssetAssetFilter extends Enum { readonly isDefinite: boolean; - readonly asDefinite: XcmV3MultiassetMultiAssets; + readonly asDefinite: StagingXcmV4AssetAssets; readonly isWild: boolean; - readonly asWild: XcmV3MultiassetWildMultiAsset; + readonly asWild: StagingXcmV4AssetWildAsset; readonly type: 'Definite' | 'Wild'; } - /** @name XcmV3MultiassetWildMultiAsset (106) */ - interface XcmV3MultiassetWildMultiAsset extends Enum { + /** @name StagingXcmV4AssetWildAsset (114) */ + interface StagingXcmV4AssetWildAsset extends Enum { readonly isAll: boolean; readonly isAllOf: boolean; readonly asAllOf: { - readonly id: XcmV3MultiassetAssetId; - readonly fun: XcmV3MultiassetWildFungibility; + readonly id: StagingXcmV4AssetAssetId; + readonly fun: StagingXcmV4AssetWildFungibility; } & Struct; readonly isAllCounted: boolean; readonly asAllCounted: Compact; readonly isAllOfCounted: boolean; readonly asAllOfCounted: { - readonly id: XcmV3MultiassetAssetId; - readonly fun: XcmV3MultiassetWildFungibility; + readonly id: StagingXcmV4AssetAssetId; + readonly fun: StagingXcmV4AssetWildFungibility; readonly count: Compact; } & Struct; readonly type: 'All' | 'AllOf' | 'AllCounted' | 'AllOfCounted'; } - /** @name XcmV3MultiassetWildFungibility (107) */ - interface XcmV3MultiassetWildFungibility extends Enum { + /** @name StagingXcmV4AssetWildFungibility (115) */ + interface StagingXcmV4AssetWildFungibility extends Enum { readonly isFungible: boolean; readonly isNonFungible: boolean; readonly type: 'Fungible' | 'NonFungible'; } - /** @name XcmV3WeightLimit (108) */ + /** @name XcmV3WeightLimit (116) */ interface XcmV3WeightLimit extends Enum { readonly isUnlimited: boolean; readonly isLimited: boolean; @@ -1655,25 +1682,27 @@ declare module '@polkadot/types/lookup' { readonly type: 'Unlimited' | 'Limited'; } - /** @name XcmVersionedMultiAssets (109) */ - interface XcmVersionedMultiAssets extends Enum { + /** @name XcmVersionedAssets (117) */ + interface XcmVersionedAssets extends Enum { readonly isV2: boolean; readonly asV2: XcmV2MultiassetMultiAssets; readonly isV3: boolean; readonly asV3: XcmV3MultiassetMultiAssets; - readonly type: 'V2' | 'V3'; + readonly isV4: boolean; + readonly asV4: StagingXcmV4AssetAssets; + readonly type: 'V2' | 'V3' | 'V4'; } - /** @name XcmV2MultiassetMultiAssets (110) */ + /** @name XcmV2MultiassetMultiAssets (118) */ interface XcmV2MultiassetMultiAssets extends Vec {} - /** @name XcmV2MultiAsset (112) */ + /** @name XcmV2MultiAsset (120) */ interface XcmV2MultiAsset extends Struct { readonly id: XcmV2MultiassetAssetId; readonly fun: XcmV2MultiassetFungibility; } - /** @name XcmV2MultiassetAssetId (113) */ + /** @name XcmV2MultiassetAssetId (121) */ interface XcmV2MultiassetAssetId extends Enum { readonly isConcrete: boolean; readonly asConcrete: XcmV2MultiLocation; @@ -1682,13 +1711,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'Concrete' | 'Abstract'; } - /** @name XcmV2MultiLocation (114) */ + /** @name XcmV2MultiLocation (122) */ interface XcmV2MultiLocation extends Struct { readonly parents: u8; readonly interior: XcmV2MultilocationJunctions; } - /** @name XcmV2MultilocationJunctions (115) */ + /** @name XcmV2MultilocationJunctions (123) */ interface XcmV2MultilocationJunctions extends Enum { readonly isHere: boolean; readonly isX1: boolean; @@ -1710,7 +1739,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8'; } - /** @name XcmV2Junction (116) */ + /** @name XcmV2Junction (124) */ interface XcmV2Junction extends Enum { readonly isParachain: boolean; readonly asParachain: Compact; @@ -1744,7 +1773,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality'; } - /** @name XcmV2NetworkId (117) */ + /** @name XcmV2NetworkId (125) */ interface XcmV2NetworkId extends Enum { readonly isAny: boolean; readonly isNamed: boolean; @@ -1754,7 +1783,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama'; } - /** @name XcmV2BodyId (119) */ + /** @name XcmV2BodyId (127) */ interface XcmV2BodyId extends Enum { readonly isUnit: boolean; readonly isNamed: boolean; @@ -1771,7 +1800,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury'; } - /** @name XcmV2BodyPart (120) */ + /** @name XcmV2BodyPart (128) */ interface XcmV2BodyPart extends Enum { readonly isVoice: boolean; readonly isMembers: boolean; @@ -1796,7 +1825,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion'; } - /** @name XcmV2MultiassetFungibility (121) */ + /** @name XcmV2MultiassetFungibility (129) */ interface XcmV2MultiassetFungibility extends Enum { readonly isFungible: boolean; readonly asFungible: Compact; @@ -1805,7 +1834,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Fungible' | 'NonFungible'; } - /** @name XcmV2MultiassetAssetInstance (122) */ + /** @name XcmV2MultiassetAssetInstance (130) */ interface XcmV2MultiassetAssetInstance extends Enum { readonly isUndefined: boolean; readonly isIndex: boolean; @@ -1823,98 +1852,200 @@ declare module '@polkadot/types/lookup' { readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob'; } - /** @name XcmVersionedMultiLocation (123) */ - interface XcmVersionedMultiLocation extends Enum { + /** @name XcmV3MultiassetMultiAssets (131) */ + interface XcmV3MultiassetMultiAssets extends Vec {} + + /** @name XcmV3MultiAsset (133) */ + interface XcmV3MultiAsset extends Struct { + readonly id: XcmV3MultiassetAssetId; + readonly fun: XcmV3MultiassetFungibility; + } + + /** @name XcmV3MultiassetAssetId (134) */ + interface XcmV3MultiassetAssetId extends Enum { + readonly isConcrete: boolean; + readonly asConcrete: StagingXcmV3MultiLocation; + readonly isAbstract: boolean; + readonly asAbstract: U8aFixed; + readonly type: 'Concrete' | 'Abstract'; + } + + /** @name StagingXcmV3MultiLocation (135) */ + interface StagingXcmV3MultiLocation extends Struct { + readonly parents: u8; + readonly interior: XcmV3Junctions; + } + + /** @name XcmV3Junctions (136) */ + interface XcmV3Junctions extends Enum { + readonly isHere: boolean; + readonly isX1: boolean; + readonly asX1: XcmV3Junction; + readonly isX2: boolean; + readonly asX2: ITuple<[XcmV3Junction, XcmV3Junction]>; + readonly isX3: boolean; + readonly asX3: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction]>; + readonly isX4: boolean; + readonly asX4: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>; + readonly isX5: boolean; + readonly asX5: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>; + readonly isX6: boolean; + readonly asX6: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>; + readonly isX7: boolean; + readonly asX7: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>; + readonly isX8: boolean; + readonly asX8: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>; + readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8'; + } + + /** @name XcmV3Junction (137) */ + interface XcmV3Junction extends Enum { + readonly isParachain: boolean; + readonly asParachain: Compact; + readonly isAccountId32: boolean; + readonly asAccountId32: { + readonly network: Option; + readonly id: U8aFixed; + } & Struct; + readonly isAccountIndex64: boolean; + readonly asAccountIndex64: { + readonly network: Option; + readonly index: Compact; + } & Struct; + readonly isAccountKey20: boolean; + readonly asAccountKey20: { + readonly network: Option; + readonly key: U8aFixed; + } & Struct; + readonly isPalletInstance: boolean; + readonly asPalletInstance: u8; + readonly isGeneralIndex: boolean; + readonly asGeneralIndex: Compact; + readonly isGeneralKey: boolean; + readonly asGeneralKey: { + readonly length: u8; + readonly data: U8aFixed; + } & Struct; + readonly isOnlyChild: boolean; + readonly isPlurality: boolean; + readonly asPlurality: { + readonly id: XcmV3JunctionBodyId; + readonly part: XcmV3JunctionBodyPart; + } & Struct; + readonly isGlobalConsensus: boolean; + readonly asGlobalConsensus: XcmV3JunctionNetworkId; + readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus'; + } + + /** @name XcmV3JunctionNetworkId (139) */ + interface XcmV3JunctionNetworkId extends Enum { + readonly isByGenesis: boolean; + readonly asByGenesis: U8aFixed; + readonly isByFork: boolean; + readonly asByFork: { + readonly blockNumber: u64; + readonly blockHash: U8aFixed; + } & Struct; + readonly isPolkadot: boolean; + readonly isKusama: boolean; + readonly isWestend: boolean; + readonly isRococo: boolean; + readonly isWococo: boolean; + readonly isEthereum: boolean; + readonly asEthereum: { + readonly chainId: Compact; + } & Struct; + readonly isBitcoinCore: boolean; + readonly isBitcoinCash: boolean; + readonly isPolkadotBulletin: boolean; + readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash' | 'PolkadotBulletin'; + } + + /** @name XcmV3MultiassetFungibility (140) */ + interface XcmV3MultiassetFungibility extends Enum { + readonly isFungible: boolean; + readonly asFungible: Compact; + readonly isNonFungible: boolean; + readonly asNonFungible: XcmV3MultiassetAssetInstance; + readonly type: 'Fungible' | 'NonFungible'; + } + + /** @name XcmV3MultiassetAssetInstance (141) */ + interface XcmV3MultiassetAssetInstance extends Enum { + readonly isUndefined: boolean; + readonly isIndex: boolean; + readonly asIndex: Compact; + readonly isArray4: boolean; + readonly asArray4: U8aFixed; + readonly isArray8: boolean; + readonly asArray8: U8aFixed; + readonly isArray16: boolean; + readonly asArray16: U8aFixed; + readonly isArray32: boolean; + readonly asArray32: U8aFixed; + readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32'; + } + + /** @name XcmVersionedLocation (142) */ + interface XcmVersionedLocation extends Enum { readonly isV2: boolean; readonly asV2: XcmV2MultiLocation; readonly isV3: boolean; readonly asV3: StagingXcmV3MultiLocation; - readonly type: 'V2' | 'V3'; + readonly isV4: boolean; + readonly asV4: StagingXcmV4Location; + readonly type: 'V2' | 'V3' | 'V4'; } - /** @name CumulusPalletXcmEvent (124) */ + /** @name CumulusPalletXcmEvent (143) */ interface CumulusPalletXcmEvent extends Enum { readonly isInvalidFormat: boolean; readonly asInvalidFormat: U8aFixed; readonly isUnsupportedVersion: boolean; readonly asUnsupportedVersion: U8aFixed; readonly isExecutedDownward: boolean; - readonly asExecutedDownward: ITuple<[U8aFixed, XcmV3TraitsOutcome]>; + readonly asExecutedDownward: ITuple<[U8aFixed, StagingXcmV4TraitsOutcome]>; readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward'; } - /** @name CumulusPalletDmpQueueEvent (125) */ - interface CumulusPalletDmpQueueEvent extends Enum { - 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 isExportOverweightFailed: boolean; - readonly asExportOverweightFailed: { - readonly index: u64; - } & Struct; - readonly isCompletedOverweightExport: boolean; - readonly isStartedCleanup: boolean; - readonly isCleanedSome: boolean; - readonly asCleanedSome: { - readonly keysRemoved: u32; - } & Struct; - readonly isCompleted: boolean; - readonly asCompleted: { - readonly error: bool; - } & Struct; - readonly type: 'StartedExport' | 'Exported' | 'ExportFailed' | 'CompletedExport' | 'StartedOverweightExport' | 'ExportedOverweight' | 'ExportOverweightFailed' | 'CompletedOverweightExport' | 'StartedCleanup' | 'CleanedSome' | 'Completed'; - } - - /** @name OrmlXtokensModuleEvent (126) */ + /** @name OrmlXtokensModuleEvent (144) */ interface OrmlXtokensModuleEvent extends Enum { - readonly isTransferredMultiAssets: boolean; - readonly asTransferredMultiAssets: { + readonly isTransferredAssets: boolean; + readonly asTransferredAssets: { readonly sender: AccountId32; - readonly assets: XcmV3MultiassetMultiAssets; - readonly fee: XcmV3MultiAsset; - readonly dest: StagingXcmV3MultiLocation; + readonly assets: StagingXcmV4AssetAssets; + readonly fee: StagingXcmV4Asset; + readonly dest: StagingXcmV4Location; } & Struct; - readonly type: 'TransferredMultiAssets'; + readonly type: 'TransferredAssets'; } - /** @name OrmlUnknownTokensModuleEvent (127) */ + /** @name OrmlUnknownTokensModuleEvent (145) */ interface OrmlUnknownTokensModuleEvent extends Enum { readonly isDeposited: boolean; readonly asDeposited: { - readonly asset: XcmV3MultiAsset; - readonly who: StagingXcmV3MultiLocation; + readonly asset: StagingXcmV4Asset; + readonly who: StagingXcmV4Location; } & Struct; readonly isWithdrawn: boolean; readonly asWithdrawn: { - readonly asset: XcmV3MultiAsset; - readonly who: StagingXcmV3MultiLocation; + readonly asset: StagingXcmV4Asset; + readonly who: StagingXcmV4Location; } & Struct; readonly type: 'Deposited' | 'Withdrawn'; } - /** @name OrmlXcmModuleEvent (128) */ + /** @name OrmlXcmModuleEvent (146) */ interface OrmlXcmModuleEvent extends Enum { readonly isSent: boolean; readonly asSent: { - readonly to: StagingXcmV3MultiLocation; - readonly message: XcmV3Xcm; + readonly to: StagingXcmV4Location; + readonly message: StagingXcmV4Xcm; } & Struct; readonly type: 'Sent'; } - /** @name PalletMessageQueueEvent (129) */ + /** @name PalletMessageQueueEvent (147) */ interface PalletMessageQueueEvent extends Enum { readonly isProcessingFailed: boolean; readonly asProcessingFailed: { @@ -1944,7 +2075,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ProcessingFailed' | 'Processed' | 'OverweightEnqueued' | 'PageReaped'; } - /** @name CumulusPrimitivesCoreAggregateMessageOrigin (130) */ + /** @name CumulusPrimitivesCoreAggregateMessageOrigin (148) */ interface CumulusPrimitivesCoreAggregateMessageOrigin extends Enum { readonly isHere: boolean; readonly isParent: boolean; @@ -1953,7 +2084,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Here' | 'Parent' | 'Sibling'; } - /** @name FrameSupportMessagesProcessMessageError (132) */ + /** @name FrameSupportMessagesProcessMessageError (150) */ interface FrameSupportMessagesProcessMessageError extends Enum { readonly isBadFormat: boolean; readonly isCorrupt: boolean; @@ -1964,7 +2095,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'BadFormat' | 'Corrupt' | 'Unsupported' | 'Overweight' | 'Yield'; } - /** @name OrmlAuthorityModuleEvent (133) */ + /** @name OrmlAuthorityModuleEvent (151) */ interface OrmlAuthorityModuleEvent extends Enum { readonly isDispatched: boolean; readonly asDispatched: { @@ -2009,7 +2140,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Dispatched' | 'Scheduled' | 'FastTracked' | 'Delayed' | 'Cancelled' | 'AuthorizedCall' | 'RemovedAuthorizedCall' | 'TriggeredCallBy'; } - /** @name AcalaRuntimeOriginCaller (134) */ + /** @name AcalaRuntimeOriginCaller (152) */ interface AcalaRuntimeOriginCaller extends Enum { readonly isSystem: boolean; readonly asSystem: FrameSupportDispatchRawOrigin; @@ -2031,7 +2162,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Authority' | 'GeneralCouncil' | 'FinancialCouncil' | 'HomaCouncil' | 'TechnicalCommittee'; } - /** @name FrameSupportDispatchRawOrigin (135) */ + /** @name FrameSupportDispatchRawOrigin (153) */ interface FrameSupportDispatchRawOrigin extends Enum { readonly isRoot: boolean; readonly isSigned: boolean; @@ -2040,16 +2171,16 @@ declare module '@polkadot/types/lookup' { readonly type: 'Root' | 'Signed' | 'None'; } - /** @name PalletXcmOrigin (136) */ + /** @name PalletXcmOrigin (154) */ interface PalletXcmOrigin extends Enum { readonly isXcm: boolean; - readonly asXcm: StagingXcmV3MultiLocation; + readonly asXcm: StagingXcmV4Location; readonly isResponse: boolean; - readonly asResponse: StagingXcmV3MultiLocation; + readonly asResponse: StagingXcmV4Location; readonly type: 'Xcm' | 'Response'; } - /** @name CumulusPalletXcmOrigin (137) */ + /** @name CumulusPalletXcmOrigin (155) */ interface CumulusPalletXcmOrigin extends Enum { readonly isRelay: boolean; readonly isSiblingParachain: boolean; @@ -2057,13 +2188,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'Relay' | 'SiblingParachain'; } - /** @name OrmlAuthorityDelayedOrigin (138) */ + /** @name OrmlAuthorityDelayedOrigin (156) */ interface OrmlAuthorityDelayedOrigin extends Struct { readonly delay: u32; readonly origin: AcalaRuntimeOriginCaller; } - /** @name PalletCollectiveRawOrigin (139) */ + /** @name PalletCollectiveRawOrigin (157) */ interface PalletCollectiveRawOrigin extends Enum { readonly isMembers: boolean; readonly asMembers: ITuple<[u32, u32]>; @@ -2073,10 +2204,10 @@ declare module '@polkadot/types/lookup' { readonly type: 'Members' | 'Member' | 'Phantom'; } - /** @name SpCoreVoid (143) */ + /** @name SpCoreVoid (161) */ type SpCoreVoid = Null; - /** @name PalletCollectiveEvent (145) */ + /** @name PalletCollectiveEvent (163) */ interface PalletCollectiveEvent extends Enum { readonly isProposed: boolean; readonly asProposed: { @@ -2120,7 +2251,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Proposed' | 'Voted' | 'Approved' | 'Disapproved' | 'Executed' | 'MemberExecuted' | 'Closed'; } - /** @name PalletMembershipEvent (146) */ + /** @name PalletMembershipEvent (164) */ interface PalletMembershipEvent extends Enum { readonly isMemberAdded: boolean; readonly isMemberRemoved: boolean; @@ -2131,7 +2262,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'MemberAdded' | 'MemberRemoved' | 'MembersSwapped' | 'MembersReset' | 'KeyChanged' | 'Dummy'; } - /** @name PalletDemocracyEvent (153) */ + /** @name PalletDemocracyEvent (171) */ interface PalletDemocracyEvent extends Enum { readonly isProposed: boolean; readonly asProposed: { @@ -2214,7 +2345,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 (154) */ + /** @name PalletDemocracyVoteThreshold (172) */ interface PalletDemocracyVoteThreshold extends Enum { readonly isSuperMajorityApprove: boolean; readonly isSuperMajorityAgainst: boolean; @@ -2222,7 +2353,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'SuperMajorityApprove' | 'SuperMajorityAgainst' | 'SimpleMajority'; } - /** @name PalletDemocracyVoteAccountVote (155) */ + /** @name PalletDemocracyVoteAccountVote (173) */ interface PalletDemocracyVoteAccountVote extends Enum { readonly isStandard: boolean; readonly asStandard: { @@ -2237,7 +2368,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Standard' | 'Split'; } - /** @name PalletDemocracyMetadataOwner (157) */ + /** @name PalletDemocracyMetadataOwner (175) */ interface PalletDemocracyMetadataOwner extends Enum { readonly isExternal: boolean; readonly isProposal: boolean; @@ -2247,7 +2378,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'External' | 'Proposal' | 'Referendum'; } - /** @name OrmlOracleModuleEvent (158) */ + /** @name OrmlOracleModuleEvent (176) */ interface OrmlOracleModuleEvent extends Enum { readonly isNewFeedData: boolean; readonly asNewFeedData: { @@ -2257,7 +2388,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NewFeedData'; } - /** @name OrmlAuctionModuleEvent (162) */ + /** @name OrmlAuctionModuleEvent (180) */ interface OrmlAuctionModuleEvent extends Enum { readonly isBid: boolean; readonly asBid: { @@ -2268,7 +2399,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Bid'; } - /** @name OrmlParametersModuleEvent (163) */ + /** @name OrmlParametersModuleEvent (181) */ interface OrmlParametersModuleEvent extends Enum { readonly isUpdated: boolean; readonly asUpdated: { @@ -2277,24 +2408,24 @@ declare module '@polkadot/types/lookup' { readonly type: 'Updated'; } - /** @name AcalaRuntimeRuntimeParameters (164) */ + /** @name AcalaRuntimeRuntimeParameters (182) */ interface AcalaRuntimeRuntimeParameters extends Enum { readonly isEarning: boolean; readonly asEarning: ModuleEarningParameters; readonly type: 'Earning'; } - /** @name ModuleEarningParameters (165) */ + /** @name ModuleEarningParameters (183) */ interface ModuleEarningParameters extends Enum { readonly isInstantUnstakeFee: boolean; readonly asInstantUnstakeFee: ITuple<[ModuleEarningInstantUnstakeFee, Option]>; readonly type: 'InstantUnstakeFee'; } - /** @name ModuleEarningInstantUnstakeFee (166) */ + /** @name ModuleEarningInstantUnstakeFee (184) */ type ModuleEarningInstantUnstakeFee = Null; - /** @name ModulePricesModuleEvent (169) */ + /** @name ModulePricesModuleEvent (187) */ interface ModulePricesModuleEvent extends Enum { readonly isLockPrice: boolean; readonly asLockPrice: { @@ -2308,7 +2439,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'LockPrice' | 'UnlockPrice'; } - /** @name ModuleDexModuleEvent (170) */ + /** @name ModuleDexModuleEvent (188) */ interface ModuleDexModuleEvent extends Enum { readonly isAddProvision: boolean; readonly asAddProvision: { @@ -2378,10 +2509,10 @@ declare module '@polkadot/types/lookup' { readonly type: 'AddProvision' | 'AddLiquidity' | 'RemoveLiquidity' | 'Swap' | 'EnableTradingPair' | 'ListProvisioning' | 'DisableTradingPair' | 'ProvisioningToEnabled' | 'RefundProvision' | 'ProvisioningAborted'; } - /** @name AcalaPrimitivesTradingPair (173) */ + /** @name AcalaPrimitivesTradingPair (191) */ interface AcalaPrimitivesTradingPair extends ITuple<[AcalaPrimitivesCurrencyCurrencyId, AcalaPrimitivesCurrencyCurrencyId]> {} - /** @name ModuleEarningModuleEvent (174) */ + /** @name ModuleEarningModuleEvent (192) */ interface ModuleEarningModuleEvent extends Enum { readonly isBonded: boolean; readonly asBonded: { @@ -2412,7 +2543,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Bonded' | 'Unbonded' | 'InstantUnbonded' | 'Rebonded' | 'Withdrawn'; } - /** @name ModuleAuctionManagerModuleEvent (175) */ + /** @name ModuleAuctionManagerModuleEvent (193) */ interface ModuleAuctionManagerModuleEvent extends Enum { readonly isNewCollateralAuction: boolean; readonly asNewCollateralAuction: { @@ -2452,7 +2583,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NewCollateralAuction' | 'CancelAuction' | 'CollateralAuctionDealt' | 'DexTakeCollateralAuction' | 'CollateralAuctionAborted'; } - /** @name ModuleLoansModuleEvent (176) */ + /** @name ModuleLoansModuleEvent (194) */ interface ModuleLoansModuleEvent extends Enum { readonly isPositionUpdated: boolean; readonly asPositionUpdated: { @@ -2477,7 +2608,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'PositionUpdated' | 'ConfiscateCollateralAndDebit' | 'TransferLoan'; } - /** @name ModuleHonzonModuleEvent (178) */ + /** @name ModuleHonzonModuleEvent (196) */ interface ModuleHonzonModuleEvent extends Enum { readonly isAuthorization: boolean; readonly asAuthorization: { @@ -2504,7 +2635,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Authorization' | 'UnAuthorization' | 'UnAuthorizationAll' | 'TransferDebit'; } - /** @name ModuleCdpTreasuryModuleEvent (179) */ + /** @name ModuleCdpTreasuryModuleEvent (197) */ interface ModuleCdpTreasuryModuleEvent extends Enum { readonly isExpectedCollateralAuctionSizeUpdated: boolean; readonly asExpectedCollateralAuctionSizeUpdated: { @@ -2518,7 +2649,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ExpectedCollateralAuctionSizeUpdated' | 'DebitOffsetBufferUpdated'; } - /** @name ModuleCdpEngineModuleEvent (180) */ + /** @name ModuleCdpEngineModuleEvent (198) */ interface ModuleCdpEngineModuleEvent extends Enum { readonly isLiquidateUnsafeCDP: boolean; readonly asLiquidateUnsafeCDP: { @@ -2577,7 +2708,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'LiquidateUnsafeCDP' | 'SettleCDPInDebit' | 'CloseCDPInDebitByDEX' | 'InterestRatePerSecUpdated' | 'LiquidationRatioUpdated' | 'LiquidationPenaltyUpdated' | 'RequiredCollateralRatioUpdated' | 'MaximumTotalDebitValueUpdated' | 'LiquidationContractRegistered' | 'LiquidationContractDeregistered'; } - /** @name ModuleEmergencyShutdownModuleEvent (182) */ + /** @name ModuleEmergencyShutdownModuleEvent (200) */ interface ModuleEmergencyShutdownModuleEvent extends Enum { readonly isShutdown: boolean; readonly asShutdown: { @@ -2596,7 +2727,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Shutdown' | 'OpenRefund' | 'Refund'; } - /** @name ModuleHomaModuleEvent (185) */ + /** @name ModuleHomaModuleEvent (203) */ interface ModuleHomaModuleEvent extends Enum { readonly isMinted: boolean; readonly asMinted: { @@ -2680,13 +2811,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 (187) */ + /** @name ModuleHomaModuleUnlockChunk (205) */ interface ModuleHomaModuleUnlockChunk extends Struct { readonly value: Compact; readonly era: Compact; } - /** @name ModuleXcmInterfaceModuleEvent (188) */ + /** @name ModuleXcmInterfaceModuleEvent (206) */ interface ModuleXcmInterfaceModuleEvent extends Enum { readonly isXcmDestWeightUpdated: boolean; readonly asXcmDestWeightUpdated: { @@ -2701,19 +2832,19 @@ declare module '@polkadot/types/lookup' { readonly type: 'XcmDestWeightUpdated' | 'XcmFeeUpdated'; } - /** @name ModuleXcmInterfaceModuleXcmInterfaceOperation (189) */ + /** @name ModuleXcmInterfaceModuleXcmInterfaceOperation (207) */ interface ModuleXcmInterfaceModuleXcmInterfaceOperation extends Enum { readonly isXtokensTransfer: boolean; readonly isHomaWithdrawUnbonded: boolean; readonly isHomaBondExtra: boolean; readonly isHomaUnbond: boolean; readonly isParachainFee: boolean; - readonly asParachainFee: StagingXcmV3MultiLocation; + readonly asParachainFee: StagingXcmV4Location; readonly isProxyReserveTransferAssets: boolean; readonly type: 'XtokensTransfer' | 'HomaWithdrawUnbonded' | 'HomaBondExtra' | 'HomaUnbond' | 'ParachainFee' | 'ProxyReserveTransferAssets'; } - /** @name ModuleIncentivesModuleEvent (190) */ + /** @name ModuleIncentivesModuleEvent (208) */ interface ModuleIncentivesModuleEvent extends Enum { readonly isDepositDexShare: boolean; readonly asDepositDexShare: { @@ -2754,7 +2885,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'DepositDexShare' | 'WithdrawDexShare' | 'ClaimRewards' | 'IncentiveRewardAmountUpdated' | 'ClaimRewardDeductionRateUpdated' | 'ClaimRewardDeductionCurrencyUpdated'; } - /** @name ModuleSupportIncentivesPoolId (191) */ + /** @name ModuleSupportIncentivesPoolId (209) */ interface ModuleSupportIncentivesPoolId extends Enum { readonly isLoans: boolean; readonly asLoans: AcalaPrimitivesCurrencyCurrencyId; @@ -2765,7 +2896,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Loans' | 'Dex' | 'Earning'; } - /** @name ModuleNftModuleEvent (193) */ + /** @name ModuleNftModuleEvent (211) */ interface ModuleNftModuleEvent extends Enum { readonly isCreatedClass: boolean; readonly asCreatedClass: { @@ -2807,18 +2938,18 @@ declare module '@polkadot/types/lookup' { readonly type: 'CreatedClass' | 'MintedToken' | 'TransferredToken' | 'BurnedToken' | 'BurnedTokenWithRemark' | 'DestroyedClass'; } - /** @name ModuleAssetRegistryModuleEvent (194) */ + /** @name ModuleAssetRegistryModuleEvent (212) */ interface ModuleAssetRegistryModuleEvent extends Enum { readonly isForeignAssetRegistered: boolean; readonly asForeignAssetRegistered: { readonly assetId: u16; - readonly assetAddress: StagingXcmV3MultiLocation; + readonly assetAddress: StagingXcmV4Location; readonly metadata: AcalaPrimitivesCurrencyAssetMetadata; } & Struct; readonly isForeignAssetUpdated: boolean; readonly asForeignAssetUpdated: { readonly assetId: u16; - readonly assetAddress: StagingXcmV3MultiLocation; + readonly assetAddress: StagingXcmV4Location; readonly metadata: AcalaPrimitivesCurrencyAssetMetadata; } & Struct; readonly isAssetRegistered: boolean; @@ -2834,7 +2965,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated'; } - /** @name AcalaPrimitivesCurrencyAssetMetadata (195) */ + /** @name AcalaPrimitivesCurrencyAssetMetadata (213) */ interface AcalaPrimitivesCurrencyAssetMetadata extends Struct { readonly name: Bytes; readonly symbol: Bytes; @@ -2842,7 +2973,7 @@ declare module '@polkadot/types/lookup' { readonly minimalBalance: u128; } - /** @name AcalaPrimitivesCurrencyAssetIds (196) */ + /** @name AcalaPrimitivesCurrencyAssetIds (214) */ interface AcalaPrimitivesCurrencyAssetIds extends Enum { readonly isErc20: boolean; readonly asErc20: H160; @@ -2855,7 +2986,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Erc20' | 'StableAssetId' | 'ForeignAssetId' | 'NativeAssetId'; } - /** @name ModuleLiquidCrowdloanModuleEvent (197) */ + /** @name ModuleLiquidCrowdloanModuleEvent (215) */ interface ModuleLiquidCrowdloanModuleEvent extends Enum { readonly isRedeemed: boolean; readonly asRedeemed: { @@ -2873,7 +3004,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Redeemed' | 'TransferFromCrowdloanVaultRequested' | 'RedeemCurrencyIdUpdated'; } - /** @name ModuleEvmModuleEvent (198) */ + /** @name ModuleEvmModuleEvent (216) */ interface ModuleEvmModuleEvent extends Enum { readonly isCreated: boolean; readonly asCreated: { @@ -2938,14 +3069,14 @@ declare module '@polkadot/types/lookup' { readonly type: 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'TransferredMaintainer' | 'ContractDevelopmentEnabled' | 'ContractDevelopmentDisabled' | 'ContractPublished' | 'ContractSetCode' | 'ContractSelfdestructed'; } - /** @name EthereumLog (200) */ + /** @name EthereumLog (218) */ interface EthereumLog extends Struct { readonly address: H160; readonly topics: Vec; readonly data: Bytes; } - /** @name EvmCoreErrorExitReason (203) */ + /** @name EvmCoreErrorExitReason (221) */ interface EvmCoreErrorExitReason extends Enum { readonly isSucceed: boolean; readonly asSucceed: EvmCoreErrorExitSucceed; @@ -2958,7 +3089,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal'; } - /** @name EvmCoreErrorExitSucceed (204) */ + /** @name EvmCoreErrorExitSucceed (222) */ interface EvmCoreErrorExitSucceed extends Enum { readonly isStopped: boolean; readonly isReturned: boolean; @@ -2966,7 +3097,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Stopped' | 'Returned' | 'Suicided'; } - /** @name EvmCoreErrorExitError (205) */ + /** @name EvmCoreErrorExitError (223) */ interface EvmCoreErrorExitError extends Enum { readonly isStackUnderflow: boolean; readonly isStackOverflow: boolean; @@ -2989,13 +3120,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'MaxNonce' | 'InvalidCode'; } - /** @name EvmCoreErrorExitRevert (209) */ + /** @name EvmCoreErrorExitRevert (227) */ interface EvmCoreErrorExitRevert extends Enum { readonly isReverted: boolean; readonly type: 'Reverted'; } - /** @name EvmCoreErrorExitFatal (210) */ + /** @name EvmCoreErrorExitFatal (228) */ interface EvmCoreErrorExitFatal extends Enum { readonly isNotSupported: boolean; readonly isUnhandledInterrupt: boolean; @@ -3006,7 +3137,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other'; } - /** @name ModuleEvmAccountsModuleEvent (211) */ + /** @name ModuleEvmAccountsModuleEvent (229) */ interface ModuleEvmAccountsModuleEvent extends Enum { readonly isClaimAccount: boolean; readonly asClaimAccount: { @@ -3016,7 +3147,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ClaimAccount'; } - /** @name NutsfinanceStableAssetEvent (212) */ + /** @name NutsfinanceStableAssetEvent (230) */ interface NutsfinanceStableAssetEvent extends Enum { readonly isCreatePool: boolean; readonly asCreatePool: { @@ -3135,7 +3266,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'CreatePool' | 'Minted' | 'TokenSwapped' | 'RedeemedProportion' | 'RedeemedSingle' | 'RedeemedMulti' | 'BalanceUpdated' | 'YieldCollected' | 'FeeCollected' | 'AModified' | 'FeeModified' | 'RecipientModified'; } - /** @name CumulusPalletParachainSystemEvent (213) */ + /** @name CumulusPalletParachainSystemEvent (231) */ interface CumulusPalletParachainSystemEvent extends Enum { readonly isValidationFunctionStored: boolean; readonly isValidationFunctionApplied: boolean; @@ -3159,7 +3290,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed' | 'UpwardMessageSent'; } - /** @name PalletSudoEvent (214) */ + /** @name PalletSudoEvent (232) */ interface PalletSudoEvent extends Enum { readonly isSudid: boolean; readonly asSudid: { @@ -3178,7 +3309,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Sudid' | 'KeyChanged' | 'KeyRemoved' | 'SudoAsDone'; } - /** @name FrameSystemPhase (215) */ + /** @name FrameSystemPhase (233) */ interface FrameSystemPhase extends Enum { readonly isApplyExtrinsic: boolean; readonly asApplyExtrinsic: u32; @@ -3187,19 +3318,19 @@ declare module '@polkadot/types/lookup' { readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization'; } - /** @name FrameSystemLastRuntimeUpgradeInfo (217) */ + /** @name FrameSystemLastRuntimeUpgradeInfo (235) */ interface FrameSystemLastRuntimeUpgradeInfo extends Struct { readonly specVersion: Compact; readonly specName: Text; } - /** @name FrameSystemCodeUpgradeAuthorization (218) */ + /** @name FrameSystemCodeUpgradeAuthorization (236) */ interface FrameSystemCodeUpgradeAuthorization extends Struct { readonly codeHash: H256; readonly checkVersion: bool; } - /** @name FrameSystemCall (219) */ + /** @name FrameSystemCall (237) */ interface FrameSystemCall extends Enum { readonly isRemark: boolean; readonly asRemark: { @@ -3249,21 +3380,21 @@ declare module '@polkadot/types/lookup' { readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent' | 'AuthorizeUpgrade' | 'AuthorizeUpgradeWithoutChecks' | 'ApplyAuthorizedUpgrade'; } - /** @name FrameSystemLimitsBlockWeights (223) */ + /** @name FrameSystemLimitsBlockWeights (241) */ interface FrameSystemLimitsBlockWeights extends Struct { readonly baseBlock: SpWeightsWeightV2Weight; readonly maxBlock: SpWeightsWeightV2Weight; readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass; } - /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (224) */ + /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (242) */ interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct { readonly normal: FrameSystemLimitsWeightsPerClass; readonly operational: FrameSystemLimitsWeightsPerClass; readonly mandatory: FrameSystemLimitsWeightsPerClass; } - /** @name FrameSystemLimitsWeightsPerClass (225) */ + /** @name FrameSystemLimitsWeightsPerClass (243) */ interface FrameSystemLimitsWeightsPerClass extends Struct { readonly baseExtrinsic: SpWeightsWeightV2Weight; readonly maxExtrinsic: Option; @@ -3271,25 +3402,25 @@ declare module '@polkadot/types/lookup' { readonly reserved: Option; } - /** @name FrameSystemLimitsBlockLength (227) */ + /** @name FrameSystemLimitsBlockLength (245) */ interface FrameSystemLimitsBlockLength extends Struct { readonly max: FrameSupportDispatchPerDispatchClassU32; } - /** @name FrameSupportDispatchPerDispatchClassU32 (228) */ + /** @name FrameSupportDispatchPerDispatchClassU32 (246) */ interface FrameSupportDispatchPerDispatchClassU32 extends Struct { readonly normal: u32; readonly operational: u32; readonly mandatory: u32; } - /** @name SpWeightsRuntimeDbWeight (229) */ + /** @name SpWeightsRuntimeDbWeight (247) */ interface SpWeightsRuntimeDbWeight extends Struct { readonly read: u64; readonly write: u64; } - /** @name SpVersionRuntimeVersion (230) */ + /** @name SpVersionRuntimeVersion (248) */ interface SpVersionRuntimeVersion extends Struct { readonly specName: Text; readonly implName: Text; @@ -3301,7 +3432,7 @@ declare module '@polkadot/types/lookup' { readonly stateVersion: u8; } - /** @name FrameSystemError (234) */ + /** @name FrameSystemError (252) */ interface FrameSystemError extends Enum { readonly isInvalidSpecName: boolean; readonly isSpecVersionNeedsToIncrease: boolean; @@ -3309,12 +3440,13 @@ declare module '@polkadot/types/lookup' { readonly isNonDefaultComposite: boolean; readonly isNonZeroRefCount: boolean; readonly isCallFiltered: boolean; + readonly isMultiBlockMigrationsOngoing: boolean; readonly isNothingAuthorized: boolean; readonly isUnauthorized: boolean; - readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered' | 'NothingAuthorized' | 'Unauthorized'; + readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered' | 'MultiBlockMigrationsOngoing' | 'NothingAuthorized' | 'Unauthorized'; } - /** @name PalletTimestampCall (235) */ + /** @name PalletTimestampCall (253) */ interface PalletTimestampCall extends Enum { readonly isSet: boolean; readonly asSet: { @@ -3323,7 +3455,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Set'; } - /** @name PalletSchedulerScheduled (238) */ + /** @name PalletSchedulerScheduled (256) */ interface PalletSchedulerScheduled extends Struct { readonly maybeId: Option; readonly priority: u8; @@ -3332,7 +3464,7 @@ declare module '@polkadot/types/lookup' { readonly origin: AcalaRuntimeOriginCaller; } - /** @name FrameSupportPreimagesBounded (239) */ + /** @name FrameSupportPreimagesBounded (257) */ interface FrameSupportPreimagesBounded extends Enum { readonly isLegacy: boolean; readonly asLegacy: { @@ -3348,7 +3480,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Legacy' | 'Inline' | 'Lookup'; } - /** @name PalletSchedulerCall (241) */ + /** @name PalletSchedulerCall (259) */ interface PalletSchedulerCall extends Enum { readonly isSchedule: boolean; readonly asSchedule: { @@ -3389,10 +3521,30 @@ declare module '@polkadot/types/lookup' { readonly priority: u8; readonly call: Call; } & Struct; - readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter'; + readonly isSetRetry: boolean; + readonly asSetRetry: { + readonly task: ITuple<[u32, u32]>; + readonly retries: u8; + readonly period: u32; + } & Struct; + readonly isSetRetryNamed: boolean; + readonly asSetRetryNamed: { + readonly id: U8aFixed; + readonly retries: u8; + readonly period: u32; + } & Struct; + readonly isCancelRetry: boolean; + readonly asCancelRetry: { + readonly task: ITuple<[u32, u32]>; + } & Struct; + readonly isCancelRetryNamed: boolean; + readonly asCancelRetryNamed: { + readonly id: U8aFixed; + } & Struct; + readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'SetRetry' | 'SetRetryNamed' | 'CancelRetry' | 'CancelRetryNamed'; } - /** @name PalletUtilityCall (243) */ + /** @name PalletUtilityCall (261) */ interface PalletUtilityCall extends Enum { readonly isBatch: boolean; readonly asBatch: { @@ -3424,7 +3576,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Batch' | 'AsDerivative' | 'BatchAll' | 'DispatchAs' | 'ForceBatch' | 'WithWeight'; } - /** @name PalletMultisigCall (245) */ + /** @name PalletMultisigCall (263) */ interface PalletMultisigCall extends Enum { readonly isAsMultiThreshold1: boolean; readonly asAsMultiThreshold1: { @@ -3457,7 +3609,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'AsMultiThreshold1' | 'AsMulti' | 'ApproveAsMulti' | 'CancelAsMulti'; } - /** @name PalletProxyCall (247) */ + /** @name PalletProxyCall (265) */ interface PalletProxyCall extends Enum { readonly isProxy: boolean; readonly asProxy: { @@ -3517,7 +3669,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Proxy' | 'AddProxy' | 'RemoveProxy' | 'RemoveProxies' | 'CreatePure' | 'KillPure' | 'Announce' | 'RemoveAnnouncement' | 'RejectAnnouncement' | 'ProxyAnnounced'; } - /** @name ModuleTransactionPauseModuleCall (250) */ + /** @name ModuleTransactionPauseModuleCall (268) */ interface ModuleTransactionPauseModuleCall extends Enum { readonly isPauseTransaction: boolean; readonly asPauseTransaction: { @@ -3540,7 +3692,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'PauseTransaction' | 'UnpauseTransaction' | 'PauseEvmPrecompile' | 'UnpauseEvmPrecompile'; } - /** @name ModuleIdleSchedulerModuleCall (251) */ + /** @name ModuleIdleSchedulerModuleCall (269) */ interface ModuleIdleSchedulerModuleCall extends Enum { readonly isScheduleTask: boolean; readonly asScheduleTask: { @@ -3549,7 +3701,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ScheduleTask'; } - /** @name PalletPreimageCall (252) */ + /** @name PalletPreimageCall (270) */ interface PalletPreimageCall extends Enum { readonly isNotePreimage: boolean; readonly asNotePreimage: { @@ -3574,7 +3726,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage' | 'EnsureUpdated'; } - /** @name PalletBalancesCall (253) */ + /** @name PalletBalancesCall (271) */ interface PalletBalancesCall extends Enum { readonly isTransferAllowDeath: boolean; readonly asTransferAllowDeath: { @@ -3611,10 +3763,22 @@ declare module '@polkadot/types/lookup' { readonly who: MultiAddress; readonly newFree: Compact; } & Struct; - readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance'; + readonly isForceAdjustTotalIssuance: boolean; + readonly asForceAdjustTotalIssuance: { + readonly direction: PalletBalancesAdjustmentDirection; + readonly delta: Compact; + } & Struct; + readonly type: 'TransferAllowDeath' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'ForceSetBalance' | 'ForceAdjustTotalIssuance'; } - /** @name ModuleCurrenciesModuleCall (254) */ + /** @name PalletBalancesAdjustmentDirection (272) */ + interface PalletBalancesAdjustmentDirection extends Enum { + readonly isIncrease: boolean; + readonly isDecrease: boolean; + readonly type: 'Increase' | 'Decrease'; + } + + /** @name ModuleCurrenciesModuleCall (273) */ interface ModuleCurrenciesModuleCall extends Enum { readonly isTransfer: boolean; readonly asTransfer: { @@ -3654,7 +3818,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Transfer' | 'TransferNativeCurrency' | 'UpdateBalance' | 'SweepDust' | 'ForceSetLock' | 'ForceRemoveLock'; } - /** @name OrmlVestingModuleCall (255) */ + /** @name OrmlVestingModuleCall (274) */ interface OrmlVestingModuleCall extends Enum { readonly isClaim: boolean; readonly isVestedTransfer: boolean; @@ -3674,7 +3838,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor'; } - /** @name ModuleTransactionPaymentModuleCall (257) */ + /** @name ModuleTransactionPaymentModuleCall (276) */ interface ModuleTransactionPaymentModuleCall extends Enum { readonly isSetAlternativeFeeSwapPath: boolean; readonly asSetAlternativeFeeSwapPath: { @@ -3708,7 +3872,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'SetAlternativeFeeSwapPath' | 'EnableChargeFeePool' | 'DisableChargeFeePool' | 'WithFeePath' | 'WithFeeCurrency' | 'WithFeeAggregatedPath'; } - /** @name ModuleSupportDexAggregatedSwapPath (260) */ + /** @name ModuleSupportDexAggregatedSwapPath (279) */ interface ModuleSupportDexAggregatedSwapPath extends Enum { readonly isDex: boolean; readonly asDex: Vec; @@ -3717,7 +3881,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Dex' | 'Taiga'; } - /** @name PalletTreasuryCall (261) */ + /** @name PalletTreasuryCall (280) */ interface PalletTreasuryCall extends Enum { readonly isProposeSpend: boolean; readonly asProposeSpend: { @@ -3763,7 +3927,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'SpendLocal' | 'RemoveApproval' | 'Spend' | 'Payout' | 'CheckStatus' | 'VoidSpend'; } - /** @name PalletBountiesCall (263) */ + /** @name PalletBountiesCall (282) */ interface PalletBountiesCall extends Enum { readonly isProposeBounty: boolean; readonly asProposeBounty: { @@ -3809,7 +3973,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ProposeBounty' | 'ApproveBounty' | 'ProposeCurator' | 'UnassignCurator' | 'AcceptCurator' | 'AwardBounty' | 'ClaimBounty' | 'CloseBounty' | 'ExtendBountyExpiry'; } - /** @name PalletTipsCall (264) */ + /** @name PalletTipsCall (283) */ interface PalletTipsCall extends Enum { readonly isReportAwesome: boolean; readonly asReportAwesome: { @@ -3842,7 +4006,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ReportAwesome' | 'RetractTip' | 'TipNew' | 'Tip' | 'CloseTip' | 'SlashTip'; } - /** @name ModuleCollatorSelectionCall (265) */ + /** @name ModuleCollatorSelectionCall (284) */ interface ModuleCollatorSelectionCall extends Enum { readonly isSetInvulnerables: boolean; readonly asSetInvulnerables: { @@ -3866,7 +4030,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'SetInvulnerables' | 'SetDesiredCandidates' | 'SetCandidacyBond' | 'RegisterAsCandidate' | 'RegisterCandidate' | 'LeaveIntent' | 'WithdrawBond'; } - /** @name PalletSessionCall (266) */ + /** @name PalletSessionCall (285) */ interface PalletSessionCall extends Enum { readonly isSetKeys: boolean; readonly asSetKeys: { @@ -3877,18 +4041,18 @@ declare module '@polkadot/types/lookup' { readonly type: 'SetKeys' | 'PurgeKeys'; } - /** @name AcalaRuntimeSessionKeys (267) */ + /** @name AcalaRuntimeSessionKeys (286) */ interface AcalaRuntimeSessionKeys extends Struct { readonly aura: SpConsensusAuraSr25519AppSr25519Public; } - /** @name SpConsensusAuraSr25519AppSr25519Public (268) */ + /** @name SpConsensusAuraSr25519AppSr25519Public (287) */ interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {} - /** @name SpCoreSr25519Public (269) */ + /** @name SpCoreSr25519Public (288) */ interface SpCoreSr25519Public extends U8aFixed {} - /** @name ModuleSessionManagerModuleCall (270) */ + /** @name ModuleSessionManagerModuleCall (289) */ interface ModuleSessionManagerModuleCall extends Enum { readonly isScheduleSessionDuration: boolean; readonly asScheduleSessionDuration: { @@ -3898,7 +4062,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ScheduleSessionDuration'; } - /** @name CumulusPalletXcmpQueueCall (271) */ + /** @name CumulusPalletXcmpQueueCall (290) */ interface CumulusPalletXcmpQueueCall extends Enum { readonly isSuspendXcmExecution: boolean; readonly isResumeXcmExecution: boolean; @@ -3917,25 +4081,25 @@ declare module '@polkadot/types/lookup' { readonly type: 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold'; } - /** @name PalletXcmCall (272) */ + /** @name PalletXcmCall (291) */ interface PalletXcmCall extends Enum { readonly isSend: boolean; readonly asSend: { - readonly dest: XcmVersionedMultiLocation; + readonly dest: XcmVersionedLocation; readonly message: XcmVersionedXcm; } & Struct; readonly isTeleportAssets: boolean; readonly asTeleportAssets: { - readonly dest: XcmVersionedMultiLocation; - readonly beneficiary: XcmVersionedMultiLocation; - readonly assets: XcmVersionedMultiAssets; + readonly dest: XcmVersionedLocation; + readonly beneficiary: XcmVersionedLocation; + readonly assets: XcmVersionedAssets; readonly feeAssetItem: u32; } & Struct; readonly isReserveTransferAssets: boolean; readonly asReserveTransferAssets: { - readonly dest: XcmVersionedMultiLocation; - readonly beneficiary: XcmVersionedMultiLocation; - readonly assets: XcmVersionedMultiAssets; + readonly dest: XcmVersionedLocation; + readonly beneficiary: XcmVersionedLocation; + readonly assets: XcmVersionedAssets; readonly feeAssetItem: u32; } & Struct; readonly isExecute: boolean; @@ -3945,7 +4109,7 @@ declare module '@polkadot/types/lookup' { } & Struct; readonly isForceXcmVersion: boolean; readonly asForceXcmVersion: { - readonly location: StagingXcmV3MultiLocation; + readonly location: StagingXcmV4Location; readonly version: u32; } & Struct; readonly isForceDefaultXcmVersion: boolean; @@ -3954,25 +4118,25 @@ declare module '@polkadot/types/lookup' { } & Struct; readonly isForceSubscribeVersionNotify: boolean; readonly asForceSubscribeVersionNotify: { - readonly location: XcmVersionedMultiLocation; + readonly location: XcmVersionedLocation; } & Struct; readonly isForceUnsubscribeVersionNotify: boolean; readonly asForceUnsubscribeVersionNotify: { - readonly location: XcmVersionedMultiLocation; + readonly location: XcmVersionedLocation; } & Struct; readonly isLimitedReserveTransferAssets: boolean; readonly asLimitedReserveTransferAssets: { - readonly dest: XcmVersionedMultiLocation; - readonly beneficiary: XcmVersionedMultiLocation; - readonly assets: XcmVersionedMultiAssets; + readonly dest: XcmVersionedLocation; + readonly beneficiary: XcmVersionedLocation; + readonly assets: XcmVersionedAssets; readonly feeAssetItem: u32; readonly weightLimit: XcmV3WeightLimit; } & Struct; readonly isLimitedTeleportAssets: boolean; readonly asLimitedTeleportAssets: { - readonly dest: XcmVersionedMultiLocation; - readonly beneficiary: XcmVersionedMultiLocation; - readonly assets: XcmVersionedMultiAssets; + readonly dest: XcmVersionedLocation; + readonly beneficiary: XcmVersionedLocation; + readonly assets: XcmVersionedAssets; readonly feeAssetItem: u32; readonly weightLimit: XcmV3WeightLimit; } & Struct; @@ -3982,28 +4146,35 @@ declare module '@polkadot/types/lookup' { } & Struct; readonly isTransferAssets: boolean; readonly asTransferAssets: { - readonly dest: XcmVersionedMultiLocation; - readonly beneficiary: XcmVersionedMultiLocation; - readonly assets: XcmVersionedMultiAssets; + readonly dest: XcmVersionedLocation; + readonly beneficiary: XcmVersionedLocation; + readonly assets: XcmVersionedAssets; readonly feeAssetItem: u32; readonly weightLimit: XcmV3WeightLimit; } & Struct; - readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets' | 'ForceSuspension' | 'TransferAssets'; + readonly isClaimAssets: boolean; + readonly asClaimAssets: { + readonly assets: XcmVersionedAssets; + readonly beneficiary: XcmVersionedLocation; + } & Struct; + readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets' | 'ForceSuspension' | 'TransferAssets' | 'ClaimAssets'; } - /** @name XcmVersionedXcm (273) */ + /** @name XcmVersionedXcm (292) */ interface XcmVersionedXcm extends Enum { readonly isV2: boolean; readonly asV2: XcmV2Xcm; readonly isV3: boolean; readonly asV3: XcmV3Xcm; - readonly type: 'V2' | 'V3'; + readonly isV4: boolean; + readonly asV4: StagingXcmV4Xcm; + readonly type: 'V2' | 'V3' | 'V4'; } - /** @name XcmV2Xcm (274) */ + /** @name XcmV2Xcm (293) */ interface XcmV2Xcm extends Vec {} - /** @name XcmV2Instruction (276) */ + /** @name XcmV2Instruction (295) */ interface XcmV2Instruction extends Enum { readonly isWithdrawAsset: boolean; readonly asWithdrawAsset: XcmV2MultiassetMultiAssets; @@ -4123,7 +4294,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 (277) */ + /** @name XcmV2Response (296) */ interface XcmV2Response extends Enum { readonly isNull: boolean; readonly isAssets: boolean; @@ -4135,7 +4306,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version'; } - /** @name XcmV2TraitsError (280) */ + /** @name XcmV2TraitsError (299) */ interface XcmV2TraitsError extends Enum { readonly isOverflow: boolean; readonly isUnimplemented: boolean; @@ -4168,7 +4339,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 (281) */ + /** @name XcmV2MultiassetMultiAssetFilter (300) */ interface XcmV2MultiassetMultiAssetFilter extends Enum { readonly isDefinite: boolean; readonly asDefinite: XcmV2MultiassetMultiAssets; @@ -4177,7 +4348,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Definite' | 'Wild'; } - /** @name XcmV2MultiassetWildMultiAsset (282) */ + /** @name XcmV2MultiassetWildMultiAsset (301) */ interface XcmV2MultiassetWildMultiAsset extends Enum { readonly isAll: boolean; readonly isAllOf: boolean; @@ -4188,14 +4359,14 @@ declare module '@polkadot/types/lookup' { readonly type: 'All' | 'AllOf'; } - /** @name XcmV2MultiassetWildFungibility (283) */ + /** @name XcmV2MultiassetWildFungibility (302) */ interface XcmV2MultiassetWildFungibility extends Enum { readonly isFungible: boolean; readonly isNonFungible: boolean; readonly type: 'Fungible' | 'NonFungible'; } - /** @name XcmV2WeightLimit (284) */ + /** @name XcmV2WeightLimit (303) */ interface XcmV2WeightLimit extends Enum { readonly isUnlimited: boolean; readonly isLimited: boolean; @@ -4203,22 +4374,272 @@ declare module '@polkadot/types/lookup' { readonly type: 'Unlimited' | 'Limited'; } - /** @name CumulusPalletDmpQueueCall (293) */ - type CumulusPalletDmpQueueCall = Null; + /** @name XcmV3Xcm (304) */ + interface XcmV3Xcm extends Vec {} + + /** @name XcmV3Instruction (306) */ + interface XcmV3Instruction extends Enum { + readonly isWithdrawAsset: boolean; + readonly asWithdrawAsset: XcmV3MultiassetMultiAssets; + readonly isReserveAssetDeposited: boolean; + readonly asReserveAssetDeposited: XcmV3MultiassetMultiAssets; + readonly isReceiveTeleportedAsset: boolean; + readonly asReceiveTeleportedAsset: XcmV3MultiassetMultiAssets; + readonly isQueryResponse: boolean; + readonly asQueryResponse: { + readonly queryId: Compact; + readonly response: XcmV3Response; + readonly maxWeight: SpWeightsWeightV2Weight; + readonly querier: Option; + } & Struct; + readonly isTransferAsset: boolean; + readonly asTransferAsset: { + readonly assets: XcmV3MultiassetMultiAssets; + readonly beneficiary: StagingXcmV3MultiLocation; + } & Struct; + readonly isTransferReserveAsset: boolean; + readonly asTransferReserveAsset: { + readonly assets: XcmV3MultiassetMultiAssets; + readonly dest: StagingXcmV3MultiLocation; + readonly xcm: XcmV3Xcm; + } & Struct; + readonly isTransact: boolean; + readonly asTransact: { + readonly originKind: XcmV2OriginKind; + readonly requireWeightAtMost: SpWeightsWeightV2Weight; + readonly call: XcmDoubleEncoded; + } & Struct; + readonly isHrmpNewChannelOpenRequest: boolean; + readonly asHrmpNewChannelOpenRequest: { + readonly sender: Compact; + readonly maxMessageSize: Compact; + readonly maxCapacity: Compact; + } & Struct; + readonly isHrmpChannelAccepted: boolean; + readonly asHrmpChannelAccepted: { + readonly recipient: Compact; + } & Struct; + readonly isHrmpChannelClosing: boolean; + readonly asHrmpChannelClosing: { + readonly initiator: Compact; + readonly sender: Compact; + readonly recipient: Compact; + } & Struct; + readonly isClearOrigin: boolean; + readonly isDescendOrigin: boolean; + readonly asDescendOrigin: XcmV3Junctions; + readonly isReportError: boolean; + readonly asReportError: XcmV3QueryResponseInfo; + readonly isDepositAsset: boolean; + readonly asDepositAsset: { + readonly assets: XcmV3MultiassetMultiAssetFilter; + readonly beneficiary: StagingXcmV3MultiLocation; + } & Struct; + readonly isDepositReserveAsset: boolean; + readonly asDepositReserveAsset: { + readonly assets: XcmV3MultiassetMultiAssetFilter; + readonly dest: StagingXcmV3MultiLocation; + readonly xcm: XcmV3Xcm; + } & Struct; + readonly isExchangeAsset: boolean; + readonly asExchangeAsset: { + readonly give: XcmV3MultiassetMultiAssetFilter; + readonly want: XcmV3MultiassetMultiAssets; + readonly maximal: bool; + } & Struct; + readonly isInitiateReserveWithdraw: boolean; + readonly asInitiateReserveWithdraw: { + readonly assets: XcmV3MultiassetMultiAssetFilter; + readonly reserve: StagingXcmV3MultiLocation; + readonly xcm: XcmV3Xcm; + } & Struct; + readonly isInitiateTeleport: boolean; + readonly asInitiateTeleport: { + readonly assets: XcmV3MultiassetMultiAssetFilter; + readonly dest: StagingXcmV3MultiLocation; + readonly xcm: XcmV3Xcm; + } & Struct; + readonly isReportHolding: boolean; + readonly asReportHolding: { + readonly responseInfo: XcmV3QueryResponseInfo; + readonly assets: XcmV3MultiassetMultiAssetFilter; + } & Struct; + readonly isBuyExecution: boolean; + readonly asBuyExecution: { + readonly fees: XcmV3MultiAsset; + readonly weightLimit: XcmV3WeightLimit; + } & Struct; + readonly isRefundSurplus: boolean; + readonly isSetErrorHandler: boolean; + readonly asSetErrorHandler: XcmV3Xcm; + readonly isSetAppendix: boolean; + readonly asSetAppendix: XcmV3Xcm; + readonly isClearError: boolean; + readonly isClaimAsset: boolean; + readonly asClaimAsset: { + readonly assets: XcmV3MultiassetMultiAssets; + readonly ticket: StagingXcmV3MultiLocation; + } & Struct; + readonly isTrap: boolean; + readonly asTrap: Compact; + readonly isSubscribeVersion: boolean; + readonly asSubscribeVersion: { + readonly queryId: Compact; + readonly maxResponseWeight: SpWeightsWeightV2Weight; + } & Struct; + readonly isUnsubscribeVersion: boolean; + readonly isBurnAsset: boolean; + readonly asBurnAsset: XcmV3MultiassetMultiAssets; + readonly isExpectAsset: boolean; + readonly asExpectAsset: XcmV3MultiassetMultiAssets; + readonly isExpectOrigin: boolean; + readonly asExpectOrigin: Option; + readonly isExpectError: boolean; + readonly asExpectError: Option>; + readonly isExpectTransactStatus: boolean; + readonly asExpectTransactStatus: XcmV3MaybeErrorCode; + readonly isQueryPallet: boolean; + readonly asQueryPallet: { + readonly moduleName: Bytes; + readonly responseInfo: XcmV3QueryResponseInfo; + } & Struct; + readonly isExpectPallet: boolean; + readonly asExpectPallet: { + readonly index: Compact; + readonly name: Bytes; + readonly moduleName: Bytes; + readonly crateMajor: Compact; + readonly minCrateMinor: Compact; + } & Struct; + readonly isReportTransactStatus: boolean; + readonly asReportTransactStatus: XcmV3QueryResponseInfo; + readonly isClearTransactStatus: boolean; + readonly isUniversalOrigin: boolean; + readonly asUniversalOrigin: XcmV3Junction; + readonly isExportMessage: boolean; + readonly asExportMessage: { + readonly network: XcmV3JunctionNetworkId; + readonly destination: XcmV3Junctions; + readonly xcm: XcmV3Xcm; + } & Struct; + readonly isLockAsset: boolean; + readonly asLockAsset: { + readonly asset: XcmV3MultiAsset; + readonly unlocker: StagingXcmV3MultiLocation; + } & Struct; + readonly isUnlockAsset: boolean; + readonly asUnlockAsset: { + readonly asset: XcmV3MultiAsset; + readonly target: StagingXcmV3MultiLocation; + } & Struct; + readonly isNoteUnlockable: boolean; + readonly asNoteUnlockable: { + readonly asset: XcmV3MultiAsset; + readonly owner: StagingXcmV3MultiLocation; + } & Struct; + readonly isRequestUnlock: boolean; + readonly asRequestUnlock: { + readonly asset: XcmV3MultiAsset; + readonly locker: StagingXcmV3MultiLocation; + } & Struct; + readonly isSetFeesMode: boolean; + readonly asSetFeesMode: { + readonly jitWithdraw: bool; + } & Struct; + readonly isSetTopic: boolean; + readonly asSetTopic: U8aFixed; + readonly isClearTopic: boolean; + readonly isAliasOrigin: boolean; + readonly asAliasOrigin: StagingXcmV3MultiLocation; + readonly isUnpaidExecution: boolean; + readonly asUnpaidExecution: { + readonly weightLimit: XcmV3WeightLimit; + readonly checkOrigin: Option; + } & Struct; + readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'ReportHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion' | 'BurnAsset' | 'ExpectAsset' | 'ExpectOrigin' | 'ExpectError' | 'ExpectTransactStatus' | 'QueryPallet' | 'ExpectPallet' | 'ReportTransactStatus' | 'ClearTransactStatus' | 'UniversalOrigin' | 'ExportMessage' | 'LockAsset' | 'UnlockAsset' | 'NoteUnlockable' | 'RequestUnlock' | 'SetFeesMode' | 'SetTopic' | 'ClearTopic' | 'AliasOrigin' | 'UnpaidExecution'; + } + + /** @name XcmV3Response (307) */ + interface XcmV3Response extends Enum { + readonly isNull: boolean; + readonly isAssets: boolean; + readonly asAssets: XcmV3MultiassetMultiAssets; + readonly isExecutionResult: boolean; + readonly asExecutionResult: Option>; + readonly isVersion: boolean; + readonly asVersion: u32; + readonly isPalletsInfo: boolean; + readonly asPalletsInfo: Vec; + readonly isDispatchResult: boolean; + readonly asDispatchResult: XcmV3MaybeErrorCode; + readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version' | 'PalletsInfo' | 'DispatchResult'; + } + + /** @name XcmV3PalletInfo (309) */ + interface XcmV3PalletInfo extends Struct { + readonly index: Compact; + readonly name: Bytes; + readonly moduleName: Bytes; + readonly major: Compact; + readonly minor: Compact; + readonly patch: Compact; + } + + /** @name XcmV3QueryResponseInfo (313) */ + interface XcmV3QueryResponseInfo extends Struct { + readonly destination: StagingXcmV3MultiLocation; + readonly queryId: Compact; + readonly maxWeight: SpWeightsWeightV2Weight; + } + + /** @name XcmV3MultiassetMultiAssetFilter (314) */ + interface XcmV3MultiassetMultiAssetFilter extends Enum { + readonly isDefinite: boolean; + readonly asDefinite: XcmV3MultiassetMultiAssets; + readonly isWild: boolean; + readonly asWild: XcmV3MultiassetWildMultiAsset; + readonly type: 'Definite' | 'Wild'; + } + + /** @name XcmV3MultiassetWildMultiAsset (315) */ + interface XcmV3MultiassetWildMultiAsset extends Enum { + readonly isAll: boolean; + readonly isAllOf: boolean; + readonly asAllOf: { + readonly id: XcmV3MultiassetAssetId; + readonly fun: XcmV3MultiassetWildFungibility; + } & Struct; + readonly isAllCounted: boolean; + readonly asAllCounted: Compact; + readonly isAllOfCounted: boolean; + readonly asAllOfCounted: { + readonly id: XcmV3MultiassetAssetId; + readonly fun: XcmV3MultiassetWildFungibility; + readonly count: Compact; + } & Struct; + readonly type: 'All' | 'AllOf' | 'AllCounted' | 'AllOfCounted'; + } + + /** @name XcmV3MultiassetWildFungibility (316) */ + interface XcmV3MultiassetWildFungibility extends Enum { + readonly isFungible: boolean; + readonly isNonFungible: boolean; + readonly type: 'Fungible' | 'NonFungible'; + } - /** @name OrmlXtokensModuleCall (294) */ + /** @name OrmlXtokensModuleCall (328) */ interface OrmlXtokensModuleCall extends Enum { readonly isTransfer: boolean; readonly asTransfer: { readonly currencyId: AcalaPrimitivesCurrencyCurrencyId; readonly amount: u128; - readonly dest: XcmVersionedMultiLocation; + readonly dest: XcmVersionedLocation; readonly destWeightLimit: XcmV3WeightLimit; } & Struct; readonly isTransferMultiasset: boolean; readonly asTransferMultiasset: { - readonly asset: XcmVersionedMultiAsset; - readonly dest: XcmVersionedMultiLocation; + readonly asset: XcmVersionedAsset; + readonly dest: XcmVersionedLocation; readonly destWeightLimit: XcmV3WeightLimit; } & Struct; readonly isTransferWithFee: boolean; @@ -4226,53 +4647,55 @@ declare module '@polkadot/types/lookup' { readonly currencyId: AcalaPrimitivesCurrencyCurrencyId; readonly amount: u128; readonly fee: u128; - readonly dest: XcmVersionedMultiLocation; + readonly dest: XcmVersionedLocation; readonly destWeightLimit: XcmV3WeightLimit; } & Struct; readonly isTransferMultiassetWithFee: boolean; readonly asTransferMultiassetWithFee: { - readonly asset: XcmVersionedMultiAsset; - readonly fee: XcmVersionedMultiAsset; - readonly dest: XcmVersionedMultiLocation; + readonly asset: XcmVersionedAsset; + readonly fee: XcmVersionedAsset; + readonly dest: XcmVersionedLocation; readonly destWeightLimit: XcmV3WeightLimit; } & Struct; readonly isTransferMulticurrencies: boolean; readonly asTransferMulticurrencies: { readonly currencies: Vec>; readonly feeItem: u32; - readonly dest: XcmVersionedMultiLocation; + readonly dest: XcmVersionedLocation; readonly destWeightLimit: XcmV3WeightLimit; } & Struct; readonly isTransferMultiassets: boolean; readonly asTransferMultiassets: { - readonly assets: XcmVersionedMultiAssets; + readonly assets: XcmVersionedAssets; readonly feeItem: u32; - readonly dest: XcmVersionedMultiLocation; + readonly dest: XcmVersionedLocation; readonly destWeightLimit: XcmV3WeightLimit; } & Struct; readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets'; } - /** @name XcmVersionedMultiAsset (295) */ - interface XcmVersionedMultiAsset extends Enum { + /** @name XcmVersionedAsset (329) */ + interface XcmVersionedAsset extends Enum { readonly isV2: boolean; readonly asV2: XcmV2MultiAsset; readonly isV3: boolean; readonly asV3: XcmV3MultiAsset; - readonly type: 'V2' | 'V3'; + readonly isV4: boolean; + readonly asV4: StagingXcmV4Asset; + readonly type: 'V2' | 'V3' | 'V4'; } - /** @name OrmlXcmModuleCall (296) */ + /** @name OrmlXcmModuleCall (330) */ interface OrmlXcmModuleCall extends Enum { readonly isSendAsSovereign: boolean; readonly asSendAsSovereign: { - readonly dest: XcmVersionedMultiLocation; + readonly dest: XcmVersionedLocation; readonly message: XcmVersionedXcm; } & Struct; readonly type: 'SendAsSovereign'; } - /** @name PalletMessageQueueCall (297) */ + /** @name PalletMessageQueueCall (331) */ interface PalletMessageQueueCall extends Enum { readonly isReapPage: boolean; readonly asReapPage: { @@ -4289,7 +4712,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ReapPage' | 'ExecuteOverweight'; } - /** @name OrmlAuthorityModuleCall (298) */ + /** @name OrmlAuthorityModuleCall (332) */ interface OrmlAuthorityModuleCall extends Enum { readonly isDispatchAs: boolean; readonly asDispatchAs: { @@ -4337,7 +4760,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'DispatchAs' | 'ScheduleDispatch' | 'FastTrackScheduledDispatch' | 'DelayScheduledDispatch' | 'CancelScheduledDispatch' | 'AuthorizeCall' | 'RemoveAuthorizedCall' | 'TriggerCall'; } - /** @name AcalaPrimitivesAuthoritysOriginId (299) */ + /** @name AcalaPrimitivesAuthoritysOriginId (333) */ interface AcalaPrimitivesAuthoritysOriginId extends Enum { readonly isRoot: boolean; readonly isTreasury: boolean; @@ -4347,7 +4770,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Root' | 'Treasury' | 'HonzonTreasury' | 'HomaTreasury' | 'TreasuryReserve'; } - /** @name FrameSupportScheduleDispatchTime (300) */ + /** @name FrameSupportScheduleDispatchTime (334) */ interface FrameSupportScheduleDispatchTime extends Enum { readonly isAt: boolean; readonly asAt: u32; @@ -4356,7 +4779,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'At' | 'After'; } - /** @name PalletCollectiveCall (301) */ + /** @name PalletCollectiveCall (335) */ interface PalletCollectiveCall extends Enum { readonly isSetMembers: boolean; readonly asSetMembers: { @@ -4395,7 +4818,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'SetMembers' | 'Execute' | 'Propose' | 'Vote' | 'DisapproveProposal' | 'Close'; } - /** @name PalletMembershipCall (302) */ + /** @name PalletMembershipCall (336) */ interface PalletMembershipCall extends Enum { readonly isAddMember: boolean; readonly asAddMember: { @@ -4426,7 +4849,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'AddMember' | 'RemoveMember' | 'SwapMember' | 'ResetMembers' | 'ChangeKey' | 'SetPrime' | 'ClearPrime'; } - /** @name PalletDemocracyCall (309) */ + /** @name PalletDemocracyCall (343) */ interface PalletDemocracyCall extends Enum { readonly isPropose: boolean; readonly asPropose: { @@ -4510,7 +4933,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 (310) */ + /** @name PalletDemocracyConviction (344) */ interface PalletDemocracyConviction extends Enum { readonly isNone: boolean; readonly isLocked1x: boolean; @@ -4522,7 +4945,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'None' | 'Locked1x' | 'Locked2x' | 'Locked3x' | 'Locked4x' | 'Locked5x' | 'Locked6x'; } - /** @name OrmlOracleModuleCall (312) */ + /** @name OrmlOracleModuleCall (346) */ interface OrmlOracleModuleCall extends Enum { readonly isFeedValues: boolean; readonly asFeedValues: { @@ -4531,7 +4954,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'FeedValues'; } - /** @name OrmlAuctionModuleCall (315) */ + /** @name OrmlAuctionModuleCall (349) */ interface OrmlAuctionModuleCall extends Enum { readonly isBid: boolean; readonly asBid: { @@ -4541,7 +4964,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Bid'; } - /** @name OrmlParametersModuleCall (316) */ + /** @name OrmlParametersModuleCall (350) */ interface OrmlParametersModuleCall extends Enum { readonly isSetParameter: boolean; readonly asSetParameter: { @@ -4550,7 +4973,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'SetParameter'; } - /** @name ModulePricesModuleCall (317) */ + /** @name ModulePricesModuleCall (351) */ interface ModulePricesModuleCall extends Enum { readonly isLockPrice: boolean; readonly asLockPrice: { @@ -4563,7 +4986,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'LockPrice' | 'UnlockPrice'; } - /** @name ModuleDexModuleCall (318) */ + /** @name ModuleDexModuleCall (352) */ interface ModuleDexModuleCall extends Enum { readonly isSwapWithExactSupply: boolean; readonly asSwapWithExactSupply: { @@ -4657,7 +5080,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'SwapWithExactSupply' | 'SwapWithExactTarget' | 'AddLiquidity' | 'AddProvision' | 'ClaimDexShare' | 'RemoveLiquidity' | 'ListProvisioning' | 'UpdateProvisioningParameters' | 'EndProvisioning' | 'EnableTradingPair' | 'DisableTradingPair' | 'RefundProvision' | 'AbortProvisioning'; } - /** @name ModuleDexOracleModuleCall (319) */ + /** @name ModuleDexOracleModuleCall (353) */ interface ModuleDexOracleModuleCall extends Enum { readonly isEnableAveragePrice: boolean; readonly asEnableAveragePrice: { @@ -4679,7 +5102,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'EnableAveragePrice' | 'DisableAveragePrice' | 'UpdateAveragePriceInterval'; } - /** @name ModuleAggregatedDexModuleCall (320) */ + /** @name ModuleAggregatedDexModuleCall (354) */ interface ModuleAggregatedDexModuleCall extends Enum { readonly isSwapWithExactSupply: boolean; readonly asSwapWithExactSupply: { @@ -4700,7 +5123,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'SwapWithExactSupply' | 'SwapWithExactTarget' | 'UpdateAggregatedSwapPaths'; } - /** @name ModuleEarningModuleCall (325) */ + /** @name ModuleEarningModuleCall (359) */ interface ModuleEarningModuleCall extends Enum { readonly isBond: boolean; readonly asBond: { @@ -4722,7 +5145,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Bond' | 'Unbond' | 'UnbondInstant' | 'Rebond' | 'WithdrawUnbonded'; } - /** @name ModuleAuctionManagerModuleCall (326) */ + /** @name ModuleAuctionManagerModuleCall (360) */ interface ModuleAuctionManagerModuleCall extends Enum { readonly isCancel: boolean; readonly asCancel: { @@ -4731,10 +5154,10 @@ declare module '@polkadot/types/lookup' { readonly type: 'Cancel'; } - /** @name ModuleLoansModuleCall (327) */ + /** @name ModuleLoansModuleCall (361) */ type ModuleLoansModuleCall = Null; - /** @name ModuleHonzonModuleCall (328) */ + /** @name ModuleHonzonModuleCall (362) */ interface ModuleHonzonModuleCall extends Enum { readonly isAdjustLoan: boolean; readonly asAdjustLoan: { @@ -4790,7 +5213,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'AdjustLoan' | 'CloseLoanHasDebitByDex' | 'TransferLoanFrom' | 'Authorize' | 'Unauthorize' | 'UnauthorizeAll' | 'ExpandPositionCollateral' | 'ShrinkPositionDebit' | 'AdjustLoanByDebitValue' | 'TransferDebit'; } - /** @name ModuleCdpTreasuryModuleCall (329) */ + /** @name ModuleCdpTreasuryModuleCall (363) */ interface ModuleCdpTreasuryModuleCall extends Enum { readonly isExtractSurplusToTreasury: boolean; readonly asExtractSurplusToTreasury: { @@ -4820,7 +5243,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ExtractSurplusToTreasury' | 'AuctionCollateral' | 'ExchangeCollateralToStable' | 'SetExpectedCollateralAuctionSize' | 'SetDebitOffsetBuffer'; } - /** @name ModuleSupportDexSwapLimit (330) */ + /** @name ModuleSupportDexSwapLimit (364) */ interface ModuleSupportDexSwapLimit extends Enum { readonly isExactSupply: boolean; readonly asExactSupply: ITuple<[u128, u128]>; @@ -4829,7 +5252,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ExactSupply' | 'ExactTarget'; } - /** @name ModuleCdpEngineModuleCall (331) */ + /** @name ModuleCdpEngineModuleCall (365) */ interface ModuleCdpEngineModuleCall extends Enum { readonly isLiquidate: boolean; readonly asLiquidate: { @@ -4861,7 +5284,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Liquidate' | 'Settle' | 'SetCollateralParams' | 'RegisterLiquidationContract' | 'DeregisterLiquidationContract'; } - /** @name OrmlTraitsChangeOption (332) */ + /** @name OrmlTraitsChangeOption (366) */ interface OrmlTraitsChangeOption extends Enum { readonly isNoChange: boolean; readonly isNewValue: boolean; @@ -4869,7 +5292,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NoChange' | 'NewValue'; } - /** @name OrmlTraitsChangeU128 (333) */ + /** @name OrmlTraitsChangeU128 (367) */ interface OrmlTraitsChangeU128 extends Enum { readonly isNoChange: boolean; readonly isNewValue: boolean; @@ -4877,7 +5300,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NoChange' | 'NewValue'; } - /** @name ModuleEmergencyShutdownModuleCall (334) */ + /** @name ModuleEmergencyShutdownModuleCall (368) */ interface ModuleEmergencyShutdownModuleCall extends Enum { readonly isEmergencyShutdown: boolean; readonly isOpenCollateralRefund: boolean; @@ -4888,7 +5311,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'EmergencyShutdown' | 'OpenCollateralRefund' | 'RefundCollaterals'; } - /** @name ModuleHomaModuleCall (335) */ + /** @name ModuleHomaModuleCall (369) */ interface ModuleHomaModuleCall extends Enum { readonly isMint: boolean; readonly asMint: { @@ -4938,7 +5361,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Mint' | 'RequestRedeem' | 'FastMatchRedeems' | 'ClaimRedemption' | 'UpdateHomaParams' | 'UpdateBumpEraParams' | 'ResetLedgers' | 'ResetCurrentEra' | 'ForceBumpCurrentEra' | 'FastMatchRedeemsCompletely'; } - /** @name ModuleXcmInterfaceModuleCall (340) */ + /** @name ModuleXcmInterfaceModuleCall (374) */ interface ModuleXcmInterfaceModuleCall extends Enum { readonly isUpdateXcmDestWeightAndFee: boolean; readonly asUpdateXcmDestWeightAndFee: { @@ -4947,7 +5370,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'UpdateXcmDestWeightAndFee'; } - /** @name ModuleIncentivesModuleCall (343) */ + /** @name ModuleIncentivesModuleCall (377) */ interface ModuleIncentivesModuleCall extends Enum { readonly isDepositDexShare: boolean; readonly asDepositDexShare: { @@ -4979,7 +5402,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'DepositDexShare' | 'WithdrawDexShare' | 'ClaimRewards' | 'UpdateIncentiveRewards' | 'UpdateClaimRewardDeductionRates' | 'UpdateClaimRewardDeductionCurrency'; } - /** @name ModuleNftModuleCall (348) */ + /** @name ModuleNftModuleCall (382) */ interface ModuleNftModuleCall extends Enum { readonly isCreateClass: boolean; readonly asCreateClass: { @@ -5022,7 +5445,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'CreateClass' | 'Mint' | 'Transfer' | 'Burn' | 'BurnWithRemark' | 'DestroyClass' | 'UpdateClassProperties'; } - /** @name AcalaPrimitivesNftClassProperty (350) */ + /** @name AcalaPrimitivesNftClassProperty (384) */ interface AcalaPrimitivesNftClassProperty extends Enum { readonly isTransferable: boolean; readonly isBurnable: boolean; @@ -5031,17 +5454,17 @@ declare module '@polkadot/types/lookup' { readonly type: 'Transferable' | 'Burnable' | 'Mintable' | 'ClassPropertiesMutable'; } - /** @name ModuleAssetRegistryModuleCall (353) */ + /** @name ModuleAssetRegistryModuleCall (387) */ interface ModuleAssetRegistryModuleCall extends Enum { readonly isRegisterForeignAsset: boolean; readonly asRegisterForeignAsset: { - readonly location: XcmVersionedMultiLocation; + readonly location: XcmVersionedLocation; readonly metadata: AcalaPrimitivesCurrencyAssetMetadata; } & Struct; readonly isUpdateForeignAsset: boolean; readonly asUpdateForeignAsset: { readonly foreignAssetId: u16; - readonly location: XcmVersionedMultiLocation; + readonly location: XcmVersionedLocation; readonly metadata: AcalaPrimitivesCurrencyAssetMetadata; } & Struct; readonly isRegisterStableAsset: boolean; @@ -5076,7 +5499,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset' | 'RegisterStableAsset' | 'UpdateStableAsset' | 'RegisterErc20Asset' | 'UpdateErc20Asset' | 'RegisterNativeAsset' | 'UpdateNativeAsset'; } - /** @name ModuleLiquidCrowdloanModuleCall (354) */ + /** @name ModuleLiquidCrowdloanModuleCall (388) */ interface ModuleLiquidCrowdloanModuleCall extends Enum { readonly isRedeem: boolean; readonly asRedeem: { @@ -5093,7 +5516,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Redeem' | 'TransferFromCrowdloanVault' | 'SetRedeemCurrencyId'; } - /** @name ModuleEvmModuleCall (355) */ + /** @name ModuleEvmModuleCall (389) */ interface ModuleEvmModuleCall extends Enum { readonly isEthCall: boolean; readonly asEthCall: { @@ -5203,7 +5626,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 (356) */ + /** @name EthereumTransactionTransactionAction (390) */ interface EthereumTransactionTransactionAction extends Enum { readonly isCall: boolean; readonly asCall: H160; @@ -5211,13 +5634,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'Call' | 'Create'; } - /** @name EthereumTransactionAccessListItem (358) */ + /** @name EthereumTransactionAccessListItem (392) */ interface EthereumTransactionAccessListItem extends Struct { readonly address: H160; readonly storageKeys: Vec; } - /** @name ModuleEvmAccountsModuleCall (359) */ + /** @name ModuleEvmAccountsModuleCall (393) */ interface ModuleEvmAccountsModuleCall extends Enum { readonly isClaimAccount: boolean; readonly asClaimAccount: { @@ -5228,7 +5651,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ClaimAccount' | 'ClaimDefaultAccount'; } - /** @name NutsfinanceStableAssetCall (361) */ + /** @name NutsfinanceStableAssetCall (395) */ interface NutsfinanceStableAssetCall extends Enum { readonly isCreatePool: boolean; readonly asCreatePool: { @@ -5300,7 +5723,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'CreatePool' | 'Mint' | 'Swap' | 'RedeemProportion' | 'RedeemSingle' | 'RedeemMulti' | 'ModifyA' | 'ModifyFees' | 'ModifyRecipients'; } - /** @name CumulusPalletParachainSystemCall (362) */ + /** @name CumulusPalletParachainSystemCall (396) */ interface CumulusPalletParachainSystemCall extends Enum { readonly isSetValidationData: boolean; readonly asSetValidationData: { @@ -5322,7 +5745,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade'; } - /** @name CumulusPrimitivesParachainInherentParachainInherentData (363) */ + /** @name CumulusPrimitivesParachainInherentParachainInherentData (397) */ interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct { readonly validationData: PolkadotPrimitivesV6PersistedValidationData; readonly relayChainState: SpTrieStorageProof; @@ -5330,7 +5753,7 @@ declare module '@polkadot/types/lookup' { readonly horizontalMessages: BTreeMap>; } - /** @name PolkadotPrimitivesV6PersistedValidationData (364) */ + /** @name PolkadotPrimitivesV6PersistedValidationData (398) */ interface PolkadotPrimitivesV6PersistedValidationData extends Struct { readonly parentHead: Bytes; readonly relayParentNumber: u32; @@ -5338,24 +5761,24 @@ declare module '@polkadot/types/lookup' { readonly maxPovSize: u32; } - /** @name SpTrieStorageProof (366) */ + /** @name SpTrieStorageProof (400) */ interface SpTrieStorageProof extends Struct { readonly trieNodes: BTreeSet; } - /** @name PolkadotCorePrimitivesInboundDownwardMessage (369) */ + /** @name PolkadotCorePrimitivesInboundDownwardMessage (403) */ interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct { readonly sentAt: u32; readonly msg: Bytes; } - /** @name PolkadotCorePrimitivesInboundHrmpMessage (372) */ + /** @name PolkadotCorePrimitivesInboundHrmpMessage (406) */ interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct { readonly sentAt: u32; readonly data: Bytes; } - /** @name PalletSudoCall (375) */ + /** @name PalletSudoCall (409) */ interface PalletSudoCall extends Enum { readonly isSudo: boolean; readonly asSudo: { @@ -5379,10 +5802,17 @@ declare module '@polkadot/types/lookup' { readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs' | 'RemoveKey'; } - /** @name SpRuntimeBlakeTwo256 (376) */ + /** @name SpRuntimeBlakeTwo256 (410) */ type SpRuntimeBlakeTwo256 = Null; - /** @name PalletSchedulerError (379) */ + /** @name PalletSchedulerRetryConfig (413) */ + interface PalletSchedulerRetryConfig extends Struct { + readonly totalRetries: u8; + readonly remaining: u8; + readonly period: u32; + } + + /** @name PalletSchedulerError (414) */ interface PalletSchedulerError extends Enum { readonly isFailedToSchedule: boolean; readonly isNotFound: boolean; @@ -5392,13 +5822,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named'; } - /** @name PalletUtilityError (380) */ + /** @name PalletUtilityError (415) */ interface PalletUtilityError extends Enum { readonly isTooManyCalls: boolean; readonly type: 'TooManyCalls'; } - /** @name PalletMultisigMultisig (382) */ + /** @name PalletMultisigMultisig (417) */ interface PalletMultisigMultisig extends Struct { readonly when: PalletMultisigTimepoint; readonly deposit: u128; @@ -5406,7 +5836,7 @@ declare module '@polkadot/types/lookup' { readonly approvals: Vec; } - /** @name PalletMultisigError (384) */ + /** @name PalletMultisigError (419) */ interface PalletMultisigError extends Enum { readonly isMinimumThreshold: boolean; readonly isAlreadyApproved: boolean; @@ -5425,21 +5855,21 @@ declare module '@polkadot/types/lookup' { readonly type: 'MinimumThreshold' | 'AlreadyApproved' | 'NoApprovalsNeeded' | 'TooFewSignatories' | 'TooManySignatories' | 'SignatoriesOutOfOrder' | 'SenderInSignatories' | 'NotFound' | 'NotOwner' | 'NoTimepoint' | 'WrongTimepoint' | 'UnexpectedTimepoint' | 'MaxWeightTooLow' | 'AlreadyStored'; } - /** @name PalletProxyProxyDefinition (387) */ + /** @name PalletProxyProxyDefinition (422) */ interface PalletProxyProxyDefinition extends Struct { readonly delegate: AccountId32; readonly proxyType: RuntimeCommonProxyType; readonly delay: u32; } - /** @name PalletProxyAnnouncement (391) */ + /** @name PalletProxyAnnouncement (426) */ interface PalletProxyAnnouncement extends Struct { readonly real: AccountId32; readonly callHash: H256; readonly height: u32; } - /** @name PalletProxyError (393) */ + /** @name PalletProxyError (428) */ interface PalletProxyError extends Enum { readonly isTooMany: boolean; readonly isNotFound: boolean; @@ -5452,14 +5882,14 @@ declare module '@polkadot/types/lookup' { readonly type: 'TooMany' | 'NotFound' | 'NotProxy' | 'Unproxyable' | 'Duplicate' | 'NoPermission' | 'Unannounced' | 'NoSelfProxy'; } - /** @name ModuleTransactionPauseModuleError (394) */ + /** @name ModuleTransactionPauseModuleError (429) */ interface ModuleTransactionPauseModuleError extends Enum { readonly isCannotPause: boolean; readonly isInvalidCharacter: boolean; readonly type: 'CannotPause' | 'InvalidCharacter'; } - /** @name PalletPreimageOldRequestStatus (395) */ + /** @name PalletPreimageOldRequestStatus (430) */ interface PalletPreimageOldRequestStatus extends Enum { readonly isUnrequested: boolean; readonly asUnrequested: { @@ -5475,7 +5905,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Unrequested' | 'Requested'; } - /** @name PalletPreimageRequestStatus (398) */ + /** @name PalletPreimageRequestStatus (433) */ interface PalletPreimageRequestStatus extends Enum { readonly isUnrequested: boolean; readonly asUnrequested: { @@ -5491,7 +5921,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Unrequested' | 'Requested'; } - /** @name PalletPreimageError (404) */ + /** @name PalletPreimageError (439) */ interface PalletPreimageError extends Enum { readonly isTooBig: boolean; readonly isAlreadyNoted: boolean; @@ -5504,14 +5934,14 @@ declare module '@polkadot/types/lookup' { readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested' | 'TooMany' | 'TooFew'; } - /** @name PalletBalancesBalanceLock (406) */ + /** @name PalletBalancesBalanceLock (441) */ interface PalletBalancesBalanceLock extends Struct { readonly id: U8aFixed; readonly amount: u128; readonly reasons: PalletBalancesReasons; } - /** @name PalletBalancesReasons (407) */ + /** @name PalletBalancesReasons (442) */ interface PalletBalancesReasons extends Enum { readonly isFee: boolean; readonly isMisc: boolean; @@ -5519,13 +5949,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'Fee' | 'Misc' | 'All'; } - /** @name PalletBalancesReserveData (410) */ + /** @name PalletBalancesReserveData (445) */ interface PalletBalancesReserveData extends Struct { readonly id: AcalaPrimitivesReserveIdentifier; readonly amount: u128; } - /** @name AcalaPrimitivesReserveIdentifier (411) */ + /** @name AcalaPrimitivesReserveIdentifier (446) */ interface AcalaPrimitivesReserveIdentifier extends Enum { readonly isCollatorSelection: boolean; readonly isEvmStorageDeposit: boolean; @@ -5538,26 +5968,26 @@ declare module '@polkadot/types/lookup' { readonly type: 'CollatorSelection' | 'EvmStorageDeposit' | 'EvmDeveloperDeposit' | 'Honzon' | 'Nft' | 'TransactionPayment' | 'TransactionPaymentDeposit' | 'Count'; } - /** @name AcalaRuntimeRuntimeHoldReason (415) */ + /** @name AcalaRuntimeRuntimeHoldReason (450) */ interface AcalaRuntimeRuntimeHoldReason extends Enum { readonly isPreimage: boolean; readonly asPreimage: PalletPreimageHoldReason; readonly type: 'Preimage'; } - /** @name PalletPreimageHoldReason (416) */ + /** @name PalletPreimageHoldReason (451) */ interface PalletPreimageHoldReason extends Enum { readonly isPreimage: boolean; readonly type: 'Preimage'; } - /** @name PalletBalancesIdAmount (419) */ + /** @name PalletBalancesIdAmount (454) */ interface PalletBalancesIdAmount extends Struct { readonly id: Null; readonly amount: u128; } - /** @name PalletBalancesError (421) */ + /** @name PalletBalancesError (456) */ interface PalletBalancesError extends Enum { readonly isVestingBalance: boolean; readonly isLiquidityRestrictions: boolean; @@ -5569,29 +5999,31 @@ declare module '@polkadot/types/lookup' { readonly isTooManyReserves: boolean; readonly isTooManyHolds: boolean; readonly isTooManyFreezes: boolean; - readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes'; + readonly isIssuanceDeactivated: boolean; + readonly isDeltaZero: boolean; + readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes' | 'IssuanceDeactivated' | 'DeltaZero'; } - /** @name OrmlTokensBalanceLock (424) */ + /** @name OrmlTokensBalanceLock (459) */ interface OrmlTokensBalanceLock extends Struct { readonly id: U8aFixed; readonly amount: u128; } - /** @name OrmlTokensAccountData (426) */ + /** @name OrmlTokensAccountData (461) */ interface OrmlTokensAccountData extends Struct { readonly free: u128; readonly reserved: u128; readonly frozen: u128; } - /** @name OrmlTokensReserveData (428) */ + /** @name OrmlTokensReserveData (463) */ interface OrmlTokensReserveData extends Struct { readonly id: AcalaPrimitivesReserveIdentifier; readonly amount: u128; } - /** @name OrmlTokensModuleError (430) */ + /** @name OrmlTokensModuleError (465) */ interface OrmlTokensModuleError extends Enum { readonly isBalanceTooLow: boolean; readonly isAmountIntoBalanceFailed: boolean; @@ -5604,7 +6036,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves'; } - /** @name ModuleCurrenciesModuleError (431) */ + /** @name ModuleCurrenciesModuleError (466) */ interface ModuleCurrenciesModuleError extends Enum { readonly isAmountIntoBalanceFailed: boolean; readonly isBalanceTooLow: boolean; @@ -5615,7 +6047,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'AmountIntoBalanceFailed' | 'BalanceTooLow' | 'Erc20InvalidOperation' | 'EvmAccountNotFound' | 'RealOriginNotFound' | 'DepositFailed'; } - /** @name OrmlVestingModuleError (433) */ + /** @name OrmlVestingModuleError (468) */ interface OrmlVestingModuleError extends Enum { readonly isZeroVestingPeriod: boolean; readonly isZeroVestingPeriodCount: boolean; @@ -5626,7 +6058,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded'; } - /** @name ModuleTransactionPaymentModuleChargeFeeMethod (435) */ + /** @name ModuleTransactionPaymentModuleChargeFeeMethod (470) */ interface ModuleTransactionPaymentModuleChargeFeeMethod extends Enum { readonly isFeeCurrency: boolean; readonly asFeeCurrency: AcalaPrimitivesCurrencyCurrencyId; @@ -5635,10 +6067,10 @@ declare module '@polkadot/types/lookup' { readonly type: 'FeeCurrency' | 'FeeAggregatedPath'; } - /** @name FrameSupportPalletId (436) */ + /** @name FrameSupportPalletId (471) */ interface FrameSupportPalletId extends U8aFixed {} - /** @name ModuleTransactionPaymentModuleError (438) */ + /** @name ModuleTransactionPaymentModuleError (473) */ interface ModuleTransactionPaymentModuleError extends Enum { readonly isInvalidSwapPath: boolean; readonly isInvalidBalance: boolean; @@ -5649,7 +6081,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'InvalidSwapPath' | 'InvalidBalance' | 'InvalidRate' | 'InvalidToken' | 'DexNotAvailable' | 'ChargeFeePoolAlreadyExisted'; } - /** @name PalletTreasuryProposal (439) */ + /** @name PalletTreasuryProposal (474) */ interface PalletTreasuryProposal extends Struct { readonly proposer: AccountId32; readonly value: u128; @@ -5657,7 +6089,7 @@ declare module '@polkadot/types/lookup' { readonly bond: u128; } - /** @name PalletTreasurySpendStatus (442) */ + /** @name PalletTreasurySpendStatus (477) */ interface PalletTreasurySpendStatus extends Struct { readonly assetKind: Null; readonly amount: u128; @@ -5667,7 +6099,7 @@ declare module '@polkadot/types/lookup' { readonly status: PalletTreasuryPaymentState; } - /** @name PalletTreasuryPaymentState (443) */ + /** @name PalletTreasuryPaymentState (478) */ interface PalletTreasuryPaymentState extends Enum { readonly isPending: boolean; readonly isAttempted: boolean; @@ -5678,7 +6110,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Pending' | 'Attempted' | 'Failed'; } - /** @name PalletTreasuryError (444) */ + /** @name PalletTreasuryError (479) */ interface PalletTreasuryError extends Enum { readonly isInsufficientProposersBalance: boolean; readonly isInvalidIndex: boolean; @@ -5695,7 +6127,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved' | 'FailedToConvertBalance' | 'SpendExpired' | 'EarlyPayout' | 'AlreadyAttempted' | 'PayoutError' | 'NotAttempted' | 'Inconclusive'; } - /** @name PalletBountiesBounty (445) */ + /** @name PalletBountiesBounty (480) */ interface PalletBountiesBounty extends Struct { readonly proposer: AccountId32; readonly value: u128; @@ -5705,7 +6137,7 @@ declare module '@polkadot/types/lookup' { readonly status: PalletBountiesBountyStatus; } - /** @name PalletBountiesBountyStatus (446) */ + /** @name PalletBountiesBountyStatus (481) */ interface PalletBountiesBountyStatus extends Enum { readonly isProposed: boolean; readonly isApproved: boolean; @@ -5728,7 +6160,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Proposed' | 'Approved' | 'Funded' | 'CuratorProposed' | 'Active' | 'PendingPayout'; } - /** @name PalletBountiesError (448) */ + /** @name PalletBountiesError (483) */ interface PalletBountiesError extends Enum { readonly isInsufficientProposersBalance: boolean; readonly isInvalidIndex: boolean; @@ -5744,7 +6176,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'ReasonTooBig' | 'UnexpectedStatus' | 'RequireCurator' | 'InvalidValue' | 'InvalidFee' | 'PendingPayout' | 'Premature' | 'HasActiveChildBounty' | 'TooManyQueued'; } - /** @name PalletTipsOpenTip (449) */ + /** @name PalletTipsOpenTip (484) */ interface PalletTipsOpenTip extends Struct { readonly reason: H256; readonly who: AccountId32; @@ -5755,7 +6187,7 @@ declare module '@polkadot/types/lookup' { readonly findersFee: bool; } - /** @name PalletTipsError (451) */ + /** @name PalletTipsError (486) */ interface PalletTipsError extends Enum { readonly isReasonTooBig: boolean; readonly isAlreadyKnown: boolean; @@ -5767,7 +6199,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ReasonTooBig' | 'AlreadyKnown' | 'UnknownTip' | 'MaxTipAmountExceeded' | 'NotFinder' | 'StillOpen' | 'Premature'; } - /** @name ModuleCollatorSelectionError (455) */ + /** @name ModuleCollatorSelectionError (490) */ interface ModuleCollatorSelectionError extends Enum { readonly isMaxCandidatesExceeded: boolean; readonly isBelowCandidatesMin: boolean; @@ -5785,10 +6217,10 @@ declare module '@polkadot/types/lookup' { readonly type: 'MaxCandidatesExceeded' | 'BelowCandidatesMin' | 'StillLocked' | 'Unknown' | 'Permission' | 'AlreadyCandidate' | 'NotCandidate' | 'NotNonCandidate' | 'NothingToWithdraw' | 'RequireSessionKey' | 'AlreadyInvulnerable' | 'InvalidProof' | 'MaxInvulnerablesExceeded'; } - /** @name SpCoreCryptoKeyTypeId (459) */ + /** @name SpCoreCryptoKeyTypeId (494) */ interface SpCoreCryptoKeyTypeId extends U8aFixed {} - /** @name PalletSessionError (460) */ + /** @name PalletSessionError (495) */ interface PalletSessionError extends Enum { readonly isInvalidProof: boolean; readonly isNoAssociatedValidatorId: boolean; @@ -5798,7 +6230,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount'; } - /** @name ModuleSessionManagerModuleError (465) */ + /** @name ModuleSessionManagerModuleError (500) */ interface ModuleSessionManagerModuleError extends Enum { readonly isInvalidSession: boolean; readonly isInvalidDuration: boolean; @@ -5806,7 +6238,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'InvalidSession' | 'InvalidDuration' | 'EstimateNextSessionFailed'; } - /** @name CumulusPalletXcmpQueueOutboundChannelDetails (470) */ + /** @name CumulusPalletXcmpQueueOutboundChannelDetails (505) */ interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct { readonly recipient: u32; readonly state: CumulusPalletXcmpQueueOutboundState; @@ -5815,21 +6247,21 @@ declare module '@polkadot/types/lookup' { readonly lastIndex: u16; } - /** @name CumulusPalletXcmpQueueOutboundState (471) */ + /** @name CumulusPalletXcmpQueueOutboundState (506) */ interface CumulusPalletXcmpQueueOutboundState extends Enum { readonly isOk: boolean; readonly isSuspended: boolean; readonly type: 'Ok' | 'Suspended'; } - /** @name CumulusPalletXcmpQueueQueueConfigData (473) */ + /** @name CumulusPalletXcmpQueueQueueConfigData (508) */ interface CumulusPalletXcmpQueueQueueConfigData extends Struct { readonly suspendThreshold: u32; readonly dropThreshold: u32; readonly resumeThreshold: u32; } - /** @name CumulusPalletXcmpQueueError (474) */ + /** @name CumulusPalletXcmpQueueError (509) */ interface CumulusPalletXcmpQueueError extends Enum { readonly isBadQueueConfig: boolean; readonly isAlreadySuspended: boolean; @@ -5837,18 +6269,18 @@ declare module '@polkadot/types/lookup' { readonly type: 'BadQueueConfig' | 'AlreadySuspended' | 'AlreadyResumed'; } - /** @name PalletXcmQueryStatus (475) */ + /** @name PalletXcmQueryStatus (510) */ interface PalletXcmQueryStatus extends Enum { readonly isPending: boolean; readonly asPending: { - readonly responder: XcmVersionedMultiLocation; - readonly maybeMatchQuerier: Option; + readonly responder: XcmVersionedLocation; + readonly maybeMatchQuerier: Option; readonly maybeNotify: Option>; readonly timeout: u32; } & Struct; readonly isVersionNotifier: boolean; readonly asVersionNotifier: { - readonly origin: XcmVersionedMultiLocation; + readonly origin: XcmVersionedLocation; readonly isActive: bool; } & Struct; readonly isReady: boolean; @@ -5859,16 +6291,18 @@ declare module '@polkadot/types/lookup' { readonly type: 'Pending' | 'VersionNotifier' | 'Ready'; } - /** @name XcmVersionedResponse (479) */ + /** @name XcmVersionedResponse (514) */ interface XcmVersionedResponse extends Enum { readonly isV2: boolean; readonly asV2: XcmV2Response; readonly isV3: boolean; readonly asV3: XcmV3Response; - readonly type: 'V2' | 'V3'; + readonly isV4: boolean; + readonly asV4: StagingXcmV4Response; + readonly type: 'V2' | 'V3' | 'V4'; } - /** @name PalletXcmVersionMigrationStage (485) */ + /** @name PalletXcmVersionMigrationStage (520) */ interface PalletXcmVersionMigrationStage extends Enum { readonly isMigrateSupportedVersion: boolean; readonly isMigrateVersionNotifiers: boolean; @@ -5878,22 +6312,24 @@ declare module '@polkadot/types/lookup' { readonly type: 'MigrateSupportedVersion' | 'MigrateVersionNotifiers' | 'NotifyCurrentTargets' | 'MigrateAndNotifyOldTargets'; } - /** @name XcmVersionedAssetId (488) */ + /** @name XcmVersionedAssetId (523) */ interface XcmVersionedAssetId extends Enum { readonly isV3: boolean; readonly asV3: XcmV3MultiassetAssetId; - readonly type: 'V3'; + readonly isV4: boolean; + readonly asV4: StagingXcmV4AssetAssetId; + readonly type: 'V3' | 'V4'; } - /** @name PalletXcmRemoteLockedFungibleRecord (489) */ + /** @name PalletXcmRemoteLockedFungibleRecord (524) */ interface PalletXcmRemoteLockedFungibleRecord extends Struct { readonly amount: u128; - readonly owner: XcmVersionedMultiLocation; - readonly locker: XcmVersionedMultiLocation; + readonly owner: XcmVersionedLocation; + readonly locker: XcmVersionedLocation; readonly consumers: Vec>; } - /** @name PalletXcmError (496) */ + /** @name PalletXcmError (531) */ interface PalletXcmError extends Enum { readonly isUnreachable: boolean; readonly isSendFailure: boolean; @@ -5923,28 +6359,7 @@ declare module '@polkadot/types/lookup' { 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 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 (500) */ + /** @name OrmlXtokensModuleError (532) */ interface OrmlXtokensModuleError extends Enum { readonly isAssetHasNoReserve: boolean; readonly isNotCrossChainTransfer: boolean; @@ -5963,12 +6378,13 @@ declare module '@polkadot/types/lookup' { readonly isTooManyAssetsBeingSent: boolean; readonly isAssetIndexNonExistent: boolean; readonly isFeeNotEnough: boolean; - readonly isNotSupportedMultiLocation: boolean; + readonly isNotSupportedLocation: boolean; readonly isMinXcmFeeNotDefined: boolean; - readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined'; + readonly isRateLimited: boolean; + readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedLocation' | 'MinXcmFeeNotDefined' | 'RateLimited'; } - /** @name OrmlUnknownTokensModuleError (503) */ + /** @name OrmlUnknownTokensModuleError (535) */ interface OrmlUnknownTokensModuleError extends Enum { readonly isBalanceTooLow: boolean; readonly isBalanceOverflow: boolean; @@ -5976,7 +6392,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'BalanceTooLow' | 'BalanceOverflow' | 'UnhandledAsset'; } - /** @name OrmlXcmModuleError (504) */ + /** @name OrmlXcmModuleError (536) */ interface OrmlXcmModuleError extends Enum { readonly isUnreachable: boolean; readonly isSendFailure: boolean; @@ -5984,7 +6400,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Unreachable' | 'SendFailure' | 'BadVersion'; } - /** @name PalletMessageQueueBookState (505) */ + /** @name PalletMessageQueueBookState (537) */ interface PalletMessageQueueBookState extends Struct { readonly begin: u32; readonly end: u32; @@ -5994,13 +6410,13 @@ declare module '@polkadot/types/lookup' { readonly size_: u64; } - /** @name PalletMessageQueueNeighbours (507) */ + /** @name PalletMessageQueueNeighbours (539) */ interface PalletMessageQueueNeighbours extends Struct { readonly prev: CumulusPrimitivesCoreAggregateMessageOrigin; readonly next: CumulusPrimitivesCoreAggregateMessageOrigin; } - /** @name PalletMessageQueuePage (509) */ + /** @name PalletMessageQueuePage (541) */ interface PalletMessageQueuePage extends Struct { readonly remaining: u32; readonly remainingSize: u32; @@ -6010,7 +6426,7 @@ declare module '@polkadot/types/lookup' { readonly heap: Bytes; } - /** @name PalletMessageQueueError (511) */ + /** @name PalletMessageQueueError (543) */ interface PalletMessageQueueError extends Enum { readonly isNotReapable: boolean; readonly isNoPage: boolean; @@ -6024,7 +6440,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NotReapable' | 'NoPage' | 'NoMessage' | 'AlreadyProcessed' | 'Queued' | 'InsufficientWeight' | 'TemporarilyUnprocessable' | 'QueuePaused' | 'RecursiveDisallowed'; } - /** @name OrmlAuthorityModuleError (513) */ + /** @name OrmlAuthorityModuleError (545) */ interface OrmlAuthorityModuleError extends Enum { readonly isFailedToSchedule: boolean; readonly isFailedToCancel: boolean; @@ -6036,7 +6452,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'FailedToSchedule' | 'FailedToCancel' | 'FailedToFastTrack' | 'FailedToDelay' | 'CallNotAuthorized' | 'TriggerCallNotPermitted' | 'WrongCallWeightBound'; } - /** @name PalletCollectiveVotes (515) */ + /** @name PalletCollectiveVotes (547) */ interface PalletCollectiveVotes extends Struct { readonly index: u32; readonly threshold: u32; @@ -6045,7 +6461,7 @@ declare module '@polkadot/types/lookup' { readonly end: u32; } - /** @name PalletCollectiveError (516) */ + /** @name PalletCollectiveError (548) */ interface PalletCollectiveError extends Enum { readonly isNotMember: boolean; readonly isDuplicateProposal: boolean; @@ -6061,7 +6477,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NotMember' | 'DuplicateProposal' | 'ProposalMissing' | 'WrongIndex' | 'DuplicateVote' | 'AlreadyInitialized' | 'TooEarly' | 'TooManyProposals' | 'WrongProposalWeight' | 'WrongProposalLength' | 'PrimeAccountNotMember'; } - /** @name PalletMembershipError (518) */ + /** @name PalletMembershipError (550) */ interface PalletMembershipError extends Enum { readonly isAlreadyMember: boolean; readonly isNotMember: boolean; @@ -6069,7 +6485,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'AlreadyMember' | 'NotMember' | 'TooManyMembers'; } - /** @name PalletDemocracyReferendumInfo (529) */ + /** @name PalletDemocracyReferendumInfo (561) */ interface PalletDemocracyReferendumInfo extends Enum { readonly isOngoing: boolean; readonly asOngoing: PalletDemocracyReferendumStatus; @@ -6081,7 +6497,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Ongoing' | 'Finished'; } - /** @name PalletDemocracyReferendumStatus (530) */ + /** @name PalletDemocracyReferendumStatus (562) */ interface PalletDemocracyReferendumStatus extends Struct { readonly end: u32; readonly proposal: FrameSupportPreimagesBounded; @@ -6090,14 +6506,14 @@ declare module '@polkadot/types/lookup' { readonly tally: PalletDemocracyTally; } - /** @name PalletDemocracyTally (531) */ + /** @name PalletDemocracyTally (563) */ interface PalletDemocracyTally extends Struct { readonly ayes: u128; readonly nays: u128; readonly turnout: u128; } - /** @name PalletDemocracyVoteVoting (532) */ + /** @name PalletDemocracyVoteVoting (564) */ interface PalletDemocracyVoteVoting extends Enum { readonly isDirect: boolean; readonly asDirect: { @@ -6116,16 +6532,16 @@ declare module '@polkadot/types/lookup' { readonly type: 'Direct' | 'Delegating'; } - /** @name PalletDemocracyDelegations (536) */ + /** @name PalletDemocracyDelegations (568) */ interface PalletDemocracyDelegations extends Struct { readonly votes: u128; readonly capital: u128; } - /** @name PalletDemocracyVotePriorLock (537) */ + /** @name PalletDemocracyVotePriorLock (569) */ interface PalletDemocracyVotePriorLock extends ITuple<[u32, u128]> {} - /** @name PalletDemocracyError (540) */ + /** @name PalletDemocracyError (572) */ interface PalletDemocracyError extends Enum { readonly isValueLow: boolean; readonly isProposalMissing: boolean; @@ -6154,30 +6570,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 (541) */ + /** @name OrmlOracleModuleTimestampedValue (573) */ interface OrmlOracleModuleTimestampedValue extends Struct { readonly value: u128; readonly timestamp: u64; } - /** @name OrmlUtilitiesOrderedSet (542) */ + /** @name OrmlUtilitiesOrderedSet (574) */ interface OrmlUtilitiesOrderedSet extends Vec {} - /** @name OrmlOracleModuleError (544) */ + /** @name OrmlOracleModuleError (576) */ interface OrmlOracleModuleError extends Enum { readonly isNoPermission: boolean; readonly isAlreadyFeeded: boolean; readonly type: 'NoPermission' | 'AlreadyFeeded'; } - /** @name OrmlTraitsAuctionAuctionInfo (547) */ + /** @name OrmlTraitsAuctionAuctionInfo (579) */ interface OrmlTraitsAuctionAuctionInfo extends Struct { readonly bid: Option>; readonly start: u32; readonly end: Option; } - /** @name OrmlAuctionModuleError (548) */ + /** @name OrmlAuctionModuleError (580) */ interface OrmlAuctionModuleError extends Enum { readonly isAuctionNotExist: boolean; readonly isAuctionNotStarted: boolean; @@ -6187,21 +6603,22 @@ declare module '@polkadot/types/lookup' { readonly type: 'AuctionNotExist' | 'AuctionNotStarted' | 'BidNotAccepted' | 'InvalidBidPrice' | 'NoAvailableAuctionId'; } - /** @name OrmlRewardsPoolInfo (549) */ + /** @name OrmlRewardsPoolInfo (581) */ interface OrmlRewardsPoolInfo extends Struct { readonly totalShares: u128; readonly rewards: BTreeMap>; } - /** @name OrmlRewardsModuleError (557) */ + /** @name OrmlRewardsModuleError (589) */ interface OrmlRewardsModuleError extends Enum { readonly isPoolDoesNotExist: boolean; readonly isShareDoesNotExist: boolean; readonly isCanSplitOnlyLessThanShare: boolean; - readonly type: 'PoolDoesNotExist' | 'ShareDoesNotExist' | 'CanSplitOnlyLessThanShare'; + readonly isShareBelowMinimal: boolean; + readonly type: 'PoolDoesNotExist' | 'ShareDoesNotExist' | 'CanSplitOnlyLessThanShare' | 'ShareBelowMinimal'; } - /** @name OrmlNftClassInfo (558) */ + /** @name OrmlNftClassInfo (590) */ interface OrmlNftClassInfo extends Struct { readonly metadata: Bytes; readonly totalIssuance: u64; @@ -6209,27 +6626,27 @@ declare module '@polkadot/types/lookup' { readonly data: ModuleNftClassData; } - /** @name ModuleNftClassData (559) */ + /** @name ModuleNftClassData (591) */ interface ModuleNftClassData extends Struct { readonly deposit: u128; readonly properties: u8; readonly attributes: BTreeMap; } - /** @name OrmlNftTokenInfo (560) */ + /** @name OrmlNftTokenInfo (593) */ interface OrmlNftTokenInfo extends Struct { readonly metadata: Bytes; readonly owner: AccountId32; readonly data: ModuleNftTokenData; } - /** @name ModuleNftTokenData (561) */ + /** @name ModuleNftTokenData (594) */ interface ModuleNftTokenData extends Struct { readonly deposit: u128; readonly attributes: BTreeMap; } - /** @name OrmlNftModuleError (563) */ + /** @name OrmlNftModuleError (596) */ interface OrmlNftModuleError extends Enum { readonly isNoAvailableClassId: boolean; readonly isNoAvailableTokenId: boolean; @@ -6241,44 +6658,44 @@ declare module '@polkadot/types/lookup' { readonly type: 'NoAvailableClassId' | 'NoAvailableTokenId' | 'TokenNotFound' | 'ClassNotFound' | 'NoPermission' | 'CannotDestroyClass' | 'MaxMetadataExceeded'; } - /** @name AcalaRuntimeRuntimeParametersKey (564) */ + /** @name AcalaRuntimeRuntimeParametersKey (597) */ interface AcalaRuntimeRuntimeParametersKey extends Enum { readonly isEarning: boolean; readonly asEarning: ModuleEarningParametersKey; readonly type: 'Earning'; } - /** @name ModuleEarningParametersKey (565) */ + /** @name ModuleEarningParametersKey (598) */ interface ModuleEarningParametersKey extends Enum { readonly isInstantUnstakeFee: boolean; readonly type: 'InstantUnstakeFee'; } - /** @name AcalaRuntimeRuntimeParametersValue (566) */ + /** @name AcalaRuntimeRuntimeParametersValue (599) */ interface AcalaRuntimeRuntimeParametersValue extends Enum { readonly isEarning: boolean; readonly asEarning: ModuleEarningParametersValue; readonly type: 'Earning'; } - /** @name ModuleEarningParametersValue (567) */ + /** @name ModuleEarningParametersValue (600) */ interface ModuleEarningParametersValue extends Enum { readonly isInstantUnstakeFee: boolean; readonly asInstantUnstakeFee: Permill; readonly type: 'InstantUnstakeFee'; } - /** @name OrmlParametersModuleError (568) */ + /** @name OrmlParametersModuleError (601) */ type OrmlParametersModuleError = Null; - /** @name ModulePricesModuleError (569) */ + /** @name ModulePricesModuleError (602) */ interface ModulePricesModuleError extends Enum { readonly isAccessPriceFailed: boolean; readonly isNoLockedPrice: boolean; readonly type: 'AccessPriceFailed' | 'NoLockedPrice'; } - /** @name ModuleDexTradingPairStatus (570) */ + /** @name ModuleDexTradingPairStatus (603) */ interface ModuleDexTradingPairStatus extends Enum { readonly isDisabled: boolean; readonly isProvisioning: boolean; @@ -6287,7 +6704,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'Disabled' | 'Provisioning' | 'Enabled'; } - /** @name ModuleDexProvisioningParameters (571) */ + /** @name ModuleDexProvisioningParameters (604) */ interface ModuleDexProvisioningParameters extends Struct { readonly minContribution: ITuple<[u128, u128]>; readonly targetProvision: ITuple<[u128, u128]>; @@ -6295,7 +6712,7 @@ declare module '@polkadot/types/lookup' { readonly notBefore: u32; } - /** @name ModuleDexModuleError (574) */ + /** @name ModuleDexModuleError (607) */ interface ModuleDexModuleError extends Enum { readonly isAlreadyEnabled: boolean; readonly isMustBeEnabled: boolean; @@ -6323,7 +6740,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 (579) */ + /** @name ModuleDexOracleModuleError (612) */ interface ModuleDexOracleModuleError extends Enum { readonly isAveragePriceAlreadyEnabled: boolean; readonly isAveragePriceMustBeEnabled: boolean; @@ -6333,7 +6750,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'AveragePriceAlreadyEnabled' | 'AveragePriceMustBeEnabled' | 'InvalidPool' | 'InvalidCurrencyId' | 'IntervalIsZero'; } - /** @name ModuleAggregatedDexModuleError (582) */ + /** @name ModuleAggregatedDexModuleError (615) */ interface ModuleAggregatedDexModuleError extends Enum { readonly isCannotSwap: boolean; readonly isInvalidPoolId: boolean; @@ -6342,20 +6759,20 @@ declare module '@polkadot/types/lookup' { readonly type: 'CannotSwap' | 'InvalidPoolId' | 'InvalidTokenIndex' | 'InvalidSwapPath'; } - /** @name AcalaPrimitivesBondingLedgerBondingLedger (583) */ + /** @name AcalaPrimitivesBondingLedgerBondingLedger (616) */ interface AcalaPrimitivesBondingLedgerBondingLedger extends Struct { readonly total: u128; readonly active: u128; readonly unlocking: Vec; } - /** @name AcalaPrimitivesBondingLedgerUnlockChunk (585) */ + /** @name AcalaPrimitivesBondingLedgerUnlockChunk (618) */ interface AcalaPrimitivesBondingLedgerUnlockChunk extends Struct { readonly value: u128; readonly unlockAt: u32; } - /** @name ModuleEarningModuleError (587) */ + /** @name ModuleEarningModuleError (620) */ interface ModuleEarningModuleError extends Enum { readonly isBelowMinBondThreshold: boolean; readonly isMaxUnlockChunksExceeded: boolean; @@ -6364,7 +6781,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'BelowMinBondThreshold' | 'MaxUnlockChunksExceeded' | 'NotBonded' | 'NotAllowed'; } - /** @name ModuleAuctionManagerCollateralAuctionItem (588) */ + /** @name ModuleAuctionManagerCollateralAuctionItem (621) */ interface ModuleAuctionManagerCollateralAuctionItem extends Struct { readonly refundRecipient: AccountId32; readonly currencyId: AcalaPrimitivesCurrencyCurrencyId; @@ -6374,7 +6791,7 @@ declare module '@polkadot/types/lookup' { readonly startTime: u32; } - /** @name ModuleAuctionManagerModuleError (589) */ + /** @name ModuleAuctionManagerModuleError (622) */ interface ModuleAuctionManagerModuleError extends Enum { readonly isAuctionNotExists: boolean; readonly isInReverseStage: boolean; @@ -6385,19 +6802,19 @@ declare module '@polkadot/types/lookup' { readonly type: 'AuctionNotExists' | 'InReverseStage' | 'InvalidFeedPrice' | 'MustAfterShutdown' | 'InvalidBidPrice' | 'InvalidAmount'; } - /** @name AcalaPrimitivesPosition (591) */ + /** @name AcalaPrimitivesPosition (624) */ interface AcalaPrimitivesPosition extends Struct { readonly collateral: u128; readonly debit: u128; } - /** @name ModuleLoansModuleError (592) */ + /** @name ModuleLoansModuleError (625) */ interface ModuleLoansModuleError extends Enum { readonly isAmountConvertFailed: boolean; readonly type: 'AmountConvertFailed'; } - /** @name ModuleHonzonModuleError (594) */ + /** @name ModuleHonzonModuleError (627) */ interface ModuleHonzonModuleError extends Enum { readonly isNoPermission: boolean; readonly isAlreadyShutdown: boolean; @@ -6406,7 +6823,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NoPermission' | 'AlreadyShutdown' | 'AuthorizationNotExists' | 'AlreadyAuthorized'; } - /** @name ModuleCdpTreasuryModuleError (595) */ + /** @name ModuleCdpTreasuryModuleError (628) */ interface ModuleCdpTreasuryModuleError extends Enum { readonly isCollateralNotEnough: boolean; readonly isSurplusPoolNotEnough: boolean; @@ -6416,7 +6833,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'CollateralNotEnough' | 'SurplusPoolNotEnough' | 'DebitPoolNotEnough' | 'CannotSwap' | 'NotDexShare'; } - /** @name ModuleCdpEngineRiskManagementParams (596) */ + /** @name ModuleCdpEngineRiskManagementParams (629) */ interface ModuleCdpEngineRiskManagementParams extends Struct { readonly maximumTotalDebitValue: u128; readonly interestRatePerSec: Option; @@ -6425,7 +6842,7 @@ declare module '@polkadot/types/lookup' { readonly requiredCollateralRatio: Option; } - /** @name ModuleCdpEngineModuleError (601) */ + /** @name ModuleCdpEngineModuleError (634) */ interface ModuleCdpEngineModuleError extends Enum { readonly isExceedDebitValueHardCap: boolean; readonly isBelowRequiredCollateralRatio: boolean; @@ -6449,7 +6866,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 (602) */ + /** @name ModuleEmergencyShutdownModuleError (635) */ interface ModuleEmergencyShutdownModuleError extends Enum { readonly isAlreadyShutdown: boolean; readonly isMustAfterShutdown: boolean; @@ -6459,13 +6876,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'AlreadyShutdown' | 'MustAfterShutdown' | 'CanNotRefund' | 'ExistPotentialSurplus' | 'ExistUnhandledDebit'; } - /** @name ModuleHomaModuleStakingLedger (603) */ + /** @name ModuleHomaModuleStakingLedger (636) */ interface ModuleHomaModuleStakingLedger extends Struct { readonly bonded: Compact; readonly unlocking: Vec; } - /** @name ModuleHomaModuleError (607) */ + /** @name ModuleHomaModuleError (640) */ interface ModuleHomaModuleError extends Enum { readonly isBelowMintThreshold: boolean; readonly isBelowRedeemThreshold: boolean; @@ -6479,13 +6896,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'BelowMintThreshold' | 'BelowRedeemThreshold' | 'ExceededStakingCurrencySoftCap' | 'InsufficientUnclaimedRedemption' | 'OutdatedEraIndex' | 'FastMatchIsNotAllowed' | 'CannotCompletelyFastMatch' | 'InvalidRate' | 'InvalidLastEraBumpedBlock'; } - /** @name ModuleXcmInterfaceModuleError (609) */ + /** @name ModuleXcmInterfaceModuleError (642) */ interface ModuleXcmInterfaceModuleError extends Enum { readonly isXcmFailed: boolean; readonly type: 'XcmFailed'; } - /** @name ModuleIncentivesModuleError (611) */ + /** @name ModuleIncentivesModuleError (644) */ interface ModuleIncentivesModuleError extends Enum { readonly isNotEnough: boolean; readonly isInvalidCurrencyId: boolean; @@ -6494,7 +6911,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'NotEnough' | 'InvalidCurrencyId' | 'InvalidPoolId' | 'InvalidRate'; } - /** @name ModuleNftModuleError (612) */ + /** @name ModuleNftModuleError (645) */ interface ModuleNftModuleError extends Enum { readonly isClassIdNotFound: boolean; readonly isTokenIdNotFound: boolean; @@ -6510,35 +6927,35 @@ declare module '@polkadot/types/lookup' { readonly type: 'ClassIdNotFound' | 'TokenIdNotFound' | 'NoPermission' | 'InvalidQuantity' | 'NonTransferable' | 'NonBurnable' | 'NonMintable' | 'CannotDestroyClass' | 'Immutable' | 'AttributesTooLarge' | 'IncorrectTokenId'; } - /** @name ModuleAssetRegistryModuleError (613) */ + /** @name ModuleAssetRegistryModuleError (646) */ interface ModuleAssetRegistryModuleError extends Enum { readonly isBadLocation: boolean; - readonly isMultiLocationExisted: boolean; + readonly isLocationExisted: boolean; readonly isAssetIdNotExists: boolean; readonly isAssetIdExisted: boolean; - readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted'; + readonly type: 'BadLocation' | 'LocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted'; } - /** @name ModuleEvmModuleAccountInfo (614) */ + /** @name ModuleEvmModuleAccountInfo (647) */ interface ModuleEvmModuleAccountInfo extends Struct { readonly nonce: u32; readonly contractInfo: Option; } - /** @name ModuleEvmModuleContractInfo (616) */ + /** @name ModuleEvmModuleContractInfo (649) */ interface ModuleEvmModuleContractInfo extends Struct { readonly codeHash: H256; readonly maintainer: H160; readonly published: bool; } - /** @name ModuleEvmModuleCodeInfo (619) */ + /** @name ModuleEvmModuleCodeInfo (652) */ interface ModuleEvmModuleCodeInfo extends Struct { readonly codeSize: u32; readonly refCount: u32; } - /** @name ModuleEvmModuleError (620) */ + /** @name ModuleEvmModuleError (653) */ interface ModuleEvmModuleError extends Enum { readonly isAddressNotMapped: boolean; readonly isContractNotFound: boolean; @@ -6560,7 +6977,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 (621) */ + /** @name ModuleEvmBridgeModuleError (654) */ interface ModuleEvmBridgeModuleError extends Enum { readonly isExecutionFail: boolean; readonly isExecutionRevert: boolean; @@ -6570,7 +6987,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'ExecutionFail' | 'ExecutionRevert' | 'ExecutionFatal' | 'ExecutionError' | 'InvalidReturnValue'; } - /** @name ModuleEvmAccountsModuleError (622) */ + /** @name ModuleEvmAccountsModuleError (655) */ interface ModuleEvmAccountsModuleError extends Enum { readonly isAccountIdHasMapped: boolean; readonly isEthAddressHasMapped: boolean; @@ -6580,7 +6997,7 @@ declare module '@polkadot/types/lookup' { readonly type: 'AccountIdHasMapped' | 'EthAddressHasMapped' | 'BadSignature' | 'InvalidSignature' | 'NonZeroRefCount'; } - /** @name NutsfinanceStableAssetStableAssetPoolInfo (623) */ + /** @name NutsfinanceStableAssetStableAssetPoolInfo (656) */ interface NutsfinanceStableAssetStableAssetPoolInfo extends Struct { readonly poolAsset: AcalaPrimitivesCurrencyCurrencyId; readonly assets: Vec; @@ -6600,7 +7017,7 @@ declare module '@polkadot/types/lookup' { readonly precision: u128; } - /** @name NutsfinanceStableAssetError (624) */ + /** @name NutsfinanceStableAssetError (657) */ interface NutsfinanceStableAssetError extends Enum { readonly isInconsistentStorage: boolean; readonly isInvalidPoolAsset: boolean; @@ -6616,47 +7033,47 @@ declare module '@polkadot/types/lookup' { readonly type: 'InconsistentStorage' | 'InvalidPoolAsset' | 'ArgumentsMismatch' | 'ArgumentsError' | 'PoolNotFound' | 'Math' | 'InvalidPoolValue' | 'MintUnderMin' | 'SwapUnderMin' | 'RedeemUnderMin' | 'RedeemOverMax'; } - /** @name CumulusPalletParachainSystemUnincludedSegmentAncestor (626) */ + /** @name CumulusPalletParachainSystemUnincludedSegmentAncestor (659) */ interface CumulusPalletParachainSystemUnincludedSegmentAncestor extends Struct { readonly usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth; readonly paraHeadHash: Option; readonly consumedGoAheadSignal: Option; } - /** @name CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth (627) */ + /** @name CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth (660) */ interface CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth extends Struct { readonly umpMsgCount: u32; readonly umpTotalBytes: u32; readonly hrmpOutgoing: BTreeMap; } - /** @name CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate (629) */ + /** @name CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate (662) */ interface CumulusPalletParachainSystemUnincludedSegmentHrmpChannelUpdate extends Struct { readonly msgCount: u32; readonly totalBytes: u32; } - /** @name PolkadotPrimitivesV6UpgradeGoAhead (633) */ + /** @name PolkadotPrimitivesV6UpgradeGoAhead (666) */ interface PolkadotPrimitivesV6UpgradeGoAhead extends Enum { readonly isAbort: boolean; readonly isGoAhead: boolean; readonly type: 'Abort' | 'GoAhead'; } - /** @name CumulusPalletParachainSystemUnincludedSegmentSegmentTracker (634) */ + /** @name CumulusPalletParachainSystemUnincludedSegmentSegmentTracker (667) */ interface CumulusPalletParachainSystemUnincludedSegmentSegmentTracker extends Struct { readonly usedBandwidth: CumulusPalletParachainSystemUnincludedSegmentUsedBandwidth; readonly hrmpWatermark: Option; readonly consumedGoAheadSignal: Option; } - /** @name PolkadotPrimitivesV6UpgradeRestriction (636) */ + /** @name PolkadotPrimitivesV6UpgradeRestriction (669) */ interface PolkadotPrimitivesV6UpgradeRestriction extends Enum { readonly isPresent: boolean; readonly type: 'Present'; } - /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (637) */ + /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (670) */ interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct { readonly dmqMqcHead: H256; readonly relayDispatchQueueRemainingCapacity: CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity; @@ -6664,13 +7081,13 @@ declare module '@polkadot/types/lookup' { readonly egressChannels: Vec>; } - /** @name CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity (638) */ + /** @name CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity (671) */ interface CumulusPalletParachainSystemRelayStateSnapshotRelayDispatchQueueRemainingCapacity extends Struct { readonly remainingCount: u32; readonly remainingSize: u32; } - /** @name PolkadotPrimitivesV6AbridgedHrmpChannel (641) */ + /** @name PolkadotPrimitivesV6AbridgedHrmpChannel (674) */ interface PolkadotPrimitivesV6AbridgedHrmpChannel extends Struct { readonly maxCapacity: u32; readonly maxTotalSize: u32; @@ -6680,7 +7097,7 @@ declare module '@polkadot/types/lookup' { readonly mqcHead: Option; } - /** @name PolkadotPrimitivesV6AbridgedHostConfiguration (642) */ + /** @name PolkadotPrimitivesV6AbridgedHostConfiguration (675) */ interface PolkadotPrimitivesV6AbridgedHostConfiguration extends Struct { readonly maxCodeSize: u32; readonly maxHeadDataSize: u32; @@ -6694,19 +7111,19 @@ declare module '@polkadot/types/lookup' { readonly asyncBackingParams: PolkadotPrimitivesV6AsyncBackingAsyncBackingParams; } - /** @name PolkadotPrimitivesV6AsyncBackingAsyncBackingParams (643) */ + /** @name PolkadotPrimitivesV6AsyncBackingAsyncBackingParams (676) */ interface PolkadotPrimitivesV6AsyncBackingAsyncBackingParams extends Struct { readonly maxCandidateDepth: u32; readonly allowedAncestryLen: u32; } - /** @name PolkadotCorePrimitivesOutboundHrmpMessage (649) */ + /** @name PolkadotCorePrimitivesOutboundHrmpMessage (682) */ interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct { readonly recipient: u32; readonly data: Bytes; } - /** @name CumulusPalletParachainSystemError (650) */ + /** @name CumulusPalletParachainSystemError (683) */ interface CumulusPalletParachainSystemError extends Enum { readonly isOverlappingUpgrades: boolean; readonly isProhibitedByPolkadot: boolean; @@ -6719,45 +7136,45 @@ declare module '@polkadot/types/lookup' { readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized'; } - /** @name PalletSudoError (651) */ + /** @name PalletSudoError (684) */ interface PalletSudoError extends Enum { readonly isRequireSudo: boolean; readonly type: 'RequireSudo'; } - /** @name FrameSystemExtensionsCheckNonZeroSender (654) */ + /** @name FrameSystemExtensionsCheckNonZeroSender (687) */ type FrameSystemExtensionsCheckNonZeroSender = Null; - /** @name FrameSystemExtensionsCheckSpecVersion (655) */ + /** @name FrameSystemExtensionsCheckSpecVersion (688) */ type FrameSystemExtensionsCheckSpecVersion = Null; - /** @name FrameSystemExtensionsCheckTxVersion (656) */ + /** @name FrameSystemExtensionsCheckTxVersion (689) */ type FrameSystemExtensionsCheckTxVersion = Null; - /** @name FrameSystemExtensionsCheckGenesis (657) */ + /** @name FrameSystemExtensionsCheckGenesis (690) */ type FrameSystemExtensionsCheckGenesis = Null; - /** @name RuntimeCommonCheckNonce (660) */ + /** @name RuntimeCommonCheckNonce (693) */ interface RuntimeCommonCheckNonce extends Struct { readonly nonce: Compact; } - /** @name FrameSystemExtensionsCheckWeight (661) */ + /** @name FrameSystemExtensionsCheckWeight (694) */ type FrameSystemExtensionsCheckWeight = Null; - /** @name ModuleEvmSetEvmOrigin (662) */ + /** @name ModuleEvmSetEvmOrigin (695) */ type ModuleEvmSetEvmOrigin = Null; - /** @name ModuleTransactionPaymentChargeTransactionPayment (663) */ + /** @name ModuleTransactionPaymentChargeTransactionPayment (696) */ interface ModuleTransactionPaymentChargeTransactionPayment extends Compact {} - /** @name AcalaRuntimeStorageDepositPerByte (664) */ + /** @name AcalaRuntimeStorageDepositPerByte (697) */ type AcalaRuntimeStorageDepositPerByte = Null; - /** @name AcalaRuntimeTxFeePerGas (665) */ + /** @name AcalaRuntimeTxFeePerGas (698) */ type AcalaRuntimeTxFeePerGas = Null; - /** @name AcalaPrimitivesSignatureAcalaMultiSignature (667) */ + /** @name AcalaPrimitivesSignatureAcalaMultiSignature (700) */ interface AcalaPrimitivesSignatureAcalaMultiSignature extends Enum { readonly isEd25519: boolean; readonly asEd25519: SpCoreEd25519Signature; @@ -6776,13 +7193,13 @@ declare module '@polkadot/types/lookup' { readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa' | 'Ethereum' | 'Eip1559' | 'AcalaEip712' | 'Eip2930'; } - /** @name SpCoreEd25519Signature (668) */ + /** @name SpCoreEd25519Signature (701) */ interface SpCoreEd25519Signature extends U8aFixed {} - /** @name SpCoreSr25519Signature (670) */ + /** @name SpCoreSr25519Signature (703) */ interface SpCoreSr25519Signature extends U8aFixed {} - /** @name SpCoreEcdsaSignature (671) */ + /** @name SpCoreEcdsaSignature (704) */ interface SpCoreEcdsaSignature extends U8aFixed {} } // declare module