difftreelog
fix regenerate types
in: master
11 files changed
tests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -46,6 +46,22 @@
**/
[key: string]: Codec;
};
+ scheduler: {
+ /**
+ * The maximum weight that may be scheduled per block for any dispatchables of less
+ * priority than `schedule::HARD_DEADLINE`.
+ **/
+ maximumWeight: u64 & AugmentedConst<ApiType>;
+ /**
+ * The maximum number of scheduled calls in the queue for a single block.
+ * Not strictly enforced, but used for weight estimation.
+ **/
+ maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
+ /**
+ * Generic const
+ **/
+ [key: string]: Codec;
+ };
system: {
/**
* Maximum number of block number to block hash mappings to keep (oldest pruned first).
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -478,6 +478,28 @@
**/
[key: string]: AugmentedError<ApiType>;
};
+ scheduler: {
+ /**
+ * Failed to schedule a call
+ **/
+ FailedToSchedule: AugmentedError<ApiType>;
+ /**
+ * Cannot find the scheduled call.
+ **/
+ NotFound: AugmentedError<ApiType>;
+ /**
+ * Reschedule failed because it does not change scheduled time.
+ **/
+ RescheduleNoChange: AugmentedError<ApiType>;
+ /**
+ * Given target block number is in the past.
+ **/
+ TargetBlockNumberInPast: AugmentedError<ApiType>;
+ /**
+ * Generic error
+ **/
+ [key: string]: AugmentedError<ApiType>;
+ };
structure: {
/**
* While searched for owner, encountered depth limit
@@ -550,6 +572,10 @@
**/
InvalidIndex: AugmentedError<ApiType>;
/**
+ * Proposal has not been approved.
+ **/
+ ProposalNotApproved: AugmentedError<ApiType>;
+ /**
* Too many approvals in the queue.
**/
TooManyApprovals: AugmentedError<ApiType>;
tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -3,8 +3,9 @@
import type { ApiTypes } from '@polkadot/api-base/types';
import type { Bytes, Null, Option, Result, U256, U8aFixed, bool, u128, 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 { EthereumLog, EvmCoreErrorExitReason, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
+import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
declare module '@polkadot/api-base/types/events' {
export interface AugmentedEvents<ApiType extends ApiTypes> {
@@ -424,6 +425,28 @@
**/
[key: string]: AugmentedEvent<ApiType>;
};
+ scheduler: {
+ /**
+ * The call for the provided hash was not found so the task has been aborted.
+ **/
+ CallLookupFailed: AugmentedEvent<ApiType, [ITuple<[u32, u32]>, Option<U8aFixed>, FrameSupportScheduleLookupError]>;
+ /**
+ * Canceled some task.
+ **/
+ Canceled: AugmentedEvent<ApiType, [u32, u32]>;
+ /**
+ * Dispatched some task.
+ **/
+ Dispatched: AugmentedEvent<ApiType, [ITuple<[u32, u32]>, Option<U8aFixed>, Result<Null, SpRuntimeDispatchError>]>;
+ /**
+ * Scheduled some task.
+ **/
+ Scheduled: AugmentedEvent<ApiType, [u32, u32]>;
+ /**
+ * Generic event
+ **/
+ [key: string]: AugmentedEvent<ApiType>;
+ };
structure: {
/**
* Executed call on behalf of token
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -2,10 +2,10 @@
/* eslint-disable */
import type { ApiTypes } from '@polkadot/api-base/types';
-import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
+import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsTokenChild } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUnqSchedulerScheduledV3, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsTokenChild } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
declare module '@polkadot/api-base/types/storage' {
@@ -432,6 +432,20 @@
**/
[key: string]: QueryableStorageEntry<ApiType>;
};
+ scheduler: {
+ /**
+ * Items to be executed, indexed by the block number that they should be executed on.
+ **/
+ agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<Option<PalletUnqSchedulerScheduledV3>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
+ /**
+ * Lookup from identity to the block number and index of the task.
+ **/
+ lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
+ /**
+ * Generic query
+ **/
+ [key: string]: QueryableStorageEntry<ApiType>;
+ };
structure: {
/**
* Generic query
tests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-rpc.ts
+++ b/tests/src/interfaces/augment-api-rpc.ts
@@ -1,7 +1,7 @@
// Auto-generated via `yarn polkadot-types-from-chain`, do not edit
/* eslint-disable */
-import type { PalletEvmAccountBasicCrossAccountIdRepr, UpDataStructsCollectionLimits, UpDataStructsCollectionStats, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRpcCollection, UpDataStructsTokenChild, UpDataStructsTokenData } from './default';
+import type { PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsPartPartType, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionStats, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRpcCollection, UpDataStructsTokenChild, UpDataStructsTokenData } from './default';
import type { AugmentedRpc } from '@polkadot/rpc-core/types';
import type { Metadata, StorageKey } from '@polkadot/types';
import type { Bytes, HashMap, Json, Null, Option, Text, U256, U64, Vec, bool, u128, u32, u64 } from '@polkadot/types-codec';
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -2,10 +2,10 @@
/* eslint-disable */
import type { ApiTypes } from '@polkadot/api-base/types';
-import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
+import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, 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, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, FrameSupportScheduleMaybeHashed, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/api-base/types/submittable' {
export interface AugmentedSubmittables<ApiType extends ApiTypes> {
@@ -377,6 +377,28 @@
**/
[key: string]: SubmittableExtrinsicFunction<ApiType>;
};
+ scheduler: {
+ /**
+ * Cancel a named scheduled task.
+ **/
+ cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
+ /**
+ * Schedule a named task.
+ **/
+ scheduleNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | object | string | Uint8Array, priority: u8 | AnyNumber | Uint8Array, call: FrameSupportScheduleMaybeHashed | { Value: any } | { Hash: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, FrameSupportScheduleMaybeHashed]>;
+ /**
+ * Schedule a named task after a delay.
+ *
+ * # <weight>
+ * Same as [`schedule_named`](Self::schedule_named).
+ * # </weight>
+ **/
+ scheduleNamedAfter: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | object | string | Uint8Array, priority: u8 | AnyNumber | Uint8Array, call: FrameSupportScheduleMaybeHashed | { Value: any } | { Hash: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, FrameSupportScheduleMaybeHashed]>;
+ /**
+ * Generic tx
+ **/
+ [key: string]: SubmittableExtrinsicFunction<ApiType>;
+ };
structure: {
/**
* Generic tx
@@ -574,6 +596,24 @@
**/
rejectProposal: AugmentedSubmittable<(proposalId: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>]>;
/**
+ * Force a previously approved proposal to be removed from the approval queue.
+ * The original deposit will no longer be returned.
+ *
+ * May only be called from `T::RejectOrigin`.
+ * - `proposal_id`: The index of a proposal
+ *
+ * # <weight>
+ * - Complexity: O(A) where `A` is the number of approvals
+ * - Db reads and writes: `Approvals`
+ * # </weight>
+ *
+ * Errors:
+ * - `ProposalNotApproved`: The `proposal_id` supplied was not found in the approval queue,
+ * i.e., the proposal has not been approved. This could also mean the proposal does not
+ * exist altogether, thus there is no way it would have been approved in the first place.
+ **/
+ removeApproval: AugmentedSubmittable<(proposalId: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>]>;
+ /**
* Generic tx
**/
[key: string]: SubmittableExtrinsicFunction<ApiType>;
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -1,7 +1,7 @@
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRmrkAccountIdOrCollectionNftTuple, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkBasicResource, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkComposableResource, UpDataStructsRmrkEquippableList, UpDataStructsRmrkFixedPart, UpDataStructsRmrkNftChild, UpDataStructsRmrkNftInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkResourceTypes, UpDataStructsRmrkRoyaltyInfo, UpDataStructsRmrkSlotPart, UpDataStructsRmrkSlotResource, UpDataStructsRmrkTheme, UpDataStructsRmrkThemeProperty, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUnqSchedulerCall, PalletUnqSchedulerError, PalletUnqSchedulerEvent, PalletUnqSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
import type { Data, StorageKey } from '@polkadot/types';
import type { BitVec, Bool, Bytes, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
@@ -18,7 +18,7 @@
import type { StatementKind } from '@polkadot/types/interfaces/claims';
import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';
import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';
-import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultErr, ContractExecResultErrModule, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';
+import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';
import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';
import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';
import type { ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';
@@ -54,7 +54,7 @@
import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';
import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';
import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';
-import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModuleU8a, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';
+import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, TransactionalError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';
import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';
import type { Multiplier } from '@polkadot/types/interfaces/txpayment';
import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';
@@ -241,8 +241,6 @@
ContractEventSpecV1: ContractEventSpecV1;
ContractEventSpecV2: ContractEventSpecV2;
ContractExecResult: ContractExecResult;
- ContractExecResultErr: ContractExecResultErr;
- ContractExecResultErrModule: ContractExecResultErrModule;
ContractExecResultOk: ContractExecResultOk;
ContractExecResultResult: ContractExecResultResult;
ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;
@@ -303,6 +301,7 @@
CumulusPalletXcmCall: CumulusPalletXcmCall;
CumulusPalletXcmError: CumulusPalletXcmError;
CumulusPalletXcmEvent: CumulusPalletXcmEvent;
+ CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
@@ -329,6 +328,7 @@
DispatchClass: DispatchClass;
DispatchError: DispatchError;
DispatchErrorModule: DispatchErrorModule;
+ DispatchErrorModuleU8: DispatchErrorModuleU8;
DispatchErrorModuleU8a: DispatchErrorModuleU8a;
DispatchErrorTo198: DispatchErrorTo198;
DispatchFeePayment: DispatchFeePayment;
@@ -477,7 +477,10 @@
ForkTreePendingChange: ForkTreePendingChange;
ForkTreePendingChangeNode: ForkTreePendingChangeNode;
FpRpcTransactionStatus: FpRpcTransactionStatus;
+ FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
FrameSupportPalletId: FrameSupportPalletId;
+ FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;
+ FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;
FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;
FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
@@ -717,6 +720,7 @@
OffchainAccuracyCompact: OffchainAccuracyCompact;
OffenceDetails: OffenceDetails;
Offender: Offender;
+ OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
OpalRuntimeRuntime: OpalRuntimeRuntime;
OpaqueCall: OpaqueCall;
OpaqueMultiaddr: OpaqueMultiaddr;
@@ -768,6 +772,7 @@
PalletEthereumError: PalletEthereumError;
PalletEthereumEvent: PalletEthereumEvent;
PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
+ PalletEthereumRawOrigin: PalletEthereumRawOrigin;
PalletEventMetadataLatest: PalletEventMetadataLatest;
PalletEventMetadataV14: PalletEventMetadataV14;
PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
@@ -814,10 +819,15 @@
PalletUniqueCall: PalletUniqueCall;
PalletUniqueError: PalletUniqueError;
PalletUniqueRawEvent: PalletUniqueRawEvent;
+ PalletUnqSchedulerCall: PalletUnqSchedulerCall;
+ PalletUnqSchedulerError: PalletUnqSchedulerError;
+ PalletUnqSchedulerEvent: PalletUnqSchedulerEvent;
+ PalletUnqSchedulerScheduledV3: PalletUnqSchedulerScheduledV3;
PalletVersion: PalletVersion;
PalletXcmCall: PalletXcmCall;
PalletXcmError: PalletXcmError;
PalletXcmEvent: PalletXcmEvent;
+ PalletXcmOrigin: PalletXcmOrigin;
ParachainDispatchOrigin: ParachainDispatchOrigin;
ParachainInherentData: ParachainInherentData;
ParachainProposal: ParachainProposal;
@@ -1085,6 +1095,7 @@
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
SpCoreEd25519Signature: SpCoreEd25519Signature;
SpCoreSr25519Signature: SpCoreSr25519Signature;
+ SpCoreVoid: SpCoreVoid;
SpecVersion: SpecVersion;
SpRuntimeArithmeticError: SpRuntimeArithmeticError;
SpRuntimeDigest: SpRuntimeDigest;
@@ -1160,6 +1171,7 @@
TombstoneContractInfo: TombstoneContractInfo;
TraceBlockResponse: TraceBlockResponse;
TraceError: TraceError;
+ TransactionalError: TransactionalError;
TransactionInfo: TransactionInfo;
TransactionPriority: TransactionPriority;
TransactionStorageProof: TransactionStorageProof;
tests/src/interfaces/default/types.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';5import type { ITuple } from '@polkadot/types-codec/types';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';7import type { Event } from '@polkadot/types/interfaces/system';89/** @name CumulusPalletDmpQueueCall */10export interface CumulusPalletDmpQueueCall extends Enum {11 readonly isServiceOverweight: boolean;12 readonly asServiceOverweight: {13 readonly index: u64;14 readonly weightLimit: u64;15 } & Struct;16 readonly type: 'ServiceOverweight';17}1819/** @name CumulusPalletDmpQueueConfigData */20export interface CumulusPalletDmpQueueConfigData extends Struct {21 readonly maxIndividual: u64;22}2324/** @name CumulusPalletDmpQueueError */25export interface CumulusPalletDmpQueueError extends Enum {26 readonly isUnknown: boolean;27 readonly isOverLimit: boolean;28 readonly type: 'Unknown' | 'OverLimit';29}3031/** @name CumulusPalletDmpQueueEvent */32export interface CumulusPalletDmpQueueEvent extends Enum {33 readonly isInvalidFormat: boolean;34 readonly asInvalidFormat: U8aFixed;35 readonly isUnsupportedVersion: boolean;36 readonly asUnsupportedVersion: U8aFixed;37 readonly isExecutedDownward: boolean;38 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;39 readonly isWeightExhausted: boolean;40 readonly asWeightExhausted: ITuple<[U8aFixed, u64, u64]>;41 readonly isOverweightEnqueued: boolean;42 readonly asOverweightEnqueued: ITuple<[U8aFixed, u64, u64]>;43 readonly isOverweightServiced: boolean;44 readonly asOverweightServiced: ITuple<[u64, u64]>;45 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';46}4748/** @name CumulusPalletDmpQueuePageIndexData */49export interface CumulusPalletDmpQueuePageIndexData extends Struct {50 readonly beginUsed: u32;51 readonly endUsed: u32;52 readonly overweightCount: u64;53}5455/** @name CumulusPalletParachainSystemCall */56export interface CumulusPalletParachainSystemCall extends Enum {57 readonly isSetValidationData: boolean;58 readonly asSetValidationData: {59 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;60 } & Struct;61 readonly isSudoSendUpwardMessage: boolean;62 readonly asSudoSendUpwardMessage: {63 readonly message: Bytes;64 } & Struct;65 readonly isAuthorizeUpgrade: boolean;66 readonly asAuthorizeUpgrade: {67 readonly codeHash: H256;68 } & Struct;69 readonly isEnactAuthorizedUpgrade: boolean;70 readonly asEnactAuthorizedUpgrade: {71 readonly code: Bytes;72 } & Struct;73 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';74}7576/** @name CumulusPalletParachainSystemError */77export interface CumulusPalletParachainSystemError extends Enum {78 readonly isOverlappingUpgrades: boolean;79 readonly isProhibitedByPolkadot: boolean;80 readonly isTooBig: boolean;81 readonly isValidationDataNotAvailable: boolean;82 readonly isHostConfigurationNotAvailable: boolean;83 readonly isNotScheduled: boolean;84 readonly isNothingAuthorized: boolean;85 readonly isUnauthorized: boolean;86 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';87}8889/** @name CumulusPalletParachainSystemEvent */90export interface CumulusPalletParachainSystemEvent extends Enum {91 readonly isValidationFunctionStored: boolean;92 readonly isValidationFunctionApplied: boolean;93 readonly asValidationFunctionApplied: u32;94 readonly isValidationFunctionDiscarded: boolean;95 readonly isUpgradeAuthorized: boolean;96 readonly asUpgradeAuthorized: H256;97 readonly isDownwardMessagesReceived: boolean;98 readonly asDownwardMessagesReceived: u32;99 readonly isDownwardMessagesProcessed: boolean;100 readonly asDownwardMessagesProcessed: ITuple<[u64, H256]>;101 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';102}103104/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */105export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {106 readonly dmqMqcHead: H256;107 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;108 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;109 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;110}111112/** @name CumulusPalletXcmCall */113export interface CumulusPalletXcmCall extends Null {}114115/** @name CumulusPalletXcmError */116export interface CumulusPalletXcmError extends Null {}117118/** @name CumulusPalletXcmEvent */119export interface CumulusPalletXcmEvent extends Enum {120 readonly isInvalidFormat: boolean;121 readonly asInvalidFormat: U8aFixed;122 readonly isUnsupportedVersion: boolean;123 readonly asUnsupportedVersion: U8aFixed;124 readonly isExecutedDownward: boolean;125 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;126 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';127}128129/** @name CumulusPalletXcmpQueueCall */130export interface CumulusPalletXcmpQueueCall extends Enum {131 readonly isServiceOverweight: boolean;132 readonly asServiceOverweight: {133 readonly index: u64;134 readonly weightLimit: u64;135 } & Struct;136 readonly isSuspendXcmExecution: boolean;137 readonly isResumeXcmExecution: boolean;138 readonly isUpdateSuspendThreshold: boolean;139 readonly asUpdateSuspendThreshold: {140 readonly new_: u32;141 } & Struct;142 readonly isUpdateDropThreshold: boolean;143 readonly asUpdateDropThreshold: {144 readonly new_: u32;145 } & Struct;146 readonly isUpdateResumeThreshold: boolean;147 readonly asUpdateResumeThreshold: {148 readonly new_: u32;149 } & Struct;150 readonly isUpdateThresholdWeight: boolean;151 readonly asUpdateThresholdWeight: {152 readonly new_: u64;153 } & Struct;154 readonly isUpdateWeightRestrictDecay: boolean;155 readonly asUpdateWeightRestrictDecay: {156 readonly new_: u64;157 } & Struct;158 readonly isUpdateXcmpMaxIndividualWeight: boolean;159 readonly asUpdateXcmpMaxIndividualWeight: {160 readonly new_: u64;161 } & Struct;162 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';163}164165/** @name CumulusPalletXcmpQueueError */166export interface CumulusPalletXcmpQueueError extends Enum {167 readonly isFailedToSend: boolean;168 readonly isBadXcmOrigin: boolean;169 readonly isBadXcm: boolean;170 readonly isBadOverweightIndex: boolean;171 readonly isWeightOverLimit: boolean;172 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';173}174175/** @name CumulusPalletXcmpQueueEvent */176export interface CumulusPalletXcmpQueueEvent extends Enum {177 readonly isSuccess: boolean;178 readonly asSuccess: Option<H256>;179 readonly isFail: boolean;180 readonly asFail: ITuple<[Option<H256>, XcmV2TraitsError]>;181 readonly isBadVersion: boolean;182 readonly asBadVersion: Option<H256>;183 readonly isBadFormat: boolean;184 readonly asBadFormat: Option<H256>;185 readonly isUpwardMessageSent: boolean;186 readonly asUpwardMessageSent: Option<H256>;187 readonly isXcmpMessageSent: boolean;188 readonly asXcmpMessageSent: Option<H256>;189 readonly isOverweightEnqueued: boolean;190 readonly asOverweightEnqueued: ITuple<[u32, u32, u64, u64]>;191 readonly isOverweightServiced: boolean;192 readonly asOverweightServiced: ITuple<[u64, u64]>;193 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';194}195196/** @name CumulusPalletXcmpQueueInboundChannelDetails */197export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {198 readonly sender: u32;199 readonly state: CumulusPalletXcmpQueueInboundState;200 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;201}202203/** @name CumulusPalletXcmpQueueInboundState */204export interface CumulusPalletXcmpQueueInboundState extends Enum {205 readonly isOk: boolean;206 readonly isSuspended: boolean;207 readonly type: 'Ok' | 'Suspended';208}209210/** @name CumulusPalletXcmpQueueOutboundChannelDetails */211export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {212 readonly recipient: u32;213 readonly state: CumulusPalletXcmpQueueOutboundState;214 readonly signalsExist: bool;215 readonly firstIndex: u16;216 readonly lastIndex: u16;217}218219/** @name CumulusPalletXcmpQueueOutboundState */220export interface CumulusPalletXcmpQueueOutboundState extends Enum {221 readonly isOk: boolean;222 readonly isSuspended: boolean;223 readonly type: 'Ok' | 'Suspended';224}225226/** @name CumulusPalletXcmpQueueQueueConfigData */227export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {228 readonly suspendThreshold: u32;229 readonly dropThreshold: u32;230 readonly resumeThreshold: u32;231 readonly thresholdWeight: u64;232 readonly weightRestrictDecay: u64;233 readonly xcmpMaxIndividualWeight: u64;234}235236/** @name CumulusPrimitivesParachainInherentParachainInherentData */237export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {238 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;239 readonly relayChainState: SpTrieStorageProof;240 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;241 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;242}243244/** @name EthbloomBloom */245export interface EthbloomBloom extends U8aFixed {}246247/** @name EthereumBlock */248export interface EthereumBlock extends Struct {249 readonly header: EthereumHeader;250 readonly transactions: Vec<EthereumTransactionTransactionV2>;251 readonly ommers: Vec<EthereumHeader>;252}253254/** @name EthereumHeader */255export interface EthereumHeader extends Struct {256 readonly parentHash: H256;257 readonly ommersHash: H256;258 readonly beneficiary: H160;259 readonly stateRoot: H256;260 readonly transactionsRoot: H256;261 readonly receiptsRoot: H256;262 readonly logsBloom: EthbloomBloom;263 readonly difficulty: U256;264 readonly number: U256;265 readonly gasLimit: U256;266 readonly gasUsed: U256;267 readonly timestamp: u64;268 readonly extraData: Bytes;269 readonly mixHash: H256;270 readonly nonce: EthereumTypesHashH64;271}272273/** @name EthereumLog */274export interface EthereumLog extends Struct {275 readonly address: H160;276 readonly topics: Vec<H256>;277 readonly data: Bytes;278}279280/** @name EthereumReceiptEip658ReceiptData */281export interface EthereumReceiptEip658ReceiptData extends Struct {282 readonly statusCode: u8;283 readonly usedGas: U256;284 readonly logsBloom: EthbloomBloom;285 readonly logs: Vec<EthereumLog>;286}287288/** @name EthereumReceiptReceiptV3 */289export interface EthereumReceiptReceiptV3 extends Enum {290 readonly isLegacy: boolean;291 readonly asLegacy: EthereumReceiptEip658ReceiptData;292 readonly isEip2930: boolean;293 readonly asEip2930: EthereumReceiptEip658ReceiptData;294 readonly isEip1559: boolean;295 readonly asEip1559: EthereumReceiptEip658ReceiptData;296 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';297}298299/** @name EthereumTransactionAccessListItem */300export interface EthereumTransactionAccessListItem extends Struct {301 readonly address: H160;302 readonly storageKeys: Vec<H256>;303}304305/** @name EthereumTransactionEip1559Transaction */306export interface EthereumTransactionEip1559Transaction extends Struct {307 readonly chainId: u64;308 readonly nonce: U256;309 readonly maxPriorityFeePerGas: U256;310 readonly maxFeePerGas: U256;311 readonly gasLimit: U256;312 readonly action: EthereumTransactionTransactionAction;313 readonly value: U256;314 readonly input: Bytes;315 readonly accessList: Vec<EthereumTransactionAccessListItem>;316 readonly oddYParity: bool;317 readonly r: H256;318 readonly s: H256;319}320321/** @name EthereumTransactionEip2930Transaction */322export interface EthereumTransactionEip2930Transaction extends Struct {323 readonly chainId: u64;324 readonly nonce: U256;325 readonly gasPrice: U256;326 readonly gasLimit: U256;327 readonly action: EthereumTransactionTransactionAction;328 readonly value: U256;329 readonly input: Bytes;330 readonly accessList: Vec<EthereumTransactionAccessListItem>;331 readonly oddYParity: bool;332 readonly r: H256;333 readonly s: H256;334}335336/** @name EthereumTransactionLegacyTransaction */337export interface EthereumTransactionLegacyTransaction extends Struct {338 readonly nonce: U256;339 readonly gasPrice: U256;340 readonly gasLimit: U256;341 readonly action: EthereumTransactionTransactionAction;342 readonly value: U256;343 readonly input: Bytes;344 readonly signature: EthereumTransactionTransactionSignature;345}346347/** @name EthereumTransactionTransactionAction */348export interface EthereumTransactionTransactionAction extends Enum {349 readonly isCall: boolean;350 readonly asCall: H160;351 readonly isCreate: boolean;352 readonly type: 'Call' | 'Create';353}354355/** @name EthereumTransactionTransactionSignature */356export interface EthereumTransactionTransactionSignature extends Struct {357 readonly v: u64;358 readonly r: H256;359 readonly s: H256;360}361362/** @name EthereumTransactionTransactionV2 */363export interface EthereumTransactionTransactionV2 extends Enum {364 readonly isLegacy: boolean;365 readonly asLegacy: EthereumTransactionLegacyTransaction;366 readonly isEip2930: boolean;367 readonly asEip2930: EthereumTransactionEip2930Transaction;368 readonly isEip1559: boolean;369 readonly asEip1559: EthereumTransactionEip1559Transaction;370 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';371}372373/** @name EthereumTypesHashH64 */374export interface EthereumTypesHashH64 extends U8aFixed {}375376/** @name EvmCoreErrorExitError */377export interface EvmCoreErrorExitError extends Enum {378 readonly isStackUnderflow: boolean;379 readonly isStackOverflow: boolean;380 readonly isInvalidJump: boolean;381 readonly isInvalidRange: boolean;382 readonly isDesignatedInvalid: boolean;383 readonly isCallTooDeep: boolean;384 readonly isCreateCollision: boolean;385 readonly isCreateContractLimit: boolean;386 readonly isOutOfOffset: boolean;387 readonly isOutOfGas: boolean;388 readonly isOutOfFund: boolean;389 readonly isPcUnderflow: boolean;390 readonly isCreateEmpty: boolean;391 readonly isOther: boolean;392 readonly asOther: Text;393 readonly isInvalidCode: boolean;394 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';395}396397/** @name EvmCoreErrorExitFatal */398export interface EvmCoreErrorExitFatal extends Enum {399 readonly isNotSupported: boolean;400 readonly isUnhandledInterrupt: boolean;401 readonly isCallErrorAsFatal: boolean;402 readonly asCallErrorAsFatal: EvmCoreErrorExitError;403 readonly isOther: boolean;404 readonly asOther: Text;405 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';406}407408/** @name EvmCoreErrorExitReason */409export interface EvmCoreErrorExitReason extends Enum {410 readonly isSucceed: boolean;411 readonly asSucceed: EvmCoreErrorExitSucceed;412 readonly isError: boolean;413 readonly asError: EvmCoreErrorExitError;414 readonly isRevert: boolean;415 readonly asRevert: EvmCoreErrorExitRevert;416 readonly isFatal: boolean;417 readonly asFatal: EvmCoreErrorExitFatal;418 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';419}420421/** @name EvmCoreErrorExitRevert */422export interface EvmCoreErrorExitRevert extends Enum {423 readonly isReverted: boolean;424 readonly type: 'Reverted';425}426427/** @name EvmCoreErrorExitSucceed */428export interface EvmCoreErrorExitSucceed extends Enum {429 readonly isStopped: boolean;430 readonly isReturned: boolean;431 readonly isSuicided: boolean;432 readonly type: 'Stopped' | 'Returned' | 'Suicided';433}434435/** @name FpRpcTransactionStatus */436export interface FpRpcTransactionStatus extends Struct {437 readonly transactionHash: H256;438 readonly transactionIndex: u32;439 readonly from: H160;440 readonly to: Option<H160>;441 readonly contractAddress: Option<H160>;442 readonly logs: Vec<EthereumLog>;443 readonly logsBloom: EthbloomBloom;444}445446/** @name FrameSupportPalletId */447export interface FrameSupportPalletId extends U8aFixed {}448449/** @name FrameSupportTokensMiscBalanceStatus */450export interface FrameSupportTokensMiscBalanceStatus extends Enum {451 readonly isFree: boolean;452 readonly isReserved: boolean;453 readonly type: 'Free' | 'Reserved';454}455456/** @name FrameSupportWeightsDispatchClass */457export interface FrameSupportWeightsDispatchClass extends Enum {458 readonly isNormal: boolean;459 readonly isOperational: boolean;460 readonly isMandatory: boolean;461 readonly type: 'Normal' | 'Operational' | 'Mandatory';462}463464/** @name FrameSupportWeightsDispatchInfo */465export interface FrameSupportWeightsDispatchInfo extends Struct {466 readonly weight: u64;467 readonly class: FrameSupportWeightsDispatchClass;468 readonly paysFee: FrameSupportWeightsPays;469}470471/** @name FrameSupportWeightsPays */472export interface FrameSupportWeightsPays extends Enum {473 readonly isYes: boolean;474 readonly isNo: boolean;475 readonly type: 'Yes' | 'No';476}477478/** @name FrameSupportWeightsPerDispatchClassU32 */479export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {480 readonly normal: u32;481 readonly operational: u32;482 readonly mandatory: u32;483}484485/** @name FrameSupportWeightsPerDispatchClassU64 */486export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {487 readonly normal: u64;488 readonly operational: u64;489 readonly mandatory: u64;490}491492/** @name FrameSupportWeightsPerDispatchClassWeightsPerClass */493export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {494 readonly normal: FrameSystemLimitsWeightsPerClass;495 readonly operational: FrameSystemLimitsWeightsPerClass;496 readonly mandatory: FrameSystemLimitsWeightsPerClass;497}498499/** @name FrameSupportWeightsRuntimeDbWeight */500export interface FrameSupportWeightsRuntimeDbWeight extends Struct {501 readonly read: u64;502 readonly write: u64;503}504505/** @name FrameSupportWeightsWeightToFeeCoefficient */506export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {507 readonly coeffInteger: u128;508 readonly coeffFrac: Perbill;509 readonly negative: bool;510 readonly degree: u8;511}512513/** @name FrameSystemAccountInfo */514export interface FrameSystemAccountInfo extends Struct {515 readonly nonce: u32;516 readonly consumers: u32;517 readonly providers: u32;518 readonly sufficients: u32;519 readonly data: PalletBalancesAccountData;520}521522/** @name FrameSystemCall */523export interface FrameSystemCall extends Enum {524 readonly isFillBlock: boolean;525 readonly asFillBlock: {526 readonly ratio: Perbill;527 } & Struct;528 readonly isRemark: boolean;529 readonly asRemark: {530 readonly remark: Bytes;531 } & Struct;532 readonly isSetHeapPages: boolean;533 readonly asSetHeapPages: {534 readonly pages: u64;535 } & Struct;536 readonly isSetCode: boolean;537 readonly asSetCode: {538 readonly code: Bytes;539 } & Struct;540 readonly isSetCodeWithoutChecks: boolean;541 readonly asSetCodeWithoutChecks: {542 readonly code: Bytes;543 } & Struct;544 readonly isSetStorage: boolean;545 readonly asSetStorage: {546 readonly items: Vec<ITuple<[Bytes, Bytes]>>;547 } & Struct;548 readonly isKillStorage: boolean;549 readonly asKillStorage: {550 readonly keys_: Vec<Bytes>;551 } & Struct;552 readonly isKillPrefix: boolean;553 readonly asKillPrefix: {554 readonly prefix: Bytes;555 readonly subkeys: u32;556 } & Struct;557 readonly isRemarkWithEvent: boolean;558 readonly asRemarkWithEvent: {559 readonly remark: Bytes;560 } & Struct;561 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';562}563564/** @name FrameSystemError */565export interface FrameSystemError extends Enum {566 readonly isInvalidSpecName: boolean;567 readonly isSpecVersionNeedsToIncrease: boolean;568 readonly isFailedToExtractRuntimeVersion: boolean;569 readonly isNonDefaultComposite: boolean;570 readonly isNonZeroRefCount: boolean;571 readonly isCallFiltered: boolean;572 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';573}574575/** @name FrameSystemEvent */576export interface FrameSystemEvent extends Enum {577 readonly isExtrinsicSuccess: boolean;578 readonly asExtrinsicSuccess: {579 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;580 } & Struct;581 readonly isExtrinsicFailed: boolean;582 readonly asExtrinsicFailed: {583 readonly dispatchError: SpRuntimeDispatchError;584 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;585 } & Struct;586 readonly isCodeUpdated: boolean;587 readonly isNewAccount: boolean;588 readonly asNewAccount: {589 readonly account: AccountId32;590 } & Struct;591 readonly isKilledAccount: boolean;592 readonly asKilledAccount: {593 readonly account: AccountId32;594 } & Struct;595 readonly isRemarked: boolean;596 readonly asRemarked: {597 readonly sender: AccountId32;598 readonly hash_: H256;599 } & Struct;600 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';601}602603/** @name FrameSystemEventRecord */604export interface FrameSystemEventRecord extends Struct {605 readonly phase: FrameSystemPhase;606 readonly event: Event;607 readonly topics: Vec<H256>;608}609610/** @name FrameSystemExtensionsCheckGenesis */611export interface FrameSystemExtensionsCheckGenesis extends Null {}612613/** @name FrameSystemExtensionsCheckNonce */614export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}615616/** @name FrameSystemExtensionsCheckSpecVersion */617export interface FrameSystemExtensionsCheckSpecVersion extends Null {}618619/** @name FrameSystemExtensionsCheckWeight */620export interface FrameSystemExtensionsCheckWeight extends Null {}621622/** @name FrameSystemLastRuntimeUpgradeInfo */623export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {624 readonly specVersion: Compact<u32>;625 readonly specName: Text;626}627628/** @name FrameSystemLimitsBlockLength */629export interface FrameSystemLimitsBlockLength extends Struct {630 readonly max: FrameSupportWeightsPerDispatchClassU32;631}632633/** @name FrameSystemLimitsBlockWeights */634export interface FrameSystemLimitsBlockWeights extends Struct {635 readonly baseBlock: u64;636 readonly maxBlock: u64;637 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;638}639640/** @name FrameSystemLimitsWeightsPerClass */641export interface FrameSystemLimitsWeightsPerClass extends Struct {642 readonly baseExtrinsic: u64;643 readonly maxExtrinsic: Option<u64>;644 readonly maxTotal: Option<u64>;645 readonly reserved: Option<u64>;646}647648/** @name FrameSystemPhase */649export interface FrameSystemPhase extends Enum {650 readonly isApplyExtrinsic: boolean;651 readonly asApplyExtrinsic: u32;652 readonly isFinalization: boolean;653 readonly isInitialization: boolean;654 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';655}656657/** @name OpalRuntimeRuntime */658export interface OpalRuntimeRuntime extends Null {}659660/** @name OrmlVestingModuleCall */661export interface OrmlVestingModuleCall extends Enum {662 readonly isClaim: boolean;663 readonly isVestedTransfer: boolean;664 readonly asVestedTransfer: {665 readonly dest: MultiAddress;666 readonly schedule: OrmlVestingVestingSchedule;667 } & Struct;668 readonly isUpdateVestingSchedules: boolean;669 readonly asUpdateVestingSchedules: {670 readonly who: MultiAddress;671 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;672 } & Struct;673 readonly isClaimFor: boolean;674 readonly asClaimFor: {675 readonly dest: MultiAddress;676 } & Struct;677 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';678}679680/** @name OrmlVestingModuleError */681export interface OrmlVestingModuleError extends Enum {682 readonly isZeroVestingPeriod: boolean;683 readonly isZeroVestingPeriodCount: boolean;684 readonly isInsufficientBalanceToLock: boolean;685 readonly isTooManyVestingSchedules: boolean;686 readonly isAmountLow: boolean;687 readonly isMaxVestingSchedulesExceeded: boolean;688 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';689}690691/** @name OrmlVestingModuleEvent */692export interface OrmlVestingModuleEvent extends Enum {693 readonly isVestingScheduleAdded: boolean;694 readonly asVestingScheduleAdded: {695 readonly from: AccountId32;696 readonly to: AccountId32;697 readonly vestingSchedule: OrmlVestingVestingSchedule;698 } & Struct;699 readonly isClaimed: boolean;700 readonly asClaimed: {701 readonly who: AccountId32;702 readonly amount: u128;703 } & Struct;704 readonly isVestingSchedulesUpdated: boolean;705 readonly asVestingSchedulesUpdated: {706 readonly who: AccountId32;707 } & Struct;708 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';709}710711/** @name OrmlVestingVestingSchedule */712export interface OrmlVestingVestingSchedule extends Struct {713 readonly start: u32;714 readonly period: u32;715 readonly periodCount: u32;716 readonly perPeriod: Compact<u128>;717}718719/** @name PalletBalancesAccountData */720export interface PalletBalancesAccountData extends Struct {721 readonly free: u128;722 readonly reserved: u128;723 readonly miscFrozen: u128;724 readonly feeFrozen: u128;725}726727/** @name PalletBalancesBalanceLock */728export interface PalletBalancesBalanceLock extends Struct {729 readonly id: U8aFixed;730 readonly amount: u128;731 readonly reasons: PalletBalancesReasons;732}733734/** @name PalletBalancesCall */735export interface PalletBalancesCall extends Enum {736 readonly isTransfer: boolean;737 readonly asTransfer: {738 readonly dest: MultiAddress;739 readonly value: Compact<u128>;740 } & Struct;741 readonly isSetBalance: boolean;742 readonly asSetBalance: {743 readonly who: MultiAddress;744 readonly newFree: Compact<u128>;745 readonly newReserved: Compact<u128>;746 } & Struct;747 readonly isForceTransfer: boolean;748 readonly asForceTransfer: {749 readonly source: MultiAddress;750 readonly dest: MultiAddress;751 readonly value: Compact<u128>;752 } & Struct;753 readonly isTransferKeepAlive: boolean;754 readonly asTransferKeepAlive: {755 readonly dest: MultiAddress;756 readonly value: Compact<u128>;757 } & Struct;758 readonly isTransferAll: boolean;759 readonly asTransferAll: {760 readonly dest: MultiAddress;761 readonly keepAlive: bool;762 } & Struct;763 readonly isForceUnreserve: boolean;764 readonly asForceUnreserve: {765 readonly who: MultiAddress;766 readonly amount: u128;767 } & Struct;768 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';769}770771/** @name PalletBalancesError */772export interface PalletBalancesError extends Enum {773 readonly isVestingBalance: boolean;774 readonly isLiquidityRestrictions: boolean;775 readonly isInsufficientBalance: boolean;776 readonly isExistentialDeposit: boolean;777 readonly isKeepAlive: boolean;778 readonly isExistingVestingSchedule: boolean;779 readonly isDeadAccount: boolean;780 readonly isTooManyReserves: boolean;781 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';782}783784/** @name PalletBalancesEvent */785export interface PalletBalancesEvent extends Enum {786 readonly isEndowed: boolean;787 readonly asEndowed: {788 readonly account: AccountId32;789 readonly freeBalance: u128;790 } & Struct;791 readonly isDustLost: boolean;792 readonly asDustLost: {793 readonly account: AccountId32;794 readonly amount: u128;795 } & Struct;796 readonly isTransfer: boolean;797 readonly asTransfer: {798 readonly from: AccountId32;799 readonly to: AccountId32;800 readonly amount: u128;801 } & Struct;802 readonly isBalanceSet: boolean;803 readonly asBalanceSet: {804 readonly who: AccountId32;805 readonly free: u128;806 readonly reserved: u128;807 } & Struct;808 readonly isReserved: boolean;809 readonly asReserved: {810 readonly who: AccountId32;811 readonly amount: u128;812 } & Struct;813 readonly isUnreserved: boolean;814 readonly asUnreserved: {815 readonly who: AccountId32;816 readonly amount: u128;817 } & Struct;818 readonly isReserveRepatriated: boolean;819 readonly asReserveRepatriated: {820 readonly from: AccountId32;821 readonly to: AccountId32;822 readonly amount: u128;823 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;824 } & Struct;825 readonly isDeposit: boolean;826 readonly asDeposit: {827 readonly who: AccountId32;828 readonly amount: u128;829 } & Struct;830 readonly isWithdraw: boolean;831 readonly asWithdraw: {832 readonly who: AccountId32;833 readonly amount: u128;834 } & Struct;835 readonly isSlashed: boolean;836 readonly asSlashed: {837 readonly who: AccountId32;838 readonly amount: u128;839 } & Struct;840 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';841}842843/** @name PalletBalancesReasons */844export interface PalletBalancesReasons extends Enum {845 readonly isFee: boolean;846 readonly isMisc: boolean;847 readonly isAll: boolean;848 readonly type: 'Fee' | 'Misc' | 'All';849}850851/** @name PalletBalancesReleases */852export interface PalletBalancesReleases extends Enum {853 readonly isV100: boolean;854 readonly isV200: boolean;855 readonly type: 'V100' | 'V200';856}857858/** @name PalletBalancesReserveData */859export interface PalletBalancesReserveData extends Struct {860 readonly id: U8aFixed;861 readonly amount: u128;862}863864/** @name PalletCommonError */865export interface PalletCommonError extends Enum {866 readonly isCollectionNotFound: boolean;867 readonly isMustBeTokenOwner: boolean;868 readonly isNoPermission: boolean;869 readonly isCantDestroyNotEmptyCollection: boolean;870 readonly isPublicMintingNotAllowed: boolean;871 readonly isAddressNotInAllowlist: boolean;872 readonly isCollectionNameLimitExceeded: boolean;873 readonly isCollectionDescriptionLimitExceeded: boolean;874 readonly isCollectionTokenPrefixLimitExceeded: boolean;875 readonly isTotalCollectionsLimitExceeded: boolean;876 readonly isCollectionAdminCountExceeded: boolean;877 readonly isCollectionLimitBoundsExceeded: boolean;878 readonly isOwnerPermissionsCantBeReverted: boolean;879 readonly isTransferNotAllowed: boolean;880 readonly isAccountTokenLimitExceeded: boolean;881 readonly isCollectionTokenLimitExceeded: boolean;882 readonly isMetadataFlagFrozen: boolean;883 readonly isTokenNotFound: boolean;884 readonly isTokenValueTooLow: boolean;885 readonly isApprovedValueTooLow: boolean;886 readonly isCantApproveMoreThanOwned: boolean;887 readonly isAddressIsZero: boolean;888 readonly isUnsupportedOperation: boolean;889 readonly isNotSufficientFounds: boolean;890 readonly isNestingIsDisabled: boolean;891 readonly isOnlyOwnerAllowedToNest: boolean;892 readonly isSourceCollectionIsNotAllowedToNest: boolean;893 readonly isCollectionFieldSizeExceeded: boolean;894 readonly isNoSpaceForProperty: boolean;895 readonly isPropertyLimitReached: boolean;896 readonly isPropertyKeyIsTooLong: boolean;897 readonly isInvalidCharacterInPropertyKey: boolean;898 readonly isEmptyPropertyKey: boolean;899 readonly isCollectionIsExternal: boolean;900 readonly isCollectionIsInternal: boolean;901 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';902}903904/** @name PalletCommonEvent */905export interface PalletCommonEvent extends Enum {906 readonly isCollectionCreated: boolean;907 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;908 readonly isCollectionDestroyed: boolean;909 readonly asCollectionDestroyed: u32;910 readonly isItemCreated: boolean;911 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;912 readonly isItemDestroyed: boolean;913 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;914 readonly isTransfer: boolean;915 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;916 readonly isApproved: boolean;917 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;918 readonly isCollectionPropertySet: boolean;919 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;920 readonly isCollectionPropertyDeleted: boolean;921 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;922 readonly isTokenPropertySet: boolean;923 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;924 readonly isTokenPropertyDeleted: boolean;925 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;926 readonly isPropertyPermissionSet: boolean;927 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;928 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';929}930931/** @name PalletEthereumCall */932export interface PalletEthereumCall extends Enum {933 readonly isTransact: boolean;934 readonly asTransact: {935 readonly transaction: EthereumTransactionTransactionV2;936 } & Struct;937 readonly type: 'Transact';938}939940/** @name PalletEthereumError */941export interface PalletEthereumError extends Enum {942 readonly isInvalidSignature: boolean;943 readonly isPreLogExists: boolean;944 readonly type: 'InvalidSignature' | 'PreLogExists';945}946947/** @name PalletEthereumEvent */948export interface PalletEthereumEvent extends Enum {949 readonly isExecuted: boolean;950 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;951 readonly type: 'Executed';952}953954/** @name PalletEthereumFakeTransactionFinalizer */955export interface PalletEthereumFakeTransactionFinalizer extends Null {}956957/** @name PalletEvmAccountBasicCrossAccountIdRepr */958export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {959 readonly isSubstrate: boolean;960 readonly asSubstrate: AccountId32;961 readonly isEthereum: boolean;962 readonly asEthereum: H160;963 readonly type: 'Substrate' | 'Ethereum';964}965966/** @name PalletEvmCall */967export interface PalletEvmCall extends Enum {968 readonly isWithdraw: boolean;969 readonly asWithdraw: {970 readonly address: H160;971 readonly value: u128;972 } & Struct;973 readonly isCall: boolean;974 readonly asCall: {975 readonly source: H160;976 readonly target: H160;977 readonly input: Bytes;978 readonly value: U256;979 readonly gasLimit: u64;980 readonly maxFeePerGas: U256;981 readonly maxPriorityFeePerGas: Option<U256>;982 readonly nonce: Option<U256>;983 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;984 } & Struct;985 readonly isCreate: boolean;986 readonly asCreate: {987 readonly source: H160;988 readonly init: Bytes;989 readonly value: U256;990 readonly gasLimit: u64;991 readonly maxFeePerGas: U256;992 readonly maxPriorityFeePerGas: Option<U256>;993 readonly nonce: Option<U256>;994 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;995 } & Struct;996 readonly isCreate2: boolean;997 readonly asCreate2: {998 readonly source: H160;999 readonly init: Bytes;1000 readonly salt: H256;1001 readonly value: U256;1002 readonly gasLimit: u64;1003 readonly maxFeePerGas: U256;1004 readonly maxPriorityFeePerGas: Option<U256>;1005 readonly nonce: Option<U256>;1006 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1007 } & Struct;1008 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1009}10101011/** @name PalletEvmCoderSubstrateError */1012export interface PalletEvmCoderSubstrateError extends Enum {1013 readonly isOutOfGas: boolean;1014 readonly isOutOfFund: boolean;1015 readonly type: 'OutOfGas' | 'OutOfFund';1016}10171018/** @name PalletEvmContractHelpersError */1019export interface PalletEvmContractHelpersError extends Enum {1020 readonly isNoPermission: boolean;1021 readonly type: 'NoPermission';1022}10231024/** @name PalletEvmContractHelpersSponsoringModeT */1025export interface PalletEvmContractHelpersSponsoringModeT extends Enum {1026 readonly isDisabled: boolean;1027 readonly isAllowlisted: boolean;1028 readonly isGenerous: boolean;1029 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';1030}10311032/** @name PalletEvmError */1033export interface PalletEvmError extends Enum {1034 readonly isBalanceLow: boolean;1035 readonly isFeeOverflow: boolean;1036 readonly isPaymentOverflow: boolean;1037 readonly isWithdrawFailed: boolean;1038 readonly isGasPriceTooLow: boolean;1039 readonly isInvalidNonce: boolean;1040 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';1041}10421043/** @name PalletEvmEvent */1044export interface PalletEvmEvent extends Enum {1045 readonly isLog: boolean;1046 readonly asLog: EthereumLog;1047 readonly isCreated: boolean;1048 readonly asCreated: H160;1049 readonly isCreatedFailed: boolean;1050 readonly asCreatedFailed: H160;1051 readonly isExecuted: boolean;1052 readonly asExecuted: H160;1053 readonly isExecutedFailed: boolean;1054 readonly asExecutedFailed: H160;1055 readonly isBalanceDeposit: boolean;1056 readonly asBalanceDeposit: ITuple<[AccountId32, H160, U256]>;1057 readonly isBalanceWithdraw: boolean;1058 readonly asBalanceWithdraw: ITuple<[AccountId32, H160, U256]>;1059 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';1060}10611062/** @name PalletEvmMigrationCall */1063export interface PalletEvmMigrationCall extends Enum {1064 readonly isBegin: boolean;1065 readonly asBegin: {1066 readonly address: H160;1067 } & Struct;1068 readonly isSetData: boolean;1069 readonly asSetData: {1070 readonly address: H160;1071 readonly data: Vec<ITuple<[H256, H256]>>;1072 } & Struct;1073 readonly isFinish: boolean;1074 readonly asFinish: {1075 readonly address: H160;1076 readonly code: Bytes;1077 } & Struct;1078 readonly type: 'Begin' | 'SetData' | 'Finish';1079}10801081/** @name PalletEvmMigrationError */1082export interface PalletEvmMigrationError extends Enum {1083 readonly isAccountNotEmpty: boolean;1084 readonly isAccountIsNotMigrating: boolean;1085 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';1086}10871088/** @name PalletFungibleError */1089export interface PalletFungibleError extends Enum {1090 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;1091 readonly isFungibleItemsHaveNoId: boolean;1092 readonly isFungibleItemsDontHaveData: boolean;1093 readonly isFungibleDisallowsNesting: boolean;1094 readonly isSettingPropertiesNotAllowed: boolean;1095 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1096}10971098/** @name PalletInflationCall */1099export interface PalletInflationCall extends Enum {1100 readonly isStartInflation: boolean;1101 readonly asStartInflation: {1102 readonly inflationStartRelayBlock: u32;1103 } & Struct;1104 readonly type: 'StartInflation';1105}11061107/** @name PalletNonfungibleError */1108export interface PalletNonfungibleError extends Enum {1109 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;1110 readonly isNonfungibleItemsHaveNoAmount: boolean;1111 readonly isCantBurnNftWithChildren: boolean;1112 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';1113}11141115/** @name PalletNonfungibleItemData */1116export interface PalletNonfungibleItemData extends Struct {1117 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1118}11191120/** @name PalletRefungibleError */1121export interface PalletRefungibleError extends Enum {1122 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;1123 readonly isWrongRefungiblePieces: boolean;1124 readonly isRefungibleDisallowsNesting: boolean;1125 readonly isSettingPropertiesNotAllowed: boolean;1126 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1127}11281129/** @name PalletRefungibleItemData */1130export interface PalletRefungibleItemData extends Struct {1131 readonly constData: Bytes;1132}11331134/** @name PalletRmrkCoreCall */1135export interface PalletRmrkCoreCall extends Enum {1136 readonly isCreateCollection: boolean;1137 readonly asCreateCollection: {1138 readonly metadata: Bytes;1139 readonly max: Option<u32>;1140 readonly symbol: Bytes;1141 } & Struct;1142 readonly isDestroyCollection: boolean;1143 readonly asDestroyCollection: {1144 readonly collectionId: u32;1145 } & Struct;1146 readonly isChangeCollectionIssuer: boolean;1147 readonly asChangeCollectionIssuer: {1148 readonly collectionId: u32;1149 readonly newIssuer: MultiAddress;1150 } & Struct;1151 readonly isLockCollection: boolean;1152 readonly asLockCollection: {1153 readonly collectionId: u32;1154 } & Struct;1155 readonly isMintNft: boolean;1156 readonly asMintNft: {1157 readonly owner: AccountId32;1158 readonly collectionId: u32;1159 readonly recipient: Option<AccountId32>;1160 readonly royaltyAmount: Option<Permill>;1161 readonly metadata: Bytes;1162 readonly transferable: bool;1163 } & Struct;1164 readonly isBurnNft: boolean;1165 readonly asBurnNft: {1166 readonly collectionId: u32;1167 readonly nftId: u32;1168 } & Struct;1169 readonly isSend: boolean;1170 readonly asSend: {1171 readonly rmrkCollectionId: u32;1172 readonly rmrkNftId: u32;1173 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1174 } & Struct;1175 readonly isAcceptNft: boolean;1176 readonly asAcceptNft: {1177 readonly rmrkCollectionId: u32;1178 readonly rmrkNftId: u32;1179 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1180 } & Struct;1181 readonly isRejectNft: boolean;1182 readonly asRejectNft: {1183 readonly rmrkCollectionId: u32;1184 readonly rmrkNftId: u32;1185 } & Struct;1186 readonly isAcceptResource: boolean;1187 readonly asAcceptResource: {1188 readonly rmrkCollectionId: u32;1189 readonly rmrkNftId: u32;1190 readonly rmrkResourceId: u32;1191 } & Struct;1192 readonly isAcceptResourceRemoval: boolean;1193 readonly asAcceptResourceRemoval: {1194 readonly rmrkCollectionId: u32;1195 readonly rmrkNftId: u32;1196 readonly rmrkResourceId: u32;1197 } & Struct;1198 readonly isSetProperty: boolean;1199 readonly asSetProperty: {1200 readonly rmrkCollectionId: Compact<u32>;1201 readonly maybeNftId: Option<u32>;1202 readonly key: Bytes;1203 readonly value: Bytes;1204 } & Struct;1205 readonly isSetPriority: boolean;1206 readonly asSetPriority: {1207 readonly rmrkCollectionId: u32;1208 readonly rmrkNftId: u32;1209 readonly priorities: Vec<u32>;1210 } & Struct;1211 readonly isAddBasicResource: boolean;1212 readonly asAddBasicResource: {1213 readonly rmrkCollectionId: u32;1214 readonly nftId: u32;1215 readonly resource: RmrkTraitsResourceBasicResource;1216 } & Struct;1217 readonly isAddComposableResource: boolean;1218 readonly asAddComposableResource: {1219 readonly rmrkCollectionId: u32;1220 readonly nftId: u32;1221 readonly resourceId: Bytes;1222 readonly resource: RmrkTraitsResourceComposableResource;1223 } & Struct;1224 readonly isAddSlotResource: boolean;1225 readonly asAddSlotResource: {1226 readonly rmrkCollectionId: u32;1227 readonly nftId: u32;1228 readonly resource: RmrkTraitsResourceSlotResource;1229 } & Struct;1230 readonly isRemoveResource: boolean;1231 readonly asRemoveResource: {1232 readonly rmrkCollectionId: u32;1233 readonly nftId: u32;1234 readonly resourceId: u32;1235 } & Struct;1236 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';1237}12381239/** @name PalletRmrkCoreError */1240export interface PalletRmrkCoreError extends Enum {1241 readonly isCorruptedCollectionType: boolean;1242 readonly isNftTypeEncodeError: boolean;1243 readonly isRmrkPropertyKeyIsTooLong: boolean;1244 readonly isRmrkPropertyValueIsTooLong: boolean;1245 readonly isCollectionNotEmpty: boolean;1246 readonly isNoAvailableCollectionId: boolean;1247 readonly isNoAvailableNftId: boolean;1248 readonly isCollectionUnknown: boolean;1249 readonly isNoPermission: boolean;1250 readonly isNonTransferable: boolean;1251 readonly isCollectionFullOrLocked: boolean;1252 readonly isResourceDoesntExist: boolean;1253 readonly isCannotSendToDescendentOrSelf: boolean;1254 readonly isCannotAcceptNonOwnedNft: boolean;1255 readonly isCannotRejectNonOwnedNft: boolean;1256 readonly isResourceNotPending: boolean;1257 readonly type: 'CorruptedCollectionType' | 'NftTypeEncodeError' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'ResourceNotPending';1258}12591260/** @name PalletRmrkCoreEvent */1261export interface PalletRmrkCoreEvent extends Enum {1262 readonly isCollectionCreated: boolean;1263 readonly asCollectionCreated: {1264 readonly issuer: AccountId32;1265 readonly collectionId: u32;1266 } & Struct;1267 readonly isCollectionDestroyed: boolean;1268 readonly asCollectionDestroyed: {1269 readonly issuer: AccountId32;1270 readonly collectionId: u32;1271 } & Struct;1272 readonly isIssuerChanged: boolean;1273 readonly asIssuerChanged: {1274 readonly oldIssuer: AccountId32;1275 readonly newIssuer: AccountId32;1276 readonly collectionId: u32;1277 } & Struct;1278 readonly isCollectionLocked: boolean;1279 readonly asCollectionLocked: {1280 readonly issuer: AccountId32;1281 readonly collectionId: u32;1282 } & Struct;1283 readonly isNftMinted: boolean;1284 readonly asNftMinted: {1285 readonly owner: AccountId32;1286 readonly collectionId: u32;1287 readonly nftId: u32;1288 } & Struct;1289 readonly isNftBurned: boolean;1290 readonly asNftBurned: {1291 readonly owner: AccountId32;1292 readonly nftId: u32;1293 } & Struct;1294 readonly isNftSent: boolean;1295 readonly asNftSent: {1296 readonly sender: AccountId32;1297 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1298 readonly collectionId: u32;1299 readonly nftId: u32;1300 readonly approvalRequired: bool;1301 } & Struct;1302 readonly isNftAccepted: boolean;1303 readonly asNftAccepted: {1304 readonly sender: AccountId32;1305 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1306 readonly collectionId: u32;1307 readonly nftId: u32;1308 } & Struct;1309 readonly isNftRejected: boolean;1310 readonly asNftRejected: {1311 readonly sender: AccountId32;1312 readonly collectionId: u32;1313 readonly nftId: u32;1314 } & Struct;1315 readonly isPropertySet: boolean;1316 readonly asPropertySet: {1317 readonly collectionId: u32;1318 readonly maybeNftId: Option<u32>;1319 readonly key: Bytes;1320 readonly value: Bytes;1321 } & Struct;1322 readonly isResourceAdded: boolean;1323 readonly asResourceAdded: {1324 readonly nftId: u32;1325 readonly resourceId: u32;1326 } & Struct;1327 readonly isResourceRemoval: boolean;1328 readonly asResourceRemoval: {1329 readonly nftId: u32;1330 readonly resourceId: u32;1331 } & Struct;1332 readonly isResourceAccepted: boolean;1333 readonly asResourceAccepted: {1334 readonly nftId: u32;1335 readonly resourceId: u32;1336 } & Struct;1337 readonly isResourceRemovalAccepted: boolean;1338 readonly asResourceRemovalAccepted: {1339 readonly nftId: u32;1340 readonly resourceId: u32;1341 } & Struct;1342 readonly isPrioritySet: boolean;1343 readonly asPrioritySet: {1344 readonly collectionId: u32;1345 readonly nftId: u32;1346 } & Struct;1347 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1348}13491350/** @name PalletRmrkEquipCall */1351export interface PalletRmrkEquipCall extends Enum {1352 readonly isCreateBase: boolean;1353 readonly asCreateBase: {1354 readonly baseType: Bytes;1355 readonly symbol: Bytes;1356 readonly parts: Vec<RmrkTraitsPartPartType>;1357 } & Struct;1358 readonly isThemeAdd: boolean;1359 readonly asThemeAdd: {1360 readonly baseId: u32;1361 readonly theme: RmrkTraitsTheme;1362 } & Struct;1363 readonly type: 'CreateBase' | 'ThemeAdd';1364}13651366/** @name PalletRmrkEquipError */1367export interface PalletRmrkEquipError extends Enum {1368 readonly isPermissionError: boolean;1369 readonly isNoAvailableBaseId: boolean;1370 readonly isNoAvailablePartId: boolean;1371 readonly isBaseDoesntExist: boolean;1372 readonly isNeedsDefaultThemeFirst: boolean;1373 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst';1374}13751376/** @name PalletRmrkEquipEvent */1377export interface PalletRmrkEquipEvent extends Enum {1378 readonly isBaseCreated: boolean;1379 readonly asBaseCreated: {1380 readonly issuer: AccountId32;1381 readonly baseId: u32;1382 } & Struct;1383 readonly type: 'BaseCreated';1384}13851386/** @name PalletStructureCall */1387export interface PalletStructureCall extends Null {}13881389/** @name PalletStructureError */1390export interface PalletStructureError extends Enum {1391 readonly isOuroborosDetected: boolean;1392 readonly isDepthLimit: boolean;1393 readonly isTokenNotFound: boolean;1394 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';1395}13961397/** @name PalletStructureEvent */1398export interface PalletStructureEvent extends Enum {1399 readonly isExecuted: boolean;1400 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1401 readonly type: 'Executed';1402}14031404/** @name PalletSudoCall */1405export interface PalletSudoCall extends Enum {1406 readonly isSudo: boolean;1407 readonly asSudo: {1408 readonly call: Call;1409 } & Struct;1410 readonly isSudoUncheckedWeight: boolean;1411 readonly asSudoUncheckedWeight: {1412 readonly call: Call;1413 readonly weight: u64;1414 } & Struct;1415 readonly isSetKey: boolean;1416 readonly asSetKey: {1417 readonly new_: MultiAddress;1418 } & Struct;1419 readonly isSudoAs: boolean;1420 readonly asSudoAs: {1421 readonly who: MultiAddress;1422 readonly call: Call;1423 } & Struct;1424 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1425}14261427/** @name PalletSudoError */1428export interface PalletSudoError extends Enum {1429 readonly isRequireSudo: boolean;1430 readonly type: 'RequireSudo';1431}14321433/** @name PalletSudoEvent */1434export interface PalletSudoEvent extends Enum {1435 readonly isSudid: boolean;1436 readonly asSudid: {1437 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1438 } & Struct;1439 readonly isKeyChanged: boolean;1440 readonly asKeyChanged: {1441 readonly oldSudoer: Option<AccountId32>;1442 } & Struct;1443 readonly isSudoAsDone: boolean;1444 readonly asSudoAsDone: {1445 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1446 } & Struct;1447 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1448}14491450/** @name PalletTemplateTransactionPaymentCall */1451export interface PalletTemplateTransactionPaymentCall extends Null {}14521453/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */1454export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}14551456/** @name PalletTimestampCall */1457export interface PalletTimestampCall extends Enum {1458 readonly isSet: boolean;1459 readonly asSet: {1460 readonly now: Compact<u64>;1461 } & Struct;1462 readonly type: 'Set';1463}14641465/** @name PalletTransactionPaymentReleases */1466export interface PalletTransactionPaymentReleases extends Enum {1467 readonly isV1Ancient: boolean;1468 readonly isV2: boolean;1469 readonly type: 'V1Ancient' | 'V2';1470}14711472/** @name PalletTreasuryCall */1473export interface PalletTreasuryCall extends Enum {1474 readonly isProposeSpend: boolean;1475 readonly asProposeSpend: {1476 readonly value: Compact<u128>;1477 readonly beneficiary: MultiAddress;1478 } & Struct;1479 readonly isRejectProposal: boolean;1480 readonly asRejectProposal: {1481 readonly proposalId: Compact<u32>;1482 } & Struct;1483 readonly isApproveProposal: boolean;1484 readonly asApproveProposal: {1485 readonly proposalId: Compact<u32>;1486 } & Struct;1487 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';1488}14891490/** @name PalletTreasuryError */1491export interface PalletTreasuryError extends Enum {1492 readonly isInsufficientProposersBalance: boolean;1493 readonly isInvalidIndex: boolean;1494 readonly isTooManyApprovals: boolean;1495 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';1496}14971498/** @name PalletTreasuryEvent */1499export interface PalletTreasuryEvent extends Enum {1500 readonly isProposed: boolean;1501 readonly asProposed: {1502 readonly proposalIndex: u32;1503 } & Struct;1504 readonly isSpending: boolean;1505 readonly asSpending: {1506 readonly budgetRemaining: u128;1507 } & Struct;1508 readonly isAwarded: boolean;1509 readonly asAwarded: {1510 readonly proposalIndex: u32;1511 readonly award: u128;1512 readonly account: AccountId32;1513 } & Struct;1514 readonly isRejected: boolean;1515 readonly asRejected: {1516 readonly proposalIndex: u32;1517 readonly slashed: u128;1518 } & Struct;1519 readonly isBurnt: boolean;1520 readonly asBurnt: {1521 readonly burntFunds: u128;1522 } & Struct;1523 readonly isRollover: boolean;1524 readonly asRollover: {1525 readonly rolloverBalance: u128;1526 } & Struct;1527 readonly isDeposit: boolean;1528 readonly asDeposit: {1529 readonly value: u128;1530 } & Struct;1531 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';1532}15331534/** @name PalletTreasuryProposal */1535export interface PalletTreasuryProposal extends Struct {1536 readonly proposer: AccountId32;1537 readonly value: u128;1538 readonly beneficiary: AccountId32;1539 readonly bond: u128;1540}15411542/** @name PalletUniqueCall */1543export interface PalletUniqueCall extends Enum {1544 readonly isCreateCollection: boolean;1545 readonly asCreateCollection: {1546 readonly collectionName: Vec<u16>;1547 readonly collectionDescription: Vec<u16>;1548 readonly tokenPrefix: Bytes;1549 readonly mode: UpDataStructsCollectionMode;1550 } & Struct;1551 readonly isCreateCollectionEx: boolean;1552 readonly asCreateCollectionEx: {1553 readonly data: UpDataStructsCreateCollectionData;1554 } & Struct;1555 readonly isDestroyCollection: boolean;1556 readonly asDestroyCollection: {1557 readonly collectionId: u32;1558 } & Struct;1559 readonly isAddToAllowList: boolean;1560 readonly asAddToAllowList: {1561 readonly collectionId: u32;1562 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1563 } & Struct;1564 readonly isRemoveFromAllowList: boolean;1565 readonly asRemoveFromAllowList: {1566 readonly collectionId: u32;1567 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1568 } & Struct;1569 readonly isChangeCollectionOwner: boolean;1570 readonly asChangeCollectionOwner: {1571 readonly collectionId: u32;1572 readonly newOwner: AccountId32;1573 } & Struct;1574 readonly isAddCollectionAdmin: boolean;1575 readonly asAddCollectionAdmin: {1576 readonly collectionId: u32;1577 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;1578 } & Struct;1579 readonly isRemoveCollectionAdmin: boolean;1580 readonly asRemoveCollectionAdmin: {1581 readonly collectionId: u32;1582 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;1583 } & Struct;1584 readonly isSetCollectionSponsor: boolean;1585 readonly asSetCollectionSponsor: {1586 readonly collectionId: u32;1587 readonly newSponsor: AccountId32;1588 } & Struct;1589 readonly isConfirmSponsorship: boolean;1590 readonly asConfirmSponsorship: {1591 readonly collectionId: u32;1592 } & Struct;1593 readonly isRemoveCollectionSponsor: boolean;1594 readonly asRemoveCollectionSponsor: {1595 readonly collectionId: u32;1596 } & Struct;1597 readonly isCreateItem: boolean;1598 readonly asCreateItem: {1599 readonly collectionId: u32;1600 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1601 readonly data: UpDataStructsCreateItemData;1602 } & Struct;1603 readonly isCreateMultipleItems: boolean;1604 readonly asCreateMultipleItems: {1605 readonly collectionId: u32;1606 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1607 readonly itemsData: Vec<UpDataStructsCreateItemData>;1608 } & Struct;1609 readonly isSetCollectionProperties: boolean;1610 readonly asSetCollectionProperties: {1611 readonly collectionId: u32;1612 readonly properties: Vec<UpDataStructsProperty>;1613 } & Struct;1614 readonly isDeleteCollectionProperties: boolean;1615 readonly asDeleteCollectionProperties: {1616 readonly collectionId: u32;1617 readonly propertyKeys: Vec<Bytes>;1618 } & Struct;1619 readonly isSetTokenProperties: boolean;1620 readonly asSetTokenProperties: {1621 readonly collectionId: u32;1622 readonly tokenId: u32;1623 readonly properties: Vec<UpDataStructsProperty>;1624 } & Struct;1625 readonly isDeleteTokenProperties: boolean;1626 readonly asDeleteTokenProperties: {1627 readonly collectionId: u32;1628 readonly tokenId: u32;1629 readonly propertyKeys: Vec<Bytes>;1630 } & Struct;1631 readonly isSetPropertyPermissions: boolean;1632 readonly asSetPropertyPermissions: {1633 readonly collectionId: u32;1634 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1635 } & Struct;1636 readonly isCreateMultipleItemsEx: boolean;1637 readonly asCreateMultipleItemsEx: {1638 readonly collectionId: u32;1639 readonly data: UpDataStructsCreateItemExData;1640 } & Struct;1641 readonly isSetTransfersEnabledFlag: boolean;1642 readonly asSetTransfersEnabledFlag: {1643 readonly collectionId: u32;1644 readonly value: bool;1645 } & Struct;1646 readonly isBurnItem: boolean;1647 readonly asBurnItem: {1648 readonly collectionId: u32;1649 readonly itemId: u32;1650 readonly value: u128;1651 } & Struct;1652 readonly isBurnFrom: boolean;1653 readonly asBurnFrom: {1654 readonly collectionId: u32;1655 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1656 readonly itemId: u32;1657 readonly value: u128;1658 } & Struct;1659 readonly isTransfer: boolean;1660 readonly asTransfer: {1661 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1662 readonly collectionId: u32;1663 readonly itemId: u32;1664 readonly value: u128;1665 } & Struct;1666 readonly isApprove: boolean;1667 readonly asApprove: {1668 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;1669 readonly collectionId: u32;1670 readonly itemId: u32;1671 readonly amount: u128;1672 } & Struct;1673 readonly isTransferFrom: boolean;1674 readonly asTransferFrom: {1675 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1676 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1677 readonly collectionId: u32;1678 readonly itemId: u32;1679 readonly value: u128;1680 } & Struct;1681 readonly isSetCollectionLimits: boolean;1682 readonly asSetCollectionLimits: {1683 readonly collectionId: u32;1684 readonly newLimit: UpDataStructsCollectionLimits;1685 } & Struct;1686 readonly isSetCollectionPermissions: boolean;1687 readonly asSetCollectionPermissions: {1688 readonly collectionId: u32;1689 readonly newLimit: UpDataStructsCollectionPermissions;1690 } & Struct;1691 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions';1692}16931694/** @name PalletUniqueError */1695export interface PalletUniqueError extends Enum {1696 readonly isCollectionDecimalPointLimitExceeded: boolean;1697 readonly isConfirmUnsetSponsorFail: boolean;1698 readonly isEmptyArgument: boolean;1699 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';1700}17011702/** @name PalletUniqueRawEvent */1703export interface PalletUniqueRawEvent extends Enum {1704 readonly isCollectionSponsorRemoved: boolean;1705 readonly asCollectionSponsorRemoved: u32;1706 readonly isCollectionAdminAdded: boolean;1707 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1708 readonly isCollectionOwnedChanged: boolean;1709 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;1710 readonly isCollectionSponsorSet: boolean;1711 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1712 readonly isSponsorshipConfirmed: boolean;1713 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1714 readonly isCollectionAdminRemoved: boolean;1715 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1716 readonly isAllowListAddressRemoved: boolean;1717 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1718 readonly isAllowListAddressAdded: boolean;1719 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1720 readonly isCollectionLimitSet: boolean;1721 readonly asCollectionLimitSet: u32;1722 readonly isCollectionPermissionSet: boolean;1723 readonly asCollectionPermissionSet: u32;1724 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';1725}17261727/** @name PalletXcmCall */1728export interface PalletXcmCall extends Enum {1729 readonly isSend: boolean;1730 readonly asSend: {1731 readonly dest: XcmVersionedMultiLocation;1732 readonly message: XcmVersionedXcm;1733 } & Struct;1734 readonly isTeleportAssets: boolean;1735 readonly asTeleportAssets: {1736 readonly dest: XcmVersionedMultiLocation;1737 readonly beneficiary: XcmVersionedMultiLocation;1738 readonly assets: XcmVersionedMultiAssets;1739 readonly feeAssetItem: u32;1740 } & Struct;1741 readonly isReserveTransferAssets: boolean;1742 readonly asReserveTransferAssets: {1743 readonly dest: XcmVersionedMultiLocation;1744 readonly beneficiary: XcmVersionedMultiLocation;1745 readonly assets: XcmVersionedMultiAssets;1746 readonly feeAssetItem: u32;1747 } & Struct;1748 readonly isExecute: boolean;1749 readonly asExecute: {1750 readonly message: XcmVersionedXcm;1751 readonly maxWeight: u64;1752 } & Struct;1753 readonly isForceXcmVersion: boolean;1754 readonly asForceXcmVersion: {1755 readonly location: XcmV1MultiLocation;1756 readonly xcmVersion: u32;1757 } & Struct;1758 readonly isForceDefaultXcmVersion: boolean;1759 readonly asForceDefaultXcmVersion: {1760 readonly maybeXcmVersion: Option<u32>;1761 } & Struct;1762 readonly isForceSubscribeVersionNotify: boolean;1763 readonly asForceSubscribeVersionNotify: {1764 readonly location: XcmVersionedMultiLocation;1765 } & Struct;1766 readonly isForceUnsubscribeVersionNotify: boolean;1767 readonly asForceUnsubscribeVersionNotify: {1768 readonly location: XcmVersionedMultiLocation;1769 } & Struct;1770 readonly isLimitedReserveTransferAssets: boolean;1771 readonly asLimitedReserveTransferAssets: {1772 readonly dest: XcmVersionedMultiLocation;1773 readonly beneficiary: XcmVersionedMultiLocation;1774 readonly assets: XcmVersionedMultiAssets;1775 readonly feeAssetItem: u32;1776 readonly weightLimit: XcmV2WeightLimit;1777 } & Struct;1778 readonly isLimitedTeleportAssets: boolean;1779 readonly asLimitedTeleportAssets: {1780 readonly dest: XcmVersionedMultiLocation;1781 readonly beneficiary: XcmVersionedMultiLocation;1782 readonly assets: XcmVersionedMultiAssets;1783 readonly feeAssetItem: u32;1784 readonly weightLimit: XcmV2WeightLimit;1785 } & Struct;1786 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';1787}17881789/** @name PalletXcmError */1790export interface PalletXcmError extends Enum {1791 readonly isUnreachable: boolean;1792 readonly isSendFailure: boolean;1793 readonly isFiltered: boolean;1794 readonly isUnweighableMessage: boolean;1795 readonly isDestinationNotInvertible: boolean;1796 readonly isEmpty: boolean;1797 readonly isCannotReanchor: boolean;1798 readonly isTooManyAssets: boolean;1799 readonly isInvalidOrigin: boolean;1800 readonly isBadVersion: boolean;1801 readonly isBadLocation: boolean;1802 readonly isNoSubscription: boolean;1803 readonly isAlreadySubscribed: boolean;1804 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';1805}18061807/** @name PalletXcmEvent */1808export interface PalletXcmEvent extends Enum {1809 readonly isAttempted: boolean;1810 readonly asAttempted: XcmV2TraitsOutcome;1811 readonly isSent: boolean;1812 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;1813 readonly isUnexpectedResponse: boolean;1814 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;1815 readonly isResponseReady: boolean;1816 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;1817 readonly isNotified: boolean;1818 readonly asNotified: ITuple<[u64, u8, u8]>;1819 readonly isNotifyOverweight: boolean;1820 readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;1821 readonly isNotifyDispatchError: boolean;1822 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;1823 readonly isNotifyDecodeFailed: boolean;1824 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;1825 readonly isInvalidResponder: boolean;1826 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;1827 readonly isInvalidResponderVersion: boolean;1828 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;1829 readonly isResponseTaken: boolean;1830 readonly asResponseTaken: u64;1831 readonly isAssetsTrapped: boolean;1832 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;1833 readonly isVersionChangeNotified: boolean;1834 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;1835 readonly isSupportedVersionChanged: boolean;1836 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;1837 readonly isNotifyTargetSendFail: boolean;1838 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;1839 readonly isNotifyTargetMigrationFail: boolean;1840 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;1841 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';1842}18431844/** @name PhantomTypeUpDataStructs */1845export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}18461847/** @name PolkadotCorePrimitivesInboundDownwardMessage */1848export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1849 readonly sentAt: u32;1850 readonly msg: Bytes;1851}18521853/** @name PolkadotCorePrimitivesInboundHrmpMessage */1854export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1855 readonly sentAt: u32;1856 readonly data: Bytes;1857}18581859/** @name PolkadotCorePrimitivesOutboundHrmpMessage */1860export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1861 readonly recipient: u32;1862 readonly data: Bytes;1863}18641865/** @name PolkadotParachainPrimitivesXcmpMessageFormat */1866export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {1867 readonly isConcatenatedVersionedXcm: boolean;1868 readonly isConcatenatedEncodedBlob: boolean;1869 readonly isSignals: boolean;1870 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';1871}18721873/** @name PolkadotPrimitivesV2AbridgedHostConfiguration */1874export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1875 readonly maxCodeSize: u32;1876 readonly maxHeadDataSize: u32;1877 readonly maxUpwardQueueCount: u32;1878 readonly maxUpwardQueueSize: u32;1879 readonly maxUpwardMessageSize: u32;1880 readonly maxUpwardMessageNumPerCandidate: u32;1881 readonly hrmpMaxMessageNumPerCandidate: u32;1882 readonly validationUpgradeCooldown: u32;1883 readonly validationUpgradeDelay: u32;1884}18851886/** @name PolkadotPrimitivesV2AbridgedHrmpChannel */1887export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1888 readonly maxCapacity: u32;1889 readonly maxTotalSize: u32;1890 readonly maxMessageSize: u32;1891 readonly msgCount: u32;1892 readonly totalSize: u32;1893 readonly mqcHead: Option<H256>;1894}18951896/** @name PolkadotPrimitivesV2PersistedValidationData */1897export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1898 readonly parentHead: Bytes;1899 readonly relayParentNumber: u32;1900 readonly relayParentStorageRoot: H256;1901 readonly maxPovSize: u32;1902}19031904/** @name PolkadotPrimitivesV2UpgradeRestriction */1905export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1906 readonly isPresent: boolean;1907 readonly type: 'Present';1908}19091910/** @name RmrkTraitsBaseBaseInfo */1911export interface RmrkTraitsBaseBaseInfo extends Struct {1912 readonly issuer: AccountId32;1913 readonly baseType: Bytes;1914 readonly symbol: Bytes;1915}19161917/** @name RmrkTraitsCollectionCollectionInfo */1918export interface RmrkTraitsCollectionCollectionInfo extends Struct {1919 readonly issuer: AccountId32;1920 readonly metadata: Bytes;1921 readonly max: Option<u32>;1922 readonly symbol: Bytes;1923 readonly nftsCount: u32;1924}19251926/** @name RmrkTraitsNftAccountIdOrCollectionNftTuple */1927export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1928 readonly isAccountId: boolean;1929 readonly asAccountId: AccountId32;1930 readonly isCollectionAndNftTuple: boolean;1931 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;1932 readonly type: 'AccountId' | 'CollectionAndNftTuple';1933}19341935/** @name RmrkTraitsNftNftChild */1936export interface RmrkTraitsNftNftChild extends Struct {1937 readonly collectionId: u32;1938 readonly nftId: u32;1939}19401941/** @name RmrkTraitsNftNftInfo */1942export interface RmrkTraitsNftNftInfo extends Struct {1943 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1944 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;1945 readonly metadata: Bytes;1946 readonly equipped: bool;1947 readonly pending: bool;1948}19491950/** @name RmrkTraitsNftRoyaltyInfo */1951export interface RmrkTraitsNftRoyaltyInfo extends Struct {1952 readonly recipient: AccountId32;1953 readonly amount: Permill;1954}19551956/** @name RmrkTraitsPartEquippableList */1957export interface RmrkTraitsPartEquippableList extends Enum {1958 readonly isAll: boolean;1959 readonly isEmpty: boolean;1960 readonly isCustom: boolean;1961 readonly asCustom: Vec<u32>;1962 readonly type: 'All' | 'Empty' | 'Custom';1963}19641965/** @name RmrkTraitsPartFixedPart */1966export interface RmrkTraitsPartFixedPart extends Struct {1967 readonly id: u32;1968 readonly z: u32;1969 readonly src: Bytes;1970}19711972/** @name RmrkTraitsPartPartType */1973export interface RmrkTraitsPartPartType extends Enum {1974 readonly isFixedPart: boolean;1975 readonly asFixedPart: RmrkTraitsPartFixedPart;1976 readonly isSlotPart: boolean;1977 readonly asSlotPart: RmrkTraitsPartSlotPart;1978 readonly type: 'FixedPart' | 'SlotPart';1979}19801981/** @name RmrkTraitsPartSlotPart */1982export interface RmrkTraitsPartSlotPart extends Struct {1983 readonly id: u32;1984 readonly equippable: RmrkTraitsPartEquippableList;1985 readonly src: Bytes;1986 readonly z: u32;1987}19881989/** @name RmrkTraitsPropertyPropertyInfo */1990export interface RmrkTraitsPropertyPropertyInfo extends Struct {1991 readonly key: Bytes;1992 readonly value: Bytes;1993}19941995/** @name RmrkTraitsResourceBasicResource */1996export interface RmrkTraitsResourceBasicResource extends Struct {1997 readonly src: Option<Bytes>;1998 readonly metadata: Option<Bytes>;1999 readonly license: Option<Bytes>;2000 readonly thumb: Option<Bytes>;2001}20022003/** @name RmrkTraitsResourceComposableResource */2004export interface RmrkTraitsResourceComposableResource extends Struct {2005 readonly parts: Vec<u32>;2006 readonly base: u32;2007 readonly src: Option<Bytes>;2008 readonly metadata: Option<Bytes>;2009 readonly license: Option<Bytes>;2010 readonly thumb: Option<Bytes>;2011}20122013/** @name RmrkTraitsResourceResourceInfo */2014export interface RmrkTraitsResourceResourceInfo extends Struct {2015 readonly id: u32;2016 readonly resource: RmrkTraitsResourceResourceTypes;2017 readonly pending: bool;2018 readonly pendingRemoval: bool;2019}20202021/** @name RmrkTraitsResourceResourceTypes */2022export interface RmrkTraitsResourceResourceTypes extends Enum {2023 readonly isBasic: boolean;2024 readonly asBasic: RmrkTraitsResourceBasicResource;2025 readonly isComposable: boolean;2026 readonly asComposable: RmrkTraitsResourceComposableResource;2027 readonly isSlot: boolean;2028 readonly asSlot: RmrkTraitsResourceSlotResource;2029 readonly type: 'Basic' | 'Composable' | 'Slot';2030}20312032/** @name RmrkTraitsResourceSlotResource */2033export interface RmrkTraitsResourceSlotResource extends Struct {2034 readonly base: u32;2035 readonly src: Option<Bytes>;2036 readonly metadata: Option<Bytes>;2037 readonly slot: u32;2038 readonly license: Option<Bytes>;2039 readonly thumb: Option<Bytes>;2040}20412042/** @name RmrkTraitsTheme */2043export interface RmrkTraitsTheme extends Struct {2044 readonly name: Bytes;2045 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2046 readonly inherit: bool;2047}20482049/** @name RmrkTraitsThemeThemeProperty */2050export interface RmrkTraitsThemeThemeProperty extends Struct {2051 readonly key: Bytes;2052 readonly value: Bytes;2053}20542055/** @name SpCoreEcdsaSignature */2056export interface SpCoreEcdsaSignature extends U8aFixed {}20572058/** @name SpCoreEd25519Signature */2059export interface SpCoreEd25519Signature extends U8aFixed {}20602061/** @name SpCoreSr25519Signature */2062export interface SpCoreSr25519Signature extends U8aFixed {}20632064/** @name SpRuntimeArithmeticError */2065export interface SpRuntimeArithmeticError extends Enum {2066 readonly isUnderflow: boolean;2067 readonly isOverflow: boolean;2068 readonly isDivisionByZero: boolean;2069 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2070}20712072/** @name SpRuntimeDigest */2073export interface SpRuntimeDigest extends Struct {2074 readonly logs: Vec<SpRuntimeDigestDigestItem>;2075}20762077/** @name SpRuntimeDigestDigestItem */2078export interface SpRuntimeDigestDigestItem extends Enum {2079 readonly isOther: boolean;2080 readonly asOther: Bytes;2081 readonly isConsensus: boolean;2082 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;2083 readonly isSeal: boolean;2084 readonly asSeal: ITuple<[U8aFixed, Bytes]>;2085 readonly isPreRuntime: boolean;2086 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;2087 readonly isRuntimeEnvironmentUpdated: boolean;2088 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2089}20902091/** @name SpRuntimeDispatchError */2092export interface SpRuntimeDispatchError extends Enum {2093 readonly isOther: boolean;2094 readonly isCannotLookup: boolean;2095 readonly isBadOrigin: boolean;2096 readonly isModule: boolean;2097 readonly asModule: SpRuntimeModuleError;2098 readonly isConsumerRemaining: boolean;2099 readonly isNoProviders: boolean;2100 readonly isTooManyConsumers: boolean;2101 readonly isToken: boolean;2102 readonly asToken: SpRuntimeTokenError;2103 readonly isArithmetic: boolean;2104 readonly asArithmetic: SpRuntimeArithmeticError;2105 readonly isTransactional: boolean;2106 readonly asTransactional: SpRuntimeTransactionalError;2107 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';2108}21092110/** @name SpRuntimeModuleError */2111export interface SpRuntimeModuleError extends Struct {2112 readonly index: u8;2113 readonly error: U8aFixed;2114}21152116/** @name SpRuntimeMultiSignature */2117export interface SpRuntimeMultiSignature extends Enum {2118 readonly isEd25519: boolean;2119 readonly asEd25519: SpCoreEd25519Signature;2120 readonly isSr25519: boolean;2121 readonly asSr25519: SpCoreSr25519Signature;2122 readonly isEcdsa: boolean;2123 readonly asEcdsa: SpCoreEcdsaSignature;2124 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2125}21262127/** @name SpRuntimeTokenError */2128export interface SpRuntimeTokenError extends Enum {2129 readonly isNoFunds: boolean;2130 readonly isWouldDie: boolean;2131 readonly isBelowMinimum: boolean;2132 readonly isCannotCreate: boolean;2133 readonly isUnknownAsset: boolean;2134 readonly isFrozen: boolean;2135 readonly isUnsupported: boolean;2136 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2137}21382139/** @name SpRuntimeTransactionalError */2140export interface SpRuntimeTransactionalError extends Enum {2141 readonly isLimitReached: boolean;2142 readonly isNoLayer: boolean;2143 readonly type: 'LimitReached' | 'NoLayer';2144}21452146/** @name SpTrieStorageProof */2147export interface SpTrieStorageProof extends Struct {2148 readonly trieNodes: BTreeSet<Bytes>;2149}21502151/** @name SpVersionRuntimeVersion */2152export interface SpVersionRuntimeVersion extends Struct {2153 readonly specName: Text;2154 readonly implName: Text;2155 readonly authoringVersion: u32;2156 readonly specVersion: u32;2157 readonly implVersion: u32;2158 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2159 readonly transactionVersion: u32;2160 readonly stateVersion: u8;2161}21622163/** @name UpDataStructsAccessMode */2164export interface UpDataStructsAccessMode extends Enum {2165 readonly isNormal: boolean;2166 readonly isAllowList: boolean;2167 readonly type: 'Normal' | 'AllowList';2168}21692170/** @name UpDataStructsCollection */2171export interface UpDataStructsCollection extends Struct {2172 readonly owner: AccountId32;2173 readonly mode: UpDataStructsCollectionMode;2174 readonly name: Vec<u16>;2175 readonly description: Vec<u16>;2176 readonly tokenPrefix: Bytes;2177 readonly sponsorship: UpDataStructsSponsorshipState;2178 readonly limits: UpDataStructsCollectionLimits;2179 readonly permissions: UpDataStructsCollectionPermissions;2180 readonly externalCollection: bool;2181}21822183/** @name UpDataStructsCollectionLimits */2184export interface UpDataStructsCollectionLimits extends Struct {2185 readonly accountTokenOwnershipLimit: Option<u32>;2186 readonly sponsoredDataSize: Option<u32>;2187 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2188 readonly tokenLimit: Option<u32>;2189 readonly sponsorTransferTimeout: Option<u32>;2190 readonly sponsorApproveTimeout: Option<u32>;2191 readonly ownerCanTransfer: Option<bool>;2192 readonly ownerCanDestroy: Option<bool>;2193 readonly transfersEnabled: Option<bool>;2194}21952196/** @name UpDataStructsCollectionMode */2197export interface UpDataStructsCollectionMode extends Enum {2198 readonly isNft: boolean;2199 readonly isFungible: boolean;2200 readonly asFungible: u8;2201 readonly isReFungible: boolean;2202 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2203}22042205/** @name UpDataStructsCollectionPermissions */2206export interface UpDataStructsCollectionPermissions extends Struct {2207 readonly access: Option<UpDataStructsAccessMode>;2208 readonly mintMode: Option<bool>;2209 readonly nesting: Option<UpDataStructsNestingRule>;2210}22112212/** @name UpDataStructsCollectionStats */2213export interface UpDataStructsCollectionStats extends Struct {2214 readonly created: u32;2215 readonly destroyed: u32;2216 readonly alive: u32;2217}22182219/** @name UpDataStructsCreateCollectionData */2220export interface UpDataStructsCreateCollectionData extends Struct {2221 readonly mode: UpDataStructsCollectionMode;2222 readonly access: Option<UpDataStructsAccessMode>;2223 readonly name: Vec<u16>;2224 readonly description: Vec<u16>;2225 readonly tokenPrefix: Bytes;2226 readonly pendingSponsor: Option<AccountId32>;2227 readonly limits: Option<UpDataStructsCollectionLimits>;2228 readonly permissions: Option<UpDataStructsCollectionPermissions>;2229 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2230 readonly properties: Vec<UpDataStructsProperty>;2231}22322233/** @name UpDataStructsCreateFungibleData */2234export interface UpDataStructsCreateFungibleData extends Struct {2235 readonly value: u128;2236}22372238/** @name UpDataStructsCreateItemData */2239export interface UpDataStructsCreateItemData extends Enum {2240 readonly isNft: boolean;2241 readonly asNft: UpDataStructsCreateNftData;2242 readonly isFungible: boolean;2243 readonly asFungible: UpDataStructsCreateFungibleData;2244 readonly isReFungible: boolean;2245 readonly asReFungible: UpDataStructsCreateReFungibleData;2246 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2247}22482249/** @name UpDataStructsCreateItemExData */2250export interface UpDataStructsCreateItemExData extends Enum {2251 readonly isNft: boolean;2252 readonly asNft: Vec<UpDataStructsCreateNftExData>;2253 readonly isFungible: boolean;2254 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr,u128>;2255 readonly isRefungibleMultipleItems: boolean;2256 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExData>;2257 readonly isRefungibleMultipleOwners: boolean;2258 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExData;2259 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2260}22612262/** @name UpDataStructsCreateNftData */2263export interface UpDataStructsCreateNftData extends Struct {2264 readonly properties: Vec<UpDataStructsProperty>;2265}22662267/** @name UpDataStructsCreateNftExData */2268export interface UpDataStructsCreateNftExData extends Struct {2269 readonly properties: Vec<UpDataStructsProperty>;2270 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2271}22722273/** @name UpDataStructsCreateReFungibleData */2274export interface UpDataStructsCreateReFungibleData extends Struct {2275 readonly constData: Bytes;2276 readonly pieces: u128;2277}22782279/** @name UpDataStructsCreateRefungibleExData */2280export interface UpDataStructsCreateRefungibleExData extends Struct {2281 readonly constData: Bytes;2282 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2283}22842285/** @name UpDataStructsNestingRule */2286export interface UpDataStructsNestingRule extends Enum {2287 readonly isDisabled: boolean;2288 readonly isOwner: boolean;2289 readonly isOwnerRestricted: boolean;2290 readonly asOwnerRestricted: BTreeSet<u32>;2291 readonly type: 'Disabled' | 'Owner' | 'OwnerRestricted';2292}22932294/** @name UpDataStructsProperties */2295export interface UpDataStructsProperties extends Struct {2296 readonly map: UpDataStructsPropertiesMapBoundedVec;2297 readonly consumedSpace: u32;2298 readonly spaceLimit: u32;2299}23002301/** @name UpDataStructsPropertiesMapBoundedVec */2302export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}23032304/** @name UpDataStructsPropertiesMapPropertyPermission */2305export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}23062307/** @name UpDataStructsProperty */2308export interface UpDataStructsProperty extends Struct {2309 readonly key: Bytes;2310 readonly value: Bytes;2311}23122313/** @name UpDataStructsPropertyKeyPermission */2314export interface UpDataStructsPropertyKeyPermission extends Struct {2315 readonly key: Bytes;2316 readonly permission: UpDataStructsPropertyPermission;2317}23182319/** @name UpDataStructsPropertyPermission */2320export interface UpDataStructsPropertyPermission extends Struct {2321 readonly mutable: bool;2322 readonly collectionAdmin: bool;2323 readonly tokenOwner: bool;2324}23252326/** @name UpDataStructsRpcCollection */2327export interface UpDataStructsRpcCollection extends Struct {2328 readonly owner: AccountId32;2329 readonly mode: UpDataStructsCollectionMode;2330 readonly name: Vec<u16>;2331 readonly description: Vec<u16>;2332 readonly tokenPrefix: Bytes;2333 readonly sponsorship: UpDataStructsSponsorshipState;2334 readonly limits: UpDataStructsCollectionLimits;2335 readonly permissions: UpDataStructsCollectionPermissions;2336 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2337 readonly properties: Vec<UpDataStructsProperty>;2338 readonly readOnly: bool;2339}23402341/** @name UpDataStructsSponsoringRateLimit */2342export interface UpDataStructsSponsoringRateLimit extends Enum {2343 readonly isSponsoringDisabled: boolean;2344 readonly isBlocks: boolean;2345 readonly asBlocks: u32;2346 readonly type: 'SponsoringDisabled' | 'Blocks';2347}23482349/** @name UpDataStructsSponsorshipState */2350export interface UpDataStructsSponsorshipState extends Enum {2351 readonly isDisabled: boolean;2352 readonly isUnconfirmed: boolean;2353 readonly asUnconfirmed: AccountId32;2354 readonly isConfirmed: boolean;2355 readonly asConfirmed: AccountId32;2356 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2357}23582359/** @name UpDataStructsTokenChild */2360export interface UpDataStructsTokenChild extends Struct {2361 readonly token: u32;2362 readonly collection: u32;2363}23642365/** @name UpDataStructsTokenData */2366export interface UpDataStructsTokenData extends Struct {2367 readonly properties: Vec<UpDataStructsProperty>;2368 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2369}23702371/** @name XcmDoubleEncoded */2372export interface XcmDoubleEncoded extends Struct {2373 readonly encoded: Bytes;2374}23752376/** @name XcmV0Junction */2377export interface XcmV0Junction extends Enum {2378 readonly isParent: boolean;2379 readonly isParachain: boolean;2380 readonly asParachain: Compact<u32>;2381 readonly isAccountId32: boolean;2382 readonly asAccountId32: {2383 readonly network: XcmV0JunctionNetworkId;2384 readonly id: U8aFixed;2385 } & Struct;2386 readonly isAccountIndex64: boolean;2387 readonly asAccountIndex64: {2388 readonly network: XcmV0JunctionNetworkId;2389 readonly index: Compact<u64>;2390 } & Struct;2391 readonly isAccountKey20: boolean;2392 readonly asAccountKey20: {2393 readonly network: XcmV0JunctionNetworkId;2394 readonly key: U8aFixed;2395 } & Struct;2396 readonly isPalletInstance: boolean;2397 readonly asPalletInstance: u8;2398 readonly isGeneralIndex: boolean;2399 readonly asGeneralIndex: Compact<u128>;2400 readonly isGeneralKey: boolean;2401 readonly asGeneralKey: Bytes;2402 readonly isOnlyChild: boolean;2403 readonly isPlurality: boolean;2404 readonly asPlurality: {2405 readonly id: XcmV0JunctionBodyId;2406 readonly part: XcmV0JunctionBodyPart;2407 } & Struct;2408 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';2409}24102411/** @name XcmV0JunctionBodyId */2412export interface XcmV0JunctionBodyId extends Enum {2413 readonly isUnit: boolean;2414 readonly isNamed: boolean;2415 readonly asNamed: Bytes;2416 readonly isIndex: boolean;2417 readonly asIndex: Compact<u32>;2418 readonly isExecutive: boolean;2419 readonly isTechnical: boolean;2420 readonly isLegislative: boolean;2421 readonly isJudicial: boolean;2422 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';2423}24242425/** @name XcmV0JunctionBodyPart */2426export interface XcmV0JunctionBodyPart extends Enum {2427 readonly isVoice: boolean;2428 readonly isMembers: boolean;2429 readonly asMembers: {2430 readonly count: Compact<u32>;2431 } & Struct;2432 readonly isFraction: boolean;2433 readonly asFraction: {2434 readonly nom: Compact<u32>;2435 readonly denom: Compact<u32>;2436 } & Struct;2437 readonly isAtLeastProportion: boolean;2438 readonly asAtLeastProportion: {2439 readonly nom: Compact<u32>;2440 readonly denom: Compact<u32>;2441 } & Struct;2442 readonly isMoreThanProportion: boolean;2443 readonly asMoreThanProportion: {2444 readonly nom: Compact<u32>;2445 readonly denom: Compact<u32>;2446 } & Struct;2447 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';2448}24492450/** @name XcmV0JunctionNetworkId */2451export interface XcmV0JunctionNetworkId extends Enum {2452 readonly isAny: boolean;2453 readonly isNamed: boolean;2454 readonly asNamed: Bytes;2455 readonly isPolkadot: boolean;2456 readonly isKusama: boolean;2457 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';2458}24592460/** @name XcmV0MultiAsset */2461export interface XcmV0MultiAsset extends Enum {2462 readonly isNone: boolean;2463 readonly isAll: boolean;2464 readonly isAllFungible: boolean;2465 readonly isAllNonFungible: boolean;2466 readonly isAllAbstractFungible: boolean;2467 readonly asAllAbstractFungible: {2468 readonly id: Bytes;2469 } & Struct;2470 readonly isAllAbstractNonFungible: boolean;2471 readonly asAllAbstractNonFungible: {2472 readonly class: Bytes;2473 } & Struct;2474 readonly isAllConcreteFungible: boolean;2475 readonly asAllConcreteFungible: {2476 readonly id: XcmV0MultiLocation;2477 } & Struct;2478 readonly isAllConcreteNonFungible: boolean;2479 readonly asAllConcreteNonFungible: {2480 readonly class: XcmV0MultiLocation;2481 } & Struct;2482 readonly isAbstractFungible: boolean;2483 readonly asAbstractFungible: {2484 readonly id: Bytes;2485 readonly amount: Compact<u128>;2486 } & Struct;2487 readonly isAbstractNonFungible: boolean;2488 readonly asAbstractNonFungible: {2489 readonly class: Bytes;2490 readonly instance: XcmV1MultiassetAssetInstance;2491 } & Struct;2492 readonly isConcreteFungible: boolean;2493 readonly asConcreteFungible: {2494 readonly id: XcmV0MultiLocation;2495 readonly amount: Compact<u128>;2496 } & Struct;2497 readonly isConcreteNonFungible: boolean;2498 readonly asConcreteNonFungible: {2499 readonly class: XcmV0MultiLocation;2500 readonly instance: XcmV1MultiassetAssetInstance;2501 } & Struct;2502 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';2503}25042505/** @name XcmV0MultiLocation */2506export interface XcmV0MultiLocation extends Enum {2507 readonly isNull: boolean;2508 readonly isX1: boolean;2509 readonly asX1: XcmV0Junction;2510 readonly isX2: boolean;2511 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;2512 readonly isX3: boolean;2513 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2514 readonly isX4: boolean;2515 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2516 readonly isX5: boolean;2517 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2518 readonly isX6: boolean;2519 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2520 readonly isX7: boolean;2521 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2522 readonly isX8: boolean;2523 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2524 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';2525}25262527/** @name XcmV0Order */2528export interface XcmV0Order extends Enum {2529 readonly isNull: boolean;2530 readonly isDepositAsset: boolean;2531 readonly asDepositAsset: {2532 readonly assets: Vec<XcmV0MultiAsset>;2533 readonly dest: XcmV0MultiLocation;2534 } & Struct;2535 readonly isDepositReserveAsset: boolean;2536 readonly asDepositReserveAsset: {2537 readonly assets: Vec<XcmV0MultiAsset>;2538 readonly dest: XcmV0MultiLocation;2539 readonly effects: Vec<XcmV0Order>;2540 } & Struct;2541 readonly isExchangeAsset: boolean;2542 readonly asExchangeAsset: {2543 readonly give: Vec<XcmV0MultiAsset>;2544 readonly receive: Vec<XcmV0MultiAsset>;2545 } & Struct;2546 readonly isInitiateReserveWithdraw: boolean;2547 readonly asInitiateReserveWithdraw: {2548 readonly assets: Vec<XcmV0MultiAsset>;2549 readonly reserve: XcmV0MultiLocation;2550 readonly effects: Vec<XcmV0Order>;2551 } & Struct;2552 readonly isInitiateTeleport: boolean;2553 readonly asInitiateTeleport: {2554 readonly assets: Vec<XcmV0MultiAsset>;2555 readonly dest: XcmV0MultiLocation;2556 readonly effects: Vec<XcmV0Order>;2557 } & Struct;2558 readonly isQueryHolding: boolean;2559 readonly asQueryHolding: {2560 readonly queryId: Compact<u64>;2561 readonly dest: XcmV0MultiLocation;2562 readonly assets: Vec<XcmV0MultiAsset>;2563 } & Struct;2564 readonly isBuyExecution: boolean;2565 readonly asBuyExecution: {2566 readonly fees: XcmV0MultiAsset;2567 readonly weight: u64;2568 readonly debt: u64;2569 readonly haltOnError: bool;2570 readonly xcm: Vec<XcmV0Xcm>;2571 } & Struct;2572 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2573}25742575/** @name XcmV0OriginKind */2576export interface XcmV0OriginKind extends Enum {2577 readonly isNative: boolean;2578 readonly isSovereignAccount: boolean;2579 readonly isSuperuser: boolean;2580 readonly isXcm: boolean;2581 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';2582}25832584/** @name XcmV0Response */2585export interface XcmV0Response extends Enum {2586 readonly isAssets: boolean;2587 readonly asAssets: Vec<XcmV0MultiAsset>;2588 readonly type: 'Assets';2589}25902591/** @name XcmV0Xcm */2592export interface XcmV0Xcm extends Enum {2593 readonly isWithdrawAsset: boolean;2594 readonly asWithdrawAsset: {2595 readonly assets: Vec<XcmV0MultiAsset>;2596 readonly effects: Vec<XcmV0Order>;2597 } & Struct;2598 readonly isReserveAssetDeposit: boolean;2599 readonly asReserveAssetDeposit: {2600 readonly assets: Vec<XcmV0MultiAsset>;2601 readonly effects: Vec<XcmV0Order>;2602 } & Struct;2603 readonly isTeleportAsset: boolean;2604 readonly asTeleportAsset: {2605 readonly assets: Vec<XcmV0MultiAsset>;2606 readonly effects: Vec<XcmV0Order>;2607 } & Struct;2608 readonly isQueryResponse: boolean;2609 readonly asQueryResponse: {2610 readonly queryId: Compact<u64>;2611 readonly response: XcmV0Response;2612 } & Struct;2613 readonly isTransferAsset: boolean;2614 readonly asTransferAsset: {2615 readonly assets: Vec<XcmV0MultiAsset>;2616 readonly dest: XcmV0MultiLocation;2617 } & Struct;2618 readonly isTransferReserveAsset: boolean;2619 readonly asTransferReserveAsset: {2620 readonly assets: Vec<XcmV0MultiAsset>;2621 readonly dest: XcmV0MultiLocation;2622 readonly effects: Vec<XcmV0Order>;2623 } & Struct;2624 readonly isTransact: boolean;2625 readonly asTransact: {2626 readonly originType: XcmV0OriginKind;2627 readonly requireWeightAtMost: u64;2628 readonly call: XcmDoubleEncoded;2629 } & Struct;2630 readonly isHrmpNewChannelOpenRequest: boolean;2631 readonly asHrmpNewChannelOpenRequest: {2632 readonly sender: Compact<u32>;2633 readonly maxMessageSize: Compact<u32>;2634 readonly maxCapacity: Compact<u32>;2635 } & Struct;2636 readonly isHrmpChannelAccepted: boolean;2637 readonly asHrmpChannelAccepted: {2638 readonly recipient: Compact<u32>;2639 } & Struct;2640 readonly isHrmpChannelClosing: boolean;2641 readonly asHrmpChannelClosing: {2642 readonly initiator: Compact<u32>;2643 readonly sender: Compact<u32>;2644 readonly recipient: Compact<u32>;2645 } & Struct;2646 readonly isRelayedFrom: boolean;2647 readonly asRelayedFrom: {2648 readonly who: XcmV0MultiLocation;2649 readonly message: XcmV0Xcm;2650 } & Struct;2651 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2652}26532654/** @name XcmV1Junction */2655export interface XcmV1Junction extends Enum {2656 readonly isParachain: boolean;2657 readonly asParachain: Compact<u32>;2658 readonly isAccountId32: boolean;2659 readonly asAccountId32: {2660 readonly network: XcmV0JunctionNetworkId;2661 readonly id: U8aFixed;2662 } & Struct;2663 readonly isAccountIndex64: boolean;2664 readonly asAccountIndex64: {2665 readonly network: XcmV0JunctionNetworkId;2666 readonly index: Compact<u64>;2667 } & Struct;2668 readonly isAccountKey20: boolean;2669 readonly asAccountKey20: {2670 readonly network: XcmV0JunctionNetworkId;2671 readonly key: U8aFixed;2672 } & Struct;2673 readonly isPalletInstance: boolean;2674 readonly asPalletInstance: u8;2675 readonly isGeneralIndex: boolean;2676 readonly asGeneralIndex: Compact<u128>;2677 readonly isGeneralKey: boolean;2678 readonly asGeneralKey: Bytes;2679 readonly isOnlyChild: boolean;2680 readonly isPlurality: boolean;2681 readonly asPlurality: {2682 readonly id: XcmV0JunctionBodyId;2683 readonly part: XcmV0JunctionBodyPart;2684 } & Struct;2685 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';2686}26872688/** @name XcmV1MultiAsset */2689export interface XcmV1MultiAsset extends Struct {2690 readonly id: XcmV1MultiassetAssetId;2691 readonly fun: XcmV1MultiassetFungibility;2692}26932694/** @name XcmV1MultiassetAssetId */2695export interface XcmV1MultiassetAssetId extends Enum {2696 readonly isConcrete: boolean;2697 readonly asConcrete: XcmV1MultiLocation;2698 readonly isAbstract: boolean;2699 readonly asAbstract: Bytes;2700 readonly type: 'Concrete' | 'Abstract';2701}27022703/** @name XcmV1MultiassetAssetInstance */2704export interface XcmV1MultiassetAssetInstance extends Enum {2705 readonly isUndefined: boolean;2706 readonly isIndex: boolean;2707 readonly asIndex: Compact<u128>;2708 readonly isArray4: boolean;2709 readonly asArray4: U8aFixed;2710 readonly isArray8: boolean;2711 readonly asArray8: U8aFixed;2712 readonly isArray16: boolean;2713 readonly asArray16: U8aFixed;2714 readonly isArray32: boolean;2715 readonly asArray32: U8aFixed;2716 readonly isBlob: boolean;2717 readonly asBlob: Bytes;2718 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';2719}27202721/** @name XcmV1MultiassetFungibility */2722export interface XcmV1MultiassetFungibility extends Enum {2723 readonly isFungible: boolean;2724 readonly asFungible: Compact<u128>;2725 readonly isNonFungible: boolean;2726 readonly asNonFungible: XcmV1MultiassetAssetInstance;2727 readonly type: 'Fungible' | 'NonFungible';2728}27292730/** @name XcmV1MultiassetMultiAssetFilter */2731export interface XcmV1MultiassetMultiAssetFilter extends Enum {2732 readonly isDefinite: boolean;2733 readonly asDefinite: XcmV1MultiassetMultiAssets;2734 readonly isWild: boolean;2735 readonly asWild: XcmV1MultiassetWildMultiAsset;2736 readonly type: 'Definite' | 'Wild';2737}27382739/** @name XcmV1MultiassetMultiAssets */2740export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}27412742/** @name XcmV1MultiassetWildFungibility */2743export interface XcmV1MultiassetWildFungibility extends Enum {2744 readonly isFungible: boolean;2745 readonly isNonFungible: boolean;2746 readonly type: 'Fungible' | 'NonFungible';2747}27482749/** @name XcmV1MultiassetWildMultiAsset */2750export interface XcmV1MultiassetWildMultiAsset extends Enum {2751 readonly isAll: boolean;2752 readonly isAllOf: boolean;2753 readonly asAllOf: {2754 readonly id: XcmV1MultiassetAssetId;2755 readonly fun: XcmV1MultiassetWildFungibility;2756 } & Struct;2757 readonly type: 'All' | 'AllOf';2758}27592760/** @name XcmV1MultiLocation */2761export interface XcmV1MultiLocation extends Struct {2762 readonly parents: u8;2763 readonly interior: XcmV1MultilocationJunctions;2764}27652766/** @name XcmV1MultilocationJunctions */2767export interface XcmV1MultilocationJunctions extends Enum {2768 readonly isHere: boolean;2769 readonly isX1: boolean;2770 readonly asX1: XcmV1Junction;2771 readonly isX2: boolean;2772 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;2773 readonly isX3: boolean;2774 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2775 readonly isX4: boolean;2776 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2777 readonly isX5: boolean;2778 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2779 readonly isX6: boolean;2780 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2781 readonly isX7: boolean;2782 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2783 readonly isX8: boolean;2784 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2785 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';2786}27872788/** @name XcmV1Order */2789export interface XcmV1Order extends Enum {2790 readonly isNoop: boolean;2791 readonly isDepositAsset: boolean;2792 readonly asDepositAsset: {2793 readonly assets: XcmV1MultiassetMultiAssetFilter;2794 readonly maxAssets: u32;2795 readonly beneficiary: XcmV1MultiLocation;2796 } & Struct;2797 readonly isDepositReserveAsset: boolean;2798 readonly asDepositReserveAsset: {2799 readonly assets: XcmV1MultiassetMultiAssetFilter;2800 readonly maxAssets: u32;2801 readonly dest: XcmV1MultiLocation;2802 readonly effects: Vec<XcmV1Order>;2803 } & Struct;2804 readonly isExchangeAsset: boolean;2805 readonly asExchangeAsset: {2806 readonly give: XcmV1MultiassetMultiAssetFilter;2807 readonly receive: XcmV1MultiassetMultiAssets;2808 } & Struct;2809 readonly isInitiateReserveWithdraw: boolean;2810 readonly asInitiateReserveWithdraw: {2811 readonly assets: XcmV1MultiassetMultiAssetFilter;2812 readonly reserve: XcmV1MultiLocation;2813 readonly effects: Vec<XcmV1Order>;2814 } & Struct;2815 readonly isInitiateTeleport: boolean;2816 readonly asInitiateTeleport: {2817 readonly assets: XcmV1MultiassetMultiAssetFilter;2818 readonly dest: XcmV1MultiLocation;2819 readonly effects: Vec<XcmV1Order>;2820 } & Struct;2821 readonly isQueryHolding: boolean;2822 readonly asQueryHolding: {2823 readonly queryId: Compact<u64>;2824 readonly dest: XcmV1MultiLocation;2825 readonly assets: XcmV1MultiassetMultiAssetFilter;2826 } & Struct;2827 readonly isBuyExecution: boolean;2828 readonly asBuyExecution: {2829 readonly fees: XcmV1MultiAsset;2830 readonly weight: u64;2831 readonly debt: u64;2832 readonly haltOnError: bool;2833 readonly instructions: Vec<XcmV1Xcm>;2834 } & Struct;2835 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2836}28372838/** @name XcmV1Response */2839export interface XcmV1Response extends Enum {2840 readonly isAssets: boolean;2841 readonly asAssets: XcmV1MultiassetMultiAssets;2842 readonly isVersion: boolean;2843 readonly asVersion: u32;2844 readonly type: 'Assets' | 'Version';2845}28462847/** @name XcmV1Xcm */2848export interface XcmV1Xcm extends Enum {2849 readonly isWithdrawAsset: boolean;2850 readonly asWithdrawAsset: {2851 readonly assets: XcmV1MultiassetMultiAssets;2852 readonly effects: Vec<XcmV1Order>;2853 } & Struct;2854 readonly isReserveAssetDeposited: boolean;2855 readonly asReserveAssetDeposited: {2856 readonly assets: XcmV1MultiassetMultiAssets;2857 readonly effects: Vec<XcmV1Order>;2858 } & Struct;2859 readonly isReceiveTeleportedAsset: boolean;2860 readonly asReceiveTeleportedAsset: {2861 readonly assets: XcmV1MultiassetMultiAssets;2862 readonly effects: Vec<XcmV1Order>;2863 } & Struct;2864 readonly isQueryResponse: boolean;2865 readonly asQueryResponse: {2866 readonly queryId: Compact<u64>;2867 readonly response: XcmV1Response;2868 } & Struct;2869 readonly isTransferAsset: boolean;2870 readonly asTransferAsset: {2871 readonly assets: XcmV1MultiassetMultiAssets;2872 readonly beneficiary: XcmV1MultiLocation;2873 } & Struct;2874 readonly isTransferReserveAsset: boolean;2875 readonly asTransferReserveAsset: {2876 readonly assets: XcmV1MultiassetMultiAssets;2877 readonly dest: XcmV1MultiLocation;2878 readonly effects: Vec<XcmV1Order>;2879 } & Struct;2880 readonly isTransact: boolean;2881 readonly asTransact: {2882 readonly originType: XcmV0OriginKind;2883 readonly requireWeightAtMost: u64;2884 readonly call: XcmDoubleEncoded;2885 } & Struct;2886 readonly isHrmpNewChannelOpenRequest: boolean;2887 readonly asHrmpNewChannelOpenRequest: {2888 readonly sender: Compact<u32>;2889 readonly maxMessageSize: Compact<u32>;2890 readonly maxCapacity: Compact<u32>;2891 } & Struct;2892 readonly isHrmpChannelAccepted: boolean;2893 readonly asHrmpChannelAccepted: {2894 readonly recipient: Compact<u32>;2895 } & Struct;2896 readonly isHrmpChannelClosing: boolean;2897 readonly asHrmpChannelClosing: {2898 readonly initiator: Compact<u32>;2899 readonly sender: Compact<u32>;2900 readonly recipient: Compact<u32>;2901 } & Struct;2902 readonly isRelayedFrom: boolean;2903 readonly asRelayedFrom: {2904 readonly who: XcmV1MultilocationJunctions;2905 readonly message: XcmV1Xcm;2906 } & Struct;2907 readonly isSubscribeVersion: boolean;2908 readonly asSubscribeVersion: {2909 readonly queryId: Compact<u64>;2910 readonly maxResponseWeight: Compact<u64>;2911 } & Struct;2912 readonly isUnsubscribeVersion: boolean;2913 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2914}29152916/** @name XcmV2Instruction */2917export interface XcmV2Instruction extends Enum {2918 readonly isWithdrawAsset: boolean;2919 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;2920 readonly isReserveAssetDeposited: boolean;2921 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;2922 readonly isReceiveTeleportedAsset: boolean;2923 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;2924 readonly isQueryResponse: boolean;2925 readonly asQueryResponse: {2926 readonly queryId: Compact<u64>;2927 readonly response: XcmV2Response;2928 readonly maxWeight: Compact<u64>;2929 } & Struct;2930 readonly isTransferAsset: boolean;2931 readonly asTransferAsset: {2932 readonly assets: XcmV1MultiassetMultiAssets;2933 readonly beneficiary: XcmV1MultiLocation;2934 } & Struct;2935 readonly isTransferReserveAsset: boolean;2936 readonly asTransferReserveAsset: {2937 readonly assets: XcmV1MultiassetMultiAssets;2938 readonly dest: XcmV1MultiLocation;2939 readonly xcm: XcmV2Xcm;2940 } & Struct;2941 readonly isTransact: boolean;2942 readonly asTransact: {2943 readonly originType: XcmV0OriginKind;2944 readonly requireWeightAtMost: Compact<u64>;2945 readonly call: XcmDoubleEncoded;2946 } & Struct;2947 readonly isHrmpNewChannelOpenRequest: boolean;2948 readonly asHrmpNewChannelOpenRequest: {2949 readonly sender: Compact<u32>;2950 readonly maxMessageSize: Compact<u32>;2951 readonly maxCapacity: Compact<u32>;2952 } & Struct;2953 readonly isHrmpChannelAccepted: boolean;2954 readonly asHrmpChannelAccepted: {2955 readonly recipient: Compact<u32>;2956 } & Struct;2957 readonly isHrmpChannelClosing: boolean;2958 readonly asHrmpChannelClosing: {2959 readonly initiator: Compact<u32>;2960 readonly sender: Compact<u32>;2961 readonly recipient: Compact<u32>;2962 } & Struct;2963 readonly isClearOrigin: boolean;2964 readonly isDescendOrigin: boolean;2965 readonly asDescendOrigin: XcmV1MultilocationJunctions;2966 readonly isReportError: boolean;2967 readonly asReportError: {2968 readonly queryId: Compact<u64>;2969 readonly dest: XcmV1MultiLocation;2970 readonly maxResponseWeight: Compact<u64>;2971 } & Struct;2972 readonly isDepositAsset: boolean;2973 readonly asDepositAsset: {2974 readonly assets: XcmV1MultiassetMultiAssetFilter;2975 readonly maxAssets: Compact<u32>;2976 readonly beneficiary: XcmV1MultiLocation;2977 } & Struct;2978 readonly isDepositReserveAsset: boolean;2979 readonly asDepositReserveAsset: {2980 readonly assets: XcmV1MultiassetMultiAssetFilter;2981 readonly maxAssets: Compact<u32>;2982 readonly dest: XcmV1MultiLocation;2983 readonly xcm: XcmV2Xcm;2984 } & Struct;2985 readonly isExchangeAsset: boolean;2986 readonly asExchangeAsset: {2987 readonly give: XcmV1MultiassetMultiAssetFilter;2988 readonly receive: XcmV1MultiassetMultiAssets;2989 } & Struct;2990 readonly isInitiateReserveWithdraw: boolean;2991 readonly asInitiateReserveWithdraw: {2992 readonly assets: XcmV1MultiassetMultiAssetFilter;2993 readonly reserve: XcmV1MultiLocation;2994 readonly xcm: XcmV2Xcm;2995 } & Struct;2996 readonly isInitiateTeleport: boolean;2997 readonly asInitiateTeleport: {2998 readonly assets: XcmV1MultiassetMultiAssetFilter;2999 readonly dest: XcmV1MultiLocation;3000 readonly xcm: XcmV2Xcm;3001 } & Struct;3002 readonly isQueryHolding: boolean;3003 readonly asQueryHolding: {3004 readonly queryId: Compact<u64>;3005 readonly dest: XcmV1MultiLocation;3006 readonly assets: XcmV1MultiassetMultiAssetFilter;3007 readonly maxResponseWeight: Compact<u64>;3008 } & Struct;3009 readonly isBuyExecution: boolean;3010 readonly asBuyExecution: {3011 readonly fees: XcmV1MultiAsset;3012 readonly weightLimit: XcmV2WeightLimit;3013 } & Struct;3014 readonly isRefundSurplus: boolean;3015 readonly isSetErrorHandler: boolean;3016 readonly asSetErrorHandler: XcmV2Xcm;3017 readonly isSetAppendix: boolean;3018 readonly asSetAppendix: XcmV2Xcm;3019 readonly isClearError: boolean;3020 readonly isClaimAsset: boolean;3021 readonly asClaimAsset: {3022 readonly assets: XcmV1MultiassetMultiAssets;3023 readonly ticket: XcmV1MultiLocation;3024 } & Struct;3025 readonly isTrap: boolean;3026 readonly asTrap: Compact<u64>;3027 readonly isSubscribeVersion: boolean;3028 readonly asSubscribeVersion: {3029 readonly queryId: Compact<u64>;3030 readonly maxResponseWeight: Compact<u64>;3031 } & Struct;3032 readonly isUnsubscribeVersion: boolean;3033 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';3034}30353036/** @name XcmV2Response */3037export interface XcmV2Response extends Enum {3038 readonly isNull: boolean;3039 readonly isAssets: boolean;3040 readonly asAssets: XcmV1MultiassetMultiAssets;3041 readonly isExecutionResult: boolean;3042 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;3043 readonly isVersion: boolean;3044 readonly asVersion: u32;3045 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';3046}30473048/** @name XcmV2TraitsError */3049export interface XcmV2TraitsError extends Enum {3050 readonly isOverflow: boolean;3051 readonly isUnimplemented: boolean;3052 readonly isUntrustedReserveLocation: boolean;3053 readonly isUntrustedTeleportLocation: boolean;3054 readonly isMultiLocationFull: boolean;3055 readonly isMultiLocationNotInvertible: boolean;3056 readonly isBadOrigin: boolean;3057 readonly isInvalidLocation: boolean;3058 readonly isAssetNotFound: boolean;3059 readonly isFailedToTransactAsset: boolean;3060 readonly isNotWithdrawable: boolean;3061 readonly isLocationCannotHold: boolean;3062 readonly isExceedsMaxMessageSize: boolean;3063 readonly isDestinationUnsupported: boolean;3064 readonly isTransport: boolean;3065 readonly isUnroutable: boolean;3066 readonly isUnknownClaim: boolean;3067 readonly isFailedToDecode: boolean;3068 readonly isMaxWeightInvalid: boolean;3069 readonly isNotHoldingFees: boolean;3070 readonly isTooExpensive: boolean;3071 readonly isTrap: boolean;3072 readonly asTrap: u64;3073 readonly isUnhandledXcmVersion: boolean;3074 readonly isWeightLimitReached: boolean;3075 readonly asWeightLimitReached: u64;3076 readonly isBarrier: boolean;3077 readonly isWeightNotComputable: boolean;3078 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';3079}30803081/** @name XcmV2TraitsOutcome */3082export interface XcmV2TraitsOutcome extends Enum {3083 readonly isComplete: boolean;3084 readonly asComplete: u64;3085 readonly isIncomplete: boolean;3086 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;3087 readonly isError: boolean;3088 readonly asError: XcmV2TraitsError;3089 readonly type: 'Complete' | 'Incomplete' | 'Error';3090}30913092/** @name XcmV2WeightLimit */3093export interface XcmV2WeightLimit extends Enum {3094 readonly isUnlimited: boolean;3095 readonly isLimited: boolean;3096 readonly asLimited: Compact<u64>;3097 readonly type: 'Unlimited' | 'Limited';3098}30993100/** @name XcmV2Xcm */3101export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}31023103/** @name XcmVersionedMultiAssets */3104export interface XcmVersionedMultiAssets extends Enum {3105 readonly isV0: boolean;3106 readonly asV0: Vec<XcmV0MultiAsset>;3107 readonly isV1: boolean;3108 readonly asV1: XcmV1MultiassetMultiAssets;3109 readonly type: 'V0' | 'V1';3110}31113112/** @name XcmVersionedMultiLocation */3113export interface XcmVersionedMultiLocation extends Enum {3114 readonly isV0: boolean;3115 readonly asV0: XcmV0MultiLocation;3116 readonly isV1: boolean;3117 readonly asV1: XcmV1MultiLocation;3118 readonly type: 'V0' | 'V1';3119}31203121/** @name XcmVersionedXcm */3122export interface XcmVersionedXcm extends Enum {3123 readonly isV0: boolean;3124 readonly asV0: XcmV0Xcm;3125 readonly isV1: boolean;3126 readonly asV1: XcmV1Xcm;3127 readonly isV2: boolean;3128 readonly asV2: XcmV2Xcm;3129 readonly type: 'V0' | 'V1' | 'V2';3130}31313132export type PHANTOM_DEFAULT = 'default';1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';5import type { ITuple } from '@polkadot/types-codec/types';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';7import type { Event } from '@polkadot/types/interfaces/system';89/** @name CumulusPalletDmpQueueCall */10export interface CumulusPalletDmpQueueCall extends Enum {11 readonly isServiceOverweight: boolean;12 readonly asServiceOverweight: {13 readonly index: u64;14 readonly weightLimit: u64;15 } & Struct;16 readonly type: 'ServiceOverweight';17}1819/** @name CumulusPalletDmpQueueConfigData */20export interface CumulusPalletDmpQueueConfigData extends Struct {21 readonly maxIndividual: u64;22}2324/** @name CumulusPalletDmpQueueError */25export interface CumulusPalletDmpQueueError extends Enum {26 readonly isUnknown: boolean;27 readonly isOverLimit: boolean;28 readonly type: 'Unknown' | 'OverLimit';29}3031/** @name CumulusPalletDmpQueueEvent */32export interface CumulusPalletDmpQueueEvent extends Enum {33 readonly isInvalidFormat: boolean;34 readonly asInvalidFormat: U8aFixed;35 readonly isUnsupportedVersion: boolean;36 readonly asUnsupportedVersion: U8aFixed;37 readonly isExecutedDownward: boolean;38 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;39 readonly isWeightExhausted: boolean;40 readonly asWeightExhausted: ITuple<[U8aFixed, u64, u64]>;41 readonly isOverweightEnqueued: boolean;42 readonly asOverweightEnqueued: ITuple<[U8aFixed, u64, u64]>;43 readonly isOverweightServiced: boolean;44 readonly asOverweightServiced: ITuple<[u64, u64]>;45 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';46}4748/** @name CumulusPalletDmpQueuePageIndexData */49export interface CumulusPalletDmpQueuePageIndexData extends Struct {50 readonly beginUsed: u32;51 readonly endUsed: u32;52 readonly overweightCount: u64;53}5455/** @name CumulusPalletParachainSystemCall */56export interface CumulusPalletParachainSystemCall extends Enum {57 readonly isSetValidationData: boolean;58 readonly asSetValidationData: {59 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;60 } & Struct;61 readonly isSudoSendUpwardMessage: boolean;62 readonly asSudoSendUpwardMessage: {63 readonly message: Bytes;64 } & Struct;65 readonly isAuthorizeUpgrade: boolean;66 readonly asAuthorizeUpgrade: {67 readonly codeHash: H256;68 } & Struct;69 readonly isEnactAuthorizedUpgrade: boolean;70 readonly asEnactAuthorizedUpgrade: {71 readonly code: Bytes;72 } & Struct;73 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';74}7576/** @name CumulusPalletParachainSystemError */77export interface CumulusPalletParachainSystemError extends Enum {78 readonly isOverlappingUpgrades: boolean;79 readonly isProhibitedByPolkadot: boolean;80 readonly isTooBig: boolean;81 readonly isValidationDataNotAvailable: boolean;82 readonly isHostConfigurationNotAvailable: boolean;83 readonly isNotScheduled: boolean;84 readonly isNothingAuthorized: boolean;85 readonly isUnauthorized: boolean;86 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';87}8889/** @name CumulusPalletParachainSystemEvent */90export interface CumulusPalletParachainSystemEvent extends Enum {91 readonly isValidationFunctionStored: boolean;92 readonly isValidationFunctionApplied: boolean;93 readonly asValidationFunctionApplied: u32;94 readonly isValidationFunctionDiscarded: boolean;95 readonly isUpgradeAuthorized: boolean;96 readonly asUpgradeAuthorized: H256;97 readonly isDownwardMessagesReceived: boolean;98 readonly asDownwardMessagesReceived: u32;99 readonly isDownwardMessagesProcessed: boolean;100 readonly asDownwardMessagesProcessed: ITuple<[u64, H256]>;101 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';102}103104/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */105export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {106 readonly dmqMqcHead: H256;107 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;108 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;109 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;110}111112/** @name CumulusPalletXcmCall */113export interface CumulusPalletXcmCall extends Null {}114115/** @name CumulusPalletXcmError */116export interface CumulusPalletXcmError extends Null {}117118/** @name CumulusPalletXcmEvent */119export interface CumulusPalletXcmEvent extends Enum {120 readonly isInvalidFormat: boolean;121 readonly asInvalidFormat: U8aFixed;122 readonly isUnsupportedVersion: boolean;123 readonly asUnsupportedVersion: U8aFixed;124 readonly isExecutedDownward: boolean;125 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;126 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';127}128129/** @name CumulusPalletXcmOrigin */130export interface CumulusPalletXcmOrigin extends Enum {131 readonly isRelay: boolean;132 readonly isSiblingParachain: boolean;133 readonly asSiblingParachain: u32;134 readonly type: 'Relay' | 'SiblingParachain';135}136137/** @name CumulusPalletXcmpQueueCall */138export interface CumulusPalletXcmpQueueCall extends Enum {139 readonly isServiceOverweight: boolean;140 readonly asServiceOverweight: {141 readonly index: u64;142 readonly weightLimit: u64;143 } & Struct;144 readonly isSuspendXcmExecution: boolean;145 readonly isResumeXcmExecution: boolean;146 readonly isUpdateSuspendThreshold: boolean;147 readonly asUpdateSuspendThreshold: {148 readonly new_: u32;149 } & Struct;150 readonly isUpdateDropThreshold: boolean;151 readonly asUpdateDropThreshold: {152 readonly new_: u32;153 } & Struct;154 readonly isUpdateResumeThreshold: boolean;155 readonly asUpdateResumeThreshold: {156 readonly new_: u32;157 } & Struct;158 readonly isUpdateThresholdWeight: boolean;159 readonly asUpdateThresholdWeight: {160 readonly new_: u64;161 } & Struct;162 readonly isUpdateWeightRestrictDecay: boolean;163 readonly asUpdateWeightRestrictDecay: {164 readonly new_: u64;165 } & Struct;166 readonly isUpdateXcmpMaxIndividualWeight: boolean;167 readonly asUpdateXcmpMaxIndividualWeight: {168 readonly new_: u64;169 } & Struct;170 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';171}172173/** @name CumulusPalletXcmpQueueError */174export interface CumulusPalletXcmpQueueError extends Enum {175 readonly isFailedToSend: boolean;176 readonly isBadXcmOrigin: boolean;177 readonly isBadXcm: boolean;178 readonly isBadOverweightIndex: boolean;179 readonly isWeightOverLimit: boolean;180 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';181}182183/** @name CumulusPalletXcmpQueueEvent */184export interface CumulusPalletXcmpQueueEvent extends Enum {185 readonly isSuccess: boolean;186 readonly asSuccess: Option<H256>;187 readonly isFail: boolean;188 readonly asFail: ITuple<[Option<H256>, XcmV2TraitsError]>;189 readonly isBadVersion: boolean;190 readonly asBadVersion: Option<H256>;191 readonly isBadFormat: boolean;192 readonly asBadFormat: Option<H256>;193 readonly isUpwardMessageSent: boolean;194 readonly asUpwardMessageSent: Option<H256>;195 readonly isXcmpMessageSent: boolean;196 readonly asXcmpMessageSent: Option<H256>;197 readonly isOverweightEnqueued: boolean;198 readonly asOverweightEnqueued: ITuple<[u32, u32, u64, u64]>;199 readonly isOverweightServiced: boolean;200 readonly asOverweightServiced: ITuple<[u64, u64]>;201 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';202}203204/** @name CumulusPalletXcmpQueueInboundChannelDetails */205export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {206 readonly sender: u32;207 readonly state: CumulusPalletXcmpQueueInboundState;208 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;209}210211/** @name CumulusPalletXcmpQueueInboundState */212export interface CumulusPalletXcmpQueueInboundState extends Enum {213 readonly isOk: boolean;214 readonly isSuspended: boolean;215 readonly type: 'Ok' | 'Suspended';216}217218/** @name CumulusPalletXcmpQueueOutboundChannelDetails */219export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {220 readonly recipient: u32;221 readonly state: CumulusPalletXcmpQueueOutboundState;222 readonly signalsExist: bool;223 readonly firstIndex: u16;224 readonly lastIndex: u16;225}226227/** @name CumulusPalletXcmpQueueOutboundState */228export interface CumulusPalletXcmpQueueOutboundState extends Enum {229 readonly isOk: boolean;230 readonly isSuspended: boolean;231 readonly type: 'Ok' | 'Suspended';232}233234/** @name CumulusPalletXcmpQueueQueueConfigData */235export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {236 readonly suspendThreshold: u32;237 readonly dropThreshold: u32;238 readonly resumeThreshold: u32;239 readonly thresholdWeight: u64;240 readonly weightRestrictDecay: u64;241 readonly xcmpMaxIndividualWeight: u64;242}243244/** @name CumulusPrimitivesParachainInherentParachainInherentData */245export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {246 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;247 readonly relayChainState: SpTrieStorageProof;248 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;249 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;250}251252/** @name EthbloomBloom */253export interface EthbloomBloom extends U8aFixed {}254255/** @name EthereumBlock */256export interface EthereumBlock extends Struct {257 readonly header: EthereumHeader;258 readonly transactions: Vec<EthereumTransactionTransactionV2>;259 readonly ommers: Vec<EthereumHeader>;260}261262/** @name EthereumHeader */263export interface EthereumHeader extends Struct {264 readonly parentHash: H256;265 readonly ommersHash: H256;266 readonly beneficiary: H160;267 readonly stateRoot: H256;268 readonly transactionsRoot: H256;269 readonly receiptsRoot: H256;270 readonly logsBloom: EthbloomBloom;271 readonly difficulty: U256;272 readonly number: U256;273 readonly gasLimit: U256;274 readonly gasUsed: U256;275 readonly timestamp: u64;276 readonly extraData: Bytes;277 readonly mixHash: H256;278 readonly nonce: EthereumTypesHashH64;279}280281/** @name EthereumLog */282export interface EthereumLog extends Struct {283 readonly address: H160;284 readonly topics: Vec<H256>;285 readonly data: Bytes;286}287288/** @name EthereumReceiptEip658ReceiptData */289export interface EthereumReceiptEip658ReceiptData extends Struct {290 readonly statusCode: u8;291 readonly usedGas: U256;292 readonly logsBloom: EthbloomBloom;293 readonly logs: Vec<EthereumLog>;294}295296/** @name EthereumReceiptReceiptV3 */297export interface EthereumReceiptReceiptV3 extends Enum {298 readonly isLegacy: boolean;299 readonly asLegacy: EthereumReceiptEip658ReceiptData;300 readonly isEip2930: boolean;301 readonly asEip2930: EthereumReceiptEip658ReceiptData;302 readonly isEip1559: boolean;303 readonly asEip1559: EthereumReceiptEip658ReceiptData;304 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';305}306307/** @name EthereumTransactionAccessListItem */308export interface EthereumTransactionAccessListItem extends Struct {309 readonly address: H160;310 readonly storageKeys: Vec<H256>;311}312313/** @name EthereumTransactionEip1559Transaction */314export interface EthereumTransactionEip1559Transaction extends Struct {315 readonly chainId: u64;316 readonly nonce: U256;317 readonly maxPriorityFeePerGas: U256;318 readonly maxFeePerGas: U256;319 readonly gasLimit: U256;320 readonly action: EthereumTransactionTransactionAction;321 readonly value: U256;322 readonly input: Bytes;323 readonly accessList: Vec<EthereumTransactionAccessListItem>;324 readonly oddYParity: bool;325 readonly r: H256;326 readonly s: H256;327}328329/** @name EthereumTransactionEip2930Transaction */330export interface EthereumTransactionEip2930Transaction extends Struct {331 readonly chainId: u64;332 readonly nonce: U256;333 readonly gasPrice: U256;334 readonly gasLimit: U256;335 readonly action: EthereumTransactionTransactionAction;336 readonly value: U256;337 readonly input: Bytes;338 readonly accessList: Vec<EthereumTransactionAccessListItem>;339 readonly oddYParity: bool;340 readonly r: H256;341 readonly s: H256;342}343344/** @name EthereumTransactionLegacyTransaction */345export interface EthereumTransactionLegacyTransaction extends Struct {346 readonly nonce: U256;347 readonly gasPrice: U256;348 readonly gasLimit: U256;349 readonly action: EthereumTransactionTransactionAction;350 readonly value: U256;351 readonly input: Bytes;352 readonly signature: EthereumTransactionTransactionSignature;353}354355/** @name EthereumTransactionTransactionAction */356export interface EthereumTransactionTransactionAction extends Enum {357 readonly isCall: boolean;358 readonly asCall: H160;359 readonly isCreate: boolean;360 readonly type: 'Call' | 'Create';361}362363/** @name EthereumTransactionTransactionSignature */364export interface EthereumTransactionTransactionSignature extends Struct {365 readonly v: u64;366 readonly r: H256;367 readonly s: H256;368}369370/** @name EthereumTransactionTransactionV2 */371export interface EthereumTransactionTransactionV2 extends Enum {372 readonly isLegacy: boolean;373 readonly asLegacy: EthereumTransactionLegacyTransaction;374 readonly isEip2930: boolean;375 readonly asEip2930: EthereumTransactionEip2930Transaction;376 readonly isEip1559: boolean;377 readonly asEip1559: EthereumTransactionEip1559Transaction;378 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';379}380381/** @name EthereumTypesHashH64 */382export interface EthereumTypesHashH64 extends U8aFixed {}383384/** @name EvmCoreErrorExitError */385export interface EvmCoreErrorExitError extends Enum {386 readonly isStackUnderflow: boolean;387 readonly isStackOverflow: boolean;388 readonly isInvalidJump: boolean;389 readonly isInvalidRange: boolean;390 readonly isDesignatedInvalid: boolean;391 readonly isCallTooDeep: boolean;392 readonly isCreateCollision: boolean;393 readonly isCreateContractLimit: boolean;394 readonly isOutOfOffset: boolean;395 readonly isOutOfGas: boolean;396 readonly isOutOfFund: boolean;397 readonly isPcUnderflow: boolean;398 readonly isCreateEmpty: boolean;399 readonly isOther: boolean;400 readonly asOther: Text;401 readonly isInvalidCode: boolean;402 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';403}404405/** @name EvmCoreErrorExitFatal */406export interface EvmCoreErrorExitFatal extends Enum {407 readonly isNotSupported: boolean;408 readonly isUnhandledInterrupt: boolean;409 readonly isCallErrorAsFatal: boolean;410 readonly asCallErrorAsFatal: EvmCoreErrorExitError;411 readonly isOther: boolean;412 readonly asOther: Text;413 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';414}415416/** @name EvmCoreErrorExitReason */417export interface EvmCoreErrorExitReason extends Enum {418 readonly isSucceed: boolean;419 readonly asSucceed: EvmCoreErrorExitSucceed;420 readonly isError: boolean;421 readonly asError: EvmCoreErrorExitError;422 readonly isRevert: boolean;423 readonly asRevert: EvmCoreErrorExitRevert;424 readonly isFatal: boolean;425 readonly asFatal: EvmCoreErrorExitFatal;426 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';427}428429/** @name EvmCoreErrorExitRevert */430export interface EvmCoreErrorExitRevert extends Enum {431 readonly isReverted: boolean;432 readonly type: 'Reverted';433}434435/** @name EvmCoreErrorExitSucceed */436export interface EvmCoreErrorExitSucceed extends Enum {437 readonly isStopped: boolean;438 readonly isReturned: boolean;439 readonly isSuicided: boolean;440 readonly type: 'Stopped' | 'Returned' | 'Suicided';441}442443/** @name FpRpcTransactionStatus */444export interface FpRpcTransactionStatus extends Struct {445 readonly transactionHash: H256;446 readonly transactionIndex: u32;447 readonly from: H160;448 readonly to: Option<H160>;449 readonly contractAddress: Option<H160>;450 readonly logs: Vec<EthereumLog>;451 readonly logsBloom: EthbloomBloom;452}453454/** @name FrameSupportDispatchRawOrigin */455export interface FrameSupportDispatchRawOrigin extends Enum {456 readonly isRoot: boolean;457 readonly isSigned: boolean;458 readonly asSigned: AccountId32;459 readonly isNone: boolean;460 readonly type: 'Root' | 'Signed' | 'None';461}462463/** @name FrameSupportPalletId */464export interface FrameSupportPalletId extends U8aFixed {}465466/** @name FrameSupportScheduleLookupError */467export interface FrameSupportScheduleLookupError extends Enum {468 readonly isUnknown: boolean;469 readonly isBadFormat: boolean;470 readonly type: 'Unknown' | 'BadFormat';471}472473/** @name FrameSupportScheduleMaybeHashed */474export interface FrameSupportScheduleMaybeHashed extends Enum {475 readonly isValue: boolean;476 readonly asValue: Call;477 readonly isHash: boolean;478 readonly asHash: H256;479 readonly type: 'Value' | 'Hash';480}481482/** @name FrameSupportTokensMiscBalanceStatus */483export interface FrameSupportTokensMiscBalanceStatus extends Enum {484 readonly isFree: boolean;485 readonly isReserved: boolean;486 readonly type: 'Free' | 'Reserved';487}488489/** @name FrameSupportWeightsDispatchClass */490export interface FrameSupportWeightsDispatchClass extends Enum {491 readonly isNormal: boolean;492 readonly isOperational: boolean;493 readonly isMandatory: boolean;494 readonly type: 'Normal' | 'Operational' | 'Mandatory';495}496497/** @name FrameSupportWeightsDispatchInfo */498export interface FrameSupportWeightsDispatchInfo extends Struct {499 readonly weight: u64;500 readonly class: FrameSupportWeightsDispatchClass;501 readonly paysFee: FrameSupportWeightsPays;502}503504/** @name FrameSupportWeightsPays */505export interface FrameSupportWeightsPays extends Enum {506 readonly isYes: boolean;507 readonly isNo: boolean;508 readonly type: 'Yes' | 'No';509}510511/** @name FrameSupportWeightsPerDispatchClassU32 */512export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {513 readonly normal: u32;514 readonly operational: u32;515 readonly mandatory: u32;516}517518/** @name FrameSupportWeightsPerDispatchClassU64 */519export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {520 readonly normal: u64;521 readonly operational: u64;522 readonly mandatory: u64;523}524525/** @name FrameSupportWeightsPerDispatchClassWeightsPerClass */526export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {527 readonly normal: FrameSystemLimitsWeightsPerClass;528 readonly operational: FrameSystemLimitsWeightsPerClass;529 readonly mandatory: FrameSystemLimitsWeightsPerClass;530}531532/** @name FrameSupportWeightsRuntimeDbWeight */533export interface FrameSupportWeightsRuntimeDbWeight extends Struct {534 readonly read: u64;535 readonly write: u64;536}537538/** @name FrameSupportWeightsWeightToFeeCoefficient */539export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {540 readonly coeffInteger: u128;541 readonly coeffFrac: Perbill;542 readonly negative: bool;543 readonly degree: u8;544}545546/** @name FrameSystemAccountInfo */547export interface FrameSystemAccountInfo extends Struct {548 readonly nonce: u32;549 readonly consumers: u32;550 readonly providers: u32;551 readonly sufficients: u32;552 readonly data: PalletBalancesAccountData;553}554555/** @name FrameSystemCall */556export interface FrameSystemCall extends Enum {557 readonly isFillBlock: boolean;558 readonly asFillBlock: {559 readonly ratio: Perbill;560 } & Struct;561 readonly isRemark: boolean;562 readonly asRemark: {563 readonly remark: Bytes;564 } & Struct;565 readonly isSetHeapPages: boolean;566 readonly asSetHeapPages: {567 readonly pages: u64;568 } & Struct;569 readonly isSetCode: boolean;570 readonly asSetCode: {571 readonly code: Bytes;572 } & Struct;573 readonly isSetCodeWithoutChecks: boolean;574 readonly asSetCodeWithoutChecks: {575 readonly code: Bytes;576 } & Struct;577 readonly isSetStorage: boolean;578 readonly asSetStorage: {579 readonly items: Vec<ITuple<[Bytes, Bytes]>>;580 } & Struct;581 readonly isKillStorage: boolean;582 readonly asKillStorage: {583 readonly keys_: Vec<Bytes>;584 } & Struct;585 readonly isKillPrefix: boolean;586 readonly asKillPrefix: {587 readonly prefix: Bytes;588 readonly subkeys: u32;589 } & Struct;590 readonly isRemarkWithEvent: boolean;591 readonly asRemarkWithEvent: {592 readonly remark: Bytes;593 } & Struct;594 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';595}596597/** @name FrameSystemError */598export interface FrameSystemError extends Enum {599 readonly isInvalidSpecName: boolean;600 readonly isSpecVersionNeedsToIncrease: boolean;601 readonly isFailedToExtractRuntimeVersion: boolean;602 readonly isNonDefaultComposite: boolean;603 readonly isNonZeroRefCount: boolean;604 readonly isCallFiltered: boolean;605 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';606}607608/** @name FrameSystemEvent */609export interface FrameSystemEvent extends Enum {610 readonly isExtrinsicSuccess: boolean;611 readonly asExtrinsicSuccess: {612 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;613 } & Struct;614 readonly isExtrinsicFailed: boolean;615 readonly asExtrinsicFailed: {616 readonly dispatchError: SpRuntimeDispatchError;617 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;618 } & Struct;619 readonly isCodeUpdated: boolean;620 readonly isNewAccount: boolean;621 readonly asNewAccount: {622 readonly account: AccountId32;623 } & Struct;624 readonly isKilledAccount: boolean;625 readonly asKilledAccount: {626 readonly account: AccountId32;627 } & Struct;628 readonly isRemarked: boolean;629 readonly asRemarked: {630 readonly sender: AccountId32;631 readonly hash_: H256;632 } & Struct;633 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';634}635636/** @name FrameSystemEventRecord */637export interface FrameSystemEventRecord extends Struct {638 readonly phase: FrameSystemPhase;639 readonly event: Event;640 readonly topics: Vec<H256>;641}642643/** @name FrameSystemExtensionsCheckGenesis */644export interface FrameSystemExtensionsCheckGenesis extends Null {}645646/** @name FrameSystemExtensionsCheckNonce */647export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}648649/** @name FrameSystemExtensionsCheckSpecVersion */650export interface FrameSystemExtensionsCheckSpecVersion extends Null {}651652/** @name FrameSystemExtensionsCheckWeight */653export interface FrameSystemExtensionsCheckWeight extends Null {}654655/** @name FrameSystemLastRuntimeUpgradeInfo */656export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {657 readonly specVersion: Compact<u32>;658 readonly specName: Text;659}660661/** @name FrameSystemLimitsBlockLength */662export interface FrameSystemLimitsBlockLength extends Struct {663 readonly max: FrameSupportWeightsPerDispatchClassU32;664}665666/** @name FrameSystemLimitsBlockWeights */667export interface FrameSystemLimitsBlockWeights extends Struct {668 readonly baseBlock: u64;669 readonly maxBlock: u64;670 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;671}672673/** @name FrameSystemLimitsWeightsPerClass */674export interface FrameSystemLimitsWeightsPerClass extends Struct {675 readonly baseExtrinsic: u64;676 readonly maxExtrinsic: Option<u64>;677 readonly maxTotal: Option<u64>;678 readonly reserved: Option<u64>;679}680681/** @name FrameSystemPhase */682export interface FrameSystemPhase extends Enum {683 readonly isApplyExtrinsic: boolean;684 readonly asApplyExtrinsic: u32;685 readonly isFinalization: boolean;686 readonly isInitialization: boolean;687 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';688}689690/** @name OpalRuntimeOriginCaller */691export interface OpalRuntimeOriginCaller extends Enum {692 readonly isVoid: boolean;693 readonly asVoid: SpCoreVoid;694 readonly isSystem: boolean;695 readonly asSystem: FrameSupportDispatchRawOrigin;696 readonly isPolkadotXcm: boolean;697 readonly asPolkadotXcm: PalletXcmOrigin;698 readonly isCumulusXcm: boolean;699 readonly asCumulusXcm: CumulusPalletXcmOrigin;700 readonly isEthereum: boolean;701 readonly asEthereum: PalletEthereumRawOrigin;702 readonly type: 'Void' | 'System' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';703}704705/** @name OpalRuntimeRuntime */706export interface OpalRuntimeRuntime extends Null {}707708/** @name OrmlVestingModuleCall */709export interface OrmlVestingModuleCall extends Enum {710 readonly isClaim: boolean;711 readonly isVestedTransfer: boolean;712 readonly asVestedTransfer: {713 readonly dest: MultiAddress;714 readonly schedule: OrmlVestingVestingSchedule;715 } & Struct;716 readonly isUpdateVestingSchedules: boolean;717 readonly asUpdateVestingSchedules: {718 readonly who: MultiAddress;719 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;720 } & Struct;721 readonly isClaimFor: boolean;722 readonly asClaimFor: {723 readonly dest: MultiAddress;724 } & Struct;725 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';726}727728/** @name OrmlVestingModuleError */729export interface OrmlVestingModuleError extends Enum {730 readonly isZeroVestingPeriod: boolean;731 readonly isZeroVestingPeriodCount: boolean;732 readonly isInsufficientBalanceToLock: boolean;733 readonly isTooManyVestingSchedules: boolean;734 readonly isAmountLow: boolean;735 readonly isMaxVestingSchedulesExceeded: boolean;736 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';737}738739/** @name OrmlVestingModuleEvent */740export interface OrmlVestingModuleEvent extends Enum {741 readonly isVestingScheduleAdded: boolean;742 readonly asVestingScheduleAdded: {743 readonly from: AccountId32;744 readonly to: AccountId32;745 readonly vestingSchedule: OrmlVestingVestingSchedule;746 } & Struct;747 readonly isClaimed: boolean;748 readonly asClaimed: {749 readonly who: AccountId32;750 readonly amount: u128;751 } & Struct;752 readonly isVestingSchedulesUpdated: boolean;753 readonly asVestingSchedulesUpdated: {754 readonly who: AccountId32;755 } & Struct;756 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';757}758759/** @name OrmlVestingVestingSchedule */760export interface OrmlVestingVestingSchedule extends Struct {761 readonly start: u32;762 readonly period: u32;763 readonly periodCount: u32;764 readonly perPeriod: Compact<u128>;765}766767/** @name PalletBalancesAccountData */768export interface PalletBalancesAccountData extends Struct {769 readonly free: u128;770 readonly reserved: u128;771 readonly miscFrozen: u128;772 readonly feeFrozen: u128;773}774775/** @name PalletBalancesBalanceLock */776export interface PalletBalancesBalanceLock extends Struct {777 readonly id: U8aFixed;778 readonly amount: u128;779 readonly reasons: PalletBalancesReasons;780}781782/** @name PalletBalancesCall */783export interface PalletBalancesCall extends Enum {784 readonly isTransfer: boolean;785 readonly asTransfer: {786 readonly dest: MultiAddress;787 readonly value: Compact<u128>;788 } & Struct;789 readonly isSetBalance: boolean;790 readonly asSetBalance: {791 readonly who: MultiAddress;792 readonly newFree: Compact<u128>;793 readonly newReserved: Compact<u128>;794 } & Struct;795 readonly isForceTransfer: boolean;796 readonly asForceTransfer: {797 readonly source: MultiAddress;798 readonly dest: MultiAddress;799 readonly value: Compact<u128>;800 } & Struct;801 readonly isTransferKeepAlive: boolean;802 readonly asTransferKeepAlive: {803 readonly dest: MultiAddress;804 readonly value: Compact<u128>;805 } & Struct;806 readonly isTransferAll: boolean;807 readonly asTransferAll: {808 readonly dest: MultiAddress;809 readonly keepAlive: bool;810 } & Struct;811 readonly isForceUnreserve: boolean;812 readonly asForceUnreserve: {813 readonly who: MultiAddress;814 readonly amount: u128;815 } & Struct;816 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';817}818819/** @name PalletBalancesError */820export interface PalletBalancesError extends Enum {821 readonly isVestingBalance: boolean;822 readonly isLiquidityRestrictions: boolean;823 readonly isInsufficientBalance: boolean;824 readonly isExistentialDeposit: boolean;825 readonly isKeepAlive: boolean;826 readonly isExistingVestingSchedule: boolean;827 readonly isDeadAccount: boolean;828 readonly isTooManyReserves: boolean;829 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';830}831832/** @name PalletBalancesEvent */833export interface PalletBalancesEvent extends Enum {834 readonly isEndowed: boolean;835 readonly asEndowed: {836 readonly account: AccountId32;837 readonly freeBalance: u128;838 } & Struct;839 readonly isDustLost: boolean;840 readonly asDustLost: {841 readonly account: AccountId32;842 readonly amount: u128;843 } & Struct;844 readonly isTransfer: boolean;845 readonly asTransfer: {846 readonly from: AccountId32;847 readonly to: AccountId32;848 readonly amount: u128;849 } & Struct;850 readonly isBalanceSet: boolean;851 readonly asBalanceSet: {852 readonly who: AccountId32;853 readonly free: u128;854 readonly reserved: u128;855 } & Struct;856 readonly isReserved: boolean;857 readonly asReserved: {858 readonly who: AccountId32;859 readonly amount: u128;860 } & Struct;861 readonly isUnreserved: boolean;862 readonly asUnreserved: {863 readonly who: AccountId32;864 readonly amount: u128;865 } & Struct;866 readonly isReserveRepatriated: boolean;867 readonly asReserveRepatriated: {868 readonly from: AccountId32;869 readonly to: AccountId32;870 readonly amount: u128;871 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;872 } & Struct;873 readonly isDeposit: boolean;874 readonly asDeposit: {875 readonly who: AccountId32;876 readonly amount: u128;877 } & Struct;878 readonly isWithdraw: boolean;879 readonly asWithdraw: {880 readonly who: AccountId32;881 readonly amount: u128;882 } & Struct;883 readonly isSlashed: boolean;884 readonly asSlashed: {885 readonly who: AccountId32;886 readonly amount: u128;887 } & Struct;888 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';889}890891/** @name PalletBalancesReasons */892export interface PalletBalancesReasons extends Enum {893 readonly isFee: boolean;894 readonly isMisc: boolean;895 readonly isAll: boolean;896 readonly type: 'Fee' | 'Misc' | 'All';897}898899/** @name PalletBalancesReleases */900export interface PalletBalancesReleases extends Enum {901 readonly isV100: boolean;902 readonly isV200: boolean;903 readonly type: 'V100' | 'V200';904}905906/** @name PalletBalancesReserveData */907export interface PalletBalancesReserveData extends Struct {908 readonly id: U8aFixed;909 readonly amount: u128;910}911912/** @name PalletCommonError */913export interface PalletCommonError extends Enum {914 readonly isCollectionNotFound: boolean;915 readonly isMustBeTokenOwner: boolean;916 readonly isNoPermission: boolean;917 readonly isCantDestroyNotEmptyCollection: boolean;918 readonly isPublicMintingNotAllowed: boolean;919 readonly isAddressNotInAllowlist: boolean;920 readonly isCollectionNameLimitExceeded: boolean;921 readonly isCollectionDescriptionLimitExceeded: boolean;922 readonly isCollectionTokenPrefixLimitExceeded: boolean;923 readonly isTotalCollectionsLimitExceeded: boolean;924 readonly isCollectionAdminCountExceeded: boolean;925 readonly isCollectionLimitBoundsExceeded: boolean;926 readonly isOwnerPermissionsCantBeReverted: boolean;927 readonly isTransferNotAllowed: boolean;928 readonly isAccountTokenLimitExceeded: boolean;929 readonly isCollectionTokenLimitExceeded: boolean;930 readonly isMetadataFlagFrozen: boolean;931 readonly isTokenNotFound: boolean;932 readonly isTokenValueTooLow: boolean;933 readonly isApprovedValueTooLow: boolean;934 readonly isCantApproveMoreThanOwned: boolean;935 readonly isAddressIsZero: boolean;936 readonly isUnsupportedOperation: boolean;937 readonly isNotSufficientFounds: boolean;938 readonly isNestingIsDisabled: boolean;939 readonly isOnlyOwnerAllowedToNest: boolean;940 readonly isSourceCollectionIsNotAllowedToNest: boolean;941 readonly isCollectionFieldSizeExceeded: boolean;942 readonly isNoSpaceForProperty: boolean;943 readonly isPropertyLimitReached: boolean;944 readonly isPropertyKeyIsTooLong: boolean;945 readonly isInvalidCharacterInPropertyKey: boolean;946 readonly isEmptyPropertyKey: boolean;947 readonly isCollectionIsExternal: boolean;948 readonly isCollectionIsInternal: boolean;949 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';950}951952/** @name PalletCommonEvent */953export interface PalletCommonEvent extends Enum {954 readonly isCollectionCreated: boolean;955 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;956 readonly isCollectionDestroyed: boolean;957 readonly asCollectionDestroyed: u32;958 readonly isItemCreated: boolean;959 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;960 readonly isItemDestroyed: boolean;961 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;962 readonly isTransfer: boolean;963 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;964 readonly isApproved: boolean;965 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;966 readonly isCollectionPropertySet: boolean;967 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;968 readonly isCollectionPropertyDeleted: boolean;969 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;970 readonly isTokenPropertySet: boolean;971 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;972 readonly isTokenPropertyDeleted: boolean;973 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;974 readonly isPropertyPermissionSet: boolean;975 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;976 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';977}978979/** @name PalletEthereumCall */980export interface PalletEthereumCall extends Enum {981 readonly isTransact: boolean;982 readonly asTransact: {983 readonly transaction: EthereumTransactionTransactionV2;984 } & Struct;985 readonly type: 'Transact';986}987988/** @name PalletEthereumError */989export interface PalletEthereumError extends Enum {990 readonly isInvalidSignature: boolean;991 readonly isPreLogExists: boolean;992 readonly type: 'InvalidSignature' | 'PreLogExists';993}994995/** @name PalletEthereumEvent */996export interface PalletEthereumEvent extends Enum {997 readonly isExecuted: boolean;998 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;999 readonly type: 'Executed';1000}10011002/** @name PalletEthereumFakeTransactionFinalizer */1003export interface PalletEthereumFakeTransactionFinalizer extends Null {}10041005/** @name PalletEthereumRawOrigin */1006export interface PalletEthereumRawOrigin extends Enum {1007 readonly isEthereumTransaction: boolean;1008 readonly asEthereumTransaction: H160;1009 readonly type: 'EthereumTransaction';1010}10111012/** @name PalletEvmAccountBasicCrossAccountIdRepr */1013export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1014 readonly isSubstrate: boolean;1015 readonly asSubstrate: AccountId32;1016 readonly isEthereum: boolean;1017 readonly asEthereum: H160;1018 readonly type: 'Substrate' | 'Ethereum';1019}10201021/** @name PalletEvmCall */1022export interface PalletEvmCall extends Enum {1023 readonly isWithdraw: boolean;1024 readonly asWithdraw: {1025 readonly address: H160;1026 readonly value: u128;1027 } & Struct;1028 readonly isCall: boolean;1029 readonly asCall: {1030 readonly source: H160;1031 readonly target: H160;1032 readonly input: Bytes;1033 readonly value: U256;1034 readonly gasLimit: u64;1035 readonly maxFeePerGas: U256;1036 readonly maxPriorityFeePerGas: Option<U256>;1037 readonly nonce: Option<U256>;1038 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1039 } & Struct;1040 readonly isCreate: boolean;1041 readonly asCreate: {1042 readonly source: H160;1043 readonly init: Bytes;1044 readonly value: U256;1045 readonly gasLimit: u64;1046 readonly maxFeePerGas: U256;1047 readonly maxPriorityFeePerGas: Option<U256>;1048 readonly nonce: Option<U256>;1049 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1050 } & Struct;1051 readonly isCreate2: boolean;1052 readonly asCreate2: {1053 readonly source: H160;1054 readonly init: Bytes;1055 readonly salt: H256;1056 readonly value: U256;1057 readonly gasLimit: u64;1058 readonly maxFeePerGas: U256;1059 readonly maxPriorityFeePerGas: Option<U256>;1060 readonly nonce: Option<U256>;1061 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1062 } & Struct;1063 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1064}10651066/** @name PalletEvmCoderSubstrateError */1067export interface PalletEvmCoderSubstrateError extends Enum {1068 readonly isOutOfGas: boolean;1069 readonly isOutOfFund: boolean;1070 readonly type: 'OutOfGas' | 'OutOfFund';1071}10721073/** @name PalletEvmContractHelpersError */1074export interface PalletEvmContractHelpersError extends Enum {1075 readonly isNoPermission: boolean;1076 readonly type: 'NoPermission';1077}10781079/** @name PalletEvmContractHelpersSponsoringModeT */1080export interface PalletEvmContractHelpersSponsoringModeT extends Enum {1081 readonly isDisabled: boolean;1082 readonly isAllowlisted: boolean;1083 readonly isGenerous: boolean;1084 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';1085}10861087/** @name PalletEvmError */1088export interface PalletEvmError extends Enum {1089 readonly isBalanceLow: boolean;1090 readonly isFeeOverflow: boolean;1091 readonly isPaymentOverflow: boolean;1092 readonly isWithdrawFailed: boolean;1093 readonly isGasPriceTooLow: boolean;1094 readonly isInvalidNonce: boolean;1095 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';1096}10971098/** @name PalletEvmEvent */1099export interface PalletEvmEvent extends Enum {1100 readonly isLog: boolean;1101 readonly asLog: EthereumLog;1102 readonly isCreated: boolean;1103 readonly asCreated: H160;1104 readonly isCreatedFailed: boolean;1105 readonly asCreatedFailed: H160;1106 readonly isExecuted: boolean;1107 readonly asExecuted: H160;1108 readonly isExecutedFailed: boolean;1109 readonly asExecutedFailed: H160;1110 readonly isBalanceDeposit: boolean;1111 readonly asBalanceDeposit: ITuple<[AccountId32, H160, U256]>;1112 readonly isBalanceWithdraw: boolean;1113 readonly asBalanceWithdraw: ITuple<[AccountId32, H160, U256]>;1114 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';1115}11161117/** @name PalletEvmMigrationCall */1118export interface PalletEvmMigrationCall extends Enum {1119 readonly isBegin: boolean;1120 readonly asBegin: {1121 readonly address: H160;1122 } & Struct;1123 readonly isSetData: boolean;1124 readonly asSetData: {1125 readonly address: H160;1126 readonly data: Vec<ITuple<[H256, H256]>>;1127 } & Struct;1128 readonly isFinish: boolean;1129 readonly asFinish: {1130 readonly address: H160;1131 readonly code: Bytes;1132 } & Struct;1133 readonly type: 'Begin' | 'SetData' | 'Finish';1134}11351136/** @name PalletEvmMigrationError */1137export interface PalletEvmMigrationError extends Enum {1138 readonly isAccountNotEmpty: boolean;1139 readonly isAccountIsNotMigrating: boolean;1140 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';1141}11421143/** @name PalletFungibleError */1144export interface PalletFungibleError extends Enum {1145 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;1146 readonly isFungibleItemsHaveNoId: boolean;1147 readonly isFungibleItemsDontHaveData: boolean;1148 readonly isFungibleDisallowsNesting: boolean;1149 readonly isSettingPropertiesNotAllowed: boolean;1150 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1151}11521153/** @name PalletInflationCall */1154export interface PalletInflationCall extends Enum {1155 readonly isStartInflation: boolean;1156 readonly asStartInflation: {1157 readonly inflationStartRelayBlock: u32;1158 } & Struct;1159 readonly type: 'StartInflation';1160}11611162/** @name PalletNonfungibleError */1163export interface PalletNonfungibleError extends Enum {1164 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;1165 readonly isNonfungibleItemsHaveNoAmount: boolean;1166 readonly isCantBurnNftWithChildren: boolean;1167 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';1168}11691170/** @name PalletNonfungibleItemData */1171export interface PalletNonfungibleItemData extends Struct {1172 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1173}11741175/** @name PalletRefungibleError */1176export interface PalletRefungibleError extends Enum {1177 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;1178 readonly isWrongRefungiblePieces: boolean;1179 readonly isRefungibleDisallowsNesting: boolean;1180 readonly isSettingPropertiesNotAllowed: boolean;1181 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1182}11831184/** @name PalletRefungibleItemData */1185export interface PalletRefungibleItemData extends Struct {1186 readonly constData: Bytes;1187}11881189/** @name PalletRmrkCoreCall */1190export interface PalletRmrkCoreCall extends Enum {1191 readonly isCreateCollection: boolean;1192 readonly asCreateCollection: {1193 readonly metadata: Bytes;1194 readonly max: Option<u32>;1195 readonly symbol: Bytes;1196 } & Struct;1197 readonly isDestroyCollection: boolean;1198 readonly asDestroyCollection: {1199 readonly collectionId: u32;1200 } & Struct;1201 readonly isChangeCollectionIssuer: boolean;1202 readonly asChangeCollectionIssuer: {1203 readonly collectionId: u32;1204 readonly newIssuer: MultiAddress;1205 } & Struct;1206 readonly isLockCollection: boolean;1207 readonly asLockCollection: {1208 readonly collectionId: u32;1209 } & Struct;1210 readonly isMintNft: boolean;1211 readonly asMintNft: {1212 readonly owner: AccountId32;1213 readonly collectionId: u32;1214 readonly recipient: Option<AccountId32>;1215 readonly royaltyAmount: Option<Permill>;1216 readonly metadata: Bytes;1217 readonly transferable: bool;1218 } & Struct;1219 readonly isBurnNft: boolean;1220 readonly asBurnNft: {1221 readonly collectionId: u32;1222 readonly nftId: u32;1223 } & Struct;1224 readonly isSend: boolean;1225 readonly asSend: {1226 readonly rmrkCollectionId: u32;1227 readonly rmrkNftId: u32;1228 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1229 } & Struct;1230 readonly isAcceptNft: boolean;1231 readonly asAcceptNft: {1232 readonly rmrkCollectionId: u32;1233 readonly rmrkNftId: u32;1234 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1235 } & Struct;1236 readonly isRejectNft: boolean;1237 readonly asRejectNft: {1238 readonly rmrkCollectionId: u32;1239 readonly rmrkNftId: u32;1240 } & Struct;1241 readonly isAcceptResource: boolean;1242 readonly asAcceptResource: {1243 readonly rmrkCollectionId: u32;1244 readonly rmrkNftId: u32;1245 readonly rmrkResourceId: u32;1246 } & Struct;1247 readonly isAcceptResourceRemoval: boolean;1248 readonly asAcceptResourceRemoval: {1249 readonly rmrkCollectionId: u32;1250 readonly rmrkNftId: u32;1251 readonly rmrkResourceId: u32;1252 } & Struct;1253 readonly isSetProperty: boolean;1254 readonly asSetProperty: {1255 readonly rmrkCollectionId: Compact<u32>;1256 readonly maybeNftId: Option<u32>;1257 readonly key: Bytes;1258 readonly value: Bytes;1259 } & Struct;1260 readonly isSetPriority: boolean;1261 readonly asSetPriority: {1262 readonly rmrkCollectionId: u32;1263 readonly rmrkNftId: u32;1264 readonly priorities: Vec<u32>;1265 } & Struct;1266 readonly isAddBasicResource: boolean;1267 readonly asAddBasicResource: {1268 readonly rmrkCollectionId: u32;1269 readonly nftId: u32;1270 readonly resource: RmrkTraitsResourceBasicResource;1271 } & Struct;1272 readonly isAddComposableResource: boolean;1273 readonly asAddComposableResource: {1274 readonly rmrkCollectionId: u32;1275 readonly nftId: u32;1276 readonly resourceId: Bytes;1277 readonly resource: RmrkTraitsResourceComposableResource;1278 } & Struct;1279 readonly isAddSlotResource: boolean;1280 readonly asAddSlotResource: {1281 readonly rmrkCollectionId: u32;1282 readonly nftId: u32;1283 readonly resource: RmrkTraitsResourceSlotResource;1284 } & Struct;1285 readonly isRemoveResource: boolean;1286 readonly asRemoveResource: {1287 readonly rmrkCollectionId: u32;1288 readonly nftId: u32;1289 readonly resourceId: u32;1290 } & Struct;1291 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';1292}12931294/** @name PalletRmrkCoreError */1295export interface PalletRmrkCoreError extends Enum {1296 readonly isCorruptedCollectionType: boolean;1297 readonly isNftTypeEncodeError: boolean;1298 readonly isRmrkPropertyKeyIsTooLong: boolean;1299 readonly isRmrkPropertyValueIsTooLong: boolean;1300 readonly isCollectionNotEmpty: boolean;1301 readonly isNoAvailableCollectionId: boolean;1302 readonly isNoAvailableNftId: boolean;1303 readonly isCollectionUnknown: boolean;1304 readonly isNoPermission: boolean;1305 readonly isNonTransferable: boolean;1306 readonly isCollectionFullOrLocked: boolean;1307 readonly isResourceDoesntExist: boolean;1308 readonly isCannotSendToDescendentOrSelf: boolean;1309 readonly isCannotAcceptNonOwnedNft: boolean;1310 readonly isCannotRejectNonOwnedNft: boolean;1311 readonly isResourceNotPending: boolean;1312 readonly type: 'CorruptedCollectionType' | 'NftTypeEncodeError' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'ResourceNotPending';1313}13141315/** @name PalletRmrkCoreEvent */1316export interface PalletRmrkCoreEvent extends Enum {1317 readonly isCollectionCreated: boolean;1318 readonly asCollectionCreated: {1319 readonly issuer: AccountId32;1320 readonly collectionId: u32;1321 } & Struct;1322 readonly isCollectionDestroyed: boolean;1323 readonly asCollectionDestroyed: {1324 readonly issuer: AccountId32;1325 readonly collectionId: u32;1326 } & Struct;1327 readonly isIssuerChanged: boolean;1328 readonly asIssuerChanged: {1329 readonly oldIssuer: AccountId32;1330 readonly newIssuer: AccountId32;1331 readonly collectionId: u32;1332 } & Struct;1333 readonly isCollectionLocked: boolean;1334 readonly asCollectionLocked: {1335 readonly issuer: AccountId32;1336 readonly collectionId: u32;1337 } & Struct;1338 readonly isNftMinted: boolean;1339 readonly asNftMinted: {1340 readonly owner: AccountId32;1341 readonly collectionId: u32;1342 readonly nftId: u32;1343 } & Struct;1344 readonly isNftBurned: boolean;1345 readonly asNftBurned: {1346 readonly owner: AccountId32;1347 readonly nftId: u32;1348 } & Struct;1349 readonly isNftSent: boolean;1350 readonly asNftSent: {1351 readonly sender: AccountId32;1352 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1353 readonly collectionId: u32;1354 readonly nftId: u32;1355 readonly approvalRequired: bool;1356 } & Struct;1357 readonly isNftAccepted: boolean;1358 readonly asNftAccepted: {1359 readonly sender: AccountId32;1360 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1361 readonly collectionId: u32;1362 readonly nftId: u32;1363 } & Struct;1364 readonly isNftRejected: boolean;1365 readonly asNftRejected: {1366 readonly sender: AccountId32;1367 readonly collectionId: u32;1368 readonly nftId: u32;1369 } & Struct;1370 readonly isPropertySet: boolean;1371 readonly asPropertySet: {1372 readonly collectionId: u32;1373 readonly maybeNftId: Option<u32>;1374 readonly key: Bytes;1375 readonly value: Bytes;1376 } & Struct;1377 readonly isResourceAdded: boolean;1378 readonly asResourceAdded: {1379 readonly nftId: u32;1380 readonly resourceId: u32;1381 } & Struct;1382 readonly isResourceRemoval: boolean;1383 readonly asResourceRemoval: {1384 readonly nftId: u32;1385 readonly resourceId: u32;1386 } & Struct;1387 readonly isResourceAccepted: boolean;1388 readonly asResourceAccepted: {1389 readonly nftId: u32;1390 readonly resourceId: u32;1391 } & Struct;1392 readonly isResourceRemovalAccepted: boolean;1393 readonly asResourceRemovalAccepted: {1394 readonly nftId: u32;1395 readonly resourceId: u32;1396 } & Struct;1397 readonly isPrioritySet: boolean;1398 readonly asPrioritySet: {1399 readonly collectionId: u32;1400 readonly nftId: u32;1401 } & Struct;1402 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1403}14041405/** @name PalletRmrkEquipCall */1406export interface PalletRmrkEquipCall extends Enum {1407 readonly isCreateBase: boolean;1408 readonly asCreateBase: {1409 readonly baseType: Bytes;1410 readonly symbol: Bytes;1411 readonly parts: Vec<RmrkTraitsPartPartType>;1412 } & Struct;1413 readonly isThemeAdd: boolean;1414 readonly asThemeAdd: {1415 readonly baseId: u32;1416 readonly theme: RmrkTraitsTheme;1417 } & Struct;1418 readonly type: 'CreateBase' | 'ThemeAdd';1419}14201421/** @name PalletRmrkEquipError */1422export interface PalletRmrkEquipError extends Enum {1423 readonly isPermissionError: boolean;1424 readonly isNoAvailableBaseId: boolean;1425 readonly isNoAvailablePartId: boolean;1426 readonly isBaseDoesntExist: boolean;1427 readonly isNeedsDefaultThemeFirst: boolean;1428 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst';1429}14301431/** @name PalletRmrkEquipEvent */1432export interface PalletRmrkEquipEvent extends Enum {1433 readonly isBaseCreated: boolean;1434 readonly asBaseCreated: {1435 readonly issuer: AccountId32;1436 readonly baseId: u32;1437 } & Struct;1438 readonly type: 'BaseCreated';1439}14401441/** @name PalletStructureCall */1442export interface PalletStructureCall extends Null {}14431444/** @name PalletStructureError */1445export interface PalletStructureError extends Enum {1446 readonly isOuroborosDetected: boolean;1447 readonly isDepthLimit: boolean;1448 readonly isTokenNotFound: boolean;1449 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';1450}14511452/** @name PalletStructureEvent */1453export interface PalletStructureEvent extends Enum {1454 readonly isExecuted: boolean;1455 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1456 readonly type: 'Executed';1457}14581459/** @name PalletSudoCall */1460export interface PalletSudoCall extends Enum {1461 readonly isSudo: boolean;1462 readonly asSudo: {1463 readonly call: Call;1464 } & Struct;1465 readonly isSudoUncheckedWeight: boolean;1466 readonly asSudoUncheckedWeight: {1467 readonly call: Call;1468 readonly weight: u64;1469 } & Struct;1470 readonly isSetKey: boolean;1471 readonly asSetKey: {1472 readonly new_: MultiAddress;1473 } & Struct;1474 readonly isSudoAs: boolean;1475 readonly asSudoAs: {1476 readonly who: MultiAddress;1477 readonly call: Call;1478 } & Struct;1479 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1480}14811482/** @name PalletSudoError */1483export interface PalletSudoError extends Enum {1484 readonly isRequireSudo: boolean;1485 readonly type: 'RequireSudo';1486}14871488/** @name PalletSudoEvent */1489export interface PalletSudoEvent extends Enum {1490 readonly isSudid: boolean;1491 readonly asSudid: {1492 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1493 } & Struct;1494 readonly isKeyChanged: boolean;1495 readonly asKeyChanged: {1496 readonly oldSudoer: Option<AccountId32>;1497 } & Struct;1498 readonly isSudoAsDone: boolean;1499 readonly asSudoAsDone: {1500 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1501 } & Struct;1502 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1503}15041505/** @name PalletTemplateTransactionPaymentCall */1506export interface PalletTemplateTransactionPaymentCall extends Null {}15071508/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */1509export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}15101511/** @name PalletTimestampCall */1512export interface PalletTimestampCall extends Enum {1513 readonly isSet: boolean;1514 readonly asSet: {1515 readonly now: Compact<u64>;1516 } & Struct;1517 readonly type: 'Set';1518}15191520/** @name PalletTransactionPaymentReleases */1521export interface PalletTransactionPaymentReleases extends Enum {1522 readonly isV1Ancient: boolean;1523 readonly isV2: boolean;1524 readonly type: 'V1Ancient' | 'V2';1525}15261527/** @name PalletTreasuryCall */1528export interface PalletTreasuryCall extends Enum {1529 readonly isProposeSpend: boolean;1530 readonly asProposeSpend: {1531 readonly value: Compact<u128>;1532 readonly beneficiary: MultiAddress;1533 } & Struct;1534 readonly isRejectProposal: boolean;1535 readonly asRejectProposal: {1536 readonly proposalId: Compact<u32>;1537 } & Struct;1538 readonly isApproveProposal: boolean;1539 readonly asApproveProposal: {1540 readonly proposalId: Compact<u32>;1541 } & Struct;1542 readonly isRemoveApproval: boolean;1543 readonly asRemoveApproval: {1544 readonly proposalId: Compact<u32>;1545 } & Struct;1546 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'RemoveApproval';1547}15481549/** @name PalletTreasuryError */1550export interface PalletTreasuryError extends Enum {1551 readonly isInsufficientProposersBalance: boolean;1552 readonly isInvalidIndex: boolean;1553 readonly isTooManyApprovals: boolean;1554 readonly isProposalNotApproved: boolean;1555 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'ProposalNotApproved';1556}15571558/** @name PalletTreasuryEvent */1559export interface PalletTreasuryEvent extends Enum {1560 readonly isProposed: boolean;1561 readonly asProposed: {1562 readonly proposalIndex: u32;1563 } & Struct;1564 readonly isSpending: boolean;1565 readonly asSpending: {1566 readonly budgetRemaining: u128;1567 } & Struct;1568 readonly isAwarded: boolean;1569 readonly asAwarded: {1570 readonly proposalIndex: u32;1571 readonly award: u128;1572 readonly account: AccountId32;1573 } & Struct;1574 readonly isRejected: boolean;1575 readonly asRejected: {1576 readonly proposalIndex: u32;1577 readonly slashed: u128;1578 } & Struct;1579 readonly isBurnt: boolean;1580 readonly asBurnt: {1581 readonly burntFunds: u128;1582 } & Struct;1583 readonly isRollover: boolean;1584 readonly asRollover: {1585 readonly rolloverBalance: u128;1586 } & Struct;1587 readonly isDeposit: boolean;1588 readonly asDeposit: {1589 readonly value: u128;1590 } & Struct;1591 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';1592}15931594/** @name PalletTreasuryProposal */1595export interface PalletTreasuryProposal extends Struct {1596 readonly proposer: AccountId32;1597 readonly value: u128;1598 readonly beneficiary: AccountId32;1599 readonly bond: u128;1600}16011602/** @name PalletUniqueCall */1603export interface PalletUniqueCall extends Enum {1604 readonly isCreateCollection: boolean;1605 readonly asCreateCollection: {1606 readonly collectionName: Vec<u16>;1607 readonly collectionDescription: Vec<u16>;1608 readonly tokenPrefix: Bytes;1609 readonly mode: UpDataStructsCollectionMode;1610 } & Struct;1611 readonly isCreateCollectionEx: boolean;1612 readonly asCreateCollectionEx: {1613 readonly data: UpDataStructsCreateCollectionData;1614 } & Struct;1615 readonly isDestroyCollection: boolean;1616 readonly asDestroyCollection: {1617 readonly collectionId: u32;1618 } & Struct;1619 readonly isAddToAllowList: boolean;1620 readonly asAddToAllowList: {1621 readonly collectionId: u32;1622 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1623 } & Struct;1624 readonly isRemoveFromAllowList: boolean;1625 readonly asRemoveFromAllowList: {1626 readonly collectionId: u32;1627 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1628 } & Struct;1629 readonly isChangeCollectionOwner: boolean;1630 readonly asChangeCollectionOwner: {1631 readonly collectionId: u32;1632 readonly newOwner: AccountId32;1633 } & Struct;1634 readonly isAddCollectionAdmin: boolean;1635 readonly asAddCollectionAdmin: {1636 readonly collectionId: u32;1637 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;1638 } & Struct;1639 readonly isRemoveCollectionAdmin: boolean;1640 readonly asRemoveCollectionAdmin: {1641 readonly collectionId: u32;1642 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;1643 } & Struct;1644 readonly isSetCollectionSponsor: boolean;1645 readonly asSetCollectionSponsor: {1646 readonly collectionId: u32;1647 readonly newSponsor: AccountId32;1648 } & Struct;1649 readonly isConfirmSponsorship: boolean;1650 readonly asConfirmSponsorship: {1651 readonly collectionId: u32;1652 } & Struct;1653 readonly isRemoveCollectionSponsor: boolean;1654 readonly asRemoveCollectionSponsor: {1655 readonly collectionId: u32;1656 } & Struct;1657 readonly isCreateItem: boolean;1658 readonly asCreateItem: {1659 readonly collectionId: u32;1660 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1661 readonly data: UpDataStructsCreateItemData;1662 } & Struct;1663 readonly isCreateMultipleItems: boolean;1664 readonly asCreateMultipleItems: {1665 readonly collectionId: u32;1666 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1667 readonly itemsData: Vec<UpDataStructsCreateItemData>;1668 } & Struct;1669 readonly isSetCollectionProperties: boolean;1670 readonly asSetCollectionProperties: {1671 readonly collectionId: u32;1672 readonly properties: Vec<UpDataStructsProperty>;1673 } & Struct;1674 readonly isDeleteCollectionProperties: boolean;1675 readonly asDeleteCollectionProperties: {1676 readonly collectionId: u32;1677 readonly propertyKeys: Vec<Bytes>;1678 } & Struct;1679 readonly isSetTokenProperties: boolean;1680 readonly asSetTokenProperties: {1681 readonly collectionId: u32;1682 readonly tokenId: u32;1683 readonly properties: Vec<UpDataStructsProperty>;1684 } & Struct;1685 readonly isDeleteTokenProperties: boolean;1686 readonly asDeleteTokenProperties: {1687 readonly collectionId: u32;1688 readonly tokenId: u32;1689 readonly propertyKeys: Vec<Bytes>;1690 } & Struct;1691 readonly isSetPropertyPermissions: boolean;1692 readonly asSetPropertyPermissions: {1693 readonly collectionId: u32;1694 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1695 } & Struct;1696 readonly isCreateMultipleItemsEx: boolean;1697 readonly asCreateMultipleItemsEx: {1698 readonly collectionId: u32;1699 readonly data: UpDataStructsCreateItemExData;1700 } & Struct;1701 readonly isSetTransfersEnabledFlag: boolean;1702 readonly asSetTransfersEnabledFlag: {1703 readonly collectionId: u32;1704 readonly value: bool;1705 } & Struct;1706 readonly isBurnItem: boolean;1707 readonly asBurnItem: {1708 readonly collectionId: u32;1709 readonly itemId: u32;1710 readonly value: u128;1711 } & Struct;1712 readonly isBurnFrom: boolean;1713 readonly asBurnFrom: {1714 readonly collectionId: u32;1715 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1716 readonly itemId: u32;1717 readonly value: u128;1718 } & Struct;1719 readonly isTransfer: boolean;1720 readonly asTransfer: {1721 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1722 readonly collectionId: u32;1723 readonly itemId: u32;1724 readonly value: u128;1725 } & Struct;1726 readonly isApprove: boolean;1727 readonly asApprove: {1728 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;1729 readonly collectionId: u32;1730 readonly itemId: u32;1731 readonly amount: u128;1732 } & Struct;1733 readonly isTransferFrom: boolean;1734 readonly asTransferFrom: {1735 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1736 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1737 readonly collectionId: u32;1738 readonly itemId: u32;1739 readonly value: u128;1740 } & Struct;1741 readonly isSetCollectionLimits: boolean;1742 readonly asSetCollectionLimits: {1743 readonly collectionId: u32;1744 readonly newLimit: UpDataStructsCollectionLimits;1745 } & Struct;1746 readonly isSetCollectionPermissions: boolean;1747 readonly asSetCollectionPermissions: {1748 readonly collectionId: u32;1749 readonly newLimit: UpDataStructsCollectionPermissions;1750 } & Struct;1751 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions';1752}17531754/** @name PalletUniqueError */1755export interface PalletUniqueError extends Enum {1756 readonly isCollectionDecimalPointLimitExceeded: boolean;1757 readonly isConfirmUnsetSponsorFail: boolean;1758 readonly isEmptyArgument: boolean;1759 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';1760}17611762/** @name PalletUniqueRawEvent */1763export interface PalletUniqueRawEvent extends Enum {1764 readonly isCollectionSponsorRemoved: boolean;1765 readonly asCollectionSponsorRemoved: u32;1766 readonly isCollectionAdminAdded: boolean;1767 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1768 readonly isCollectionOwnedChanged: boolean;1769 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;1770 readonly isCollectionSponsorSet: boolean;1771 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1772 readonly isSponsorshipConfirmed: boolean;1773 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1774 readonly isCollectionAdminRemoved: boolean;1775 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1776 readonly isAllowListAddressRemoved: boolean;1777 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1778 readonly isAllowListAddressAdded: boolean;1779 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1780 readonly isCollectionLimitSet: boolean;1781 readonly asCollectionLimitSet: u32;1782 readonly isCollectionPermissionSet: boolean;1783 readonly asCollectionPermissionSet: u32;1784 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';1785}17861787/** @name PalletUnqSchedulerCall */1788export interface PalletUnqSchedulerCall extends Enum {1789 readonly isScheduleNamed: boolean;1790 readonly asScheduleNamed: {1791 readonly id: U8aFixed;1792 readonly when: u32;1793 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;1794 readonly priority: u8;1795 readonly call: FrameSupportScheduleMaybeHashed;1796 } & Struct;1797 readonly isCancelNamed: boolean;1798 readonly asCancelNamed: {1799 readonly id: U8aFixed;1800 } & Struct;1801 readonly isScheduleNamedAfter: boolean;1802 readonly asScheduleNamedAfter: {1803 readonly id: U8aFixed;1804 readonly after: u32;1805 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;1806 readonly priority: u8;1807 readonly call: FrameSupportScheduleMaybeHashed;1808 } & Struct;1809 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';1810}18111812/** @name PalletUnqSchedulerError */1813export interface PalletUnqSchedulerError extends Enum {1814 readonly isFailedToSchedule: boolean;1815 readonly isNotFound: boolean;1816 readonly isTargetBlockNumberInPast: boolean;1817 readonly isRescheduleNoChange: boolean;1818 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';1819}18201821/** @name PalletUnqSchedulerEvent */1822export interface PalletUnqSchedulerEvent extends Enum {1823 readonly isScheduled: boolean;1824 readonly asScheduled: {1825 readonly when: u32;1826 readonly index: u32;1827 } & Struct;1828 readonly isCanceled: boolean;1829 readonly asCanceled: {1830 readonly when: u32;1831 readonly index: u32;1832 } & Struct;1833 readonly isDispatched: boolean;1834 readonly asDispatched: {1835 readonly task: ITuple<[u32, u32]>;1836 readonly id: Option<U8aFixed>;1837 readonly result: Result<Null, SpRuntimeDispatchError>;1838 } & Struct;1839 readonly isCallLookupFailed: boolean;1840 readonly asCallLookupFailed: {1841 readonly task: ITuple<[u32, u32]>;1842 readonly id: Option<U8aFixed>;1843 readonly error: FrameSupportScheduleLookupError;1844 } & Struct;1845 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';1846}18471848/** @name PalletUnqSchedulerScheduledV3 */1849export interface PalletUnqSchedulerScheduledV3 extends Struct {1850 readonly maybeId: Option<U8aFixed>;1851 readonly priority: u8;1852 readonly call: FrameSupportScheduleMaybeHashed;1853 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;1854 readonly origin: OpalRuntimeOriginCaller;1855}18561857/** @name PalletXcmCall */1858export interface PalletXcmCall extends Enum {1859 readonly isSend: boolean;1860 readonly asSend: {1861 readonly dest: XcmVersionedMultiLocation;1862 readonly message: XcmVersionedXcm;1863 } & Struct;1864 readonly isTeleportAssets: boolean;1865 readonly asTeleportAssets: {1866 readonly dest: XcmVersionedMultiLocation;1867 readonly beneficiary: XcmVersionedMultiLocation;1868 readonly assets: XcmVersionedMultiAssets;1869 readonly feeAssetItem: u32;1870 } & Struct;1871 readonly isReserveTransferAssets: boolean;1872 readonly asReserveTransferAssets: {1873 readonly dest: XcmVersionedMultiLocation;1874 readonly beneficiary: XcmVersionedMultiLocation;1875 readonly assets: XcmVersionedMultiAssets;1876 readonly feeAssetItem: u32;1877 } & Struct;1878 readonly isExecute: boolean;1879 readonly asExecute: {1880 readonly message: XcmVersionedXcm;1881 readonly maxWeight: u64;1882 } & Struct;1883 readonly isForceXcmVersion: boolean;1884 readonly asForceXcmVersion: {1885 readonly location: XcmV1MultiLocation;1886 readonly xcmVersion: u32;1887 } & Struct;1888 readonly isForceDefaultXcmVersion: boolean;1889 readonly asForceDefaultXcmVersion: {1890 readonly maybeXcmVersion: Option<u32>;1891 } & Struct;1892 readonly isForceSubscribeVersionNotify: boolean;1893 readonly asForceSubscribeVersionNotify: {1894 readonly location: XcmVersionedMultiLocation;1895 } & Struct;1896 readonly isForceUnsubscribeVersionNotify: boolean;1897 readonly asForceUnsubscribeVersionNotify: {1898 readonly location: XcmVersionedMultiLocation;1899 } & Struct;1900 readonly isLimitedReserveTransferAssets: boolean;1901 readonly asLimitedReserveTransferAssets: {1902 readonly dest: XcmVersionedMultiLocation;1903 readonly beneficiary: XcmVersionedMultiLocation;1904 readonly assets: XcmVersionedMultiAssets;1905 readonly feeAssetItem: u32;1906 readonly weightLimit: XcmV2WeightLimit;1907 } & Struct;1908 readonly isLimitedTeleportAssets: boolean;1909 readonly asLimitedTeleportAssets: {1910 readonly dest: XcmVersionedMultiLocation;1911 readonly beneficiary: XcmVersionedMultiLocation;1912 readonly assets: XcmVersionedMultiAssets;1913 readonly feeAssetItem: u32;1914 readonly weightLimit: XcmV2WeightLimit;1915 } & Struct;1916 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';1917}19181919/** @name PalletXcmError */1920export interface PalletXcmError extends Enum {1921 readonly isUnreachable: boolean;1922 readonly isSendFailure: boolean;1923 readonly isFiltered: boolean;1924 readonly isUnweighableMessage: boolean;1925 readonly isDestinationNotInvertible: boolean;1926 readonly isEmpty: boolean;1927 readonly isCannotReanchor: boolean;1928 readonly isTooManyAssets: boolean;1929 readonly isInvalidOrigin: boolean;1930 readonly isBadVersion: boolean;1931 readonly isBadLocation: boolean;1932 readonly isNoSubscription: boolean;1933 readonly isAlreadySubscribed: boolean;1934 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';1935}19361937/** @name PalletXcmEvent */1938export interface PalletXcmEvent extends Enum {1939 readonly isAttempted: boolean;1940 readonly asAttempted: XcmV2TraitsOutcome;1941 readonly isSent: boolean;1942 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;1943 readonly isUnexpectedResponse: boolean;1944 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;1945 readonly isResponseReady: boolean;1946 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;1947 readonly isNotified: boolean;1948 readonly asNotified: ITuple<[u64, u8, u8]>;1949 readonly isNotifyOverweight: boolean;1950 readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;1951 readonly isNotifyDispatchError: boolean;1952 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;1953 readonly isNotifyDecodeFailed: boolean;1954 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;1955 readonly isInvalidResponder: boolean;1956 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;1957 readonly isInvalidResponderVersion: boolean;1958 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;1959 readonly isResponseTaken: boolean;1960 readonly asResponseTaken: u64;1961 readonly isAssetsTrapped: boolean;1962 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;1963 readonly isVersionChangeNotified: boolean;1964 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;1965 readonly isSupportedVersionChanged: boolean;1966 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;1967 readonly isNotifyTargetSendFail: boolean;1968 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;1969 readonly isNotifyTargetMigrationFail: boolean;1970 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;1971 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';1972}19731974/** @name PalletXcmOrigin */1975export interface PalletXcmOrigin extends Enum {1976 readonly isXcm: boolean;1977 readonly asXcm: XcmV1MultiLocation;1978 readonly isResponse: boolean;1979 readonly asResponse: XcmV1MultiLocation;1980 readonly type: 'Xcm' | 'Response';1981}19821983/** @name PhantomTypeUpDataStructs */1984export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}19851986/** @name PolkadotCorePrimitivesInboundDownwardMessage */1987export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1988 readonly sentAt: u32;1989 readonly msg: Bytes;1990}19911992/** @name PolkadotCorePrimitivesInboundHrmpMessage */1993export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1994 readonly sentAt: u32;1995 readonly data: Bytes;1996}19971998/** @name PolkadotCorePrimitivesOutboundHrmpMessage */1999export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {2000 readonly recipient: u32;2001 readonly data: Bytes;2002}20032004/** @name PolkadotParachainPrimitivesXcmpMessageFormat */2005export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2006 readonly isConcatenatedVersionedXcm: boolean;2007 readonly isConcatenatedEncodedBlob: boolean;2008 readonly isSignals: boolean;2009 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2010}20112012/** @name PolkadotPrimitivesV2AbridgedHostConfiguration */2013export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {2014 readonly maxCodeSize: u32;2015 readonly maxHeadDataSize: u32;2016 readonly maxUpwardQueueCount: u32;2017 readonly maxUpwardQueueSize: u32;2018 readonly maxUpwardMessageSize: u32;2019 readonly maxUpwardMessageNumPerCandidate: u32;2020 readonly hrmpMaxMessageNumPerCandidate: u32;2021 readonly validationUpgradeCooldown: u32;2022 readonly validationUpgradeDelay: u32;2023}20242025/** @name PolkadotPrimitivesV2AbridgedHrmpChannel */2026export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {2027 readonly maxCapacity: u32;2028 readonly maxTotalSize: u32;2029 readonly maxMessageSize: u32;2030 readonly msgCount: u32;2031 readonly totalSize: u32;2032 readonly mqcHead: Option<H256>;2033}20342035/** @name PolkadotPrimitivesV2PersistedValidationData */2036export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {2037 readonly parentHead: Bytes;2038 readonly relayParentNumber: u32;2039 readonly relayParentStorageRoot: H256;2040 readonly maxPovSize: u32;2041}20422043/** @name PolkadotPrimitivesV2UpgradeRestriction */2044export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {2045 readonly isPresent: boolean;2046 readonly type: 'Present';2047}20482049/** @name RmrkTraitsBaseBaseInfo */2050export interface RmrkTraitsBaseBaseInfo extends Struct {2051 readonly issuer: AccountId32;2052 readonly baseType: Bytes;2053 readonly symbol: Bytes;2054}20552056/** @name RmrkTraitsCollectionCollectionInfo */2057export interface RmrkTraitsCollectionCollectionInfo extends Struct {2058 readonly issuer: AccountId32;2059 readonly metadata: Bytes;2060 readonly max: Option<u32>;2061 readonly symbol: Bytes;2062 readonly nftsCount: u32;2063}20642065/** @name RmrkTraitsNftAccountIdOrCollectionNftTuple */2066export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {2067 readonly isAccountId: boolean;2068 readonly asAccountId: AccountId32;2069 readonly isCollectionAndNftTuple: boolean;2070 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;2071 readonly type: 'AccountId' | 'CollectionAndNftTuple';2072}20732074/** @name RmrkTraitsNftNftChild */2075export interface RmrkTraitsNftNftChild extends Struct {2076 readonly collectionId: u32;2077 readonly nftId: u32;2078}20792080/** @name RmrkTraitsNftNftInfo */2081export interface RmrkTraitsNftNftInfo extends Struct {2082 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2083 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;2084 readonly metadata: Bytes;2085 readonly equipped: bool;2086 readonly pending: bool;2087}20882089/** @name RmrkTraitsNftRoyaltyInfo */2090export interface RmrkTraitsNftRoyaltyInfo extends Struct {2091 readonly recipient: AccountId32;2092 readonly amount: Permill;2093}20942095/** @name RmrkTraitsPartEquippableList */2096export interface RmrkTraitsPartEquippableList extends Enum {2097 readonly isAll: boolean;2098 readonly isEmpty: boolean;2099 readonly isCustom: boolean;2100 readonly asCustom: Vec<u32>;2101 readonly type: 'All' | 'Empty' | 'Custom';2102}21032104/** @name RmrkTraitsPartFixedPart */2105export interface RmrkTraitsPartFixedPart extends Struct {2106 readonly id: u32;2107 readonly z: u32;2108 readonly src: Bytes;2109}21102111/** @name RmrkTraitsPartPartType */2112export interface RmrkTraitsPartPartType extends Enum {2113 readonly isFixedPart: boolean;2114 readonly asFixedPart: RmrkTraitsPartFixedPart;2115 readonly isSlotPart: boolean;2116 readonly asSlotPart: RmrkTraitsPartSlotPart;2117 readonly type: 'FixedPart' | 'SlotPart';2118}21192120/** @name RmrkTraitsPartSlotPart */2121export interface RmrkTraitsPartSlotPart extends Struct {2122 readonly id: u32;2123 readonly equippable: RmrkTraitsPartEquippableList;2124 readonly src: Bytes;2125 readonly z: u32;2126}21272128/** @name RmrkTraitsPropertyPropertyInfo */2129export interface RmrkTraitsPropertyPropertyInfo extends Struct {2130 readonly key: Bytes;2131 readonly value: Bytes;2132}21332134/** @name RmrkTraitsResourceBasicResource */2135export interface RmrkTraitsResourceBasicResource extends Struct {2136 readonly src: Option<Bytes>;2137 readonly metadata: Option<Bytes>;2138 readonly license: Option<Bytes>;2139 readonly thumb: Option<Bytes>;2140}21412142/** @name RmrkTraitsResourceComposableResource */2143export interface RmrkTraitsResourceComposableResource extends Struct {2144 readonly parts: Vec<u32>;2145 readonly base: u32;2146 readonly src: Option<Bytes>;2147 readonly metadata: Option<Bytes>;2148 readonly license: Option<Bytes>;2149 readonly thumb: Option<Bytes>;2150}21512152/** @name RmrkTraitsResourceResourceInfo */2153export interface RmrkTraitsResourceResourceInfo extends Struct {2154 readonly id: u32;2155 readonly resource: RmrkTraitsResourceResourceTypes;2156 readonly pending: bool;2157 readonly pendingRemoval: bool;2158}21592160/** @name RmrkTraitsResourceResourceTypes */2161export interface RmrkTraitsResourceResourceTypes extends Enum {2162 readonly isBasic: boolean;2163 readonly asBasic: RmrkTraitsResourceBasicResource;2164 readonly isComposable: boolean;2165 readonly asComposable: RmrkTraitsResourceComposableResource;2166 readonly isSlot: boolean;2167 readonly asSlot: RmrkTraitsResourceSlotResource;2168 readonly type: 'Basic' | 'Composable' | 'Slot';2169}21702171/** @name RmrkTraitsResourceSlotResource */2172export interface RmrkTraitsResourceSlotResource extends Struct {2173 readonly base: u32;2174 readonly src: Option<Bytes>;2175 readonly metadata: Option<Bytes>;2176 readonly slot: u32;2177 readonly license: Option<Bytes>;2178 readonly thumb: Option<Bytes>;2179}21802181/** @name RmrkTraitsTheme */2182export interface RmrkTraitsTheme extends Struct {2183 readonly name: Bytes;2184 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2185 readonly inherit: bool;2186}21872188/** @name RmrkTraitsThemeThemeProperty */2189export interface RmrkTraitsThemeThemeProperty extends Struct {2190 readonly key: Bytes;2191 readonly value: Bytes;2192}21932194/** @name SpCoreEcdsaSignature */2195export interface SpCoreEcdsaSignature extends U8aFixed {}21962197/** @name SpCoreEd25519Signature */2198export interface SpCoreEd25519Signature extends U8aFixed {}21992200/** @name SpCoreSr25519Signature */2201export interface SpCoreSr25519Signature extends U8aFixed {}22022203/** @name SpCoreVoid */2204export interface SpCoreVoid extends Null {}22052206/** @name SpRuntimeArithmeticError */2207export interface SpRuntimeArithmeticError extends Enum {2208 readonly isUnderflow: boolean;2209 readonly isOverflow: boolean;2210 readonly isDivisionByZero: boolean;2211 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2212}22132214/** @name SpRuntimeDigest */2215export interface SpRuntimeDigest extends Struct {2216 readonly logs: Vec<SpRuntimeDigestDigestItem>;2217}22182219/** @name SpRuntimeDigestDigestItem */2220export interface SpRuntimeDigestDigestItem extends Enum {2221 readonly isOther: boolean;2222 readonly asOther: Bytes;2223 readonly isConsensus: boolean;2224 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;2225 readonly isSeal: boolean;2226 readonly asSeal: ITuple<[U8aFixed, Bytes]>;2227 readonly isPreRuntime: boolean;2228 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;2229 readonly isRuntimeEnvironmentUpdated: boolean;2230 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2231}22322233/** @name SpRuntimeDispatchError */2234export interface SpRuntimeDispatchError extends Enum {2235 readonly isOther: boolean;2236 readonly isCannotLookup: boolean;2237 readonly isBadOrigin: boolean;2238 readonly isModule: boolean;2239 readonly asModule: SpRuntimeModuleError;2240 readonly isConsumerRemaining: boolean;2241 readonly isNoProviders: boolean;2242 readonly isTooManyConsumers: boolean;2243 readonly isToken: boolean;2244 readonly asToken: SpRuntimeTokenError;2245 readonly isArithmetic: boolean;2246 readonly asArithmetic: SpRuntimeArithmeticError;2247 readonly isTransactional: boolean;2248 readonly asTransactional: SpRuntimeTransactionalError;2249 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';2250}22512252/** @name SpRuntimeModuleError */2253export interface SpRuntimeModuleError extends Struct {2254 readonly index: u8;2255 readonly error: U8aFixed;2256}22572258/** @name SpRuntimeMultiSignature */2259export interface SpRuntimeMultiSignature extends Enum {2260 readonly isEd25519: boolean;2261 readonly asEd25519: SpCoreEd25519Signature;2262 readonly isSr25519: boolean;2263 readonly asSr25519: SpCoreSr25519Signature;2264 readonly isEcdsa: boolean;2265 readonly asEcdsa: SpCoreEcdsaSignature;2266 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2267}22682269/** @name SpRuntimeTokenError */2270export interface SpRuntimeTokenError extends Enum {2271 readonly isNoFunds: boolean;2272 readonly isWouldDie: boolean;2273 readonly isBelowMinimum: boolean;2274 readonly isCannotCreate: boolean;2275 readonly isUnknownAsset: boolean;2276 readonly isFrozen: boolean;2277 readonly isUnsupported: boolean;2278 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2279}22802281/** @name SpRuntimeTransactionalError */2282export interface SpRuntimeTransactionalError extends Enum {2283 readonly isLimitReached: boolean;2284 readonly isNoLayer: boolean;2285 readonly type: 'LimitReached' | 'NoLayer';2286}22872288/** @name SpTrieStorageProof */2289export interface SpTrieStorageProof extends Struct {2290 readonly trieNodes: BTreeSet<Bytes>;2291}22922293/** @name SpVersionRuntimeVersion */2294export interface SpVersionRuntimeVersion extends Struct {2295 readonly specName: Text;2296 readonly implName: Text;2297 readonly authoringVersion: u32;2298 readonly specVersion: u32;2299 readonly implVersion: u32;2300 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2301 readonly transactionVersion: u32;2302 readonly stateVersion: u8;2303}23042305/** @name UpDataStructsAccessMode */2306export interface UpDataStructsAccessMode extends Enum {2307 readonly isNormal: boolean;2308 readonly isAllowList: boolean;2309 readonly type: 'Normal' | 'AllowList';2310}23112312/** @name UpDataStructsCollection */2313export interface UpDataStructsCollection extends Struct {2314 readonly owner: AccountId32;2315 readonly mode: UpDataStructsCollectionMode;2316 readonly name: Vec<u16>;2317 readonly description: Vec<u16>;2318 readonly tokenPrefix: Bytes;2319 readonly sponsorship: UpDataStructsSponsorshipState;2320 readonly limits: UpDataStructsCollectionLimits;2321 readonly permissions: UpDataStructsCollectionPermissions;2322 readonly externalCollection: bool;2323}23242325/** @name UpDataStructsCollectionLimits */2326export interface UpDataStructsCollectionLimits extends Struct {2327 readonly accountTokenOwnershipLimit: Option<u32>;2328 readonly sponsoredDataSize: Option<u32>;2329 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2330 readonly tokenLimit: Option<u32>;2331 readonly sponsorTransferTimeout: Option<u32>;2332 readonly sponsorApproveTimeout: Option<u32>;2333 readonly ownerCanTransfer: Option<bool>;2334 readonly ownerCanDestroy: Option<bool>;2335 readonly transfersEnabled: Option<bool>;2336}23372338/** @name UpDataStructsCollectionMode */2339export interface UpDataStructsCollectionMode extends Enum {2340 readonly isNft: boolean;2341 readonly isFungible: boolean;2342 readonly asFungible: u8;2343 readonly isReFungible: boolean;2344 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2345}23462347/** @name UpDataStructsCollectionPermissions */2348export interface UpDataStructsCollectionPermissions extends Struct {2349 readonly access: Option<UpDataStructsAccessMode>;2350 readonly mintMode: Option<bool>;2351 readonly nesting: Option<UpDataStructsNestingRule>;2352}23532354/** @name UpDataStructsCollectionStats */2355export interface UpDataStructsCollectionStats extends Struct {2356 readonly created: u32;2357 readonly destroyed: u32;2358 readonly alive: u32;2359}23602361/** @name UpDataStructsCreateCollectionData */2362export interface UpDataStructsCreateCollectionData extends Struct {2363 readonly mode: UpDataStructsCollectionMode;2364 readonly access: Option<UpDataStructsAccessMode>;2365 readonly name: Vec<u16>;2366 readonly description: Vec<u16>;2367 readonly tokenPrefix: Bytes;2368 readonly pendingSponsor: Option<AccountId32>;2369 readonly limits: Option<UpDataStructsCollectionLimits>;2370 readonly permissions: Option<UpDataStructsCollectionPermissions>;2371 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2372 readonly properties: Vec<UpDataStructsProperty>;2373}23742375/** @name UpDataStructsCreateFungibleData */2376export interface UpDataStructsCreateFungibleData extends Struct {2377 readonly value: u128;2378}23792380/** @name UpDataStructsCreateItemData */2381export interface UpDataStructsCreateItemData extends Enum {2382 readonly isNft: boolean;2383 readonly asNft: UpDataStructsCreateNftData;2384 readonly isFungible: boolean;2385 readonly asFungible: UpDataStructsCreateFungibleData;2386 readonly isReFungible: boolean;2387 readonly asReFungible: UpDataStructsCreateReFungibleData;2388 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2389}23902391/** @name UpDataStructsCreateItemExData */2392export interface UpDataStructsCreateItemExData extends Enum {2393 readonly isNft: boolean;2394 readonly asNft: Vec<UpDataStructsCreateNftExData>;2395 readonly isFungible: boolean;2396 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr,u128>;2397 readonly isRefungibleMultipleItems: boolean;2398 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExData>;2399 readonly isRefungibleMultipleOwners: boolean;2400 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExData;2401 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2402}24032404/** @name UpDataStructsCreateNftData */2405export interface UpDataStructsCreateNftData extends Struct {2406 readonly properties: Vec<UpDataStructsProperty>;2407}24082409/** @name UpDataStructsCreateNftExData */2410export interface UpDataStructsCreateNftExData extends Struct {2411 readonly properties: Vec<UpDataStructsProperty>;2412 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2413}24142415/** @name UpDataStructsCreateReFungibleData */2416export interface UpDataStructsCreateReFungibleData extends Struct {2417 readonly constData: Bytes;2418 readonly pieces: u128;2419}24202421/** @name UpDataStructsCreateRefungibleExData */2422export interface UpDataStructsCreateRefungibleExData extends Struct {2423 readonly constData: Bytes;2424 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2425}24262427/** @name UpDataStructsNestingRule */2428export interface UpDataStructsNestingRule extends Enum {2429 readonly isDisabled: boolean;2430 readonly isOwner: boolean;2431 readonly isOwnerRestricted: boolean;2432 readonly asOwnerRestricted: BTreeSet<u32>;2433 readonly type: 'Disabled' | 'Owner' | 'OwnerRestricted';2434}24352436/** @name UpDataStructsProperties */2437export interface UpDataStructsProperties extends Struct {2438 readonly map: UpDataStructsPropertiesMapBoundedVec;2439 readonly consumedSpace: u32;2440 readonly spaceLimit: u32;2441}24422443/** @name UpDataStructsPropertiesMapBoundedVec */2444export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}24452446/** @name UpDataStructsPropertiesMapPropertyPermission */2447export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}24482449/** @name UpDataStructsProperty */2450export interface UpDataStructsProperty extends Struct {2451 readonly key: Bytes;2452 readonly value: Bytes;2453}24542455/** @name UpDataStructsPropertyKeyPermission */2456export interface UpDataStructsPropertyKeyPermission extends Struct {2457 readonly key: Bytes;2458 readonly permission: UpDataStructsPropertyPermission;2459}24602461/** @name UpDataStructsPropertyPermission */2462export interface UpDataStructsPropertyPermission extends Struct {2463 readonly mutable: bool;2464 readonly collectionAdmin: bool;2465 readonly tokenOwner: bool;2466}24672468/** @name UpDataStructsRpcCollection */2469export interface UpDataStructsRpcCollection extends Struct {2470 readonly owner: AccountId32;2471 readonly mode: UpDataStructsCollectionMode;2472 readonly name: Vec<u16>;2473 readonly description: Vec<u16>;2474 readonly tokenPrefix: Bytes;2475 readonly sponsorship: UpDataStructsSponsorshipState;2476 readonly limits: UpDataStructsCollectionLimits;2477 readonly permissions: UpDataStructsCollectionPermissions;2478 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2479 readonly properties: Vec<UpDataStructsProperty>;2480 readonly readOnly: bool;2481}24822483/** @name UpDataStructsSponsoringRateLimit */2484export interface UpDataStructsSponsoringRateLimit extends Enum {2485 readonly isSponsoringDisabled: boolean;2486 readonly isBlocks: boolean;2487 readonly asBlocks: u32;2488 readonly type: 'SponsoringDisabled' | 'Blocks';2489}24902491/** @name UpDataStructsSponsorshipState */2492export interface UpDataStructsSponsorshipState extends Enum {2493 readonly isDisabled: boolean;2494 readonly isUnconfirmed: boolean;2495 readonly asUnconfirmed: AccountId32;2496 readonly isConfirmed: boolean;2497 readonly asConfirmed: AccountId32;2498 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2499}25002501/** @name UpDataStructsTokenChild */2502export interface UpDataStructsTokenChild extends Struct {2503 readonly token: u32;2504 readonly collection: u32;2505}25062507/** @name UpDataStructsTokenData */2508export interface UpDataStructsTokenData extends Struct {2509 readonly properties: Vec<UpDataStructsProperty>;2510 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2511}25122513/** @name XcmDoubleEncoded */2514export interface XcmDoubleEncoded extends Struct {2515 readonly encoded: Bytes;2516}25172518/** @name XcmV0Junction */2519export interface XcmV0Junction extends Enum {2520 readonly isParent: boolean;2521 readonly isParachain: boolean;2522 readonly asParachain: Compact<u32>;2523 readonly isAccountId32: boolean;2524 readonly asAccountId32: {2525 readonly network: XcmV0JunctionNetworkId;2526 readonly id: U8aFixed;2527 } & Struct;2528 readonly isAccountIndex64: boolean;2529 readonly asAccountIndex64: {2530 readonly network: XcmV0JunctionNetworkId;2531 readonly index: Compact<u64>;2532 } & Struct;2533 readonly isAccountKey20: boolean;2534 readonly asAccountKey20: {2535 readonly network: XcmV0JunctionNetworkId;2536 readonly key: U8aFixed;2537 } & Struct;2538 readonly isPalletInstance: boolean;2539 readonly asPalletInstance: u8;2540 readonly isGeneralIndex: boolean;2541 readonly asGeneralIndex: Compact<u128>;2542 readonly isGeneralKey: boolean;2543 readonly asGeneralKey: Bytes;2544 readonly isOnlyChild: boolean;2545 readonly isPlurality: boolean;2546 readonly asPlurality: {2547 readonly id: XcmV0JunctionBodyId;2548 readonly part: XcmV0JunctionBodyPart;2549 } & Struct;2550 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';2551}25522553/** @name XcmV0JunctionBodyId */2554export interface XcmV0JunctionBodyId extends Enum {2555 readonly isUnit: boolean;2556 readonly isNamed: boolean;2557 readonly asNamed: Bytes;2558 readonly isIndex: boolean;2559 readonly asIndex: Compact<u32>;2560 readonly isExecutive: boolean;2561 readonly isTechnical: boolean;2562 readonly isLegislative: boolean;2563 readonly isJudicial: boolean;2564 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';2565}25662567/** @name XcmV0JunctionBodyPart */2568export interface XcmV0JunctionBodyPart extends Enum {2569 readonly isVoice: boolean;2570 readonly isMembers: boolean;2571 readonly asMembers: {2572 readonly count: Compact<u32>;2573 } & Struct;2574 readonly isFraction: boolean;2575 readonly asFraction: {2576 readonly nom: Compact<u32>;2577 readonly denom: Compact<u32>;2578 } & Struct;2579 readonly isAtLeastProportion: boolean;2580 readonly asAtLeastProportion: {2581 readonly nom: Compact<u32>;2582 readonly denom: Compact<u32>;2583 } & Struct;2584 readonly isMoreThanProportion: boolean;2585 readonly asMoreThanProportion: {2586 readonly nom: Compact<u32>;2587 readonly denom: Compact<u32>;2588 } & Struct;2589 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';2590}25912592/** @name XcmV0JunctionNetworkId */2593export interface XcmV0JunctionNetworkId extends Enum {2594 readonly isAny: boolean;2595 readonly isNamed: boolean;2596 readonly asNamed: Bytes;2597 readonly isPolkadot: boolean;2598 readonly isKusama: boolean;2599 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';2600}26012602/** @name XcmV0MultiAsset */2603export interface XcmV0MultiAsset extends Enum {2604 readonly isNone: boolean;2605 readonly isAll: boolean;2606 readonly isAllFungible: boolean;2607 readonly isAllNonFungible: boolean;2608 readonly isAllAbstractFungible: boolean;2609 readonly asAllAbstractFungible: {2610 readonly id: Bytes;2611 } & Struct;2612 readonly isAllAbstractNonFungible: boolean;2613 readonly asAllAbstractNonFungible: {2614 readonly class: Bytes;2615 } & Struct;2616 readonly isAllConcreteFungible: boolean;2617 readonly asAllConcreteFungible: {2618 readonly id: XcmV0MultiLocation;2619 } & Struct;2620 readonly isAllConcreteNonFungible: boolean;2621 readonly asAllConcreteNonFungible: {2622 readonly class: XcmV0MultiLocation;2623 } & Struct;2624 readonly isAbstractFungible: boolean;2625 readonly asAbstractFungible: {2626 readonly id: Bytes;2627 readonly amount: Compact<u128>;2628 } & Struct;2629 readonly isAbstractNonFungible: boolean;2630 readonly asAbstractNonFungible: {2631 readonly class: Bytes;2632 readonly instance: XcmV1MultiassetAssetInstance;2633 } & Struct;2634 readonly isConcreteFungible: boolean;2635 readonly asConcreteFungible: {2636 readonly id: XcmV0MultiLocation;2637 readonly amount: Compact<u128>;2638 } & Struct;2639 readonly isConcreteNonFungible: boolean;2640 readonly asConcreteNonFungible: {2641 readonly class: XcmV0MultiLocation;2642 readonly instance: XcmV1MultiassetAssetInstance;2643 } & Struct;2644 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';2645}26462647/** @name XcmV0MultiLocation */2648export interface XcmV0MultiLocation extends Enum {2649 readonly isNull: boolean;2650 readonly isX1: boolean;2651 readonly asX1: XcmV0Junction;2652 readonly isX2: boolean;2653 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;2654 readonly isX3: boolean;2655 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2656 readonly isX4: boolean;2657 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2658 readonly isX5: boolean;2659 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2660 readonly isX6: boolean;2661 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2662 readonly isX7: boolean;2663 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2664 readonly isX8: boolean;2665 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;2666 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';2667}26682669/** @name XcmV0Order */2670export interface XcmV0Order extends Enum {2671 readonly isNull: boolean;2672 readonly isDepositAsset: boolean;2673 readonly asDepositAsset: {2674 readonly assets: Vec<XcmV0MultiAsset>;2675 readonly dest: XcmV0MultiLocation;2676 } & Struct;2677 readonly isDepositReserveAsset: boolean;2678 readonly asDepositReserveAsset: {2679 readonly assets: Vec<XcmV0MultiAsset>;2680 readonly dest: XcmV0MultiLocation;2681 readonly effects: Vec<XcmV0Order>;2682 } & Struct;2683 readonly isExchangeAsset: boolean;2684 readonly asExchangeAsset: {2685 readonly give: Vec<XcmV0MultiAsset>;2686 readonly receive: Vec<XcmV0MultiAsset>;2687 } & Struct;2688 readonly isInitiateReserveWithdraw: boolean;2689 readonly asInitiateReserveWithdraw: {2690 readonly assets: Vec<XcmV0MultiAsset>;2691 readonly reserve: XcmV0MultiLocation;2692 readonly effects: Vec<XcmV0Order>;2693 } & Struct;2694 readonly isInitiateTeleport: boolean;2695 readonly asInitiateTeleport: {2696 readonly assets: Vec<XcmV0MultiAsset>;2697 readonly dest: XcmV0MultiLocation;2698 readonly effects: Vec<XcmV0Order>;2699 } & Struct;2700 readonly isQueryHolding: boolean;2701 readonly asQueryHolding: {2702 readonly queryId: Compact<u64>;2703 readonly dest: XcmV0MultiLocation;2704 readonly assets: Vec<XcmV0MultiAsset>;2705 } & Struct;2706 readonly isBuyExecution: boolean;2707 readonly asBuyExecution: {2708 readonly fees: XcmV0MultiAsset;2709 readonly weight: u64;2710 readonly debt: u64;2711 readonly haltOnError: bool;2712 readonly xcm: Vec<XcmV0Xcm>;2713 } & Struct;2714 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2715}27162717/** @name XcmV0OriginKind */2718export interface XcmV0OriginKind extends Enum {2719 readonly isNative: boolean;2720 readonly isSovereignAccount: boolean;2721 readonly isSuperuser: boolean;2722 readonly isXcm: boolean;2723 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';2724}27252726/** @name XcmV0Response */2727export interface XcmV0Response extends Enum {2728 readonly isAssets: boolean;2729 readonly asAssets: Vec<XcmV0MultiAsset>;2730 readonly type: 'Assets';2731}27322733/** @name XcmV0Xcm */2734export interface XcmV0Xcm extends Enum {2735 readonly isWithdrawAsset: boolean;2736 readonly asWithdrawAsset: {2737 readonly assets: Vec<XcmV0MultiAsset>;2738 readonly effects: Vec<XcmV0Order>;2739 } & Struct;2740 readonly isReserveAssetDeposit: boolean;2741 readonly asReserveAssetDeposit: {2742 readonly assets: Vec<XcmV0MultiAsset>;2743 readonly effects: Vec<XcmV0Order>;2744 } & Struct;2745 readonly isTeleportAsset: boolean;2746 readonly asTeleportAsset: {2747 readonly assets: Vec<XcmV0MultiAsset>;2748 readonly effects: Vec<XcmV0Order>;2749 } & Struct;2750 readonly isQueryResponse: boolean;2751 readonly asQueryResponse: {2752 readonly queryId: Compact<u64>;2753 readonly response: XcmV0Response;2754 } & Struct;2755 readonly isTransferAsset: boolean;2756 readonly asTransferAsset: {2757 readonly assets: Vec<XcmV0MultiAsset>;2758 readonly dest: XcmV0MultiLocation;2759 } & Struct;2760 readonly isTransferReserveAsset: boolean;2761 readonly asTransferReserveAsset: {2762 readonly assets: Vec<XcmV0MultiAsset>;2763 readonly dest: XcmV0MultiLocation;2764 readonly effects: Vec<XcmV0Order>;2765 } & Struct;2766 readonly isTransact: boolean;2767 readonly asTransact: {2768 readonly originType: XcmV0OriginKind;2769 readonly requireWeightAtMost: u64;2770 readonly call: XcmDoubleEncoded;2771 } & Struct;2772 readonly isHrmpNewChannelOpenRequest: boolean;2773 readonly asHrmpNewChannelOpenRequest: {2774 readonly sender: Compact<u32>;2775 readonly maxMessageSize: Compact<u32>;2776 readonly maxCapacity: Compact<u32>;2777 } & Struct;2778 readonly isHrmpChannelAccepted: boolean;2779 readonly asHrmpChannelAccepted: {2780 readonly recipient: Compact<u32>;2781 } & Struct;2782 readonly isHrmpChannelClosing: boolean;2783 readonly asHrmpChannelClosing: {2784 readonly initiator: Compact<u32>;2785 readonly sender: Compact<u32>;2786 readonly recipient: Compact<u32>;2787 } & Struct;2788 readonly isRelayedFrom: boolean;2789 readonly asRelayedFrom: {2790 readonly who: XcmV0MultiLocation;2791 readonly message: XcmV0Xcm;2792 } & Struct;2793 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2794}27952796/** @name XcmV1Junction */2797export interface XcmV1Junction extends Enum {2798 readonly isParachain: boolean;2799 readonly asParachain: Compact<u32>;2800 readonly isAccountId32: boolean;2801 readonly asAccountId32: {2802 readonly network: XcmV0JunctionNetworkId;2803 readonly id: U8aFixed;2804 } & Struct;2805 readonly isAccountIndex64: boolean;2806 readonly asAccountIndex64: {2807 readonly network: XcmV0JunctionNetworkId;2808 readonly index: Compact<u64>;2809 } & Struct;2810 readonly isAccountKey20: boolean;2811 readonly asAccountKey20: {2812 readonly network: XcmV0JunctionNetworkId;2813 readonly key: U8aFixed;2814 } & Struct;2815 readonly isPalletInstance: boolean;2816 readonly asPalletInstance: u8;2817 readonly isGeneralIndex: boolean;2818 readonly asGeneralIndex: Compact<u128>;2819 readonly isGeneralKey: boolean;2820 readonly asGeneralKey: Bytes;2821 readonly isOnlyChild: boolean;2822 readonly isPlurality: boolean;2823 readonly asPlurality: {2824 readonly id: XcmV0JunctionBodyId;2825 readonly part: XcmV0JunctionBodyPart;2826 } & Struct;2827 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';2828}28292830/** @name XcmV1MultiAsset */2831export interface XcmV1MultiAsset extends Struct {2832 readonly id: XcmV1MultiassetAssetId;2833 readonly fun: XcmV1MultiassetFungibility;2834}28352836/** @name XcmV1MultiassetAssetId */2837export interface XcmV1MultiassetAssetId extends Enum {2838 readonly isConcrete: boolean;2839 readonly asConcrete: XcmV1MultiLocation;2840 readonly isAbstract: boolean;2841 readonly asAbstract: Bytes;2842 readonly type: 'Concrete' | 'Abstract';2843}28442845/** @name XcmV1MultiassetAssetInstance */2846export interface XcmV1MultiassetAssetInstance extends Enum {2847 readonly isUndefined: boolean;2848 readonly isIndex: boolean;2849 readonly asIndex: Compact<u128>;2850 readonly isArray4: boolean;2851 readonly asArray4: U8aFixed;2852 readonly isArray8: boolean;2853 readonly asArray8: U8aFixed;2854 readonly isArray16: boolean;2855 readonly asArray16: U8aFixed;2856 readonly isArray32: boolean;2857 readonly asArray32: U8aFixed;2858 readonly isBlob: boolean;2859 readonly asBlob: Bytes;2860 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';2861}28622863/** @name XcmV1MultiassetFungibility */2864export interface XcmV1MultiassetFungibility extends Enum {2865 readonly isFungible: boolean;2866 readonly asFungible: Compact<u128>;2867 readonly isNonFungible: boolean;2868 readonly asNonFungible: XcmV1MultiassetAssetInstance;2869 readonly type: 'Fungible' | 'NonFungible';2870}28712872/** @name XcmV1MultiassetMultiAssetFilter */2873export interface XcmV1MultiassetMultiAssetFilter extends Enum {2874 readonly isDefinite: boolean;2875 readonly asDefinite: XcmV1MultiassetMultiAssets;2876 readonly isWild: boolean;2877 readonly asWild: XcmV1MultiassetWildMultiAsset;2878 readonly type: 'Definite' | 'Wild';2879}28802881/** @name XcmV1MultiassetMultiAssets */2882export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}28832884/** @name XcmV1MultiassetWildFungibility */2885export interface XcmV1MultiassetWildFungibility extends Enum {2886 readonly isFungible: boolean;2887 readonly isNonFungible: boolean;2888 readonly type: 'Fungible' | 'NonFungible';2889}28902891/** @name XcmV1MultiassetWildMultiAsset */2892export interface XcmV1MultiassetWildMultiAsset extends Enum {2893 readonly isAll: boolean;2894 readonly isAllOf: boolean;2895 readonly asAllOf: {2896 readonly id: XcmV1MultiassetAssetId;2897 readonly fun: XcmV1MultiassetWildFungibility;2898 } & Struct;2899 readonly type: 'All' | 'AllOf';2900}29012902/** @name XcmV1MultiLocation */2903export interface XcmV1MultiLocation extends Struct {2904 readonly parents: u8;2905 readonly interior: XcmV1MultilocationJunctions;2906}29072908/** @name XcmV1MultilocationJunctions */2909export interface XcmV1MultilocationJunctions extends Enum {2910 readonly isHere: boolean;2911 readonly isX1: boolean;2912 readonly asX1: XcmV1Junction;2913 readonly isX2: boolean;2914 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;2915 readonly isX3: boolean;2916 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2917 readonly isX4: boolean;2918 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2919 readonly isX5: boolean;2920 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2921 readonly isX6: boolean;2922 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2923 readonly isX7: boolean;2924 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2925 readonly isX8: boolean;2926 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2927 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';2928}29292930/** @name XcmV1Order */2931export interface XcmV1Order extends Enum {2932 readonly isNoop: boolean;2933 readonly isDepositAsset: boolean;2934 readonly asDepositAsset: {2935 readonly assets: XcmV1MultiassetMultiAssetFilter;2936 readonly maxAssets: u32;2937 readonly beneficiary: XcmV1MultiLocation;2938 } & Struct;2939 readonly isDepositReserveAsset: boolean;2940 readonly asDepositReserveAsset: {2941 readonly assets: XcmV1MultiassetMultiAssetFilter;2942 readonly maxAssets: u32;2943 readonly dest: XcmV1MultiLocation;2944 readonly effects: Vec<XcmV1Order>;2945 } & Struct;2946 readonly isExchangeAsset: boolean;2947 readonly asExchangeAsset: {2948 readonly give: XcmV1MultiassetMultiAssetFilter;2949 readonly receive: XcmV1MultiassetMultiAssets;2950 } & Struct;2951 readonly isInitiateReserveWithdraw: boolean;2952 readonly asInitiateReserveWithdraw: {2953 readonly assets: XcmV1MultiassetMultiAssetFilter;2954 readonly reserve: XcmV1MultiLocation;2955 readonly effects: Vec<XcmV1Order>;2956 } & Struct;2957 readonly isInitiateTeleport: boolean;2958 readonly asInitiateTeleport: {2959 readonly assets: XcmV1MultiassetMultiAssetFilter;2960 readonly dest: XcmV1MultiLocation;2961 readonly effects: Vec<XcmV1Order>;2962 } & Struct;2963 readonly isQueryHolding: boolean;2964 readonly asQueryHolding: {2965 readonly queryId: Compact<u64>;2966 readonly dest: XcmV1MultiLocation;2967 readonly assets: XcmV1MultiassetMultiAssetFilter;2968 } & Struct;2969 readonly isBuyExecution: boolean;2970 readonly asBuyExecution: {2971 readonly fees: XcmV1MultiAsset;2972 readonly weight: u64;2973 readonly debt: u64;2974 readonly haltOnError: bool;2975 readonly instructions: Vec<XcmV1Xcm>;2976 } & Struct;2977 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2978}29792980/** @name XcmV1Response */2981export interface XcmV1Response extends Enum {2982 readonly isAssets: boolean;2983 readonly asAssets: XcmV1MultiassetMultiAssets;2984 readonly isVersion: boolean;2985 readonly asVersion: u32;2986 readonly type: 'Assets' | 'Version';2987}29882989/** @name XcmV1Xcm */2990export interface XcmV1Xcm extends Enum {2991 readonly isWithdrawAsset: boolean;2992 readonly asWithdrawAsset: {2993 readonly assets: XcmV1MultiassetMultiAssets;2994 readonly effects: Vec<XcmV1Order>;2995 } & Struct;2996 readonly isReserveAssetDeposited: boolean;2997 readonly asReserveAssetDeposited: {2998 readonly assets: XcmV1MultiassetMultiAssets;2999 readonly effects: Vec<XcmV1Order>;3000 } & Struct;3001 readonly isReceiveTeleportedAsset: boolean;3002 readonly asReceiveTeleportedAsset: {3003 readonly assets: XcmV1MultiassetMultiAssets;3004 readonly effects: Vec<XcmV1Order>;3005 } & Struct;3006 readonly isQueryResponse: boolean;3007 readonly asQueryResponse: {3008 readonly queryId: Compact<u64>;3009 readonly response: XcmV1Response;3010 } & Struct;3011 readonly isTransferAsset: boolean;3012 readonly asTransferAsset: {3013 readonly assets: XcmV1MultiassetMultiAssets;3014 readonly beneficiary: XcmV1MultiLocation;3015 } & Struct;3016 readonly isTransferReserveAsset: boolean;3017 readonly asTransferReserveAsset: {3018 readonly assets: XcmV1MultiassetMultiAssets;3019 readonly dest: XcmV1MultiLocation;3020 readonly effects: Vec<XcmV1Order>;3021 } & Struct;3022 readonly isTransact: boolean;3023 readonly asTransact: {3024 readonly originType: XcmV0OriginKind;3025 readonly requireWeightAtMost: u64;3026 readonly call: XcmDoubleEncoded;3027 } & Struct;3028 readonly isHrmpNewChannelOpenRequest: boolean;3029 readonly asHrmpNewChannelOpenRequest: {3030 readonly sender: Compact<u32>;3031 readonly maxMessageSize: Compact<u32>;3032 readonly maxCapacity: Compact<u32>;3033 } & Struct;3034 readonly isHrmpChannelAccepted: boolean;3035 readonly asHrmpChannelAccepted: {3036 readonly recipient: Compact<u32>;3037 } & Struct;3038 readonly isHrmpChannelClosing: boolean;3039 readonly asHrmpChannelClosing: {3040 readonly initiator: Compact<u32>;3041 readonly sender: Compact<u32>;3042 readonly recipient: Compact<u32>;3043 } & Struct;3044 readonly isRelayedFrom: boolean;3045 readonly asRelayedFrom: {3046 readonly who: XcmV1MultilocationJunctions;3047 readonly message: XcmV1Xcm;3048 } & Struct;3049 readonly isSubscribeVersion: boolean;3050 readonly asSubscribeVersion: {3051 readonly queryId: Compact<u64>;3052 readonly maxResponseWeight: Compact<u64>;3053 } & Struct;3054 readonly isUnsubscribeVersion: boolean;3055 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';3056}30573058/** @name XcmV2Instruction */3059export interface XcmV2Instruction extends Enum {3060 readonly isWithdrawAsset: boolean;3061 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;3062 readonly isReserveAssetDeposited: boolean;3063 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;3064 readonly isReceiveTeleportedAsset: boolean;3065 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;3066 readonly isQueryResponse: boolean;3067 readonly asQueryResponse: {3068 readonly queryId: Compact<u64>;3069 readonly response: XcmV2Response;3070 readonly maxWeight: Compact<u64>;3071 } & Struct;3072 readonly isTransferAsset: boolean;3073 readonly asTransferAsset: {3074 readonly assets: XcmV1MultiassetMultiAssets;3075 readonly beneficiary: XcmV1MultiLocation;3076 } & Struct;3077 readonly isTransferReserveAsset: boolean;3078 readonly asTransferReserveAsset: {3079 readonly assets: XcmV1MultiassetMultiAssets;3080 readonly dest: XcmV1MultiLocation;3081 readonly xcm: XcmV2Xcm;3082 } & Struct;3083 readonly isTransact: boolean;3084 readonly asTransact: {3085 readonly originType: XcmV0OriginKind;3086 readonly requireWeightAtMost: Compact<u64>;3087 readonly call: XcmDoubleEncoded;3088 } & Struct;3089 readonly isHrmpNewChannelOpenRequest: boolean;3090 readonly asHrmpNewChannelOpenRequest: {3091 readonly sender: Compact<u32>;3092 readonly maxMessageSize: Compact<u32>;3093 readonly maxCapacity: Compact<u32>;3094 } & Struct;3095 readonly isHrmpChannelAccepted: boolean;3096 readonly asHrmpChannelAccepted: {3097 readonly recipient: Compact<u32>;3098 } & Struct;3099 readonly isHrmpChannelClosing: boolean;3100 readonly asHrmpChannelClosing: {3101 readonly initiator: Compact<u32>;3102 readonly sender: Compact<u32>;3103 readonly recipient: Compact<u32>;3104 } & Struct;3105 readonly isClearOrigin: boolean;3106 readonly isDescendOrigin: boolean;3107 readonly asDescendOrigin: XcmV1MultilocationJunctions;3108 readonly isReportError: boolean;3109 readonly asReportError: {3110 readonly queryId: Compact<u64>;3111 readonly dest: XcmV1MultiLocation;3112 readonly maxResponseWeight: Compact<u64>;3113 } & Struct;3114 readonly isDepositAsset: boolean;3115 readonly asDepositAsset: {3116 readonly assets: XcmV1MultiassetMultiAssetFilter;3117 readonly maxAssets: Compact<u32>;3118 readonly beneficiary: XcmV1MultiLocation;3119 } & Struct;3120 readonly isDepositReserveAsset: boolean;3121 readonly asDepositReserveAsset: {3122 readonly assets: XcmV1MultiassetMultiAssetFilter;3123 readonly maxAssets: Compact<u32>;3124 readonly dest: XcmV1MultiLocation;3125 readonly xcm: XcmV2Xcm;3126 } & Struct;3127 readonly isExchangeAsset: boolean;3128 readonly asExchangeAsset: {3129 readonly give: XcmV1MultiassetMultiAssetFilter;3130 readonly receive: XcmV1MultiassetMultiAssets;3131 } & Struct;3132 readonly isInitiateReserveWithdraw: boolean;3133 readonly asInitiateReserveWithdraw: {3134 readonly assets: XcmV1MultiassetMultiAssetFilter;3135 readonly reserve: XcmV1MultiLocation;3136 readonly xcm: XcmV2Xcm;3137 } & Struct;3138 readonly isInitiateTeleport: boolean;3139 readonly asInitiateTeleport: {3140 readonly assets: XcmV1MultiassetMultiAssetFilter;3141 readonly dest: XcmV1MultiLocation;3142 readonly xcm: XcmV2Xcm;3143 } & Struct;3144 readonly isQueryHolding: boolean;3145 readonly asQueryHolding: {3146 readonly queryId: Compact<u64>;3147 readonly dest: XcmV1MultiLocation;3148 readonly assets: XcmV1MultiassetMultiAssetFilter;3149 readonly maxResponseWeight: Compact<u64>;3150 } & Struct;3151 readonly isBuyExecution: boolean;3152 readonly asBuyExecution: {3153 readonly fees: XcmV1MultiAsset;3154 readonly weightLimit: XcmV2WeightLimit;3155 } & Struct;3156 readonly isRefundSurplus: boolean;3157 readonly isSetErrorHandler: boolean;3158 readonly asSetErrorHandler: XcmV2Xcm;3159 readonly isSetAppendix: boolean;3160 readonly asSetAppendix: XcmV2Xcm;3161 readonly isClearError: boolean;3162 readonly isClaimAsset: boolean;3163 readonly asClaimAsset: {3164 readonly assets: XcmV1MultiassetMultiAssets;3165 readonly ticket: XcmV1MultiLocation;3166 } & Struct;3167 readonly isTrap: boolean;3168 readonly asTrap: Compact<u64>;3169 readonly isSubscribeVersion: boolean;3170 readonly asSubscribeVersion: {3171 readonly queryId: Compact<u64>;3172 readonly maxResponseWeight: Compact<u64>;3173 } & Struct;3174 readonly isUnsubscribeVersion: boolean;3175 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';3176}31773178/** @name XcmV2Response */3179export interface XcmV2Response extends Enum {3180 readonly isNull: boolean;3181 readonly isAssets: boolean;3182 readonly asAssets: XcmV1MultiassetMultiAssets;3183 readonly isExecutionResult: boolean;3184 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;3185 readonly isVersion: boolean;3186 readonly asVersion: u32;3187 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';3188}31893190/** @name XcmV2TraitsError */3191export interface XcmV2TraitsError extends Enum {3192 readonly isOverflow: boolean;3193 readonly isUnimplemented: boolean;3194 readonly isUntrustedReserveLocation: boolean;3195 readonly isUntrustedTeleportLocation: boolean;3196 readonly isMultiLocationFull: boolean;3197 readonly isMultiLocationNotInvertible: boolean;3198 readonly isBadOrigin: boolean;3199 readonly isInvalidLocation: boolean;3200 readonly isAssetNotFound: boolean;3201 readonly isFailedToTransactAsset: boolean;3202 readonly isNotWithdrawable: boolean;3203 readonly isLocationCannotHold: boolean;3204 readonly isExceedsMaxMessageSize: boolean;3205 readonly isDestinationUnsupported: boolean;3206 readonly isTransport: boolean;3207 readonly isUnroutable: boolean;3208 readonly isUnknownClaim: boolean;3209 readonly isFailedToDecode: boolean;3210 readonly isMaxWeightInvalid: boolean;3211 readonly isNotHoldingFees: boolean;3212 readonly isTooExpensive: boolean;3213 readonly isTrap: boolean;3214 readonly asTrap: u64;3215 readonly isUnhandledXcmVersion: boolean;3216 readonly isWeightLimitReached: boolean;3217 readonly asWeightLimitReached: u64;3218 readonly isBarrier: boolean;3219 readonly isWeightNotComputable: boolean;3220 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';3221}32223223/** @name XcmV2TraitsOutcome */3224export interface XcmV2TraitsOutcome extends Enum {3225 readonly isComplete: boolean;3226 readonly asComplete: u64;3227 readonly isIncomplete: boolean;3228 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;3229 readonly isError: boolean;3230 readonly asError: XcmV2TraitsError;3231 readonly type: 'Complete' | 'Incomplete' | 'Error';3232}32333234/** @name XcmV2WeightLimit */3235export interface XcmV2WeightLimit extends Enum {3236 readonly isUnlimited: boolean;3237 readonly isLimited: boolean;3238 readonly asLimited: Compact<u64>;3239 readonly type: 'Unlimited' | 'Limited';3240}32413242/** @name XcmV2Xcm */3243export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}32443245/** @name XcmVersionedMultiAssets */3246export interface XcmVersionedMultiAssets extends Enum {3247 readonly isV0: boolean;3248 readonly asV0: Vec<XcmV0MultiAsset>;3249 readonly isV1: boolean;3250 readonly asV1: XcmV1MultiassetMultiAssets;3251 readonly type: 'V0' | 'V1';3252}32533254/** @name XcmVersionedMultiLocation */3255export interface XcmVersionedMultiLocation extends Enum {3256 readonly isV0: boolean;3257 readonly asV0: XcmV0MultiLocation;3258 readonly isV1: boolean;3259 readonly asV1: XcmV1MultiLocation;3260 readonly type: 'V0' | 'V1';3261}32623263/** @name XcmVersionedXcm */3264export interface XcmVersionedXcm extends Enum {3265 readonly isV0: boolean;3266 readonly asV0: XcmV0Xcm;3267 readonly isV1: boolean;3268 readonly asV1: XcmV1Xcm;3269 readonly isV2: boolean;3270 readonly asV2: XcmV2Xcm;3271 readonly type: 'V0' | 'V1' | 'V2';3272}32733274export type PHANTOM_DEFAULT = 'default';tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -154,17 +154,17 @@
* Lookup48: pallet_balances::ReserveData<ReserveIdentifier, Balance>
**/
PalletBalancesReserveData: {
- id: '[u8;8]',
+ id: '[u8;16]',
amount: 'u128'
},
/**
- * Lookup50: pallet_balances::Releases
+ * Lookup51: pallet_balances::Releases
**/
PalletBalancesReleases: {
_enum: ['V1_0_0', 'V2_0_0']
},
/**
- * Lookup51: pallet_balances::pallet::Call<T, I>
+ * Lookup52: pallet_balances::pallet::Call<T, I>
**/
PalletBalancesCall: {
_enum: {
@@ -197,7 +197,7 @@
}
},
/**
- * Lookup57: pallet_balances::pallet::Event<T, I>
+ * Lookup58: pallet_balances::pallet::Event<T, I>
**/
PalletBalancesEvent: {
_enum: {
@@ -248,19 +248,19 @@
}
},
/**
- * Lookup58: frame_support::traits::tokens::misc::BalanceStatus
+ * Lookup59: frame_support::traits::tokens::misc::BalanceStatus
**/
FrameSupportTokensMiscBalanceStatus: {
_enum: ['Free', 'Reserved']
},
/**
- * Lookup59: pallet_balances::pallet::Error<T, I>
+ * Lookup60: pallet_balances::pallet::Error<T, I>
**/
PalletBalancesError: {
_enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup62: pallet_timestamp::pallet::Call<T>
+ * Lookup63: pallet_timestamp::pallet::Call<T>
**/
PalletTimestampCall: {
_enum: {
@@ -270,13 +270,13 @@
}
},
/**
- * Lookup65: pallet_transaction_payment::Releases
+ * Lookup66: pallet_transaction_payment::Releases
**/
PalletTransactionPaymentReleases: {
_enum: ['V1Ancient', 'V2']
},
/**
- * Lookup67: frame_support::weights::WeightToFeeCoefficient<Balance>
+ * Lookup68: frame_support::weights::WeightToFeeCoefficient<Balance>
**/
FrameSupportWeightsWeightToFeeCoefficient: {
coeffInteger: 'u128',
@@ -285,7 +285,7 @@
degree: 'u8'
},
/**
- * Lookup69: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
+ * Lookup70: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
**/
PalletTreasuryProposal: {
proposer: 'AccountId32',
@@ -294,7 +294,7 @@
bond: 'u128'
},
/**
- * Lookup72: pallet_treasury::pallet::Call<T, I>
+ * Lookup73: pallet_treasury::pallet::Call<T, I>
**/
PalletTreasuryCall: {
_enum: {
@@ -306,12 +306,15 @@
proposalId: 'Compact<u32>',
},
approve_proposal: {
+ proposalId: 'Compact<u32>',
+ },
+ remove_approval: {
proposalId: 'Compact<u32>'
}
}
},
/**
- * Lookup74: pallet_treasury::pallet::Event<T, I>
+ * Lookup75: pallet_treasury::pallet::Event<T, I>
**/
PalletTreasuryEvent: {
_enum: {
@@ -342,17 +345,17 @@
}
},
/**
- * Lookup77: frame_support::PalletId
+ * Lookup78: frame_support::PalletId
**/
FrameSupportPalletId: '[u8;8]',
/**
- * Lookup78: pallet_treasury::pallet::Error<T, I>
+ * Lookup79: pallet_treasury::pallet::Error<T, I>
**/
PalletTreasuryError: {
- _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals']
+ _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'ProposalNotApproved']
},
/**
- * Lookup79: pallet_sudo::pallet::Call<T>
+ * Lookup80: pallet_sudo::pallet::Call<T>
**/
PalletSudoCall: {
_enum: {
@@ -376,7 +379,7 @@
}
},
/**
- * Lookup81: frame_system::pallet::Call<T>
+ * Lookup82: frame_system::pallet::Call<T>
**/
FrameSystemCall: {
_enum: {
@@ -414,7 +417,7 @@
}
},
/**
- * Lookup84: orml_vesting::module::Call<T>
+ * Lookup85: orml_vesting::module::Call<T>
**/
OrmlVestingModuleCall: {
_enum: {
@@ -433,7 +436,7 @@
}
},
/**
- * Lookup85: orml_vesting::VestingSchedule<BlockNumber, Balance>
+ * Lookup86: orml_vesting::VestingSchedule<BlockNumber, Balance>
**/
OrmlVestingVestingSchedule: {
start: 'u32',
@@ -442,7 +445,7 @@
perPeriod: 'Compact<u128>'
},
/**
- * Lookup87: cumulus_pallet_xcmp_queue::pallet::Call<T>
+ * Lookup88: cumulus_pallet_xcmp_queue::pallet::Call<T>
**/
CumulusPalletXcmpQueueCall: {
_enum: {
@@ -491,7 +494,7 @@
}
},
/**
- * Lookup88: pallet_xcm::pallet::Call<T>
+ * Lookup89: pallet_xcm::pallet::Call<T>
**/
PalletXcmCall: {
_enum: {
@@ -545,7 +548,7 @@
}
},
/**
- * Lookup89: xcm::VersionedMultiLocation
+ * Lookup90: xcm::VersionedMultiLocation
**/
XcmVersionedMultiLocation: {
_enum: {
@@ -554,7 +557,7 @@
}
},
/**
- * Lookup90: xcm::v0::multi_location::MultiLocation
+ * Lookup91: xcm::v0::multi_location::MultiLocation
**/
XcmV0MultiLocation: {
_enum: {
@@ -570,7 +573,7 @@
}
},
/**
- * Lookup91: xcm::v0::junction::Junction
+ * Lookup92: xcm::v0::junction::Junction
**/
XcmV0Junction: {
_enum: {
@@ -599,7 +602,7 @@
}
},
/**
- * Lookup92: xcm::v0::junction::NetworkId
+ * Lookup93: xcm::v0::junction::NetworkId
**/
XcmV0JunctionNetworkId: {
_enum: {
@@ -610,7 +613,7 @@
}
},
/**
- * Lookup93: xcm::v0::junction::BodyId
+ * Lookup94: xcm::v0::junction::BodyId
**/
XcmV0JunctionBodyId: {
_enum: {
@@ -624,7 +627,7 @@
}
},
/**
- * Lookup94: xcm::v0::junction::BodyPart
+ * Lookup95: xcm::v0::junction::BodyPart
**/
XcmV0JunctionBodyPart: {
_enum: {
@@ -647,14 +650,14 @@
}
},
/**
- * Lookup95: xcm::v1::multilocation::MultiLocation
+ * Lookup96: xcm::v1::multilocation::MultiLocation
**/
XcmV1MultiLocation: {
parents: 'u8',
interior: 'XcmV1MultilocationJunctions'
},
/**
- * Lookup96: xcm::v1::multilocation::Junctions
+ * Lookup97: xcm::v1::multilocation::Junctions
**/
XcmV1MultilocationJunctions: {
_enum: {
@@ -670,7 +673,7 @@
}
},
/**
- * Lookup97: xcm::v1::junction::Junction
+ * Lookup98: xcm::v1::junction::Junction
**/
XcmV1Junction: {
_enum: {
@@ -698,7 +701,7 @@
}
},
/**
- * Lookup98: xcm::VersionedXcm<Call>
+ * Lookup99: xcm::VersionedXcm<Call>
**/
XcmVersionedXcm: {
_enum: {
@@ -708,7 +711,7 @@
}
},
/**
- * Lookup99: xcm::v0::Xcm<Call>
+ * Lookup100: xcm::v0::Xcm<Call>
**/
XcmV0Xcm: {
_enum: {
@@ -762,7 +765,7 @@
}
},
/**
- * Lookup101: xcm::v0::multi_asset::MultiAsset
+ * Lookup102: xcm::v0::multi_asset::MultiAsset
**/
XcmV0MultiAsset: {
_enum: {
@@ -801,7 +804,7 @@
}
},
/**
- * Lookup102: xcm::v1::multiasset::AssetInstance
+ * Lookup103: xcm::v1::multiasset::AssetInstance
**/
XcmV1MultiassetAssetInstance: {
_enum: {
@@ -1520,15 +1523,48 @@
users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>'
},
/**
- * Lookup204: pallet_template_transaction_payment::Call<T>
+ * Lookup204: pallet_unq_scheduler::pallet::Call<T>
**/
+ PalletUnqSchedulerCall: {
+ _enum: {
+ schedule_named: {
+ id: '[u8;16]',
+ when: 'u32',
+ maybePeriodic: 'Option<(u32,u32)>',
+ priority: 'u8',
+ call: 'FrameSupportScheduleMaybeHashed',
+ },
+ cancel_named: {
+ id: '[u8;16]',
+ },
+ schedule_named_after: {
+ id: '[u8;16]',
+ after: 'u32',
+ maybePeriodic: 'Option<(u32,u32)>',
+ priority: 'u8',
+ call: 'FrameSupportScheduleMaybeHashed'
+ }
+ }
+ },
+ /**
+ * Lookup206: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>
+ **/
+ FrameSupportScheduleMaybeHashed: {
+ _enum: {
+ Value: 'Call',
+ Hash: 'H256'
+ }
+ },
+ /**
+ * Lookup207: pallet_template_transaction_payment::Call<T>
+ **/
PalletTemplateTransactionPaymentCall: 'Null',
/**
- * Lookup205: pallet_structure::pallet::Call<T>
+ * Lookup208: pallet_structure::pallet::Call<T>
**/
PalletStructureCall: 'Null',
/**
- * Lookup206: pallet_rmrk_core::pallet::Call<T>
+ * Lookup209: pallet_rmrk_core::pallet::Call<T>
**/
PalletRmrkCoreCall: {
_enum: {
@@ -1618,7 +1654,7 @@
}
},
/**
- * Lookup210: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
+ * Lookup213: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
**/
RmrkTraitsNftAccountIdOrCollectionNftTuple: {
_enum: {
@@ -1627,7 +1663,7 @@
}
},
/**
- * Lookup214: rmrk_traits::resource::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup217: rmrk_traits::resource::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceBasicResource: {
src: 'Option<Bytes>',
@@ -1636,7 +1672,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup217: rmrk_traits::resource::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup220: rmrk_traits::resource::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceComposableResource: {
parts: 'Vec<u32>',
@@ -1647,7 +1683,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup219: rmrk_traits::resource::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup222: rmrk_traits::resource::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceSlotResource: {
base: 'u32',
@@ -1658,7 +1694,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup220: pallet_rmrk_equip::pallet::Call<T>
+ * Lookup223: pallet_rmrk_equip::pallet::Call<T>
**/
PalletRmrkEquipCall: {
_enum: {
@@ -1674,7 +1710,7 @@
}
},
/**
- * Lookup222: rmrk_traits::part::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup225: rmrk_traits::part::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartPartType: {
_enum: {
@@ -1683,7 +1719,7 @@
}
},
/**
- * Lookup224: rmrk_traits::part::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup227: rmrk_traits::part::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartFixedPart: {
id: 'u32',
@@ -1691,7 +1727,7 @@
src: 'Bytes'
},
/**
- * Lookup225: rmrk_traits::part::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup228: rmrk_traits::part::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartSlotPart: {
id: 'u32',
@@ -1700,7 +1736,7 @@
z: 'u32'
},
/**
- * Lookup226: rmrk_traits::part::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup229: rmrk_traits::part::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartEquippableList: {
_enum: {
@@ -1710,7 +1746,7 @@
}
},
/**
- * Lookup228: rmrk_traits::theme::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>
+ * Lookup231: rmrk_traits::theme::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>
**/
RmrkTraitsTheme: {
name: 'Bytes',
@@ -1718,14 +1754,14 @@
inherit: 'bool'
},
/**
- * Lookup230: rmrk_traits::theme::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup233: rmrk_traits::theme::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsThemeThemeProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup231: pallet_evm::pallet::Call<T>
+ * Lookup234: pallet_evm::pallet::Call<T>
**/
PalletEvmCall: {
_enum: {
@@ -1768,7 +1804,7 @@
}
},
/**
- * Lookup237: pallet_ethereum::pallet::Call<T>
+ * Lookup240: pallet_ethereum::pallet::Call<T>
**/
PalletEthereumCall: {
_enum: {
@@ -1778,7 +1814,7 @@
}
},
/**
- * Lookup238: ethereum::transaction::TransactionV2
+ * Lookup241: ethereum::transaction::TransactionV2
**/
EthereumTransactionTransactionV2: {
_enum: {
@@ -1788,7 +1824,7 @@
}
},
/**
- * Lookup239: ethereum::transaction::LegacyTransaction
+ * Lookup242: ethereum::transaction::LegacyTransaction
**/
EthereumTransactionLegacyTransaction: {
nonce: 'U256',
@@ -1800,7 +1836,7 @@
signature: 'EthereumTransactionTransactionSignature'
},
/**
- * Lookup240: ethereum::transaction::TransactionAction
+ * Lookup243: ethereum::transaction::TransactionAction
**/
EthereumTransactionTransactionAction: {
_enum: {
@@ -1809,7 +1845,7 @@
}
},
/**
- * Lookup241: ethereum::transaction::TransactionSignature
+ * Lookup244: ethereum::transaction::TransactionSignature
**/
EthereumTransactionTransactionSignature: {
v: 'u64',
@@ -1817,7 +1853,7 @@
s: 'H256'
},
/**
- * Lookup243: ethereum::transaction::EIP2930Transaction
+ * Lookup246: ethereum::transaction::EIP2930Transaction
**/
EthereumTransactionEip2930Transaction: {
chainId: 'u64',
@@ -1833,14 +1869,14 @@
s: 'H256'
},
/**
- * Lookup245: ethereum::transaction::AccessListItem
+ * Lookup248: ethereum::transaction::AccessListItem
**/
EthereumTransactionAccessListItem: {
address: 'H160',
storageKeys: 'Vec<H256>'
},
/**
- * Lookup246: ethereum::transaction::EIP1559Transaction
+ * Lookup249: ethereum::transaction::EIP1559Transaction
**/
EthereumTransactionEip1559Transaction: {
chainId: 'u64',
@@ -1857,7 +1893,7 @@
s: 'H256'
},
/**
- * Lookup247: pallet_evm_migration::pallet::Call<T>
+ * Lookup250: pallet_evm_migration::pallet::Call<T>
**/
PalletEvmMigrationCall: {
_enum: {
@@ -1875,7 +1911,7 @@
}
},
/**
- * Lookup250: pallet_sudo::pallet::Event<T>
+ * Lookup253: pallet_sudo::pallet::Event<T>
**/
PalletSudoEvent: {
_enum: {
@@ -1891,7 +1927,7 @@
}
},
/**
- * Lookup252: sp_runtime::DispatchError
+ * Lookup255: sp_runtime::DispatchError
**/
SpRuntimeDispatchError: {
_enum: {
@@ -1908,38 +1944,38 @@
}
},
/**
- * Lookup253: sp_runtime::ModuleError
+ * Lookup256: sp_runtime::ModuleError
**/
SpRuntimeModuleError: {
index: 'u8',
error: '[u8;4]'
},
/**
- * Lookup254: sp_runtime::TokenError
+ * Lookup257: sp_runtime::TokenError
**/
SpRuntimeTokenError: {
_enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
},
/**
- * Lookup255: sp_runtime::ArithmeticError
+ * Lookup258: sp_runtime::ArithmeticError
**/
SpRuntimeArithmeticError: {
_enum: ['Underflow', 'Overflow', 'DivisionByZero']
},
/**
- * Lookup256: sp_runtime::TransactionalError
+ * Lookup259: sp_runtime::TransactionalError
**/
SpRuntimeTransactionalError: {
_enum: ['LimitReached', 'NoLayer']
},
/**
- * Lookup257: pallet_sudo::pallet::Error<T>
+ * Lookup260: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup258: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
+ * Lookup261: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
**/
FrameSystemAccountInfo: {
nonce: 'u32',
@@ -1949,7 +1985,7 @@
data: 'PalletBalancesAccountData'
},
/**
- * Lookup259: frame_support::weights::PerDispatchClass<T>
+ * Lookup262: frame_support::weights::PerDispatchClass<T>
**/
FrameSupportWeightsPerDispatchClassU64: {
normal: 'u64',
@@ -1957,13 +1993,13 @@
mandatory: 'u64'
},
/**
- * Lookup260: sp_runtime::generic::digest::Digest
+ * Lookup263: sp_runtime::generic::digest::Digest
**/
SpRuntimeDigest: {
logs: 'Vec<SpRuntimeDigestDigestItem>'
},
/**
- * Lookup262: sp_runtime::generic::digest::DigestItem
+ * Lookup265: sp_runtime::generic::digest::DigestItem
**/
SpRuntimeDigestDigestItem: {
_enum: {
@@ -1979,7 +2015,7 @@
}
},
/**
- * Lookup264: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
+ * Lookup267: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
**/
FrameSystemEventRecord: {
phase: 'FrameSystemPhase',
@@ -1987,7 +2023,7 @@
topics: 'Vec<H256>'
},
/**
- * Lookup266: frame_system::pallet::Event<T>
+ * Lookup269: frame_system::pallet::Event<T>
**/
FrameSystemEvent: {
_enum: {
@@ -2015,7 +2051,7 @@
}
},
/**
- * Lookup267: frame_support::weights::DispatchInfo
+ * Lookup270: frame_support::weights::DispatchInfo
**/
FrameSupportWeightsDispatchInfo: {
weight: 'u64',
@@ -2023,19 +2059,19 @@
paysFee: 'FrameSupportWeightsPays'
},
/**
- * Lookup268: frame_support::weights::DispatchClass
+ * Lookup271: frame_support::weights::DispatchClass
**/
FrameSupportWeightsDispatchClass: {
_enum: ['Normal', 'Operational', 'Mandatory']
},
/**
- * Lookup269: frame_support::weights::Pays
+ * Lookup272: frame_support::weights::Pays
**/
FrameSupportWeightsPays: {
_enum: ['Yes', 'No']
},
/**
- * Lookup270: orml_vesting::module::Event<T>
+ * Lookup273: orml_vesting::module::Event<T>
**/
OrmlVestingModuleEvent: {
_enum: {
@@ -2054,7 +2090,7 @@
}
},
/**
- * Lookup271: cumulus_pallet_xcmp_queue::pallet::Event<T>
+ * Lookup274: cumulus_pallet_xcmp_queue::pallet::Event<T>
**/
CumulusPalletXcmpQueueEvent: {
_enum: {
@@ -2069,7 +2105,7 @@
}
},
/**
- * Lookup272: pallet_xcm::pallet::Event<T>
+ * Lookup275: pallet_xcm::pallet::Event<T>
**/
PalletXcmEvent: {
_enum: {
@@ -2092,7 +2128,7 @@
}
},
/**
- * Lookup273: xcm::v2::traits::Outcome
+ * Lookup276: xcm::v2::traits::Outcome
**/
XcmV2TraitsOutcome: {
_enum: {
@@ -2102,7 +2138,7 @@
}
},
/**
- * Lookup275: cumulus_pallet_xcm::pallet::Event<T>
+ * Lookup278: cumulus_pallet_xcm::pallet::Event<T>
**/
CumulusPalletXcmEvent: {
_enum: {
@@ -2112,7 +2148,7 @@
}
},
/**
- * Lookup276: cumulus_pallet_dmp_queue::pallet::Event<T>
+ * Lookup279: cumulus_pallet_dmp_queue::pallet::Event<T>
**/
CumulusPalletDmpQueueEvent: {
_enum: {
@@ -2125,7 +2161,7 @@
}
},
/**
- * Lookup277: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup280: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletUniqueRawEvent: {
_enum: {
@@ -2142,7 +2178,38 @@
}
},
/**
- * Lookup278: pallet_common::pallet::Event<T>
+ * Lookup281: pallet_unq_scheduler::pallet::Event<T>
+ **/
+ PalletUnqSchedulerEvent: {
+ _enum: {
+ Scheduled: {
+ when: 'u32',
+ index: 'u32',
+ },
+ Canceled: {
+ when: 'u32',
+ index: 'u32',
+ },
+ Dispatched: {
+ task: '(u32,u32)',
+ id: 'Option<[u8;16]>',
+ result: 'Result<Null, SpRuntimeDispatchError>',
+ },
+ CallLookupFailed: {
+ task: '(u32,u32)',
+ id: 'Option<[u8;16]>',
+ error: 'FrameSupportScheduleLookupError'
+ }
+ }
+ },
+ /**
+ * Lookup283: frame_support::traits::schedule::LookupError
+ **/
+ FrameSupportScheduleLookupError: {
+ _enum: ['Unknown', 'BadFormat']
+ },
+ /**
+ * Lookup284: pallet_common::pallet::Event<T>
**/
PalletCommonEvent: {
_enum: {
@@ -2160,7 +2227,7 @@
}
},
/**
- * Lookup279: pallet_structure::pallet::Event<T>
+ * Lookup285: pallet_structure::pallet::Event<T>
**/
PalletStructureEvent: {
_enum: {
@@ -2168,7 +2235,7 @@
}
},
/**
- * Lookup280: pallet_rmrk_core::pallet::Event<T>
+ * Lookup286: pallet_rmrk_core::pallet::Event<T>
**/
PalletRmrkCoreEvent: {
_enum: {
@@ -2245,7 +2312,7 @@
}
},
/**
- * Lookup281: pallet_rmrk_equip::pallet::Event<T>
+ * Lookup287: pallet_rmrk_equip::pallet::Event<T>
**/
PalletRmrkEquipEvent: {
_enum: {
@@ -2256,7 +2323,7 @@
}
},
/**
- * Lookup282: pallet_evm::pallet::Event<T>
+ * Lookup288: pallet_evm::pallet::Event<T>
**/
PalletEvmEvent: {
_enum: {
@@ -2270,7 +2337,7 @@
}
},
/**
- * Lookup283: ethereum::log::Log
+ * Lookup289: ethereum::log::Log
**/
EthereumLog: {
address: 'H160',
@@ -2278,7 +2345,7 @@
data: 'Bytes'
},
/**
- * Lookup284: pallet_ethereum::pallet::Event
+ * Lookup290: pallet_ethereum::pallet::Event
**/
PalletEthereumEvent: {
_enum: {
@@ -2286,7 +2353,7 @@
}
},
/**
- * Lookup285: evm_core::error::ExitReason
+ * Lookup291: evm_core::error::ExitReason
**/
EvmCoreErrorExitReason: {
_enum: {
@@ -2297,13 +2364,13 @@
}
},
/**
- * Lookup286: evm_core::error::ExitSucceed
+ * Lookup292: evm_core::error::ExitSucceed
**/
EvmCoreErrorExitSucceed: {
_enum: ['Stopped', 'Returned', 'Suicided']
},
/**
- * Lookup287: evm_core::error::ExitError
+ * Lookup293: evm_core::error::ExitError
**/
EvmCoreErrorExitError: {
_enum: {
@@ -2325,13 +2392,13 @@
}
},
/**
- * Lookup290: evm_core::error::ExitRevert
+ * Lookup296: evm_core::error::ExitRevert
**/
EvmCoreErrorExitRevert: {
_enum: ['Reverted']
},
/**
- * Lookup291: evm_core::error::ExitFatal
+ * Lookup297: evm_core::error::ExitFatal
**/
EvmCoreErrorExitFatal: {
_enum: {
@@ -2342,7 +2409,7 @@
}
},
/**
- * Lookup292: frame_system::Phase
+ * Lookup298: frame_system::Phase
**/
FrameSystemPhase: {
_enum: {
@@ -2352,14 +2419,14 @@
}
},
/**
- * Lookup294: frame_system::LastRuntimeUpgradeInfo
+ * Lookup300: frame_system::LastRuntimeUpgradeInfo
**/
FrameSystemLastRuntimeUpgradeInfo: {
specVersion: 'Compact<u32>',
specName: 'Text'
},
/**
- * Lookup295: frame_system::limits::BlockWeights
+ * Lookup301: frame_system::limits::BlockWeights
**/
FrameSystemLimitsBlockWeights: {
baseBlock: 'u64',
@@ -2367,7 +2434,7 @@
perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
},
/**
- * Lookup296: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
+ * Lookup302: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
**/
FrameSupportWeightsPerDispatchClassWeightsPerClass: {
normal: 'FrameSystemLimitsWeightsPerClass',
@@ -2375,7 +2442,7 @@
mandatory: 'FrameSystemLimitsWeightsPerClass'
},
/**
- * Lookup297: frame_system::limits::WeightsPerClass
+ * Lookup303: frame_system::limits::WeightsPerClass
**/
FrameSystemLimitsWeightsPerClass: {
baseExtrinsic: 'u64',
@@ -2384,13 +2451,13 @@
reserved: 'Option<u64>'
},
/**
- * Lookup299: frame_system::limits::BlockLength
+ * Lookup305: frame_system::limits::BlockLength
**/
FrameSystemLimitsBlockLength: {
max: 'FrameSupportWeightsPerDispatchClassU32'
},
/**
- * Lookup300: frame_support::weights::PerDispatchClass<T>
+ * Lookup306: frame_support::weights::PerDispatchClass<T>
**/
FrameSupportWeightsPerDispatchClassU32: {
normal: 'u32',
@@ -2398,14 +2465,14 @@
mandatory: 'u32'
},
/**
- * Lookup301: frame_support::weights::RuntimeDbWeight
+ * Lookup307: frame_support::weights::RuntimeDbWeight
**/
FrameSupportWeightsRuntimeDbWeight: {
read: 'u64',
write: 'u64'
},
/**
- * Lookup302: sp_version::RuntimeVersion
+ * Lookup308: sp_version::RuntimeVersion
**/
SpVersionRuntimeVersion: {
specName: 'Text',
@@ -2418,19 +2485,19 @@
stateVersion: 'u8'
},
/**
- * Lookup306: frame_system::pallet::Error<T>
+ * Lookup312: frame_system::pallet::Error<T>
**/
FrameSystemError: {
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
},
/**
- * Lookup308: orml_vesting::module::Error<T>
+ * Lookup314: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup310: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup316: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -2438,19 +2505,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup311: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup317: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup314: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup320: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup317: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup323: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -2460,13 +2527,13 @@
lastIndex: 'u16'
},
/**
- * Lookup318: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup324: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup320: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup326: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
@@ -2477,29 +2544,29 @@
xcmpMaxIndividualWeight: 'u64'
},
/**
- * Lookup322: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup328: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup323: pallet_xcm::pallet::Error<T>
+ * Lookup329: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
},
/**
- * Lookup324: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup330: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup325: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup331: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
maxIndividual: 'u64'
},
/**
- * Lookup326: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup332: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -2507,20 +2574,185 @@
overweightCount: 'u64'
},
/**
- * Lookup329: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup335: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup333: pallet_unique::Error<T>
+ * Lookup339: pallet_unique::Error<T>
**/
PalletUniqueError: {
_enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']
},
/**
- * Lookup334: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ * Lookup342: pallet_unq_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
**/
+ PalletUnqSchedulerScheduledV3: {
+ maybeId: 'Option<[u8;16]>',
+ priority: 'u8',
+ call: 'FrameSupportScheduleMaybeHashed',
+ maybePeriodic: 'Option<(u32,u32)>',
+ origin: 'OpalRuntimeOriginCaller'
+ },
+ /**
+ * Lookup343: opal_runtime::OriginCaller
+ **/
+ OpalRuntimeOriginCaller: {
+ _enum: {
+ __Unused0: 'Null',
+ __Unused1: 'Null',
+ __Unused2: 'Null',
+ __Unused3: 'Null',
+ Void: 'SpCoreVoid',
+ __Unused5: 'Null',
+ __Unused6: 'Null',
+ __Unused7: 'Null',
+ __Unused8: 'Null',
+ __Unused9: 'Null',
+ __Unused10: 'Null',
+ __Unused11: 'Null',
+ __Unused12: 'Null',
+ __Unused13: 'Null',
+ __Unused14: 'Null',
+ __Unused15: 'Null',
+ __Unused16: 'Null',
+ __Unused17: 'Null',
+ __Unused18: 'Null',
+ __Unused19: 'Null',
+ __Unused20: 'Null',
+ __Unused21: 'Null',
+ __Unused22: 'Null',
+ __Unused23: 'Null',
+ __Unused24: 'Null',
+ __Unused25: 'Null',
+ __Unused26: 'Null',
+ __Unused27: 'Null',
+ __Unused28: 'Null',
+ __Unused29: 'Null',
+ __Unused30: 'Null',
+ __Unused31: 'Null',
+ __Unused32: 'Null',
+ __Unused33: 'Null',
+ __Unused34: 'Null',
+ __Unused35: 'Null',
+ system: 'FrameSupportDispatchRawOrigin',
+ __Unused37: 'Null',
+ __Unused38: 'Null',
+ __Unused39: 'Null',
+ __Unused40: 'Null',
+ __Unused41: 'Null',
+ __Unused42: 'Null',
+ __Unused43: 'Null',
+ __Unused44: 'Null',
+ __Unused45: 'Null',
+ __Unused46: 'Null',
+ __Unused47: 'Null',
+ __Unused48: 'Null',
+ __Unused49: 'Null',
+ __Unused50: 'Null',
+ PolkadotXcm: 'PalletXcmOrigin',
+ CumulusXcm: 'CumulusPalletXcmOrigin',
+ __Unused53: 'Null',
+ __Unused54: 'Null',
+ __Unused55: 'Null',
+ __Unused56: 'Null',
+ __Unused57: 'Null',
+ __Unused58: 'Null',
+ __Unused59: 'Null',
+ __Unused60: 'Null',
+ __Unused61: 'Null',
+ __Unused62: 'Null',
+ __Unused63: 'Null',
+ __Unused64: 'Null',
+ __Unused65: 'Null',
+ __Unused66: 'Null',
+ __Unused67: 'Null',
+ __Unused68: 'Null',
+ __Unused69: 'Null',
+ __Unused70: 'Null',
+ __Unused71: 'Null',
+ __Unused72: 'Null',
+ __Unused73: 'Null',
+ __Unused74: 'Null',
+ __Unused75: 'Null',
+ __Unused76: 'Null',
+ __Unused77: 'Null',
+ __Unused78: 'Null',
+ __Unused79: 'Null',
+ __Unused80: 'Null',
+ __Unused81: 'Null',
+ __Unused82: 'Null',
+ __Unused83: 'Null',
+ __Unused84: 'Null',
+ __Unused85: 'Null',
+ __Unused86: 'Null',
+ __Unused87: 'Null',
+ __Unused88: 'Null',
+ __Unused89: 'Null',
+ __Unused90: 'Null',
+ __Unused91: 'Null',
+ __Unused92: 'Null',
+ __Unused93: 'Null',
+ __Unused94: 'Null',
+ __Unused95: 'Null',
+ __Unused96: 'Null',
+ __Unused97: 'Null',
+ __Unused98: 'Null',
+ __Unused99: 'Null',
+ __Unused100: 'Null',
+ Ethereum: 'PalletEthereumRawOrigin'
+ }
+ },
+ /**
+ * Lookup344: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
+ **/
+ FrameSupportDispatchRawOrigin: {
+ _enum: {
+ Root: 'Null',
+ Signed: 'AccountId32',
+ None: 'Null'
+ }
+ },
+ /**
+ * Lookup345: pallet_xcm::pallet::Origin
+ **/
+ PalletXcmOrigin: {
+ _enum: {
+ Xcm: 'XcmV1MultiLocation',
+ Response: 'XcmV1MultiLocation'
+ }
+ },
+ /**
+ * Lookup346: cumulus_pallet_xcm::pallet::Origin
+ **/
+ CumulusPalletXcmOrigin: {
+ _enum: {
+ Relay: 'Null',
+ SiblingParachain: 'u32'
+ }
+ },
+ /**
+ * Lookup347: pallet_ethereum::RawOrigin
+ **/
+ PalletEthereumRawOrigin: {
+ _enum: {
+ EthereumTransaction: 'H160'
+ }
+ },
+ /**
+ * Lookup348: sp_core::Void
+ **/
+ SpCoreVoid: 'Null',
+ /**
+ * Lookup349: pallet_unq_scheduler::pallet::Error<T>
+ **/
+ PalletUnqSchedulerError: {
+ _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']
+ },
+ /**
+ * Lookup350: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ **/
UpDataStructsCollection: {
owner: 'AccountId32',
mode: 'UpDataStructsCollectionMode',
@@ -2533,7 +2765,7 @@
externalCollection: 'bool'
},
/**
- * Lookup335: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup351: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipState: {
_enum: {
@@ -2543,7 +2775,7 @@
}
},
/**
- * Lookup336: up_data_structs::Properties
+ * Lookup352: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -2551,15 +2783,15 @@
spaceLimit: 'u32'
},
/**
- * Lookup337: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup353: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
/**
- * Lookup342: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ * Lookup358: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
**/
UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
/**
- * Lookup349: up_data_structs::CollectionStats
+ * Lookup365: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -2567,25 +2799,25 @@
alive: 'u32'
},
/**
- * Lookup323: up_data_structs::TokenChild
+ * Lookup366: up_data_structs::TokenChild
**/
UpDataStructsTokenChild: {
token: 'u32',
collection: 'u32'
},
/**
- * Lookup324: PhantomType::up_data_structs<T>
+ * Lookup367: PhantomType::up_data_structs<T>
**/
PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
/**
- * Lookup326: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup369: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
properties: 'Vec<UpDataStructsProperty>',
owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>'
},
/**
- * Lookup328: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup371: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -2601,7 +2833,7 @@
readOnly: 'bool'
},
/**
- * Lookup329: up_data_structs::rmrk::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
+ * Lookup372: rmrk_traits::collection::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
**/
RmrkTraitsCollectionCollectionInfo: {
issuer: 'AccountId32',
@@ -2611,7 +2843,7 @@
nftsCount: 'u32'
},
/**
- * Lookup332: up_data_structs::rmrk::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup373: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsNftNftInfo: {
owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -2621,23 +2853,14 @@
pending: 'bool'
},
/**
- * Lookup333: up_data_structs::rmrk::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
- **/
- UpDataStructsRmrkAccountIdOrCollectionNftTuple: {
- _enum: {
- AccountId: 'AccountId32',
- CollectionAndNftTuple: '(u32,u32)'
- }
- },
- /**
- * Lookup335: up_data_structs::rmrk::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+ * Lookup375: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
**/
RmrkTraitsNftRoyaltyInfo: {
recipient: 'AccountId32',
amount: 'Permill'
},
/**
- * Lookup336: up_data_structs::rmrk::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup376: rmrk_traits::resource::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceInfo: {
id: 'u32',
@@ -2646,7 +2869,7 @@
pendingRemoval: 'bool'
},
/**
- * Lookup339: up_data_structs::rmrk::ResourceTypes<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup377: rmrk_traits::resource::ResourceTypes<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceTypes: {
_enum: {
@@ -2656,45 +2879,14 @@
}
},
/**
- * Lookup340: up_data_structs::rmrk::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
- **/
- UpDataStructsRmrkBasicResource: {
- src: 'Option<Bytes>',
- metadata: 'Option<Bytes>',
- license: 'Option<Bytes>',
- thumb: 'Option<Bytes>'
- },
- /**
- * Lookup342: up_data_structs::rmrk::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
- **/
- UpDataStructsRmrkComposableResource: {
- parts: 'Vec<u32>',
- base: 'u32',
- src: 'Option<Bytes>',
- metadata: 'Option<Bytes>',
- license: 'Option<Bytes>',
- thumb: 'Option<Bytes>'
- },
- /**
- * Lookup343: up_data_structs::rmrk::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup378: rmrk_traits::property::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
- UpDataStructsRmrkSlotResource: {
- base: 'u32',
- src: 'Option<Bytes>',
- metadata: 'Option<Bytes>',
- slot: 'u32',
- license: 'Option<Bytes>',
- thumb: 'Option<Bytes>'
- },
- /**
- * Lookup344: up_data_structs::rmrk::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
- **/
RmrkTraitsPropertyPropertyInfo: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup347: up_data_structs::rmrk::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup379: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsBaseBaseInfo: {
issuer: 'AccountId32',
@@ -2702,113 +2894,74 @@
symbol: 'Bytes'
},
/**
- * Lookup348: up_data_structs::rmrk::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
- **/
- UpDataStructsRmrkPartType: {
- _enum: {
- FixedPart: 'UpDataStructsRmrkFixedPart',
- SlotPart: 'UpDataStructsRmrkSlotPart'
- }
- },
- /**
- * Lookup350: up_data_structs::rmrk::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
- **/
- UpDataStructsRmrkFixedPart: {
- id: 'u32',
- z: 'u32',
- src: 'Bytes'
- },
- /**
- * Lookup351: up_data_structs::rmrk::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
- **/
- UpDataStructsRmrkSlotPart: {
- id: 'u32',
- equippable: 'UpDataStructsRmrkEquippableList',
- src: 'Bytes',
- z: 'u32'
- },
- /**
- * Lookup352: up_data_structs::rmrk::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
- **/
- UpDataStructsRmrkEquippableList: {
- _enum: {
- All: 'Null',
- Empty: 'Null',
- Custom: 'Vec<u32>'
- }
- },
- /**
- * Lookup353: up_data_structs::rmrk::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>
- **/
- UpDataStructsRmrkTheme: {
- name: 'Bytes',
- properties: 'Vec<UpDataStructsRmrkThemeProperty>',
- inherit: 'bool'
- },
- /**
- * Lookup355: up_data_structs::rmrk::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup380: rmrk_traits::nft::NftChild
**/
- UpDataStructsRmrkThemeProperty: {
- key: 'Bytes',
- value: 'Bytes'
- },
- /**
- * Lookup356: up_data_structs::rmrk::NftChild
- **/
RmrkTraitsNftNftChild: {
collectionId: 'u32',
nftId: 'u32'
},
/**
- * Lookup358: pallet_common::pallet::Error<T>
+ * Lookup382: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
_enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal']
},
/**
- * Lookup360: pallet_fungible::pallet::Error<T>
+ * Lookup384: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup361: pallet_refungible::ItemData
+ * Lookup385: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes'
},
/**
- * Lookup365: pallet_refungible::pallet::Error<T>
+ * Lookup389: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup366: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup390: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup368: pallet_nonfungible::pallet::Error<T>
+ * Lookup392: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup369: pallet_structure::pallet::Error<T>
+ * Lookup393: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'TokenNotFound']
},
/**
- * Lookup372: pallet_evm::pallet::Error<T>
+ * Lookup394: pallet_rmrk_core::pallet::Error<T>
**/
+ PalletRmrkCoreError: {
+ _enum: ['CorruptedCollectionType', 'NftTypeEncodeError', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'ResourceNotPending']
+ },
+ /**
+ * Lookup396: pallet_rmrk_equip::pallet::Error<T>
+ **/
+ PalletRmrkEquipError: {
+ _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst']
+ },
+ /**
+ * Lookup399: pallet_evm::pallet::Error<T>
+ **/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
},
/**
- * Lookup375: fp_rpc::TransactionStatus
+ * Lookup402: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -2820,11 +2973,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup377: ethbloom::Bloom
+ * Lookup404: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup379: ethereum::receipt::ReceiptV3
+ * Lookup406: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -2834,7 +2987,7 @@
}
},
/**
- * Lookup380: ethereum::receipt::EIP658ReceiptData
+ * Lookup407: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -2843,7 +2996,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup381: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup408: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -2851,7 +3004,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup382: ethereum::header::Header
+ * Lookup409: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -2871,41 +3024,41 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup383: ethereum_types::hash::H64
+ * Lookup410: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup388: pallet_ethereum::pallet::Error<T>
+ * Lookup415: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup389: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup416: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup390: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup417: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup392: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup419: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission']
},
/**
- * Lookup393: pallet_evm_migration::pallet::Error<T>
+ * Lookup420: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
},
/**
- * Lookup395: sp_runtime::MultiSignature
+ * Lookup422: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -2915,43 +3068,43 @@
}
},
/**
- * Lookup396: sp_core::ed25519::Signature
+ * Lookup423: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup398: sp_core::sr25519::Signature
+ * Lookup425: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup399: sp_core::ecdsa::Signature
+ * Lookup426: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup402: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup429: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup403: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup430: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup406: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup433: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup407: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup434: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup408: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup435: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup409: opal_runtime::Runtime
+ * Lookup436: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup410: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup437: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
**/
PalletEthereumFakeTransactionFinalizer: 'Null'
};
tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -1,7 +1,7 @@
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRmrkAccountIdOrCollectionNftTuple, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkBasicResource, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkComposableResource, UpDataStructsRmrkEquippableList, UpDataStructsRmrkFixedPart, UpDataStructsRmrkNftChild, UpDataStructsRmrkNftInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkResourceTypes, UpDataStructsRmrkRoyaltyInfo, UpDataStructsRmrkSlotPart, UpDataStructsRmrkSlotResource, UpDataStructsRmrkTheme, UpDataStructsRmrkThemeProperty, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUnqSchedulerCall, PalletUnqSchedulerError, PalletUnqSchedulerEvent, PalletUnqSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
export interface InterfaceTypes {
@@ -17,6 +17,7 @@
CumulusPalletXcmCall: CumulusPalletXcmCall;
CumulusPalletXcmError: CumulusPalletXcmError;
CumulusPalletXcmEvent: CumulusPalletXcmEvent;
+ CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
@@ -46,7 +47,10 @@
EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;
EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;
FpRpcTransactionStatus: FpRpcTransactionStatus;
+ FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
FrameSupportPalletId: FrameSupportPalletId;
+ FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;
+ FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;
FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;
FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
@@ -70,6 +74,7 @@
FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
FrameSystemPhase: FrameSystemPhase;
+ OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
OpalRuntimeRuntime: OpalRuntimeRuntime;
OrmlVestingModuleCall: OrmlVestingModuleCall;
OrmlVestingModuleError: OrmlVestingModuleError;
@@ -89,6 +94,7 @@
PalletEthereumError: PalletEthereumError;
PalletEthereumEvent: PalletEthereumEvent;
PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
+ PalletEthereumRawOrigin: PalletEthereumRawOrigin;
PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
PalletEvmCall: PalletEvmCall;
PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
@@ -127,9 +133,14 @@
PalletUniqueCall: PalletUniqueCall;
PalletUniqueError: PalletUniqueError;
PalletUniqueRawEvent: PalletUniqueRawEvent;
+ PalletUnqSchedulerCall: PalletUnqSchedulerCall;
+ PalletUnqSchedulerError: PalletUnqSchedulerError;
+ PalletUnqSchedulerEvent: PalletUnqSchedulerEvent;
+ PalletUnqSchedulerScheduledV3: PalletUnqSchedulerScheduledV3;
PalletXcmCall: PalletXcmCall;
PalletXcmError: PalletXcmError;
PalletXcmEvent: PalletXcmEvent;
+ PalletXcmOrigin: PalletXcmOrigin;
PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;
PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;
PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
@@ -160,6 +171,7 @@
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
SpCoreEd25519Signature: SpCoreEd25519Signature;
SpCoreSr25519Signature: SpCoreSr25519Signature;
+ SpCoreVoid: SpCoreVoid;
SpRuntimeArithmeticError: SpRuntimeArithmeticError;
SpRuntimeDigest: SpRuntimeDigest;
SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -161,14 +161,14 @@
readonly amount: u128;
}
- /** @name PalletBalancesReleases (50) */
+ /** @name PalletBalancesReleases (51) */
export interface PalletBalancesReleases extends Enum {
readonly isV100: boolean;
readonly isV200: boolean;
readonly type: 'V100' | 'V200';
}
- /** @name PalletBalancesCall (51) */
+ /** @name PalletBalancesCall (52) */
export interface PalletBalancesCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -205,7 +205,7 @@
readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
}
- /** @name PalletBalancesEvent (57) */
+ /** @name PalletBalancesEvent (58) */
export interface PalletBalancesEvent extends Enum {
readonly isEndowed: boolean;
readonly asEndowed: {
@@ -264,14 +264,14 @@
readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';
}
- /** @name FrameSupportTokensMiscBalanceStatus (58) */
+ /** @name FrameSupportTokensMiscBalanceStatus (59) */
export interface FrameSupportTokensMiscBalanceStatus extends Enum {
readonly isFree: boolean;
readonly isReserved: boolean;
readonly type: 'Free' | 'Reserved';
}
- /** @name PalletBalancesError (59) */
+ /** @name PalletBalancesError (60) */
export interface PalletBalancesError extends Enum {
readonly isVestingBalance: boolean;
readonly isLiquidityRestrictions: boolean;
@@ -284,7 +284,7 @@
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name PalletTimestampCall (62) */
+ /** @name PalletTimestampCall (63) */
export interface PalletTimestampCall extends Enum {
readonly isSet: boolean;
readonly asSet: {
@@ -293,14 +293,14 @@
readonly type: 'Set';
}
- /** @name PalletTransactionPaymentReleases (65) */
+ /** @name PalletTransactionPaymentReleases (66) */
export interface PalletTransactionPaymentReleases extends Enum {
readonly isV1Ancient: boolean;
readonly isV2: boolean;
readonly type: 'V1Ancient' | 'V2';
}
- /** @name FrameSupportWeightsWeightToFeeCoefficient (67) */
+ /** @name FrameSupportWeightsWeightToFeeCoefficient (68) */
export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {
readonly coeffInteger: u128;
readonly coeffFrac: Perbill;
@@ -308,7 +308,7 @@
readonly degree: u8;
}
- /** @name PalletTreasuryProposal (69) */
+ /** @name PalletTreasuryProposal (70) */
export interface PalletTreasuryProposal extends Struct {
readonly proposer: AccountId32;
readonly value: u128;
@@ -316,7 +316,7 @@
readonly bond: u128;
}
- /** @name PalletTreasuryCall (72) */
+ /** @name PalletTreasuryCall (73) */
export interface PalletTreasuryCall extends Enum {
readonly isProposeSpend: boolean;
readonly asProposeSpend: {
@@ -331,10 +331,14 @@
readonly asApproveProposal: {
readonly proposalId: Compact<u32>;
} & Struct;
- readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';
+ readonly isRemoveApproval: boolean;
+ readonly asRemoveApproval: {
+ readonly proposalId: Compact<u32>;
+ } & Struct;
+ readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'RemoveApproval';
}
- /** @name PalletTreasuryEvent (74) */
+ /** @name PalletTreasuryEvent (75) */
export interface PalletTreasuryEvent extends Enum {
readonly isProposed: boolean;
readonly asProposed: {
@@ -370,18 +374,19 @@
readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';
}
- /** @name FrameSupportPalletId (77) */
+ /** @name FrameSupportPalletId (78) */
export interface FrameSupportPalletId extends U8aFixed {}
- /** @name PalletTreasuryError (78) */
+ /** @name PalletTreasuryError (79) */
export interface PalletTreasuryError extends Enum {
readonly isInsufficientProposersBalance: boolean;
readonly isInvalidIndex: boolean;
readonly isTooManyApprovals: boolean;
- readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';
+ readonly isProposalNotApproved: boolean;
+ readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'ProposalNotApproved';
}
- /** @name PalletSudoCall (79) */
+ /** @name PalletSudoCall (80) */
export interface PalletSudoCall extends Enum {
readonly isSudo: boolean;
readonly asSudo: {
@@ -404,7 +409,7 @@
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
}
- /** @name FrameSystemCall (81) */
+ /** @name FrameSystemCall (82) */
export interface FrameSystemCall extends Enum {
readonly isFillBlock: boolean;
readonly asFillBlock: {
@@ -446,7 +451,7 @@
readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
}
- /** @name OrmlVestingModuleCall (84) */
+ /** @name OrmlVestingModuleCall (85) */
export interface OrmlVestingModuleCall extends Enum {
readonly isClaim: boolean;
readonly isVestedTransfer: boolean;
@@ -466,7 +471,7 @@
readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
}
- /** @name OrmlVestingVestingSchedule (85) */
+ /** @name OrmlVestingVestingSchedule (86) */
export interface OrmlVestingVestingSchedule extends Struct {
readonly start: u32;
readonly period: u32;
@@ -474,7 +479,7 @@
readonly perPeriod: Compact<u128>;
}
- /** @name CumulusPalletXcmpQueueCall (87) */
+ /** @name CumulusPalletXcmpQueueCall (88) */
export interface CumulusPalletXcmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -510,7 +515,7 @@
readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
}
- /** @name PalletXcmCall (88) */
+ /** @name PalletXcmCall (89) */
export interface PalletXcmCall extends Enum {
readonly isSend: boolean;
readonly asSend: {
@@ -572,7 +577,7 @@
readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
}
- /** @name XcmVersionedMultiLocation (89) */
+ /** @name XcmVersionedMultiLocation (90) */
export interface XcmVersionedMultiLocation extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0MultiLocation;
@@ -581,7 +586,7 @@
readonly type: 'V0' | 'V1';
}
- /** @name XcmV0MultiLocation (90) */
+ /** @name XcmV0MultiLocation (91) */
export interface XcmV0MultiLocation extends Enum {
readonly isNull: boolean;
readonly isX1: boolean;
@@ -603,7 +608,7 @@
readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
}
- /** @name XcmV0Junction (91) */
+ /** @name XcmV0Junction (92) */
export interface XcmV0Junction extends Enum {
readonly isParent: boolean;
readonly isParachain: boolean;
@@ -638,7 +643,7 @@
readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
}
- /** @name XcmV0JunctionNetworkId (92) */
+ /** @name XcmV0JunctionNetworkId (93) */
export interface XcmV0JunctionNetworkId extends Enum {
readonly isAny: boolean;
readonly isNamed: boolean;
@@ -648,7 +653,7 @@
readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';
}
- /** @name XcmV0JunctionBodyId (93) */
+ /** @name XcmV0JunctionBodyId (94) */
export interface XcmV0JunctionBodyId extends Enum {
readonly isUnit: boolean;
readonly isNamed: boolean;
@@ -662,7 +667,7 @@
readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';
}
- /** @name XcmV0JunctionBodyPart (94) */
+ /** @name XcmV0JunctionBodyPart (95) */
export interface XcmV0JunctionBodyPart extends Enum {
readonly isVoice: boolean;
readonly isMembers: boolean;
@@ -687,13 +692,13 @@
readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
}
- /** @name XcmV1MultiLocation (95) */
+ /** @name XcmV1MultiLocation (96) */
export interface XcmV1MultiLocation extends Struct {
readonly parents: u8;
readonly interior: XcmV1MultilocationJunctions;
}
- /** @name XcmV1MultilocationJunctions (96) */
+ /** @name XcmV1MultilocationJunctions (97) */
export interface XcmV1MultilocationJunctions extends Enum {
readonly isHere: boolean;
readonly isX1: boolean;
@@ -715,7 +720,7 @@
readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
}
- /** @name XcmV1Junction (97) */
+ /** @name XcmV1Junction (98) */
export interface XcmV1Junction extends Enum {
readonly isParachain: boolean;
readonly asParachain: Compact<u32>;
@@ -749,7 +754,7 @@
readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
}
- /** @name XcmVersionedXcm (98) */
+ /** @name XcmVersionedXcm (99) */
export interface XcmVersionedXcm extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0Xcm;
@@ -760,7 +765,7 @@
readonly type: 'V0' | 'V1' | 'V2';
}
- /** @name XcmV0Xcm (99) */
+ /** @name XcmV0Xcm (100) */
export interface XcmV0Xcm extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: {
@@ -823,7 +828,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
}
- /** @name XcmV0MultiAsset (101) */
+ /** @name XcmV0MultiAsset (102) */
export interface XcmV0MultiAsset extends Enum {
readonly isNone: boolean;
readonly isAll: boolean;
@@ -868,7 +873,7 @@
readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';
}
- /** @name XcmV1MultiassetAssetInstance (102) */
+ /** @name XcmV1MultiassetAssetInstance (103) */
export interface XcmV1MultiassetAssetInstance extends Enum {
readonly isUndefined: boolean;
readonly isIndex: boolean;
@@ -1643,13 +1648,47 @@
readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
}
- /** @name PalletTemplateTransactionPaymentCall (204) */
+ /** @name PalletUnqSchedulerCall (204) */
+ export interface PalletUnqSchedulerCall extends Enum {
+ readonly isScheduleNamed: boolean;
+ readonly asScheduleNamed: {
+ readonly id: U8aFixed;
+ readonly when: u32;
+ readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
+ readonly priority: u8;
+ readonly call: FrameSupportScheduleMaybeHashed;
+ } & Struct;
+ readonly isCancelNamed: boolean;
+ readonly asCancelNamed: {
+ readonly id: U8aFixed;
+ } & Struct;
+ readonly isScheduleNamedAfter: boolean;
+ readonly asScheduleNamedAfter: {
+ readonly id: U8aFixed;
+ readonly after: u32;
+ readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
+ readonly priority: u8;
+ readonly call: FrameSupportScheduleMaybeHashed;
+ } & Struct;
+ readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';
+ }
+
+ /** @name FrameSupportScheduleMaybeHashed (206) */
+ export interface FrameSupportScheduleMaybeHashed extends Enum {
+ readonly isValue: boolean;
+ readonly asValue: Call;
+ readonly isHash: boolean;
+ readonly asHash: H256;
+ readonly type: 'Value' | 'Hash';
+ }
+
+ /** @name PalletTemplateTransactionPaymentCall (207) */
export type PalletTemplateTransactionPaymentCall = Null;
- /** @name PalletStructureCall (205) */
+ /** @name PalletStructureCall (208) */
export type PalletStructureCall = Null;
- /** @name PalletRmrkCoreCall (206) */
+ /** @name PalletRmrkCoreCall (209) */
export interface PalletRmrkCoreCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -1754,7 +1793,7 @@
readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
}
- /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (210) */
+ /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (213) */
export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
readonly isAccountId: boolean;
readonly asAccountId: AccountId32;
@@ -1763,7 +1802,7 @@
readonly type: 'AccountId' | 'CollectionAndNftTuple';
}
- /** @name RmrkTraitsResourceBasicResource (214) */
+ /** @name RmrkTraitsResourceBasicResource (217) */
export interface RmrkTraitsResourceBasicResource extends Struct {
readonly src: Option<Bytes>;
readonly metadata: Option<Bytes>;
@@ -1771,7 +1810,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceComposableResource (217) */
+ /** @name RmrkTraitsResourceComposableResource (220) */
export interface RmrkTraitsResourceComposableResource extends Struct {
readonly parts: Vec<u32>;
readonly base: u32;
@@ -1781,7 +1820,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceSlotResource (219) */
+ /** @name RmrkTraitsResourceSlotResource (222) */
export interface RmrkTraitsResourceSlotResource extends Struct {
readonly base: u32;
readonly src: Option<Bytes>;
@@ -1791,7 +1830,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name PalletRmrkEquipCall (220) */
+ /** @name PalletRmrkEquipCall (223) */
export interface PalletRmrkEquipCall extends Enum {
readonly isCreateBase: boolean;
readonly asCreateBase: {
@@ -1807,7 +1846,7 @@
readonly type: 'CreateBase' | 'ThemeAdd';
}
- /** @name RmrkTraitsPartPartType (222) */
+ /** @name RmrkTraitsPartPartType (225) */
export interface RmrkTraitsPartPartType extends Enum {
readonly isFixedPart: boolean;
readonly asFixedPart: RmrkTraitsPartFixedPart;
@@ -1816,14 +1855,14 @@
readonly type: 'FixedPart' | 'SlotPart';
}
- /** @name RmrkTraitsPartFixedPart (224) */
+ /** @name RmrkTraitsPartFixedPart (227) */
export interface RmrkTraitsPartFixedPart extends Struct {
readonly id: u32;
readonly z: u32;
readonly src: Bytes;
}
- /** @name RmrkTraitsPartSlotPart (225) */
+ /** @name RmrkTraitsPartSlotPart (228) */
export interface RmrkTraitsPartSlotPart extends Struct {
readonly id: u32;
readonly equippable: RmrkTraitsPartEquippableList;
@@ -1831,7 +1870,7 @@
readonly z: u32;
}
- /** @name RmrkTraitsPartEquippableList (226) */
+ /** @name RmrkTraitsPartEquippableList (229) */
export interface RmrkTraitsPartEquippableList extends Enum {
readonly isAll: boolean;
readonly isEmpty: boolean;
@@ -1840,20 +1879,20 @@
readonly type: 'All' | 'Empty' | 'Custom';
}
- /** @name RmrkTraitsTheme (228) */
+ /** @name RmrkTraitsTheme (231) */
export interface RmrkTraitsTheme extends Struct {
readonly name: Bytes;
readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
readonly inherit: bool;
}
- /** @name RmrkTraitsThemeThemeProperty (230) */
+ /** @name RmrkTraitsThemeThemeProperty (233) */
export interface RmrkTraitsThemeThemeProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name PalletEvmCall (231) */
+ /** @name PalletEvmCall (234) */
export interface PalletEvmCall extends Enum {
readonly isWithdraw: boolean;
readonly asWithdraw: {
@@ -1898,7 +1937,7 @@
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
}
- /** @name PalletEthereumCall (237) */
+ /** @name PalletEthereumCall (240) */
export interface PalletEthereumCall extends Enum {
readonly isTransact: boolean;
readonly asTransact: {
@@ -1907,7 +1946,7 @@
readonly type: 'Transact';
}
- /** @name EthereumTransactionTransactionV2 (238) */
+ /** @name EthereumTransactionTransactionV2 (241) */
export interface EthereumTransactionTransactionV2 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -1918,7 +1957,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumTransactionLegacyTransaction (239) */
+ /** @name EthereumTransactionLegacyTransaction (242) */
export interface EthereumTransactionLegacyTransaction extends Struct {
readonly nonce: U256;
readonly gasPrice: U256;
@@ -1929,7 +1968,7 @@
readonly signature: EthereumTransactionTransactionSignature;
}
- /** @name EthereumTransactionTransactionAction (240) */
+ /** @name EthereumTransactionTransactionAction (243) */
export interface EthereumTransactionTransactionAction extends Enum {
readonly isCall: boolean;
readonly asCall: H160;
@@ -1937,14 +1976,14 @@
readonly type: 'Call' | 'Create';
}
- /** @name EthereumTransactionTransactionSignature (241) */
+ /** @name EthereumTransactionTransactionSignature (244) */
export interface EthereumTransactionTransactionSignature extends Struct {
readonly v: u64;
readonly r: H256;
readonly s: H256;
}
- /** @name EthereumTransactionEip2930Transaction (243) */
+ /** @name EthereumTransactionEip2930Transaction (246) */
export interface EthereumTransactionEip2930Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -1959,13 +1998,13 @@
readonly s: H256;
}
- /** @name EthereumTransactionAccessListItem (245) */
+ /** @name EthereumTransactionAccessListItem (248) */
export interface EthereumTransactionAccessListItem extends Struct {
readonly address: H160;
readonly storageKeys: Vec<H256>;
}
- /** @name EthereumTransactionEip1559Transaction (246) */
+ /** @name EthereumTransactionEip1559Transaction (249) */
export interface EthereumTransactionEip1559Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -1981,7 +2020,7 @@
readonly s: H256;
}
- /** @name PalletEvmMigrationCall (247) */
+ /** @name PalletEvmMigrationCall (250) */
export interface PalletEvmMigrationCall extends Enum {
readonly isBegin: boolean;
readonly asBegin: {
@@ -2000,7 +2039,7 @@
readonly type: 'Begin' | 'SetData' | 'Finish';
}
- /** @name PalletSudoEvent (250) */
+ /** @name PalletSudoEvent (253) */
export interface PalletSudoEvent extends Enum {
readonly isSudid: boolean;
readonly asSudid: {
@@ -2017,7 +2056,7 @@
readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
}
- /** @name SpRuntimeDispatchError (252) */
+ /** @name SpRuntimeDispatchError (255) */
export interface SpRuntimeDispatchError extends Enum {
readonly isOther: boolean;
readonly isCannotLookup: boolean;
@@ -2036,13 +2075,13 @@
readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';
}
- /** @name SpRuntimeModuleError (253) */
+ /** @name SpRuntimeModuleError (256) */
export interface SpRuntimeModuleError extends Struct {
readonly index: u8;
readonly error: U8aFixed;
}
- /** @name SpRuntimeTokenError (254) */
+ /** @name SpRuntimeTokenError (257) */
export interface SpRuntimeTokenError extends Enum {
readonly isNoFunds: boolean;
readonly isWouldDie: boolean;
@@ -2054,7 +2093,7 @@
readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';
}
- /** @name SpRuntimeArithmeticError (255) */
+ /** @name SpRuntimeArithmeticError (258) */
export interface SpRuntimeArithmeticError extends Enum {
readonly isUnderflow: boolean;
readonly isOverflow: boolean;
@@ -2062,20 +2101,20 @@
readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
}
- /** @name SpRuntimeTransactionalError (256) */
+ /** @name SpRuntimeTransactionalError (259) */
export interface SpRuntimeTransactionalError extends Enum {
readonly isLimitReached: boolean;
readonly isNoLayer: boolean;
readonly type: 'LimitReached' | 'NoLayer';
}
- /** @name PalletSudoError (257) */
+ /** @name PalletSudoError (260) */
export interface PalletSudoError extends Enum {
readonly isRequireSudo: boolean;
readonly type: 'RequireSudo';
}
- /** @name FrameSystemAccountInfo (258) */
+ /** @name FrameSystemAccountInfo (261) */
export interface FrameSystemAccountInfo extends Struct {
readonly nonce: u32;
readonly consumers: u32;
@@ -2084,19 +2123,19 @@
readonly data: PalletBalancesAccountData;
}
- /** @name FrameSupportWeightsPerDispatchClassU64 (259) */
+ /** @name FrameSupportWeightsPerDispatchClassU64 (262) */
export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {
readonly normal: u64;
readonly operational: u64;
readonly mandatory: u64;
}
- /** @name SpRuntimeDigest (260) */
+ /** @name SpRuntimeDigest (263) */
export interface SpRuntimeDigest extends Struct {
readonly logs: Vec<SpRuntimeDigestDigestItem>;
}
- /** @name SpRuntimeDigestDigestItem (262) */
+ /** @name SpRuntimeDigestDigestItem (265) */
export interface SpRuntimeDigestDigestItem extends Enum {
readonly isOther: boolean;
readonly asOther: Bytes;
@@ -2110,14 +2149,14 @@
readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';
}
- /** @name FrameSystemEventRecord (264) */
+ /** @name FrameSystemEventRecord (267) */
export interface FrameSystemEventRecord extends Struct {
readonly phase: FrameSystemPhase;
readonly event: Event;
readonly topics: Vec<H256>;
}
- /** @name FrameSystemEvent (266) */
+ /** @name FrameSystemEvent (269) */
export interface FrameSystemEvent extends Enum {
readonly isExtrinsicSuccess: boolean;
readonly asExtrinsicSuccess: {
@@ -2145,14 +2184,14 @@
readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
}
- /** @name FrameSupportWeightsDispatchInfo (267) */
+ /** @name FrameSupportWeightsDispatchInfo (270) */
export interface FrameSupportWeightsDispatchInfo extends Struct {
readonly weight: u64;
readonly class: FrameSupportWeightsDispatchClass;
readonly paysFee: FrameSupportWeightsPays;
}
- /** @name FrameSupportWeightsDispatchClass (268) */
+ /** @name FrameSupportWeightsDispatchClass (271) */
export interface FrameSupportWeightsDispatchClass extends Enum {
readonly isNormal: boolean;
readonly isOperational: boolean;
@@ -2160,14 +2199,14 @@
readonly type: 'Normal' | 'Operational' | 'Mandatory';
}
- /** @name FrameSupportWeightsPays (269) */
+ /** @name FrameSupportWeightsPays (272) */
export interface FrameSupportWeightsPays extends Enum {
readonly isYes: boolean;
readonly isNo: boolean;
readonly type: 'Yes' | 'No';
}
- /** @name OrmlVestingModuleEvent (270) */
+ /** @name OrmlVestingModuleEvent (273) */
export interface OrmlVestingModuleEvent extends Enum {
readonly isVestingScheduleAdded: boolean;
readonly asVestingScheduleAdded: {
@@ -2187,7 +2226,7 @@
readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
}
- /** @name CumulusPalletXcmpQueueEvent (271) */
+ /** @name CumulusPalletXcmpQueueEvent (274) */
export interface CumulusPalletXcmpQueueEvent extends Enum {
readonly isSuccess: boolean;
readonly asSuccess: Option<H256>;
@@ -2208,7 +2247,7 @@
readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
}
- /** @name PalletXcmEvent (272) */
+ /** @name PalletXcmEvent (275) */
export interface PalletXcmEvent extends Enum {
readonly isAttempted: boolean;
readonly asAttempted: XcmV2TraitsOutcome;
@@ -2245,7 +2284,7 @@
readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
}
- /** @name XcmV2TraitsOutcome (273) */
+ /** @name XcmV2TraitsOutcome (276) */
export interface XcmV2TraitsOutcome extends Enum {
readonly isComplete: boolean;
readonly asComplete: u64;
@@ -2256,7 +2295,7 @@
readonly type: 'Complete' | 'Incomplete' | 'Error';
}
- /** @name CumulusPalletXcmEvent (275) */
+ /** @name CumulusPalletXcmEvent (278) */
export interface CumulusPalletXcmEvent extends Enum {
readonly isInvalidFormat: boolean;
readonly asInvalidFormat: U8aFixed;
@@ -2267,7 +2306,7 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
}
- /** @name CumulusPalletDmpQueueEvent (276) */
+ /** @name CumulusPalletDmpQueueEvent (279) */
export interface CumulusPalletDmpQueueEvent extends Enum {
readonly isInvalidFormat: boolean;
readonly asInvalidFormat: U8aFixed;
@@ -2284,7 +2323,7 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
}
- /** @name PalletUniqueRawEvent (277) */
+ /** @name PalletUniqueRawEvent (280) */
export interface PalletUniqueRawEvent extends Enum {
readonly isCollectionSponsorRemoved: boolean;
readonly asCollectionSponsorRemoved: u32;
@@ -2309,7 +2348,41 @@
readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';
}
- /** @name PalletCommonEvent (278) */
+ /** @name PalletUnqSchedulerEvent (281) */
+ export interface PalletUnqSchedulerEvent extends Enum {
+ readonly isScheduled: boolean;
+ readonly asScheduled: {
+ readonly when: u32;
+ readonly index: u32;
+ } & Struct;
+ readonly isCanceled: boolean;
+ readonly asCanceled: {
+ readonly when: u32;
+ readonly index: u32;
+ } & Struct;
+ readonly isDispatched: boolean;
+ readonly asDispatched: {
+ readonly task: ITuple<[u32, u32]>;
+ readonly id: Option<U8aFixed>;
+ readonly result: Result<Null, SpRuntimeDispatchError>;
+ } & Struct;
+ readonly isCallLookupFailed: boolean;
+ readonly asCallLookupFailed: {
+ readonly task: ITuple<[u32, u32]>;
+ readonly id: Option<U8aFixed>;
+ readonly error: FrameSupportScheduleLookupError;
+ } & Struct;
+ readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';
+ }
+
+ /** @name FrameSupportScheduleLookupError (283) */
+ export interface FrameSupportScheduleLookupError extends Enum {
+ readonly isUnknown: boolean;
+ readonly isBadFormat: boolean;
+ readonly type: 'Unknown' | 'BadFormat';
+ }
+
+ /** @name PalletCommonEvent (284) */
export interface PalletCommonEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -2336,14 +2409,14 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
}
- /** @name PalletStructureEvent (279) */
+ /** @name PalletStructureEvent (285) */
export interface PalletStructureEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
readonly type: 'Executed';
}
- /** @name PalletRmrkCoreEvent (280) */
+ /** @name PalletRmrkCoreEvent (286) */
export interface PalletRmrkCoreEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: {
@@ -2433,7 +2506,7 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
}
- /** @name PalletRmrkEquipEvent (281) */
+ /** @name PalletRmrkEquipEvent (287) */
export interface PalletRmrkEquipEvent extends Enum {
readonly isBaseCreated: boolean;
readonly asBaseCreated: {
@@ -2443,7 +2516,7 @@
readonly type: 'BaseCreated';
}
- /** @name PalletEvmEvent (282) */
+ /** @name PalletEvmEvent (288) */
export interface PalletEvmEvent extends Enum {
readonly isLog: boolean;
readonly asLog: EthereumLog;
@@ -2462,21 +2535,21 @@
readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';
}
- /** @name EthereumLog (283) */
+ /** @name EthereumLog (289) */
export interface EthereumLog extends Struct {
readonly address: H160;
readonly topics: Vec<H256>;
readonly data: Bytes;
}
- /** @name PalletEthereumEvent (284) */
+ /** @name PalletEthereumEvent (290) */
export interface PalletEthereumEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;
readonly type: 'Executed';
}
- /** @name EvmCoreErrorExitReason (285) */
+ /** @name EvmCoreErrorExitReason (291) */
export interface EvmCoreErrorExitReason extends Enum {
readonly isSucceed: boolean;
readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -2489,7 +2562,7 @@
readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
}
- /** @name EvmCoreErrorExitSucceed (286) */
+ /** @name EvmCoreErrorExitSucceed (292) */
export interface EvmCoreErrorExitSucceed extends Enum {
readonly isStopped: boolean;
readonly isReturned: boolean;
@@ -2497,7 +2570,7 @@
readonly type: 'Stopped' | 'Returned' | 'Suicided';
}
- /** @name EvmCoreErrorExitError (287) */
+ /** @name EvmCoreErrorExitError (293) */
export interface EvmCoreErrorExitError extends Enum {
readonly isStackUnderflow: boolean;
readonly isStackOverflow: boolean;
@@ -2518,13 +2591,13 @@
readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
}
- /** @name EvmCoreErrorExitRevert (290) */
+ /** @name EvmCoreErrorExitRevert (296) */
export interface EvmCoreErrorExitRevert extends Enum {
readonly isReverted: boolean;
readonly type: 'Reverted';
}
- /** @name EvmCoreErrorExitFatal (291) */
+ /** @name EvmCoreErrorExitFatal (297) */
export interface EvmCoreErrorExitFatal extends Enum {
readonly isNotSupported: boolean;
readonly isUnhandledInterrupt: boolean;
@@ -2535,7 +2608,7 @@
readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
}
- /** @name FrameSystemPhase (292) */
+ /** @name FrameSystemPhase (298) */
export interface FrameSystemPhase extends Enum {
readonly isApplyExtrinsic: boolean;
readonly asApplyExtrinsic: u32;
@@ -2544,27 +2617,27 @@
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
}
- /** @name FrameSystemLastRuntimeUpgradeInfo (294) */
+ /** @name FrameSystemLastRuntimeUpgradeInfo (300) */
export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
readonly specVersion: Compact<u32>;
readonly specName: Text;
}
- /** @name FrameSystemLimitsBlockWeights (295) */
+ /** @name FrameSystemLimitsBlockWeights (301) */
export interface FrameSystemLimitsBlockWeights extends Struct {
readonly baseBlock: u64;
readonly maxBlock: u64;
readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
}
- /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (296) */
+ /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (302) */
export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
readonly normal: FrameSystemLimitsWeightsPerClass;
readonly operational: FrameSystemLimitsWeightsPerClass;
readonly mandatory: FrameSystemLimitsWeightsPerClass;
}
- /** @name FrameSystemLimitsWeightsPerClass (297) */
+ /** @name FrameSystemLimitsWeightsPerClass (303) */
export interface FrameSystemLimitsWeightsPerClass extends Struct {
readonly baseExtrinsic: u64;
readonly maxExtrinsic: Option<u64>;
@@ -2572,25 +2645,25 @@
readonly reserved: Option<u64>;
}
- /** @name FrameSystemLimitsBlockLength (299) */
+ /** @name FrameSystemLimitsBlockLength (305) */
export interface FrameSystemLimitsBlockLength extends Struct {
readonly max: FrameSupportWeightsPerDispatchClassU32;
}
- /** @name FrameSupportWeightsPerDispatchClassU32 (300) */
+ /** @name FrameSupportWeightsPerDispatchClassU32 (306) */
export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
readonly normal: u32;
readonly operational: u32;
readonly mandatory: u32;
}
- /** @name FrameSupportWeightsRuntimeDbWeight (301) */
+ /** @name FrameSupportWeightsRuntimeDbWeight (307) */
export interface FrameSupportWeightsRuntimeDbWeight extends Struct {
readonly read: u64;
readonly write: u64;
}
- /** @name SpVersionRuntimeVersion (302) */
+ /** @name SpVersionRuntimeVersion (308) */
export interface SpVersionRuntimeVersion extends Struct {
readonly specName: Text;
readonly implName: Text;
@@ -2602,7 +2675,7 @@
readonly stateVersion: u8;
}
- /** @name FrameSystemError (306) */
+ /** @name FrameSystemError (312) */
export interface FrameSystemError extends Enum {
readonly isInvalidSpecName: boolean;
readonly isSpecVersionNeedsToIncrease: boolean;
@@ -2613,7 +2686,7 @@
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
}
- /** @name OrmlVestingModuleError (308) */
+ /** @name OrmlVestingModuleError (314) */
export interface OrmlVestingModuleError extends Enum {
readonly isZeroVestingPeriod: boolean;
readonly isZeroVestingPeriodCount: boolean;
@@ -2624,21 +2697,21 @@
readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
}
- /** @name CumulusPalletXcmpQueueInboundChannelDetails (310) */
+ /** @name CumulusPalletXcmpQueueInboundChannelDetails (316) */
export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
readonly sender: u32;
readonly state: CumulusPalletXcmpQueueInboundState;
readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
}
- /** @name CumulusPalletXcmpQueueInboundState (311) */
+ /** @name CumulusPalletXcmpQueueInboundState (317) */
export interface CumulusPalletXcmpQueueInboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name PolkadotParachainPrimitivesXcmpMessageFormat (314) */
+ /** @name PolkadotParachainPrimitivesXcmpMessageFormat (320) */
export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
readonly isConcatenatedVersionedXcm: boolean;
readonly isConcatenatedEncodedBlob: boolean;
@@ -2646,7 +2719,7 @@
readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
}
- /** @name CumulusPalletXcmpQueueOutboundChannelDetails (317) */
+ /** @name CumulusPalletXcmpQueueOutboundChannelDetails (323) */
export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
readonly recipient: u32;
readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -2655,14 +2728,14 @@
readonly lastIndex: u16;
}
- /** @name CumulusPalletXcmpQueueOutboundState (318) */
+ /** @name CumulusPalletXcmpQueueOutboundState (324) */
export interface CumulusPalletXcmpQueueOutboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name CumulusPalletXcmpQueueQueueConfigData (320) */
+ /** @name CumulusPalletXcmpQueueQueueConfigData (326) */
export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
readonly suspendThreshold: u32;
readonly dropThreshold: u32;
@@ -2672,7 +2745,7 @@
readonly xcmpMaxIndividualWeight: u64;
}
- /** @name CumulusPalletXcmpQueueError (322) */
+ /** @name CumulusPalletXcmpQueueError (328) */
export interface CumulusPalletXcmpQueueError extends Enum {
readonly isFailedToSend: boolean;
readonly isBadXcmOrigin: boolean;
@@ -2682,7 +2755,7 @@
readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
}
- /** @name PalletXcmError (323) */
+ /** @name PalletXcmError (329) */
export interface PalletXcmError extends Enum {
readonly isUnreachable: boolean;
readonly isSendFailure: boolean;
@@ -2700,29 +2773,29 @@
readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
}
- /** @name CumulusPalletXcmError (324) */
+ /** @name CumulusPalletXcmError (330) */
export type CumulusPalletXcmError = Null;
- /** @name CumulusPalletDmpQueueConfigData (325) */
+ /** @name CumulusPalletDmpQueueConfigData (331) */
export interface CumulusPalletDmpQueueConfigData extends Struct {
readonly maxIndividual: u64;
}
- /** @name CumulusPalletDmpQueuePageIndexData (326) */
+ /** @name CumulusPalletDmpQueuePageIndexData (332) */
export interface CumulusPalletDmpQueuePageIndexData extends Struct {
readonly beginUsed: u32;
readonly endUsed: u32;
readonly overweightCount: u64;
}
- /** @name CumulusPalletDmpQueueError (329) */
+ /** @name CumulusPalletDmpQueueError (335) */
export interface CumulusPalletDmpQueueError extends Enum {
readonly isUnknown: boolean;
readonly isOverLimit: boolean;
readonly type: 'Unknown' | 'OverLimit';
}
- /** @name PalletUniqueError (333) */
+ /** @name PalletUniqueError (339) */
export interface PalletUniqueError extends Enum {
readonly isCollectionDecimalPointLimitExceeded: boolean;
readonly isConfirmUnsetSponsorFail: boolean;
@@ -2730,7 +2803,75 @@
readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';
}
- /** @name UpDataStructsCollection (334) */
+ /** @name PalletUnqSchedulerScheduledV3 (342) */
+ export interface PalletUnqSchedulerScheduledV3 extends Struct {
+ readonly maybeId: Option<U8aFixed>;
+ readonly priority: u8;
+ readonly call: FrameSupportScheduleMaybeHashed;
+ readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
+ readonly origin: OpalRuntimeOriginCaller;
+ }
+
+ /** @name OpalRuntimeOriginCaller (343) */
+ export interface OpalRuntimeOriginCaller extends Enum {
+ readonly isVoid: boolean;
+ readonly isSystem: boolean;
+ readonly asSystem: FrameSupportDispatchRawOrigin;
+ readonly isPolkadotXcm: boolean;
+ readonly asPolkadotXcm: PalletXcmOrigin;
+ readonly isCumulusXcm: boolean;
+ readonly asCumulusXcm: CumulusPalletXcmOrigin;
+ readonly isEthereum: boolean;
+ readonly asEthereum: PalletEthereumRawOrigin;
+ readonly type: 'Void' | 'System' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
+ }
+
+ /** @name FrameSupportDispatchRawOrigin (344) */
+ export interface FrameSupportDispatchRawOrigin extends Enum {
+ readonly isRoot: boolean;
+ readonly isSigned: boolean;
+ readonly asSigned: AccountId32;
+ readonly isNone: boolean;
+ readonly type: 'Root' | 'Signed' | 'None';
+ }
+
+ /** @name PalletXcmOrigin (345) */
+ export interface PalletXcmOrigin extends Enum {
+ readonly isXcm: boolean;
+ readonly asXcm: XcmV1MultiLocation;
+ readonly isResponse: boolean;
+ readonly asResponse: XcmV1MultiLocation;
+ readonly type: 'Xcm' | 'Response';
+ }
+
+ /** @name CumulusPalletXcmOrigin (346) */
+ export interface CumulusPalletXcmOrigin extends Enum {
+ readonly isRelay: boolean;
+ readonly isSiblingParachain: boolean;
+ readonly asSiblingParachain: u32;
+ readonly type: 'Relay' | 'SiblingParachain';
+ }
+
+ /** @name PalletEthereumRawOrigin (347) */
+ export interface PalletEthereumRawOrigin extends Enum {
+ readonly isEthereumTransaction: boolean;
+ readonly asEthereumTransaction: H160;
+ readonly type: 'EthereumTransaction';
+ }
+
+ /** @name SpCoreVoid (348) */
+ export type SpCoreVoid = Null;
+
+ /** @name PalletUnqSchedulerError (349) */
+ export interface PalletUnqSchedulerError extends Enum {
+ readonly isFailedToSchedule: boolean;
+ readonly isNotFound: boolean;
+ readonly isTargetBlockNumberInPast: boolean;
+ readonly isRescheduleNoChange: boolean;
+ readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';
+ }
+
+ /** @name UpDataStructsCollection (350) */
export interface UpDataStructsCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -2743,7 +2884,7 @@
readonly externalCollection: bool;
}
- /** @name UpDataStructsSponsorshipState (335) */
+ /** @name UpDataStructsSponsorshipState (351) */
export interface UpDataStructsSponsorshipState extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -2753,42 +2894,42 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name UpDataStructsProperties (336) */
+ /** @name UpDataStructsProperties (352) */
export interface UpDataStructsProperties extends Struct {
readonly map: UpDataStructsPropertiesMapBoundedVec;
readonly consumedSpace: u32;
readonly spaceLimit: u32;
}
- /** @name UpDataStructsPropertiesMapBoundedVec (337) */
+ /** @name UpDataStructsPropertiesMapBoundedVec (353) */
export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
- /** @name UpDataStructsPropertiesMapPropertyPermission (342) */
+ /** @name UpDataStructsPropertiesMapPropertyPermission (358) */
export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
- /** @name UpDataStructsCollectionStats (349) */
+ /** @name UpDataStructsCollectionStats (365) */
export interface UpDataStructsCollectionStats extends Struct {
readonly created: u32;
readonly destroyed: u32;
readonly alive: u32;
}
- /** @name UpDataStructsTokenChild (323) */
+ /** @name UpDataStructsTokenChild (366) */
export interface UpDataStructsTokenChild extends Struct {
readonly token: u32;
readonly collection: u32;
}
- /** @name PhantomTypeUpDataStructs (324) */
- export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkNftInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkTheme, UpDataStructsRmrkNftChild]>> {}
+ /** @name PhantomTypeUpDataStructs (367) */
+ export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
- /** @name UpDataStructsTokenData (326) */
+ /** @name UpDataStructsTokenData (369) */
export interface UpDataStructsTokenData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
}
- /** @name UpDataStructsRpcCollection (328) */
+ /** @name UpDataStructsRpcCollection (371) */
export interface UpDataStructsRpcCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -2803,8 +2944,8 @@
readonly readOnly: bool;
}
- /** @name UpDataStructsRmrkCollectionInfo (329) */
- export interface UpDataStructsRmrkCollectionInfo extends Struct {
+ /** @name RmrkTraitsCollectionCollectionInfo (372) */
+ export interface RmrkTraitsCollectionCollectionInfo extends Struct {
readonly issuer: AccountId32;
readonly metadata: Bytes;
readonly max: Option<u32>;
@@ -2812,40 +2953,31 @@
readonly nftsCount: u32;
}
- /** @name UpDataStructsRmrkNftInfo (332) */
- export interface UpDataStructsRmrkNftInfo extends Struct {
- readonly owner: UpDataStructsRmrkAccountIdOrCollectionNftTuple;
- readonly royalty: Option<UpDataStructsRmrkRoyaltyInfo>;
+ /** @name RmrkTraitsNftNftInfo (373) */
+ export interface RmrkTraitsNftNftInfo extends Struct {
+ readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
+ readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
readonly metadata: Bytes;
readonly equipped: bool;
readonly pending: bool;
}
- /** @name UpDataStructsRmrkAccountIdOrCollectionNftTuple (333) */
- export interface UpDataStructsRmrkAccountIdOrCollectionNftTuple extends Enum {
- readonly isAccountId: boolean;
- readonly asAccountId: AccountId32;
- readonly isCollectionAndNftTuple: boolean;
- readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;
- readonly type: 'AccountId' | 'CollectionAndNftTuple';
- }
-
- /** @name UpDataStructsRmrkRoyaltyInfo (335) */
- export interface UpDataStructsRmrkRoyaltyInfo extends Struct {
+ /** @name RmrkTraitsNftRoyaltyInfo (375) */
+ export interface RmrkTraitsNftRoyaltyInfo extends Struct {
readonly recipient: AccountId32;
readonly amount: Permill;
}
- /** @name UpDataStructsRmrkResourceInfo (336) */
- export interface UpDataStructsRmrkResourceInfo extends Struct {
+ /** @name RmrkTraitsResourceResourceInfo (376) */
+ export interface RmrkTraitsResourceResourceInfo extends Struct {
readonly id: u32;
readonly resource: RmrkTraitsResourceResourceTypes;
readonly pending: bool;
readonly pendingRemoval: bool;
}
- /** @name UpDataStructsRmrkResourceTypes (339) */
- export interface UpDataStructsRmrkResourceTypes extends Enum {
+ /** @name RmrkTraitsResourceResourceTypes (377) */
+ export interface RmrkTraitsResourceResourceTypes extends Enum {
readonly isBasic: boolean;
readonly asBasic: RmrkTraitsResourceBasicResource;
readonly isComposable: boolean;
@@ -2855,100 +2987,26 @@
readonly type: 'Basic' | 'Composable' | 'Slot';
}
- /** @name UpDataStructsRmrkBasicResource (340) */
- export interface UpDataStructsRmrkBasicResource extends Struct {
- readonly src: Option<Bytes>;
- readonly metadata: Option<Bytes>;
- readonly license: Option<Bytes>;
- readonly thumb: Option<Bytes>;
- }
-
- /** @name UpDataStructsRmrkComposableResource (342) */
- export interface UpDataStructsRmrkComposableResource extends Struct {
- readonly parts: Vec<u32>;
- readonly base: u32;
- readonly src: Option<Bytes>;
- readonly metadata: Option<Bytes>;
- readonly license: Option<Bytes>;
- readonly thumb: Option<Bytes>;
- }
-
- /** @name UpDataStructsRmrkSlotResource (343) */
- export interface UpDataStructsRmrkSlotResource extends Struct {
- readonly base: u32;
- readonly src: Option<Bytes>;
- readonly metadata: Option<Bytes>;
- readonly slot: u32;
- readonly license: Option<Bytes>;
- readonly thumb: Option<Bytes>;
- }
-
- /** @name UpDataStructsRmrkPropertyInfo (344) */
- export interface UpDataStructsRmrkPropertyInfo extends Struct {
+ /** @name RmrkTraitsPropertyPropertyInfo (378) */
+ export interface RmrkTraitsPropertyPropertyInfo extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name UpDataStructsRmrkBaseInfo (347) */
- export interface UpDataStructsRmrkBaseInfo extends Struct {
+ /** @name RmrkTraitsBaseBaseInfo (379) */
+ export interface RmrkTraitsBaseBaseInfo extends Struct {
readonly issuer: AccountId32;
readonly baseType: Bytes;
readonly symbol: Bytes;
}
- /** @name UpDataStructsRmrkPartType (348) */
- export interface UpDataStructsRmrkPartType extends Enum {
- readonly isFixedPart: boolean;
- readonly asFixedPart: UpDataStructsRmrkFixedPart;
- readonly isSlotPart: boolean;
- readonly asSlotPart: UpDataStructsRmrkSlotPart;
- readonly type: 'FixedPart' | 'SlotPart';
- }
-
- /** @name UpDataStructsRmrkFixedPart (350) */
- export interface UpDataStructsRmrkFixedPart extends Struct {
- readonly id: u32;
- readonly z: u32;
- readonly src: Bytes;
- }
-
- /** @name UpDataStructsRmrkSlotPart (351) */
- export interface UpDataStructsRmrkSlotPart extends Struct {
- readonly id: u32;
- readonly equippable: UpDataStructsRmrkEquippableList;
- readonly src: Bytes;
- readonly z: u32;
- }
-
- /** @name UpDataStructsRmrkEquippableList (352) */
- export interface UpDataStructsRmrkEquippableList extends Enum {
- readonly isAll: boolean;
- readonly isEmpty: boolean;
- readonly isCustom: boolean;
- readonly asCustom: Vec<u32>;
- readonly type: 'All' | 'Empty' | 'Custom';
- }
-
- /** @name UpDataStructsRmrkTheme (353) */
- export interface UpDataStructsRmrkTheme extends Struct {
- readonly name: Bytes;
- readonly properties: Vec<UpDataStructsRmrkThemeProperty>;
- readonly inherit: bool;
- }
-
- /** @name UpDataStructsRmrkThemeProperty (355) */
- export interface UpDataStructsRmrkThemeProperty extends Struct {
- readonly key: Bytes;
- readonly value: Bytes;
- }
-
- /** @name UpDataStructsRmrkNftChild (356) */
- export interface UpDataStructsRmrkNftChild extends Struct {
+ /** @name RmrkTraitsNftNftChild (380) */
+ export interface RmrkTraitsNftNftChild extends Struct {
readonly collectionId: u32;
readonly nftId: u32;
}
- /** @name PalletCommonError (358) */
+ /** @name PalletCommonError (382) */
export interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -2988,7 +3046,7 @@
readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';
}
- /** @name PalletFungibleError (360) */
+ /** @name PalletFungibleError (384) */
export interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -2998,12 +3056,12 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletRefungibleItemData (361) */
+ /** @name PalletRefungibleItemData (385) */
export interface PalletRefungibleItemData extends Struct {
readonly constData: Bytes;
}
- /** @name PalletRefungibleError (365) */
+ /** @name PalletRefungibleError (389) */
export interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -3012,12 +3070,12 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (366) */
+ /** @name PalletNonfungibleItemData (390) */
export interface PalletNonfungibleItemData extends Struct {
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name PalletNonfungibleError (368) */
+ /** @name PalletNonfungibleError (392) */
export interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3025,7 +3083,7 @@
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
}
- /** @name PalletStructureError (369) */
+ /** @name PalletStructureError (393) */
export interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -3033,7 +3091,38 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';
}
- /** @name PalletEvmError (372) */
+ /** @name PalletRmrkCoreError (394) */
+ export interface PalletRmrkCoreError extends Enum {
+ readonly isCorruptedCollectionType: boolean;
+ readonly isNftTypeEncodeError: boolean;
+ readonly isRmrkPropertyKeyIsTooLong: boolean;
+ readonly isRmrkPropertyValueIsTooLong: boolean;
+ readonly isCollectionNotEmpty: boolean;
+ readonly isNoAvailableCollectionId: boolean;
+ readonly isNoAvailableNftId: boolean;
+ readonly isCollectionUnknown: boolean;
+ readonly isNoPermission: boolean;
+ readonly isNonTransferable: boolean;
+ readonly isCollectionFullOrLocked: boolean;
+ readonly isResourceDoesntExist: boolean;
+ readonly isCannotSendToDescendentOrSelf: boolean;
+ readonly isCannotAcceptNonOwnedNft: boolean;
+ readonly isCannotRejectNonOwnedNft: boolean;
+ readonly isResourceNotPending: boolean;
+ readonly type: 'CorruptedCollectionType' | 'NftTypeEncodeError' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'ResourceNotPending';
+ }
+
+ /** @name PalletRmrkEquipError (396) */
+ export interface PalletRmrkEquipError extends Enum {
+ readonly isPermissionError: boolean;
+ readonly isNoAvailableBaseId: boolean;
+ readonly isNoAvailablePartId: boolean;
+ readonly isBaseDoesntExist: boolean;
+ readonly isNeedsDefaultThemeFirst: boolean;
+ readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst';
+ }
+
+ /** @name PalletEvmError (399) */
export interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -3044,7 +3133,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
}
- /** @name FpRpcTransactionStatus (375) */
+ /** @name FpRpcTransactionStatus (402) */
export interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -3055,10 +3144,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (377) */
+ /** @name EthbloomBloom (404) */
export interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (379) */
+ /** @name EthereumReceiptReceiptV3 (406) */
export interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3069,7 +3158,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (380) */
+ /** @name EthereumReceiptEip658ReceiptData (407) */
export interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -3077,14 +3166,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (381) */
+ /** @name EthereumBlock (408) */
export interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (382) */
+ /** @name EthereumHeader (409) */
export interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -3103,24 +3192,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (383) */
+ /** @name EthereumTypesHashH64 (410) */
export interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (388) */
+ /** @name PalletEthereumError (415) */
export interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (389) */
+ /** @name PalletEvmCoderSubstrateError (416) */
export interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (390) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (417) */
export interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -3128,20 +3217,20 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (392) */
+ /** @name PalletEvmContractHelpersError (419) */
export interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly type: 'NoPermission';
}
- /** @name PalletEvmMigrationError (393) */
+ /** @name PalletEvmMigrationError (420) */
export interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
}
- /** @name SpRuntimeMultiSignature (395) */
+ /** @name SpRuntimeMultiSignature (422) */
export interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -3152,34 +3241,34 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (396) */
+ /** @name SpCoreEd25519Signature (423) */
export interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (398) */
+ /** @name SpCoreSr25519Signature (425) */
export interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (399) */
+ /** @name SpCoreEcdsaSignature (426) */
export interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (402) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (429) */
export type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (403) */
+ /** @name FrameSystemExtensionsCheckGenesis (430) */
export type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (406) */
+ /** @name FrameSystemExtensionsCheckNonce (433) */
export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (407) */
+ /** @name FrameSystemExtensionsCheckWeight (434) */
export type FrameSystemExtensionsCheckWeight = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (408) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (435) */
export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (409) */
+ /** @name OpalRuntimeRuntime (436) */
export type OpalRuntimeRuntime = Null;
- /** @name PalletEthereumFakeTransactionFinalizer (410) */
+ /** @name PalletEthereumFakeTransactionFinalizer (437) */
export type PalletEthereumFakeTransactionFinalizer = Null;
} // declare module