difftreelog
test regenerate types
in: master
10 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
@@ -233,24 +233,6 @@
**/
[key: string]: Codec;
};
- govScheduler: {
- /**
- * The maximum weight that may be scheduled per block for any dispatchables.
- **/
- maximumWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
- /**
- * The maximum number of scheduled calls in the queue for a single block.
- *
- * NOTE:
- * + Dependent pallets' benchmarks might require a higher limit for the setting. Set a
- * higher limit under `runtime-benchmarks` feature.
- **/
- maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
- /**
- * Generic const
- **/
- [key: string]: Codec;
- };
identity: {
/**
* The amount held on deposit for a registered identity
@@ -295,6 +277,24 @@
**/
[key: string]: Codec;
};
+ scheduler: {
+ /**
+ * The maximum weight that may be scheduled per block for any dispatchables.
+ **/
+ maximumWeight: SpWeightsWeightV2Weight & AugmentedConst<ApiType>;
+ /**
+ * The maximum number of scheduled calls in the queue for a single block.
+ *
+ * NOTE:
+ * + Dependent pallets' benchmarks might require a higher limit for the setting. Set a
+ * higher limit under `runtime-benchmarks` feature.
+ **/
+ maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
+ /**
+ * Generic const
+ **/
+ [key: string]: Codec;
+ };
stateTrieMigration: {
/**
* Maximal number of bytes that a key can have.
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -762,32 +762,6 @@
**/
[key: string]: AugmentedError<ApiType>;
};
- govScheduler: {
- /**
- * Failed to schedule a call
- **/
- FailedToSchedule: AugmentedError<ApiType>;
- /**
- * Attempt to use a non-named function on a named task.
- **/
- Named: 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>;
- };
identity: {
/**
* Account ID is already named.
@@ -1074,6 +1048,32 @@
**/
[key: string]: AugmentedError<ApiType>;
};
+ scheduler: {
+ /**
+ * Failed to schedule a call
+ **/
+ FailedToSchedule: AugmentedError<ApiType>;
+ /**
+ * Attempt to use a non-named function on a named task.
+ **/
+ Named: 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>;
+ };
session: {
/**
* Registered duplicate key.
tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -628,36 +628,6 @@
**/
[key: string]: AugmentedEvent<ApiType>;
};
- govScheduler: {
- /**
- * The call for the provided hash was not found so the task has been aborted.
- **/
- CallUnavailable: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
- /**
- * Canceled some task.
- **/
- Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
- /**
- * Dispatched some task.
- **/
- Dispatched: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError> }>;
- /**
- * The given task was unable to be renewed since the agenda is full at that block.
- **/
- PeriodicFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
- /**
- * The given task can never be executed since it is overweight.
- **/
- PermanentlyOverweight: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
- /**
- * Scheduled some task.
- **/
- Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
- /**
- * Generic event
- **/
- [key: string]: AugmentedEvent<ApiType>;
- };
identity: {
/**
* A number of identities and associated info were forcibly inserted.
@@ -952,6 +922,36 @@
**/
[key: string]: AugmentedEvent<ApiType>;
};
+ scheduler: {
+ /**
+ * The call for the provided hash was not found so the task has been aborted.
+ **/
+ CallUnavailable: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
+ /**
+ * Canceled some task.
+ **/
+ Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
+ /**
+ * Dispatched some task.
+ **/
+ Dispatched: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError> }>;
+ /**
+ * The given task was unable to be renewed since the agenda is full at that block.
+ **/
+ PeriodicFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
+ /**
+ * The given task can never be executed since it is overweight.
+ **/
+ PermanentlyOverweight: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
+ /**
+ * Scheduled some task.
+ **/
+ Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;
+ /**
+ * Generic event
+ **/
+ [key: string]: AugmentedEvent<ApiType>;
+ };
session: {
/**
* New session has happened. Note that the argument is the session index, not the
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -10,7 +10,7 @@
import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, Call, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSupportPreimagesBounded, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesIdAmount, PalletBalancesReserveData, PalletCollectiveVotes, PalletConfigurationAppPromotionConfiguration, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCodeMetadata, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletPreimageRequestStatus, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveVoteRecord, PalletReferendaReferendumInfo, PalletSchedulerScheduled, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, QuartzRuntimeRuntimeCommonSessionKeys, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV3MultiLocation, XcmVersionedAssetId, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSupportPreimagesBounded, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesIdAmount, PalletBalancesReserveData, PalletCollectiveVotes, PalletConfigurationAppPromotionConfiguration, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCodeMetadata, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletPreimageRequestStatus, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveVoteRecord, PalletReferendaReferendumInfo, PalletSchedulerScheduled, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV3MultiLocation, XcmVersionedAssetId, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -611,24 +611,6 @@
**/
[key: string]: QueryableStorageEntry<ApiType>;
};
- govScheduler: {
- /**
- * 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<PalletSchedulerScheduled>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
- incompleteSince: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
- /**
- * Lookup from a name to the block number and index of the task.
- *
- * For v3 -> v4 the previously unbounded identities are Blake2-256 hashed to form the v4
- * identities.
- **/
- lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
- /**
- * Generic query
- **/
- [key: string]: QueryableStorageEntry<ApiType>;
- };
identity: {
/**
* Information that is pertinent to identify the entity behind an account.
@@ -1011,6 +993,24 @@
**/
[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<PalletSchedulerScheduled>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
+ incompleteSince: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
+ /**
+ * Lookup from a name to the block number and index of the task.
+ *
+ * For v3 -> v4 the previously unbounded identities are Blake2-256 hashed to form the v4
+ * identities.
+ **/
+ lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
+ /**
+ * Generic query
+ **/
+ [key: string]: QueryableStorageEntry<ApiType>;
+ };
session: {
/**
* Current index of the session.
@@ -1031,7 +1031,7 @@
/**
* The next session keys for a validator.
**/
- nextKeys: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<QuartzRuntimeRuntimeCommonSessionKeys>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
+ nextKeys: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<OpalRuntimeRuntimeCommonSessionKeys>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
/**
* True if the underlying economic identities or weighting behind the validators
* has changed in the queued validator set.
@@ -1041,7 +1041,7 @@
* The queued keys for the next session. When the next session begins, these keys
* will be used to determine the validator's session keys.
**/
- queuedKeys: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[AccountId32, QuartzRuntimeRuntimeCommonSessionKeys]>>>, []> & QueryableStorageEntry<ApiType, []>;
+ queuedKeys: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[AccountId32, OpalRuntimeRuntimeCommonSessionKeys]>>>, []> & QueryableStorageEntry<ApiType, []>;
/**
* The current set of validators.
**/
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -10,7 +10,7 @@
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 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletDemocracyConviction, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistration, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, QuartzRuntimeOriginCaller, QuartzRuntimeRuntimeCommonSessionKeys, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV3MultiLocation, XcmV3WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, OpalRuntimeOriginCaller, OpalRuntimeRuntimeCommonSessionKeys, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletDemocracyConviction, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistration, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV3MultiLocation, XcmV3WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
@@ -987,7 +987,7 @@
*
* Emits `Submitted`.
**/
- submit: AugmentedSubmittable<(proposalOrigin: QuartzRuntimeOriginCaller | { system: any } | { Void: any } | { Council: any } | { TechnicalCommittee: any } | { PolkadotXcm: any } | { CumulusXcm: any } | { Origins: any } | { Ethereum: any } | string | Uint8Array, proposal: FrameSupportPreimagesBounded | { Legacy: any } | { Inline: any } | { Lookup: any } | string | Uint8Array, enactmentMoment: FrameSupportScheduleDispatchTime | { At: any } | { After: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [QuartzRuntimeOriginCaller, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime]>;
+ submit: AugmentedSubmittable<(proposalOrigin: OpalRuntimeOriginCaller | { system: any } | { Void: any } | { Council: any } | { TechnicalCommittee: any } | { PolkadotXcm: any } | { CumulusXcm: any } | { Origins: any } | { Ethereum: any } | string | Uint8Array, proposal: FrameSupportPreimagesBounded | { Legacy: any } | { Inline: any } | { Lookup: any } | string | Uint8Array, enactmentMoment: FrameSupportScheduleDispatchTime | { At: any } | { After: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [OpalRuntimeOriginCaller, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime]>;
/**
* Generic tx
**/
@@ -996,36 +996,6 @@
foreignAssets: {
registerForeignAsset: AugmentedSubmittable<(owner: AccountId32 | string | Uint8Array, location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;
updateForeignAsset: AugmentedSubmittable<(foreignAssetId: u32 | AnyNumber | Uint8Array, location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array, metadata: PalletForeignAssetsModuleAssetMetadata | { name?: any; symbol?: any; decimals?: any; minimalBalance?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, XcmVersionedMultiLocation, PalletForeignAssetsModuleAssetMetadata]>;
- /**
- * Generic tx
- **/
- [key: string]: SubmittableExtrinsicFunction<ApiType>;
- };
- govScheduler: {
- /**
- * Cancel an anonymously scheduled task.
- **/
- cancel: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
- /**
- * Cancel a named scheduled task.
- **/
- cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
- /**
- * Anonymously schedule a task.
- **/
- schedule: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
- /**
- * Anonymously schedule a task after a delay.
- **/
- scheduleAfter: AugmentedSubmittable<(after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
- /**
- * Schedule a named task.
- **/
- scheduleNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
- /**
- * Schedule a named task after a delay.
- **/
- scheduleNamedAfter: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
/**
* Generic tx
**/
@@ -1580,6 +1550,36 @@
**/
[key: string]: SubmittableExtrinsicFunction<ApiType>;
};
+ scheduler: {
+ /**
+ * Cancel an anonymously scheduled task.
+ **/
+ cancel: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
+ /**
+ * Cancel a named scheduled task.
+ **/
+ cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
+ /**
+ * Anonymously schedule a task.
+ **/
+ schedule: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
+ /**
+ * Anonymously schedule a task after a delay.
+ **/
+ scheduleAfter: AugmentedSubmittable<(after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
+ /**
+ * Schedule a named task.
+ **/
+ scheduleNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
+ /**
+ * Schedule a named task after a delay.
+ **/
+ scheduleNamedAfter: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: u8 | AnyNumber | Uint8Array, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, Call]>;
+ /**
+ * Generic tx
+ **/
+ [key: string]: SubmittableExtrinsicFunction<ApiType>;
+ };
session: {
/**
* Removes any session key(s) of the function caller.
@@ -1607,7 +1607,7 @@
* - `O(1)`. Actual cost depends on the number of length of `T::Keys::key_ids()` which is
* fixed.
**/
- setKeys: AugmentedSubmittable<(keys: QuartzRuntimeRuntimeCommonSessionKeys | { aura?: any } | string | Uint8Array, proof: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [QuartzRuntimeRuntimeCommonSessionKeys, Bytes]>;
+ setKeys: AugmentedSubmittable<(keys: OpalRuntimeRuntimeCommonSessionKeys | { aura?: any } | string | Uint8Array, proof: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [OpalRuntimeRuntimeCommonSessionKeys, Bytes]>;
/**
* Generic tx
**/
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCodeMetadata, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletGovOriginsOrigin, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRankedCollectiveCall, PalletRankedCollectiveError, PalletRankedCollectiveEvent, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletReferendaCall, PalletReferendaCurve, PalletReferendaDecidingStatus, PalletReferendaDeposit, PalletReferendaError, PalletReferendaEvent, PalletReferendaReferendumInfo, PalletReferendaReferendumStatus, PalletReferendaTrackInfo, PalletRefungibleError, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStateTrieMigrationCall, PalletStateTrieMigrationError, PalletStateTrieMigrationEvent, PalletStateTrieMigrationMigrationCompute, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, QuartzRuntimeOriginCaller, QuartzRuntimeRuntime, QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls, QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance, QuartzRuntimeRuntimeCommonSessionKeys, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from './default';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCodeMetadata, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletGovOriginsOrigin, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRankedCollectiveCall, PalletRankedCollectiveError, PalletRankedCollectiveEvent, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletReferendaCall, PalletReferendaCurve, PalletReferendaDecidingStatus, PalletReferendaDeposit, PalletReferendaError, PalletReferendaEvent, PalletReferendaReferendumInfo, PalletReferendaReferendumStatus, PalletReferendaTrackInfo, PalletRefungibleError, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStateTrieMigrationCall, PalletStateTrieMigrationError, PalletStateTrieMigrationEvent, PalletStateTrieMigrationMigrationCompute, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from './default';
import type { Data, StorageKey } from '@polkadot/types';
import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, ISize, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, isize, 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';
@@ -795,6 +795,11 @@
OffenceDetails: OffenceDetails;
Offender: Offender;
OldV1SessionInfo: OldV1SessionInfo;
+ OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
+ OpalRuntimeRuntime: OpalRuntimeRuntime;
+ OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;
+ OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
+ OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
OpaqueCall: OpaqueCall;
OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;
OpaqueMetadata: OpaqueMetadata;
@@ -1067,11 +1072,6 @@
PvfCheckStatement: PvfCheckStatement;
PvfExecTimeoutKind: PvfExecTimeoutKind;
PvfPrepTimeoutKind: PvfPrepTimeoutKind;
- QuartzRuntimeOriginCaller: QuartzRuntimeOriginCaller;
- QuartzRuntimeRuntime: QuartzRuntimeRuntime;
- QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls: QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls;
- QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance: QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance;
- QuartzRuntimeRuntimeCommonSessionKeys: QuartzRuntimeRuntimeCommonSessionKeys;
QueryId: QueryId;
QueryStatus: QueryStatus;
QueueConfigData: QueueConfigData;
tests/src/interfaces/default/types.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { Data } from '@polkadot/types';5import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, i64, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';6import type { ITuple } from '@polkadot/types-codec/types';7import type { Vote } from '@polkadot/types/interfaces/elections';8import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';9import type { Event } from '@polkadot/types/interfaces/system';1011/** @name CumulusPalletDmpQueueCall */12export interface CumulusPalletDmpQueueCall extends Enum {13 readonly isServiceOverweight: boolean;14 readonly asServiceOverweight: {15 readonly index: u64;16 readonly weightLimit: SpWeightsWeightV2Weight;17 } & Struct;18 readonly type: 'ServiceOverweight';19}2021/** @name CumulusPalletDmpQueueConfigData */22export interface CumulusPalletDmpQueueConfigData extends Struct {23 readonly maxIndividual: SpWeightsWeightV2Weight;24}2526/** @name CumulusPalletDmpQueueError */27export interface CumulusPalletDmpQueueError extends Enum {28 readonly isUnknown: boolean;29 readonly isOverLimit: boolean;30 readonly type: 'Unknown' | 'OverLimit';31}3233/** @name CumulusPalletDmpQueueEvent */34export interface CumulusPalletDmpQueueEvent extends Enum {35 readonly isInvalidFormat: boolean;36 readonly asInvalidFormat: {37 readonly messageId: U8aFixed;38 } & Struct;39 readonly isUnsupportedVersion: boolean;40 readonly asUnsupportedVersion: {41 readonly messageId: U8aFixed;42 } & Struct;43 readonly isExecutedDownward: boolean;44 readonly asExecutedDownward: {45 readonly messageId: U8aFixed;46 readonly outcome: XcmV3TraitsOutcome;47 } & Struct;48 readonly isWeightExhausted: boolean;49 readonly asWeightExhausted: {50 readonly messageId: U8aFixed;51 readonly remainingWeight: SpWeightsWeightV2Weight;52 readonly requiredWeight: SpWeightsWeightV2Weight;53 } & Struct;54 readonly isOverweightEnqueued: boolean;55 readonly asOverweightEnqueued: {56 readonly messageId: U8aFixed;57 readonly overweightIndex: u64;58 readonly requiredWeight: SpWeightsWeightV2Weight;59 } & Struct;60 readonly isOverweightServiced: boolean;61 readonly asOverweightServiced: {62 readonly overweightIndex: u64;63 readonly weightUsed: SpWeightsWeightV2Weight;64 } & Struct;65 readonly isMaxMessagesExhausted: boolean;66 readonly asMaxMessagesExhausted: {67 readonly messageId: U8aFixed;68 } & Struct;69 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced' | 'MaxMessagesExhausted';70}7172/** @name CumulusPalletDmpQueuePageIndexData */73export interface CumulusPalletDmpQueuePageIndexData extends Struct {74 readonly beginUsed: u32;75 readonly endUsed: u32;76 readonly overweightCount: u64;77}7879/** @name CumulusPalletParachainSystemCall */80export interface CumulusPalletParachainSystemCall extends Enum {81 readonly isSetValidationData: boolean;82 readonly asSetValidationData: {83 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;84 } & Struct;85 readonly isSudoSendUpwardMessage: boolean;86 readonly asSudoSendUpwardMessage: {87 readonly message: Bytes;88 } & Struct;89 readonly isAuthorizeUpgrade: boolean;90 readonly asAuthorizeUpgrade: {91 readonly codeHash: H256;92 readonly checkVersion: bool;93 } & Struct;94 readonly isEnactAuthorizedUpgrade: boolean;95 readonly asEnactAuthorizedUpgrade: {96 readonly code: Bytes;97 } & Struct;98 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';99}100101/** @name CumulusPalletParachainSystemCodeUpgradeAuthorization */102export interface CumulusPalletParachainSystemCodeUpgradeAuthorization extends Struct {103 readonly codeHash: H256;104 readonly checkVersion: bool;105}106107/** @name CumulusPalletParachainSystemError */108export interface CumulusPalletParachainSystemError extends Enum {109 readonly isOverlappingUpgrades: boolean;110 readonly isProhibitedByPolkadot: boolean;111 readonly isTooBig: boolean;112 readonly isValidationDataNotAvailable: boolean;113 readonly isHostConfigurationNotAvailable: boolean;114 readonly isNotScheduled: boolean;115 readonly isNothingAuthorized: boolean;116 readonly isUnauthorized: boolean;117 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';118}119120/** @name CumulusPalletParachainSystemEvent */121export interface CumulusPalletParachainSystemEvent extends Enum {122 readonly isValidationFunctionStored: boolean;123 readonly isValidationFunctionApplied: boolean;124 readonly asValidationFunctionApplied: {125 readonly relayChainBlockNum: u32;126 } & Struct;127 readonly isValidationFunctionDiscarded: boolean;128 readonly isUpgradeAuthorized: boolean;129 readonly asUpgradeAuthorized: {130 readonly codeHash: H256;131 } & Struct;132 readonly isDownwardMessagesReceived: boolean;133 readonly asDownwardMessagesReceived: {134 readonly count: u32;135 } & Struct;136 readonly isDownwardMessagesProcessed: boolean;137 readonly asDownwardMessagesProcessed: {138 readonly weightUsed: SpWeightsWeightV2Weight;139 readonly dmqHead: H256;140 } & Struct;141 readonly isUpwardMessageSent: boolean;142 readonly asUpwardMessageSent: {143 readonly messageHash: Option<U8aFixed>;144 } & Struct;145 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed' | 'UpwardMessageSent';146}147148/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */149export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {150 readonly dmqMqcHead: H256;151 readonly relayDispatchQueueSize: CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize;152 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV4AbridgedHrmpChannel]>>;153 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV4AbridgedHrmpChannel]>>;154}155156/** @name CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize */157export interface CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize extends Struct {158 readonly remainingCount: u32;159 readonly remainingSize: u32;160}161162/** @name CumulusPalletXcmCall */163export interface CumulusPalletXcmCall extends Null {}164165/** @name CumulusPalletXcmError */166export interface CumulusPalletXcmError extends Null {}167168/** @name CumulusPalletXcmEvent */169export interface CumulusPalletXcmEvent extends Enum {170 readonly isInvalidFormat: boolean;171 readonly asInvalidFormat: U8aFixed;172 readonly isUnsupportedVersion: boolean;173 readonly asUnsupportedVersion: U8aFixed;174 readonly isExecutedDownward: boolean;175 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV3TraitsOutcome]>;176 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';177}178179/** @name CumulusPalletXcmOrigin */180export interface CumulusPalletXcmOrigin extends Enum {181 readonly isRelay: boolean;182 readonly isSiblingParachain: boolean;183 readonly asSiblingParachain: u32;184 readonly type: 'Relay' | 'SiblingParachain';185}186187/** @name CumulusPalletXcmpQueueCall */188export interface CumulusPalletXcmpQueueCall extends Enum {189 readonly isServiceOverweight: boolean;190 readonly asServiceOverweight: {191 readonly index: u64;192 readonly weightLimit: SpWeightsWeightV2Weight;193 } & Struct;194 readonly isSuspendXcmExecution: boolean;195 readonly isResumeXcmExecution: boolean;196 readonly isUpdateSuspendThreshold: boolean;197 readonly asUpdateSuspendThreshold: {198 readonly new_: u32;199 } & Struct;200 readonly isUpdateDropThreshold: boolean;201 readonly asUpdateDropThreshold: {202 readonly new_: u32;203 } & Struct;204 readonly isUpdateResumeThreshold: boolean;205 readonly asUpdateResumeThreshold: {206 readonly new_: u32;207 } & Struct;208 readonly isUpdateThresholdWeight: boolean;209 readonly asUpdateThresholdWeight: {210 readonly new_: SpWeightsWeightV2Weight;211 } & Struct;212 readonly isUpdateWeightRestrictDecay: boolean;213 readonly asUpdateWeightRestrictDecay: {214 readonly new_: SpWeightsWeightV2Weight;215 } & Struct;216 readonly isUpdateXcmpMaxIndividualWeight: boolean;217 readonly asUpdateXcmpMaxIndividualWeight: {218 readonly new_: SpWeightsWeightV2Weight;219 } & Struct;220 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';221}222223/** @name CumulusPalletXcmpQueueError */224export interface CumulusPalletXcmpQueueError extends Enum {225 readonly isFailedToSend: boolean;226 readonly isBadXcmOrigin: boolean;227 readonly isBadXcm: boolean;228 readonly isBadOverweightIndex: boolean;229 readonly isWeightOverLimit: boolean;230 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';231}232233/** @name CumulusPalletXcmpQueueEvent */234export interface CumulusPalletXcmpQueueEvent extends Enum {235 readonly isSuccess: boolean;236 readonly asSuccess: {237 readonly messageHash: Option<U8aFixed>;238 readonly weight: SpWeightsWeightV2Weight;239 } & Struct;240 readonly isFail: boolean;241 readonly asFail: {242 readonly messageHash: Option<U8aFixed>;243 readonly error: XcmV3TraitsError;244 readonly weight: SpWeightsWeightV2Weight;245 } & Struct;246 readonly isBadVersion: boolean;247 readonly asBadVersion: {248 readonly messageHash: Option<U8aFixed>;249 } & Struct;250 readonly isBadFormat: boolean;251 readonly asBadFormat: {252 readonly messageHash: Option<U8aFixed>;253 } & Struct;254 readonly isXcmpMessageSent: boolean;255 readonly asXcmpMessageSent: {256 readonly messageHash: Option<U8aFixed>;257 } & Struct;258 readonly isOverweightEnqueued: boolean;259 readonly asOverweightEnqueued: {260 readonly sender: u32;261 readonly sentAt: u32;262 readonly index: u64;263 readonly required: SpWeightsWeightV2Weight;264 } & Struct;265 readonly isOverweightServiced: boolean;266 readonly asOverweightServiced: {267 readonly index: u64;268 readonly used: SpWeightsWeightV2Weight;269 } & Struct;270 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';271}272273/** @name CumulusPalletXcmpQueueInboundChannelDetails */274export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {275 readonly sender: u32;276 readonly state: CumulusPalletXcmpQueueInboundState;277 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;278}279280/** @name CumulusPalletXcmpQueueInboundState */281export interface CumulusPalletXcmpQueueInboundState extends Enum {282 readonly isOk: boolean;283 readonly isSuspended: boolean;284 readonly type: 'Ok' | 'Suspended';285}286287/** @name CumulusPalletXcmpQueueOutboundChannelDetails */288export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {289 readonly recipient: u32;290 readonly state: CumulusPalletXcmpQueueOutboundState;291 readonly signalsExist: bool;292 readonly firstIndex: u16;293 readonly lastIndex: u16;294}295296/** @name CumulusPalletXcmpQueueOutboundState */297export interface CumulusPalletXcmpQueueOutboundState extends Enum {298 readonly isOk: boolean;299 readonly isSuspended: boolean;300 readonly type: 'Ok' | 'Suspended';301}302303/** @name CumulusPalletXcmpQueueQueueConfigData */304export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {305 readonly suspendThreshold: u32;306 readonly dropThreshold: u32;307 readonly resumeThreshold: u32;308 readonly thresholdWeight: SpWeightsWeightV2Weight;309 readonly weightRestrictDecay: SpWeightsWeightV2Weight;310 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;311}312313/** @name CumulusPrimitivesParachainInherentParachainInherentData */314export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {315 readonly validationData: PolkadotPrimitivesV4PersistedValidationData;316 readonly relayChainState: SpTrieStorageProof;317 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;318 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;319}320321/** @name EthbloomBloom */322export interface EthbloomBloom extends U8aFixed {}323324/** @name EthereumBlock */325export interface EthereumBlock extends Struct {326 readonly header: EthereumHeader;327 readonly transactions: Vec<EthereumTransactionTransactionV2>;328 readonly ommers: Vec<EthereumHeader>;329}330331/** @name EthereumHeader */332export interface EthereumHeader extends Struct {333 readonly parentHash: H256;334 readonly ommersHash: H256;335 readonly beneficiary: H160;336 readonly stateRoot: H256;337 readonly transactionsRoot: H256;338 readonly receiptsRoot: H256;339 readonly logsBloom: EthbloomBloom;340 readonly difficulty: U256;341 readonly number: U256;342 readonly gasLimit: U256;343 readonly gasUsed: U256;344 readonly timestamp: u64;345 readonly extraData: Bytes;346 readonly mixHash: H256;347 readonly nonce: EthereumTypesHashH64;348}349350/** @name EthereumLog */351export interface EthereumLog extends Struct {352 readonly address: H160;353 readonly topics: Vec<H256>;354 readonly data: Bytes;355}356357/** @name EthereumReceiptEip658ReceiptData */358export interface EthereumReceiptEip658ReceiptData extends Struct {359 readonly statusCode: u8;360 readonly usedGas: U256;361 readonly logsBloom: EthbloomBloom;362 readonly logs: Vec<EthereumLog>;363}364365/** @name EthereumReceiptReceiptV3 */366export interface EthereumReceiptReceiptV3 extends Enum {367 readonly isLegacy: boolean;368 readonly asLegacy: EthereumReceiptEip658ReceiptData;369 readonly isEip2930: boolean;370 readonly asEip2930: EthereumReceiptEip658ReceiptData;371 readonly isEip1559: boolean;372 readonly asEip1559: EthereumReceiptEip658ReceiptData;373 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';374}375376/** @name EthereumTransactionAccessListItem */377export interface EthereumTransactionAccessListItem extends Struct {378 readonly address: H160;379 readonly storageKeys: Vec<H256>;380}381382/** @name EthereumTransactionEip1559Transaction */383export interface EthereumTransactionEip1559Transaction extends Struct {384 readonly chainId: u64;385 readonly nonce: U256;386 readonly maxPriorityFeePerGas: U256;387 readonly maxFeePerGas: U256;388 readonly gasLimit: U256;389 readonly action: EthereumTransactionTransactionAction;390 readonly value: U256;391 readonly input: Bytes;392 readonly accessList: Vec<EthereumTransactionAccessListItem>;393 readonly oddYParity: bool;394 readonly r: H256;395 readonly s: H256;396}397398/** @name EthereumTransactionEip2930Transaction */399export interface EthereumTransactionEip2930Transaction extends Struct {400 readonly chainId: u64;401 readonly nonce: U256;402 readonly gasPrice: U256;403 readonly gasLimit: U256;404 readonly action: EthereumTransactionTransactionAction;405 readonly value: U256;406 readonly input: Bytes;407 readonly accessList: Vec<EthereumTransactionAccessListItem>;408 readonly oddYParity: bool;409 readonly r: H256;410 readonly s: H256;411}412413/** @name EthereumTransactionLegacyTransaction */414export interface EthereumTransactionLegacyTransaction extends Struct {415 readonly nonce: U256;416 readonly gasPrice: U256;417 readonly gasLimit: U256;418 readonly action: EthereumTransactionTransactionAction;419 readonly value: U256;420 readonly input: Bytes;421 readonly signature: EthereumTransactionTransactionSignature;422}423424/** @name EthereumTransactionTransactionAction */425export interface EthereumTransactionTransactionAction extends Enum {426 readonly isCall: boolean;427 readonly asCall: H160;428 readonly isCreate: boolean;429 readonly type: 'Call' | 'Create';430}431432/** @name EthereumTransactionTransactionSignature */433export interface EthereumTransactionTransactionSignature extends Struct {434 readonly v: u64;435 readonly r: H256;436 readonly s: H256;437}438439/** @name EthereumTransactionTransactionV2 */440export interface EthereumTransactionTransactionV2 extends Enum {441 readonly isLegacy: boolean;442 readonly asLegacy: EthereumTransactionLegacyTransaction;443 readonly isEip2930: boolean;444 readonly asEip2930: EthereumTransactionEip2930Transaction;445 readonly isEip1559: boolean;446 readonly asEip1559: EthereumTransactionEip1559Transaction;447 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';448}449450/** @name EthereumTypesHashH64 */451export interface EthereumTypesHashH64 extends U8aFixed {}452453/** @name EvmCoreErrorExitError */454export interface EvmCoreErrorExitError extends Enum {455 readonly isStackUnderflow: boolean;456 readonly isStackOverflow: boolean;457 readonly isInvalidJump: boolean;458 readonly isInvalidRange: boolean;459 readonly isDesignatedInvalid: boolean;460 readonly isCallTooDeep: boolean;461 readonly isCreateCollision: boolean;462 readonly isCreateContractLimit: boolean;463 readonly isOutOfOffset: boolean;464 readonly isOutOfGas: boolean;465 readonly isOutOfFund: boolean;466 readonly isPcUnderflow: boolean;467 readonly isCreateEmpty: boolean;468 readonly isOther: boolean;469 readonly asOther: Text;470 readonly isMaxNonce: boolean;471 readonly isInvalidCode: boolean;472 readonly asInvalidCode: u8;473 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'MaxNonce' | 'InvalidCode';474}475476/** @name EvmCoreErrorExitFatal */477export interface EvmCoreErrorExitFatal extends Enum {478 readonly isNotSupported: boolean;479 readonly isUnhandledInterrupt: boolean;480 readonly isCallErrorAsFatal: boolean;481 readonly asCallErrorAsFatal: EvmCoreErrorExitError;482 readonly isOther: boolean;483 readonly asOther: Text;484 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';485}486487/** @name EvmCoreErrorExitReason */488export interface EvmCoreErrorExitReason extends Enum {489 readonly isSucceed: boolean;490 readonly asSucceed: EvmCoreErrorExitSucceed;491 readonly isError: boolean;492 readonly asError: EvmCoreErrorExitError;493 readonly isRevert: boolean;494 readonly asRevert: EvmCoreErrorExitRevert;495 readonly isFatal: boolean;496 readonly asFatal: EvmCoreErrorExitFatal;497 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';498}499500/** @name EvmCoreErrorExitRevert */501export interface EvmCoreErrorExitRevert extends Enum {502 readonly isReverted: boolean;503 readonly type: 'Reverted';504}505506/** @name EvmCoreErrorExitSucceed */507export interface EvmCoreErrorExitSucceed extends Enum {508 readonly isStopped: boolean;509 readonly isReturned: boolean;510 readonly isSuicided: boolean;511 readonly type: 'Stopped' | 'Returned' | 'Suicided';512}513514/** @name FpRpcTransactionStatus */515export interface FpRpcTransactionStatus extends Struct {516 readonly transactionHash: H256;517 readonly transactionIndex: u32;518 readonly from: H160;519 readonly to: Option<H160>;520 readonly contractAddress: Option<H160>;521 readonly logs: Vec<EthereumLog>;522 readonly logsBloom: EthbloomBloom;523}524525/** @name FrameSupportDispatchDispatchClass */526export interface FrameSupportDispatchDispatchClass extends Enum {527 readonly isNormal: boolean;528 readonly isOperational: boolean;529 readonly isMandatory: boolean;530 readonly type: 'Normal' | 'Operational' | 'Mandatory';531}532533/** @name FrameSupportDispatchDispatchInfo */534export interface FrameSupportDispatchDispatchInfo extends Struct {535 readonly weight: SpWeightsWeightV2Weight;536 readonly class: FrameSupportDispatchDispatchClass;537 readonly paysFee: FrameSupportDispatchPays;538}539540/** @name FrameSupportDispatchPays */541export interface FrameSupportDispatchPays extends Enum {542 readonly isYes: boolean;543 readonly isNo: boolean;544 readonly type: 'Yes' | 'No';545}546547/** @name FrameSupportDispatchPerDispatchClassU32 */548export interface FrameSupportDispatchPerDispatchClassU32 extends Struct {549 readonly normal: u32;550 readonly operational: u32;551 readonly mandatory: u32;552}553554/** @name FrameSupportDispatchPerDispatchClassWeight */555export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {556 readonly normal: SpWeightsWeightV2Weight;557 readonly operational: SpWeightsWeightV2Weight;558 readonly mandatory: SpWeightsWeightV2Weight;559}560561/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */562export interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {563 readonly normal: FrameSystemLimitsWeightsPerClass;564 readonly operational: FrameSystemLimitsWeightsPerClass;565 readonly mandatory: FrameSystemLimitsWeightsPerClass;566}567568/** @name FrameSupportDispatchRawOrigin */569export interface FrameSupportDispatchRawOrigin extends Enum {570 readonly isRoot: boolean;571 readonly isSigned: boolean;572 readonly asSigned: AccountId32;573 readonly isNone: boolean;574 readonly type: 'Root' | 'Signed' | 'None';575}576577/** @name FrameSupportPalletId */578export interface FrameSupportPalletId extends U8aFixed {}579580/** @name FrameSupportPreimagesBounded */581export interface FrameSupportPreimagesBounded extends Enum {582 readonly isLegacy: boolean;583 readonly asLegacy: {584 readonly hash_: H256;585 } & Struct;586 readonly isInline: boolean;587 readonly asInline: Bytes;588 readonly isLookup: boolean;589 readonly asLookup: {590 readonly hash_: H256;591 readonly len: u32;592 } & Struct;593 readonly type: 'Legacy' | 'Inline' | 'Lookup';594}595596/** @name FrameSupportScheduleDispatchTime */597export interface FrameSupportScheduleDispatchTime extends Enum {598 readonly isAt: boolean;599 readonly asAt: u32;600 readonly isAfter: boolean;601 readonly asAfter: u32;602 readonly type: 'At' | 'After';603}604605/** @name FrameSupportTokensMiscBalanceStatus */606export interface FrameSupportTokensMiscBalanceStatus extends Enum {607 readonly isFree: boolean;608 readonly isReserved: boolean;609 readonly type: 'Free' | 'Reserved';610}611612/** @name FrameSystemAccountInfo */613export interface FrameSystemAccountInfo extends Struct {614 readonly nonce: u32;615 readonly consumers: u32;616 readonly providers: u32;617 readonly sufficients: u32;618 readonly data: PalletBalancesAccountData;619}620621/** @name FrameSystemCall */622export interface FrameSystemCall extends Enum {623 readonly isRemark: boolean;624 readonly asRemark: {625 readonly remark: Bytes;626 } & Struct;627 readonly isSetHeapPages: boolean;628 readonly asSetHeapPages: {629 readonly pages: u64;630 } & Struct;631 readonly isSetCode: boolean;632 readonly asSetCode: {633 readonly code: Bytes;634 } & Struct;635 readonly isSetCodeWithoutChecks: boolean;636 readonly asSetCodeWithoutChecks: {637 readonly code: Bytes;638 } & Struct;639 readonly isSetStorage: boolean;640 readonly asSetStorage: {641 readonly items: Vec<ITuple<[Bytes, Bytes]>>;642 } & Struct;643 readonly isKillStorage: boolean;644 readonly asKillStorage: {645 readonly keys_: Vec<Bytes>;646 } & Struct;647 readonly isKillPrefix: boolean;648 readonly asKillPrefix: {649 readonly prefix: Bytes;650 readonly subkeys: u32;651 } & Struct;652 readonly isRemarkWithEvent: boolean;653 readonly asRemarkWithEvent: {654 readonly remark: Bytes;655 } & Struct;656 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';657}658659/** @name FrameSystemError */660export interface FrameSystemError extends Enum {661 readonly isInvalidSpecName: boolean;662 readonly isSpecVersionNeedsToIncrease: boolean;663 readonly isFailedToExtractRuntimeVersion: boolean;664 readonly isNonDefaultComposite: boolean;665 readonly isNonZeroRefCount: boolean;666 readonly isCallFiltered: boolean;667 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';668}669670/** @name FrameSystemEvent */671export interface FrameSystemEvent extends Enum {672 readonly isExtrinsicSuccess: boolean;673 readonly asExtrinsicSuccess: {674 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;675 } & Struct;676 readonly isExtrinsicFailed: boolean;677 readonly asExtrinsicFailed: {678 readonly dispatchError: SpRuntimeDispatchError;679 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;680 } & Struct;681 readonly isCodeUpdated: boolean;682 readonly isNewAccount: boolean;683 readonly asNewAccount: {684 readonly account: AccountId32;685 } & Struct;686 readonly isKilledAccount: boolean;687 readonly asKilledAccount: {688 readonly account: AccountId32;689 } & Struct;690 readonly isRemarked: boolean;691 readonly asRemarked: {692 readonly sender: AccountId32;693 readonly hash_: H256;694 } & Struct;695 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';696}697698/** @name FrameSystemEventRecord */699export interface FrameSystemEventRecord extends Struct {700 readonly phase: FrameSystemPhase;701 readonly event: Event;702 readonly topics: Vec<H256>;703}704705/** @name FrameSystemExtensionsCheckGenesis */706export interface FrameSystemExtensionsCheckGenesis extends Null {}707708/** @name FrameSystemExtensionsCheckNonce */709export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}710711/** @name FrameSystemExtensionsCheckSpecVersion */712export interface FrameSystemExtensionsCheckSpecVersion extends Null {}713714/** @name FrameSystemExtensionsCheckTxVersion */715export interface FrameSystemExtensionsCheckTxVersion extends Null {}716717/** @name FrameSystemExtensionsCheckWeight */718export interface FrameSystemExtensionsCheckWeight extends Null {}719720/** @name FrameSystemLastRuntimeUpgradeInfo */721export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {722 readonly specVersion: Compact<u32>;723 readonly specName: Text;724}725726/** @name FrameSystemLimitsBlockLength */727export interface FrameSystemLimitsBlockLength extends Struct {728 readonly max: FrameSupportDispatchPerDispatchClassU32;729}730731/** @name FrameSystemLimitsBlockWeights */732export interface FrameSystemLimitsBlockWeights extends Struct {733 readonly baseBlock: SpWeightsWeightV2Weight;734 readonly maxBlock: SpWeightsWeightV2Weight;735 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;736}737738/** @name FrameSystemLimitsWeightsPerClass */739export interface FrameSystemLimitsWeightsPerClass extends Struct {740 readonly baseExtrinsic: SpWeightsWeightV2Weight;741 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;742 readonly maxTotal: Option<SpWeightsWeightV2Weight>;743 readonly reserved: Option<SpWeightsWeightV2Weight>;744}745746/** @name FrameSystemPhase */747export interface FrameSystemPhase extends Enum {748 readonly isApplyExtrinsic: boolean;749 readonly asApplyExtrinsic: u32;750 readonly isFinalization: boolean;751 readonly isInitialization: boolean;752 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';753}754755/** @name OpalRuntimeOriginCaller */756export interface OpalRuntimeOriginCaller extends Enum {757 readonly isSystem: boolean;758 readonly asSystem: FrameSupportDispatchRawOrigin;759 readonly isVoid: boolean;760 readonly asVoid: SpCoreVoid;761 readonly isCouncil: boolean;762 readonly asCouncil: PalletCollectiveRawOrigin;763 readonly isTechnicalCommittee: boolean;764 readonly asTechnicalCommittee: PalletCollectiveRawOrigin;765 readonly isPolkadotXcm: boolean;766 readonly asPolkadotXcm: PalletXcmOrigin;767 readonly isCumulusXcm: boolean;768 readonly asCumulusXcm: CumulusPalletXcmOrigin;769 readonly isOrigins: boolean;770 readonly asOrigins: PalletGovOriginsOrigin;771 readonly isEthereum: boolean;772 readonly asEthereum: PalletEthereumRawOrigin;773 readonly type: 'System' | 'Void' | 'Council' | 'TechnicalCommittee' | 'PolkadotXcm' | 'CumulusXcm' | 'Origins' | 'Ethereum';774}775776/** @name OpalRuntimeRuntime */777export interface OpalRuntimeRuntime extends Null {}778779/** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls */780export interface OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls extends Null {}781782/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */783export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}784785/** @name OpalRuntimeRuntimeCommonSessionKeys */786export interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {787 readonly aura: SpConsensusAuraSr25519AppSr25519Public;788}789790/** @name OrmlTokensAccountData */791export interface OrmlTokensAccountData extends Struct {792 readonly free: u128;793 readonly reserved: u128;794 readonly frozen: u128;795}796797/** @name OrmlTokensBalanceLock */798export interface OrmlTokensBalanceLock extends Struct {799 readonly id: U8aFixed;800 readonly amount: u128;801}802803/** @name OrmlTokensModuleCall */804export interface OrmlTokensModuleCall extends Enum {805 readonly isTransfer: boolean;806 readonly asTransfer: {807 readonly dest: MultiAddress;808 readonly currencyId: PalletForeignAssetsAssetIds;809 readonly amount: Compact<u128>;810 } & Struct;811 readonly isTransferAll: boolean;812 readonly asTransferAll: {813 readonly dest: MultiAddress;814 readonly currencyId: PalletForeignAssetsAssetIds;815 readonly keepAlive: bool;816 } & Struct;817 readonly isTransferKeepAlive: boolean;818 readonly asTransferKeepAlive: {819 readonly dest: MultiAddress;820 readonly currencyId: PalletForeignAssetsAssetIds;821 readonly amount: Compact<u128>;822 } & Struct;823 readonly isForceTransfer: boolean;824 readonly asForceTransfer: {825 readonly source: MultiAddress;826 readonly dest: MultiAddress;827 readonly currencyId: PalletForeignAssetsAssetIds;828 readonly amount: Compact<u128>;829 } & Struct;830 readonly isSetBalance: boolean;831 readonly asSetBalance: {832 readonly who: MultiAddress;833 readonly currencyId: PalletForeignAssetsAssetIds;834 readonly newFree: Compact<u128>;835 readonly newReserved: Compact<u128>;836 } & Struct;837 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';838}839840/** @name OrmlTokensModuleError */841export interface OrmlTokensModuleError extends Enum {842 readonly isBalanceTooLow: boolean;843 readonly isAmountIntoBalanceFailed: boolean;844 readonly isLiquidityRestrictions: boolean;845 readonly isMaxLocksExceeded: boolean;846 readonly isKeepAlive: boolean;847 readonly isExistentialDeposit: boolean;848 readonly isDeadAccount: boolean;849 readonly isTooManyReserves: boolean;850 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';851}852853/** @name OrmlTokensModuleEvent */854export interface OrmlTokensModuleEvent extends Enum {855 readonly isEndowed: boolean;856 readonly asEndowed: {857 readonly currencyId: PalletForeignAssetsAssetIds;858 readonly who: AccountId32;859 readonly amount: u128;860 } & Struct;861 readonly isDustLost: boolean;862 readonly asDustLost: {863 readonly currencyId: PalletForeignAssetsAssetIds;864 readonly who: AccountId32;865 readonly amount: u128;866 } & Struct;867 readonly isTransfer: boolean;868 readonly asTransfer: {869 readonly currencyId: PalletForeignAssetsAssetIds;870 readonly from: AccountId32;871 readonly to: AccountId32;872 readonly amount: u128;873 } & Struct;874 readonly isReserved: boolean;875 readonly asReserved: {876 readonly currencyId: PalletForeignAssetsAssetIds;877 readonly who: AccountId32;878 readonly amount: u128;879 } & Struct;880 readonly isUnreserved: boolean;881 readonly asUnreserved: {882 readonly currencyId: PalletForeignAssetsAssetIds;883 readonly who: AccountId32;884 readonly amount: u128;885 } & Struct;886 readonly isReserveRepatriated: boolean;887 readonly asReserveRepatriated: {888 readonly currencyId: PalletForeignAssetsAssetIds;889 readonly from: AccountId32;890 readonly to: AccountId32;891 readonly amount: u128;892 readonly status: FrameSupportTokensMiscBalanceStatus;893 } & Struct;894 readonly isBalanceSet: boolean;895 readonly asBalanceSet: {896 readonly currencyId: PalletForeignAssetsAssetIds;897 readonly who: AccountId32;898 readonly free: u128;899 readonly reserved: u128;900 } & Struct;901 readonly isTotalIssuanceSet: boolean;902 readonly asTotalIssuanceSet: {903 readonly currencyId: PalletForeignAssetsAssetIds;904 readonly amount: u128;905 } & Struct;906 readonly isWithdrawn: boolean;907 readonly asWithdrawn: {908 readonly currencyId: PalletForeignAssetsAssetIds;909 readonly who: AccountId32;910 readonly amount: u128;911 } & Struct;912 readonly isSlashed: boolean;913 readonly asSlashed: {914 readonly currencyId: PalletForeignAssetsAssetIds;915 readonly who: AccountId32;916 readonly freeAmount: u128;917 readonly reservedAmount: u128;918 } & Struct;919 readonly isDeposited: boolean;920 readonly asDeposited: {921 readonly currencyId: PalletForeignAssetsAssetIds;922 readonly who: AccountId32;923 readonly amount: u128;924 } & Struct;925 readonly isLockSet: boolean;926 readonly asLockSet: {927 readonly lockId: U8aFixed;928 readonly currencyId: PalletForeignAssetsAssetIds;929 readonly who: AccountId32;930 readonly amount: u128;931 } & Struct;932 readonly isLockRemoved: boolean;933 readonly asLockRemoved: {934 readonly lockId: U8aFixed;935 readonly currencyId: PalletForeignAssetsAssetIds;936 readonly who: AccountId32;937 } & Struct;938 readonly isLocked: boolean;939 readonly asLocked: {940 readonly currencyId: PalletForeignAssetsAssetIds;941 readonly who: AccountId32;942 readonly amount: u128;943 } & Struct;944 readonly isUnlocked: boolean;945 readonly asUnlocked: {946 readonly currencyId: PalletForeignAssetsAssetIds;947 readonly who: AccountId32;948 readonly amount: u128;949 } & Struct;950 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved' | 'Locked' | 'Unlocked';951}952953/** @name OrmlTokensReserveData */954export interface OrmlTokensReserveData extends Struct {955 readonly id: Null;956 readonly amount: u128;957}958959/** @name OrmlVestingModuleCall */960export interface OrmlVestingModuleCall extends Enum {961 readonly isClaim: boolean;962 readonly isVestedTransfer: boolean;963 readonly asVestedTransfer: {964 readonly dest: MultiAddress;965 readonly schedule: OrmlVestingVestingSchedule;966 } & Struct;967 readonly isUpdateVestingSchedules: boolean;968 readonly asUpdateVestingSchedules: {969 readonly who: MultiAddress;970 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;971 } & Struct;972 readonly isClaimFor: boolean;973 readonly asClaimFor: {974 readonly dest: MultiAddress;975 } & Struct;976 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';977}978979/** @name OrmlVestingModuleError */980export interface OrmlVestingModuleError extends Enum {981 readonly isZeroVestingPeriod: boolean;982 readonly isZeroVestingPeriodCount: boolean;983 readonly isInsufficientBalanceToLock: boolean;984 readonly isTooManyVestingSchedules: boolean;985 readonly isAmountLow: boolean;986 readonly isMaxVestingSchedulesExceeded: boolean;987 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';988}989990/** @name OrmlVestingModuleEvent */991export interface OrmlVestingModuleEvent extends Enum {992 readonly isVestingScheduleAdded: boolean;993 readonly asVestingScheduleAdded: {994 readonly from: AccountId32;995 readonly to: AccountId32;996 readonly vestingSchedule: OrmlVestingVestingSchedule;997 } & Struct;998 readonly isClaimed: boolean;999 readonly asClaimed: {1000 readonly who: AccountId32;1001 readonly amount: u128;1002 } & Struct;1003 readonly isVestingSchedulesUpdated: boolean;1004 readonly asVestingSchedulesUpdated: {1005 readonly who: AccountId32;1006 } & Struct;1007 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';1008}10091010/** @name OrmlVestingVestingSchedule */1011export interface OrmlVestingVestingSchedule extends Struct {1012 readonly start: u32;1013 readonly period: u32;1014 readonly periodCount: u32;1015 readonly perPeriod: Compact<u128>;1016}10171018/** @name OrmlXtokensModuleCall */1019export interface OrmlXtokensModuleCall extends Enum {1020 readonly isTransfer: boolean;1021 readonly asTransfer: {1022 readonly currencyId: PalletForeignAssetsAssetIds;1023 readonly amount: u128;1024 readonly dest: XcmVersionedMultiLocation;1025 readonly destWeightLimit: XcmV3WeightLimit;1026 } & Struct;1027 readonly isTransferMultiasset: boolean;1028 readonly asTransferMultiasset: {1029 readonly asset: XcmVersionedMultiAsset;1030 readonly dest: XcmVersionedMultiLocation;1031 readonly destWeightLimit: XcmV3WeightLimit;1032 } & Struct;1033 readonly isTransferWithFee: boolean;1034 readonly asTransferWithFee: {1035 readonly currencyId: PalletForeignAssetsAssetIds;1036 readonly amount: u128;1037 readonly fee: u128;1038 readonly dest: XcmVersionedMultiLocation;1039 readonly destWeightLimit: XcmV3WeightLimit;1040 } & Struct;1041 readonly isTransferMultiassetWithFee: boolean;1042 readonly asTransferMultiassetWithFee: {1043 readonly asset: XcmVersionedMultiAsset;1044 readonly fee: XcmVersionedMultiAsset;1045 readonly dest: XcmVersionedMultiLocation;1046 readonly destWeightLimit: XcmV3WeightLimit;1047 } & Struct;1048 readonly isTransferMulticurrencies: boolean;1049 readonly asTransferMulticurrencies: {1050 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1051 readonly feeItem: u32;1052 readonly dest: XcmVersionedMultiLocation;1053 readonly destWeightLimit: XcmV3WeightLimit;1054 } & Struct;1055 readonly isTransferMultiassets: boolean;1056 readonly asTransferMultiassets: {1057 readonly assets: XcmVersionedMultiAssets;1058 readonly feeItem: u32;1059 readonly dest: XcmVersionedMultiLocation;1060 readonly destWeightLimit: XcmV3WeightLimit;1061 } & Struct;1062 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1063}10641065/** @name OrmlXtokensModuleError */1066export interface OrmlXtokensModuleError extends Enum {1067 readonly isAssetHasNoReserve: boolean;1068 readonly isNotCrossChainTransfer: boolean;1069 readonly isInvalidDest: boolean;1070 readonly isNotCrossChainTransferableCurrency: boolean;1071 readonly isUnweighableMessage: boolean;1072 readonly isXcmExecutionFailed: boolean;1073 readonly isCannotReanchor: boolean;1074 readonly isInvalidAncestry: boolean;1075 readonly isInvalidAsset: boolean;1076 readonly isDestinationNotInvertible: boolean;1077 readonly isBadVersion: boolean;1078 readonly isDistinctReserveForAssetAndFee: boolean;1079 readonly isZeroFee: boolean;1080 readonly isZeroAmount: boolean;1081 readonly isTooManyAssetsBeingSent: boolean;1082 readonly isAssetIndexNonExistent: boolean;1083 readonly isFeeNotEnough: boolean;1084 readonly isNotSupportedMultiLocation: boolean;1085 readonly isMinXcmFeeNotDefined: boolean;1086 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';1087}10881089/** @name OrmlXtokensModuleEvent */1090export interface OrmlXtokensModuleEvent extends Enum {1091 readonly isTransferredMultiAssets: boolean;1092 readonly asTransferredMultiAssets: {1093 readonly sender: AccountId32;1094 readonly assets: XcmV3MultiassetMultiAssets;1095 readonly fee: XcmV3MultiAsset;1096 readonly dest: XcmV3MultiLocation;1097 } & Struct;1098 readonly type: 'TransferredMultiAssets';1099}11001101/** @name PalletAppPromotionCall */1102export interface PalletAppPromotionCall extends Enum {1103 readonly isSetAdminAddress: boolean;1104 readonly asSetAdminAddress: {1105 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;1106 } & Struct;1107 readonly isStake: boolean;1108 readonly asStake: {1109 readonly amount: u128;1110 } & Struct;1111 readonly isUnstakeAll: boolean;1112 readonly isSponsorCollection: boolean;1113 readonly asSponsorCollection: {1114 readonly collectionId: u32;1115 } & Struct;1116 readonly isStopSponsoringCollection: boolean;1117 readonly asStopSponsoringCollection: {1118 readonly collectionId: u32;1119 } & Struct;1120 readonly isSponsorContract: boolean;1121 readonly asSponsorContract: {1122 readonly contractId: H160;1123 } & Struct;1124 readonly isStopSponsoringContract: boolean;1125 readonly asStopSponsoringContract: {1126 readonly contractId: H160;1127 } & Struct;1128 readonly isPayoutStakers: boolean;1129 readonly asPayoutStakers: {1130 readonly stakersNumber: Option<u8>;1131 } & Struct;1132 readonly isUnstakePartial: boolean;1133 readonly asUnstakePartial: {1134 readonly amount: u128;1135 } & Struct;1136 readonly isForceUnstake: boolean;1137 readonly asForceUnstake: {1138 readonly pendingBlocks: Vec<u32>;1139 } & Struct;1140 readonly type: 'SetAdminAddress' | 'Stake' | 'UnstakeAll' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers' | 'UnstakePartial' | 'ForceUnstake';1141}11421143/** @name PalletAppPromotionError */1144export interface PalletAppPromotionError extends Enum {1145 readonly isAdminNotSet: boolean;1146 readonly isNoPermission: boolean;1147 readonly isNotSufficientFunds: boolean;1148 readonly isPendingForBlockOverflow: boolean;1149 readonly isSponsorNotSet: boolean;1150 readonly isInsufficientStakedBalance: boolean;1151 readonly isInconsistencyState: boolean;1152 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'InsufficientStakedBalance' | 'InconsistencyState';1153}11541155/** @name PalletAppPromotionEvent */1156export interface PalletAppPromotionEvent extends Enum {1157 readonly isStakingRecalculation: boolean;1158 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1159 readonly isStake: boolean;1160 readonly asStake: ITuple<[AccountId32, u128]>;1161 readonly isUnstake: boolean;1162 readonly asUnstake: ITuple<[AccountId32, u128]>;1163 readonly isSetAdmin: boolean;1164 readonly asSetAdmin: AccountId32;1165 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1166}11671168/** @name PalletBalancesAccountData */1169export interface PalletBalancesAccountData extends Struct {1170 readonly free: u128;1171 readonly reserved: u128;1172 readonly frozen: u128;1173 readonly flags: u128;1174}11751176/** @name PalletBalancesBalanceLock */1177export interface PalletBalancesBalanceLock extends Struct {1178 readonly id: U8aFixed;1179 readonly amount: u128;1180 readonly reasons: PalletBalancesReasons;1181}11821183/** @name PalletBalancesCall */1184export interface PalletBalancesCall extends Enum {1185 readonly isTransferAllowDeath: boolean;1186 readonly asTransferAllowDeath: {1187 readonly dest: MultiAddress;1188 readonly value: Compact<u128>;1189 } & Struct;1190 readonly isSetBalanceDeprecated: boolean;1191 readonly asSetBalanceDeprecated: {1192 readonly who: MultiAddress;1193 readonly newFree: Compact<u128>;1194 readonly oldReserved: Compact<u128>;1195 } & Struct;1196 readonly isForceTransfer: boolean;1197 readonly asForceTransfer: {1198 readonly source: MultiAddress;1199 readonly dest: MultiAddress;1200 readonly value: Compact<u128>;1201 } & Struct;1202 readonly isTransferKeepAlive: boolean;1203 readonly asTransferKeepAlive: {1204 readonly dest: MultiAddress;1205 readonly value: Compact<u128>;1206 } & Struct;1207 readonly isTransferAll: boolean;1208 readonly asTransferAll: {1209 readonly dest: MultiAddress;1210 readonly keepAlive: bool;1211 } & Struct;1212 readonly isForceUnreserve: boolean;1213 readonly asForceUnreserve: {1214 readonly who: MultiAddress;1215 readonly amount: u128;1216 } & Struct;1217 readonly isUpgradeAccounts: boolean;1218 readonly asUpgradeAccounts: {1219 readonly who: Vec<AccountId32>;1220 } & Struct;1221 readonly isTransfer: boolean;1222 readonly asTransfer: {1223 readonly dest: MultiAddress;1224 readonly value: Compact<u128>;1225 } & Struct;1226 readonly isForceSetBalance: boolean;1227 readonly asForceSetBalance: {1228 readonly who: MultiAddress;1229 readonly newFree: Compact<u128>;1230 } & Struct;1231 readonly type: 'TransferAllowDeath' | 'SetBalanceDeprecated' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'Transfer' | 'ForceSetBalance';1232}12331234/** @name PalletBalancesError */1235export interface PalletBalancesError extends Enum {1236 readonly isVestingBalance: boolean;1237 readonly isLiquidityRestrictions: boolean;1238 readonly isInsufficientBalance: boolean;1239 readonly isExistentialDeposit: boolean;1240 readonly isExpendability: boolean;1241 readonly isExistingVestingSchedule: boolean;1242 readonly isDeadAccount: boolean;1243 readonly isTooManyReserves: boolean;1244 readonly isTooManyHolds: boolean;1245 readonly isTooManyFreezes: boolean;1246 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes';1247}12481249/** @name PalletBalancesEvent */1250export interface PalletBalancesEvent extends Enum {1251 readonly isEndowed: boolean;1252 readonly asEndowed: {1253 readonly account: AccountId32;1254 readonly freeBalance: u128;1255 } & Struct;1256 readonly isDustLost: boolean;1257 readonly asDustLost: {1258 readonly account: AccountId32;1259 readonly amount: u128;1260 } & Struct;1261 readonly isTransfer: boolean;1262 readonly asTransfer: {1263 readonly from: AccountId32;1264 readonly to: AccountId32;1265 readonly amount: u128;1266 } & Struct;1267 readonly isBalanceSet: boolean;1268 readonly asBalanceSet: {1269 readonly who: AccountId32;1270 readonly free: u128;1271 } & Struct;1272 readonly isReserved: boolean;1273 readonly asReserved: {1274 readonly who: AccountId32;1275 readonly amount: u128;1276 } & Struct;1277 readonly isUnreserved: boolean;1278 readonly asUnreserved: {1279 readonly who: AccountId32;1280 readonly amount: u128;1281 } & Struct;1282 readonly isReserveRepatriated: boolean;1283 readonly asReserveRepatriated: {1284 readonly from: AccountId32;1285 readonly to: AccountId32;1286 readonly amount: u128;1287 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;1288 } & Struct;1289 readonly isDeposit: boolean;1290 readonly asDeposit: {1291 readonly who: AccountId32;1292 readonly amount: u128;1293 } & Struct;1294 readonly isWithdraw: boolean;1295 readonly asWithdraw: {1296 readonly who: AccountId32;1297 readonly amount: u128;1298 } & Struct;1299 readonly isSlashed: boolean;1300 readonly asSlashed: {1301 readonly who: AccountId32;1302 readonly amount: u128;1303 } & Struct;1304 readonly isMinted: boolean;1305 readonly asMinted: {1306 readonly who: AccountId32;1307 readonly amount: u128;1308 } & Struct;1309 readonly isBurned: boolean;1310 readonly asBurned: {1311 readonly who: AccountId32;1312 readonly amount: u128;1313 } & Struct;1314 readonly isSuspended: boolean;1315 readonly asSuspended: {1316 readonly who: AccountId32;1317 readonly amount: u128;1318 } & Struct;1319 readonly isRestored: boolean;1320 readonly asRestored: {1321 readonly who: AccountId32;1322 readonly amount: u128;1323 } & Struct;1324 readonly isUpgraded: boolean;1325 readonly asUpgraded: {1326 readonly who: AccountId32;1327 } & Struct;1328 readonly isIssued: boolean;1329 readonly asIssued: {1330 readonly amount: u128;1331 } & Struct;1332 readonly isRescinded: boolean;1333 readonly asRescinded: {1334 readonly amount: u128;1335 } & Struct;1336 readonly isLocked: boolean;1337 readonly asLocked: {1338 readonly who: AccountId32;1339 readonly amount: u128;1340 } & Struct;1341 readonly isUnlocked: boolean;1342 readonly asUnlocked: {1343 readonly who: AccountId32;1344 readonly amount: u128;1345 } & Struct;1346 readonly isFrozen: boolean;1347 readonly asFrozen: {1348 readonly who: AccountId32;1349 readonly amount: u128;1350 } & Struct;1351 readonly isThawed: boolean;1352 readonly asThawed: {1353 readonly who: AccountId32;1354 readonly amount: u128;1355 } & Struct;1356 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed';1357}13581359/** @name PalletBalancesIdAmount */1360export interface PalletBalancesIdAmount extends Struct {1361 readonly id: U8aFixed;1362 readonly amount: u128;1363}13641365/** @name PalletBalancesReasons */1366export interface PalletBalancesReasons extends Enum {1367 readonly isFee: boolean;1368 readonly isMisc: boolean;1369 readonly isAll: boolean;1370 readonly type: 'Fee' | 'Misc' | 'All';1371}13721373/** @name PalletBalancesReserveData */1374export interface PalletBalancesReserveData extends Struct {1375 readonly id: U8aFixed;1376 readonly amount: u128;1377}13781379/** @name PalletCollatorSelectionCall */1380export interface PalletCollatorSelectionCall extends Enum {1381 readonly isAddInvulnerable: boolean;1382 readonly asAddInvulnerable: {1383 readonly new_: AccountId32;1384 } & Struct;1385 readonly isRemoveInvulnerable: boolean;1386 readonly asRemoveInvulnerable: {1387 readonly who: AccountId32;1388 } & Struct;1389 readonly isGetLicense: boolean;1390 readonly isOnboard: boolean;1391 readonly isOffboard: boolean;1392 readonly isReleaseLicense: boolean;1393 readonly isForceReleaseLicense: boolean;1394 readonly asForceReleaseLicense: {1395 readonly who: AccountId32;1396 } & Struct;1397 readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';1398}13991400/** @name PalletCollatorSelectionError */1401export interface PalletCollatorSelectionError extends Enum {1402 readonly isTooManyCandidates: boolean;1403 readonly isUnknown: boolean;1404 readonly isPermission: boolean;1405 readonly isAlreadyHoldingLicense: boolean;1406 readonly isNoLicense: boolean;1407 readonly isAlreadyCandidate: boolean;1408 readonly isNotCandidate: boolean;1409 readonly isTooManyInvulnerables: boolean;1410 readonly isTooFewInvulnerables: boolean;1411 readonly isAlreadyInvulnerable: boolean;1412 readonly isNotInvulnerable: boolean;1413 readonly isNoAssociatedValidatorId: boolean;1414 readonly isValidatorNotRegistered: boolean;1415 readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';1416}14171418/** @name PalletCollatorSelectionEvent */1419export interface PalletCollatorSelectionEvent extends Enum {1420 readonly isInvulnerableAdded: boolean;1421 readonly asInvulnerableAdded: {1422 readonly invulnerable: AccountId32;1423 } & Struct;1424 readonly isInvulnerableRemoved: boolean;1425 readonly asInvulnerableRemoved: {1426 readonly invulnerable: AccountId32;1427 } & Struct;1428 readonly isLicenseObtained: boolean;1429 readonly asLicenseObtained: {1430 readonly accountId: AccountId32;1431 readonly deposit: u128;1432 } & Struct;1433 readonly isLicenseReleased: boolean;1434 readonly asLicenseReleased: {1435 readonly accountId: AccountId32;1436 readonly depositReturned: u128;1437 } & Struct;1438 readonly isCandidateAdded: boolean;1439 readonly asCandidateAdded: {1440 readonly accountId: AccountId32;1441 } & Struct;1442 readonly isCandidateRemoved: boolean;1443 readonly asCandidateRemoved: {1444 readonly accountId: AccountId32;1445 } & Struct;1446 readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';1447}14481449/** @name PalletCollectiveCall */1450export interface PalletCollectiveCall extends Enum {1451 readonly isSetMembers: boolean;1452 readonly asSetMembers: {1453 readonly newMembers: Vec<AccountId32>;1454 readonly prime: Option<AccountId32>;1455 readonly oldCount: u32;1456 } & Struct;1457 readonly isExecute: boolean;1458 readonly asExecute: {1459 readonly proposal: Call;1460 readonly lengthBound: Compact<u32>;1461 } & Struct;1462 readonly isPropose: boolean;1463 readonly asPropose: {1464 readonly threshold: Compact<u32>;1465 readonly proposal: Call;1466 readonly lengthBound: Compact<u32>;1467 } & Struct;1468 readonly isVote: boolean;1469 readonly asVote: {1470 readonly proposal: H256;1471 readonly index: Compact<u32>;1472 readonly approve: bool;1473 } & Struct;1474 readonly isDisapproveProposal: boolean;1475 readonly asDisapproveProposal: {1476 readonly proposalHash: H256;1477 } & Struct;1478 readonly isClose: boolean;1479 readonly asClose: {1480 readonly proposalHash: H256;1481 readonly index: Compact<u32>;1482 readonly proposalWeightBound: SpWeightsWeightV2Weight;1483 readonly lengthBound: Compact<u32>;1484 } & Struct;1485 readonly type: 'SetMembers' | 'Execute' | 'Propose' | 'Vote' | 'DisapproveProposal' | 'Close';1486}14871488/** @name PalletCollectiveError */1489export interface PalletCollectiveError extends Enum {1490 readonly isNotMember: boolean;1491 readonly isDuplicateProposal: boolean;1492 readonly isProposalMissing: boolean;1493 readonly isWrongIndex: boolean;1494 readonly isDuplicateVote: boolean;1495 readonly isAlreadyInitialized: boolean;1496 readonly isTooEarly: boolean;1497 readonly isTooManyProposals: boolean;1498 readonly isWrongProposalWeight: boolean;1499 readonly isWrongProposalLength: boolean;1500 readonly type: 'NotMember' | 'DuplicateProposal' | 'ProposalMissing' | 'WrongIndex' | 'DuplicateVote' | 'AlreadyInitialized' | 'TooEarly' | 'TooManyProposals' | 'WrongProposalWeight' | 'WrongProposalLength';1501}15021503/** @name PalletCollectiveEvent */1504export interface PalletCollectiveEvent extends Enum {1505 readonly isProposed: boolean;1506 readonly asProposed: {1507 readonly account: AccountId32;1508 readonly proposalIndex: u32;1509 readonly proposalHash: H256;1510 readonly threshold: u32;1511 } & Struct;1512 readonly isVoted: boolean;1513 readonly asVoted: {1514 readonly account: AccountId32;1515 readonly proposalHash: H256;1516 readonly voted: bool;1517 readonly yes: u32;1518 readonly no: u32;1519 } & Struct;1520 readonly isApproved: boolean;1521 readonly asApproved: {1522 readonly proposalHash: H256;1523 } & Struct;1524 readonly isDisapproved: boolean;1525 readonly asDisapproved: {1526 readonly proposalHash: H256;1527 } & Struct;1528 readonly isExecuted: boolean;1529 readonly asExecuted: {1530 readonly proposalHash: H256;1531 readonly result: Result<Null, SpRuntimeDispatchError>;1532 } & Struct;1533 readonly isMemberExecuted: boolean;1534 readonly asMemberExecuted: {1535 readonly proposalHash: H256;1536 readonly result: Result<Null, SpRuntimeDispatchError>;1537 } & Struct;1538 readonly isClosed: boolean;1539 readonly asClosed: {1540 readonly proposalHash: H256;1541 readonly yes: u32;1542 readonly no: u32;1543 } & Struct;1544 readonly type: 'Proposed' | 'Voted' | 'Approved' | 'Disapproved' | 'Executed' | 'MemberExecuted' | 'Closed';1545}15461547/** @name PalletCollectiveRawOrigin */1548export interface PalletCollectiveRawOrigin extends Enum {1549 readonly isMembers: boolean;1550 readonly asMembers: ITuple<[u32, u32]>;1551 readonly isMember: boolean;1552 readonly asMember: AccountId32;1553 readonly isPhantom: boolean;1554 readonly type: 'Members' | 'Member' | 'Phantom';1555}15561557/** @name PalletCollectiveVotes */1558export interface PalletCollectiveVotes extends Struct {1559 readonly index: u32;1560 readonly threshold: u32;1561 readonly ayes: Vec<AccountId32>;1562 readonly nays: Vec<AccountId32>;1563 readonly end: u32;1564}15651566/** @name PalletCommonError */1567export interface PalletCommonError extends Enum {1568 readonly isCollectionNotFound: boolean;1569 readonly isMustBeTokenOwner: boolean;1570 readonly isNoPermission: boolean;1571 readonly isCantDestroyNotEmptyCollection: boolean;1572 readonly isPublicMintingNotAllowed: boolean;1573 readonly isAddressNotInAllowlist: boolean;1574 readonly isCollectionNameLimitExceeded: boolean;1575 readonly isCollectionDescriptionLimitExceeded: boolean;1576 readonly isCollectionTokenPrefixLimitExceeded: boolean;1577 readonly isTotalCollectionsLimitExceeded: boolean;1578 readonly isCollectionAdminCountExceeded: boolean;1579 readonly isCollectionLimitBoundsExceeded: boolean;1580 readonly isOwnerPermissionsCantBeReverted: boolean;1581 readonly isTransferNotAllowed: boolean;1582 readonly isAccountTokenLimitExceeded: boolean;1583 readonly isCollectionTokenLimitExceeded: boolean;1584 readonly isMetadataFlagFrozen: boolean;1585 readonly isTokenNotFound: boolean;1586 readonly isTokenValueTooLow: boolean;1587 readonly isApprovedValueTooLow: boolean;1588 readonly isCantApproveMoreThanOwned: boolean;1589 readonly isAddressIsNotEthMirror: boolean;1590 readonly isAddressIsZero: boolean;1591 readonly isUnsupportedOperation: boolean;1592 readonly isNotSufficientFounds: boolean;1593 readonly isUserIsNotAllowedToNest: boolean;1594 readonly isSourceCollectionIsNotAllowedToNest: boolean;1595 readonly isCollectionFieldSizeExceeded: boolean;1596 readonly isNoSpaceForProperty: boolean;1597 readonly isPropertyLimitReached: boolean;1598 readonly isPropertyKeyIsTooLong: boolean;1599 readonly isInvalidCharacterInPropertyKey: boolean;1600 readonly isEmptyPropertyKey: boolean;1601 readonly isCollectionIsExternal: boolean;1602 readonly isCollectionIsInternal: boolean;1603 readonly isConfirmSponsorshipFail: boolean;1604 readonly isUserIsNotCollectionAdmin: boolean;1605 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsNotEthMirror' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';1606}16071608/** @name PalletCommonEvent */1609export interface PalletCommonEvent extends Enum {1610 readonly isCollectionCreated: boolean;1611 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1612 readonly isCollectionDestroyed: boolean;1613 readonly asCollectionDestroyed: u32;1614 readonly isItemCreated: boolean;1615 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1616 readonly isItemDestroyed: boolean;1617 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1618 readonly isTransfer: boolean;1619 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1620 readonly isApproved: boolean;1621 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1622 readonly isApprovedForAll: boolean;1623 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1624 readonly isCollectionPropertySet: boolean;1625 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1626 readonly isCollectionPropertyDeleted: boolean;1627 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1628 readonly isTokenPropertySet: boolean;1629 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1630 readonly isTokenPropertyDeleted: boolean;1631 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1632 readonly isPropertyPermissionSet: boolean;1633 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1634 readonly isAllowListAddressAdded: boolean;1635 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1636 readonly isAllowListAddressRemoved: boolean;1637 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1638 readonly isCollectionAdminAdded: boolean;1639 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1640 readonly isCollectionAdminRemoved: boolean;1641 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1642 readonly isCollectionLimitSet: boolean;1643 readonly asCollectionLimitSet: u32;1644 readonly isCollectionOwnerChanged: boolean;1645 readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1646 readonly isCollectionPermissionSet: boolean;1647 readonly asCollectionPermissionSet: u32;1648 readonly isCollectionSponsorSet: boolean;1649 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1650 readonly isSponsorshipConfirmed: boolean;1651 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1652 readonly isCollectionSponsorRemoved: boolean;1653 readonly asCollectionSponsorRemoved: u32;1654 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1655}16561657/** @name PalletConfigurationAppPromotionConfiguration */1658export interface PalletConfigurationAppPromotionConfiguration extends Struct {1659 readonly recalculationInterval: Option<u32>;1660 readonly pendingInterval: Option<u32>;1661 readonly intervalIncome: Option<Perbill>;1662 readonly maxStakersPerCalculation: Option<u8>;1663}16641665/** @name PalletConfigurationCall */1666export interface PalletConfigurationCall extends Enum {1667 readonly isSetWeightToFeeCoefficientOverride: boolean;1668 readonly asSetWeightToFeeCoefficientOverride: {1669 readonly coeff: Option<u64>;1670 } & Struct;1671 readonly isSetMinGasPriceOverride: boolean;1672 readonly asSetMinGasPriceOverride: {1673 readonly coeff: Option<u64>;1674 } & Struct;1675 readonly isSetAppPromotionConfigurationOverride: boolean;1676 readonly asSetAppPromotionConfigurationOverride: {1677 readonly configuration: PalletConfigurationAppPromotionConfiguration;1678 } & Struct;1679 readonly isSetCollatorSelectionDesiredCollators: boolean;1680 readonly asSetCollatorSelectionDesiredCollators: {1681 readonly max: Option<u32>;1682 } & Struct;1683 readonly isSetCollatorSelectionLicenseBond: boolean;1684 readonly asSetCollatorSelectionLicenseBond: {1685 readonly amount: Option<u128>;1686 } & Struct;1687 readonly isSetCollatorSelectionKickThreshold: boolean;1688 readonly asSetCollatorSelectionKickThreshold: {1689 readonly threshold: Option<u32>;1690 } & Struct;1691 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';1692}16931694/** @name PalletConfigurationError */1695export interface PalletConfigurationError extends Enum {1696 readonly isInconsistentConfiguration: boolean;1697 readonly type: 'InconsistentConfiguration';1698}16991700/** @name PalletConfigurationEvent */1701export interface PalletConfigurationEvent extends Enum {1702 readonly isNewDesiredCollators: boolean;1703 readonly asNewDesiredCollators: {1704 readonly desiredCollators: Option<u32>;1705 } & Struct;1706 readonly isNewCollatorLicenseBond: boolean;1707 readonly asNewCollatorLicenseBond: {1708 readonly bondCost: Option<u128>;1709 } & Struct;1710 readonly isNewCollatorKickThreshold: boolean;1711 readonly asNewCollatorKickThreshold: {1712 readonly lengthInBlocks: Option<u32>;1713 } & Struct;1714 readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';1715}17161717/** @name PalletDemocracyCall */1718export interface PalletDemocracyCall extends Enum {1719 readonly isPropose: boolean;1720 readonly asPropose: {1721 readonly proposal: FrameSupportPreimagesBounded;1722 readonly value: Compact<u128>;1723 } & Struct;1724 readonly isSecond: boolean;1725 readonly asSecond: {1726 readonly proposal: Compact<u32>;1727 } & Struct;1728 readonly isVote: boolean;1729 readonly asVote: {1730 readonly refIndex: Compact<u32>;1731 readonly vote: PalletDemocracyVoteAccountVote;1732 } & Struct;1733 readonly isEmergencyCancel: boolean;1734 readonly asEmergencyCancel: {1735 readonly refIndex: u32;1736 } & Struct;1737 readonly isExternalPropose: boolean;1738 readonly asExternalPropose: {1739 readonly proposal: FrameSupportPreimagesBounded;1740 } & Struct;1741 readonly isExternalProposeMajority: boolean;1742 readonly asExternalProposeMajority: {1743 readonly proposal: FrameSupportPreimagesBounded;1744 } & Struct;1745 readonly isExternalProposeDefault: boolean;1746 readonly asExternalProposeDefault: {1747 readonly proposal: FrameSupportPreimagesBounded;1748 } & Struct;1749 readonly isFastTrack: boolean;1750 readonly asFastTrack: {1751 readonly proposalHash: H256;1752 readonly votingPeriod: u32;1753 readonly delay: u32;1754 } & Struct;1755 readonly isVetoExternal: boolean;1756 readonly asVetoExternal: {1757 readonly proposalHash: H256;1758 } & Struct;1759 readonly isCancelReferendum: boolean;1760 readonly asCancelReferendum: {1761 readonly refIndex: Compact<u32>;1762 } & Struct;1763 readonly isDelegate: boolean;1764 readonly asDelegate: {1765 readonly to: MultiAddress;1766 readonly conviction: PalletDemocracyConviction;1767 readonly balance: u128;1768 } & Struct;1769 readonly isUndelegate: boolean;1770 readonly isClearPublicProposals: boolean;1771 readonly isUnlock: boolean;1772 readonly asUnlock: {1773 readonly target: MultiAddress;1774 } & Struct;1775 readonly isRemoveVote: boolean;1776 readonly asRemoveVote: {1777 readonly index: u32;1778 } & Struct;1779 readonly isRemoveOtherVote: boolean;1780 readonly asRemoveOtherVote: {1781 readonly target: MultiAddress;1782 readonly index: u32;1783 } & Struct;1784 readonly isBlacklist: boolean;1785 readonly asBlacklist: {1786 readonly proposalHash: H256;1787 readonly maybeRefIndex: Option<u32>;1788 } & Struct;1789 readonly isCancelProposal: boolean;1790 readonly asCancelProposal: {1791 readonly propIndex: Compact<u32>;1792 } & Struct;1793 readonly isSetMetadata: boolean;1794 readonly asSetMetadata: {1795 readonly owner: PalletDemocracyMetadataOwner;1796 readonly maybeHash: Option<H256>;1797 } & Struct;1798 readonly type: 'Propose' | 'Second' | 'Vote' | 'EmergencyCancel' | 'ExternalPropose' | 'ExternalProposeMajority' | 'ExternalProposeDefault' | 'FastTrack' | 'VetoExternal' | 'CancelReferendum' | 'Delegate' | 'Undelegate' | 'ClearPublicProposals' | 'Unlock' | 'RemoveVote' | 'RemoveOtherVote' | 'Blacklist' | 'CancelProposal' | 'SetMetadata';1799}18001801/** @name PalletDemocracyConviction */1802export interface PalletDemocracyConviction extends Enum {1803 readonly isNone: boolean;1804 readonly isLocked1x: boolean;1805 readonly isLocked2x: boolean;1806 readonly isLocked3x: boolean;1807 readonly isLocked4x: boolean;1808 readonly isLocked5x: boolean;1809 readonly isLocked6x: boolean;1810 readonly type: 'None' | 'Locked1x' | 'Locked2x' | 'Locked3x' | 'Locked4x' | 'Locked5x' | 'Locked6x';1811}18121813/** @name PalletDemocracyDelegations */1814export interface PalletDemocracyDelegations extends Struct {1815 readonly votes: u128;1816 readonly capital: u128;1817}18181819/** @name PalletDemocracyError */1820export interface PalletDemocracyError extends Enum {1821 readonly isValueLow: boolean;1822 readonly isProposalMissing: boolean;1823 readonly isAlreadyCanceled: boolean;1824 readonly isDuplicateProposal: boolean;1825 readonly isProposalBlacklisted: boolean;1826 readonly isNotSimpleMajority: boolean;1827 readonly isInvalidHash: boolean;1828 readonly isNoProposal: boolean;1829 readonly isAlreadyVetoed: boolean;1830 readonly isReferendumInvalid: boolean;1831 readonly isNoneWaiting: boolean;1832 readonly isNotVoter: boolean;1833 readonly isNoPermission: boolean;1834 readonly isAlreadyDelegating: boolean;1835 readonly isInsufficientFunds: boolean;1836 readonly isNotDelegating: boolean;1837 readonly isVotesExist: boolean;1838 readonly isInstantNotAllowed: boolean;1839 readonly isNonsense: boolean;1840 readonly isWrongUpperBound: boolean;1841 readonly isMaxVotesReached: boolean;1842 readonly isTooMany: boolean;1843 readonly isVotingPeriodLow: boolean;1844 readonly isPreimageNotExist: boolean;1845 readonly type: 'ValueLow' | 'ProposalMissing' | 'AlreadyCanceled' | 'DuplicateProposal' | 'ProposalBlacklisted' | 'NotSimpleMajority' | 'InvalidHash' | 'NoProposal' | 'AlreadyVetoed' | 'ReferendumInvalid' | 'NoneWaiting' | 'NotVoter' | 'NoPermission' | 'AlreadyDelegating' | 'InsufficientFunds' | 'NotDelegating' | 'VotesExist' | 'InstantNotAllowed' | 'Nonsense' | 'WrongUpperBound' | 'MaxVotesReached' | 'TooMany' | 'VotingPeriodLow' | 'PreimageNotExist';1846}18471848/** @name PalletDemocracyEvent */1849export interface PalletDemocracyEvent extends Enum {1850 readonly isProposed: boolean;1851 readonly asProposed: {1852 readonly proposalIndex: u32;1853 readonly deposit: u128;1854 } & Struct;1855 readonly isTabled: boolean;1856 readonly asTabled: {1857 readonly proposalIndex: u32;1858 readonly deposit: u128;1859 } & Struct;1860 readonly isExternalTabled: boolean;1861 readonly isStarted: boolean;1862 readonly asStarted: {1863 readonly refIndex: u32;1864 readonly threshold: PalletDemocracyVoteThreshold;1865 } & Struct;1866 readonly isPassed: boolean;1867 readonly asPassed: {1868 readonly refIndex: u32;1869 } & Struct;1870 readonly isNotPassed: boolean;1871 readonly asNotPassed: {1872 readonly refIndex: u32;1873 } & Struct;1874 readonly isCancelled: boolean;1875 readonly asCancelled: {1876 readonly refIndex: u32;1877 } & Struct;1878 readonly isDelegated: boolean;1879 readonly asDelegated: {1880 readonly who: AccountId32;1881 readonly target: AccountId32;1882 } & Struct;1883 readonly isUndelegated: boolean;1884 readonly asUndelegated: {1885 readonly account: AccountId32;1886 } & Struct;1887 readonly isVetoed: boolean;1888 readonly asVetoed: {1889 readonly who: AccountId32;1890 readonly proposalHash: H256;1891 readonly until: u32;1892 } & Struct;1893 readonly isBlacklisted: boolean;1894 readonly asBlacklisted: {1895 readonly proposalHash: H256;1896 } & Struct;1897 readonly isVoted: boolean;1898 readonly asVoted: {1899 readonly voter: AccountId32;1900 readonly refIndex: u32;1901 readonly vote: PalletDemocracyVoteAccountVote;1902 } & Struct;1903 readonly isSeconded: boolean;1904 readonly asSeconded: {1905 readonly seconder: AccountId32;1906 readonly propIndex: u32;1907 } & Struct;1908 readonly isProposalCanceled: boolean;1909 readonly asProposalCanceled: {1910 readonly propIndex: u32;1911 } & Struct;1912 readonly isMetadataSet: boolean;1913 readonly asMetadataSet: {1914 readonly owner: PalletDemocracyMetadataOwner;1915 readonly hash_: H256;1916 } & Struct;1917 readonly isMetadataCleared: boolean;1918 readonly asMetadataCleared: {1919 readonly owner: PalletDemocracyMetadataOwner;1920 readonly hash_: H256;1921 } & Struct;1922 readonly isMetadataTransferred: boolean;1923 readonly asMetadataTransferred: {1924 readonly prevOwner: PalletDemocracyMetadataOwner;1925 readonly owner: PalletDemocracyMetadataOwner;1926 readonly hash_: H256;1927 } & Struct;1928 readonly type: 'Proposed' | 'Tabled' | 'ExternalTabled' | 'Started' | 'Passed' | 'NotPassed' | 'Cancelled' | 'Delegated' | 'Undelegated' | 'Vetoed' | 'Blacklisted' | 'Voted' | 'Seconded' | 'ProposalCanceled' | 'MetadataSet' | 'MetadataCleared' | 'MetadataTransferred';1929}19301931/** @name PalletDemocracyMetadataOwner */1932export interface PalletDemocracyMetadataOwner extends Enum {1933 readonly isExternal: boolean;1934 readonly isProposal: boolean;1935 readonly asProposal: u32;1936 readonly isReferendum: boolean;1937 readonly asReferendum: u32;1938 readonly type: 'External' | 'Proposal' | 'Referendum';1939}19401941/** @name PalletDemocracyReferendumInfo */1942export interface PalletDemocracyReferendumInfo extends Enum {1943 readonly isOngoing: boolean;1944 readonly asOngoing: PalletDemocracyReferendumStatus;1945 readonly isFinished: boolean;1946 readonly asFinished: {1947 readonly approved: bool;1948 readonly end: u32;1949 } & Struct;1950 readonly type: 'Ongoing' | 'Finished';1951}19521953/** @name PalletDemocracyReferendumStatus */1954export interface PalletDemocracyReferendumStatus extends Struct {1955 readonly end: u32;1956 readonly proposal: FrameSupportPreimagesBounded;1957 readonly threshold: PalletDemocracyVoteThreshold;1958 readonly delay: u32;1959 readonly tally: PalletDemocracyTally;1960}19611962/** @name PalletDemocracyTally */1963export interface PalletDemocracyTally extends Struct {1964 readonly ayes: u128;1965 readonly nays: u128;1966 readonly turnout: u128;1967}19681969/** @name PalletDemocracyVoteAccountVote */1970export interface PalletDemocracyVoteAccountVote extends Enum {1971 readonly isStandard: boolean;1972 readonly asStandard: {1973 readonly vote: Vote;1974 readonly balance: u128;1975 } & Struct;1976 readonly isSplit: boolean;1977 readonly asSplit: {1978 readonly aye: u128;1979 readonly nay: u128;1980 } & Struct;1981 readonly type: 'Standard' | 'Split';1982}19831984/** @name PalletDemocracyVotePriorLock */1985export interface PalletDemocracyVotePriorLock extends ITuple<[u32, u128]> {}19861987/** @name PalletDemocracyVoteThreshold */1988export interface PalletDemocracyVoteThreshold extends Enum {1989 readonly isSuperMajorityApprove: boolean;1990 readonly isSuperMajorityAgainst: boolean;1991 readonly isSimpleMajority: boolean;1992 readonly type: 'SuperMajorityApprove' | 'SuperMajorityAgainst' | 'SimpleMajority';1993}19941995/** @name PalletDemocracyVoteVoting */1996export interface PalletDemocracyVoteVoting extends Enum {1997 readonly isDirect: boolean;1998 readonly asDirect: {1999 readonly votes: Vec<ITuple<[u32, PalletDemocracyVoteAccountVote]>>;2000 readonly delegations: PalletDemocracyDelegations;2001 readonly prior: PalletDemocracyVotePriorLock;2002 } & Struct;2003 readonly isDelegating: boolean;2004 readonly asDelegating: {2005 readonly balance: u128;2006 readonly target: AccountId32;2007 readonly conviction: PalletDemocracyConviction;2008 readonly delegations: PalletDemocracyDelegations;2009 readonly prior: PalletDemocracyVotePriorLock;2010 } & Struct;2011 readonly type: 'Direct' | 'Delegating';2012}20132014/** @name PalletEthereumCall */2015export interface PalletEthereumCall extends Enum {2016 readonly isTransact: boolean;2017 readonly asTransact: {2018 readonly transaction: EthereumTransactionTransactionV2;2019 } & Struct;2020 readonly type: 'Transact';2021}20222023/** @name PalletEthereumError */2024export interface PalletEthereumError extends Enum {2025 readonly isInvalidSignature: boolean;2026 readonly isPreLogExists: boolean;2027 readonly type: 'InvalidSignature' | 'PreLogExists';2028}20292030/** @name PalletEthereumEvent */2031export interface PalletEthereumEvent extends Enum {2032 readonly isExecuted: boolean;2033 readonly asExecuted: {2034 readonly from: H160;2035 readonly to: H160;2036 readonly transactionHash: H256;2037 readonly exitReason: EvmCoreErrorExitReason;2038 readonly extraData: Bytes;2039 } & Struct;2040 readonly type: 'Executed';2041}20422043/** @name PalletEthereumFakeTransactionFinalizer */2044export interface PalletEthereumFakeTransactionFinalizer extends Null {}20452046/** @name PalletEthereumRawOrigin */2047export interface PalletEthereumRawOrigin extends Enum {2048 readonly isEthereumTransaction: boolean;2049 readonly asEthereumTransaction: H160;2050 readonly type: 'EthereumTransaction';2051}20522053/** @name PalletEvmAccountBasicCrossAccountIdRepr */2054export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {2055 readonly isSubstrate: boolean;2056 readonly asSubstrate: AccountId32;2057 readonly isEthereum: boolean;2058 readonly asEthereum: H160;2059 readonly type: 'Substrate' | 'Ethereum';2060}20612062/** @name PalletEvmCall */2063export interface PalletEvmCall extends Enum {2064 readonly isWithdraw: boolean;2065 readonly asWithdraw: {2066 readonly address: H160;2067 readonly value: u128;2068 } & Struct;2069 readonly isCall: boolean;2070 readonly asCall: {2071 readonly source: H160;2072 readonly target: H160;2073 readonly input: Bytes;2074 readonly value: U256;2075 readonly gasLimit: u64;2076 readonly maxFeePerGas: U256;2077 readonly maxPriorityFeePerGas: Option<U256>;2078 readonly nonce: Option<U256>;2079 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;2080 } & Struct;2081 readonly isCreate: boolean;2082 readonly asCreate: {2083 readonly source: H160;2084 readonly init: Bytes;2085 readonly value: U256;2086 readonly gasLimit: u64;2087 readonly maxFeePerGas: U256;2088 readonly maxPriorityFeePerGas: Option<U256>;2089 readonly nonce: Option<U256>;2090 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;2091 } & Struct;2092 readonly isCreate2: boolean;2093 readonly asCreate2: {2094 readonly source: H160;2095 readonly init: Bytes;2096 readonly salt: H256;2097 readonly value: U256;2098 readonly gasLimit: u64;2099 readonly maxFeePerGas: U256;2100 readonly maxPriorityFeePerGas: Option<U256>;2101 readonly nonce: Option<U256>;2102 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;2103 } & Struct;2104 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';2105}21062107/** @name PalletEvmCodeMetadata */2108export interface PalletEvmCodeMetadata extends Struct {2109 readonly size_: u64;2110 readonly hash_: H256;2111}21122113/** @name PalletEvmCoderSubstrateError */2114export interface PalletEvmCoderSubstrateError extends Enum {2115 readonly isOutOfGas: boolean;2116 readonly isOutOfFund: boolean;2117 readonly type: 'OutOfGas' | 'OutOfFund';2118}21192120/** @name PalletEvmContractHelpersCall */2121export interface PalletEvmContractHelpersCall extends Enum {2122 readonly isMigrateFromSelfSponsoring: boolean;2123 readonly asMigrateFromSelfSponsoring: {2124 readonly addresses: Vec<H160>;2125 } & Struct;2126 readonly type: 'MigrateFromSelfSponsoring';2127}21282129/** @name PalletEvmContractHelpersError */2130export interface PalletEvmContractHelpersError extends Enum {2131 readonly isNoPermission: boolean;2132 readonly isNoPendingSponsor: boolean;2133 readonly isTooManyMethodsHaveSponsoredLimit: boolean;2134 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';2135}21362137/** @name PalletEvmContractHelpersEvent */2138export interface PalletEvmContractHelpersEvent extends Enum {2139 readonly isContractSponsorSet: boolean;2140 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;2141 readonly isContractSponsorshipConfirmed: boolean;2142 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;2143 readonly isContractSponsorRemoved: boolean;2144 readonly asContractSponsorRemoved: H160;2145 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';2146}21472148/** @name PalletEvmContractHelpersSponsoringModeT */2149export interface PalletEvmContractHelpersSponsoringModeT extends Enum {2150 readonly isDisabled: boolean;2151 readonly isAllowlisted: boolean;2152 readonly isGenerous: boolean;2153 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';2154}21552156/** @name PalletEvmError */2157export interface PalletEvmError extends Enum {2158 readonly isBalanceLow: boolean;2159 readonly isFeeOverflow: boolean;2160 readonly isPaymentOverflow: boolean;2161 readonly isWithdrawFailed: boolean;2162 readonly isGasPriceTooLow: boolean;2163 readonly isInvalidNonce: boolean;2164 readonly isGasLimitTooLow: boolean;2165 readonly isGasLimitTooHigh: boolean;2166 readonly isUndefined: boolean;2167 readonly isReentrancy: boolean;2168 readonly isTransactionMustComeFromEOA: boolean;2169 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';2170}21712172/** @name PalletEvmEvent */2173export interface PalletEvmEvent extends Enum {2174 readonly isLog: boolean;2175 readonly asLog: {2176 readonly log: EthereumLog;2177 } & Struct;2178 readonly isCreated: boolean;2179 readonly asCreated: {2180 readonly address: H160;2181 } & Struct;2182 readonly isCreatedFailed: boolean;2183 readonly asCreatedFailed: {2184 readonly address: H160;2185 } & Struct;2186 readonly isExecuted: boolean;2187 readonly asExecuted: {2188 readonly address: H160;2189 } & Struct;2190 readonly isExecutedFailed: boolean;2191 readonly asExecutedFailed: {2192 readonly address: H160;2193 } & Struct;2194 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';2195}21962197/** @name PalletEvmMigrationCall */2198export interface PalletEvmMigrationCall extends Enum {2199 readonly isBegin: boolean;2200 readonly asBegin: {2201 readonly address: H160;2202 } & Struct;2203 readonly isSetData: boolean;2204 readonly asSetData: {2205 readonly address: H160;2206 readonly data: Vec<ITuple<[H256, H256]>>;2207 } & Struct;2208 readonly isFinish: boolean;2209 readonly asFinish: {2210 readonly address: H160;2211 readonly code: Bytes;2212 } & Struct;2213 readonly isInsertEthLogs: boolean;2214 readonly asInsertEthLogs: {2215 readonly logs: Vec<EthereumLog>;2216 } & Struct;2217 readonly isInsertEvents: boolean;2218 readonly asInsertEvents: {2219 readonly events: Vec<Bytes>;2220 } & Struct;2221 readonly isRemoveRmrkData: boolean;2222 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents' | 'RemoveRmrkData';2223}22242225/** @name PalletEvmMigrationError */2226export interface PalletEvmMigrationError extends Enum {2227 readonly isAccountNotEmpty: boolean;2228 readonly isAccountIsNotMigrating: boolean;2229 readonly isBadEvent: boolean;2230 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';2231}22322233/** @name PalletEvmMigrationEvent */2234export interface PalletEvmMigrationEvent extends Enum {2235 readonly isTestEvent: boolean;2236 readonly type: 'TestEvent';2237}22382239/** @name PalletForeignAssetsAssetIds */2240export interface PalletForeignAssetsAssetIds extends Enum {2241 readonly isForeignAssetId: boolean;2242 readonly asForeignAssetId: u32;2243 readonly isNativeAssetId: boolean;2244 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;2245 readonly type: 'ForeignAssetId' | 'NativeAssetId';2246}22472248/** @name PalletForeignAssetsModuleAssetMetadata */2249export interface PalletForeignAssetsModuleAssetMetadata extends Struct {2250 readonly name: Bytes;2251 readonly symbol: Bytes;2252 readonly decimals: u8;2253 readonly minimalBalance: u128;2254}22552256/** @name PalletForeignAssetsModuleCall */2257export interface PalletForeignAssetsModuleCall extends Enum {2258 readonly isRegisterForeignAsset: boolean;2259 readonly asRegisterForeignAsset: {2260 readonly owner: AccountId32;2261 readonly location: XcmVersionedMultiLocation;2262 readonly metadata: PalletForeignAssetsModuleAssetMetadata;2263 } & Struct;2264 readonly isUpdateForeignAsset: boolean;2265 readonly asUpdateForeignAsset: {2266 readonly foreignAssetId: u32;2267 readonly location: XcmVersionedMultiLocation;2268 readonly metadata: PalletForeignAssetsModuleAssetMetadata;2269 } & Struct;2270 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';2271}22722273/** @name PalletForeignAssetsModuleError */2274export interface PalletForeignAssetsModuleError extends Enum {2275 readonly isBadLocation: boolean;2276 readonly isMultiLocationExisted: boolean;2277 readonly isAssetIdNotExists: boolean;2278 readonly isAssetIdExisted: boolean;2279 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';2280}22812282/** @name PalletForeignAssetsModuleEvent */2283export interface PalletForeignAssetsModuleEvent extends Enum {2284 readonly isForeignAssetRegistered: boolean;2285 readonly asForeignAssetRegistered: {2286 readonly assetId: u32;2287 readonly assetAddress: XcmV3MultiLocation;2288 readonly metadata: PalletForeignAssetsModuleAssetMetadata;2289 } & Struct;2290 readonly isForeignAssetUpdated: boolean;2291 readonly asForeignAssetUpdated: {2292 readonly assetId: u32;2293 readonly assetAddress: XcmV3MultiLocation;2294 readonly metadata: PalletForeignAssetsModuleAssetMetadata;2295 } & Struct;2296 readonly isAssetRegistered: boolean;2297 readonly asAssetRegistered: {2298 readonly assetId: PalletForeignAssetsAssetIds;2299 readonly metadata: PalletForeignAssetsModuleAssetMetadata;2300 } & Struct;2301 readonly isAssetUpdated: boolean;2302 readonly asAssetUpdated: {2303 readonly assetId: PalletForeignAssetsAssetIds;2304 readonly metadata: PalletForeignAssetsModuleAssetMetadata;2305 } & Struct;2306 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';2307}23082309/** @name PalletForeignAssetsNativeCurrency */2310export interface PalletForeignAssetsNativeCurrency extends Enum {2311 readonly isHere: boolean;2312 readonly isParent: boolean;2313 readonly type: 'Here' | 'Parent';2314}23152316/** @name PalletFungibleError */2317export interface PalletFungibleError extends Enum {2318 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;2319 readonly isFungibleItemsHaveNoId: boolean;2320 readonly isFungibleItemsDontHaveData: boolean;2321 readonly isFungibleDisallowsNesting: boolean;2322 readonly isSettingPropertiesNotAllowed: boolean;2323 readonly isSettingAllowanceForAllNotAllowed: boolean;2324 readonly isFungibleTokensAreAlwaysValid: boolean;2325 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';2326}23272328/** @name PalletGovOriginsOrigin */2329export interface PalletGovOriginsOrigin extends Enum {2330 readonly isFellowshipProposition: boolean;2331 readonly type: 'FellowshipProposition';2332}23332334/** @name PalletIdentityBitFlags */2335export interface PalletIdentityBitFlags extends Struct {2336 readonly _bitLength: 64;2337 readonly Display: 1;2338 readonly Legal: 2;2339 readonly Web: 4;2340 readonly Riot: 8;2341 readonly Email: 16;2342 readonly PgpFingerprint: 32;2343 readonly Image: 64;2344 readonly Twitter: 128;2345}23462347/** @name PalletIdentityCall */2348export interface PalletIdentityCall extends Enum {2349 readonly isAddRegistrar: boolean;2350 readonly asAddRegistrar: {2351 readonly account: MultiAddress;2352 } & Struct;2353 readonly isSetIdentity: boolean;2354 readonly asSetIdentity: {2355 readonly info: PalletIdentityIdentityInfo;2356 } & Struct;2357 readonly isSetSubs: boolean;2358 readonly asSetSubs: {2359 readonly subs: Vec<ITuple<[AccountId32, Data]>>;2360 } & Struct;2361 readonly isClearIdentity: boolean;2362 readonly isRequestJudgement: boolean;2363 readonly asRequestJudgement: {2364 readonly regIndex: Compact<u32>;2365 readonly maxFee: Compact<u128>;2366 } & Struct;2367 readonly isCancelRequest: boolean;2368 readonly asCancelRequest: {2369 readonly regIndex: u32;2370 } & Struct;2371 readonly isSetFee: boolean;2372 readonly asSetFee: {2373 readonly index: Compact<u32>;2374 readonly fee: Compact<u128>;2375 } & Struct;2376 readonly isSetAccountId: boolean;2377 readonly asSetAccountId: {2378 readonly index: Compact<u32>;2379 readonly new_: MultiAddress;2380 } & Struct;2381 readonly isSetFields: boolean;2382 readonly asSetFields: {2383 readonly index: Compact<u32>;2384 readonly fields: PalletIdentityBitFlags;2385 } & Struct;2386 readonly isProvideJudgement: boolean;2387 readonly asProvideJudgement: {2388 readonly regIndex: Compact<u32>;2389 readonly target: MultiAddress;2390 readonly judgement: PalletIdentityJudgement;2391 readonly identity: H256;2392 } & Struct;2393 readonly isKillIdentity: boolean;2394 readonly asKillIdentity: {2395 readonly target: MultiAddress;2396 } & Struct;2397 readonly isAddSub: boolean;2398 readonly asAddSub: {2399 readonly sub: MultiAddress;2400 readonly data: Data;2401 } & Struct;2402 readonly isRenameSub: boolean;2403 readonly asRenameSub: {2404 readonly sub: MultiAddress;2405 readonly data: Data;2406 } & Struct;2407 readonly isRemoveSub: boolean;2408 readonly asRemoveSub: {2409 readonly sub: MultiAddress;2410 } & Struct;2411 readonly isQuitSub: boolean;2412 readonly isForceInsertIdentities: boolean;2413 readonly asForceInsertIdentities: {2414 readonly identities: Vec<ITuple<[AccountId32, PalletIdentityRegistration]>>;2415 } & Struct;2416 readonly isForceRemoveIdentities: boolean;2417 readonly asForceRemoveIdentities: {2418 readonly identities: Vec<AccountId32>;2419 } & Struct;2420 readonly isForceSetSubs: boolean;2421 readonly asForceSetSubs: {2422 readonly subs: Vec<ITuple<[AccountId32, ITuple<[u128, Vec<ITuple<[AccountId32, Data]>>]>]>>;2423 } & Struct;2424 readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities' | 'ForceSetSubs';2425}24262427/** @name PalletIdentityError */2428export interface PalletIdentityError extends Enum {2429 readonly isTooManySubAccounts: boolean;2430 readonly isNotFound: boolean;2431 readonly isNotNamed: boolean;2432 readonly isEmptyIndex: boolean;2433 readonly isFeeChanged: boolean;2434 readonly isNoIdentity: boolean;2435 readonly isStickyJudgement: boolean;2436 readonly isJudgementGiven: boolean;2437 readonly isInvalidJudgement: boolean;2438 readonly isInvalidIndex: boolean;2439 readonly isInvalidTarget: boolean;2440 readonly isTooManyFields: boolean;2441 readonly isTooManyRegistrars: boolean;2442 readonly isAlreadyClaimed: boolean;2443 readonly isNotSub: boolean;2444 readonly isNotOwned: boolean;2445 readonly isJudgementForDifferentIdentity: boolean;2446 readonly isJudgementPaymentFailed: boolean;2447 readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';2448}24492450/** @name PalletIdentityEvent */2451export interface PalletIdentityEvent extends Enum {2452 readonly isIdentitySet: boolean;2453 readonly asIdentitySet: {2454 readonly who: AccountId32;2455 } & Struct;2456 readonly isIdentityCleared: boolean;2457 readonly asIdentityCleared: {2458 readonly who: AccountId32;2459 readonly deposit: u128;2460 } & Struct;2461 readonly isIdentityKilled: boolean;2462 readonly asIdentityKilled: {2463 readonly who: AccountId32;2464 readonly deposit: u128;2465 } & Struct;2466 readonly isIdentitiesInserted: boolean;2467 readonly asIdentitiesInserted: {2468 readonly amount: u32;2469 } & Struct;2470 readonly isIdentitiesRemoved: boolean;2471 readonly asIdentitiesRemoved: {2472 readonly amount: u32;2473 } & Struct;2474 readonly isJudgementRequested: boolean;2475 readonly asJudgementRequested: {2476 readonly who: AccountId32;2477 readonly registrarIndex: u32;2478 } & Struct;2479 readonly isJudgementUnrequested: boolean;2480 readonly asJudgementUnrequested: {2481 readonly who: AccountId32;2482 readonly registrarIndex: u32;2483 } & Struct;2484 readonly isJudgementGiven: boolean;2485 readonly asJudgementGiven: {2486 readonly target: AccountId32;2487 readonly registrarIndex: u32;2488 } & Struct;2489 readonly isRegistrarAdded: boolean;2490 readonly asRegistrarAdded: {2491 readonly registrarIndex: u32;2492 } & Struct;2493 readonly isSubIdentityAdded: boolean;2494 readonly asSubIdentityAdded: {2495 readonly sub: AccountId32;2496 readonly main: AccountId32;2497 readonly deposit: u128;2498 } & Struct;2499 readonly isSubIdentityRemoved: boolean;2500 readonly asSubIdentityRemoved: {2501 readonly sub: AccountId32;2502 readonly main: AccountId32;2503 readonly deposit: u128;2504 } & Struct;2505 readonly isSubIdentityRevoked: boolean;2506 readonly asSubIdentityRevoked: {2507 readonly sub: AccountId32;2508 readonly main: AccountId32;2509 readonly deposit: u128;2510 } & Struct;2511 readonly isSubIdentitiesInserted: boolean;2512 readonly asSubIdentitiesInserted: {2513 readonly amount: u32;2514 } & Struct;2515 readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked' | 'SubIdentitiesInserted';2516}25172518/** @name PalletIdentityIdentityField */2519export interface PalletIdentityIdentityField extends Enum {2520 readonly isDisplay: boolean;2521 readonly isLegal: boolean;2522 readonly isWeb: boolean;2523 readonly isRiot: boolean;2524 readonly isEmail: boolean;2525 readonly isPgpFingerprint: boolean;2526 readonly isImage: boolean;2527 readonly isTwitter: boolean;2528 readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';2529}25302531/** @name PalletIdentityIdentityInfo */2532export interface PalletIdentityIdentityInfo extends Struct {2533 readonly additional: Vec<ITuple<[Data, Data]>>;2534 readonly display: Data;2535 readonly legal: Data;2536 readonly web: Data;2537 readonly riot: Data;2538 readonly email: Data;2539 readonly pgpFingerprint: Option<U8aFixed>;2540 readonly image: Data;2541 readonly twitter: Data;2542}25432544/** @name PalletIdentityJudgement */2545export interface PalletIdentityJudgement extends Enum {2546 readonly isUnknown: boolean;2547 readonly isFeePaid: boolean;2548 readonly asFeePaid: u128;2549 readonly isReasonable: boolean;2550 readonly isKnownGood: boolean;2551 readonly isOutOfDate: boolean;2552 readonly isLowQuality: boolean;2553 readonly isErroneous: boolean;2554 readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';2555}25562557/** @name PalletIdentityRegistrarInfo */2558export interface PalletIdentityRegistrarInfo extends Struct {2559 readonly account: AccountId32;2560 readonly fee: u128;2561 readonly fields: PalletIdentityBitFlags;2562}25632564/** @name PalletIdentityRegistration */2565export interface PalletIdentityRegistration extends Struct {2566 readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;2567 readonly deposit: u128;2568 readonly info: PalletIdentityIdentityInfo;2569}25702571/** @name PalletInflationCall */2572export interface PalletInflationCall extends Enum {2573 readonly isStartInflation: boolean;2574 readonly asStartInflation: {2575 readonly inflationStartRelayBlock: u32;2576 } & Struct;2577 readonly type: 'StartInflation';2578}25792580/** @name PalletMaintenanceCall */2581export interface PalletMaintenanceCall extends Enum {2582 readonly isEnable: boolean;2583 readonly isDisable: boolean;2584 readonly isExecutePreimage: boolean;2585 readonly asExecutePreimage: {2586 readonly hash_: H256;2587 readonly weightBound: SpWeightsWeightV2Weight;2588 } & Struct;2589 readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';2590}25912592/** @name PalletMaintenanceError */2593export interface PalletMaintenanceError extends Null {}25942595/** @name PalletMaintenanceEvent */2596export interface PalletMaintenanceEvent extends Enum {2597 readonly isMaintenanceEnabled: boolean;2598 readonly isMaintenanceDisabled: boolean;2599 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';2600}26012602/** @name PalletMembershipCall */2603export interface PalletMembershipCall extends Enum {2604 readonly isAddMember: boolean;2605 readonly asAddMember: {2606 readonly who: MultiAddress;2607 } & Struct;2608 readonly isRemoveMember: boolean;2609 readonly asRemoveMember: {2610 readonly who: MultiAddress;2611 } & Struct;2612 readonly isSwapMember: boolean;2613 readonly asSwapMember: {2614 readonly remove: MultiAddress;2615 readonly add: MultiAddress;2616 } & Struct;2617 readonly isResetMembers: boolean;2618 readonly asResetMembers: {2619 readonly members: Vec<AccountId32>;2620 } & Struct;2621 readonly isChangeKey: boolean;2622 readonly asChangeKey: {2623 readonly new_: MultiAddress;2624 } & Struct;2625 readonly isSetPrime: boolean;2626 readonly asSetPrime: {2627 readonly who: MultiAddress;2628 } & Struct;2629 readonly isClearPrime: boolean;2630 readonly type: 'AddMember' | 'RemoveMember' | 'SwapMember' | 'ResetMembers' | 'ChangeKey' | 'SetPrime' | 'ClearPrime';2631}26322633/** @name PalletMembershipError */2634export interface PalletMembershipError extends Enum {2635 readonly isAlreadyMember: boolean;2636 readonly isNotMember: boolean;2637 readonly isTooManyMembers: boolean;2638 readonly type: 'AlreadyMember' | 'NotMember' | 'TooManyMembers';2639}26402641/** @name PalletMembershipEvent */2642export interface PalletMembershipEvent extends Enum {2643 readonly isMemberAdded: boolean;2644 readonly isMemberRemoved: boolean;2645 readonly isMembersSwapped: boolean;2646 readonly isMembersReset: boolean;2647 readonly isKeyChanged: boolean;2648 readonly isDummy: boolean;2649 readonly type: 'MemberAdded' | 'MemberRemoved' | 'MembersSwapped' | 'MembersReset' | 'KeyChanged' | 'Dummy';2650}26512652/** @name PalletNonfungibleError */2653export interface PalletNonfungibleError extends Enum {2654 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2655 readonly isNonfungibleItemsHaveNoAmount: boolean;2656 readonly isCantBurnNftWithChildren: boolean;2657 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';2658}26592660/** @name PalletNonfungibleItemData */2661export interface PalletNonfungibleItemData extends Struct {2662 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2663}26642665/** @name PalletPreimageCall */2666export interface PalletPreimageCall extends Enum {2667 readonly isNotePreimage: boolean;2668 readonly asNotePreimage: {2669 readonly bytes: Bytes;2670 } & Struct;2671 readonly isUnnotePreimage: boolean;2672 readonly asUnnotePreimage: {2673 readonly hash_: H256;2674 } & Struct;2675 readonly isRequestPreimage: boolean;2676 readonly asRequestPreimage: {2677 readonly hash_: H256;2678 } & Struct;2679 readonly isUnrequestPreimage: boolean;2680 readonly asUnrequestPreimage: {2681 readonly hash_: H256;2682 } & Struct;2683 readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';2684}26852686/** @name PalletPreimageError */2687export interface PalletPreimageError extends Enum {2688 readonly isTooBig: boolean;2689 readonly isAlreadyNoted: boolean;2690 readonly isNotAuthorized: boolean;2691 readonly isNotNoted: boolean;2692 readonly isRequested: boolean;2693 readonly isNotRequested: boolean;2694 readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';2695}26962697/** @name PalletPreimageEvent */2698export interface PalletPreimageEvent extends Enum {2699 readonly isNoted: boolean;2700 readonly asNoted: {2701 readonly hash_: H256;2702 } & Struct;2703 readonly isRequested: boolean;2704 readonly asRequested: {2705 readonly hash_: H256;2706 } & Struct;2707 readonly isCleared: boolean;2708 readonly asCleared: {2709 readonly hash_: H256;2710 } & Struct;2711 readonly type: 'Noted' | 'Requested' | 'Cleared';2712}27132714/** @name PalletPreimageRequestStatus */2715export interface PalletPreimageRequestStatus extends Enum {2716 readonly isUnrequested: boolean;2717 readonly asUnrequested: {2718 readonly deposit: ITuple<[AccountId32, u128]>;2719 readonly len: u32;2720 } & Struct;2721 readonly isRequested: boolean;2722 readonly asRequested: {2723 readonly deposit: Option<ITuple<[AccountId32, u128]>>;2724 readonly count: u32;2725 readonly len: Option<u32>;2726 } & Struct;2727 readonly type: 'Unrequested' | 'Requested';2728}27292730/** @name PalletRankedCollectiveCall */2731export interface PalletRankedCollectiveCall extends Enum {2732 readonly isAddMember: boolean;2733 readonly asAddMember: {2734 readonly who: MultiAddress;2735 } & Struct;2736 readonly isPromoteMember: boolean;2737 readonly asPromoteMember: {2738 readonly who: MultiAddress;2739 } & Struct;2740 readonly isDemoteMember: boolean;2741 readonly asDemoteMember: {2742 readonly who: MultiAddress;2743 } & Struct;2744 readonly isRemoveMember: boolean;2745 readonly asRemoveMember: {2746 readonly who: MultiAddress;2747 readonly minRank: u16;2748 } & Struct;2749 readonly isVote: boolean;2750 readonly asVote: {2751 readonly poll: u32;2752 readonly aye: bool;2753 } & Struct;2754 readonly isCleanupPoll: boolean;2755 readonly asCleanupPoll: {2756 readonly pollIndex: u32;2757 readonly max: u32;2758 } & Struct;2759 readonly type: 'AddMember' | 'PromoteMember' | 'DemoteMember' | 'RemoveMember' | 'Vote' | 'CleanupPoll';2760}27612762/** @name PalletRankedCollectiveError */2763export interface PalletRankedCollectiveError extends Enum {2764 readonly isAlreadyMember: boolean;2765 readonly isNotMember: boolean;2766 readonly isNotPolling: boolean;2767 readonly isOngoing: boolean;2768 readonly isNoneRemaining: boolean;2769 readonly isCorruption: boolean;2770 readonly isRankTooLow: boolean;2771 readonly isInvalidWitness: boolean;2772 readonly isNoPermission: boolean;2773 readonly type: 'AlreadyMember' | 'NotMember' | 'NotPolling' | 'Ongoing' | 'NoneRemaining' | 'Corruption' | 'RankTooLow' | 'InvalidWitness' | 'NoPermission';2774}27752776/** @name PalletRankedCollectiveEvent */2777export interface PalletRankedCollectiveEvent extends Enum {2778 readonly isMemberAdded: boolean;2779 readonly asMemberAdded: {2780 readonly who: AccountId32;2781 } & Struct;2782 readonly isRankChanged: boolean;2783 readonly asRankChanged: {2784 readonly who: AccountId32;2785 readonly rank: u16;2786 } & Struct;2787 readonly isMemberRemoved: boolean;2788 readonly asMemberRemoved: {2789 readonly who: AccountId32;2790 readonly rank: u16;2791 } & Struct;2792 readonly isVoted: boolean;2793 readonly asVoted: {2794 readonly who: AccountId32;2795 readonly poll: u32;2796 readonly vote: PalletRankedCollectiveVoteRecord;2797 readonly tally: PalletRankedCollectiveTally;2798 } & Struct;2799 readonly type: 'MemberAdded' | 'RankChanged' | 'MemberRemoved' | 'Voted';2800}28012802/** @name PalletRankedCollectiveMemberRecord */2803export interface PalletRankedCollectiveMemberRecord extends Struct {2804 readonly rank: u16;2805}28062807/** @name PalletRankedCollectiveTally */2808export interface PalletRankedCollectiveTally extends Struct {2809 readonly bareAyes: u32;2810 readonly ayes: u32;2811 readonly nays: u32;2812}28132814/** @name PalletRankedCollectiveVoteRecord */2815export interface PalletRankedCollectiveVoteRecord extends Enum {2816 readonly isAye: boolean;2817 readonly asAye: u32;2818 readonly isNay: boolean;2819 readonly asNay: u32;2820 readonly type: 'Aye' | 'Nay';2821}28222823/** @name PalletReferendaCall */2824export interface PalletReferendaCall extends Enum {2825 readonly isSubmit: boolean;2826 readonly asSubmit: {2827 readonly proposalOrigin: OpalRuntimeOriginCaller;2828 readonly proposal: FrameSupportPreimagesBounded;2829 readonly enactmentMoment: FrameSupportScheduleDispatchTime;2830 } & Struct;2831 readonly isPlaceDecisionDeposit: boolean;2832 readonly asPlaceDecisionDeposit: {2833 readonly index: u32;2834 } & Struct;2835 readonly isRefundDecisionDeposit: boolean;2836 readonly asRefundDecisionDeposit: {2837 readonly index: u32;2838 } & Struct;2839 readonly isCancel: boolean;2840 readonly asCancel: {2841 readonly index: u32;2842 } & Struct;2843 readonly isKill: boolean;2844 readonly asKill: {2845 readonly index: u32;2846 } & Struct;2847 readonly isNudgeReferendum: boolean;2848 readonly asNudgeReferendum: {2849 readonly index: u32;2850 } & Struct;2851 readonly isOneFewerDeciding: boolean;2852 readonly asOneFewerDeciding: {2853 readonly track: u16;2854 } & Struct;2855 readonly isRefundSubmissionDeposit: boolean;2856 readonly asRefundSubmissionDeposit: {2857 readonly index: u32;2858 } & Struct;2859 readonly isSetMetadata: boolean;2860 readonly asSetMetadata: {2861 readonly index: u32;2862 readonly maybeHash: Option<H256>;2863 } & Struct;2864 readonly type: 'Submit' | 'PlaceDecisionDeposit' | 'RefundDecisionDeposit' | 'Cancel' | 'Kill' | 'NudgeReferendum' | 'OneFewerDeciding' | 'RefundSubmissionDeposit' | 'SetMetadata';2865}28662867/** @name PalletReferendaCurve */2868export interface PalletReferendaCurve extends Enum {2869 readonly isLinearDecreasing: boolean;2870 readonly asLinearDecreasing: {2871 readonly length: Perbill;2872 readonly floor: Perbill;2873 readonly ceil: Perbill;2874 } & Struct;2875 readonly isSteppedDecreasing: boolean;2876 readonly asSteppedDecreasing: {2877 readonly begin: Perbill;2878 readonly end: Perbill;2879 readonly step: Perbill;2880 readonly period: Perbill;2881 } & Struct;2882 readonly isReciprocal: boolean;2883 readonly asReciprocal: {2884 readonly factor: i64;2885 readonly xOffset: i64;2886 readonly yOffset: i64;2887 } & Struct;2888 readonly type: 'LinearDecreasing' | 'SteppedDecreasing' | 'Reciprocal';2889}28902891/** @name PalletReferendaDecidingStatus */2892export interface PalletReferendaDecidingStatus extends Struct {2893 readonly since: u32;2894 readonly confirming: Option<u32>;2895}28962897/** @name PalletReferendaDeposit */2898export interface PalletReferendaDeposit extends Struct {2899 readonly who: AccountId32;2900 readonly amount: u128;2901}29022903/** @name PalletReferendaError */2904export interface PalletReferendaError extends Enum {2905 readonly isNotOngoing: boolean;2906 readonly isHasDeposit: boolean;2907 readonly isBadTrack: boolean;2908 readonly isFull: boolean;2909 readonly isQueueEmpty: boolean;2910 readonly isBadReferendum: boolean;2911 readonly isNothingToDo: boolean;2912 readonly isNoTrack: boolean;2913 readonly isUnfinished: boolean;2914 readonly isNoPermission: boolean;2915 readonly isNoDeposit: boolean;2916 readonly isBadStatus: boolean;2917 readonly isPreimageNotExist: boolean;2918 readonly type: 'NotOngoing' | 'HasDeposit' | 'BadTrack' | 'Full' | 'QueueEmpty' | 'BadReferendum' | 'NothingToDo' | 'NoTrack' | 'Unfinished' | 'NoPermission' | 'NoDeposit' | 'BadStatus' | 'PreimageNotExist';2919}29202921/** @name PalletReferendaEvent */2922export interface PalletReferendaEvent extends Enum {2923 readonly isSubmitted: boolean;2924 readonly asSubmitted: {2925 readonly index: u32;2926 readonly track: u16;2927 readonly proposal: FrameSupportPreimagesBounded;2928 } & Struct;2929 readonly isDecisionDepositPlaced: boolean;2930 readonly asDecisionDepositPlaced: {2931 readonly index: u32;2932 readonly who: AccountId32;2933 readonly amount: u128;2934 } & Struct;2935 readonly isDecisionDepositRefunded: boolean;2936 readonly asDecisionDepositRefunded: {2937 readonly index: u32;2938 readonly who: AccountId32;2939 readonly amount: u128;2940 } & Struct;2941 readonly isDepositSlashed: boolean;2942 readonly asDepositSlashed: {2943 readonly who: AccountId32;2944 readonly amount: u128;2945 } & Struct;2946 readonly isDecisionStarted: boolean;2947 readonly asDecisionStarted: {2948 readonly index: u32;2949 readonly track: u16;2950 readonly proposal: FrameSupportPreimagesBounded;2951 readonly tally: PalletRankedCollectiveTally;2952 } & Struct;2953 readonly isConfirmStarted: boolean;2954 readonly asConfirmStarted: {2955 readonly index: u32;2956 } & Struct;2957 readonly isConfirmAborted: boolean;2958 readonly asConfirmAborted: {2959 readonly index: u32;2960 } & Struct;2961 readonly isConfirmed: boolean;2962 readonly asConfirmed: {2963 readonly index: u32;2964 readonly tally: PalletRankedCollectiveTally;2965 } & Struct;2966 readonly isApproved: boolean;2967 readonly asApproved: {2968 readonly index: u32;2969 } & Struct;2970 readonly isRejected: boolean;2971 readonly asRejected: {2972 readonly index: u32;2973 readonly tally: PalletRankedCollectiveTally;2974 } & Struct;2975 readonly isTimedOut: boolean;2976 readonly asTimedOut: {2977 readonly index: u32;2978 readonly tally: PalletRankedCollectiveTally;2979 } & Struct;2980 readonly isCancelled: boolean;2981 readonly asCancelled: {2982 readonly index: u32;2983 readonly tally: PalletRankedCollectiveTally;2984 } & Struct;2985 readonly isKilled: boolean;2986 readonly asKilled: {2987 readonly index: u32;2988 readonly tally: PalletRankedCollectiveTally;2989 } & Struct;2990 readonly isSubmissionDepositRefunded: boolean;2991 readonly asSubmissionDepositRefunded: {2992 readonly index: u32;2993 readonly who: AccountId32;2994 readonly amount: u128;2995 } & Struct;2996 readonly isMetadataSet: boolean;2997 readonly asMetadataSet: {2998 readonly index: u32;2999 readonly hash_: H256;3000 } & Struct;3001 readonly isMetadataCleared: boolean;3002 readonly asMetadataCleared: {3003 readonly index: u32;3004 readonly hash_: H256;3005 } & Struct;3006 readonly type: 'Submitted' | 'DecisionDepositPlaced' | 'DecisionDepositRefunded' | 'DepositSlashed' | 'DecisionStarted' | 'ConfirmStarted' | 'ConfirmAborted' | 'Confirmed' | 'Approved' | 'Rejected' | 'TimedOut' | 'Cancelled' | 'Killed' | 'SubmissionDepositRefunded' | 'MetadataSet' | 'MetadataCleared';3007}30083009/** @name PalletReferendaReferendumInfo */3010export interface PalletReferendaReferendumInfo extends Enum {3011 readonly isOngoing: boolean;3012 readonly asOngoing: PalletReferendaReferendumStatus;3013 readonly isApproved: boolean;3014 readonly asApproved: ITuple<[u32, Option<PalletReferendaDeposit>, Option<PalletReferendaDeposit>]>;3015 readonly isRejected: boolean;3016 readonly asRejected: ITuple<[u32, Option<PalletReferendaDeposit>, Option<PalletReferendaDeposit>]>;3017 readonly isCancelled: boolean;3018 readonly asCancelled: ITuple<[u32, Option<PalletReferendaDeposit>, Option<PalletReferendaDeposit>]>;3019 readonly isTimedOut: boolean;3020 readonly asTimedOut: ITuple<[u32, Option<PalletReferendaDeposit>, Option<PalletReferendaDeposit>]>;3021 readonly isKilled: boolean;3022 readonly asKilled: u32;3023 readonly type: 'Ongoing' | 'Approved' | 'Rejected' | 'Cancelled' | 'TimedOut' | 'Killed';3024}30253026/** @name PalletReferendaReferendumStatus */3027export interface PalletReferendaReferendumStatus extends Struct {3028 readonly track: u16;3029 readonly origin: OpalRuntimeOriginCaller;3030 readonly proposal: FrameSupportPreimagesBounded;3031 readonly enactment: FrameSupportScheduleDispatchTime;3032 readonly submitted: u32;3033 readonly submissionDeposit: PalletReferendaDeposit;3034 readonly decisionDeposit: Option<PalletReferendaDeposit>;3035 readonly deciding: Option<PalletReferendaDecidingStatus>;3036 readonly tally: PalletRankedCollectiveTally;3037 readonly inQueue: bool;3038 readonly alarm: Option<ITuple<[u32, ITuple<[u32, u32]>]>>;3039}30403041/** @name PalletReferendaTrackInfo */3042export interface PalletReferendaTrackInfo extends Struct {3043 readonly name: Text;3044 readonly maxDeciding: u32;3045 readonly decisionDeposit: u128;3046 readonly preparePeriod: u32;3047 readonly decisionPeriod: u32;3048 readonly confirmPeriod: u32;3049 readonly minEnactmentPeriod: u32;3050 readonly minApproval: PalletReferendaCurve;3051 readonly minSupport: PalletReferendaCurve;3052}30533054/** @name PalletRefungibleError */3055export interface PalletRefungibleError extends Enum {3056 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3057 readonly isWrongRefungiblePieces: boolean;3058 readonly isRepartitionWhileNotOwningAllPieces: boolean;3059 readonly isRefungibleDisallowsNesting: boolean;3060 readonly isSettingPropertiesNotAllowed: boolean;3061 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3062}30633064/** @name PalletSchedulerCall */3065export interface PalletSchedulerCall extends Enum {3066 readonly isSchedule: boolean;3067 readonly asSchedule: {3068 readonly when: u32;3069 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3070 readonly priority: u8;3071 readonly call: Call;3072 } & Struct;3073 readonly isCancel: boolean;3074 readonly asCancel: {3075 readonly when: u32;3076 readonly index: u32;3077 } & Struct;3078 readonly isScheduleNamed: boolean;3079 readonly asScheduleNamed: {3080 readonly id: U8aFixed;3081 readonly when: u32;3082 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3083 readonly priority: u8;3084 readonly call: Call;3085 } & Struct;3086 readonly isCancelNamed: boolean;3087 readonly asCancelNamed: {3088 readonly id: U8aFixed;3089 } & Struct;3090 readonly isScheduleAfter: boolean;3091 readonly asScheduleAfter: {3092 readonly after: u32;3093 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3094 readonly priority: u8;3095 readonly call: Call;3096 } & Struct;3097 readonly isScheduleNamedAfter: boolean;3098 readonly asScheduleNamedAfter: {3099 readonly id: U8aFixed;3100 readonly after: u32;3101 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3102 readonly priority: u8;3103 readonly call: Call;3104 } & Struct;3105 readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter';3106}31073108/** @name PalletSchedulerError */3109export interface PalletSchedulerError extends Enum {3110 readonly isFailedToSchedule: boolean;3111 readonly isNotFound: boolean;3112 readonly isTargetBlockNumberInPast: boolean;3113 readonly isRescheduleNoChange: boolean;3114 readonly isNamed: boolean;3115 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange' | 'Named';3116}31173118/** @name PalletSchedulerEvent */3119export interface PalletSchedulerEvent extends Enum {3120 readonly isScheduled: boolean;3121 readonly asScheduled: {3122 readonly when: u32;3123 readonly index: u32;3124 } & Struct;3125 readonly isCanceled: boolean;3126 readonly asCanceled: {3127 readonly when: u32;3128 readonly index: u32;3129 } & Struct;3130 readonly isDispatched: boolean;3131 readonly asDispatched: {3132 readonly task: ITuple<[u32, u32]>;3133 readonly id: Option<U8aFixed>;3134 readonly result: Result<Null, SpRuntimeDispatchError>;3135 } & Struct;3136 readonly isCallUnavailable: boolean;3137 readonly asCallUnavailable: {3138 readonly task: ITuple<[u32, u32]>;3139 readonly id: Option<U8aFixed>;3140 } & Struct;3141 readonly isPeriodicFailed: boolean;3142 readonly asPeriodicFailed: {3143 readonly task: ITuple<[u32, u32]>;3144 readonly id: Option<U8aFixed>;3145 } & Struct;3146 readonly isPermanentlyOverweight: boolean;3147 readonly asPermanentlyOverweight: {3148 readonly task: ITuple<[u32, u32]>;3149 readonly id: Option<U8aFixed>;3150 } & Struct;3151 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallUnavailable' | 'PeriodicFailed' | 'PermanentlyOverweight';3152}31533154/** @name PalletSchedulerScheduled */3155export interface PalletSchedulerScheduled extends Struct {3156 readonly maybeId: Option<U8aFixed>;3157 readonly priority: u8;3158 readonly call: FrameSupportPreimagesBounded;3159 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3160 readonly origin: OpalRuntimeOriginCaller;3161}31623163/** @name PalletSessionCall */3164export interface PalletSessionCall extends Enum {3165 readonly isSetKeys: boolean;3166 readonly asSetKeys: {3167 readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;3168 readonly proof: Bytes;3169 } & Struct;3170 readonly isPurgeKeys: boolean;3171 readonly type: 'SetKeys' | 'PurgeKeys';3172}31733174/** @name PalletSessionError */3175export interface PalletSessionError extends Enum {3176 readonly isInvalidProof: boolean;3177 readonly isNoAssociatedValidatorId: boolean;3178 readonly isDuplicatedKey: boolean;3179 readonly isNoKeys: boolean;3180 readonly isNoAccount: boolean;3181 readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';3182}31833184/** @name PalletSessionEvent */3185export interface PalletSessionEvent extends Enum {3186 readonly isNewSession: boolean;3187 readonly asNewSession: {3188 readonly sessionIndex: u32;3189 } & Struct;3190 readonly type: 'NewSession';3191}31923193/** @name PalletStateTrieMigrationCall */3194export interface PalletStateTrieMigrationCall extends Enum {3195 readonly isControlAutoMigration: boolean;3196 readonly asControlAutoMigration: {3197 readonly maybeConfig: Option<PalletStateTrieMigrationMigrationLimits>;3198 } & Struct;3199 readonly isContinueMigrate: boolean;3200 readonly asContinueMigrate: {3201 readonly limits: PalletStateTrieMigrationMigrationLimits;3202 readonly realSizeUpper: u32;3203 readonly witnessTask: PalletStateTrieMigrationMigrationTask;3204 } & Struct;3205 readonly isMigrateCustomTop: boolean;3206 readonly asMigrateCustomTop: {3207 readonly keys_: Vec<Bytes>;3208 readonly witnessSize: u32;3209 } & Struct;3210 readonly isMigrateCustomChild: boolean;3211 readonly asMigrateCustomChild: {3212 readonly root: Bytes;3213 readonly childKeys: Vec<Bytes>;3214 readonly totalSize: u32;3215 } & Struct;3216 readonly isSetSignedMaxLimits: boolean;3217 readonly asSetSignedMaxLimits: {3218 readonly limits: PalletStateTrieMigrationMigrationLimits;3219 } & Struct;3220 readonly isForceSetProgress: boolean;3221 readonly asForceSetProgress: {3222 readonly progressTop: PalletStateTrieMigrationProgress;3223 readonly progressChild: PalletStateTrieMigrationProgress;3224 } & Struct;3225 readonly type: 'ControlAutoMigration' | 'ContinueMigrate' | 'MigrateCustomTop' | 'MigrateCustomChild' | 'SetSignedMaxLimits' | 'ForceSetProgress';3226}32273228/** @name PalletStateTrieMigrationError */3229export interface PalletStateTrieMigrationError extends Enum {3230 readonly isMaxSignedLimits: boolean;3231 readonly isKeyTooLong: boolean;3232 readonly isNotEnoughFunds: boolean;3233 readonly isBadWitness: boolean;3234 readonly isSignedMigrationNotAllowed: boolean;3235 readonly isBadChildRoot: boolean;3236 readonly type: 'MaxSignedLimits' | 'KeyTooLong' | 'NotEnoughFunds' | 'BadWitness' | 'SignedMigrationNotAllowed' | 'BadChildRoot';3237}32383239/** @name PalletStateTrieMigrationEvent */3240export interface PalletStateTrieMigrationEvent extends Enum {3241 readonly isMigrated: boolean;3242 readonly asMigrated: {3243 readonly top: u32;3244 readonly child: u32;3245 readonly compute: PalletStateTrieMigrationMigrationCompute;3246 } & Struct;3247 readonly isSlashed: boolean;3248 readonly asSlashed: {3249 readonly who: AccountId32;3250 readonly amount: u128;3251 } & Struct;3252 readonly isAutoMigrationFinished: boolean;3253 readonly isHalted: boolean;3254 readonly asHalted: {3255 readonly error: PalletStateTrieMigrationError;3256 } & Struct;3257 readonly type: 'Migrated' | 'Slashed' | 'AutoMigrationFinished' | 'Halted';3258}32593260/** @name PalletStateTrieMigrationMigrationCompute */3261export interface PalletStateTrieMigrationMigrationCompute extends Enum {3262 readonly isSigned: boolean;3263 readonly isAuto: boolean;3264 readonly type: 'Signed' | 'Auto';3265}32663267/** @name PalletStateTrieMigrationMigrationLimits */3268export interface PalletStateTrieMigrationMigrationLimits extends Struct {3269 readonly size_: u32;3270 readonly item: u32;3271}32723273/** @name PalletStateTrieMigrationMigrationTask */3274export interface PalletStateTrieMigrationMigrationTask extends Struct {3275 readonly progressTop: PalletStateTrieMigrationProgress;3276 readonly progressChild: PalletStateTrieMigrationProgress;3277 readonly size_: u32;3278 readonly topItems: u32;3279 readonly childItems: u32;3280}32813282/** @name PalletStateTrieMigrationProgress */3283export interface PalletStateTrieMigrationProgress extends Enum {3284 readonly isToStart: boolean;3285 readonly isLastKey: boolean;3286 readonly asLastKey: Bytes;3287 readonly isComplete: boolean;3288 readonly type: 'ToStart' | 'LastKey' | 'Complete';3289}32903291/** @name PalletStructureCall */3292export interface PalletStructureCall extends Null {}32933294/** @name PalletStructureError */3295export interface PalletStructureError extends Enum {3296 readonly isOuroborosDetected: boolean;3297 readonly isDepthLimit: boolean;3298 readonly isBreadthLimit: boolean;3299 readonly isTokenNotFound: boolean;3300 readonly isCantNestTokenUnderCollection: boolean;3301 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound' | 'CantNestTokenUnderCollection';3302}33033304/** @name PalletStructureEvent */3305export interface PalletStructureEvent extends Enum {3306 readonly isExecuted: boolean;3307 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;3308 readonly type: 'Executed';3309}33103311/** @name PalletSudoCall */3312export interface PalletSudoCall extends Enum {3313 readonly isSudo: boolean;3314 readonly asSudo: {3315 readonly call: Call;3316 } & Struct;3317 readonly isSudoUncheckedWeight: boolean;3318 readonly asSudoUncheckedWeight: {3319 readonly call: Call;3320 readonly weight: SpWeightsWeightV2Weight;3321 } & Struct;3322 readonly isSetKey: boolean;3323 readonly asSetKey: {3324 readonly new_: MultiAddress;3325 } & Struct;3326 readonly isSudoAs: boolean;3327 readonly asSudoAs: {3328 readonly who: MultiAddress;3329 readonly call: Call;3330 } & Struct;3331 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';3332}33333334/** @name PalletSudoError */3335export interface PalletSudoError extends Enum {3336 readonly isRequireSudo: boolean;3337 readonly type: 'RequireSudo';3338}33393340/** @name PalletSudoEvent */3341export interface PalletSudoEvent extends Enum {3342 readonly isSudid: boolean;3343 readonly asSudid: {3344 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;3345 } & Struct;3346 readonly isKeyChanged: boolean;3347 readonly asKeyChanged: {3348 readonly oldSudoer: Option<AccountId32>;3349 } & Struct;3350 readonly isSudoAsDone: boolean;3351 readonly asSudoAsDone: {3352 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;3353 } & Struct;3354 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';3355}33563357/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */3358export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}33593360/** @name PalletTestUtilsCall */3361export interface PalletTestUtilsCall extends Enum {3362 readonly isEnable: boolean;3363 readonly isSetTestValue: boolean;3364 readonly asSetTestValue: {3365 readonly value: u32;3366 } & Struct;3367 readonly isSetTestValueAndRollback: boolean;3368 readonly asSetTestValueAndRollback: {3369 readonly value: u32;3370 } & Struct;3371 readonly isIncTestValue: boolean;3372 readonly isJustTakeFee: boolean;3373 readonly isBatchAll: boolean;3374 readonly asBatchAll: {3375 readonly calls: Vec<Call>;3376 } & Struct;3377 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';3378}33793380/** @name PalletTestUtilsError */3381export interface PalletTestUtilsError extends Enum {3382 readonly isTestPalletDisabled: boolean;3383 readonly isTriggerRollback: boolean;3384 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3385}33863387/** @name PalletTestUtilsEvent */3388export interface PalletTestUtilsEvent extends Enum {3389 readonly isValueIsSet: boolean;3390 readonly isShouldRollback: boolean;3391 readonly isBatchCompleted: boolean;3392 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';3393}33943395/** @name PalletTimestampCall */3396export interface PalletTimestampCall extends Enum {3397 readonly isSet: boolean;3398 readonly asSet: {3399 readonly now: Compact<u64>;3400 } & Struct;3401 readonly type: 'Set';3402}34033404/** @name PalletTransactionPaymentEvent */3405export interface PalletTransactionPaymentEvent extends Enum {3406 readonly isTransactionFeePaid: boolean;3407 readonly asTransactionFeePaid: {3408 readonly who: AccountId32;3409 readonly actualFee: u128;3410 readonly tip: u128;3411 } & Struct;3412 readonly type: 'TransactionFeePaid';3413}34143415/** @name PalletTransactionPaymentReleases */3416export interface PalletTransactionPaymentReleases extends Enum {3417 readonly isV1Ancient: boolean;3418 readonly isV2: boolean;3419 readonly type: 'V1Ancient' | 'V2';3420}34213422/** @name PalletTreasuryCall */3423export interface PalletTreasuryCall extends Enum {3424 readonly isProposeSpend: boolean;3425 readonly asProposeSpend: {3426 readonly value: Compact<u128>;3427 readonly beneficiary: MultiAddress;3428 } & Struct;3429 readonly isRejectProposal: boolean;3430 readonly asRejectProposal: {3431 readonly proposalId: Compact<u32>;3432 } & Struct;3433 readonly isApproveProposal: boolean;3434 readonly asApproveProposal: {3435 readonly proposalId: Compact<u32>;3436 } & Struct;3437 readonly isSpend: boolean;3438 readonly asSpend: {3439 readonly amount: Compact<u128>;3440 readonly beneficiary: MultiAddress;3441 } & Struct;3442 readonly isRemoveApproval: boolean;3443 readonly asRemoveApproval: {3444 readonly proposalId: Compact<u32>;3445 } & Struct;3446 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';3447}34483449/** @name PalletTreasuryError */3450export interface PalletTreasuryError extends Enum {3451 readonly isInsufficientProposersBalance: boolean;3452 readonly isInvalidIndex: boolean;3453 readonly isTooManyApprovals: boolean;3454 readonly isInsufficientPermission: boolean;3455 readonly isProposalNotApproved: boolean;3456 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';3457}34583459/** @name PalletTreasuryEvent */3460export interface PalletTreasuryEvent extends Enum {3461 readonly isProposed: boolean;3462 readonly asProposed: {3463 readonly proposalIndex: u32;3464 } & Struct;3465 readonly isSpending: boolean;3466 readonly asSpending: {3467 readonly budgetRemaining: u128;3468 } & Struct;3469 readonly isAwarded: boolean;3470 readonly asAwarded: {3471 readonly proposalIndex: u32;3472 readonly award: u128;3473 readonly account: AccountId32;3474 } & Struct;3475 readonly isRejected: boolean;3476 readonly asRejected: {3477 readonly proposalIndex: u32;3478 readonly slashed: u128;3479 } & Struct;3480 readonly isBurnt: boolean;3481 readonly asBurnt: {3482 readonly burntFunds: u128;3483 } & Struct;3484 readonly isRollover: boolean;3485 readonly asRollover: {3486 readonly rolloverBalance: u128;3487 } & Struct;3488 readonly isDeposit: boolean;3489 readonly asDeposit: {3490 readonly value: u128;3491 } & Struct;3492 readonly isSpendApproved: boolean;3493 readonly asSpendApproved: {3494 readonly proposalIndex: u32;3495 readonly amount: u128;3496 readonly beneficiary: AccountId32;3497 } & Struct;3498 readonly isUpdatedInactive: boolean;3499 readonly asUpdatedInactive: {3500 readonly reactivated: u128;3501 readonly deactivated: u128;3502 } & Struct;3503 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive';3504}35053506/** @name PalletTreasuryProposal */3507export interface PalletTreasuryProposal extends Struct {3508 readonly proposer: AccountId32;3509 readonly value: u128;3510 readonly beneficiary: AccountId32;3511 readonly bond: u128;3512}35133514/** @name PalletUniqueCall */3515export interface PalletUniqueCall extends Enum {3516 readonly isCreateCollection: boolean;3517 readonly asCreateCollection: {3518 readonly collectionName: Vec<u16>;3519 readonly collectionDescription: Vec<u16>;3520 readonly tokenPrefix: Bytes;3521 readonly mode: UpDataStructsCollectionMode;3522 } & Struct;3523 readonly isCreateCollectionEx: boolean;3524 readonly asCreateCollectionEx: {3525 readonly data: UpDataStructsCreateCollectionData;3526 } & Struct;3527 readonly isDestroyCollection: boolean;3528 readonly asDestroyCollection: {3529 readonly collectionId: u32;3530 } & Struct;3531 readonly isAddToAllowList: boolean;3532 readonly asAddToAllowList: {3533 readonly collectionId: u32;3534 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;3535 } & Struct;3536 readonly isRemoveFromAllowList: boolean;3537 readonly asRemoveFromAllowList: {3538 readonly collectionId: u32;3539 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;3540 } & Struct;3541 readonly isChangeCollectionOwner: boolean;3542 readonly asChangeCollectionOwner: {3543 readonly collectionId: u32;3544 readonly newOwner: AccountId32;3545 } & Struct;3546 readonly isAddCollectionAdmin: boolean;3547 readonly asAddCollectionAdmin: {3548 readonly collectionId: u32;3549 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;3550 } & Struct;3551 readonly isRemoveCollectionAdmin: boolean;3552 readonly asRemoveCollectionAdmin: {3553 readonly collectionId: u32;3554 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;3555 } & Struct;3556 readonly isSetCollectionSponsor: boolean;3557 readonly asSetCollectionSponsor: {3558 readonly collectionId: u32;3559 readonly newSponsor: AccountId32;3560 } & Struct;3561 readonly isConfirmSponsorship: boolean;3562 readonly asConfirmSponsorship: {3563 readonly collectionId: u32;3564 } & Struct;3565 readonly isRemoveCollectionSponsor: boolean;3566 readonly asRemoveCollectionSponsor: {3567 readonly collectionId: u32;3568 } & Struct;3569 readonly isCreateItem: boolean;3570 readonly asCreateItem: {3571 readonly collectionId: u32;3572 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3573 readonly data: UpDataStructsCreateItemData;3574 } & Struct;3575 readonly isCreateMultipleItems: boolean;3576 readonly asCreateMultipleItems: {3577 readonly collectionId: u32;3578 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3579 readonly itemsData: Vec<UpDataStructsCreateItemData>;3580 } & Struct;3581 readonly isSetCollectionProperties: boolean;3582 readonly asSetCollectionProperties: {3583 readonly collectionId: u32;3584 readonly properties: Vec<UpDataStructsProperty>;3585 } & Struct;3586 readonly isDeleteCollectionProperties: boolean;3587 readonly asDeleteCollectionProperties: {3588 readonly collectionId: u32;3589 readonly propertyKeys: Vec<Bytes>;3590 } & Struct;3591 readonly isSetTokenProperties: boolean;3592 readonly asSetTokenProperties: {3593 readonly collectionId: u32;3594 readonly tokenId: u32;3595 readonly properties: Vec<UpDataStructsProperty>;3596 } & Struct;3597 readonly isDeleteTokenProperties: boolean;3598 readonly asDeleteTokenProperties: {3599 readonly collectionId: u32;3600 readonly tokenId: u32;3601 readonly propertyKeys: Vec<Bytes>;3602 } & Struct;3603 readonly isSetTokenPropertyPermissions: boolean;3604 readonly asSetTokenPropertyPermissions: {3605 readonly collectionId: u32;3606 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3607 } & Struct;3608 readonly isCreateMultipleItemsEx: boolean;3609 readonly asCreateMultipleItemsEx: {3610 readonly collectionId: u32;3611 readonly data: UpDataStructsCreateItemExData;3612 } & Struct;3613 readonly isSetTransfersEnabledFlag: boolean;3614 readonly asSetTransfersEnabledFlag: {3615 readonly collectionId: u32;3616 readonly value: bool;3617 } & Struct;3618 readonly isBurnItem: boolean;3619 readonly asBurnItem: {3620 readonly collectionId: u32;3621 readonly itemId: u32;3622 readonly value: u128;3623 } & Struct;3624 readonly isBurnFrom: boolean;3625 readonly asBurnFrom: {3626 readonly collectionId: u32;3627 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;3628 readonly itemId: u32;3629 readonly value: u128;3630 } & Struct;3631 readonly isTransfer: boolean;3632 readonly asTransfer: {3633 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;3634 readonly collectionId: u32;3635 readonly itemId: u32;3636 readonly value: u128;3637 } & Struct;3638 readonly isApprove: boolean;3639 readonly asApprove: {3640 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;3641 readonly collectionId: u32;3642 readonly itemId: u32;3643 readonly amount: u128;3644 } & Struct;3645 readonly isApproveFrom: boolean;3646 readonly asApproveFrom: {3647 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;3648 readonly to: PalletEvmAccountBasicCrossAccountIdRepr;3649 readonly collectionId: u32;3650 readonly itemId: u32;3651 readonly amount: u128;3652 } & Struct;3653 readonly isTransferFrom: boolean;3654 readonly asTransferFrom: {3655 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;3656 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;3657 readonly collectionId: u32;3658 readonly itemId: u32;3659 readonly value: u128;3660 } & Struct;3661 readonly isSetCollectionLimits: boolean;3662 readonly asSetCollectionLimits: {3663 readonly collectionId: u32;3664 readonly newLimit: UpDataStructsCollectionLimits;3665 } & Struct;3666 readonly isSetCollectionPermissions: boolean;3667 readonly asSetCollectionPermissions: {3668 readonly collectionId: u32;3669 readonly newPermission: UpDataStructsCollectionPermissions;3670 } & Struct;3671 readonly isRepartition: boolean;3672 readonly asRepartition: {3673 readonly collectionId: u32;3674 readonly tokenId: u32;3675 readonly amount: u128;3676 } & Struct;3677 readonly isSetAllowanceForAll: boolean;3678 readonly asSetAllowanceForAll: {3679 readonly collectionId: u32;3680 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;3681 readonly approve: bool;3682 } & Struct;3683 readonly isForceRepairCollection: boolean;3684 readonly asForceRepairCollection: {3685 readonly collectionId: u32;3686 } & Struct;3687 readonly isForceRepairItem: boolean;3688 readonly asForceRepairItem: {3689 readonly collectionId: u32;3690 readonly itemId: u32;3691 } & Struct;3692 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'ApproveFrom' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';3693}36943695/** @name PalletUniqueError */3696export interface PalletUniqueError extends Enum {3697 readonly isCollectionDecimalPointLimitExceeded: boolean;3698 readonly isEmptyArgument: boolean;3699 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3700 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3701}37023703/** @name PalletXcmCall */3704export interface PalletXcmCall extends Enum {3705 readonly isSend: boolean;3706 readonly asSend: {3707 readonly dest: XcmVersionedMultiLocation;3708 readonly message: XcmVersionedXcm;3709 } & Struct;3710 readonly isTeleportAssets: boolean;3711 readonly asTeleportAssets: {3712 readonly dest: XcmVersionedMultiLocation;3713 readonly beneficiary: XcmVersionedMultiLocation;3714 readonly assets: XcmVersionedMultiAssets;3715 readonly feeAssetItem: u32;3716 } & Struct;3717 readonly isReserveTransferAssets: boolean;3718 readonly asReserveTransferAssets: {3719 readonly dest: XcmVersionedMultiLocation;3720 readonly beneficiary: XcmVersionedMultiLocation;3721 readonly assets: XcmVersionedMultiAssets;3722 readonly feeAssetItem: u32;3723 } & Struct;3724 readonly isExecute: boolean;3725 readonly asExecute: {3726 readonly message: XcmVersionedXcm;3727 readonly maxWeight: SpWeightsWeightV2Weight;3728 } & Struct;3729 readonly isForceXcmVersion: boolean;3730 readonly asForceXcmVersion: {3731 readonly location: XcmV3MultiLocation;3732 readonly xcmVersion: u32;3733 } & Struct;3734 readonly isForceDefaultXcmVersion: boolean;3735 readonly asForceDefaultXcmVersion: {3736 readonly maybeXcmVersion: Option<u32>;3737 } & Struct;3738 readonly isForceSubscribeVersionNotify: boolean;3739 readonly asForceSubscribeVersionNotify: {3740 readonly location: XcmVersionedMultiLocation;3741 } & Struct;3742 readonly isForceUnsubscribeVersionNotify: boolean;3743 readonly asForceUnsubscribeVersionNotify: {3744 readonly location: XcmVersionedMultiLocation;3745 } & Struct;3746 readonly isLimitedReserveTransferAssets: boolean;3747 readonly asLimitedReserveTransferAssets: {3748 readonly dest: XcmVersionedMultiLocation;3749 readonly beneficiary: XcmVersionedMultiLocation;3750 readonly assets: XcmVersionedMultiAssets;3751 readonly feeAssetItem: u32;3752 readonly weightLimit: XcmV3WeightLimit;3753 } & Struct;3754 readonly isLimitedTeleportAssets: boolean;3755 readonly asLimitedTeleportAssets: {3756 readonly dest: XcmVersionedMultiLocation;3757 readonly beneficiary: XcmVersionedMultiLocation;3758 readonly assets: XcmVersionedMultiAssets;3759 readonly feeAssetItem: u32;3760 readonly weightLimit: XcmV3WeightLimit;3761 } & Struct;3762 readonly isForceSuspension: boolean;3763 readonly asForceSuspension: {3764 readonly suspended: bool;3765 } & Struct;3766 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets' | 'ForceSuspension';3767}37683769/** @name PalletXcmError */3770export interface PalletXcmError extends Enum {3771 readonly isUnreachable: boolean;3772 readonly isSendFailure: boolean;3773 readonly isFiltered: boolean;3774 readonly isUnweighableMessage: boolean;3775 readonly isDestinationNotInvertible: boolean;3776 readonly isEmpty: boolean;3777 readonly isCannotReanchor: boolean;3778 readonly isTooManyAssets: boolean;3779 readonly isInvalidOrigin: boolean;3780 readonly isBadVersion: boolean;3781 readonly isBadLocation: boolean;3782 readonly isNoSubscription: boolean;3783 readonly isAlreadySubscribed: boolean;3784 readonly isInvalidAsset: boolean;3785 readonly isLowBalance: boolean;3786 readonly isTooManyLocks: boolean;3787 readonly isAccountNotSovereign: boolean;3788 readonly isFeesNotMet: boolean;3789 readonly isLockNotFound: boolean;3790 readonly isInUse: boolean;3791 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed' | 'InvalidAsset' | 'LowBalance' | 'TooManyLocks' | 'AccountNotSovereign' | 'FeesNotMet' | 'LockNotFound' | 'InUse';3792}37933794/** @name PalletXcmEvent */3795export interface PalletXcmEvent extends Enum {3796 readonly isAttempted: boolean;3797 readonly asAttempted: XcmV3TraitsOutcome;3798 readonly isSent: boolean;3799 readonly asSent: ITuple<[XcmV3MultiLocation, XcmV3MultiLocation, XcmV3Xcm]>;3800 readonly isUnexpectedResponse: boolean;3801 readonly asUnexpectedResponse: ITuple<[XcmV3MultiLocation, u64]>;3802 readonly isResponseReady: boolean;3803 readonly asResponseReady: ITuple<[u64, XcmV3Response]>;3804 readonly isNotified: boolean;3805 readonly asNotified: ITuple<[u64, u8, u8]>;3806 readonly isNotifyOverweight: boolean;3807 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;3808 readonly isNotifyDispatchError: boolean;3809 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;3810 readonly isNotifyDecodeFailed: boolean;3811 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;3812 readonly isInvalidResponder: boolean;3813 readonly asInvalidResponder: ITuple<[XcmV3MultiLocation, u64, Option<XcmV3MultiLocation>]>;3814 readonly isInvalidResponderVersion: boolean;3815 readonly asInvalidResponderVersion: ITuple<[XcmV3MultiLocation, u64]>;3816 readonly isResponseTaken: boolean;3817 readonly asResponseTaken: u64;3818 readonly isAssetsTrapped: boolean;3819 readonly asAssetsTrapped: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;3820 readonly isVersionChangeNotified: boolean;3821 readonly asVersionChangeNotified: ITuple<[XcmV3MultiLocation, u32, XcmV3MultiassetMultiAssets]>;3822 readonly isSupportedVersionChanged: boolean;3823 readonly asSupportedVersionChanged: ITuple<[XcmV3MultiLocation, u32]>;3824 readonly isNotifyTargetSendFail: boolean;3825 readonly asNotifyTargetSendFail: ITuple<[XcmV3MultiLocation, u64, XcmV3TraitsError]>;3826 readonly isNotifyTargetMigrationFail: boolean;3827 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;3828 readonly isInvalidQuerierVersion: boolean;3829 readonly asInvalidQuerierVersion: ITuple<[XcmV3MultiLocation, u64]>;3830 readonly isInvalidQuerier: boolean;3831 readonly asInvalidQuerier: ITuple<[XcmV3MultiLocation, u64, XcmV3MultiLocation, Option<XcmV3MultiLocation>]>;3832 readonly isVersionNotifyStarted: boolean;3833 readonly asVersionNotifyStarted: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;3834 readonly isVersionNotifyRequested: boolean;3835 readonly asVersionNotifyRequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;3836 readonly isVersionNotifyUnrequested: boolean;3837 readonly asVersionNotifyUnrequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;3838 readonly isFeesPaid: boolean;3839 readonly asFeesPaid: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;3840 readonly isAssetsClaimed: boolean;3841 readonly asAssetsClaimed: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;3842 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'InvalidQuerierVersion' | 'InvalidQuerier' | 'VersionNotifyStarted' | 'VersionNotifyRequested' | 'VersionNotifyUnrequested' | 'FeesPaid' | 'AssetsClaimed';3843}38443845/** @name PalletXcmOrigin */3846export interface PalletXcmOrigin extends Enum {3847 readonly isXcm: boolean;3848 readonly asXcm: XcmV3MultiLocation;3849 readonly isResponse: boolean;3850 readonly asResponse: XcmV3MultiLocation;3851 readonly type: 'Xcm' | 'Response';3852}38533854/** @name PalletXcmQueryStatus */3855export interface PalletXcmQueryStatus extends Enum {3856 readonly isPending: boolean;3857 readonly asPending: {3858 readonly responder: XcmVersionedMultiLocation;3859 readonly maybeMatchQuerier: Option<XcmVersionedMultiLocation>;3860 readonly maybeNotify: Option<ITuple<[u8, u8]>>;3861 readonly timeout: u32;3862 } & Struct;3863 readonly isVersionNotifier: boolean;3864 readonly asVersionNotifier: {3865 readonly origin: XcmVersionedMultiLocation;3866 readonly isActive: bool;3867 } & Struct;3868 readonly isReady: boolean;3869 readonly asReady: {3870 readonly response: XcmVersionedResponse;3871 readonly at: u32;3872 } & Struct;3873 readonly type: 'Pending' | 'VersionNotifier' | 'Ready';3874}38753876/** @name PalletXcmRemoteLockedFungibleRecord */3877export interface PalletXcmRemoteLockedFungibleRecord extends Struct {3878 readonly amount: u128;3879 readonly owner: XcmVersionedMultiLocation;3880 readonly locker: XcmVersionedMultiLocation;3881 readonly consumers: Vec<ITuple<[Null, u128]>>;3882}38833884/** @name PalletXcmVersionMigrationStage */3885export interface PalletXcmVersionMigrationStage extends Enum {3886 readonly isMigrateSupportedVersion: boolean;3887 readonly isMigrateVersionNotifiers: boolean;3888 readonly isNotifyCurrentTargets: boolean;3889 readonly asNotifyCurrentTargets: Option<Bytes>;3890 readonly isMigrateAndNotifyOldTargets: boolean;3891 readonly type: 'MigrateSupportedVersion' | 'MigrateVersionNotifiers' | 'NotifyCurrentTargets' | 'MigrateAndNotifyOldTargets';3892}38933894/** @name ParachainInfoCall */3895export interface ParachainInfoCall extends Null {}38963897/** @name PhantomTypeUpDataStructs */3898export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpPovEstimateRpcPovInfo]>> {}38993900/** @name PolkadotCorePrimitivesInboundDownwardMessage */3901export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {3902 readonly sentAt: u32;3903 readonly msg: Bytes;3904}39053906/** @name PolkadotCorePrimitivesInboundHrmpMessage */3907export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {3908 readonly sentAt: u32;3909 readonly data: Bytes;3910}39113912/** @name PolkadotCorePrimitivesOutboundHrmpMessage */3913export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {3914 readonly recipient: u32;3915 readonly data: Bytes;3916}39173918/** @name PolkadotParachainPrimitivesXcmpMessageFormat */3919export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3920 readonly isConcatenatedVersionedXcm: boolean;3921 readonly isConcatenatedEncodedBlob: boolean;3922 readonly isSignals: boolean;3923 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3924}39253926/** @name PolkadotPrimitivesV4AbridgedHostConfiguration */3927export interface PolkadotPrimitivesV4AbridgedHostConfiguration extends Struct {3928 readonly maxCodeSize: u32;3929 readonly maxHeadDataSize: u32;3930 readonly maxUpwardQueueCount: u32;3931 readonly maxUpwardQueueSize: u32;3932 readonly maxUpwardMessageSize: u32;3933 readonly maxUpwardMessageNumPerCandidate: u32;3934 readonly hrmpMaxMessageNumPerCandidate: u32;3935 readonly validationUpgradeCooldown: u32;3936 readonly validationUpgradeDelay: u32;3937}39383939/** @name PolkadotPrimitivesV4AbridgedHrmpChannel */3940export interface PolkadotPrimitivesV4AbridgedHrmpChannel extends Struct {3941 readonly maxCapacity: u32;3942 readonly maxTotalSize: u32;3943 readonly maxMessageSize: u32;3944 readonly msgCount: u32;3945 readonly totalSize: u32;3946 readonly mqcHead: Option<H256>;3947}39483949/** @name PolkadotPrimitivesV4PersistedValidationData */3950export interface PolkadotPrimitivesV4PersistedValidationData extends Struct {3951 readonly parentHead: Bytes;3952 readonly relayParentNumber: u32;3953 readonly relayParentStorageRoot: H256;3954 readonly maxPovSize: u32;3955}39563957/** @name PolkadotPrimitivesV4UpgradeRestriction */3958export interface PolkadotPrimitivesV4UpgradeRestriction extends Enum {3959 readonly isPresent: boolean;3960 readonly type: 'Present';3961}39623963/** @name SpArithmeticArithmeticError */3964export interface SpArithmeticArithmeticError extends Enum {3965 readonly isUnderflow: boolean;3966 readonly isOverflow: boolean;3967 readonly isDivisionByZero: boolean;3968 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';3969}39703971/** @name SpConsensusAuraSr25519AppSr25519Public */3972export interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}39733974/** @name SpCoreCryptoKeyTypeId */3975export interface SpCoreCryptoKeyTypeId extends U8aFixed {}39763977/** @name SpCoreEcdsaSignature */3978export interface SpCoreEcdsaSignature extends U8aFixed {}39793980/** @name SpCoreEd25519Signature */3981export interface SpCoreEd25519Signature extends U8aFixed {}39823983/** @name SpCoreSr25519Public */3984export interface SpCoreSr25519Public extends U8aFixed {}39853986/** @name SpCoreSr25519Signature */3987export interface SpCoreSr25519Signature extends U8aFixed {}39883989/** @name SpCoreVoid */3990export interface SpCoreVoid extends Null {}39913992/** @name SpRuntimeDigest */3993export interface SpRuntimeDigest extends Struct {3994 readonly logs: Vec<SpRuntimeDigestDigestItem>;3995}39963997/** @name SpRuntimeDigestDigestItem */3998export interface SpRuntimeDigestDigestItem extends Enum {3999 readonly isOther: boolean;4000 readonly asOther: Bytes;4001 readonly isConsensus: boolean;4002 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;4003 readonly isSeal: boolean;4004 readonly asSeal: ITuple<[U8aFixed, Bytes]>;4005 readonly isPreRuntime: boolean;4006 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;4007 readonly isRuntimeEnvironmentUpdated: boolean;4008 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';4009}40104011/** @name SpRuntimeDispatchError */4012export interface SpRuntimeDispatchError extends Enum {4013 readonly isOther: boolean;4014 readonly isCannotLookup: boolean;4015 readonly isBadOrigin: boolean;4016 readonly isModule: boolean;4017 readonly asModule: SpRuntimeModuleError;4018 readonly isConsumerRemaining: boolean;4019 readonly isNoProviders: boolean;4020 readonly isTooManyConsumers: boolean;4021 readonly isToken: boolean;4022 readonly asToken: SpRuntimeTokenError;4023 readonly isArithmetic: boolean;4024 readonly asArithmetic: SpArithmeticArithmeticError;4025 readonly isTransactional: boolean;4026 readonly asTransactional: SpRuntimeTransactionalError;4027 readonly isExhausted: boolean;4028 readonly isCorruption: boolean;4029 readonly isUnavailable: boolean;4030 readonly isRootNotAllowed: boolean;4031 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable' | 'RootNotAllowed';4032}40334034/** @name SpRuntimeModuleError */4035export interface SpRuntimeModuleError extends Struct {4036 readonly index: u8;4037 readonly error: U8aFixed;4038}40394040/** @name SpRuntimeMultiSignature */4041export interface SpRuntimeMultiSignature extends Enum {4042 readonly isEd25519: boolean;4043 readonly asEd25519: SpCoreEd25519Signature;4044 readonly isSr25519: boolean;4045 readonly asSr25519: SpCoreSr25519Signature;4046 readonly isEcdsa: boolean;4047 readonly asEcdsa: SpCoreEcdsaSignature;4048 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';4049}40504051/** @name SpRuntimeTokenError */4052export interface SpRuntimeTokenError extends Enum {4053 readonly isFundsUnavailable: boolean;4054 readonly isOnlyProvider: boolean;4055 readonly isBelowMinimum: boolean;4056 readonly isCannotCreate: boolean;4057 readonly isUnknownAsset: boolean;4058 readonly isFrozen: boolean;4059 readonly isUnsupported: boolean;4060 readonly isCannotCreateHold: boolean;4061 readonly isNotExpendable: boolean;4062 readonly isBlocked: boolean;4063 readonly type: 'FundsUnavailable' | 'OnlyProvider' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported' | 'CannotCreateHold' | 'NotExpendable' | 'Blocked';4064}40654066/** @name SpRuntimeTransactionalError */4067export interface SpRuntimeTransactionalError extends Enum {4068 readonly isLimitReached: boolean;4069 readonly isNoLayer: boolean;4070 readonly type: 'LimitReached' | 'NoLayer';4071}40724073/** @name SpRuntimeTransactionValidityInvalidTransaction */4074export interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {4075 readonly isCall: boolean;4076 readonly isPayment: boolean;4077 readonly isFuture: boolean;4078 readonly isStale: boolean;4079 readonly isBadProof: boolean;4080 readonly isAncientBirthBlock: boolean;4081 readonly isExhaustsResources: boolean;4082 readonly isCustom: boolean;4083 readonly asCustom: u8;4084 readonly isBadMandatory: boolean;4085 readonly isMandatoryValidation: boolean;4086 readonly isBadSigner: boolean;4087 readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';4088}40894090/** @name SpRuntimeTransactionValidityTransactionValidityError */4091export interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {4092 readonly isInvalid: boolean;4093 readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;4094 readonly isUnknown: boolean;4095 readonly asUnknown: SpRuntimeTransactionValidityUnknownTransaction;4096 readonly type: 'Invalid' | 'Unknown';4097}40984099/** @name SpRuntimeTransactionValidityUnknownTransaction */4100export interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {4101 readonly isCannotLookup: boolean;4102 readonly isNoUnsignedValidator: boolean;4103 readonly isCustom: boolean;4104 readonly asCustom: u8;4105 readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';4106}41074108/** @name SpTrieStorageProof */4109export interface SpTrieStorageProof extends Struct {4110 readonly trieNodes: BTreeSet<Bytes>;4111}41124113/** @name SpVersionRuntimeVersion */4114export interface SpVersionRuntimeVersion extends Struct {4115 readonly specName: Text;4116 readonly implName: Text;4117 readonly authoringVersion: u32;4118 readonly specVersion: u32;4119 readonly implVersion: u32;4120 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;4121 readonly transactionVersion: u32;4122 readonly stateVersion: u8;4123}41244125/** @name SpWeightsRuntimeDbWeight */4126export interface SpWeightsRuntimeDbWeight extends Struct {4127 readonly read: u64;4128 readonly write: u64;4129}41304131/** @name SpWeightsWeightV2Weight */4132export interface SpWeightsWeightV2Weight extends Struct {4133 readonly refTime: Compact<u64>;4134 readonly proofSize: Compact<u64>;4135}41364137/** @name UpDataStructsAccessMode */4138export interface UpDataStructsAccessMode extends Enum {4139 readonly isNormal: boolean;4140 readonly isAllowList: boolean;4141 readonly type: 'Normal' | 'AllowList';4142}41434144/** @name UpDataStructsCollection */4145export interface UpDataStructsCollection extends Struct {4146 readonly owner: AccountId32;4147 readonly mode: UpDataStructsCollectionMode;4148 readonly name: Vec<u16>;4149 readonly description: Vec<u16>;4150 readonly tokenPrefix: Bytes;4151 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;4152 readonly limits: UpDataStructsCollectionLimits;4153 readonly permissions: UpDataStructsCollectionPermissions;4154 readonly flags: U8aFixed;4155}41564157/** @name UpDataStructsCollectionLimits */4158export interface UpDataStructsCollectionLimits extends Struct {4159 readonly accountTokenOwnershipLimit: Option<u32>;4160 readonly sponsoredDataSize: Option<u32>;4161 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;4162 readonly tokenLimit: Option<u32>;4163 readonly sponsorTransferTimeout: Option<u32>;4164 readonly sponsorApproveTimeout: Option<u32>;4165 readonly ownerCanTransfer: Option<bool>;4166 readonly ownerCanDestroy: Option<bool>;4167 readonly transfersEnabled: Option<bool>;4168}41694170/** @name UpDataStructsCollectionMode */4171export interface UpDataStructsCollectionMode extends Enum {4172 readonly isNft: boolean;4173 readonly isFungible: boolean;4174 readonly asFungible: u8;4175 readonly isReFungible: boolean;4176 readonly type: 'Nft' | 'Fungible' | 'ReFungible';4177}41784179/** @name UpDataStructsCollectionPermissions */4180export interface UpDataStructsCollectionPermissions extends Struct {4181 readonly access: Option<UpDataStructsAccessMode>;4182 readonly mintMode: Option<bool>;4183 readonly nesting: Option<UpDataStructsNestingPermissions>;4184}41854186/** @name UpDataStructsCollectionStats */4187export interface UpDataStructsCollectionStats extends Struct {4188 readonly created: u32;4189 readonly destroyed: u32;4190 readonly alive: u32;4191}41924193/** @name UpDataStructsCreateCollectionData */4194export interface UpDataStructsCreateCollectionData extends Struct {4195 readonly mode: UpDataStructsCollectionMode;4196 readonly access: Option<UpDataStructsAccessMode>;4197 readonly name: Vec<u16>;4198 readonly description: Vec<u16>;4199 readonly tokenPrefix: Bytes;4200 readonly limits: Option<UpDataStructsCollectionLimits>;4201 readonly permissions: Option<UpDataStructsCollectionPermissions>;4202 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;4203 readonly properties: Vec<UpDataStructsProperty>;4204 readonly adminList: Vec<PalletEvmAccountBasicCrossAccountIdRepr>;4205 readonly pendingSponsor: Option<PalletEvmAccountBasicCrossAccountIdRepr>;4206 readonly flags: U8aFixed;4207}42084209/** @name UpDataStructsCreateFungibleData */4210export interface UpDataStructsCreateFungibleData extends Struct {4211 readonly value: u128;4212}42134214/** @name UpDataStructsCreateItemData */4215export interface UpDataStructsCreateItemData extends Enum {4216 readonly isNft: boolean;4217 readonly asNft: UpDataStructsCreateNftData;4218 readonly isFungible: boolean;4219 readonly asFungible: UpDataStructsCreateFungibleData;4220 readonly isReFungible: boolean;4221 readonly asReFungible: UpDataStructsCreateReFungibleData;4222 readonly type: 'Nft' | 'Fungible' | 'ReFungible';4223}42244225/** @name UpDataStructsCreateItemExData */4226export interface UpDataStructsCreateItemExData extends Enum {4227 readonly isNft: boolean;4228 readonly asNft: Vec<UpDataStructsCreateNftExData>;4229 readonly isFungible: boolean;4230 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr,u128>;4231 readonly isRefungibleMultipleItems: boolean;4232 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;4233 readonly isRefungibleMultipleOwners: boolean;4234 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;4235 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';4236}42374238/** @name UpDataStructsCreateNftData */4239export interface UpDataStructsCreateNftData extends Struct {4240 readonly properties: Vec<UpDataStructsProperty>;4241}42424243/** @name UpDataStructsCreateNftExData */4244export interface UpDataStructsCreateNftExData extends Struct {4245 readonly properties: Vec<UpDataStructsProperty>;4246 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;4247}42484249/** @name UpDataStructsCreateReFungibleData */4250export interface UpDataStructsCreateReFungibleData extends Struct {4251 readonly pieces: u128;4252 readonly properties: Vec<UpDataStructsProperty>;4253}42544255/** @name UpDataStructsCreateRefungibleExMultipleOwners */4256export interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {4257 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;4258 readonly properties: Vec<UpDataStructsProperty>;4259}42604261/** @name UpDataStructsCreateRefungibleExSingleOwner */4262export interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {4263 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;4264 readonly pieces: u128;4265 readonly properties: Vec<UpDataStructsProperty>;4266}42674268/** @name UpDataStructsNestingPermissions */4269export interface UpDataStructsNestingPermissions extends Struct {4270 readonly tokenOwner: bool;4271 readonly collectionAdmin: bool;4272 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;4273}42744275/** @name UpDataStructsOwnerRestrictedSet */4276export interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}42774278/** @name UpDataStructsProperties */4279export interface UpDataStructsProperties extends Struct {4280 readonly map: UpDataStructsPropertiesMapBoundedVec;4281 readonly consumedSpace: u32;4282 readonly reserved: u32;4283}42844285/** @name UpDataStructsPropertiesMapBoundedVec */4286export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}42874288/** @name UpDataStructsPropertiesMapPropertyPermission */4289export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}42904291/** @name UpDataStructsProperty */4292export interface UpDataStructsProperty extends Struct {4293 readonly key: Bytes;4294 readonly value: Bytes;4295}42964297/** @name UpDataStructsPropertyKeyPermission */4298export interface UpDataStructsPropertyKeyPermission extends Struct {4299 readonly key: Bytes;4300 readonly permission: UpDataStructsPropertyPermission;4301}43024303/** @name UpDataStructsPropertyPermission */4304export interface UpDataStructsPropertyPermission extends Struct {4305 readonly mutable: bool;4306 readonly collectionAdmin: bool;4307 readonly tokenOwner: bool;4308}43094310/** @name UpDataStructsPropertyScope */4311export interface UpDataStructsPropertyScope extends Enum {4312 readonly isNone: boolean;4313 readonly isRmrk: boolean;4314 readonly type: 'None' | 'Rmrk';4315}43164317/** @name UpDataStructsRpcCollection */4318export interface UpDataStructsRpcCollection extends Struct {4319 readonly owner: AccountId32;4320 readonly mode: UpDataStructsCollectionMode;4321 readonly name: Vec<u16>;4322 readonly description: Vec<u16>;4323 readonly tokenPrefix: Bytes;4324 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;4325 readonly limits: UpDataStructsCollectionLimits;4326 readonly permissions: UpDataStructsCollectionPermissions;4327 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;4328 readonly properties: Vec<UpDataStructsProperty>;4329 readonly readOnly: bool;4330 readonly flags: UpDataStructsRpcCollectionFlags;4331}43324333/** @name UpDataStructsRpcCollectionFlags */4334export interface UpDataStructsRpcCollectionFlags extends Struct {4335 readonly foreign: bool;4336 readonly erc721metadata: bool;4337}43384339/** @name UpDataStructsSponsoringRateLimit */4340export interface UpDataStructsSponsoringRateLimit extends Enum {4341 readonly isSponsoringDisabled: boolean;4342 readonly isBlocks: boolean;4343 readonly asBlocks: u32;4344 readonly type: 'SponsoringDisabled' | 'Blocks';4345}43464347/** @name UpDataStructsSponsorshipStateAccountId32 */4348export interface UpDataStructsSponsorshipStateAccountId32 extends Enum {4349 readonly isDisabled: boolean;4350 readonly isUnconfirmed: boolean;4351 readonly asUnconfirmed: AccountId32;4352 readonly isConfirmed: boolean;4353 readonly asConfirmed: AccountId32;4354 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';4355}43564357/** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr */4358export interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {4359 readonly isDisabled: boolean;4360 readonly isUnconfirmed: boolean;4361 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;4362 readonly isConfirmed: boolean;4363 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;4364 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';4365}43664367/** @name UpDataStructsTokenChild */4368export interface UpDataStructsTokenChild extends Struct {4369 readonly token: u32;4370 readonly collection: u32;4371}43724373/** @name UpDataStructsTokenData */4374export interface UpDataStructsTokenData extends Struct {4375 readonly properties: Vec<UpDataStructsProperty>;4376 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;4377 readonly pieces: u128;4378}43794380/** @name UpPovEstimateRpcPovInfo */4381export interface UpPovEstimateRpcPovInfo extends Struct {4382 readonly proofSize: u64;4383 readonly compactProofSize: u64;4384 readonly compressedProofSize: u64;4385 readonly results: Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>;4386 readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;4387}43884389/** @name UpPovEstimateRpcTrieKeyValue */4390export interface UpPovEstimateRpcTrieKeyValue extends Struct {4391 readonly key: Bytes;4392 readonly value: Bytes;4393}43944395/** @name XcmDoubleEncoded */4396export interface XcmDoubleEncoded extends Struct {4397 readonly encoded: Bytes;4398}43994400/** @name XcmV2BodyId */4401export interface XcmV2BodyId extends Enum {4402 readonly isUnit: boolean;4403 readonly isNamed: boolean;4404 readonly asNamed: Bytes;4405 readonly isIndex: boolean;4406 readonly asIndex: Compact<u32>;4407 readonly isExecutive: boolean;4408 readonly isTechnical: boolean;4409 readonly isLegislative: boolean;4410 readonly isJudicial: boolean;4411 readonly isDefense: boolean;4412 readonly isAdministration: boolean;4413 readonly isTreasury: boolean;4414 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';4415}44164417/** @name XcmV2BodyPart */4418export interface XcmV2BodyPart extends Enum {4419 readonly isVoice: boolean;4420 readonly isMembers: boolean;4421 readonly asMembers: {4422 readonly count: Compact<u32>;4423 } & Struct;4424 readonly isFraction: boolean;4425 readonly asFraction: {4426 readonly nom: Compact<u32>;4427 readonly denom: Compact<u32>;4428 } & Struct;4429 readonly isAtLeastProportion: boolean;4430 readonly asAtLeastProportion: {4431 readonly nom: Compact<u32>;4432 readonly denom: Compact<u32>;4433 } & Struct;4434 readonly isMoreThanProportion: boolean;4435 readonly asMoreThanProportion: {4436 readonly nom: Compact<u32>;4437 readonly denom: Compact<u32>;4438 } & Struct;4439 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';4440}44414442/** @name XcmV2Instruction */4443export interface XcmV2Instruction extends Enum {4444 readonly isWithdrawAsset: boolean;4445 readonly asWithdrawAsset: XcmV2MultiassetMultiAssets;4446 readonly isReserveAssetDeposited: boolean;4447 readonly asReserveAssetDeposited: XcmV2MultiassetMultiAssets;4448 readonly isReceiveTeleportedAsset: boolean;4449 readonly asReceiveTeleportedAsset: XcmV2MultiassetMultiAssets;4450 readonly isQueryResponse: boolean;4451 readonly asQueryResponse: {4452 readonly queryId: Compact<u64>;4453 readonly response: XcmV2Response;4454 readonly maxWeight: Compact<u64>;4455 } & Struct;4456 readonly isTransferAsset: boolean;4457 readonly asTransferAsset: {4458 readonly assets: XcmV2MultiassetMultiAssets;4459 readonly beneficiary: XcmV2MultiLocation;4460 } & Struct;4461 readonly isTransferReserveAsset: boolean;4462 readonly asTransferReserveAsset: {4463 readonly assets: XcmV2MultiassetMultiAssets;4464 readonly dest: XcmV2MultiLocation;4465 readonly xcm: XcmV2Xcm;4466 } & Struct;4467 readonly isTransact: boolean;4468 readonly asTransact: {4469 readonly originType: XcmV2OriginKind;4470 readonly requireWeightAtMost: Compact<u64>;4471 readonly call: XcmDoubleEncoded;4472 } & Struct;4473 readonly isHrmpNewChannelOpenRequest: boolean;4474 readonly asHrmpNewChannelOpenRequest: {4475 readonly sender: Compact<u32>;4476 readonly maxMessageSize: Compact<u32>;4477 readonly maxCapacity: Compact<u32>;4478 } & Struct;4479 readonly isHrmpChannelAccepted: boolean;4480 readonly asHrmpChannelAccepted: {4481 readonly recipient: Compact<u32>;4482 } & Struct;4483 readonly isHrmpChannelClosing: boolean;4484 readonly asHrmpChannelClosing: {4485 readonly initiator: Compact<u32>;4486 readonly sender: Compact<u32>;4487 readonly recipient: Compact<u32>;4488 } & Struct;4489 readonly isClearOrigin: boolean;4490 readonly isDescendOrigin: boolean;4491 readonly asDescendOrigin: XcmV2MultilocationJunctions;4492 readonly isReportError: boolean;4493 readonly asReportError: {4494 readonly queryId: Compact<u64>;4495 readonly dest: XcmV2MultiLocation;4496 readonly maxResponseWeight: Compact<u64>;4497 } & Struct;4498 readonly isDepositAsset: boolean;4499 readonly asDepositAsset: {4500 readonly assets: XcmV2MultiassetMultiAssetFilter;4501 readonly maxAssets: Compact<u32>;4502 readonly beneficiary: XcmV2MultiLocation;4503 } & Struct;4504 readonly isDepositReserveAsset: boolean;4505 readonly asDepositReserveAsset: {4506 readonly assets: XcmV2MultiassetMultiAssetFilter;4507 readonly maxAssets: Compact<u32>;4508 readonly dest: XcmV2MultiLocation;4509 readonly xcm: XcmV2Xcm;4510 } & Struct;4511 readonly isExchangeAsset: boolean;4512 readonly asExchangeAsset: {4513 readonly give: XcmV2MultiassetMultiAssetFilter;4514 readonly receive: XcmV2MultiassetMultiAssets;4515 } & Struct;4516 readonly isInitiateReserveWithdraw: boolean;4517 readonly asInitiateReserveWithdraw: {4518 readonly assets: XcmV2MultiassetMultiAssetFilter;4519 readonly reserve: XcmV2MultiLocation;4520 readonly xcm: XcmV2Xcm;4521 } & Struct;4522 readonly isInitiateTeleport: boolean;4523 readonly asInitiateTeleport: {4524 readonly assets: XcmV2MultiassetMultiAssetFilter;4525 readonly dest: XcmV2MultiLocation;4526 readonly xcm: XcmV2Xcm;4527 } & Struct;4528 readonly isQueryHolding: boolean;4529 readonly asQueryHolding: {4530 readonly queryId: Compact<u64>;4531 readonly dest: XcmV2MultiLocation;4532 readonly assets: XcmV2MultiassetMultiAssetFilter;4533 readonly maxResponseWeight: Compact<u64>;4534 } & Struct;4535 readonly isBuyExecution: boolean;4536 readonly asBuyExecution: {4537 readonly fees: XcmV2MultiAsset;4538 readonly weightLimit: XcmV2WeightLimit;4539 } & Struct;4540 readonly isRefundSurplus: boolean;4541 readonly isSetErrorHandler: boolean;4542 readonly asSetErrorHandler: XcmV2Xcm;4543 readonly isSetAppendix: boolean;4544 readonly asSetAppendix: XcmV2Xcm;4545 readonly isClearError: boolean;4546 readonly isClaimAsset: boolean;4547 readonly asClaimAsset: {4548 readonly assets: XcmV2MultiassetMultiAssets;4549 readonly ticket: XcmV2MultiLocation;4550 } & Struct;4551 readonly isTrap: boolean;4552 readonly asTrap: Compact<u64>;4553 readonly isSubscribeVersion: boolean;4554 readonly asSubscribeVersion: {4555 readonly queryId: Compact<u64>;4556 readonly maxResponseWeight: Compact<u64>;4557 } & Struct;4558 readonly isUnsubscribeVersion: boolean;4559 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';4560}45614562/** @name XcmV2Junction */4563export interface XcmV2Junction extends Enum {4564 readonly isParachain: boolean;4565 readonly asParachain: Compact<u32>;4566 readonly isAccountId32: boolean;4567 readonly asAccountId32: {4568 readonly network: XcmV2NetworkId;4569 readonly id: U8aFixed;4570 } & Struct;4571 readonly isAccountIndex64: boolean;4572 readonly asAccountIndex64: {4573 readonly network: XcmV2NetworkId;4574 readonly index: Compact<u64>;4575 } & Struct;4576 readonly isAccountKey20: boolean;4577 readonly asAccountKey20: {4578 readonly network: XcmV2NetworkId;4579 readonly key: U8aFixed;4580 } & Struct;4581 readonly isPalletInstance: boolean;4582 readonly asPalletInstance: u8;4583 readonly isGeneralIndex: boolean;4584 readonly asGeneralIndex: Compact<u128>;4585 readonly isGeneralKey: boolean;4586 readonly asGeneralKey: Bytes;4587 readonly isOnlyChild: boolean;4588 readonly isPlurality: boolean;4589 readonly asPlurality: {4590 readonly id: XcmV2BodyId;4591 readonly part: XcmV2BodyPart;4592 } & Struct;4593 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';4594}45954596/** @name XcmV2MultiAsset */4597export interface XcmV2MultiAsset extends Struct {4598 readonly id: XcmV2MultiassetAssetId;4599 readonly fun: XcmV2MultiassetFungibility;4600}46014602/** @name XcmV2MultiassetAssetId */4603export interface XcmV2MultiassetAssetId extends Enum {4604 readonly isConcrete: boolean;4605 readonly asConcrete: XcmV2MultiLocation;4606 readonly isAbstract: boolean;4607 readonly asAbstract: Bytes;4608 readonly type: 'Concrete' | 'Abstract';4609}46104611/** @name XcmV2MultiassetAssetInstance */4612export interface XcmV2MultiassetAssetInstance extends Enum {4613 readonly isUndefined: boolean;4614 readonly isIndex: boolean;4615 readonly asIndex: Compact<u128>;4616 readonly isArray4: boolean;4617 readonly asArray4: U8aFixed;4618 readonly isArray8: boolean;4619 readonly asArray8: U8aFixed;4620 readonly isArray16: boolean;4621 readonly asArray16: U8aFixed;4622 readonly isArray32: boolean;4623 readonly asArray32: U8aFixed;4624 readonly isBlob: boolean;4625 readonly asBlob: Bytes;4626 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';4627}46284629/** @name XcmV2MultiassetFungibility */4630export interface XcmV2MultiassetFungibility extends Enum {4631 readonly isFungible: boolean;4632 readonly asFungible: Compact<u128>;4633 readonly isNonFungible: boolean;4634 readonly asNonFungible: XcmV2MultiassetAssetInstance;4635 readonly type: 'Fungible' | 'NonFungible';4636}46374638/** @name XcmV2MultiassetMultiAssetFilter */4639export interface XcmV2MultiassetMultiAssetFilter extends Enum {4640 readonly isDefinite: boolean;4641 readonly asDefinite: XcmV2MultiassetMultiAssets;4642 readonly isWild: boolean;4643 readonly asWild: XcmV2MultiassetWildMultiAsset;4644 readonly type: 'Definite' | 'Wild';4645}46464647/** @name XcmV2MultiassetMultiAssets */4648export interface XcmV2MultiassetMultiAssets extends Vec<XcmV2MultiAsset> {}46494650/** @name XcmV2MultiassetWildFungibility */4651export interface XcmV2MultiassetWildFungibility extends Enum {4652 readonly isFungible: boolean;4653 readonly isNonFungible: boolean;4654 readonly type: 'Fungible' | 'NonFungible';4655}46564657/** @name XcmV2MultiassetWildMultiAsset */4658export interface XcmV2MultiassetWildMultiAsset extends Enum {4659 readonly isAll: boolean;4660 readonly isAllOf: boolean;4661 readonly asAllOf: {4662 readonly id: XcmV2MultiassetAssetId;4663 readonly fun: XcmV2MultiassetWildFungibility;4664 } & Struct;4665 readonly type: 'All' | 'AllOf';4666}46674668/** @name XcmV2MultiLocation */4669export interface XcmV2MultiLocation extends Struct {4670 readonly parents: u8;4671 readonly interior: XcmV2MultilocationJunctions;4672}46734674/** @name XcmV2MultilocationJunctions */4675export interface XcmV2MultilocationJunctions extends Enum {4676 readonly isHere: boolean;4677 readonly isX1: boolean;4678 readonly asX1: XcmV2Junction;4679 readonly isX2: boolean;4680 readonly asX2: ITuple<[XcmV2Junction, XcmV2Junction]>;4681 readonly isX3: boolean;4682 readonly asX3: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction]>;4683 readonly isX4: boolean;4684 readonly asX4: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;4685 readonly isX5: boolean;4686 readonly asX5: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;4687 readonly isX6: boolean;4688 readonly asX6: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;4689 readonly isX7: boolean;4690 readonly asX7: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;4691 readonly isX8: boolean;4692 readonly asX8: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;4693 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';4694}46954696/** @name XcmV2NetworkId */4697export interface XcmV2NetworkId extends Enum {4698 readonly isAny: boolean;4699 readonly isNamed: boolean;4700 readonly asNamed: Bytes;4701 readonly isPolkadot: boolean;4702 readonly isKusama: boolean;4703 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';4704}47054706/** @name XcmV2OriginKind */4707export interface XcmV2OriginKind extends Enum {4708 readonly isNative: boolean;4709 readonly isSovereignAccount: boolean;4710 readonly isSuperuser: boolean;4711 readonly isXcm: boolean;4712 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';4713}47144715/** @name XcmV2Response */4716export interface XcmV2Response extends Enum {4717 readonly isNull: boolean;4718 readonly isAssets: boolean;4719 readonly asAssets: XcmV2MultiassetMultiAssets;4720 readonly isExecutionResult: boolean;4721 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;4722 readonly isVersion: boolean;4723 readonly asVersion: u32;4724 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';4725}47264727/** @name XcmV2TraitsError */4728export interface XcmV2TraitsError extends Enum {4729 readonly isOverflow: boolean;4730 readonly isUnimplemented: boolean;4731 readonly isUntrustedReserveLocation: boolean;4732 readonly isUntrustedTeleportLocation: boolean;4733 readonly isMultiLocationFull: boolean;4734 readonly isMultiLocationNotInvertible: boolean;4735 readonly isBadOrigin: boolean;4736 readonly isInvalidLocation: boolean;4737 readonly isAssetNotFound: boolean;4738 readonly isFailedToTransactAsset: boolean;4739 readonly isNotWithdrawable: boolean;4740 readonly isLocationCannotHold: boolean;4741 readonly isExceedsMaxMessageSize: boolean;4742 readonly isDestinationUnsupported: boolean;4743 readonly isTransport: boolean;4744 readonly isUnroutable: boolean;4745 readonly isUnknownClaim: boolean;4746 readonly isFailedToDecode: boolean;4747 readonly isMaxWeightInvalid: boolean;4748 readonly isNotHoldingFees: boolean;4749 readonly isTooExpensive: boolean;4750 readonly isTrap: boolean;4751 readonly asTrap: u64;4752 readonly isUnhandledXcmVersion: boolean;4753 readonly isWeightLimitReached: boolean;4754 readonly asWeightLimitReached: u64;4755 readonly isBarrier: boolean;4756 readonly isWeightNotComputable: boolean;4757 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';4758}47594760/** @name XcmV2WeightLimit */4761export interface XcmV2WeightLimit extends Enum {4762 readonly isUnlimited: boolean;4763 readonly isLimited: boolean;4764 readonly asLimited: Compact<u64>;4765 readonly type: 'Unlimited' | 'Limited';4766}47674768/** @name XcmV2Xcm */4769export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}47704771/** @name XcmV3Instruction */4772export interface XcmV3Instruction extends Enum {4773 readonly isWithdrawAsset: boolean;4774 readonly asWithdrawAsset: XcmV3MultiassetMultiAssets;4775 readonly isReserveAssetDeposited: boolean;4776 readonly asReserveAssetDeposited: XcmV3MultiassetMultiAssets;4777 readonly isReceiveTeleportedAsset: boolean;4778 readonly asReceiveTeleportedAsset: XcmV3MultiassetMultiAssets;4779 readonly isQueryResponse: boolean;4780 readonly asQueryResponse: {4781 readonly queryId: Compact<u64>;4782 readonly response: XcmV3Response;4783 readonly maxWeight: SpWeightsWeightV2Weight;4784 readonly querier: Option<XcmV3MultiLocation>;4785 } & Struct;4786 readonly isTransferAsset: boolean;4787 readonly asTransferAsset: {4788 readonly assets: XcmV3MultiassetMultiAssets;4789 readonly beneficiary: XcmV3MultiLocation;4790 } & Struct;4791 readonly isTransferReserveAsset: boolean;4792 readonly asTransferReserveAsset: {4793 readonly assets: XcmV3MultiassetMultiAssets;4794 readonly dest: XcmV3MultiLocation;4795 readonly xcm: XcmV3Xcm;4796 } & Struct;4797 readonly isTransact: boolean;4798 readonly asTransact: {4799 readonly originKind: XcmV2OriginKind;4800 readonly requireWeightAtMost: SpWeightsWeightV2Weight;4801 readonly call: XcmDoubleEncoded;4802 } & Struct;4803 readonly isHrmpNewChannelOpenRequest: boolean;4804 readonly asHrmpNewChannelOpenRequest: {4805 readonly sender: Compact<u32>;4806 readonly maxMessageSize: Compact<u32>;4807 readonly maxCapacity: Compact<u32>;4808 } & Struct;4809 readonly isHrmpChannelAccepted: boolean;4810 readonly asHrmpChannelAccepted: {4811 readonly recipient: Compact<u32>;4812 } & Struct;4813 readonly isHrmpChannelClosing: boolean;4814 readonly asHrmpChannelClosing: {4815 readonly initiator: Compact<u32>;4816 readonly sender: Compact<u32>;4817 readonly recipient: Compact<u32>;4818 } & Struct;4819 readonly isClearOrigin: boolean;4820 readonly isDescendOrigin: boolean;4821 readonly asDescendOrigin: XcmV3Junctions;4822 readonly isReportError: boolean;4823 readonly asReportError: XcmV3QueryResponseInfo;4824 readonly isDepositAsset: boolean;4825 readonly asDepositAsset: {4826 readonly assets: XcmV3MultiassetMultiAssetFilter;4827 readonly beneficiary: XcmV3MultiLocation;4828 } & Struct;4829 readonly isDepositReserveAsset: boolean;4830 readonly asDepositReserveAsset: {4831 readonly assets: XcmV3MultiassetMultiAssetFilter;4832 readonly dest: XcmV3MultiLocation;4833 readonly xcm: XcmV3Xcm;4834 } & Struct;4835 readonly isExchangeAsset: boolean;4836 readonly asExchangeAsset: {4837 readonly give: XcmV3MultiassetMultiAssetFilter;4838 readonly want: XcmV3MultiassetMultiAssets;4839 readonly maximal: bool;4840 } & Struct;4841 readonly isInitiateReserveWithdraw: boolean;4842 readonly asInitiateReserveWithdraw: {4843 readonly assets: XcmV3MultiassetMultiAssetFilter;4844 readonly reserve: XcmV3MultiLocation;4845 readonly xcm: XcmV3Xcm;4846 } & Struct;4847 readonly isInitiateTeleport: boolean;4848 readonly asInitiateTeleport: {4849 readonly assets: XcmV3MultiassetMultiAssetFilter;4850 readonly dest: XcmV3MultiLocation;4851 readonly xcm: XcmV3Xcm;4852 } & Struct;4853 readonly isReportHolding: boolean;4854 readonly asReportHolding: {4855 readonly responseInfo: XcmV3QueryResponseInfo;4856 readonly assets: XcmV3MultiassetMultiAssetFilter;4857 } & Struct;4858 readonly isBuyExecution: boolean;4859 readonly asBuyExecution: {4860 readonly fees: XcmV3MultiAsset;4861 readonly weightLimit: XcmV3WeightLimit;4862 } & Struct;4863 readonly isRefundSurplus: boolean;4864 readonly isSetErrorHandler: boolean;4865 readonly asSetErrorHandler: XcmV3Xcm;4866 readonly isSetAppendix: boolean;4867 readonly asSetAppendix: XcmV3Xcm;4868 readonly isClearError: boolean;4869 readonly isClaimAsset: boolean;4870 readonly asClaimAsset: {4871 readonly assets: XcmV3MultiassetMultiAssets;4872 readonly ticket: XcmV3MultiLocation;4873 } & Struct;4874 readonly isTrap: boolean;4875 readonly asTrap: Compact<u64>;4876 readonly isSubscribeVersion: boolean;4877 readonly asSubscribeVersion: {4878 readonly queryId: Compact<u64>;4879 readonly maxResponseWeight: SpWeightsWeightV2Weight;4880 } & Struct;4881 readonly isUnsubscribeVersion: boolean;4882 readonly isBurnAsset: boolean;4883 readonly asBurnAsset: XcmV3MultiassetMultiAssets;4884 readonly isExpectAsset: boolean;4885 readonly asExpectAsset: XcmV3MultiassetMultiAssets;4886 readonly isExpectOrigin: boolean;4887 readonly asExpectOrigin: Option<XcmV3MultiLocation>;4888 readonly isExpectError: boolean;4889 readonly asExpectError: Option<ITuple<[u32, XcmV3TraitsError]>>;4890 readonly isExpectTransactStatus: boolean;4891 readonly asExpectTransactStatus: XcmV3MaybeErrorCode;4892 readonly isQueryPallet: boolean;4893 readonly asQueryPallet: {4894 readonly moduleName: Bytes;4895 readonly responseInfo: XcmV3QueryResponseInfo;4896 } & Struct;4897 readonly isExpectPallet: boolean;4898 readonly asExpectPallet: {4899 readonly index: Compact<u32>;4900 readonly name: Bytes;4901 readonly moduleName: Bytes;4902 readonly crateMajor: Compact<u32>;4903 readonly minCrateMinor: Compact<u32>;4904 } & Struct;4905 readonly isReportTransactStatus: boolean;4906 readonly asReportTransactStatus: XcmV3QueryResponseInfo;4907 readonly isClearTransactStatus: boolean;4908 readonly isUniversalOrigin: boolean;4909 readonly asUniversalOrigin: XcmV3Junction;4910 readonly isExportMessage: boolean;4911 readonly asExportMessage: {4912 readonly network: XcmV3JunctionNetworkId;4913 readonly destination: XcmV3Junctions;4914 readonly xcm: XcmV3Xcm;4915 } & Struct;4916 readonly isLockAsset: boolean;4917 readonly asLockAsset: {4918 readonly asset: XcmV3MultiAsset;4919 readonly unlocker: XcmV3MultiLocation;4920 } & Struct;4921 readonly isUnlockAsset: boolean;4922 readonly asUnlockAsset: {4923 readonly asset: XcmV3MultiAsset;4924 readonly target: XcmV3MultiLocation;4925 } & Struct;4926 readonly isNoteUnlockable: boolean;4927 readonly asNoteUnlockable: {4928 readonly asset: XcmV3MultiAsset;4929 readonly owner: XcmV3MultiLocation;4930 } & Struct;4931 readonly isRequestUnlock: boolean;4932 readonly asRequestUnlock: {4933 readonly asset: XcmV3MultiAsset;4934 readonly locker: XcmV3MultiLocation;4935 } & Struct;4936 readonly isSetFeesMode: boolean;4937 readonly asSetFeesMode: {4938 readonly jitWithdraw: bool;4939 } & Struct;4940 readonly isSetTopic: boolean;4941 readonly asSetTopic: U8aFixed;4942 readonly isClearTopic: boolean;4943 readonly isAliasOrigin: boolean;4944 readonly asAliasOrigin: XcmV3MultiLocation;4945 readonly isUnpaidExecution: boolean;4946 readonly asUnpaidExecution: {4947 readonly weightLimit: XcmV3WeightLimit;4948 readonly checkOrigin: Option<XcmV3MultiLocation>;4949 } & Struct;4950 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'ReportHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion' | 'BurnAsset' | 'ExpectAsset' | 'ExpectOrigin' | 'ExpectError' | 'ExpectTransactStatus' | 'QueryPallet' | 'ExpectPallet' | 'ReportTransactStatus' | 'ClearTransactStatus' | 'UniversalOrigin' | 'ExportMessage' | 'LockAsset' | 'UnlockAsset' | 'NoteUnlockable' | 'RequestUnlock' | 'SetFeesMode' | 'SetTopic' | 'ClearTopic' | 'AliasOrigin' | 'UnpaidExecution';4951}49524953/** @name XcmV3Junction */4954export interface XcmV3Junction extends Enum {4955 readonly isParachain: boolean;4956 readonly asParachain: Compact<u32>;4957 readonly isAccountId32: boolean;4958 readonly asAccountId32: {4959 readonly network: Option<XcmV3JunctionNetworkId>;4960 readonly id: U8aFixed;4961 } & Struct;4962 readonly isAccountIndex64: boolean;4963 readonly asAccountIndex64: {4964 readonly network: Option<XcmV3JunctionNetworkId>;4965 readonly index: Compact<u64>;4966 } & Struct;4967 readonly isAccountKey20: boolean;4968 readonly asAccountKey20: {4969 readonly network: Option<XcmV3JunctionNetworkId>;4970 readonly key: U8aFixed;4971 } & Struct;4972 readonly isPalletInstance: boolean;4973 readonly asPalletInstance: u8;4974 readonly isGeneralIndex: boolean;4975 readonly asGeneralIndex: Compact<u128>;4976 readonly isGeneralKey: boolean;4977 readonly asGeneralKey: {4978 readonly length: u8;4979 readonly data: U8aFixed;4980 } & Struct;4981 readonly isOnlyChild: boolean;4982 readonly isPlurality: boolean;4983 readonly asPlurality: {4984 readonly id: XcmV3JunctionBodyId;4985 readonly part: XcmV3JunctionBodyPart;4986 } & Struct;4987 readonly isGlobalConsensus: boolean;4988 readonly asGlobalConsensus: XcmV3JunctionNetworkId;4989 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus';4990}49914992/** @name XcmV3JunctionBodyId */4993export interface XcmV3JunctionBodyId extends Enum {4994 readonly isUnit: boolean;4995 readonly isMoniker: boolean;4996 readonly asMoniker: U8aFixed;4997 readonly isIndex: boolean;4998 readonly asIndex: Compact<u32>;4999 readonly isExecutive: boolean;5000 readonly isTechnical: boolean;5001 readonly isLegislative: boolean;5002 readonly isJudicial: boolean;5003 readonly isDefense: boolean;5004 readonly isAdministration: boolean;5005 readonly isTreasury: boolean;5006 readonly type: 'Unit' | 'Moniker' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';5007}50085009/** @name XcmV3JunctionBodyPart */5010export interface XcmV3JunctionBodyPart extends Enum {5011 readonly isVoice: boolean;5012 readonly isMembers: boolean;5013 readonly asMembers: {5014 readonly count: Compact<u32>;5015 } & Struct;5016 readonly isFraction: boolean;5017 readonly asFraction: {5018 readonly nom: Compact<u32>;5019 readonly denom: Compact<u32>;5020 } & Struct;5021 readonly isAtLeastProportion: boolean;5022 readonly asAtLeastProportion: {5023 readonly nom: Compact<u32>;5024 readonly denom: Compact<u32>;5025 } & Struct;5026 readonly isMoreThanProportion: boolean;5027 readonly asMoreThanProportion: {5028 readonly nom: Compact<u32>;5029 readonly denom: Compact<u32>;5030 } & Struct;5031 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';5032}50335034/** @name XcmV3JunctionNetworkId */5035export interface XcmV3JunctionNetworkId extends Enum {5036 readonly isByGenesis: boolean;5037 readonly asByGenesis: U8aFixed;5038 readonly isByFork: boolean;5039 readonly asByFork: {5040 readonly blockNumber: u64;5041 readonly blockHash: U8aFixed;5042 } & Struct;5043 readonly isPolkadot: boolean;5044 readonly isKusama: boolean;5045 readonly isWestend: boolean;5046 readonly isRococo: boolean;5047 readonly isWococo: boolean;5048 readonly isEthereum: boolean;5049 readonly asEthereum: {5050 readonly chainId: Compact<u64>;5051 } & Struct;5052 readonly isBitcoinCore: boolean;5053 readonly isBitcoinCash: boolean;5054 readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash';5055}50565057/** @name XcmV3Junctions */5058export interface XcmV3Junctions extends Enum {5059 readonly isHere: boolean;5060 readonly isX1: boolean;5061 readonly asX1: XcmV3Junction;5062 readonly isX2: boolean;5063 readonly asX2: ITuple<[XcmV3Junction, XcmV3Junction]>;5064 readonly isX3: boolean;5065 readonly asX3: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction]>;5066 readonly isX4: boolean;5067 readonly asX4: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;5068 readonly isX5: boolean;5069 readonly asX5: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;5070 readonly isX6: boolean;5071 readonly asX6: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;5072 readonly isX7: boolean;5073 readonly asX7: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;5074 readonly isX8: boolean;5075 readonly asX8: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;5076 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';5077}50785079/** @name XcmV3MaybeErrorCode */5080export interface XcmV3MaybeErrorCode extends Enum {5081 readonly isSuccess: boolean;5082 readonly isError: boolean;5083 readonly asError: Bytes;5084 readonly isTruncatedError: boolean;5085 readonly asTruncatedError: Bytes;5086 readonly type: 'Success' | 'Error' | 'TruncatedError';5087}50885089/** @name XcmV3MultiAsset */5090export interface XcmV3MultiAsset extends Struct {5091 readonly id: XcmV3MultiassetAssetId;5092 readonly fun: XcmV3MultiassetFungibility;5093}50945095/** @name XcmV3MultiassetAssetId */5096export interface XcmV3MultiassetAssetId extends Enum {5097 readonly isConcrete: boolean;5098 readonly asConcrete: XcmV3MultiLocation;5099 readonly isAbstract: boolean;5100 readonly asAbstract: U8aFixed;5101 readonly type: 'Concrete' | 'Abstract';5102}51035104/** @name XcmV3MultiassetAssetInstance */5105export interface XcmV3MultiassetAssetInstance extends Enum {5106 readonly isUndefined: boolean;5107 readonly isIndex: boolean;5108 readonly asIndex: Compact<u128>;5109 readonly isArray4: boolean;5110 readonly asArray4: U8aFixed;5111 readonly isArray8: boolean;5112 readonly asArray8: U8aFixed;5113 readonly isArray16: boolean;5114 readonly asArray16: U8aFixed;5115 readonly isArray32: boolean;5116 readonly asArray32: U8aFixed;5117 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32';5118}51195120/** @name XcmV3MultiassetFungibility */5121export interface XcmV3MultiassetFungibility extends Enum {5122 readonly isFungible: boolean;5123 readonly asFungible: Compact<u128>;5124 readonly isNonFungible: boolean;5125 readonly asNonFungible: XcmV3MultiassetAssetInstance;5126 readonly type: 'Fungible' | 'NonFungible';5127}51285129/** @name XcmV3MultiassetMultiAssetFilter */5130export interface XcmV3MultiassetMultiAssetFilter extends Enum {5131 readonly isDefinite: boolean;5132 readonly asDefinite: XcmV3MultiassetMultiAssets;5133 readonly isWild: boolean;5134 readonly asWild: XcmV3MultiassetWildMultiAsset;5135 readonly type: 'Definite' | 'Wild';5136}51375138/** @name XcmV3MultiassetMultiAssets */5139export interface XcmV3MultiassetMultiAssets extends Vec<XcmV3MultiAsset> {}51405141/** @name XcmV3MultiassetWildFungibility */5142export interface XcmV3MultiassetWildFungibility extends Enum {5143 readonly isFungible: boolean;5144 readonly isNonFungible: boolean;5145 readonly type: 'Fungible' | 'NonFungible';5146}51475148/** @name XcmV3MultiassetWildMultiAsset */5149export interface XcmV3MultiassetWildMultiAsset extends Enum {5150 readonly isAll: boolean;5151 readonly isAllOf: boolean;5152 readonly asAllOf: {5153 readonly id: XcmV3MultiassetAssetId;5154 readonly fun: XcmV3MultiassetWildFungibility;5155 } & Struct;5156 readonly isAllCounted: boolean;5157 readonly asAllCounted: Compact<u32>;5158 readonly isAllOfCounted: boolean;5159 readonly asAllOfCounted: {5160 readonly id: XcmV3MultiassetAssetId;5161 readonly fun: XcmV3MultiassetWildFungibility;5162 readonly count: Compact<u32>;5163 } & Struct;5164 readonly type: 'All' | 'AllOf' | 'AllCounted' | 'AllOfCounted';5165}51665167/** @name XcmV3MultiLocation */5168export interface XcmV3MultiLocation extends Struct {5169 readonly parents: u8;5170 readonly interior: XcmV3Junctions;5171}51725173/** @name XcmV3PalletInfo */5174export interface XcmV3PalletInfo extends Struct {5175 readonly index: Compact<u32>;5176 readonly name: Bytes;5177 readonly moduleName: Bytes;5178 readonly major: Compact<u32>;5179 readonly minor: Compact<u32>;5180 readonly patch: Compact<u32>;5181}51825183/** @name XcmV3QueryResponseInfo */5184export interface XcmV3QueryResponseInfo extends Struct {5185 readonly destination: XcmV3MultiLocation;5186 readonly queryId: Compact<u64>;5187 readonly maxWeight: SpWeightsWeightV2Weight;5188}51895190/** @name XcmV3Response */5191export interface XcmV3Response extends Enum {5192 readonly isNull: boolean;5193 readonly isAssets: boolean;5194 readonly asAssets: XcmV3MultiassetMultiAssets;5195 readonly isExecutionResult: boolean;5196 readonly asExecutionResult: Option<ITuple<[u32, XcmV3TraitsError]>>;5197 readonly isVersion: boolean;5198 readonly asVersion: u32;5199 readonly isPalletsInfo: boolean;5200 readonly asPalletsInfo: Vec<XcmV3PalletInfo>;5201 readonly isDispatchResult: boolean;5202 readonly asDispatchResult: XcmV3MaybeErrorCode;5203 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version' | 'PalletsInfo' | 'DispatchResult';5204}52055206/** @name XcmV3TraitsError */5207export interface XcmV3TraitsError extends Enum {5208 readonly isOverflow: boolean;5209 readonly isUnimplemented: boolean;5210 readonly isUntrustedReserveLocation: boolean;5211 readonly isUntrustedTeleportLocation: boolean;5212 readonly isLocationFull: boolean;5213 readonly isLocationNotInvertible: boolean;5214 readonly isBadOrigin: boolean;5215 readonly isInvalidLocation: boolean;5216 readonly isAssetNotFound: boolean;5217 readonly isFailedToTransactAsset: boolean;5218 readonly isNotWithdrawable: boolean;5219 readonly isLocationCannotHold: boolean;5220 readonly isExceedsMaxMessageSize: boolean;5221 readonly isDestinationUnsupported: boolean;5222 readonly isTransport: boolean;5223 readonly isUnroutable: boolean;5224 readonly isUnknownClaim: boolean;5225 readonly isFailedToDecode: boolean;5226 readonly isMaxWeightInvalid: boolean;5227 readonly isNotHoldingFees: boolean;5228 readonly isTooExpensive: boolean;5229 readonly isTrap: boolean;5230 readonly asTrap: u64;5231 readonly isExpectationFalse: boolean;5232 readonly isPalletNotFound: boolean;5233 readonly isNameMismatch: boolean;5234 readonly isVersionIncompatible: boolean;5235 readonly isHoldingWouldOverflow: boolean;5236 readonly isExportError: boolean;5237 readonly isReanchorFailed: boolean;5238 readonly isNoDeal: boolean;5239 readonly isFeesNotMet: boolean;5240 readonly isLockError: boolean;5241 readonly isNoPermission: boolean;5242 readonly isUnanchored: boolean;5243 readonly isNotDepositable: boolean;5244 readonly isUnhandledXcmVersion: boolean;5245 readonly isWeightLimitReached: boolean;5246 readonly asWeightLimitReached: SpWeightsWeightV2Weight;5247 readonly isBarrier: boolean;5248 readonly isWeightNotComputable: boolean;5249 readonly isExceedsStackLimit: boolean;5250 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'LocationFull' | 'LocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'ExpectationFalse' | 'PalletNotFound' | 'NameMismatch' | 'VersionIncompatible' | 'HoldingWouldOverflow' | 'ExportError' | 'ReanchorFailed' | 'NoDeal' | 'FeesNotMet' | 'LockError' | 'NoPermission' | 'Unanchored' | 'NotDepositable' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable' | 'ExceedsStackLimit';5251}52525253/** @name XcmV3TraitsOutcome */5254export interface XcmV3TraitsOutcome extends Enum {5255 readonly isComplete: boolean;5256 readonly asComplete: SpWeightsWeightV2Weight;5257 readonly isIncomplete: boolean;5258 readonly asIncomplete: ITuple<[SpWeightsWeightV2Weight, XcmV3TraitsError]>;5259 readonly isError: boolean;5260 readonly asError: XcmV3TraitsError;5261 readonly type: 'Complete' | 'Incomplete' | 'Error';5262}52635264/** @name XcmV3WeightLimit */5265export interface XcmV3WeightLimit extends Enum {5266 readonly isUnlimited: boolean;5267 readonly isLimited: boolean;5268 readonly asLimited: SpWeightsWeightV2Weight;5269 readonly type: 'Unlimited' | 'Limited';5270}52715272/** @name XcmV3Xcm */5273export interface XcmV3Xcm extends Vec<XcmV3Instruction> {}52745275/** @name XcmVersionedAssetId */5276export interface XcmVersionedAssetId extends Enum {5277 readonly isV3: boolean;5278 readonly asV3: XcmV3MultiassetAssetId;5279 readonly type: 'V3';5280}52815282/** @name XcmVersionedMultiAsset */5283export interface XcmVersionedMultiAsset extends Enum {5284 readonly isV2: boolean;5285 readonly asV2: XcmV2MultiAsset;5286 readonly isV3: boolean;5287 readonly asV3: XcmV3MultiAsset;5288 readonly type: 'V2' | 'V3';5289}52905291/** @name XcmVersionedMultiAssets */5292export interface XcmVersionedMultiAssets extends Enum {5293 readonly isV2: boolean;5294 readonly asV2: XcmV2MultiassetMultiAssets;5295 readonly isV3: boolean;5296 readonly asV3: XcmV3MultiassetMultiAssets;5297 readonly type: 'V2' | 'V3';5298}52995300/** @name XcmVersionedMultiLocation */5301export interface XcmVersionedMultiLocation extends Enum {5302 readonly isV2: boolean;5303 readonly asV2: XcmV2MultiLocation;5304 readonly isV3: boolean;5305 readonly asV3: XcmV3MultiLocation;5306 readonly type: 'V2' | 'V3';5307}53085309/** @name XcmVersionedResponse */5310export interface XcmVersionedResponse extends Enum {5311 readonly isV2: boolean;5312 readonly asV2: XcmV2Response;5313 readonly isV3: boolean;5314 readonly asV3: XcmV3Response;5315 readonly type: 'V2' | 'V3';5316}53175318/** @name XcmVersionedXcm */5319export interface XcmVersionedXcm extends Enum {5320 readonly isV2: boolean;5321 readonly asV2: XcmV2Xcm;5322 readonly isV3: boolean;5323 readonly asV3: XcmV3Xcm;5324 readonly type: 'V2' | 'V3';5325}53265327export type PHANTOM_DEFAULT = 'default';tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -61,7 +61,7 @@
}
},
/**
- * Lookup19: frame_system::EventRecord<quartz_runtime::RuntimeEvent, primitive_types::H256>
+ * Lookup19: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>
**/
FrameSystemEventRecord: {
phase: 'FrameSystemPhase',
@@ -1081,7 +1081,7 @@
}
},
/**
- * Lookup86: frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>
+ * Lookup86: frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>
**/
FrameSupportPreimagesBounded: {
_enum: {
@@ -1297,16 +1297,16 @@
_alias: {
keys_: 'keys',
},
- keys_: 'QuartzRuntimeRuntimeCommonSessionKeys',
+ keys_: 'OpalRuntimeRuntimeCommonSessionKeys',
proof: 'Bytes',
},
purge_keys: 'Null'
}
},
/**
- * Lookup115: quartz_runtime::runtime_common::SessionKeys
+ * Lookup115: opal_runtime::runtime_common::SessionKeys
**/
- QuartzRuntimeRuntimeCommonSessionKeys: {
+ OpalRuntimeRuntimeCommonSessionKeys: {
aura: 'SpConsensusAuraSr25519AppSr25519Public'
},
/**
@@ -2030,7 +2030,7 @@
PalletReferendaCall: {
_enum: {
submit: {
- proposalOrigin: 'QuartzRuntimeOriginCaller',
+ proposalOrigin: 'OpalRuntimeOriginCaller',
proposal: 'FrameSupportPreimagesBounded',
enactmentMoment: 'FrameSupportScheduleDispatchTime',
},
@@ -2062,9 +2062,9 @@
}
},
/**
- * Lookup209: quartz_runtime::OriginCaller
+ * Lookup209: opal_runtime::OriginCaller
**/
- QuartzRuntimeOriginCaller: {
+ OpalRuntimeOriginCaller: {
_enum: {
system: 'FrameSupportDispatchRawOrigin',
__Unused1: 'Null',
@@ -4177,7 +4177,7 @@
_enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested']
},
/**
- * Lookup481: pallet_democracy::types::ReferendumInfo<BlockNumber, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, Balance>
+ * Lookup481: pallet_democracy::types::ReferendumInfo<BlockNumber, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance>
**/
PalletDemocracyReferendumInfo: {
_enum: {
@@ -4189,7 +4189,7 @@
}
},
/**
- * Lookup482: pallet_democracy::types::ReferendumStatus<BlockNumber, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, Balance>
+ * Lookup482: pallet_democracy::types::ReferendumStatus<BlockNumber, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance>
**/
PalletDemocracyReferendumStatus: {
end: 'u32',
@@ -4277,7 +4277,7 @@
_enum: ['AlreadyMember', 'NotMember', 'NotPolling', 'Ongoing', 'NoneRemaining', 'Corruption', 'RankTooLow', 'InvalidWitness', 'NoPermission']
},
/**
- * Lookup508: pallet_referenda::types::ReferendumInfo<TrackId, quartz_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>
+ * Lookup508: pallet_referenda::types::ReferendumInfo<TrackId, opal_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>
**/
PalletReferendaReferendumInfo: {
_enum: {
@@ -4290,11 +4290,11 @@
}
},
/**
- * Lookup509: pallet_referenda::types::ReferendumStatus<TrackId, quartz_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>
+ * Lookup509: pallet_referenda::types::ReferendumStatus<TrackId, opal_runtime::OriginCaller, Moment, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, Balance, pallet_ranked_collective::Tally<T, I, M>, sp_core::crypto::AccountId32, ScheduleAddress>
**/
PalletReferendaReferendumStatus: {
track: 'u16',
- origin: 'QuartzRuntimeOriginCaller',
+ origin: 'OpalRuntimeOriginCaller',
proposal: 'FrameSupportPreimagesBounded',
enactment: 'FrameSupportScheduleDispatchTime',
submitted: 'u32',
@@ -4363,14 +4363,14 @@
_enum: ['NotOngoing', 'HasDeposit', 'BadTrack', 'Full', 'QueueEmpty', 'BadReferendum', 'NothingToDo', 'NoTrack', 'Unfinished', 'NoPermission', 'NoDeposit', 'BadStatus', 'PreimageNotExist']
},
/**
- * Lookup526: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<quartz_runtime::RuntimeCall>, BlockNumber, quartz_runtime::OriginCaller, sp_core::crypto::AccountId32>
+ * Lookup526: pallet_scheduler::Scheduled<Name, frame_support::traits::preimages::Bounded<opal_runtime::RuntimeCall>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
**/
PalletSchedulerScheduled: {
maybeId: 'Option<[u8;32]>',
priority: 'u8',
call: 'FrameSupportPreimagesBounded',
maybePeriodic: 'Option<(u32,u32)>',
- origin: 'QuartzRuntimeOriginCaller'
+ origin: 'OpalRuntimeOriginCaller'
},
/**
* Lookup528: pallet_scheduler::pallet::Error<T>
@@ -4912,23 +4912,23 @@
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup674: quartz_runtime::runtime_common::maintenance::CheckMaintenance
+ * Lookup674: opal_runtime::runtime_common::maintenance::CheckMaintenance
**/
- QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
+ OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
/**
- * Lookup675: quartz_runtime::runtime_common::identity::DisableIdentityCalls
+ * Lookup675: opal_runtime::runtime_common::identity::DisableIdentityCalls
**/
- QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',
+ OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',
/**
- * Lookup676: pallet_template_transaction_payment::ChargeTransactionPayment<quartz_runtime::Runtime>
+ * Lookup676: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup677: quartz_runtime::Runtime
+ * Lookup677: opal_runtime::Runtime
**/
- QuartzRuntimeRuntime: 'Null',
+ OpalRuntimeRuntime: 'Null',
/**
- * Lookup678: pallet_ethereum::FakeTransactionFinalizer<quartz_runtime::Runtime>
+ * Lookup678: 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
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCodeMetadata, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletGovOriginsOrigin, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRankedCollectiveCall, PalletRankedCollectiveError, PalletRankedCollectiveEvent, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletReferendaCall, PalletReferendaCurve, PalletReferendaDecidingStatus, PalletReferendaDeposit, PalletReferendaError, PalletReferendaEvent, PalletReferendaReferendumInfo, PalletReferendaReferendumStatus, PalletReferendaTrackInfo, PalletRefungibleError, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStateTrieMigrationCall, PalletStateTrieMigrationError, PalletStateTrieMigrationEvent, PalletStateTrieMigrationMigrationCompute, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, QuartzRuntimeOriginCaller, QuartzRuntimeRuntime, QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls, QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance, QuartzRuntimeRuntimeCommonSessionKeys, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletParachainSystemRelayStateSnapshotRelayDispachQueueSize, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportPreimagesBounded, FrameSupportScheduleDispatchTime, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCollectiveCall, PalletCollectiveError, PalletCollectiveEvent, PalletCollectiveRawOrigin, PalletCollectiveVotes, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletDemocracyCall, PalletDemocracyConviction, PalletDemocracyDelegations, PalletDemocracyError, PalletDemocracyEvent, PalletDemocracyMetadataOwner, PalletDemocracyReferendumInfo, PalletDemocracyReferendumStatus, PalletDemocracyTally, PalletDemocracyVoteAccountVote, PalletDemocracyVotePriorLock, PalletDemocracyVoteThreshold, PalletDemocracyVoteVoting, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCodeMetadata, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletGovOriginsOrigin, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletMembershipCall, PalletMembershipError, PalletMembershipEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRankedCollectiveCall, PalletRankedCollectiveError, PalletRankedCollectiveEvent, PalletRankedCollectiveMemberRecord, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletReferendaCall, PalletReferendaCurve, PalletReferendaDecidingStatus, PalletReferendaDeposit, PalletReferendaError, PalletReferendaEvent, PalletReferendaReferendumInfo, PalletReferendaReferendumStatus, PalletReferendaTrackInfo, PalletRefungibleError, PalletSchedulerCall, PalletSchedulerError, PalletSchedulerEvent, PalletSchedulerScheduled, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStateTrieMigrationCall, PalletStateTrieMigrationError, PalletStateTrieMigrationEvent, PalletStateTrieMigrationMigrationCompute, PalletStateTrieMigrationMigrationLimits, PalletStateTrieMigrationMigrationTask, PalletStateTrieMigrationProgress, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -79,6 +79,11 @@
FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
FrameSystemPhase: FrameSystemPhase;
+ OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
+ OpalRuntimeRuntime: OpalRuntimeRuntime;
+ OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;
+ OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
+ OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
OrmlTokensAccountData: OrmlTokensAccountData;
OrmlTokensBalanceLock: OrmlTokensBalanceLock;
OrmlTokensModuleCall: OrmlTokensModuleCall;
@@ -244,11 +249,6 @@
PolkadotPrimitivesV4AbridgedHrmpChannel: PolkadotPrimitivesV4AbridgedHrmpChannel;
PolkadotPrimitivesV4PersistedValidationData: PolkadotPrimitivesV4PersistedValidationData;
PolkadotPrimitivesV4UpgradeRestriction: PolkadotPrimitivesV4UpgradeRestriction;
- QuartzRuntimeOriginCaller: QuartzRuntimeOriginCaller;
- QuartzRuntimeRuntime: QuartzRuntimeRuntime;
- QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls: QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls;
- QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance: QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance;
- QuartzRuntimeRuntimeCommonSessionKeys: QuartzRuntimeRuntimeCommonSessionKeys;
SpArithmeticArithmeticError: SpArithmeticArithmeticError;
SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -1390,15 +1390,15 @@
interface PalletSessionCall extends Enum {
readonly isSetKeys: boolean;
readonly asSetKeys: {
- readonly keys_: QuartzRuntimeRuntimeCommonSessionKeys;
+ readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;
readonly proof: Bytes;
} & Struct;
readonly isPurgeKeys: boolean;
readonly type: 'SetKeys' | 'PurgeKeys';
}
- /** @name QuartzRuntimeRuntimeCommonSessionKeys (115) */
- interface QuartzRuntimeRuntimeCommonSessionKeys extends Struct {
+ /** @name OpalRuntimeRuntimeCommonSessionKeys (115) */
+ interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
readonly aura: SpConsensusAuraSr25519AppSr25519Public;
}
@@ -2177,7 +2177,7 @@
interface PalletReferendaCall extends Enum {
readonly isSubmit: boolean;
readonly asSubmit: {
- readonly proposalOrigin: QuartzRuntimeOriginCaller;
+ readonly proposalOrigin: OpalRuntimeOriginCaller;
readonly proposal: FrameSupportPreimagesBounded;
readonly enactmentMoment: FrameSupportScheduleDispatchTime;
} & Struct;
@@ -2217,8 +2217,8 @@
readonly type: 'Submit' | 'PlaceDecisionDeposit' | 'RefundDecisionDeposit' | 'Cancel' | 'Kill' | 'NudgeReferendum' | 'OneFewerDeciding' | 'RefundSubmissionDeposit' | 'SetMetadata';
}
- /** @name QuartzRuntimeOriginCaller (209) */
- interface QuartzRuntimeOriginCaller extends Enum {
+ /** @name OpalRuntimeOriginCaller (209) */
+ interface OpalRuntimeOriginCaller extends Enum {
readonly isSystem: boolean;
readonly asSystem: FrameSupportDispatchRawOrigin;
readonly isVoid: boolean;
@@ -4616,7 +4616,7 @@
/** @name PalletReferendaReferendumStatus (509) */
interface PalletReferendaReferendumStatus extends Struct {
readonly track: u16;
- readonly origin: QuartzRuntimeOriginCaller;
+ readonly origin: OpalRuntimeOriginCaller;
readonly proposal: FrameSupportPreimagesBounded;
readonly enactment: FrameSupportScheduleDispatchTime;
readonly submitted: u32;
@@ -4701,7 +4701,7 @@
readonly priority: u8;
readonly call: FrameSupportPreimagesBounded;
readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
- readonly origin: QuartzRuntimeOriginCaller;
+ readonly origin: OpalRuntimeOriginCaller;
}
/** @name PalletSchedulerError (528) */
@@ -5312,17 +5312,17 @@
/** @name FrameSystemExtensionsCheckWeight (673) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance (674) */
- type QuartzRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
+ /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (674) */
+ type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
- /** @name QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls (675) */
- type QuartzRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;
+ /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (675) */
+ type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;
/** @name PalletTemplateTransactionPaymentChargeTransactionPayment (676) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name QuartzRuntimeRuntime (677) */
- type QuartzRuntimeRuntime = Null;
+ /** @name OpalRuntimeRuntime (677) */
+ type OpalRuntimeRuntime = Null;
/** @name PalletEthereumFakeTransactionFinalizer (678) */
type PalletEthereumFakeTransactionFinalizer = Null;