difftreelog
fix regenerate types
in: master
11 files changed
tests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -46,6 +46,22 @@
**/
[key: string]: Codec;
};
+ scheduler: {
+ /**
+ * The maximum weight that may be scheduled per block for any dispatchables of less
+ * priority than `schedule::HARD_DEADLINE`.
+ **/
+ maximumWeight: u64 & AugmentedConst<ApiType>;
+ /**
+ * The maximum number of scheduled calls in the queue for a single block.
+ * Not strictly enforced, but used for weight estimation.
+ **/
+ maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
+ /**
+ * Generic const
+ **/
+ [key: string]: Codec;
+ };
system: {
/**
* Maximum number of block number to block hash mappings to keep (oldest pruned first).
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -478,6 +478,28 @@
**/
[key: string]: AugmentedError<ApiType>;
};
+ scheduler: {
+ /**
+ * Failed to schedule a call
+ **/
+ FailedToSchedule: AugmentedError<ApiType>;
+ /**
+ * Cannot find the scheduled call.
+ **/
+ NotFound: AugmentedError<ApiType>;
+ /**
+ * Reschedule failed because it does not change scheduled time.
+ **/
+ RescheduleNoChange: AugmentedError<ApiType>;
+ /**
+ * Given target block number is in the past.
+ **/
+ TargetBlockNumberInPast: AugmentedError<ApiType>;
+ /**
+ * Generic error
+ **/
+ [key: string]: AugmentedError<ApiType>;
+ };
structure: {
/**
* While searched for owner, encountered depth limit
@@ -550,6 +572,10 @@
**/
InvalidIndex: AugmentedError<ApiType>;
/**
+ * Proposal has not been approved.
+ **/
+ ProposalNotApproved: AugmentedError<ApiType>;
+ /**
* Too many approvals in the queue.
**/
TooManyApprovals: AugmentedError<ApiType>;
tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -3,8 +3,9 @@
import type { ApiTypes } from '@polkadot/api-base/types';
import type { Bytes, Null, Option, Result, U256, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';
+import type { ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
+import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
declare module '@polkadot/api-base/types/events' {
export interface AugmentedEvents<ApiType extends ApiTypes> {
@@ -424,6 +425,28 @@
**/
[key: string]: AugmentedEvent<ApiType>;
};
+ scheduler: {
+ /**
+ * The call for the provided hash was not found so the task has been aborted.
+ **/
+ CallLookupFailed: AugmentedEvent<ApiType, [ITuple<[u32, u32]>, Option<U8aFixed>, FrameSupportScheduleLookupError]>;
+ /**
+ * Canceled some task.
+ **/
+ Canceled: AugmentedEvent<ApiType, [u32, u32]>;
+ /**
+ * Dispatched some task.
+ **/
+ Dispatched: AugmentedEvent<ApiType, [ITuple<[u32, u32]>, Option<U8aFixed>, Result<Null, SpRuntimeDispatchError>]>;
+ /**
+ * Scheduled some task.
+ **/
+ Scheduled: AugmentedEvent<ApiType, [u32, u32]>;
+ /**
+ * Generic event
+ **/
+ [key: string]: AugmentedEvent<ApiType>;
+ };
structure: {
/**
* Executed call on behalf of token
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -2,10 +2,10 @@
/* eslint-disable */
import type { ApiTypes } from '@polkadot/api-base/types';
-import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
+import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsTokenChild } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUnqSchedulerScheduledV3, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsTokenChild } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
declare module '@polkadot/api-base/types/storage' {
@@ -432,6 +432,20 @@
**/
[key: string]: QueryableStorageEntry<ApiType>;
};
+ scheduler: {
+ /**
+ * Items to be executed, indexed by the block number that they should be executed on.
+ **/
+ agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<Option<PalletUnqSchedulerScheduledV3>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
+ /**
+ * Lookup from identity to the block number and index of the task.
+ **/
+ lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
+ /**
+ * Generic query
+ **/
+ [key: string]: QueryableStorageEntry<ApiType>;
+ };
structure: {
/**
* Generic query
tests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-rpc.ts
+++ b/tests/src/interfaces/augment-api-rpc.ts
@@ -1,7 +1,7 @@
// Auto-generated via `yarn polkadot-types-from-chain`, do not edit
/* eslint-disable */
-import type { PalletEvmAccountBasicCrossAccountIdRepr, UpDataStructsCollectionLimits, UpDataStructsCollectionStats, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRpcCollection, UpDataStructsTokenChild, UpDataStructsTokenData } from './default';
+import type { PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsPartPartType, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionStats, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRpcCollection, UpDataStructsTokenChild, UpDataStructsTokenData } from './default';
import type { AugmentedRpc } from '@polkadot/rpc-core/types';
import type { Metadata, StorageKey } from '@polkadot/types';
import type { Bytes, HashMap, Json, Null, Option, Text, U256, U64, Vec, bool, u128, u32, u64 } from '@polkadot/types-codec';
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -2,10 +2,10 @@
/* eslint-disable */
import type { ApiTypes } from '@polkadot/api-base/types';
-import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
+import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, FrameSupportScheduleMaybeHashed, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/api-base/types/submittable' {
export interface AugmentedSubmittables<ApiType extends ApiTypes> {
@@ -377,6 +377,28 @@
**/
[key: string]: SubmittableExtrinsicFunction<ApiType>;
};
+ scheduler: {
+ /**
+ * Cancel a named scheduled task.
+ **/
+ cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
+ /**
+ * Schedule a named task.
+ **/
+ scheduleNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | object | string | Uint8Array, priority: u8 | AnyNumber | Uint8Array, call: FrameSupportScheduleMaybeHashed | { Value: any } | { Hash: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, FrameSupportScheduleMaybeHashed]>;
+ /**
+ * Schedule a named task after a delay.
+ *
+ * # <weight>
+ * Same as [`schedule_named`](Self::schedule_named).
+ * # </weight>
+ **/
+ scheduleNamedAfter: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | object | string | Uint8Array, priority: u8 | AnyNumber | Uint8Array, call: FrameSupportScheduleMaybeHashed | { Value: any } | { Hash: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, u8, FrameSupportScheduleMaybeHashed]>;
+ /**
+ * Generic tx
+ **/
+ [key: string]: SubmittableExtrinsicFunction<ApiType>;
+ };
structure: {
/**
* Generic tx
@@ -574,6 +596,24 @@
**/
rejectProposal: AugmentedSubmittable<(proposalId: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>]>;
/**
+ * Force a previously approved proposal to be removed from the approval queue.
+ * The original deposit will no longer be returned.
+ *
+ * May only be called from `T::RejectOrigin`.
+ * - `proposal_id`: The index of a proposal
+ *
+ * # <weight>
+ * - Complexity: O(A) where `A` is the number of approvals
+ * - Db reads and writes: `Approvals`
+ * # </weight>
+ *
+ * Errors:
+ * - `ProposalNotApproved`: The `proposal_id` supplied was not found in the approval queue,
+ * i.e., the proposal has not been approved. This could also mean the proposal does not
+ * exist altogether, thus there is no way it would have been approved in the first place.
+ **/
+ removeApproval: AugmentedSubmittable<(proposalId: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>]>;
+ /**
* Generic tx
**/
[key: string]: SubmittableExtrinsicFunction<ApiType>;
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -1,7 +1,7 @@
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRmrkAccountIdOrCollectionNftTuple, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkBasicResource, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkComposableResource, UpDataStructsRmrkEquippableList, UpDataStructsRmrkFixedPart, UpDataStructsRmrkNftChild, UpDataStructsRmrkNftInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkResourceTypes, UpDataStructsRmrkRoyaltyInfo, UpDataStructsRmrkSlotPart, UpDataStructsRmrkSlotResource, UpDataStructsRmrkTheme, UpDataStructsRmrkThemeProperty, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUnqSchedulerCall, PalletUnqSchedulerError, PalletUnqSchedulerEvent, PalletUnqSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
import type { Data, StorageKey } from '@polkadot/types';
import type { BitVec, Bool, Bytes, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
@@ -18,7 +18,7 @@
import type { StatementKind } from '@polkadot/types/interfaces/claims';
import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';
import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';
-import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultErr, ContractExecResultErrModule, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';
+import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';
import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';
import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';
import type { ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';
@@ -54,7 +54,7 @@
import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';
import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';
import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';
-import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModuleU8a, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';
+import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, TransactionalError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';
import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';
import type { Multiplier } from '@polkadot/types/interfaces/txpayment';
import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';
@@ -241,8 +241,6 @@
ContractEventSpecV1: ContractEventSpecV1;
ContractEventSpecV2: ContractEventSpecV2;
ContractExecResult: ContractExecResult;
- ContractExecResultErr: ContractExecResultErr;
- ContractExecResultErrModule: ContractExecResultErrModule;
ContractExecResultOk: ContractExecResultOk;
ContractExecResultResult: ContractExecResultResult;
ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;
@@ -303,6 +301,7 @@
CumulusPalletXcmCall: CumulusPalletXcmCall;
CumulusPalletXcmError: CumulusPalletXcmError;
CumulusPalletXcmEvent: CumulusPalletXcmEvent;
+ CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
@@ -329,6 +328,7 @@
DispatchClass: DispatchClass;
DispatchError: DispatchError;
DispatchErrorModule: DispatchErrorModule;
+ DispatchErrorModuleU8: DispatchErrorModuleU8;
DispatchErrorModuleU8a: DispatchErrorModuleU8a;
DispatchErrorTo198: DispatchErrorTo198;
DispatchFeePayment: DispatchFeePayment;
@@ -477,7 +477,10 @@
ForkTreePendingChange: ForkTreePendingChange;
ForkTreePendingChangeNode: ForkTreePendingChangeNode;
FpRpcTransactionStatus: FpRpcTransactionStatus;
+ FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
FrameSupportPalletId: FrameSupportPalletId;
+ FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;
+ FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;
FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;
FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
@@ -717,6 +720,7 @@
OffchainAccuracyCompact: OffchainAccuracyCompact;
OffenceDetails: OffenceDetails;
Offender: Offender;
+ OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
OpalRuntimeRuntime: OpalRuntimeRuntime;
OpaqueCall: OpaqueCall;
OpaqueMultiaddr: OpaqueMultiaddr;
@@ -768,6 +772,7 @@
PalletEthereumError: PalletEthereumError;
PalletEthereumEvent: PalletEthereumEvent;
PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
+ PalletEthereumRawOrigin: PalletEthereumRawOrigin;
PalletEventMetadataLatest: PalletEventMetadataLatest;
PalletEventMetadataV14: PalletEventMetadataV14;
PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
@@ -814,10 +819,15 @@
PalletUniqueCall: PalletUniqueCall;
PalletUniqueError: PalletUniqueError;
PalletUniqueRawEvent: PalletUniqueRawEvent;
+ PalletUnqSchedulerCall: PalletUnqSchedulerCall;
+ PalletUnqSchedulerError: PalletUnqSchedulerError;
+ PalletUnqSchedulerEvent: PalletUnqSchedulerEvent;
+ PalletUnqSchedulerScheduledV3: PalletUnqSchedulerScheduledV3;
PalletVersion: PalletVersion;
PalletXcmCall: PalletXcmCall;
PalletXcmError: PalletXcmError;
PalletXcmEvent: PalletXcmEvent;
+ PalletXcmOrigin: PalletXcmOrigin;
ParachainDispatchOrigin: ParachainDispatchOrigin;
ParachainInherentData: ParachainInherentData;
ParachainProposal: ParachainProposal;
@@ -1085,6 +1095,7 @@
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
SpCoreEd25519Signature: SpCoreEd25519Signature;
SpCoreSr25519Signature: SpCoreSr25519Signature;
+ SpCoreVoid: SpCoreVoid;
SpecVersion: SpecVersion;
SpRuntimeArithmeticError: SpRuntimeArithmeticError;
SpRuntimeDigest: SpRuntimeDigest;
@@ -1160,6 +1171,7 @@
TombstoneContractInfo: TombstoneContractInfo;
TraceBlockResponse: TraceBlockResponse;
TraceError: TraceError;
+ TransactionalError: TransactionalError;
TransactionInfo: TransactionInfo;
TransactionPriority: TransactionPriority;
TransactionStorageProof: TransactionStorageProof;
tests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -126,6 +126,14 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
}
+/** @name CumulusPalletXcmOrigin */
+export interface CumulusPalletXcmOrigin extends Enum {
+ readonly isRelay: boolean;
+ readonly isSiblingParachain: boolean;
+ readonly asSiblingParachain: u32;
+ readonly type: 'Relay' | 'SiblingParachain';
+}
+
/** @name CumulusPalletXcmpQueueCall */
export interface CumulusPalletXcmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
@@ -443,9 +451,34 @@
readonly logsBloom: EthbloomBloom;
}
+/** @name FrameSupportDispatchRawOrigin */
+export interface FrameSupportDispatchRawOrigin extends Enum {
+ readonly isRoot: boolean;
+ readonly isSigned: boolean;
+ readonly asSigned: AccountId32;
+ readonly isNone: boolean;
+ readonly type: 'Root' | 'Signed' | 'None';
+}
+
/** @name FrameSupportPalletId */
export interface FrameSupportPalletId extends U8aFixed {}
+/** @name FrameSupportScheduleLookupError */
+export interface FrameSupportScheduleLookupError extends Enum {
+ readonly isUnknown: boolean;
+ readonly isBadFormat: boolean;
+ readonly type: 'Unknown' | 'BadFormat';
+}
+
+/** @name FrameSupportScheduleMaybeHashed */
+export interface FrameSupportScheduleMaybeHashed extends Enum {
+ readonly isValue: boolean;
+ readonly asValue: Call;
+ readonly isHash: boolean;
+ readonly asHash: H256;
+ readonly type: 'Value' | 'Hash';
+}
+
/** @name FrameSupportTokensMiscBalanceStatus */
export interface FrameSupportTokensMiscBalanceStatus extends Enum {
readonly isFree: boolean;
@@ -654,6 +687,21 @@
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
}
+/** @name OpalRuntimeOriginCaller */
+export interface OpalRuntimeOriginCaller extends Enum {
+ readonly isVoid: boolean;
+ readonly asVoid: SpCoreVoid;
+ readonly isSystem: boolean;
+ readonly asSystem: FrameSupportDispatchRawOrigin;
+ readonly isPolkadotXcm: boolean;
+ readonly asPolkadotXcm: PalletXcmOrigin;
+ readonly isCumulusXcm: boolean;
+ readonly asCumulusXcm: CumulusPalletXcmOrigin;
+ readonly isEthereum: boolean;
+ readonly asEthereum: PalletEthereumRawOrigin;
+ readonly type: 'Void' | 'System' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
+}
+
/** @name OpalRuntimeRuntime */
export interface OpalRuntimeRuntime extends Null {}
@@ -954,6 +1002,13 @@
/** @name PalletEthereumFakeTransactionFinalizer */
export interface PalletEthereumFakeTransactionFinalizer extends Null {}
+/** @name PalletEthereumRawOrigin */
+export interface PalletEthereumRawOrigin extends Enum {
+ readonly isEthereumTransaction: boolean;
+ readonly asEthereumTransaction: H160;
+ readonly type: 'EthereumTransaction';
+}
+
/** @name PalletEvmAccountBasicCrossAccountIdRepr */
export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
readonly isSubstrate: boolean;
@@ -1484,7 +1539,11 @@
readonly asApproveProposal: {
readonly proposalId: Compact<u32>;
} & Struct;
- readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';
+ readonly isRemoveApproval: boolean;
+ readonly asRemoveApproval: {
+ readonly proposalId: Compact<u32>;
+ } & Struct;
+ readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'RemoveApproval';
}
/** @name PalletTreasuryError */
@@ -1492,7 +1551,8 @@
readonly isInsufficientProposersBalance: boolean;
readonly isInvalidIndex: boolean;
readonly isTooManyApprovals: boolean;
- readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';
+ readonly isProposalNotApproved: boolean;
+ readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'ProposalNotApproved';
}
/** @name PalletTreasuryEvent */
@@ -1724,6 +1784,76 @@
readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';
}
+/** @name PalletUnqSchedulerCall */
+export interface PalletUnqSchedulerCall extends Enum {
+ readonly isScheduleNamed: boolean;
+ readonly asScheduleNamed: {
+ readonly id: U8aFixed;
+ readonly when: u32;
+ readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
+ readonly priority: u8;
+ readonly call: FrameSupportScheduleMaybeHashed;
+ } & Struct;
+ readonly isCancelNamed: boolean;
+ readonly asCancelNamed: {
+ readonly id: U8aFixed;
+ } & Struct;
+ readonly isScheduleNamedAfter: boolean;
+ readonly asScheduleNamedAfter: {
+ readonly id: U8aFixed;
+ readonly after: u32;
+ readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
+ readonly priority: u8;
+ readonly call: FrameSupportScheduleMaybeHashed;
+ } & Struct;
+ readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';
+}
+
+/** @name PalletUnqSchedulerError */
+export interface PalletUnqSchedulerError extends Enum {
+ readonly isFailedToSchedule: boolean;
+ readonly isNotFound: boolean;
+ readonly isTargetBlockNumberInPast: boolean;
+ readonly isRescheduleNoChange: boolean;
+ readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';
+}
+
+/** @name PalletUnqSchedulerEvent */
+export interface PalletUnqSchedulerEvent extends Enum {
+ readonly isScheduled: boolean;
+ readonly asScheduled: {
+ readonly when: u32;
+ readonly index: u32;
+ } & Struct;
+ readonly isCanceled: boolean;
+ readonly asCanceled: {
+ readonly when: u32;
+ readonly index: u32;
+ } & Struct;
+ readonly isDispatched: boolean;
+ readonly asDispatched: {
+ readonly task: ITuple<[u32, u32]>;
+ readonly id: Option<U8aFixed>;
+ readonly result: Result<Null, SpRuntimeDispatchError>;
+ } & Struct;
+ readonly isCallLookupFailed: boolean;
+ readonly asCallLookupFailed: {
+ readonly task: ITuple<[u32, u32]>;
+ readonly id: Option<U8aFixed>;
+ readonly error: FrameSupportScheduleLookupError;
+ } & Struct;
+ readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';
+}
+
+/** @name PalletUnqSchedulerScheduledV3 */
+export interface PalletUnqSchedulerScheduledV3 extends Struct {
+ readonly maybeId: Option<U8aFixed>;
+ readonly priority: u8;
+ readonly call: FrameSupportScheduleMaybeHashed;
+ readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
+ readonly origin: OpalRuntimeOriginCaller;
+}
+
/** @name PalletXcmCall */
export interface PalletXcmCall extends Enum {
readonly isSend: boolean;
@@ -1841,6 +1971,15 @@
readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
}
+/** @name PalletXcmOrigin */
+export interface PalletXcmOrigin extends Enum {
+ readonly isXcm: boolean;
+ readonly asXcm: XcmV1MultiLocation;
+ readonly isResponse: boolean;
+ readonly asResponse: XcmV1MultiLocation;
+ readonly type: 'Xcm' | 'Response';
+}
+
/** @name PhantomTypeUpDataStructs */
export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
@@ -2061,6 +2200,9 @@
/** @name SpCoreSr25519Signature */
export interface SpCoreSr25519Signature extends U8aFixed {}
+/** @name SpCoreVoid */
+export interface SpCoreVoid extends Null {}
+
/** @name SpRuntimeArithmeticError */
export interface SpRuntimeArithmeticError extends Enum {
readonly isUnderflow: boolean;
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -154,17 +154,17 @@
* Lookup48: pallet_balances::ReserveData<ReserveIdentifier, Balance>
**/
PalletBalancesReserveData: {
- id: '[u8;8]',
+ id: '[u8;16]',
amount: 'u128'
},
/**
- * Lookup50: pallet_balances::Releases
+ * Lookup51: pallet_balances::Releases
**/
PalletBalancesReleases: {
_enum: ['V1_0_0', 'V2_0_0']
},
/**
- * Lookup51: pallet_balances::pallet::Call<T, I>
+ * Lookup52: pallet_balances::pallet::Call<T, I>
**/
PalletBalancesCall: {
_enum: {
@@ -197,7 +197,7 @@
}
},
/**
- * Lookup57: pallet_balances::pallet::Event<T, I>
+ * Lookup58: pallet_balances::pallet::Event<T, I>
**/
PalletBalancesEvent: {
_enum: {
@@ -248,19 +248,19 @@
}
},
/**
- * Lookup58: frame_support::traits::tokens::misc::BalanceStatus
+ * Lookup59: frame_support::traits::tokens::misc::BalanceStatus
**/
FrameSupportTokensMiscBalanceStatus: {
_enum: ['Free', 'Reserved']
},
/**
- * Lookup59: pallet_balances::pallet::Error<T, I>
+ * Lookup60: pallet_balances::pallet::Error<T, I>
**/
PalletBalancesError: {
_enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup62: pallet_timestamp::pallet::Call<T>
+ * Lookup63: pallet_timestamp::pallet::Call<T>
**/
PalletTimestampCall: {
_enum: {
@@ -270,13 +270,13 @@
}
},
/**
- * Lookup65: pallet_transaction_payment::Releases
+ * Lookup66: pallet_transaction_payment::Releases
**/
PalletTransactionPaymentReleases: {
_enum: ['V1Ancient', 'V2']
},
/**
- * Lookup67: frame_support::weights::WeightToFeeCoefficient<Balance>
+ * Lookup68: frame_support::weights::WeightToFeeCoefficient<Balance>
**/
FrameSupportWeightsWeightToFeeCoefficient: {
coeffInteger: 'u128',
@@ -285,7 +285,7 @@
degree: 'u8'
},
/**
- * Lookup69: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
+ * Lookup70: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
**/
PalletTreasuryProposal: {
proposer: 'AccountId32',
@@ -294,7 +294,7 @@
bond: 'u128'
},
/**
- * Lookup72: pallet_treasury::pallet::Call<T, I>
+ * Lookup73: pallet_treasury::pallet::Call<T, I>
**/
PalletTreasuryCall: {
_enum: {
@@ -306,12 +306,15 @@
proposalId: 'Compact<u32>',
},
approve_proposal: {
+ proposalId: 'Compact<u32>',
+ },
+ remove_approval: {
proposalId: 'Compact<u32>'
}
}
},
/**
- * Lookup74: pallet_treasury::pallet::Event<T, I>
+ * Lookup75: pallet_treasury::pallet::Event<T, I>
**/
PalletTreasuryEvent: {
_enum: {
@@ -342,17 +345,17 @@
}
},
/**
- * Lookup77: frame_support::PalletId
+ * Lookup78: frame_support::PalletId
**/
FrameSupportPalletId: '[u8;8]',
/**
- * Lookup78: pallet_treasury::pallet::Error<T, I>
+ * Lookup79: pallet_treasury::pallet::Error<T, I>
**/
PalletTreasuryError: {
- _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals']
+ _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'ProposalNotApproved']
},
/**
- * Lookup79: pallet_sudo::pallet::Call<T>
+ * Lookup80: pallet_sudo::pallet::Call<T>
**/
PalletSudoCall: {
_enum: {
@@ -376,7 +379,7 @@
}
},
/**
- * Lookup81: frame_system::pallet::Call<T>
+ * Lookup82: frame_system::pallet::Call<T>
**/
FrameSystemCall: {
_enum: {
@@ -414,7 +417,7 @@
}
},
/**
- * Lookup84: orml_vesting::module::Call<T>
+ * Lookup85: orml_vesting::module::Call<T>
**/
OrmlVestingModuleCall: {
_enum: {
@@ -433,7 +436,7 @@
}
},
/**
- * Lookup85: orml_vesting::VestingSchedule<BlockNumber, Balance>
+ * Lookup86: orml_vesting::VestingSchedule<BlockNumber, Balance>
**/
OrmlVestingVestingSchedule: {
start: 'u32',
@@ -442,7 +445,7 @@
perPeriod: 'Compact<u128>'
},
/**
- * Lookup87: cumulus_pallet_xcmp_queue::pallet::Call<T>
+ * Lookup88: cumulus_pallet_xcmp_queue::pallet::Call<T>
**/
CumulusPalletXcmpQueueCall: {
_enum: {
@@ -491,7 +494,7 @@
}
},
/**
- * Lookup88: pallet_xcm::pallet::Call<T>
+ * Lookup89: pallet_xcm::pallet::Call<T>
**/
PalletXcmCall: {
_enum: {
@@ -545,7 +548,7 @@
}
},
/**
- * Lookup89: xcm::VersionedMultiLocation
+ * Lookup90: xcm::VersionedMultiLocation
**/
XcmVersionedMultiLocation: {
_enum: {
@@ -554,7 +557,7 @@
}
},
/**
- * Lookup90: xcm::v0::multi_location::MultiLocation
+ * Lookup91: xcm::v0::multi_location::MultiLocation
**/
XcmV0MultiLocation: {
_enum: {
@@ -570,7 +573,7 @@
}
},
/**
- * Lookup91: xcm::v0::junction::Junction
+ * Lookup92: xcm::v0::junction::Junction
**/
XcmV0Junction: {
_enum: {
@@ -599,7 +602,7 @@
}
},
/**
- * Lookup92: xcm::v0::junction::NetworkId
+ * Lookup93: xcm::v0::junction::NetworkId
**/
XcmV0JunctionNetworkId: {
_enum: {
@@ -610,7 +613,7 @@
}
},
/**
- * Lookup93: xcm::v0::junction::BodyId
+ * Lookup94: xcm::v0::junction::BodyId
**/
XcmV0JunctionBodyId: {
_enum: {
@@ -624,7 +627,7 @@
}
},
/**
- * Lookup94: xcm::v0::junction::BodyPart
+ * Lookup95: xcm::v0::junction::BodyPart
**/
XcmV0JunctionBodyPart: {
_enum: {
@@ -647,14 +650,14 @@
}
},
/**
- * Lookup95: xcm::v1::multilocation::MultiLocation
+ * Lookup96: xcm::v1::multilocation::MultiLocation
**/
XcmV1MultiLocation: {
parents: 'u8',
interior: 'XcmV1MultilocationJunctions'
},
/**
- * Lookup96: xcm::v1::multilocation::Junctions
+ * Lookup97: xcm::v1::multilocation::Junctions
**/
XcmV1MultilocationJunctions: {
_enum: {
@@ -670,7 +673,7 @@
}
},
/**
- * Lookup97: xcm::v1::junction::Junction
+ * Lookup98: xcm::v1::junction::Junction
**/
XcmV1Junction: {
_enum: {
@@ -698,7 +701,7 @@
}
},
/**
- * Lookup98: xcm::VersionedXcm<Call>
+ * Lookup99: xcm::VersionedXcm<Call>
**/
XcmVersionedXcm: {
_enum: {
@@ -708,7 +711,7 @@
}
},
/**
- * Lookup99: xcm::v0::Xcm<Call>
+ * Lookup100: xcm::v0::Xcm<Call>
**/
XcmV0Xcm: {
_enum: {
@@ -762,7 +765,7 @@
}
},
/**
- * Lookup101: xcm::v0::multi_asset::MultiAsset
+ * Lookup102: xcm::v0::multi_asset::MultiAsset
**/
XcmV0MultiAsset: {
_enum: {
@@ -801,7 +804,7 @@
}
},
/**
- * Lookup102: xcm::v1::multiasset::AssetInstance
+ * Lookup103: xcm::v1::multiasset::AssetInstance
**/
XcmV1MultiassetAssetInstance: {
_enum: {
@@ -1520,15 +1523,48 @@
users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>'
},
/**
- * Lookup204: pallet_template_transaction_payment::Call<T>
+ * Lookup204: pallet_unq_scheduler::pallet::Call<T>
**/
+ PalletUnqSchedulerCall: {
+ _enum: {
+ schedule_named: {
+ id: '[u8;16]',
+ when: 'u32',
+ maybePeriodic: 'Option<(u32,u32)>',
+ priority: 'u8',
+ call: 'FrameSupportScheduleMaybeHashed',
+ },
+ cancel_named: {
+ id: '[u8;16]',
+ },
+ schedule_named_after: {
+ id: '[u8;16]',
+ after: 'u32',
+ maybePeriodic: 'Option<(u32,u32)>',
+ priority: 'u8',
+ call: 'FrameSupportScheduleMaybeHashed'
+ }
+ }
+ },
+ /**
+ * Lookup206: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>
+ **/
+ FrameSupportScheduleMaybeHashed: {
+ _enum: {
+ Value: 'Call',
+ Hash: 'H256'
+ }
+ },
+ /**
+ * Lookup207: pallet_template_transaction_payment::Call<T>
+ **/
PalletTemplateTransactionPaymentCall: 'Null',
/**
- * Lookup205: pallet_structure::pallet::Call<T>
+ * Lookup208: pallet_structure::pallet::Call<T>
**/
PalletStructureCall: 'Null',
/**
- * Lookup206: pallet_rmrk_core::pallet::Call<T>
+ * Lookup209: pallet_rmrk_core::pallet::Call<T>
**/
PalletRmrkCoreCall: {
_enum: {
@@ -1618,7 +1654,7 @@
}
},
/**
- * Lookup210: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
+ * Lookup213: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
**/
RmrkTraitsNftAccountIdOrCollectionNftTuple: {
_enum: {
@@ -1627,7 +1663,7 @@
}
},
/**
- * Lookup214: rmrk_traits::resource::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup217: rmrk_traits::resource::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceBasicResource: {
src: 'Option<Bytes>',
@@ -1636,7 +1672,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup217: rmrk_traits::resource::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup220: rmrk_traits::resource::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceComposableResource: {
parts: 'Vec<u32>',
@@ -1647,7 +1683,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup219: rmrk_traits::resource::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup222: rmrk_traits::resource::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceSlotResource: {
base: 'u32',
@@ -1658,7 +1694,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup220: pallet_rmrk_equip::pallet::Call<T>
+ * Lookup223: pallet_rmrk_equip::pallet::Call<T>
**/
PalletRmrkEquipCall: {
_enum: {
@@ -1674,7 +1710,7 @@
}
},
/**
- * Lookup222: rmrk_traits::part::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup225: rmrk_traits::part::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartPartType: {
_enum: {
@@ -1683,7 +1719,7 @@
}
},
/**
- * Lookup224: rmrk_traits::part::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup227: rmrk_traits::part::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartFixedPart: {
id: 'u32',
@@ -1691,7 +1727,7 @@
src: 'Bytes'
},
/**
- * Lookup225: rmrk_traits::part::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup228: rmrk_traits::part::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartSlotPart: {
id: 'u32',
@@ -1700,7 +1736,7 @@
z: 'u32'
},
/**
- * Lookup226: rmrk_traits::part::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup229: rmrk_traits::part::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartEquippableList: {
_enum: {
@@ -1710,7 +1746,7 @@
}
},
/**
- * Lookup228: rmrk_traits::theme::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>
+ * Lookup231: rmrk_traits::theme::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>
**/
RmrkTraitsTheme: {
name: 'Bytes',
@@ -1718,14 +1754,14 @@
inherit: 'bool'
},
/**
- * Lookup230: rmrk_traits::theme::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup233: rmrk_traits::theme::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsThemeThemeProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup231: pallet_evm::pallet::Call<T>
+ * Lookup234: pallet_evm::pallet::Call<T>
**/
PalletEvmCall: {
_enum: {
@@ -1768,7 +1804,7 @@
}
},
/**
- * Lookup237: pallet_ethereum::pallet::Call<T>
+ * Lookup240: pallet_ethereum::pallet::Call<T>
**/
PalletEthereumCall: {
_enum: {
@@ -1778,7 +1814,7 @@
}
},
/**
- * Lookup238: ethereum::transaction::TransactionV2
+ * Lookup241: ethereum::transaction::TransactionV2
**/
EthereumTransactionTransactionV2: {
_enum: {
@@ -1788,7 +1824,7 @@
}
},
/**
- * Lookup239: ethereum::transaction::LegacyTransaction
+ * Lookup242: ethereum::transaction::LegacyTransaction
**/
EthereumTransactionLegacyTransaction: {
nonce: 'U256',
@@ -1800,7 +1836,7 @@
signature: 'EthereumTransactionTransactionSignature'
},
/**
- * Lookup240: ethereum::transaction::TransactionAction
+ * Lookup243: ethereum::transaction::TransactionAction
**/
EthereumTransactionTransactionAction: {
_enum: {
@@ -1809,7 +1845,7 @@
}
},
/**
- * Lookup241: ethereum::transaction::TransactionSignature
+ * Lookup244: ethereum::transaction::TransactionSignature
**/
EthereumTransactionTransactionSignature: {
v: 'u64',
@@ -1817,7 +1853,7 @@
s: 'H256'
},
/**
- * Lookup243: ethereum::transaction::EIP2930Transaction
+ * Lookup246: ethereum::transaction::EIP2930Transaction
**/
EthereumTransactionEip2930Transaction: {
chainId: 'u64',
@@ -1833,14 +1869,14 @@
s: 'H256'
},
/**
- * Lookup245: ethereum::transaction::AccessListItem
+ * Lookup248: ethereum::transaction::AccessListItem
**/
EthereumTransactionAccessListItem: {
address: 'H160',
storageKeys: 'Vec<H256>'
},
/**
- * Lookup246: ethereum::transaction::EIP1559Transaction
+ * Lookup249: ethereum::transaction::EIP1559Transaction
**/
EthereumTransactionEip1559Transaction: {
chainId: 'u64',
@@ -1857,7 +1893,7 @@
s: 'H256'
},
/**
- * Lookup247: pallet_evm_migration::pallet::Call<T>
+ * Lookup250: pallet_evm_migration::pallet::Call<T>
**/
PalletEvmMigrationCall: {
_enum: {
@@ -1875,7 +1911,7 @@
}
},
/**
- * Lookup250: pallet_sudo::pallet::Event<T>
+ * Lookup253: pallet_sudo::pallet::Event<T>
**/
PalletSudoEvent: {
_enum: {
@@ -1891,7 +1927,7 @@
}
},
/**
- * Lookup252: sp_runtime::DispatchError
+ * Lookup255: sp_runtime::DispatchError
**/
SpRuntimeDispatchError: {
_enum: {
@@ -1908,38 +1944,38 @@
}
},
/**
- * Lookup253: sp_runtime::ModuleError
+ * Lookup256: sp_runtime::ModuleError
**/
SpRuntimeModuleError: {
index: 'u8',
error: '[u8;4]'
},
/**
- * Lookup254: sp_runtime::TokenError
+ * Lookup257: sp_runtime::TokenError
**/
SpRuntimeTokenError: {
_enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
},
/**
- * Lookup255: sp_runtime::ArithmeticError
+ * Lookup258: sp_runtime::ArithmeticError
**/
SpRuntimeArithmeticError: {
_enum: ['Underflow', 'Overflow', 'DivisionByZero']
},
/**
- * Lookup256: sp_runtime::TransactionalError
+ * Lookup259: sp_runtime::TransactionalError
**/
SpRuntimeTransactionalError: {
_enum: ['LimitReached', 'NoLayer']
},
/**
- * Lookup257: pallet_sudo::pallet::Error<T>
+ * Lookup260: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup258: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
+ * Lookup261: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
**/
FrameSystemAccountInfo: {
nonce: 'u32',
@@ -1949,7 +1985,7 @@
data: 'PalletBalancesAccountData'
},
/**
- * Lookup259: frame_support::weights::PerDispatchClass<T>
+ * Lookup262: frame_support::weights::PerDispatchClass<T>
**/
FrameSupportWeightsPerDispatchClassU64: {
normal: 'u64',
@@ -1957,13 +1993,13 @@
mandatory: 'u64'
},
/**
- * Lookup260: sp_runtime::generic::digest::Digest
+ * Lookup263: sp_runtime::generic::digest::Digest
**/
SpRuntimeDigest: {
logs: 'Vec<SpRuntimeDigestDigestItem>'
},
/**
- * Lookup262: sp_runtime::generic::digest::DigestItem
+ * Lookup265: sp_runtime::generic::digest::DigestItem
**/
SpRuntimeDigestDigestItem: {
_enum: {
@@ -1979,7 +2015,7 @@
}
},
/**
- * Lookup264: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
+ * Lookup267: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
**/
FrameSystemEventRecord: {
phase: 'FrameSystemPhase',
@@ -1987,7 +2023,7 @@
topics: 'Vec<H256>'
},
/**
- * Lookup266: frame_system::pallet::Event<T>
+ * Lookup269: frame_system::pallet::Event<T>
**/
FrameSystemEvent: {
_enum: {
@@ -2015,7 +2051,7 @@
}
},
/**
- * Lookup267: frame_support::weights::DispatchInfo
+ * Lookup270: frame_support::weights::DispatchInfo
**/
FrameSupportWeightsDispatchInfo: {
weight: 'u64',
@@ -2023,19 +2059,19 @@
paysFee: 'FrameSupportWeightsPays'
},
/**
- * Lookup268: frame_support::weights::DispatchClass
+ * Lookup271: frame_support::weights::DispatchClass
**/
FrameSupportWeightsDispatchClass: {
_enum: ['Normal', 'Operational', 'Mandatory']
},
/**
- * Lookup269: frame_support::weights::Pays
+ * Lookup272: frame_support::weights::Pays
**/
FrameSupportWeightsPays: {
_enum: ['Yes', 'No']
},
/**
- * Lookup270: orml_vesting::module::Event<T>
+ * Lookup273: orml_vesting::module::Event<T>
**/
OrmlVestingModuleEvent: {
_enum: {
@@ -2054,7 +2090,7 @@
}
},
/**
- * Lookup271: cumulus_pallet_xcmp_queue::pallet::Event<T>
+ * Lookup274: cumulus_pallet_xcmp_queue::pallet::Event<T>
**/
CumulusPalletXcmpQueueEvent: {
_enum: {
@@ -2069,7 +2105,7 @@
}
},
/**
- * Lookup272: pallet_xcm::pallet::Event<T>
+ * Lookup275: pallet_xcm::pallet::Event<T>
**/
PalletXcmEvent: {
_enum: {
@@ -2092,7 +2128,7 @@
}
},
/**
- * Lookup273: xcm::v2::traits::Outcome
+ * Lookup276: xcm::v2::traits::Outcome
**/
XcmV2TraitsOutcome: {
_enum: {
@@ -2102,7 +2138,7 @@
}
},
/**
- * Lookup275: cumulus_pallet_xcm::pallet::Event<T>
+ * Lookup278: cumulus_pallet_xcm::pallet::Event<T>
**/
CumulusPalletXcmEvent: {
_enum: {
@@ -2112,7 +2148,7 @@
}
},
/**
- * Lookup276: cumulus_pallet_dmp_queue::pallet::Event<T>
+ * Lookup279: cumulus_pallet_dmp_queue::pallet::Event<T>
**/
CumulusPalletDmpQueueEvent: {
_enum: {
@@ -2125,7 +2161,7 @@
}
},
/**
- * Lookup277: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup280: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletUniqueRawEvent: {
_enum: {
@@ -2142,7 +2178,38 @@
}
},
/**
- * Lookup278: pallet_common::pallet::Event<T>
+ * Lookup281: pallet_unq_scheduler::pallet::Event<T>
+ **/
+ PalletUnqSchedulerEvent: {
+ _enum: {
+ Scheduled: {
+ when: 'u32',
+ index: 'u32',
+ },
+ Canceled: {
+ when: 'u32',
+ index: 'u32',
+ },
+ Dispatched: {
+ task: '(u32,u32)',
+ id: 'Option<[u8;16]>',
+ result: 'Result<Null, SpRuntimeDispatchError>',
+ },
+ CallLookupFailed: {
+ task: '(u32,u32)',
+ id: 'Option<[u8;16]>',
+ error: 'FrameSupportScheduleLookupError'
+ }
+ }
+ },
+ /**
+ * Lookup283: frame_support::traits::schedule::LookupError
+ **/
+ FrameSupportScheduleLookupError: {
+ _enum: ['Unknown', 'BadFormat']
+ },
+ /**
+ * Lookup284: pallet_common::pallet::Event<T>
**/
PalletCommonEvent: {
_enum: {
@@ -2160,7 +2227,7 @@
}
},
/**
- * Lookup279: pallet_structure::pallet::Event<T>
+ * Lookup285: pallet_structure::pallet::Event<T>
**/
PalletStructureEvent: {
_enum: {
@@ -2168,7 +2235,7 @@
}
},
/**
- * Lookup280: pallet_rmrk_core::pallet::Event<T>
+ * Lookup286: pallet_rmrk_core::pallet::Event<T>
**/
PalletRmrkCoreEvent: {
_enum: {
@@ -2245,7 +2312,7 @@
}
},
/**
- * Lookup281: pallet_rmrk_equip::pallet::Event<T>
+ * Lookup287: pallet_rmrk_equip::pallet::Event<T>
**/
PalletRmrkEquipEvent: {
_enum: {
@@ -2256,7 +2323,7 @@
}
},
/**
- * Lookup282: pallet_evm::pallet::Event<T>
+ * Lookup288: pallet_evm::pallet::Event<T>
**/
PalletEvmEvent: {
_enum: {
@@ -2270,7 +2337,7 @@
}
},
/**
- * Lookup283: ethereum::log::Log
+ * Lookup289: ethereum::log::Log
**/
EthereumLog: {
address: 'H160',
@@ -2278,7 +2345,7 @@
data: 'Bytes'
},
/**
- * Lookup284: pallet_ethereum::pallet::Event
+ * Lookup290: pallet_ethereum::pallet::Event
**/
PalletEthereumEvent: {
_enum: {
@@ -2286,7 +2353,7 @@
}
},
/**
- * Lookup285: evm_core::error::ExitReason
+ * Lookup291: evm_core::error::ExitReason
**/
EvmCoreErrorExitReason: {
_enum: {
@@ -2297,13 +2364,13 @@
}
},
/**
- * Lookup286: evm_core::error::ExitSucceed
+ * Lookup292: evm_core::error::ExitSucceed
**/
EvmCoreErrorExitSucceed: {
_enum: ['Stopped', 'Returned', 'Suicided']
},
/**
- * Lookup287: evm_core::error::ExitError
+ * Lookup293: evm_core::error::ExitError
**/
EvmCoreErrorExitError: {
_enum: {
@@ -2325,13 +2392,13 @@
}
},
/**
- * Lookup290: evm_core::error::ExitRevert
+ * Lookup296: evm_core::error::ExitRevert
**/
EvmCoreErrorExitRevert: {
_enum: ['Reverted']
},
/**
- * Lookup291: evm_core::error::ExitFatal
+ * Lookup297: evm_core::error::ExitFatal
**/
EvmCoreErrorExitFatal: {
_enum: {
@@ -2342,7 +2409,7 @@
}
},
/**
- * Lookup292: frame_system::Phase
+ * Lookup298: frame_system::Phase
**/
FrameSystemPhase: {
_enum: {
@@ -2352,14 +2419,14 @@
}
},
/**
- * Lookup294: frame_system::LastRuntimeUpgradeInfo
+ * Lookup300: frame_system::LastRuntimeUpgradeInfo
**/
FrameSystemLastRuntimeUpgradeInfo: {
specVersion: 'Compact<u32>',
specName: 'Text'
},
/**
- * Lookup295: frame_system::limits::BlockWeights
+ * Lookup301: frame_system::limits::BlockWeights
**/
FrameSystemLimitsBlockWeights: {
baseBlock: 'u64',
@@ -2367,7 +2434,7 @@
perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
},
/**
- * Lookup296: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
+ * Lookup302: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
**/
FrameSupportWeightsPerDispatchClassWeightsPerClass: {
normal: 'FrameSystemLimitsWeightsPerClass',
@@ -2375,7 +2442,7 @@
mandatory: 'FrameSystemLimitsWeightsPerClass'
},
/**
- * Lookup297: frame_system::limits::WeightsPerClass
+ * Lookup303: frame_system::limits::WeightsPerClass
**/
FrameSystemLimitsWeightsPerClass: {
baseExtrinsic: 'u64',
@@ -2384,13 +2451,13 @@
reserved: 'Option<u64>'
},
/**
- * Lookup299: frame_system::limits::BlockLength
+ * Lookup305: frame_system::limits::BlockLength
**/
FrameSystemLimitsBlockLength: {
max: 'FrameSupportWeightsPerDispatchClassU32'
},
/**
- * Lookup300: frame_support::weights::PerDispatchClass<T>
+ * Lookup306: frame_support::weights::PerDispatchClass<T>
**/
FrameSupportWeightsPerDispatchClassU32: {
normal: 'u32',
@@ -2398,14 +2465,14 @@
mandatory: 'u32'
},
/**
- * Lookup301: frame_support::weights::RuntimeDbWeight
+ * Lookup307: frame_support::weights::RuntimeDbWeight
**/
FrameSupportWeightsRuntimeDbWeight: {
read: 'u64',
write: 'u64'
},
/**
- * Lookup302: sp_version::RuntimeVersion
+ * Lookup308: sp_version::RuntimeVersion
**/
SpVersionRuntimeVersion: {
specName: 'Text',
@@ -2418,19 +2485,19 @@
stateVersion: 'u8'
},
/**
- * Lookup306: frame_system::pallet::Error<T>
+ * Lookup312: frame_system::pallet::Error<T>
**/
FrameSystemError: {
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
},
/**
- * Lookup308: orml_vesting::module::Error<T>
+ * Lookup314: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup310: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup316: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -2438,19 +2505,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup311: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup317: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup314: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup320: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup317: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup323: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -2460,13 +2527,13 @@
lastIndex: 'u16'
},
/**
- * Lookup318: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup324: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup320: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup326: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
@@ -2477,29 +2544,29 @@
xcmpMaxIndividualWeight: 'u64'
},
/**
- * Lookup322: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup328: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup323: pallet_xcm::pallet::Error<T>
+ * Lookup329: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
},
/**
- * Lookup324: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup330: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup325: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup331: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
maxIndividual: 'u64'
},
/**
- * Lookup326: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup332: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -2507,20 +2574,185 @@
overweightCount: 'u64'
},
/**
- * Lookup329: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup335: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup333: pallet_unique::Error<T>
+ * Lookup339: pallet_unique::Error<T>
**/
PalletUniqueError: {
_enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']
},
/**
- * Lookup334: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ * Lookup342: pallet_unq_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
**/
+ PalletUnqSchedulerScheduledV3: {
+ maybeId: 'Option<[u8;16]>',
+ priority: 'u8',
+ call: 'FrameSupportScheduleMaybeHashed',
+ maybePeriodic: 'Option<(u32,u32)>',
+ origin: 'OpalRuntimeOriginCaller'
+ },
+ /**
+ * Lookup343: opal_runtime::OriginCaller
+ **/
+ OpalRuntimeOriginCaller: {
+ _enum: {
+ __Unused0: 'Null',
+ __Unused1: 'Null',
+ __Unused2: 'Null',
+ __Unused3: 'Null',
+ Void: 'SpCoreVoid',
+ __Unused5: 'Null',
+ __Unused6: 'Null',
+ __Unused7: 'Null',
+ __Unused8: 'Null',
+ __Unused9: 'Null',
+ __Unused10: 'Null',
+ __Unused11: 'Null',
+ __Unused12: 'Null',
+ __Unused13: 'Null',
+ __Unused14: 'Null',
+ __Unused15: 'Null',
+ __Unused16: 'Null',
+ __Unused17: 'Null',
+ __Unused18: 'Null',
+ __Unused19: 'Null',
+ __Unused20: 'Null',
+ __Unused21: 'Null',
+ __Unused22: 'Null',
+ __Unused23: 'Null',
+ __Unused24: 'Null',
+ __Unused25: 'Null',
+ __Unused26: 'Null',
+ __Unused27: 'Null',
+ __Unused28: 'Null',
+ __Unused29: 'Null',
+ __Unused30: 'Null',
+ __Unused31: 'Null',
+ __Unused32: 'Null',
+ __Unused33: 'Null',
+ __Unused34: 'Null',
+ __Unused35: 'Null',
+ system: 'FrameSupportDispatchRawOrigin',
+ __Unused37: 'Null',
+ __Unused38: 'Null',
+ __Unused39: 'Null',
+ __Unused40: 'Null',
+ __Unused41: 'Null',
+ __Unused42: 'Null',
+ __Unused43: 'Null',
+ __Unused44: 'Null',
+ __Unused45: 'Null',
+ __Unused46: 'Null',
+ __Unused47: 'Null',
+ __Unused48: 'Null',
+ __Unused49: 'Null',
+ __Unused50: 'Null',
+ PolkadotXcm: 'PalletXcmOrigin',
+ CumulusXcm: 'CumulusPalletXcmOrigin',
+ __Unused53: 'Null',
+ __Unused54: 'Null',
+ __Unused55: 'Null',
+ __Unused56: 'Null',
+ __Unused57: 'Null',
+ __Unused58: 'Null',
+ __Unused59: 'Null',
+ __Unused60: 'Null',
+ __Unused61: 'Null',
+ __Unused62: 'Null',
+ __Unused63: 'Null',
+ __Unused64: 'Null',
+ __Unused65: 'Null',
+ __Unused66: 'Null',
+ __Unused67: 'Null',
+ __Unused68: 'Null',
+ __Unused69: 'Null',
+ __Unused70: 'Null',
+ __Unused71: 'Null',
+ __Unused72: 'Null',
+ __Unused73: 'Null',
+ __Unused74: 'Null',
+ __Unused75: 'Null',
+ __Unused76: 'Null',
+ __Unused77: 'Null',
+ __Unused78: 'Null',
+ __Unused79: 'Null',
+ __Unused80: 'Null',
+ __Unused81: 'Null',
+ __Unused82: 'Null',
+ __Unused83: 'Null',
+ __Unused84: 'Null',
+ __Unused85: 'Null',
+ __Unused86: 'Null',
+ __Unused87: 'Null',
+ __Unused88: 'Null',
+ __Unused89: 'Null',
+ __Unused90: 'Null',
+ __Unused91: 'Null',
+ __Unused92: 'Null',
+ __Unused93: 'Null',
+ __Unused94: 'Null',
+ __Unused95: 'Null',
+ __Unused96: 'Null',
+ __Unused97: 'Null',
+ __Unused98: 'Null',
+ __Unused99: 'Null',
+ __Unused100: 'Null',
+ Ethereum: 'PalletEthereumRawOrigin'
+ }
+ },
+ /**
+ * Lookup344: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
+ **/
+ FrameSupportDispatchRawOrigin: {
+ _enum: {
+ Root: 'Null',
+ Signed: 'AccountId32',
+ None: 'Null'
+ }
+ },
+ /**
+ * Lookup345: pallet_xcm::pallet::Origin
+ **/
+ PalletXcmOrigin: {
+ _enum: {
+ Xcm: 'XcmV1MultiLocation',
+ Response: 'XcmV1MultiLocation'
+ }
+ },
+ /**
+ * Lookup346: cumulus_pallet_xcm::pallet::Origin
+ **/
+ CumulusPalletXcmOrigin: {
+ _enum: {
+ Relay: 'Null',
+ SiblingParachain: 'u32'
+ }
+ },
+ /**
+ * Lookup347: pallet_ethereum::RawOrigin
+ **/
+ PalletEthereumRawOrigin: {
+ _enum: {
+ EthereumTransaction: 'H160'
+ }
+ },
+ /**
+ * Lookup348: sp_core::Void
+ **/
+ SpCoreVoid: 'Null',
+ /**
+ * Lookup349: pallet_unq_scheduler::pallet::Error<T>
+ **/
+ PalletUnqSchedulerError: {
+ _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']
+ },
+ /**
+ * Lookup350: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ **/
UpDataStructsCollection: {
owner: 'AccountId32',
mode: 'UpDataStructsCollectionMode',
@@ -2533,7 +2765,7 @@
externalCollection: 'bool'
},
/**
- * Lookup335: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup351: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipState: {
_enum: {
@@ -2543,7 +2775,7 @@
}
},
/**
- * Lookup336: up_data_structs::Properties
+ * Lookup352: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -2551,15 +2783,15 @@
spaceLimit: 'u32'
},
/**
- * Lookup337: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup353: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
/**
- * Lookup342: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ * Lookup358: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
**/
UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
/**
- * Lookup349: up_data_structs::CollectionStats
+ * Lookup365: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -2567,25 +2799,25 @@
alive: 'u32'
},
/**
- * Lookup323: up_data_structs::TokenChild
+ * Lookup366: up_data_structs::TokenChild
**/
UpDataStructsTokenChild: {
token: 'u32',
collection: 'u32'
},
/**
- * Lookup324: PhantomType::up_data_structs<T>
+ * Lookup367: PhantomType::up_data_structs<T>
**/
PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
/**
- * Lookup326: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup369: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
properties: 'Vec<UpDataStructsProperty>',
owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>'
},
/**
- * Lookup328: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup371: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -2601,7 +2833,7 @@
readOnly: 'bool'
},
/**
- * Lookup329: up_data_structs::rmrk::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
+ * Lookup372: rmrk_traits::collection::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
**/
RmrkTraitsCollectionCollectionInfo: {
issuer: 'AccountId32',
@@ -2611,7 +2843,7 @@
nftsCount: 'u32'
},
/**
- * Lookup332: up_data_structs::rmrk::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup373: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsNftNftInfo: {
owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -2621,23 +2853,14 @@
pending: 'bool'
},
/**
- * Lookup333: up_data_structs::rmrk::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
- **/
- UpDataStructsRmrkAccountIdOrCollectionNftTuple: {
- _enum: {
- AccountId: 'AccountId32',
- CollectionAndNftTuple: '(u32,u32)'
- }
- },
- /**
- * Lookup335: up_data_structs::rmrk::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+ * Lookup375: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
**/
RmrkTraitsNftRoyaltyInfo: {
recipient: 'AccountId32',
amount: 'Permill'
},
/**
- * Lookup336: up_data_structs::rmrk::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup376: rmrk_traits::resource::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceInfo: {
id: 'u32',
@@ -2646,7 +2869,7 @@
pendingRemoval: 'bool'
},
/**
- * Lookup339: up_data_structs::rmrk::ResourceTypes<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup377: rmrk_traits::resource::ResourceTypes<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceTypes: {
_enum: {
@@ -2656,45 +2879,14 @@
}
},
/**
- * Lookup340: up_data_structs::rmrk::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
- **/
- UpDataStructsRmrkBasicResource: {
- src: 'Option<Bytes>',
- metadata: 'Option<Bytes>',
- license: 'Option<Bytes>',
- thumb: 'Option<Bytes>'
- },
- /**
- * Lookup342: up_data_structs::rmrk::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
- **/
- UpDataStructsRmrkComposableResource: {
- parts: 'Vec<u32>',
- base: 'u32',
- src: 'Option<Bytes>',
- metadata: 'Option<Bytes>',
- license: 'Option<Bytes>',
- thumb: 'Option<Bytes>'
- },
- /**
- * Lookup343: up_data_structs::rmrk::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup378: rmrk_traits::property::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
- UpDataStructsRmrkSlotResource: {
- base: 'u32',
- src: 'Option<Bytes>',
- metadata: 'Option<Bytes>',
- slot: 'u32',
- license: 'Option<Bytes>',
- thumb: 'Option<Bytes>'
- },
- /**
- * Lookup344: up_data_structs::rmrk::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
- **/
RmrkTraitsPropertyPropertyInfo: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup347: up_data_structs::rmrk::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup379: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsBaseBaseInfo: {
issuer: 'AccountId32',
@@ -2702,113 +2894,74 @@
symbol: 'Bytes'
},
/**
- * Lookup348: up_data_structs::rmrk::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
- **/
- UpDataStructsRmrkPartType: {
- _enum: {
- FixedPart: 'UpDataStructsRmrkFixedPart',
- SlotPart: 'UpDataStructsRmrkSlotPart'
- }
- },
- /**
- * Lookup350: up_data_structs::rmrk::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
- **/
- UpDataStructsRmrkFixedPart: {
- id: 'u32',
- z: 'u32',
- src: 'Bytes'
- },
- /**
- * Lookup351: up_data_structs::rmrk::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
- **/
- UpDataStructsRmrkSlotPart: {
- id: 'u32',
- equippable: 'UpDataStructsRmrkEquippableList',
- src: 'Bytes',
- z: 'u32'
- },
- /**
- * Lookup352: up_data_structs::rmrk::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
- **/
- UpDataStructsRmrkEquippableList: {
- _enum: {
- All: 'Null',
- Empty: 'Null',
- Custom: 'Vec<u32>'
- }
- },
- /**
- * Lookup353: up_data_structs::rmrk::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>
- **/
- UpDataStructsRmrkTheme: {
- name: 'Bytes',
- properties: 'Vec<UpDataStructsRmrkThemeProperty>',
- inherit: 'bool'
- },
- /**
- * Lookup355: up_data_structs::rmrk::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup380: rmrk_traits::nft::NftChild
**/
- UpDataStructsRmrkThemeProperty: {
- key: 'Bytes',
- value: 'Bytes'
- },
- /**
- * Lookup356: up_data_structs::rmrk::NftChild
- **/
RmrkTraitsNftNftChild: {
collectionId: 'u32',
nftId: 'u32'
},
/**
- * Lookup358: pallet_common::pallet::Error<T>
+ * Lookup382: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
_enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal']
},
/**
- * Lookup360: pallet_fungible::pallet::Error<T>
+ * Lookup384: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup361: pallet_refungible::ItemData
+ * Lookup385: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes'
},
/**
- * Lookup365: pallet_refungible::pallet::Error<T>
+ * Lookup389: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup366: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup390: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup368: pallet_nonfungible::pallet::Error<T>
+ * Lookup392: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup369: pallet_structure::pallet::Error<T>
+ * Lookup393: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'TokenNotFound']
},
/**
- * Lookup372: pallet_evm::pallet::Error<T>
+ * Lookup394: pallet_rmrk_core::pallet::Error<T>
**/
+ PalletRmrkCoreError: {
+ _enum: ['CorruptedCollectionType', 'NftTypeEncodeError', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'ResourceNotPending']
+ },
+ /**
+ * Lookup396: pallet_rmrk_equip::pallet::Error<T>
+ **/
+ PalletRmrkEquipError: {
+ _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst']
+ },
+ /**
+ * Lookup399: pallet_evm::pallet::Error<T>
+ **/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
},
/**
- * Lookup375: fp_rpc::TransactionStatus
+ * Lookup402: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -2820,11 +2973,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup377: ethbloom::Bloom
+ * Lookup404: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup379: ethereum::receipt::ReceiptV3
+ * Lookup406: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -2834,7 +2987,7 @@
}
},
/**
- * Lookup380: ethereum::receipt::EIP658ReceiptData
+ * Lookup407: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -2843,7 +2996,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup381: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup408: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -2851,7 +3004,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup382: ethereum::header::Header
+ * Lookup409: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -2871,41 +3024,41 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup383: ethereum_types::hash::H64
+ * Lookup410: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup388: pallet_ethereum::pallet::Error<T>
+ * Lookup415: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup389: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup416: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup390: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup417: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup392: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup419: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission']
},
/**
- * Lookup393: pallet_evm_migration::pallet::Error<T>
+ * Lookup420: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
},
/**
- * Lookup395: sp_runtime::MultiSignature
+ * Lookup422: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -2915,43 +3068,43 @@
}
},
/**
- * Lookup396: sp_core::ed25519::Signature
+ * Lookup423: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup398: sp_core::sr25519::Signature
+ * Lookup425: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup399: sp_core::ecdsa::Signature
+ * Lookup426: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup402: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup429: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup403: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup430: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup406: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup433: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup407: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup434: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup408: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup435: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup409: opal_runtime::Runtime
+ * Lookup436: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup410: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup437: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
**/
PalletEthereumFakeTransactionFinalizer: 'Null'
};
tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -1,7 +1,7 @@
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRmrkAccountIdOrCollectionNftTuple, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkBasicResource, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkComposableResource, UpDataStructsRmrkEquippableList, UpDataStructsRmrkFixedPart, UpDataStructsRmrkNftChild, UpDataStructsRmrkNftInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkResourceTypes, UpDataStructsRmrkRoyaltyInfo, UpDataStructsRmrkSlotPart, UpDataStructsRmrkSlotResource, UpDataStructsRmrkTheme, UpDataStructsRmrkThemeProperty, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUnqSchedulerCall, PalletUnqSchedulerError, PalletUnqSchedulerEvent, PalletUnqSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
export interface InterfaceTypes {
@@ -17,6 +17,7 @@
CumulusPalletXcmCall: CumulusPalletXcmCall;
CumulusPalletXcmError: CumulusPalletXcmError;
CumulusPalletXcmEvent: CumulusPalletXcmEvent;
+ CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;
CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;
CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;
CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;
@@ -46,7 +47,10 @@
EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;
EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;
FpRpcTransactionStatus: FpRpcTransactionStatus;
+ FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
FrameSupportPalletId: FrameSupportPalletId;
+ FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;
+ FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;
FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
FrameSupportWeightsDispatchClass: FrameSupportWeightsDispatchClass;
FrameSupportWeightsDispatchInfo: FrameSupportWeightsDispatchInfo;
@@ -70,6 +74,7 @@
FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;
FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
FrameSystemPhase: FrameSystemPhase;
+ OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;
OpalRuntimeRuntime: OpalRuntimeRuntime;
OrmlVestingModuleCall: OrmlVestingModuleCall;
OrmlVestingModuleError: OrmlVestingModuleError;
@@ -89,6 +94,7 @@
PalletEthereumError: PalletEthereumError;
PalletEthereumEvent: PalletEthereumEvent;
PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;
+ PalletEthereumRawOrigin: PalletEthereumRawOrigin;
PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;
PalletEvmCall: PalletEvmCall;
PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;
@@ -127,9 +133,14 @@
PalletUniqueCall: PalletUniqueCall;
PalletUniqueError: PalletUniqueError;
PalletUniqueRawEvent: PalletUniqueRawEvent;
+ PalletUnqSchedulerCall: PalletUnqSchedulerCall;
+ PalletUnqSchedulerError: PalletUnqSchedulerError;
+ PalletUnqSchedulerEvent: PalletUnqSchedulerEvent;
+ PalletUnqSchedulerScheduledV3: PalletUnqSchedulerScheduledV3;
PalletXcmCall: PalletXcmCall;
PalletXcmError: PalletXcmError;
PalletXcmEvent: PalletXcmEvent;
+ PalletXcmOrigin: PalletXcmOrigin;
PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;
PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;
PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
@@ -160,6 +171,7 @@
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
SpCoreEd25519Signature: SpCoreEd25519Signature;
SpCoreSr25519Signature: SpCoreSr25519Signature;
+ SpCoreVoid: SpCoreVoid;
SpRuntimeArithmeticError: SpRuntimeArithmeticError;
SpRuntimeDigest: SpRuntimeDigest;
SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth161 readonly amount: u128;161 readonly amount: u128;162 }162 }163163164 /** @name PalletBalancesReleases (50) */164 /** @name PalletBalancesReleases (51) */165 export interface PalletBalancesReleases extends Enum {165 export interface PalletBalancesReleases extends Enum {166 readonly isV100: boolean;166 readonly isV100: boolean;167 readonly isV200: boolean;167 readonly isV200: boolean;168 readonly type: 'V100' | 'V200';168 readonly type: 'V100' | 'V200';169 }169 }170170171 /** @name PalletBalancesCall (51) */171 /** @name PalletBalancesCall (52) */172 export interface PalletBalancesCall extends Enum {172 export interface PalletBalancesCall extends Enum {173 readonly isTransfer: boolean;173 readonly isTransfer: boolean;174 readonly asTransfer: {174 readonly asTransfer: {205 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';205 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';206 }206 }207207208 /** @name PalletBalancesEvent (57) */208 /** @name PalletBalancesEvent (58) */209 export interface PalletBalancesEvent extends Enum {209 export interface PalletBalancesEvent extends Enum {210 readonly isEndowed: boolean;210 readonly isEndowed: boolean;211 readonly asEndowed: {211 readonly asEndowed: {264 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';264 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';265 }265 }266266267 /** @name FrameSupportTokensMiscBalanceStatus (58) */267 /** @name FrameSupportTokensMiscBalanceStatus (59) */268 export interface FrameSupportTokensMiscBalanceStatus extends Enum {268 export interface FrameSupportTokensMiscBalanceStatus extends Enum {269 readonly isFree: boolean;269 readonly isFree: boolean;270 readonly isReserved: boolean;270 readonly isReserved: boolean;271 readonly type: 'Free' | 'Reserved';271 readonly type: 'Free' | 'Reserved';272 }272 }273273274 /** @name PalletBalancesError (59) */274 /** @name PalletBalancesError (60) */275 export interface PalletBalancesError extends Enum {275 export interface PalletBalancesError extends Enum {276 readonly isVestingBalance: boolean;276 readonly isVestingBalance: boolean;277 readonly isLiquidityRestrictions: boolean;277 readonly isLiquidityRestrictions: boolean;284 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';284 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';285 }285 }286286287 /** @name PalletTimestampCall (62) */287 /** @name PalletTimestampCall (63) */288 export interface PalletTimestampCall extends Enum {288 export interface PalletTimestampCall extends Enum {289 readonly isSet: boolean;289 readonly isSet: boolean;290 readonly asSet: {290 readonly asSet: {293 readonly type: 'Set';293 readonly type: 'Set';294 }294 }295295296 /** @name PalletTransactionPaymentReleases (65) */296 /** @name PalletTransactionPaymentReleases (66) */297 export interface PalletTransactionPaymentReleases extends Enum {297 export interface PalletTransactionPaymentReleases extends Enum {298 readonly isV1Ancient: boolean;298 readonly isV1Ancient: boolean;299 readonly isV2: boolean;299 readonly isV2: boolean;300 readonly type: 'V1Ancient' | 'V2';300 readonly type: 'V1Ancient' | 'V2';301 }301 }302302303 /** @name FrameSupportWeightsWeightToFeeCoefficient (67) */303 /** @name FrameSupportWeightsWeightToFeeCoefficient (68) */304 export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {304 export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {305 readonly coeffInteger: u128;305 readonly coeffInteger: u128;306 readonly coeffFrac: Perbill;306 readonly coeffFrac: Perbill;307 readonly negative: bool;307 readonly negative: bool;308 readonly degree: u8;308 readonly degree: u8;309 }309 }310310311 /** @name PalletTreasuryProposal (69) */311 /** @name PalletTreasuryProposal (70) */312 export interface PalletTreasuryProposal extends Struct {312 export interface PalletTreasuryProposal extends Struct {313 readonly proposer: AccountId32;313 readonly proposer: AccountId32;314 readonly value: u128;314 readonly value: u128;315 readonly beneficiary: AccountId32;315 readonly beneficiary: AccountId32;316 readonly bond: u128;316 readonly bond: u128;317 }317 }318318319 /** @name PalletTreasuryCall (72) */319 /** @name PalletTreasuryCall (73) */320 export interface PalletTreasuryCall extends Enum {320 export interface PalletTreasuryCall extends Enum {321 readonly isProposeSpend: boolean;321 readonly isProposeSpend: boolean;322 readonly asProposeSpend: {322 readonly asProposeSpend: {331 readonly asApproveProposal: {331 readonly asApproveProposal: {332 readonly proposalId: Compact<u32>;332 readonly proposalId: Compact<u32>;333 } & Struct;333 } & Struct;334 readonly isRemoveApproval: boolean;335 readonly asRemoveApproval: {336 readonly proposalId: Compact<u32>;337 } & Struct;334 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';338 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'RemoveApproval';335 }339 }336340337 /** @name PalletTreasuryEvent (74) */341 /** @name PalletTreasuryEvent (75) */338 export interface PalletTreasuryEvent extends Enum {342 export interface PalletTreasuryEvent extends Enum {339 readonly isProposed: boolean;343 readonly isProposed: boolean;340 readonly asProposed: {344 readonly asProposed: {370 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';374 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';371 }375 }372376373 /** @name FrameSupportPalletId (77) */377 /** @name FrameSupportPalletId (78) */374 export interface FrameSupportPalletId extends U8aFixed {}378 export interface FrameSupportPalletId extends U8aFixed {}375379376 /** @name PalletTreasuryError (78) */380 /** @name PalletTreasuryError (79) */377 export interface PalletTreasuryError extends Enum {381 export interface PalletTreasuryError extends Enum {378 readonly isInsufficientProposersBalance: boolean;382 readonly isInsufficientProposersBalance: boolean;379 readonly isInvalidIndex: boolean;383 readonly isInvalidIndex: boolean;380 readonly isTooManyApprovals: boolean;384 readonly isTooManyApprovals: boolean;385 readonly isProposalNotApproved: boolean;381 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';386 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'ProposalNotApproved';382 }387 }383388384 /** @name PalletSudoCall (79) */389 /** @name PalletSudoCall (80) */385 export interface PalletSudoCall extends Enum {390 export interface PalletSudoCall extends Enum {386 readonly isSudo: boolean;391 readonly isSudo: boolean;387 readonly asSudo: {392 readonly asSudo: {404 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';409 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';405 }410 }406411407 /** @name FrameSystemCall (81) */412 /** @name FrameSystemCall (82) */408 export interface FrameSystemCall extends Enum {413 export interface FrameSystemCall extends Enum {409 readonly isFillBlock: boolean;414 readonly isFillBlock: boolean;410 readonly asFillBlock: {415 readonly asFillBlock: {446 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';451 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';447 }452 }448453449 /** @name OrmlVestingModuleCall (84) */454 /** @name OrmlVestingModuleCall (85) */450 export interface OrmlVestingModuleCall extends Enum {455 export interface OrmlVestingModuleCall extends Enum {451 readonly isClaim: boolean;456 readonly isClaim: boolean;452 readonly isVestedTransfer: boolean;457 readonly isVestedTransfer: boolean;466 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';471 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';467 }472 }468473469 /** @name OrmlVestingVestingSchedule (85) */474 /** @name OrmlVestingVestingSchedule (86) */470 export interface OrmlVestingVestingSchedule extends Struct {475 export interface OrmlVestingVestingSchedule extends Struct {471 readonly start: u32;476 readonly start: u32;472 readonly period: u32;477 readonly period: u32;473 readonly periodCount: u32;478 readonly periodCount: u32;474 readonly perPeriod: Compact<u128>;479 readonly perPeriod: Compact<u128>;475 }480 }476481477 /** @name CumulusPalletXcmpQueueCall (87) */482 /** @name CumulusPalletXcmpQueueCall (88) */478 export interface CumulusPalletXcmpQueueCall extends Enum {483 export interface CumulusPalletXcmpQueueCall extends Enum {479 readonly isServiceOverweight: boolean;484 readonly isServiceOverweight: boolean;480 readonly asServiceOverweight: {485 readonly asServiceOverweight: {510 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';515 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';511 }516 }512517513 /** @name PalletXcmCall (88) */518 /** @name PalletXcmCall (89) */514 export interface PalletXcmCall extends Enum {519 export interface PalletXcmCall extends Enum {515 readonly isSend: boolean;520 readonly isSend: boolean;516 readonly asSend: {521 readonly asSend: {572 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';577 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';573 }578 }574579575 /** @name XcmVersionedMultiLocation (89) */580 /** @name XcmVersionedMultiLocation (90) */576 export interface XcmVersionedMultiLocation extends Enum {581 export interface XcmVersionedMultiLocation extends Enum {577 readonly isV0: boolean;582 readonly isV0: boolean;578 readonly asV0: XcmV0MultiLocation;583 readonly asV0: XcmV0MultiLocation;581 readonly type: 'V0' | 'V1';586 readonly type: 'V0' | 'V1';582 }587 }583588584 /** @name XcmV0MultiLocation (90) */589 /** @name XcmV0MultiLocation (91) */585 export interface XcmV0MultiLocation extends Enum {590 export interface XcmV0MultiLocation extends Enum {586 readonly isNull: boolean;591 readonly isNull: boolean;587 readonly isX1: boolean;592 readonly isX1: boolean;603 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';608 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';604 }609 }605610606 /** @name XcmV0Junction (91) */611 /** @name XcmV0Junction (92) */607 export interface XcmV0Junction extends Enum {612 export interface XcmV0Junction extends Enum {608 readonly isParent: boolean;613 readonly isParent: boolean;609 readonly isParachain: boolean;614 readonly isParachain: boolean;638 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';643 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';639 }644 }640645641 /** @name XcmV0JunctionNetworkId (92) */646 /** @name XcmV0JunctionNetworkId (93) */642 export interface XcmV0JunctionNetworkId extends Enum {647 export interface XcmV0JunctionNetworkId extends Enum {643 readonly isAny: boolean;648 readonly isAny: boolean;644 readonly isNamed: boolean;649 readonly isNamed: boolean;648 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';653 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';649 }654 }650655651 /** @name XcmV0JunctionBodyId (93) */656 /** @name XcmV0JunctionBodyId (94) */652 export interface XcmV0JunctionBodyId extends Enum {657 export interface XcmV0JunctionBodyId extends Enum {653 readonly isUnit: boolean;658 readonly isUnit: boolean;654 readonly isNamed: boolean;659 readonly isNamed: boolean;662 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';667 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';663 }668 }664669665 /** @name XcmV0JunctionBodyPart (94) */670 /** @name XcmV0JunctionBodyPart (95) */666 export interface XcmV0JunctionBodyPart extends Enum {671 export interface XcmV0JunctionBodyPart extends Enum {667 readonly isVoice: boolean;672 readonly isVoice: boolean;668 readonly isMembers: boolean;673 readonly isMembers: boolean;687 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';692 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';688 }693 }689694690 /** @name XcmV1MultiLocation (95) */695 /** @name XcmV1MultiLocation (96) */691 export interface XcmV1MultiLocation extends Struct {696 export interface XcmV1MultiLocation extends Struct {692 readonly parents: u8;697 readonly parents: u8;693 readonly interior: XcmV1MultilocationJunctions;698 readonly interior: XcmV1MultilocationJunctions;694 }699 }695700696 /** @name XcmV1MultilocationJunctions (96) */701 /** @name XcmV1MultilocationJunctions (97) */697 export interface XcmV1MultilocationJunctions extends Enum {702 export interface XcmV1MultilocationJunctions extends Enum {698 readonly isHere: boolean;703 readonly isHere: boolean;699 readonly isX1: boolean;704 readonly isX1: boolean;715 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';720 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';716 }721 }717722718 /** @name XcmV1Junction (97) */723 /** @name XcmV1Junction (98) */719 export interface XcmV1Junction extends Enum {724 export interface XcmV1Junction extends Enum {720 readonly isParachain: boolean;725 readonly isParachain: boolean;721 readonly asParachain: Compact<u32>;726 readonly asParachain: Compact<u32>;749 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';754 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';750 }755 }751756752 /** @name XcmVersionedXcm (98) */757 /** @name XcmVersionedXcm (99) */753 export interface XcmVersionedXcm extends Enum {758 export interface XcmVersionedXcm extends Enum {754 readonly isV0: boolean;759 readonly isV0: boolean;755 readonly asV0: XcmV0Xcm;760 readonly asV0: XcmV0Xcm;760 readonly type: 'V0' | 'V1' | 'V2';765 readonly type: 'V0' | 'V1' | 'V2';761 }766 }762767763 /** @name XcmV0Xcm (99) */768 /** @name XcmV0Xcm (100) */764 export interface XcmV0Xcm extends Enum {769 export interface XcmV0Xcm extends Enum {765 readonly isWithdrawAsset: boolean;770 readonly isWithdrawAsset: boolean;766 readonly asWithdrawAsset: {771 readonly asWithdrawAsset: {823 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';828 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';824 }829 }825830826 /** @name XcmV0MultiAsset (101) */831 /** @name XcmV0MultiAsset (102) */827 export interface XcmV0MultiAsset extends Enum {832 export interface XcmV0MultiAsset extends Enum {828 readonly isNone: boolean;833 readonly isNone: boolean;829 readonly isAll: boolean;834 readonly isAll: boolean;868 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';873 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';869 }874 }870875871 /** @name XcmV1MultiassetAssetInstance (102) */876 /** @name XcmV1MultiassetAssetInstance (103) */872 export interface XcmV1MultiassetAssetInstance extends Enum {877 export interface XcmV1MultiassetAssetInstance extends Enum {873 readonly isUndefined: boolean;878 readonly isUndefined: boolean;874 readonly isIndex: boolean;879 readonly isIndex: boolean;1643 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1648 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1644 }1649 }16501651 /** @name PalletUnqSchedulerCall (204) */1652 export interface PalletUnqSchedulerCall extends Enum {1653 readonly isScheduleNamed: boolean;1654 readonly asScheduleNamed: {1655 readonly id: U8aFixed;1656 readonly when: u32;1657 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;1658 readonly priority: u8;1659 readonly call: FrameSupportScheduleMaybeHashed;1660 } & Struct;1661 readonly isCancelNamed: boolean;1662 readonly asCancelNamed: {1663 readonly id: U8aFixed;1664 } & Struct;1665 readonly isScheduleNamedAfter: boolean;1666 readonly asScheduleNamedAfter: {1667 readonly id: U8aFixed;1668 readonly after: u32;1669 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;1670 readonly priority: u8;1671 readonly call: FrameSupportScheduleMaybeHashed;1672 } & Struct;1673 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';1674 }16751676 /** @name FrameSupportScheduleMaybeHashed (206) */1677 export interface FrameSupportScheduleMaybeHashed extends Enum {1678 readonly isValue: boolean;1679 readonly asValue: Call;1680 readonly isHash: boolean;1681 readonly asHash: H256;1682 readonly type: 'Value' | 'Hash';1683 }164516841646 /** @name PalletTemplateTransactionPaymentCall (204) */1685 /** @name PalletTemplateTransactionPaymentCall (207) */1647 export type PalletTemplateTransactionPaymentCall = Null;1686 export type PalletTemplateTransactionPaymentCall = Null;164816871649 /** @name PalletStructureCall (205) */1688 /** @name PalletStructureCall (208) */1650 export type PalletStructureCall = Null;1689 export type PalletStructureCall = Null;165116901652 /** @name PalletRmrkCoreCall (206) */1691 /** @name PalletRmrkCoreCall (209) */1653 export interface PalletRmrkCoreCall extends Enum {1692 export interface PalletRmrkCoreCall extends Enum {1654 readonly isCreateCollection: boolean;1693 readonly isCreateCollection: boolean;1655 readonly asCreateCollection: {1694 readonly asCreateCollection: {1754 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';1793 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';1755 }1794 }175617951757 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (210) */1796 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (213) */1758 export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1797 export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1759 readonly isAccountId: boolean;1798 readonly isAccountId: boolean;1760 readonly asAccountId: AccountId32;1799 readonly asAccountId: AccountId32;1763 readonly type: 'AccountId' | 'CollectionAndNftTuple';1802 readonly type: 'AccountId' | 'CollectionAndNftTuple';1764 }1803 }176518041766 /** @name RmrkTraitsResourceBasicResource (214) */1805 /** @name RmrkTraitsResourceBasicResource (217) */1767 export interface RmrkTraitsResourceBasicResource extends Struct {1806 export interface RmrkTraitsResourceBasicResource extends Struct {1768 readonly src: Option<Bytes>;1807 readonly src: Option<Bytes>;1769 readonly metadata: Option<Bytes>;1808 readonly metadata: Option<Bytes>;1770 readonly license: Option<Bytes>;1809 readonly license: Option<Bytes>;1771 readonly thumb: Option<Bytes>;1810 readonly thumb: Option<Bytes>;1772 }1811 }177318121774 /** @name RmrkTraitsResourceComposableResource (217) */1813 /** @name RmrkTraitsResourceComposableResource (220) */1775 export interface RmrkTraitsResourceComposableResource extends Struct {1814 export interface RmrkTraitsResourceComposableResource extends Struct {1776 readonly parts: Vec<u32>;1815 readonly parts: Vec<u32>;1777 readonly base: u32;1816 readonly base: u32;1781 readonly thumb: Option<Bytes>;1820 readonly thumb: Option<Bytes>;1782 }1821 }178318221784 /** @name RmrkTraitsResourceSlotResource (219) */1823 /** @name RmrkTraitsResourceSlotResource (222) */1785 export interface RmrkTraitsResourceSlotResource extends Struct {1824 export interface RmrkTraitsResourceSlotResource extends Struct {1786 readonly base: u32;1825 readonly base: u32;1787 readonly src: Option<Bytes>;1826 readonly src: Option<Bytes>;1791 readonly thumb: Option<Bytes>;1830 readonly thumb: Option<Bytes>;1792 }1831 }179318321794 /** @name PalletRmrkEquipCall (220) */1833 /** @name PalletRmrkEquipCall (223) */1795 export interface PalletRmrkEquipCall extends Enum {1834 export interface PalletRmrkEquipCall extends Enum {1796 readonly isCreateBase: boolean;1835 readonly isCreateBase: boolean;1797 readonly asCreateBase: {1836 readonly asCreateBase: {1807 readonly type: 'CreateBase' | 'ThemeAdd';1846 readonly type: 'CreateBase' | 'ThemeAdd';1808 }1847 }180918481810 /** @name RmrkTraitsPartPartType (222) */1849 /** @name RmrkTraitsPartPartType (225) */1811 export interface RmrkTraitsPartPartType extends Enum {1850 export interface RmrkTraitsPartPartType extends Enum {1812 readonly isFixedPart: boolean;1851 readonly isFixedPart: boolean;1813 readonly asFixedPart: RmrkTraitsPartFixedPart;1852 readonly asFixedPart: RmrkTraitsPartFixedPart;1816 readonly type: 'FixedPart' | 'SlotPart';1855 readonly type: 'FixedPart' | 'SlotPart';1817 }1856 }181818571819 /** @name RmrkTraitsPartFixedPart (224) */1858 /** @name RmrkTraitsPartFixedPart (227) */1820 export interface RmrkTraitsPartFixedPart extends Struct {1859 export interface RmrkTraitsPartFixedPart extends Struct {1821 readonly id: u32;1860 readonly id: u32;1822 readonly z: u32;1861 readonly z: u32;1823 readonly src: Bytes;1862 readonly src: Bytes;1824 }1863 }182518641826 /** @name RmrkTraitsPartSlotPart (225) */1865 /** @name RmrkTraitsPartSlotPart (228) */1827 export interface RmrkTraitsPartSlotPart extends Struct {1866 export interface RmrkTraitsPartSlotPart extends Struct {1828 readonly id: u32;1867 readonly id: u32;1829 readonly equippable: RmrkTraitsPartEquippableList;1868 readonly equippable: RmrkTraitsPartEquippableList;1830 readonly src: Bytes;1869 readonly src: Bytes;1831 readonly z: u32;1870 readonly z: u32;1832 }1871 }183318721834 /** @name RmrkTraitsPartEquippableList (226) */1873 /** @name RmrkTraitsPartEquippableList (229) */1835 export interface RmrkTraitsPartEquippableList extends Enum {1874 export interface RmrkTraitsPartEquippableList extends Enum {1836 readonly isAll: boolean;1875 readonly isAll: boolean;1837 readonly isEmpty: boolean;1876 readonly isEmpty: boolean;1840 readonly type: 'All' | 'Empty' | 'Custom';1879 readonly type: 'All' | 'Empty' | 'Custom';1841 }1880 }184218811843 /** @name RmrkTraitsTheme (228) */1882 /** @name RmrkTraitsTheme (231) */1844 export interface RmrkTraitsTheme extends Struct {1883 export interface RmrkTraitsTheme extends Struct {1845 readonly name: Bytes;1884 readonly name: Bytes;1846 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;1885 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;1847 readonly inherit: bool;1886 readonly inherit: bool;1848 }1887 }184918881850 /** @name RmrkTraitsThemeThemeProperty (230) */1889 /** @name RmrkTraitsThemeThemeProperty (233) */1851 export interface RmrkTraitsThemeThemeProperty extends Struct {1890 export interface RmrkTraitsThemeThemeProperty extends Struct {1852 readonly key: Bytes;1891 readonly key: Bytes;1853 readonly value: Bytes;1892 readonly value: Bytes;1854 }1893 }185518941856 /** @name PalletEvmCall (231) */1895 /** @name PalletEvmCall (234) */1857 export interface PalletEvmCall extends Enum {1896 export interface PalletEvmCall extends Enum {1858 readonly isWithdraw: boolean;1897 readonly isWithdraw: boolean;1859 readonly asWithdraw: {1898 readonly asWithdraw: {1898 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1937 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1899 }1938 }190019391901 /** @name PalletEthereumCall (237) */1940 /** @name PalletEthereumCall (240) */1902 export interface PalletEthereumCall extends Enum {1941 export interface PalletEthereumCall extends Enum {1903 readonly isTransact: boolean;1942 readonly isTransact: boolean;1904 readonly asTransact: {1943 readonly asTransact: {1907 readonly type: 'Transact';1946 readonly type: 'Transact';1908 }1947 }190919481910 /** @name EthereumTransactionTransactionV2 (238) */1949 /** @name EthereumTransactionTransactionV2 (241) */1911 export interface EthereumTransactionTransactionV2 extends Enum {1950 export interface EthereumTransactionTransactionV2 extends Enum {1912 readonly isLegacy: boolean;1951 readonly isLegacy: boolean;1913 readonly asLegacy: EthereumTransactionLegacyTransaction;1952 readonly asLegacy: EthereumTransactionLegacyTransaction;1918 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';1957 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';1919 }1958 }192019591921 /** @name EthereumTransactionLegacyTransaction (239) */1960 /** @name EthereumTransactionLegacyTransaction (242) */1922 export interface EthereumTransactionLegacyTransaction extends Struct {1961 export interface EthereumTransactionLegacyTransaction extends Struct {1923 readonly nonce: U256;1962 readonly nonce: U256;1924 readonly gasPrice: U256;1963 readonly gasPrice: U256;1929 readonly signature: EthereumTransactionTransactionSignature;1968 readonly signature: EthereumTransactionTransactionSignature;1930 }1969 }193119701932 /** @name EthereumTransactionTransactionAction (240) */1971 /** @name EthereumTransactionTransactionAction (243) */1933 export interface EthereumTransactionTransactionAction extends Enum {1972 export interface EthereumTransactionTransactionAction extends Enum {1934 readonly isCall: boolean;1973 readonly isCall: boolean;1935 readonly asCall: H160;1974 readonly asCall: H160;1936 readonly isCreate: boolean;1975 readonly isCreate: boolean;1937 readonly type: 'Call' | 'Create';1976 readonly type: 'Call' | 'Create';1938 }1977 }193919781940 /** @name EthereumTransactionTransactionSignature (241) */1979 /** @name EthereumTransactionTransactionSignature (244) */1941 export interface EthereumTransactionTransactionSignature extends Struct {1980 export interface EthereumTransactionTransactionSignature extends Struct {1942 readonly v: u64;1981 readonly v: u64;1943 readonly r: H256;1982 readonly r: H256;1944 readonly s: H256;1983 readonly s: H256;1945 }1984 }194619851947 /** @name EthereumTransactionEip2930Transaction (243) */1986 /** @name EthereumTransactionEip2930Transaction (246) */1948 export interface EthereumTransactionEip2930Transaction extends Struct {1987 export interface EthereumTransactionEip2930Transaction extends Struct {1949 readonly chainId: u64;1988 readonly chainId: u64;1950 readonly nonce: U256;1989 readonly nonce: U256;1959 readonly s: H256;1998 readonly s: H256;1960 }1999 }196120001962 /** @name EthereumTransactionAccessListItem (245) */2001 /** @name EthereumTransactionAccessListItem (248) */1963 export interface EthereumTransactionAccessListItem extends Struct {2002 export interface EthereumTransactionAccessListItem extends Struct {1964 readonly address: H160;2003 readonly address: H160;1965 readonly storageKeys: Vec<H256>;2004 readonly storageKeys: Vec<H256>;1966 }2005 }196720061968 /** @name EthereumTransactionEip1559Transaction (246) */2007 /** @name EthereumTransactionEip1559Transaction (249) */1969 export interface EthereumTransactionEip1559Transaction extends Struct {2008 export interface EthereumTransactionEip1559Transaction extends Struct {1970 readonly chainId: u64;2009 readonly chainId: u64;1971 readonly nonce: U256;2010 readonly nonce: U256;1981 readonly s: H256;2020 readonly s: H256;1982 }2021 }198320221984 /** @name PalletEvmMigrationCall (247) */2023 /** @name PalletEvmMigrationCall (250) */1985 export interface PalletEvmMigrationCall extends Enum {2024 export interface PalletEvmMigrationCall extends Enum {1986 readonly isBegin: boolean;2025 readonly isBegin: boolean;1987 readonly asBegin: {2026 readonly asBegin: {2000 readonly type: 'Begin' | 'SetData' | 'Finish';2039 readonly type: 'Begin' | 'SetData' | 'Finish';2001 }2040 }200220412003 /** @name PalletSudoEvent (250) */2042 /** @name PalletSudoEvent (253) */2004 export interface PalletSudoEvent extends Enum {2043 export interface PalletSudoEvent extends Enum {2005 readonly isSudid: boolean;2044 readonly isSudid: boolean;2006 readonly asSudid: {2045 readonly asSudid: {2017 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';2056 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';2018 }2057 }201920582020 /** @name SpRuntimeDispatchError (252) */2059 /** @name SpRuntimeDispatchError (255) */2021 export interface SpRuntimeDispatchError extends Enum {2060 export interface SpRuntimeDispatchError extends Enum {2022 readonly isOther: boolean;2061 readonly isOther: boolean;2023 readonly isCannotLookup: boolean;2062 readonly isCannotLookup: boolean;2036 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';2075 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';2037 }2076 }203820772039 /** @name SpRuntimeModuleError (253) */2078 /** @name SpRuntimeModuleError (256) */2040 export interface SpRuntimeModuleError extends Struct {2079 export interface SpRuntimeModuleError extends Struct {2041 readonly index: u8;2080 readonly index: u8;2042 readonly error: U8aFixed;2081 readonly error: U8aFixed;2043 }2082 }204420832045 /** @name SpRuntimeTokenError (254) */2084 /** @name SpRuntimeTokenError (257) */2046 export interface SpRuntimeTokenError extends Enum {2085 export interface SpRuntimeTokenError extends Enum {2047 readonly isNoFunds: boolean;2086 readonly isNoFunds: boolean;2048 readonly isWouldDie: boolean;2087 readonly isWouldDie: boolean;2054 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2093 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2055 }2094 }205620952057 /** @name SpRuntimeArithmeticError (255) */2096 /** @name SpRuntimeArithmeticError (258) */2058 export interface SpRuntimeArithmeticError extends Enum {2097 export interface SpRuntimeArithmeticError extends Enum {2059 readonly isUnderflow: boolean;2098 readonly isUnderflow: boolean;2060 readonly isOverflow: boolean;2099 readonly isOverflow: boolean;2061 readonly isDivisionByZero: boolean;2100 readonly isDivisionByZero: boolean;2062 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2101 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2063 }2102 }206421032065 /** @name SpRuntimeTransactionalError (256) */2104 /** @name SpRuntimeTransactionalError (259) */2066 export interface SpRuntimeTransactionalError extends Enum {2105 export interface SpRuntimeTransactionalError extends Enum {2067 readonly isLimitReached: boolean;2106 readonly isLimitReached: boolean;2068 readonly isNoLayer: boolean;2107 readonly isNoLayer: boolean;2069 readonly type: 'LimitReached' | 'NoLayer';2108 readonly type: 'LimitReached' | 'NoLayer';2070 }2109 }207121102072 /** @name PalletSudoError (257) */2111 /** @name PalletSudoError (260) */2073 export interface PalletSudoError extends Enum {2112 export interface PalletSudoError extends Enum {2074 readonly isRequireSudo: boolean;2113 readonly isRequireSudo: boolean;2075 readonly type: 'RequireSudo';2114 readonly type: 'RequireSudo';2076 }2115 }207721162078 /** @name FrameSystemAccountInfo (258) */2117 /** @name FrameSystemAccountInfo (261) */2079 export interface FrameSystemAccountInfo extends Struct {2118 export interface FrameSystemAccountInfo extends Struct {2080 readonly nonce: u32;2119 readonly nonce: u32;2081 readonly consumers: u32;2120 readonly consumers: u32;2084 readonly data: PalletBalancesAccountData;2123 readonly data: PalletBalancesAccountData;2085 }2124 }208621252087 /** @name FrameSupportWeightsPerDispatchClassU64 (259) */2126 /** @name FrameSupportWeightsPerDispatchClassU64 (262) */2088 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {2127 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {2089 readonly normal: u64;2128 readonly normal: u64;2090 readonly operational: u64;2129 readonly operational: u64;2091 readonly mandatory: u64;2130 readonly mandatory: u64;2092 }2131 }209321322094 /** @name SpRuntimeDigest (260) */2133 /** @name SpRuntimeDigest (263) */2095 export interface SpRuntimeDigest extends Struct {2134 export interface SpRuntimeDigest extends Struct {2096 readonly logs: Vec<SpRuntimeDigestDigestItem>;2135 readonly logs: Vec<SpRuntimeDigestDigestItem>;2097 }2136 }209821372099 /** @name SpRuntimeDigestDigestItem (262) */2138 /** @name SpRuntimeDigestDigestItem (265) */2100 export interface SpRuntimeDigestDigestItem extends Enum {2139 export interface SpRuntimeDigestDigestItem extends Enum {2101 readonly isOther: boolean;2140 readonly isOther: boolean;2102 readonly asOther: Bytes;2141 readonly asOther: Bytes;2110 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2149 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2111 }2150 }211221512113 /** @name FrameSystemEventRecord (264) */2152 /** @name FrameSystemEventRecord (267) */2114 export interface FrameSystemEventRecord extends Struct {2153 export interface FrameSystemEventRecord extends Struct {2115 readonly phase: FrameSystemPhase;2154 readonly phase: FrameSystemPhase;2116 readonly event: Event;2155 readonly event: Event;2117 readonly topics: Vec<H256>;2156 readonly topics: Vec<H256>;2118 }2157 }211921582120 /** @name FrameSystemEvent (266) */2159 /** @name FrameSystemEvent (269) */2121 export interface FrameSystemEvent extends Enum {2160 export interface FrameSystemEvent extends Enum {2122 readonly isExtrinsicSuccess: boolean;2161 readonly isExtrinsicSuccess: boolean;2123 readonly asExtrinsicSuccess: {2162 readonly asExtrinsicSuccess: {2145 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';2184 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';2146 }2185 }214721862148 /** @name FrameSupportWeightsDispatchInfo (267) */2187 /** @name FrameSupportWeightsDispatchInfo (270) */2149 export interface FrameSupportWeightsDispatchInfo extends Struct {2188 export interface FrameSupportWeightsDispatchInfo extends Struct {2150 readonly weight: u64;2189 readonly weight: u64;2151 readonly class: FrameSupportWeightsDispatchClass;2190 readonly class: FrameSupportWeightsDispatchClass;2152 readonly paysFee: FrameSupportWeightsPays;2191 readonly paysFee: FrameSupportWeightsPays;2153 }2192 }215421932155 /** @name FrameSupportWeightsDispatchClass (268) */2194 /** @name FrameSupportWeightsDispatchClass (271) */2156 export interface FrameSupportWeightsDispatchClass extends Enum {2195 export interface FrameSupportWeightsDispatchClass extends Enum {2157 readonly isNormal: boolean;2196 readonly isNormal: boolean;2158 readonly isOperational: boolean;2197 readonly isOperational: boolean;2159 readonly isMandatory: boolean;2198 readonly isMandatory: boolean;2160 readonly type: 'Normal' | 'Operational' | 'Mandatory';2199 readonly type: 'Normal' | 'Operational' | 'Mandatory';2161 }2200 }216222012163 /** @name FrameSupportWeightsPays (269) */2202 /** @name FrameSupportWeightsPays (272) */2164 export interface FrameSupportWeightsPays extends Enum {2203 export interface FrameSupportWeightsPays extends Enum {2165 readonly isYes: boolean;2204 readonly isYes: boolean;2166 readonly isNo: boolean;2205 readonly isNo: boolean;2167 readonly type: 'Yes' | 'No';2206 readonly type: 'Yes' | 'No';2168 }2207 }216922082170 /** @name OrmlVestingModuleEvent (270) */2209 /** @name OrmlVestingModuleEvent (273) */2171 export interface OrmlVestingModuleEvent extends Enum {2210 export interface OrmlVestingModuleEvent extends Enum {2172 readonly isVestingScheduleAdded: boolean;2211 readonly isVestingScheduleAdded: boolean;2173 readonly asVestingScheduleAdded: {2212 readonly asVestingScheduleAdded: {2187 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';2226 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';2188 }2227 }218922282190 /** @name CumulusPalletXcmpQueueEvent (271) */2229 /** @name CumulusPalletXcmpQueueEvent (274) */2191 export interface CumulusPalletXcmpQueueEvent extends Enum {2230 export interface CumulusPalletXcmpQueueEvent extends Enum {2192 readonly isSuccess: boolean;2231 readonly isSuccess: boolean;2193 readonly asSuccess: Option<H256>;2232 readonly asSuccess: Option<H256>;2208 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';2247 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';2209 }2248 }221022492211 /** @name PalletXcmEvent (272) */2250 /** @name PalletXcmEvent (275) */2212 export interface PalletXcmEvent extends Enum {2251 export interface PalletXcmEvent extends Enum {2213 readonly isAttempted: boolean;2252 readonly isAttempted: boolean;2214 readonly asAttempted: XcmV2TraitsOutcome;2253 readonly asAttempted: XcmV2TraitsOutcome;2245 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2284 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2246 }2285 }224722862248 /** @name XcmV2TraitsOutcome (273) */2287 /** @name XcmV2TraitsOutcome (276) */2249 export interface XcmV2TraitsOutcome extends Enum {2288 export interface XcmV2TraitsOutcome extends Enum {2250 readonly isComplete: boolean;2289 readonly isComplete: boolean;2251 readonly asComplete: u64;2290 readonly asComplete: u64;2256 readonly type: 'Complete' | 'Incomplete' | 'Error';2295 readonly type: 'Complete' | 'Incomplete' | 'Error';2257 }2296 }225822972259 /** @name CumulusPalletXcmEvent (275) */2298 /** @name CumulusPalletXcmEvent (278) */2260 export interface CumulusPalletXcmEvent extends Enum {2299 export interface CumulusPalletXcmEvent extends Enum {2261 readonly isInvalidFormat: boolean;2300 readonly isInvalidFormat: boolean;2262 readonly asInvalidFormat: U8aFixed;2301 readonly asInvalidFormat: U8aFixed;2267 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';2306 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';2268 }2307 }226923082270 /** @name CumulusPalletDmpQueueEvent (276) */2309 /** @name CumulusPalletDmpQueueEvent (279) */2271 export interface CumulusPalletDmpQueueEvent extends Enum {2310 export interface CumulusPalletDmpQueueEvent extends Enum {2272 readonly isInvalidFormat: boolean;2311 readonly isInvalidFormat: boolean;2273 readonly asInvalidFormat: U8aFixed;2312 readonly asInvalidFormat: U8aFixed;2284 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2323 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2285 }2324 }228623252287 /** @name PalletUniqueRawEvent (277) */2326 /** @name PalletUniqueRawEvent (280) */2288 export interface PalletUniqueRawEvent extends Enum {2327 export interface PalletUniqueRawEvent extends Enum {2289 readonly isCollectionSponsorRemoved: boolean;2328 readonly isCollectionSponsorRemoved: boolean;2290 readonly asCollectionSponsorRemoved: u32;2329 readonly asCollectionSponsorRemoved: u32;2309 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';2348 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';2310 }2349 }23502351 /** @name PalletUnqSchedulerEvent (281) */2352 export interface PalletUnqSchedulerEvent extends Enum {2353 readonly isScheduled: boolean;2354 readonly asScheduled: {2355 readonly when: u32;2356 readonly index: u32;2357 } & Struct;2358 readonly isCanceled: boolean;2359 readonly asCanceled: {2360 readonly when: u32;2361 readonly index: u32;2362 } & Struct;2363 readonly isDispatched: boolean;2364 readonly asDispatched: {2365 readonly task: ITuple<[u32, u32]>;2366 readonly id: Option<U8aFixed>;2367 readonly result: Result<Null, SpRuntimeDispatchError>;2368 } & Struct;2369 readonly isCallLookupFailed: boolean;2370 readonly asCallLookupFailed: {2371 readonly task: ITuple<[u32, u32]>;2372 readonly id: Option<U8aFixed>;2373 readonly error: FrameSupportScheduleLookupError;2374 } & Struct;2375 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'CallLookupFailed';2376 }23772378 /** @name FrameSupportScheduleLookupError (283) */2379 export interface FrameSupportScheduleLookupError extends Enum {2380 readonly isUnknown: boolean;2381 readonly isBadFormat: boolean;2382 readonly type: 'Unknown' | 'BadFormat';2383 }231123842312 /** @name PalletCommonEvent (278) */2385 /** @name PalletCommonEvent (284) */2313 export interface PalletCommonEvent extends Enum {2386 export interface PalletCommonEvent extends Enum {2314 readonly isCollectionCreated: boolean;2387 readonly isCollectionCreated: boolean;2315 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2388 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2336 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';2409 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';2337 }2410 }233824112339 /** @name PalletStructureEvent (279) */2412 /** @name PalletStructureEvent (285) */2340 export interface PalletStructureEvent extends Enum {2413 export interface PalletStructureEvent extends Enum {2341 readonly isExecuted: boolean;2414 readonly isExecuted: boolean;2342 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2415 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2343 readonly type: 'Executed';2416 readonly type: 'Executed';2344 }2417 }234524182346 /** @name PalletRmrkCoreEvent (280) */2419 /** @name PalletRmrkCoreEvent (286) */2347 export interface PalletRmrkCoreEvent extends Enum {2420 export interface PalletRmrkCoreEvent extends Enum {2348 readonly isCollectionCreated: boolean;2421 readonly isCollectionCreated: boolean;2349 readonly asCollectionCreated: {2422 readonly asCollectionCreated: {2433 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';2506 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';2434 }2507 }243525082436 /** @name PalletRmrkEquipEvent (281) */2509 /** @name PalletRmrkEquipEvent (287) */2437 export interface PalletRmrkEquipEvent extends Enum {2510 export interface PalletRmrkEquipEvent extends Enum {2438 readonly isBaseCreated: boolean;2511 readonly isBaseCreated: boolean;2439 readonly asBaseCreated: {2512 readonly asBaseCreated: {2443 readonly type: 'BaseCreated';2516 readonly type: 'BaseCreated';2444 }2517 }244525182446 /** @name PalletEvmEvent (282) */2519 /** @name PalletEvmEvent (288) */2447 export interface PalletEvmEvent extends Enum {2520 export interface PalletEvmEvent extends Enum {2448 readonly isLog: boolean;2521 readonly isLog: boolean;2449 readonly asLog: EthereumLog;2522 readonly asLog: EthereumLog;2462 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2535 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2463 }2536 }246425372465 /** @name EthereumLog (283) */2538 /** @name EthereumLog (289) */2466 export interface EthereumLog extends Struct {2539 export interface EthereumLog extends Struct {2467 readonly address: H160;2540 readonly address: H160;2468 readonly topics: Vec<H256>;2541 readonly topics: Vec<H256>;2469 readonly data: Bytes;2542 readonly data: Bytes;2470 }2543 }247125442472 /** @name PalletEthereumEvent (284) */2545 /** @name PalletEthereumEvent (290) */2473 export interface PalletEthereumEvent extends Enum {2546 export interface PalletEthereumEvent extends Enum {2474 readonly isExecuted: boolean;2547 readonly isExecuted: boolean;2475 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2548 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2476 readonly type: 'Executed';2549 readonly type: 'Executed';2477 }2550 }247825512479 /** @name EvmCoreErrorExitReason (285) */2552 /** @name EvmCoreErrorExitReason (291) */2480 export interface EvmCoreErrorExitReason extends Enum {2553 export interface EvmCoreErrorExitReason extends Enum {2481 readonly isSucceed: boolean;2554 readonly isSucceed: boolean;2482 readonly asSucceed: EvmCoreErrorExitSucceed;2555 readonly asSucceed: EvmCoreErrorExitSucceed;2489 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2562 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2490 }2563 }249125642492 /** @name EvmCoreErrorExitSucceed (286) */2565 /** @name EvmCoreErrorExitSucceed (292) */2493 export interface EvmCoreErrorExitSucceed extends Enum {2566 export interface EvmCoreErrorExitSucceed extends Enum {2494 readonly isStopped: boolean;2567 readonly isStopped: boolean;2495 readonly isReturned: boolean;2568 readonly isReturned: boolean;2496 readonly isSuicided: boolean;2569 readonly isSuicided: boolean;2497 readonly type: 'Stopped' | 'Returned' | 'Suicided';2570 readonly type: 'Stopped' | 'Returned' | 'Suicided';2498 }2571 }249925722500 /** @name EvmCoreErrorExitError (287) */2573 /** @name EvmCoreErrorExitError (293) */2501 export interface EvmCoreErrorExitError extends Enum {2574 export interface EvmCoreErrorExitError extends Enum {2502 readonly isStackUnderflow: boolean;2575 readonly isStackUnderflow: boolean;2503 readonly isStackOverflow: boolean;2576 readonly isStackOverflow: boolean;2518 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';2591 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';2519 }2592 }252025932521 /** @name EvmCoreErrorExitRevert (290) */2594 /** @name EvmCoreErrorExitRevert (296) */2522 export interface EvmCoreErrorExitRevert extends Enum {2595 export interface EvmCoreErrorExitRevert extends Enum {2523 readonly isReverted: boolean;2596 readonly isReverted: boolean;2524 readonly type: 'Reverted';2597 readonly type: 'Reverted';2525 }2598 }252625992527 /** @name EvmCoreErrorExitFatal (291) */2600 /** @name EvmCoreErrorExitFatal (297) */2528 export interface EvmCoreErrorExitFatal extends Enum {2601 export interface EvmCoreErrorExitFatal extends Enum {2529 readonly isNotSupported: boolean;2602 readonly isNotSupported: boolean;2530 readonly isUnhandledInterrupt: boolean;2603 readonly isUnhandledInterrupt: boolean;2535 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2608 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2536 }2609 }253726102538 /** @name FrameSystemPhase (292) */2611 /** @name FrameSystemPhase (298) */2539 export interface FrameSystemPhase extends Enum {2612 export interface FrameSystemPhase extends Enum {2540 readonly isApplyExtrinsic: boolean;2613 readonly isApplyExtrinsic: boolean;2541 readonly asApplyExtrinsic: u32;2614 readonly asApplyExtrinsic: u32;2544 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2617 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2545 }2618 }254626192547 /** @name FrameSystemLastRuntimeUpgradeInfo (294) */2620 /** @name FrameSystemLastRuntimeUpgradeInfo (300) */2548 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2621 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2549 readonly specVersion: Compact<u32>;2622 readonly specVersion: Compact<u32>;2550 readonly specName: Text;2623 readonly specName: Text;2551 }2624 }255226252553 /** @name FrameSystemLimitsBlockWeights (295) */2626 /** @name FrameSystemLimitsBlockWeights (301) */2554 export interface FrameSystemLimitsBlockWeights extends Struct {2627 export interface FrameSystemLimitsBlockWeights extends Struct {2555 readonly baseBlock: u64;2628 readonly baseBlock: u64;2556 readonly maxBlock: u64;2629 readonly maxBlock: u64;2557 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2630 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2558 }2631 }255926322560 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (296) */2633 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (302) */2561 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2634 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2562 readonly normal: FrameSystemLimitsWeightsPerClass;2635 readonly normal: FrameSystemLimitsWeightsPerClass;2563 readonly operational: FrameSystemLimitsWeightsPerClass;2636 readonly operational: FrameSystemLimitsWeightsPerClass;2564 readonly mandatory: FrameSystemLimitsWeightsPerClass;2637 readonly mandatory: FrameSystemLimitsWeightsPerClass;2565 }2638 }256626392567 /** @name FrameSystemLimitsWeightsPerClass (297) */2640 /** @name FrameSystemLimitsWeightsPerClass (303) */2568 export interface FrameSystemLimitsWeightsPerClass extends Struct {2641 export interface FrameSystemLimitsWeightsPerClass extends Struct {2569 readonly baseExtrinsic: u64;2642 readonly baseExtrinsic: u64;2570 readonly maxExtrinsic: Option<u64>;2643 readonly maxExtrinsic: Option<u64>;2571 readonly maxTotal: Option<u64>;2644 readonly maxTotal: Option<u64>;2572 readonly reserved: Option<u64>;2645 readonly reserved: Option<u64>;2573 }2646 }257426472575 /** @name FrameSystemLimitsBlockLength (299) */2648 /** @name FrameSystemLimitsBlockLength (305) */2576 export interface FrameSystemLimitsBlockLength extends Struct {2649 export interface FrameSystemLimitsBlockLength extends Struct {2577 readonly max: FrameSupportWeightsPerDispatchClassU32;2650 readonly max: FrameSupportWeightsPerDispatchClassU32;2578 }2651 }257926522580 /** @name FrameSupportWeightsPerDispatchClassU32 (300) */2653 /** @name FrameSupportWeightsPerDispatchClassU32 (306) */2581 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2654 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2582 readonly normal: u32;2655 readonly normal: u32;2583 readonly operational: u32;2656 readonly operational: u32;2584 readonly mandatory: u32;2657 readonly mandatory: u32;2585 }2658 }258626592587 /** @name FrameSupportWeightsRuntimeDbWeight (301) */2660 /** @name FrameSupportWeightsRuntimeDbWeight (307) */2588 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2661 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2589 readonly read: u64;2662 readonly read: u64;2590 readonly write: u64;2663 readonly write: u64;2591 }2664 }259226652593 /** @name SpVersionRuntimeVersion (302) */2666 /** @name SpVersionRuntimeVersion (308) */2594 export interface SpVersionRuntimeVersion extends Struct {2667 export interface SpVersionRuntimeVersion extends Struct {2595 readonly specName: Text;2668 readonly specName: Text;2596 readonly implName: Text;2669 readonly implName: Text;2602 readonly stateVersion: u8;2675 readonly stateVersion: u8;2603 }2676 }260426772605 /** @name FrameSystemError (306) */2678 /** @name FrameSystemError (312) */2606 export interface FrameSystemError extends Enum {2679 export interface FrameSystemError extends Enum {2607 readonly isInvalidSpecName: boolean;2680 readonly isInvalidSpecName: boolean;2608 readonly isSpecVersionNeedsToIncrease: boolean;2681 readonly isSpecVersionNeedsToIncrease: boolean;2613 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2686 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2614 }2687 }261526882616 /** @name OrmlVestingModuleError (308) */2689 /** @name OrmlVestingModuleError (314) */2617 export interface OrmlVestingModuleError extends Enum {2690 export interface OrmlVestingModuleError extends Enum {2618 readonly isZeroVestingPeriod: boolean;2691 readonly isZeroVestingPeriod: boolean;2619 readonly isZeroVestingPeriodCount: boolean;2692 readonly isZeroVestingPeriodCount: boolean;2624 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2697 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2625 }2698 }262626992627 /** @name CumulusPalletXcmpQueueInboundChannelDetails (310) */2700 /** @name CumulusPalletXcmpQueueInboundChannelDetails (316) */2628 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2701 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2629 readonly sender: u32;2702 readonly sender: u32;2630 readonly state: CumulusPalletXcmpQueueInboundState;2703 readonly state: CumulusPalletXcmpQueueInboundState;2631 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2704 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2632 }2705 }263327062634 /** @name CumulusPalletXcmpQueueInboundState (311) */2707 /** @name CumulusPalletXcmpQueueInboundState (317) */2635 export interface CumulusPalletXcmpQueueInboundState extends Enum {2708 export interface CumulusPalletXcmpQueueInboundState extends Enum {2636 readonly isOk: boolean;2709 readonly isOk: boolean;2637 readonly isSuspended: boolean;2710 readonly isSuspended: boolean;2638 readonly type: 'Ok' | 'Suspended';2711 readonly type: 'Ok' | 'Suspended';2639 }2712 }264027132641 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (314) */2714 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (320) */2642 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2715 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2643 readonly isConcatenatedVersionedXcm: boolean;2716 readonly isConcatenatedVersionedXcm: boolean;2644 readonly isConcatenatedEncodedBlob: boolean;2717 readonly isConcatenatedEncodedBlob: boolean;2645 readonly isSignals: boolean;2718 readonly isSignals: boolean;2646 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2719 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2647 }2720 }264827212649 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (317) */2722 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (323) */2650 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2723 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2651 readonly recipient: u32;2724 readonly recipient: u32;2652 readonly state: CumulusPalletXcmpQueueOutboundState;2725 readonly state: CumulusPalletXcmpQueueOutboundState;2655 readonly lastIndex: u16;2728 readonly lastIndex: u16;2656 }2729 }265727302658 /** @name CumulusPalletXcmpQueueOutboundState (318) */2731 /** @name CumulusPalletXcmpQueueOutboundState (324) */2659 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2732 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2660 readonly isOk: boolean;2733 readonly isOk: boolean;2661 readonly isSuspended: boolean;2734 readonly isSuspended: boolean;2662 readonly type: 'Ok' | 'Suspended';2735 readonly type: 'Ok' | 'Suspended';2663 }2736 }266427372665 /** @name CumulusPalletXcmpQueueQueueConfigData (320) */2738 /** @name CumulusPalletXcmpQueueQueueConfigData (326) */2666 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2739 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2667 readonly suspendThreshold: u32;2740 readonly suspendThreshold: u32;2668 readonly dropThreshold: u32;2741 readonly dropThreshold: u32;2672 readonly xcmpMaxIndividualWeight: u64;2745 readonly xcmpMaxIndividualWeight: u64;2673 }2746 }267427472675 /** @name CumulusPalletXcmpQueueError (322) */2748 /** @name CumulusPalletXcmpQueueError (328) */2676 export interface CumulusPalletXcmpQueueError extends Enum {2749 export interface CumulusPalletXcmpQueueError extends Enum {2677 readonly isFailedToSend: boolean;2750 readonly isFailedToSend: boolean;2678 readonly isBadXcmOrigin: boolean;2751 readonly isBadXcmOrigin: boolean;2682 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2755 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2683 }2756 }268427572685 /** @name PalletXcmError (323) */2758 /** @name PalletXcmError (329) */2686 export interface PalletXcmError extends Enum {2759 export interface PalletXcmError extends Enum {2687 readonly isUnreachable: boolean;2760 readonly isUnreachable: boolean;2688 readonly isSendFailure: boolean;2761 readonly isSendFailure: boolean;2700 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2773 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2701 }2774 }270227752703 /** @name CumulusPalletXcmError (324) */2776 /** @name CumulusPalletXcmError (330) */2704 export type CumulusPalletXcmError = Null;2777 export type CumulusPalletXcmError = Null;270527782706 /** @name CumulusPalletDmpQueueConfigData (325) */2779 /** @name CumulusPalletDmpQueueConfigData (331) */2707 export interface CumulusPalletDmpQueueConfigData extends Struct {2780 export interface CumulusPalletDmpQueueConfigData extends Struct {2708 readonly maxIndividual: u64;2781 readonly maxIndividual: u64;2709 }2782 }271027832711 /** @name CumulusPalletDmpQueuePageIndexData (326) */2784 /** @name CumulusPalletDmpQueuePageIndexData (332) */2712 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2785 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2713 readonly beginUsed: u32;2786 readonly beginUsed: u32;2714 readonly endUsed: u32;2787 readonly endUsed: u32;2715 readonly overweightCount: u64;2788 readonly overweightCount: u64;2716 }2789 }271727902718 /** @name CumulusPalletDmpQueueError (329) */2791 /** @name CumulusPalletDmpQueueError (335) */2719 export interface CumulusPalletDmpQueueError extends Enum {2792 export interface CumulusPalletDmpQueueError extends Enum {2720 readonly isUnknown: boolean;2793 readonly isUnknown: boolean;2721 readonly isOverLimit: boolean;2794 readonly isOverLimit: boolean;2722 readonly type: 'Unknown' | 'OverLimit';2795 readonly type: 'Unknown' | 'OverLimit';2723 }2796 }272427972725 /** @name PalletUniqueError (333) */2798 /** @name PalletUniqueError (339) */2726 export interface PalletUniqueError extends Enum {2799 export interface PalletUniqueError extends Enum {2727 readonly isCollectionDecimalPointLimitExceeded: boolean;2800 readonly isCollectionDecimalPointLimitExceeded: boolean;2728 readonly isConfirmUnsetSponsorFail: boolean;2801 readonly isConfirmUnsetSponsorFail: boolean;2729 readonly isEmptyArgument: boolean;2802 readonly isEmptyArgument: boolean;2730 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';2803 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';2731 }2804 }28052806 /** @name PalletUnqSchedulerScheduledV3 (342) */2807 export interface PalletUnqSchedulerScheduledV3 extends Struct {2808 readonly maybeId: Option<U8aFixed>;2809 readonly priority: u8;2810 readonly call: FrameSupportScheduleMaybeHashed;2811 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2812 readonly origin: OpalRuntimeOriginCaller;2813 }28142815 /** @name OpalRuntimeOriginCaller (343) */2816 export interface OpalRuntimeOriginCaller extends Enum {2817 readonly isVoid: boolean;2818 readonly isSystem: boolean;2819 readonly asSystem: FrameSupportDispatchRawOrigin;2820 readonly isPolkadotXcm: boolean;2821 readonly asPolkadotXcm: PalletXcmOrigin;2822 readonly isCumulusXcm: boolean;2823 readonly asCumulusXcm: CumulusPalletXcmOrigin;2824 readonly isEthereum: boolean;2825 readonly asEthereum: PalletEthereumRawOrigin;2826 readonly type: 'Void' | 'System' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';2827 }28282829 /** @name FrameSupportDispatchRawOrigin (344) */2830 export interface FrameSupportDispatchRawOrigin extends Enum {2831 readonly isRoot: boolean;2832 readonly isSigned: boolean;2833 readonly asSigned: AccountId32;2834 readonly isNone: boolean;2835 readonly type: 'Root' | 'Signed' | 'None';2836 }28372838 /** @name PalletXcmOrigin (345) */2839 export interface PalletXcmOrigin extends Enum {2840 readonly isXcm: boolean;2841 readonly asXcm: XcmV1MultiLocation;2842 readonly isResponse: boolean;2843 readonly asResponse: XcmV1MultiLocation;2844 readonly type: 'Xcm' | 'Response';2845 }28462847 /** @name CumulusPalletXcmOrigin (346) */2848 export interface CumulusPalletXcmOrigin extends Enum {2849 readonly isRelay: boolean;2850 readonly isSiblingParachain: boolean;2851 readonly asSiblingParachain: u32;2852 readonly type: 'Relay' | 'SiblingParachain';2853 }28542855 /** @name PalletEthereumRawOrigin (347) */2856 export interface PalletEthereumRawOrigin extends Enum {2857 readonly isEthereumTransaction: boolean;2858 readonly asEthereumTransaction: H160;2859 readonly type: 'EthereumTransaction';2860 }28612862 /** @name SpCoreVoid (348) */2863 export type SpCoreVoid = Null;28642865 /** @name PalletUnqSchedulerError (349) */2866 export interface PalletUnqSchedulerError extends Enum {2867 readonly isFailedToSchedule: boolean;2868 readonly isNotFound: boolean;2869 readonly isTargetBlockNumberInPast: boolean;2870 readonly isRescheduleNoChange: boolean;2871 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';2872 }273228732733 /** @name UpDataStructsCollection (334) */2874 /** @name UpDataStructsCollection (350) */2734 export interface UpDataStructsCollection extends Struct {2875 export interface UpDataStructsCollection extends Struct {2735 readonly owner: AccountId32;2876 readonly owner: AccountId32;2736 readonly mode: UpDataStructsCollectionMode;2877 readonly mode: UpDataStructsCollectionMode;2743 readonly externalCollection: bool;2884 readonly externalCollection: bool;2744 }2885 }274528862746 /** @name UpDataStructsSponsorshipState (335) */2887 /** @name UpDataStructsSponsorshipState (351) */2747 export interface UpDataStructsSponsorshipState extends Enum {2888 export interface UpDataStructsSponsorshipState extends Enum {2748 readonly isDisabled: boolean;2889 readonly isDisabled: boolean;2749 readonly isUnconfirmed: boolean;2890 readonly isUnconfirmed: boolean;2753 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2894 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2754 }2895 }275528962756 /** @name UpDataStructsProperties (336) */2897 /** @name UpDataStructsProperties (352) */2757 export interface UpDataStructsProperties extends Struct {2898 export interface UpDataStructsProperties extends Struct {2758 readonly map: UpDataStructsPropertiesMapBoundedVec;2899 readonly map: UpDataStructsPropertiesMapBoundedVec;2759 readonly consumedSpace: u32;2900 readonly consumedSpace: u32;2760 readonly spaceLimit: u32;2901 readonly spaceLimit: u32;2761 }2902 }276229032763 /** @name UpDataStructsPropertiesMapBoundedVec (337) */2904 /** @name UpDataStructsPropertiesMapBoundedVec (353) */2764 export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}2905 export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}276529062766 /** @name UpDataStructsPropertiesMapPropertyPermission (342) */2907 /** @name UpDataStructsPropertiesMapPropertyPermission (358) */2767 export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}2908 export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}276829092769 /** @name UpDataStructsCollectionStats (349) */2910 /** @name UpDataStructsCollectionStats (365) */2770 export interface UpDataStructsCollectionStats extends Struct {2911 export interface UpDataStructsCollectionStats extends Struct {2771 readonly created: u32;2912 readonly created: u32;2772 readonly destroyed: u32;2913 readonly destroyed: u32;2773 readonly alive: u32;2914 readonly alive: u32;2774 }2915 }277529162776 /** @name UpDataStructsTokenChild (323) */2917 /** @name UpDataStructsTokenChild (366) */2777 export interface UpDataStructsTokenChild extends Struct {2918 export interface UpDataStructsTokenChild extends Struct {2778 readonly token: u32;2919 readonly token: u32;2779 readonly collection: u32;2920 readonly collection: u32;2780 }2921 }278129222782 /** @name PhantomTypeUpDataStructs (324) */2923 /** @name PhantomTypeUpDataStructs (367) */2783 export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkNftInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkTheme, UpDataStructsRmrkNftChild]>> {}2924 export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}278429252785 /** @name UpDataStructsTokenData (326) */2926 /** @name UpDataStructsTokenData (369) */2786 export interface UpDataStructsTokenData extends Struct {2927 export interface UpDataStructsTokenData extends Struct {2787 readonly properties: Vec<UpDataStructsProperty>;2928 readonly properties: Vec<UpDataStructsProperty>;2788 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2929 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2789 }2930 }279029312791 /** @name UpDataStructsRpcCollection (328) */2932 /** @name UpDataStructsRpcCollection (371) */2792 export interface UpDataStructsRpcCollection extends Struct {2933 export interface UpDataStructsRpcCollection extends Struct {2793 readonly owner: AccountId32;2934 readonly owner: AccountId32;2794 readonly mode: UpDataStructsCollectionMode;2935 readonly mode: UpDataStructsCollectionMode;2803 readonly readOnly: bool;2944 readonly readOnly: bool;2804 }2945 }280529462806 /** @name UpDataStructsRmrkCollectionInfo (329) */2947 /** @name RmrkTraitsCollectionCollectionInfo (372) */2807 export interface UpDataStructsRmrkCollectionInfo extends Struct {2948 export interface RmrkTraitsCollectionCollectionInfo extends Struct {2808 readonly issuer: AccountId32;2949 readonly issuer: AccountId32;2809 readonly metadata: Bytes;2950 readonly metadata: Bytes;2810 readonly max: Option<u32>;2951 readonly max: Option<u32>;2811 readonly symbol: Bytes;2952 readonly symbol: Bytes;2812 readonly nftsCount: u32;2953 readonly nftsCount: u32;2813 }2954 }281429552815 /** @name UpDataStructsRmrkNftInfo (332) */2956 /** @name RmrkTraitsNftNftInfo (373) */2816 export interface UpDataStructsRmrkNftInfo extends Struct {2957 export interface RmrkTraitsNftNftInfo extends Struct {2817 readonly owner: UpDataStructsRmrkAccountIdOrCollectionNftTuple;2958 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2818 readonly royalty: Option<UpDataStructsRmrkRoyaltyInfo>;2959 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;2819 readonly metadata: Bytes;2960 readonly metadata: Bytes;2820 readonly equipped: bool;2961 readonly equipped: bool;2821 readonly pending: bool;2962 readonly pending: bool;2822 }2963 }28232824 /** @name UpDataStructsRmrkAccountIdOrCollectionNftTuple (333) */2825 export interface UpDataStructsRmrkAccountIdOrCollectionNftTuple extends Enum {2826 readonly isAccountId: boolean;2827 readonly asAccountId: AccountId32;2828 readonly isCollectionAndNftTuple: boolean;2829 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;2830 readonly type: 'AccountId' | 'CollectionAndNftTuple';2831 }283229642833 /** @name UpDataStructsRmrkRoyaltyInfo (335) */2965 /** @name RmrkTraitsNftRoyaltyInfo (375) */2834 export interface UpDataStructsRmrkRoyaltyInfo extends Struct {2966 export interface RmrkTraitsNftRoyaltyInfo extends Struct {2835 readonly recipient: AccountId32;2967 readonly recipient: AccountId32;2836 readonly amount: Permill;2968 readonly amount: Permill;2837 }2969 }283829702839 /** @name UpDataStructsRmrkResourceInfo (336) */2971 /** @name RmrkTraitsResourceResourceInfo (376) */2840 export interface UpDataStructsRmrkResourceInfo extends Struct {2972 export interface RmrkTraitsResourceResourceInfo extends Struct {2841 readonly id: u32;2973 readonly id: u32;2842 readonly resource: RmrkTraitsResourceResourceTypes;2974 readonly resource: RmrkTraitsResourceResourceTypes;2843 readonly pending: bool;2975 readonly pending: bool;2844 readonly pendingRemoval: bool;2976 readonly pendingRemoval: bool;2845 }2977 }284629782847 /** @name UpDataStructsRmrkResourceTypes (339) */2979 /** @name RmrkTraitsResourceResourceTypes (377) */2848 export interface UpDataStructsRmrkResourceTypes extends Enum {2980 export interface RmrkTraitsResourceResourceTypes extends Enum {2849 readonly isBasic: boolean;2981 readonly isBasic: boolean;2850 readonly asBasic: RmrkTraitsResourceBasicResource;2982 readonly asBasic: RmrkTraitsResourceBasicResource;2851 readonly isComposable: boolean;2983 readonly isComposable: boolean;2855 readonly type: 'Basic' | 'Composable' | 'Slot';2987 readonly type: 'Basic' | 'Composable' | 'Slot';2856 }2988 }28572858 /** @name UpDataStructsRmrkBasicResource (340) */2859 export interface UpDataStructsRmrkBasicResource extends Struct {2860 readonly src: Option<Bytes>;2861 readonly metadata: Option<Bytes>;2862 readonly license: Option<Bytes>;2863 readonly thumb: Option<Bytes>;2864 }28652866 /** @name UpDataStructsRmrkComposableResource (342) */2867 export interface UpDataStructsRmrkComposableResource extends Struct {2868 readonly parts: Vec<u32>;2869 readonly base: u32;2870 readonly src: Option<Bytes>;2871 readonly metadata: Option<Bytes>;2872 readonly license: Option<Bytes>;2873 readonly thumb: Option<Bytes>;2874 }28752876 /** @name UpDataStructsRmrkSlotResource (343) */2877 export interface UpDataStructsRmrkSlotResource extends Struct {2878 readonly base: u32;2879 readonly src: Option<Bytes>;2880 readonly metadata: Option<Bytes>;2881 readonly slot: u32;2882 readonly license: Option<Bytes>;2883 readonly thumb: Option<Bytes>;2884 }288529892886 /** @name UpDataStructsRmrkPropertyInfo (344) */2990 /** @name RmrkTraitsPropertyPropertyInfo (378) */2887 export interface UpDataStructsRmrkPropertyInfo extends Struct {2991 export interface RmrkTraitsPropertyPropertyInfo extends Struct {2888 readonly key: Bytes;2992 readonly key: Bytes;2889 readonly value: Bytes;2993 readonly value: Bytes;2890 }2994 }289129952892 /** @name UpDataStructsRmrkBaseInfo (347) */2996 /** @name RmrkTraitsBaseBaseInfo (379) */2893 export interface UpDataStructsRmrkBaseInfo extends Struct {2997 export interface RmrkTraitsBaseBaseInfo extends Struct {2894 readonly issuer: AccountId32;2998 readonly issuer: AccountId32;2895 readonly baseType: Bytes;2999 readonly baseType: Bytes;2896 readonly symbol: Bytes;3000 readonly symbol: Bytes;2897 }3001 }28982899 /** @name UpDataStructsRmrkPartType (348) */2900 export interface UpDataStructsRmrkPartType extends Enum {2901 readonly isFixedPart: boolean;2902 readonly asFixedPart: UpDataStructsRmrkFixedPart;2903 readonly isSlotPart: boolean;2904 readonly asSlotPart: UpDataStructsRmrkSlotPart;2905 readonly type: 'FixedPart' | 'SlotPart';2906 }29072908 /** @name UpDataStructsRmrkFixedPart (350) */2909 export interface UpDataStructsRmrkFixedPart extends Struct {2910 readonly id: u32;2911 readonly z: u32;2912 readonly src: Bytes;2913 }29142915 /** @name UpDataStructsRmrkSlotPart (351) */2916 export interface UpDataStructsRmrkSlotPart extends Struct {2917 readonly id: u32;2918 readonly equippable: UpDataStructsRmrkEquippableList;2919 readonly src: Bytes;2920 readonly z: u32;2921 }29222923 /** @name UpDataStructsRmrkEquippableList (352) */2924 export interface UpDataStructsRmrkEquippableList extends Enum {2925 readonly isAll: boolean;2926 readonly isEmpty: boolean;2927 readonly isCustom: boolean;2928 readonly asCustom: Vec<u32>;2929 readonly type: 'All' | 'Empty' | 'Custom';2930 }29312932 /** @name UpDataStructsRmrkTheme (353) */2933 export interface UpDataStructsRmrkTheme extends Struct {2934 readonly name: Bytes;2935 readonly properties: Vec<UpDataStructsRmrkThemeProperty>;2936 readonly inherit: bool;2937 }29382939 /** @name UpDataStructsRmrkThemeProperty (355) */2940 export interface UpDataStructsRmrkThemeProperty extends Struct {2941 readonly key: Bytes;2942 readonly value: Bytes;2943 }294430022945 /** @name UpDataStructsRmrkNftChild (356) */3003 /** @name RmrkTraitsNftNftChild (380) */2946 export interface UpDataStructsRmrkNftChild extends Struct {3004 export interface RmrkTraitsNftNftChild extends Struct {2947 readonly collectionId: u32;3005 readonly collectionId: u32;2948 readonly nftId: u32;3006 readonly nftId: u32;2949 }3007 }295030082951 /** @name PalletCommonError (358) */3009 /** @name PalletCommonError (382) */2952 export interface PalletCommonError extends Enum {3010 export interface PalletCommonError extends Enum {2953 readonly isCollectionNotFound: boolean;3011 readonly isCollectionNotFound: boolean;2954 readonly isMustBeTokenOwner: boolean;3012 readonly isMustBeTokenOwner: boolean;2988 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';3046 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';2989 }3047 }299030482991 /** @name PalletFungibleError (360) */3049 /** @name PalletFungibleError (384) */2992 export interface PalletFungibleError extends Enum {3050 export interface PalletFungibleError extends Enum {2993 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3051 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;2994 readonly isFungibleItemsHaveNoId: boolean;3052 readonly isFungibleItemsHaveNoId: boolean;2998 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3056 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2999 }3057 }300030583001 /** @name PalletRefungibleItemData (361) */3059 /** @name PalletRefungibleItemData (385) */3002 export interface PalletRefungibleItemData extends Struct {3060 export interface PalletRefungibleItemData extends Struct {3003 readonly constData: Bytes;3061 readonly constData: Bytes;3004 }3062 }300530633006 /** @name PalletRefungibleError (365) */3064 /** @name PalletRefungibleError (389) */3007 export interface PalletRefungibleError extends Enum {3065 export interface PalletRefungibleError extends Enum {3008 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3066 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3009 readonly isWrongRefungiblePieces: boolean;3067 readonly isWrongRefungiblePieces: boolean;3012 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3070 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3013 }3071 }301430723015 /** @name PalletNonfungibleItemData (366) */3073 /** @name PalletNonfungibleItemData (390) */3016 export interface PalletNonfungibleItemData extends Struct {3074 export interface PalletNonfungibleItemData extends Struct {3017 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3075 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3018 }3076 }301930773020 /** @name PalletNonfungibleError (368) */3078 /** @name PalletNonfungibleError (392) */3021 export interface PalletNonfungibleError extends Enum {3079 export interface PalletNonfungibleError extends Enum {3022 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3080 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3023 readonly isNonfungibleItemsHaveNoAmount: boolean;3081 readonly isNonfungibleItemsHaveNoAmount: boolean;3024 readonly isCantBurnNftWithChildren: boolean;3082 readonly isCantBurnNftWithChildren: boolean;3025 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3083 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3026 }3084 }302730853028 /** @name PalletStructureError (369) */3086 /** @name PalletStructureError (393) */3029 export interface PalletStructureError extends Enum {3087 export interface PalletStructureError extends Enum {3030 readonly isOuroborosDetected: boolean;3088 readonly isOuroborosDetected: boolean;3031 readonly isDepthLimit: boolean;3089 readonly isDepthLimit: boolean;3032 readonly isTokenNotFound: boolean;3090 readonly isTokenNotFound: boolean;3033 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';3091 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';3034 }3092 }30933094 /** @name PalletRmrkCoreError (394) */3095 export interface PalletRmrkCoreError extends Enum {3096 readonly isCorruptedCollectionType: boolean;3097 readonly isNftTypeEncodeError: boolean;3098 readonly isRmrkPropertyKeyIsTooLong: boolean;3099 readonly isRmrkPropertyValueIsTooLong: boolean;3100 readonly isCollectionNotEmpty: boolean;3101 readonly isNoAvailableCollectionId: boolean;3102 readonly isNoAvailableNftId: boolean;3103 readonly isCollectionUnknown: boolean;3104 readonly isNoPermission: boolean;3105 readonly isNonTransferable: boolean;3106 readonly isCollectionFullOrLocked: boolean;3107 readonly isResourceDoesntExist: boolean;3108 readonly isCannotSendToDescendentOrSelf: boolean;3109 readonly isCannotAcceptNonOwnedNft: boolean;3110 readonly isCannotRejectNonOwnedNft: boolean;3111 readonly isResourceNotPending: boolean;3112 readonly type: 'CorruptedCollectionType' | 'NftTypeEncodeError' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'ResourceNotPending';3113 }31143115 /** @name PalletRmrkEquipError (396) */3116 export interface PalletRmrkEquipError extends Enum {3117 readonly isPermissionError: boolean;3118 readonly isNoAvailableBaseId: boolean;3119 readonly isNoAvailablePartId: boolean;3120 readonly isBaseDoesntExist: boolean;3121 readonly isNeedsDefaultThemeFirst: boolean;3122 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst';3123 }303531243036 /** @name PalletEvmError (372) */3125 /** @name PalletEvmError (399) */3037 export interface PalletEvmError extends Enum {3126 export interface PalletEvmError extends Enum {3038 readonly isBalanceLow: boolean;3127 readonly isBalanceLow: boolean;3039 readonly isFeeOverflow: boolean;3128 readonly isFeeOverflow: boolean;3044 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';3133 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';3045 }3134 }304631353047 /** @name FpRpcTransactionStatus (375) */3136 /** @name FpRpcTransactionStatus (402) */3048 export interface FpRpcTransactionStatus extends Struct {3137 export interface FpRpcTransactionStatus extends Struct {3049 readonly transactionHash: H256;3138 readonly transactionHash: H256;3050 readonly transactionIndex: u32;3139 readonly transactionIndex: u32;3055 readonly logsBloom: EthbloomBloom;3144 readonly logsBloom: EthbloomBloom;3056 }3145 }305731463058 /** @name EthbloomBloom (377) */3147 /** @name EthbloomBloom (404) */3059 export interface EthbloomBloom extends U8aFixed {}3148 export interface EthbloomBloom extends U8aFixed {}306031493061 /** @name EthereumReceiptReceiptV3 (379) */3150 /** @name EthereumReceiptReceiptV3 (406) */3062 export interface EthereumReceiptReceiptV3 extends Enum {3151 export interface EthereumReceiptReceiptV3 extends Enum {3063 readonly isLegacy: boolean;3152 readonly isLegacy: boolean;3064 readonly asLegacy: EthereumReceiptEip658ReceiptData;3153 readonly asLegacy: EthereumReceiptEip658ReceiptData;3069 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3158 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3070 }3159 }307131603072 /** @name EthereumReceiptEip658ReceiptData (380) */3161 /** @name EthereumReceiptEip658ReceiptData (407) */3073 export interface EthereumReceiptEip658ReceiptData extends Struct {3162 export interface EthereumReceiptEip658ReceiptData extends Struct {3074 readonly statusCode: u8;3163 readonly statusCode: u8;3075 readonly usedGas: U256;3164 readonly usedGas: U256;3076 readonly logsBloom: EthbloomBloom;3165 readonly logsBloom: EthbloomBloom;3077 readonly logs: Vec<EthereumLog>;3166 readonly logs: Vec<EthereumLog>;3078 }3167 }307931683080 /** @name EthereumBlock (381) */3169 /** @name EthereumBlock (408) */3081 export interface EthereumBlock extends Struct {3170 export interface EthereumBlock extends Struct {3082 readonly header: EthereumHeader;3171 readonly header: EthereumHeader;3083 readonly transactions: Vec<EthereumTransactionTransactionV2>;3172 readonly transactions: Vec<EthereumTransactionTransactionV2>;3084 readonly ommers: Vec<EthereumHeader>;3173 readonly ommers: Vec<EthereumHeader>;3085 }3174 }308631753087 /** @name EthereumHeader (382) */3176 /** @name EthereumHeader (409) */3088 export interface EthereumHeader extends Struct {3177 export interface EthereumHeader extends Struct {3089 readonly parentHash: H256;3178 readonly parentHash: H256;3090 readonly ommersHash: H256;3179 readonly ommersHash: H256;3103 readonly nonce: EthereumTypesHashH64;3192 readonly nonce: EthereumTypesHashH64;3104 }3193 }310531943106 /** @name EthereumTypesHashH64 (383) */3195 /** @name EthereumTypesHashH64 (410) */3107 export interface EthereumTypesHashH64 extends U8aFixed {}3196 export interface EthereumTypesHashH64 extends U8aFixed {}310831973109 /** @name PalletEthereumError (388) */3198 /** @name PalletEthereumError (415) */3110 export interface PalletEthereumError extends Enum {3199 export interface PalletEthereumError extends Enum {3111 readonly isInvalidSignature: boolean;3200 readonly isInvalidSignature: boolean;3112 readonly isPreLogExists: boolean;3201 readonly isPreLogExists: boolean;3113 readonly type: 'InvalidSignature' | 'PreLogExists';3202 readonly type: 'InvalidSignature' | 'PreLogExists';3114 }3203 }311532043116 /** @name PalletEvmCoderSubstrateError (389) */3205 /** @name PalletEvmCoderSubstrateError (416) */3117 export interface PalletEvmCoderSubstrateError extends Enum {3206 export interface PalletEvmCoderSubstrateError extends Enum {3118 readonly isOutOfGas: boolean;3207 readonly isOutOfGas: boolean;3119 readonly isOutOfFund: boolean;3208 readonly isOutOfFund: boolean;3120 readonly type: 'OutOfGas' | 'OutOfFund';3209 readonly type: 'OutOfGas' | 'OutOfFund';3121 }3210 }312232113123 /** @name PalletEvmContractHelpersSponsoringModeT (390) */3212 /** @name PalletEvmContractHelpersSponsoringModeT (417) */3124 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {3213 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {3125 readonly isDisabled: boolean;3214 readonly isDisabled: boolean;3126 readonly isAllowlisted: boolean;3215 readonly isAllowlisted: boolean;3127 readonly isGenerous: boolean;3216 readonly isGenerous: boolean;3128 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3217 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3129 }3218 }313032193131 /** @name PalletEvmContractHelpersError (392) */3220 /** @name PalletEvmContractHelpersError (419) */3132 export interface PalletEvmContractHelpersError extends Enum {3221 export interface PalletEvmContractHelpersError extends Enum {3133 readonly isNoPermission: boolean;3222 readonly isNoPermission: boolean;3134 readonly type: 'NoPermission';3223 readonly type: 'NoPermission';3135 }3224 }313632253137 /** @name PalletEvmMigrationError (393) */3226 /** @name PalletEvmMigrationError (420) */3138 export interface PalletEvmMigrationError extends Enum {3227 export interface PalletEvmMigrationError extends Enum {3139 readonly isAccountNotEmpty: boolean;3228 readonly isAccountNotEmpty: boolean;3140 readonly isAccountIsNotMigrating: boolean;3229 readonly isAccountIsNotMigrating: boolean;3141 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3230 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3142 }3231 }314332323144 /** @name SpRuntimeMultiSignature (395) */3233 /** @name SpRuntimeMultiSignature (422) */3145 export interface SpRuntimeMultiSignature extends Enum {3234 export interface SpRuntimeMultiSignature extends Enum {3146 readonly isEd25519: boolean;3235 readonly isEd25519: boolean;3147 readonly asEd25519: SpCoreEd25519Signature;3236 readonly asEd25519: SpCoreEd25519Signature;3152 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3241 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3153 }3242 }315432433155 /** @name SpCoreEd25519Signature (396) */3244 /** @name SpCoreEd25519Signature (423) */3156 export interface SpCoreEd25519Signature extends U8aFixed {}3245 export interface SpCoreEd25519Signature extends U8aFixed {}315732463158 /** @name SpCoreSr25519Signature (398) */3247 /** @name SpCoreSr25519Signature (425) */3159 export interface SpCoreSr25519Signature extends U8aFixed {}3248 export interface SpCoreSr25519Signature extends U8aFixed {}316032493161 /** @name SpCoreEcdsaSignature (399) */3250 /** @name SpCoreEcdsaSignature (426) */3162 export interface SpCoreEcdsaSignature extends U8aFixed {}3251 export interface SpCoreEcdsaSignature extends U8aFixed {}316332523164 /** @name FrameSystemExtensionsCheckSpecVersion (402) */3253 /** @name FrameSystemExtensionsCheckSpecVersion (429) */3165 export type FrameSystemExtensionsCheckSpecVersion = Null;3254 export type FrameSystemExtensionsCheckSpecVersion = Null;316632553167 /** @name FrameSystemExtensionsCheckGenesis (403) */3256 /** @name FrameSystemExtensionsCheckGenesis (430) */3168 export type FrameSystemExtensionsCheckGenesis = Null;3257 export type FrameSystemExtensionsCheckGenesis = Null;316932583170 /** @name FrameSystemExtensionsCheckNonce (406) */3259 /** @name FrameSystemExtensionsCheckNonce (433) */3171 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}3260 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}317232613173 /** @name FrameSystemExtensionsCheckWeight (407) */3262 /** @name FrameSystemExtensionsCheckWeight (434) */3174 export type FrameSystemExtensionsCheckWeight = Null;3263 export type FrameSystemExtensionsCheckWeight = Null;317532643176 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (408) */3265 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (435) */3177 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}3266 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}317832673179 /** @name OpalRuntimeRuntime (409) */3268 /** @name OpalRuntimeRuntime (436) */3180 export type OpalRuntimeRuntime = Null;3269 export type OpalRuntimeRuntime = Null;318132703182 /** @name PalletEthereumFakeTransactionFinalizer (410) */3271 /** @name PalletEthereumFakeTransactionFinalizer (437) */3183 export type PalletEthereumFakeTransactionFinalizer = Null;3272 export type PalletEthereumFakeTransactionFinalizer = Null;318432733185} // declare module3274} // declare module