difftreelog
build regenerate types
in: master
7 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
@@ -30,6 +30,7 @@
};
common: {
collectionAdminsLimit: u32 & AugmentedConst<ApiType>;
+ collectionCreationPrice: u128 & AugmentedConst<ApiType>;
/**
* Generic const
**/
@@ -137,6 +138,8 @@
burn: Permill & AugmentedConst<ApiType>;
/**
* The maximum number of approvals that can wait in the spending queue.
+ *
+ * NOTE: This parameter is also used within the Bounties Pallet extension if enabled.
**/
maxApprovals: u32 & AugmentedConst<ApiType>;
/**
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -12,8 +12,29 @@
export interface AugmentedQueries<ApiType extends ApiTypes> {
balances: {
/**
- * The balance of an account.
+ * The Balances pallet example of storing the balance of an account.
+ *
+ * # Example
+ *
+ * ```nocompile
+ * impl pallet_balances::Config for Runtime {
+ * type AccountStore = StorageMapShim<Self::Account<Runtime>, frame_system::Provider<Runtime>, AccountId, Self::AccountData<Balance>>
+ * }
+ * ```
+ *
+ * You can also store the balance of an account in the `System` pallet.
+ *
+ * # Example
*
+ * ```nocompile
+ * impl pallet_balances::Config for Runtime {
+ * type AccountStore = System
+ * }
+ * ```
+ *
+ * But this comes with tradeoffs, storing account balances in the system pallet stores
+ * `frame_system` data alongside the account data contrary to storing account balances in the
+ * `Balances` pallet, which uses a `StorageMap` to store balances data only.
* NOTE: This is only used in the case that this pallet is used to store balances.
**/
account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PalletBalancesAccountData>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
@@ -588,6 +609,10 @@
**/
queueConfig: AugmentedQuery<ApiType, () => Observable<CumulusPalletXcmpQueueQueueConfigData>, []> & QueryableStorageEntry<ApiType, []>;
/**
+ * Whether or not the XCMP queue is suspended from executing incoming XCMs or not.
+ **/
+ queueSuspended: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;
+ /**
* Any signal messages waiting to be sent.
**/
signalMessages: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Bytes>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -425,11 +425,6 @@
remark: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
/**
* Make some on-chain remark and emit event.
- *
- * # <weight>
- * - `O(b)` where b is the length of the remark.
- * - 1 event.
- * # </weight>
**/
remarkWithEvent: AugmentedSubmittable<(remark: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
/**
@@ -982,6 +977,14 @@
};
xcmpQueue: {
/**
+ * Resumes all XCM executions for the XCMP queue.
+ *
+ * Note that this function doesn't change the status of the in/out bound channels.
+ *
+ * - `origin`: Must pass `ControllerOrigin`.
+ **/
+ resumeXcmExecution: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
+ /**
* Services a single overweight XCM.
*
* - `origin`: Must pass `ExecuteOverweightOrigin`.
@@ -998,6 +1001,59 @@
**/
serviceOverweight: AugmentedSubmittable<(index: u64 | AnyNumber | Uint8Array, weightLimit: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64, u64]>;
/**
+ * Suspends all XCM executions for the XCMP queue, regardless of the sender's origin.
+ *
+ * - `origin`: Must pass `ControllerOrigin`.
+ **/
+ suspendXcmExecution: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
+ /**
+ * Overwrites the number of pages of messages which must be in the queue after which we drop any further
+ * messages from the channel.
+ *
+ * - `origin`: Must pass `Root`.
+ * - `new`: Desired value for `QueueConfigData.drop_threshold`
+ **/
+ updateDropThreshold: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
+ /**
+ * Overwrites the number of pages of messages which the queue must be reduced to before it signals that
+ * message sending may recommence after it has been suspended.
+ *
+ * - `origin`: Must pass `Root`.
+ * - `new`: Desired value for `QueueConfigData.resume_threshold`
+ **/
+ updateResumeThreshold: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
+ /**
+ * Overwrites the number of pages of messages which must be in the queue for the other side to be told to
+ * suspend their sending.
+ *
+ * - `origin`: Must pass `Root`.
+ * - `new`: Desired value for `QueueConfigData.suspend_value`
+ **/
+ updateSuspendThreshold: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
+ /**
+ * Overwrites the amount of remaining weight under which we stop processing messages.
+ *
+ * - `origin`: Must pass `Root`.
+ * - `new`: Desired value for `QueueConfigData.threshold_weight`
+ **/
+ updateThresholdWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
+ /**
+ * Overwrites the speed to which the available weight approaches the maximum weight.
+ * A lower number results in a faster progression. A value of 1 makes the entire weight available initially.
+ *
+ * - `origin`: Must pass `Root`.
+ * - `new`: Desired value for `QueueConfigData.weight_restrict_decay`.
+ **/
+ updateWeightRestrictDecay: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
+ /**
+ * Overwrite the maximum amount of weight any individual message may consume.
+ * Messages above this weight go into the overweight queue and may only be serviced explicitly.
+ *
+ * - `origin`: Must pass `Root`.
+ * - `new`: Desired value for `QueueConfigData.xcmp_max_individual_weight`.
+ **/
+ updateXcmpMaxIndividualWeight: AugmentedSubmittable<(updated: u64 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u64]>;
+ /**
* 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, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonAccountBasicCrossAccountIdRepr, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV1AbridgedHostConfiguration, PolkadotPrimitivesV1AbridgedHrmpChannel, PolkadotPrimitivesV1PersistedValidationData, PolkadotPrimitivesV1UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpTrieStorageProof, SpVersionRuntimeVersion, UniqueRuntimeRuntime, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateNftData, UpDataStructsCreateReFungibleData, UpDataStructsMetaUpdatePermission, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, 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 './unique';
+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, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonAccountBasicCrossAccountIdRepr, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV1AbridgedHostConfiguration, PolkadotPrimitivesV1AbridgedHrmpChannel, PolkadotPrimitivesV1PersistedValidationData, PolkadotPrimitivesV1UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpTrieStorageProof, SpVersionRuntimeVersion, UniqueRuntimeRuntime, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateNftData, UpDataStructsCreateReFungibleData, UpDataStructsMetaUpdatePermission, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, 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 './unique';
import type { Data, StorageKey } from '@polkadot/types';
import type { BitVec, Bool, Bytes, I128, I16, I256, I32, I64, I8, Json, Null, 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, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultErr, ContractExecResultErrModule, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateReturnValue, 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';
@@ -198,7 +198,6 @@
ClassMetadata: ClassMetadata;
CodecHash: CodecHash;
CodeHash: CodeHash;
- CodeSource: CodeSource;
CodeUploadRequest: CodeUploadRequest;
CodeUploadResult: CodeUploadResult;
CodeUploadResultValue: CodeUploadResultValue;
@@ -251,7 +250,6 @@
ContractInfo: ContractInfo;
ContractInstantiateResult: ContractInstantiateResult;
ContractInstantiateResultTo267: ContractInstantiateResultTo267;
- ContractInstantiateResultTo299: ContractInstantiateResultTo299;
ContractLayoutArray: ContractLayoutArray;
ContractLayoutCell: ContractLayoutCell;
ContractLayoutEnum: ContractLayoutEnum;
@@ -593,10 +591,7 @@
InstanceId: InstanceId;
InstanceMetadata: InstanceMetadata;
InstantiateRequest: InstantiateRequest;
- InstantiateRequestV1: InstantiateRequestV1;
- InstantiateRequestV2: InstantiateRequestV2;
InstantiateReturnValue: InstantiateReturnValue;
- InstantiateReturnValueOk: InstantiateReturnValueOk;
InstantiateReturnValueTo267: InstantiateReturnValueTo267;
InstructionV2: InstructionV2;
InstructionWeights: InstructionWeights;
@@ -1054,6 +1049,7 @@
SpRuntimeDigest: SpRuntimeDigest;
SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
SpRuntimeDispatchError: SpRuntimeDispatchError;
+ SpRuntimeModuleError: SpRuntimeModuleError;
SpRuntimeMultiSignature: SpRuntimeMultiSignature;
SpRuntimeTokenError: SpRuntimeTokenError;
SpTrieStorageProof: SpTrieStorageProof;
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -260,7 +260,7 @@
_enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup60: pallet_timestamp::pallet::Call<T>
+ * Lookup61: pallet_timestamp::pallet::Call<T>
**/
PalletTimestampCall: {
_enum: {
@@ -270,13 +270,13 @@
}
},
/**
- * Lookup63: pallet_transaction_payment::Releases
+ * Lookup64: pallet_transaction_payment::Releases
**/
PalletTransactionPaymentReleases: {
_enum: ['V1Ancient', 'V2']
},
/**
- * Lookup65: frame_support::weights::WeightToFeeCoefficient<Balance>
+ * Lookup66: frame_support::weights::WeightToFeeCoefficient<Balance>
**/
FrameSupportWeightsWeightToFeeCoefficient: {
coeffInteger: 'u128',
@@ -285,7 +285,7 @@
degree: 'u8'
},
/**
- * Lookup67: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
+ * Lookup68: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
**/
PalletTreasuryProposal: {
proposer: 'AccountId32',
@@ -294,7 +294,7 @@
bond: 'u128'
},
/**
- * Lookup70: pallet_treasury::pallet::Call<T, I>
+ * Lookup71: pallet_treasury::pallet::Call<T, I>
**/
PalletTreasuryCall: {
_enum: {
@@ -311,7 +311,7 @@
}
},
/**
- * Lookup72: pallet_treasury::pallet::Event<T, I>
+ * Lookup73: pallet_treasury::pallet::Event<T, I>
**/
PalletTreasuryEvent: {
_enum: {
@@ -342,17 +342,17 @@
}
},
/**
- * Lookup75: frame_support::PalletId
+ * Lookup76: frame_support::PalletId
**/
FrameSupportPalletId: '[u8;8]',
/**
- * Lookup76: pallet_treasury::pallet::Error<T, I>
+ * Lookup77: pallet_treasury::pallet::Error<T, I>
**/
PalletTreasuryError: {
_enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals']
},
/**
- * Lookup77: pallet_sudo::pallet::Call<T>
+ * Lookup78: pallet_sudo::pallet::Call<T>
**/
PalletSudoCall: {
_enum: {
@@ -376,7 +376,7 @@
}
},
/**
- * Lookup79: frame_system::pallet::Call<T>
+ * Lookup80: frame_system::pallet::Call<T>
**/
FrameSystemCall: {
_enum: {
@@ -414,7 +414,7 @@
}
},
/**
- * Lookup82: orml_vesting::module::Call<T>
+ * Lookup83: orml_vesting::module::Call<T>
**/
OrmlVestingModuleCall: {
_enum: {
@@ -433,7 +433,7 @@
}
},
/**
- * Lookup83: orml_vesting::VestingSchedule<BlockNumber, Balance>
+ * Lookup84: orml_vesting::VestingSchedule<BlockNumber, Balance>
**/
OrmlVestingVestingSchedule: {
start: 'u32',
@@ -442,18 +442,56 @@
perPeriod: 'Compact<u128>'
},
/**
- * Lookup85: cumulus_pallet_xcmp_queue::pallet::Call<T>
+ * Lookup86: cumulus_pallet_xcmp_queue::pallet::Call<T>
**/
CumulusPalletXcmpQueueCall: {
_enum: {
service_overweight: {
index: 'u64',
- weightLimit: 'u64'
+ weightLimit: 'u64',
+ },
+ suspend_xcm_execution: 'Null',
+ resume_xcm_execution: 'Null',
+ update_suspend_threshold: {
+ _alias: {
+ new_: 'new',
+ },
+ new_: 'u32',
+ },
+ update_drop_threshold: {
+ _alias: {
+ new_: 'new',
+ },
+ new_: 'u32',
+ },
+ update_resume_threshold: {
+ _alias: {
+ new_: 'new',
+ },
+ new_: 'u32',
+ },
+ update_threshold_weight: {
+ _alias: {
+ new_: 'new',
+ },
+ new_: 'u64',
+ },
+ update_weight_restrict_decay: {
+ _alias: {
+ new_: 'new',
+ },
+ new_: 'u64',
+ },
+ update_xcmp_max_individual_weight: {
+ _alias: {
+ new_: 'new',
+ },
+ new_: 'u64'
}
}
},
/**
- * Lookup86: pallet_xcm::pallet::Call<T>
+ * Lookup87: pallet_xcm::pallet::Call<T>
**/
PalletXcmCall: {
_enum: {
@@ -507,7 +545,7 @@
}
},
/**
- * Lookup87: xcm::VersionedMultiLocation
+ * Lookup88: xcm::VersionedMultiLocation
**/
XcmVersionedMultiLocation: {
_enum: {
@@ -516,7 +554,7 @@
}
},
/**
- * Lookup88: xcm::v0::multi_location::MultiLocation
+ * Lookup89: xcm::v0::multi_location::MultiLocation
**/
XcmV0MultiLocation: {
_enum: {
@@ -532,7 +570,7 @@
}
},
/**
- * Lookup89: xcm::v0::junction::Junction
+ * Lookup90: xcm::v0::junction::Junction
**/
XcmV0Junction: {
_enum: {
@@ -561,7 +599,7 @@
}
},
/**
- * Lookup90: xcm::v0::junction::NetworkId
+ * Lookup91: xcm::v0::junction::NetworkId
**/
XcmV0JunctionNetworkId: {
_enum: {
@@ -572,7 +610,7 @@
}
},
/**
- * Lookup91: xcm::v0::junction::BodyId
+ * Lookup92: xcm::v0::junction::BodyId
**/
XcmV0JunctionBodyId: {
_enum: {
@@ -586,7 +624,7 @@
}
},
/**
- * Lookup92: xcm::v0::junction::BodyPart
+ * Lookup93: xcm::v0::junction::BodyPart
**/
XcmV0JunctionBodyPart: {
_enum: {
@@ -609,14 +647,14 @@
}
},
/**
- * Lookup93: xcm::v1::multilocation::MultiLocation
+ * Lookup94: xcm::v1::multilocation::MultiLocation
**/
XcmV1MultiLocation: {
parents: 'u8',
interior: 'XcmV1MultilocationJunctions'
},
/**
- * Lookup94: xcm::v1::multilocation::Junctions
+ * Lookup95: xcm::v1::multilocation::Junctions
**/
XcmV1MultilocationJunctions: {
_enum: {
@@ -632,7 +670,7 @@
}
},
/**
- * Lookup95: xcm::v1::junction::Junction
+ * Lookup96: xcm::v1::junction::Junction
**/
XcmV1Junction: {
_enum: {
@@ -660,7 +698,7 @@
}
},
/**
- * Lookup96: xcm::VersionedXcm<Call>
+ * Lookup97: xcm::VersionedXcm<Call>
**/
XcmVersionedXcm: {
_enum: {
@@ -670,7 +708,7 @@
}
},
/**
- * Lookup97: xcm::v0::Xcm<Call>
+ * Lookup98: xcm::v0::Xcm<Call>
**/
XcmV0Xcm: {
_enum: {
@@ -724,7 +762,7 @@
}
},
/**
- * Lookup99: xcm::v0::multi_asset::MultiAsset
+ * Lookup100: xcm::v0::multi_asset::MultiAsset
**/
XcmV0MultiAsset: {
_enum: {
@@ -763,7 +801,7 @@
}
},
/**
- * Lookup100: xcm::v1::multiasset::AssetInstance
+ * Lookup101: xcm::v1::multiasset::AssetInstance
**/
XcmV1MultiassetAssetInstance: {
_enum: {
@@ -777,7 +815,7 @@
}
},
/**
- * Lookup104: xcm::v0::order::Order<Call>
+ * Lookup105: xcm::v0::order::Order<Call>
**/
XcmV0Order: {
_enum: {
@@ -820,7 +858,7 @@
}
},
/**
- * Lookup106: xcm::v0::Response
+ * Lookup107: xcm::v0::Response
**/
XcmV0Response: {
_enum: {
@@ -828,19 +866,19 @@
}
},
/**
- * Lookup107: xcm::v0::OriginKind
+ * Lookup108: xcm::v0::OriginKind
**/
XcmV0OriginKind: {
_enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']
},
/**
- * Lookup108: xcm::double_encoded::DoubleEncoded<T>
+ * Lookup109: xcm::double_encoded::DoubleEncoded<T>
**/
XcmDoubleEncoded: {
encoded: 'Bytes'
},
/**
- * Lookup109: xcm::v1::Xcm<Call>
+ * Lookup110: xcm::v1::Xcm<Call>
**/
XcmV1Xcm: {
_enum: {
@@ -899,18 +937,18 @@
}
},
/**
- * Lookup110: xcm::v1::multiasset::MultiAssets
+ * Lookup111: xcm::v1::multiasset::MultiAssets
**/
XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',
/**
- * Lookup112: xcm::v1::multiasset::MultiAsset
+ * Lookup113: xcm::v1::multiasset::MultiAsset
**/
XcmV1MultiAsset: {
id: 'XcmV1MultiassetAssetId',
fun: 'XcmV1MultiassetFungibility'
},
/**
- * Lookup113: xcm::v1::multiasset::AssetId
+ * Lookup114: xcm::v1::multiasset::AssetId
**/
XcmV1MultiassetAssetId: {
_enum: {
@@ -919,7 +957,7 @@
}
},
/**
- * Lookup114: xcm::v1::multiasset::Fungibility
+ * Lookup115: xcm::v1::multiasset::Fungibility
**/
XcmV1MultiassetFungibility: {
_enum: {
@@ -928,7 +966,7 @@
}
},
/**
- * Lookup116: xcm::v1::order::Order<Call>
+ * Lookup117: xcm::v1::order::Order<Call>
**/
XcmV1Order: {
_enum: {
@@ -973,7 +1011,7 @@
}
},
/**
- * Lookup117: xcm::v1::multiasset::MultiAssetFilter
+ * Lookup118: xcm::v1::multiasset::MultiAssetFilter
**/
XcmV1MultiassetMultiAssetFilter: {
_enum: {
@@ -982,7 +1020,7 @@
}
},
/**
- * Lookup118: xcm::v1::multiasset::WildMultiAsset
+ * Lookup119: xcm::v1::multiasset::WildMultiAsset
**/
XcmV1MultiassetWildMultiAsset: {
_enum: {
@@ -994,13 +1032,13 @@
}
},
/**
- * Lookup119: xcm::v1::multiasset::WildFungibility
+ * Lookup120: xcm::v1::multiasset::WildFungibility
**/
XcmV1MultiassetWildFungibility: {
_enum: ['Fungible', 'NonFungible']
},
/**
- * Lookup121: xcm::v1::Response
+ * Lookup122: xcm::v1::Response
**/
XcmV1Response: {
_enum: {
@@ -1009,11 +1047,11 @@
}
},
/**
- * Lookup122: xcm::v2::Xcm<Call>
+ * Lookup123: xcm::v2::Xcm<Call>
**/
XcmV2Xcm: 'Vec<XcmV2Instruction>',
/**
- * Lookup124: xcm::v2::Instruction<Call>
+ * Lookup125: xcm::v2::Instruction<Call>
**/
XcmV2Instruction: {
_enum: {
@@ -1111,7 +1149,7 @@
}
},
/**
- * Lookup125: xcm::v2::Response
+ * Lookup126: xcm::v2::Response
**/
XcmV2Response: {
_enum: {
@@ -1122,7 +1160,7 @@
}
},
/**
- * Lookup128: xcm::v2::traits::Error
+ * Lookup129: xcm::v2::traits::Error
**/
XcmV2TraitsError: {
_enum: {
@@ -1155,7 +1193,7 @@
}
},
/**
- * Lookup129: xcm::v2::WeightLimit
+ * Lookup130: xcm::v2::WeightLimit
**/
XcmV2WeightLimit: {
_enum: {
@@ -1164,7 +1202,7 @@
}
},
/**
- * Lookup130: xcm::VersionedMultiAssets
+ * Lookup131: xcm::VersionedMultiAssets
**/
XcmVersionedMultiAssets: {
_enum: {
@@ -1173,11 +1211,11 @@
}
},
/**
- * Lookup145: cumulus_pallet_xcm::pallet::Call<T>
+ * Lookup146: cumulus_pallet_xcm::pallet::Call<T>
**/
CumulusPalletXcmCall: 'Null',
/**
- * Lookup146: cumulus_pallet_dmp_queue::pallet::Call<T>
+ * Lookup147: cumulus_pallet_dmp_queue::pallet::Call<T>
**/
CumulusPalletDmpQueueCall: {
_enum: {
@@ -1188,7 +1226,7 @@
}
},
/**
- * Lookup147: pallet_inflation::pallet::Call<T>
+ * Lookup148: pallet_inflation::pallet::Call<T>
**/
PalletInflationCall: {
_enum: {
@@ -1198,7 +1236,7 @@
}
},
/**
- * Lookup148: pallet_unique::Call<T>
+ * Lookup149: pallet_unique::Call<T>
**/
PalletUniqueCall: {
_enum: {
@@ -1328,7 +1366,7 @@
}
},
/**
- * Lookup154: up_data_structs::CollectionMode
+ * Lookup155: up_data_structs::CollectionMode
**/
UpDataStructsCollectionMode: {
_enum: {
@@ -1338,7 +1376,7 @@
}
},
/**
- * Lookup155: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
+ * Lookup156: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
**/
UpDataStructsCreateCollectionData: {
mode: 'UpDataStructsCollectionMode',
@@ -1355,24 +1393,24 @@
metaUpdatePermission: 'Option<UpDataStructsMetaUpdatePermission>'
},
/**
- * Lookup157: up_data_structs::AccessMode
+ * Lookup158: up_data_structs::AccessMode
**/
UpDataStructsAccessMode: {
_enum: ['Normal', 'AllowList']
},
/**
- * Lookup160: up_data_structs::SchemaVersion
+ * Lookup161: up_data_structs::SchemaVersion
**/
UpDataStructsSchemaVersion: {
_enum: ['ImageURL', 'Unique']
},
/**
- * Lookup163: up_data_structs::CollectionLimits
+ * Lookup164: up_data_structs::CollectionLimits
**/
UpDataStructsCollectionLimits: {
accountTokenOwnershipLimit: 'Option<u32>',
sponsoredDataSize: 'Option<u32>',
- sponsoredDataRateLimit: 'Option<Option<u32>>',
+ sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',
tokenLimit: 'Option<u32>',
sponsorTransferTimeout: 'Option<u32>',
sponsorApproveTimeout: 'Option<u32>',
@@ -1381,13 +1419,22 @@
transfersEnabled: 'Option<bool>'
},
/**
- * Lookup169: up_data_structs::MetaUpdatePermission
+ * Lookup166: up_data_structs::SponsoringRateLimit
+ **/
+ UpDataStructsSponsoringRateLimit: {
+ _enum: {
+ SponsoringDisabled: 'Null',
+ Blocks: 'u32'
+ }
+ },
+ /**
+ * Lookup170: up_data_structs::MetaUpdatePermission
**/
UpDataStructsMetaUpdatePermission: {
_enum: ['ItemOwner', 'Admin', 'None']
},
/**
- * Lookup171: pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
+ * Lookup172: pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
**/
PalletCommonAccountBasicCrossAccountIdRepr: {
_enum: {
@@ -1396,7 +1443,7 @@
}
},
/**
- * Lookup173: up_data_structs::CreateItemData
+ * Lookup174: up_data_structs::CreateItemData
**/
UpDataStructsCreateItemData: {
_enum: {
@@ -1406,20 +1453,20 @@
}
},
/**
- * Lookup174: up_data_structs::CreateNftData
+ * Lookup175: up_data_structs::CreateNftData
**/
UpDataStructsCreateNftData: {
constData: 'Bytes',
variableData: 'Bytes'
},
/**
- * Lookup176: up_data_structs::CreateFungibleData
+ * Lookup177: up_data_structs::CreateFungibleData
**/
UpDataStructsCreateFungibleData: {
value: 'u128'
},
/**
- * Lookup177: up_data_structs::CreateReFungibleData
+ * Lookup178: up_data_structs::CreateReFungibleData
**/
UpDataStructsCreateReFungibleData: {
constData: 'Bytes',
@@ -1427,11 +1474,11 @@
pieces: 'u128'
},
/**
- * Lookup180: pallet_template_transaction_payment::Call<T>
+ * Lookup181: pallet_template_transaction_payment::Call<T>
**/
PalletTemplateTransactionPaymentCall: 'Null',
/**
- * Lookup181: pallet_evm::pallet::Call<T>
+ * Lookup182: pallet_evm::pallet::Call<T>
**/
PalletEvmCall: {
_enum: {
@@ -1474,7 +1521,7 @@
}
},
/**
- * Lookup187: pallet_ethereum::pallet::Call<T>
+ * Lookup188: pallet_ethereum::pallet::Call<T>
**/
PalletEthereumCall: {
_enum: {
@@ -1484,7 +1531,7 @@
}
},
/**
- * Lookup188: ethereum::transaction::TransactionV2
+ * Lookup189: ethereum::transaction::TransactionV2
**/
EthereumTransactionTransactionV2: {
_enum: {
@@ -1494,7 +1541,7 @@
}
},
/**
- * Lookup189: ethereum::transaction::LegacyTransaction
+ * Lookup190: ethereum::transaction::LegacyTransaction
**/
EthereumTransactionLegacyTransaction: {
nonce: 'U256',
@@ -1506,7 +1553,7 @@
signature: 'EthereumTransactionTransactionSignature'
},
/**
- * Lookup190: ethereum::transaction::TransactionAction
+ * Lookup191: ethereum::transaction::TransactionAction
**/
EthereumTransactionTransactionAction: {
_enum: {
@@ -1515,7 +1562,7 @@
}
},
/**
- * Lookup191: ethereum::transaction::TransactionSignature
+ * Lookup192: ethereum::transaction::TransactionSignature
**/
EthereumTransactionTransactionSignature: {
v: 'u64',
@@ -1523,7 +1570,7 @@
s: 'H256'
},
/**
- * Lookup193: ethereum::transaction::EIP2930Transaction
+ * Lookup194: ethereum::transaction::EIP2930Transaction
**/
EthereumTransactionEip2930Transaction: {
chainId: 'u64',
@@ -1539,14 +1586,14 @@
s: 'H256'
},
/**
- * Lookup195: ethereum::transaction::AccessListItem
+ * Lookup196: ethereum::transaction::AccessListItem
**/
EthereumTransactionAccessListItem: {
address: 'H160',
slots: 'Vec<H256>'
},
/**
- * Lookup196: ethereum::transaction::EIP1559Transaction
+ * Lookup197: ethereum::transaction::EIP1559Transaction
**/
EthereumTransactionEip1559Transaction: {
chainId: 'u64',
@@ -1563,7 +1610,7 @@
s: 'H256'
},
/**
- * Lookup197: pallet_evm_migration::pallet::Call<T>
+ * Lookup198: pallet_evm_migration::pallet::Call<T>
**/
PalletEvmMigrationCall: {
_enum: {
@@ -1581,7 +1628,7 @@
}
},
/**
- * Lookup200: pallet_sudo::pallet::Event<T>
+ * Lookup201: pallet_sudo::pallet::Event<T>
**/
PalletSudoEvent: {
_enum: {
@@ -1597,17 +1644,14 @@
}
},
/**
- * Lookup202: sp_runtime::DispatchError
+ * Lookup203: sp_runtime::DispatchError
**/
SpRuntimeDispatchError: {
_enum: {
Other: 'Null',
CannotLookup: 'Null',
BadOrigin: 'Null',
- Module: {
- index: 'u8',
- error: 'u8',
- },
+ Module: 'SpRuntimeModuleError',
ConsumerRemaining: 'Null',
NoProviders: 'Null',
TooManyConsumers: 'Null',
@@ -1616,25 +1660,32 @@
}
},
/**
- * Lookup203: sp_runtime::TokenError
+ * Lookup204: sp_runtime::ModuleError
+ **/
+ SpRuntimeModuleError: {
+ index: 'u8',
+ error: 'u8'
+ },
+ /**
+ * Lookup205: sp_runtime::TokenError
**/
SpRuntimeTokenError: {
_enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
},
/**
- * Lookup204: sp_runtime::ArithmeticError
+ * Lookup206: sp_runtime::ArithmeticError
**/
SpRuntimeArithmeticError: {
_enum: ['Underflow', 'Overflow', 'DivisionByZero']
},
/**
- * Lookup205: pallet_sudo::pallet::Error<T>
+ * Lookup207: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup206: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
+ * Lookup208: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
**/
FrameSystemAccountInfo: {
nonce: 'u32',
@@ -1644,7 +1695,7 @@
data: 'PalletBalancesAccountData'
},
/**
- * Lookup207: frame_support::weights::PerDispatchClass<T>
+ * Lookup209: frame_support::weights::PerDispatchClass<T>
**/
FrameSupportWeightsPerDispatchClassU64: {
normal: 'u64',
@@ -1652,13 +1703,13 @@
mandatory: 'u64'
},
/**
- * Lookup208: sp_runtime::generic::digest::Digest
+ * Lookup210: sp_runtime::generic::digest::Digest
**/
SpRuntimeDigest: {
logs: 'Vec<SpRuntimeDigestDigestItem>'
},
/**
- * Lookup210: sp_runtime::generic::digest::DigestItem
+ * Lookup212: sp_runtime::generic::digest::DigestItem
**/
SpRuntimeDigestDigestItem: {
_enum: {
@@ -1674,7 +1725,7 @@
}
},
/**
- * Lookup212: frame_system::EventRecord<unique_runtime::Event, primitive_types::H256>
+ * Lookup214: frame_system::EventRecord<unique_runtime::Event, primitive_types::H256>
**/
FrameSystemEventRecord: {
phase: 'FrameSystemPhase',
@@ -1682,7 +1733,7 @@
topics: 'Vec<H256>'
},
/**
- * Lookup214: frame_system::pallet::Event<T>
+ * Lookup216: frame_system::pallet::Event<T>
**/
FrameSystemEvent: {
_enum: {
@@ -1710,7 +1761,7 @@
}
},
/**
- * Lookup215: frame_support::weights::DispatchInfo
+ * Lookup217: frame_support::weights::DispatchInfo
**/
FrameSupportWeightsDispatchInfo: {
weight: 'u64',
@@ -1718,19 +1769,19 @@
paysFee: 'FrameSupportWeightsPays'
},
/**
- * Lookup216: frame_support::weights::DispatchClass
+ * Lookup218: frame_support::weights::DispatchClass
**/
FrameSupportWeightsDispatchClass: {
_enum: ['Normal', 'Operational', 'Mandatory']
},
/**
- * Lookup217: frame_support::weights::Pays
+ * Lookup219: frame_support::weights::Pays
**/
FrameSupportWeightsPays: {
_enum: ['Yes', 'No']
},
/**
- * Lookup218: orml_vesting::module::Event<T>
+ * Lookup220: orml_vesting::module::Event<T>
**/
OrmlVestingModuleEvent: {
_enum: {
@@ -1749,7 +1800,7 @@
}
},
/**
- * Lookup219: cumulus_pallet_xcmp_queue::pallet::Event<T>
+ * Lookup221: cumulus_pallet_xcmp_queue::pallet::Event<T>
**/
CumulusPalletXcmpQueueEvent: {
_enum: {
@@ -1764,7 +1815,7 @@
}
},
/**
- * Lookup220: pallet_xcm::pallet::Event<T>
+ * Lookup222: pallet_xcm::pallet::Event<T>
**/
PalletXcmEvent: {
_enum: {
@@ -1787,7 +1838,7 @@
}
},
/**
- * Lookup221: xcm::v2::traits::Outcome
+ * Lookup223: xcm::v2::traits::Outcome
**/
XcmV2TraitsOutcome: {
_enum: {
@@ -1797,7 +1848,7 @@
}
},
/**
- * Lookup223: cumulus_pallet_xcm::pallet::Event<T>
+ * Lookup225: cumulus_pallet_xcm::pallet::Event<T>
**/
CumulusPalletXcmEvent: {
_enum: {
@@ -1807,7 +1858,7 @@
}
},
/**
- * Lookup224: cumulus_pallet_dmp_queue::pallet::Event<T>
+ * Lookup226: cumulus_pallet_dmp_queue::pallet::Event<T>
**/
CumulusPalletDmpQueueEvent: {
_enum: {
@@ -1820,7 +1871,7 @@
}
},
/**
- * Lookup225: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup227: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletUniqueRawEvent: {
_enum: {
@@ -1842,7 +1893,7 @@
}
},
/**
- * Lookup226: pallet_common::pallet::Event<T>
+ * Lookup228: pallet_common::pallet::Event<T>
**/
PalletCommonEvent: {
_enum: {
@@ -1855,7 +1906,7 @@
}
},
/**
- * Lookup227: pallet_evm::pallet::Event<T>
+ * Lookup229: pallet_evm::pallet::Event<T>
**/
PalletEvmEvent: {
_enum: {
@@ -1869,7 +1920,7 @@
}
},
/**
- * Lookup228: ethereum::log::Log
+ * Lookup230: ethereum::log::Log
**/
EthereumLog: {
address: 'H160',
@@ -1877,7 +1928,7 @@
data: 'Bytes'
},
/**
- * Lookup229: pallet_ethereum::pallet::Event
+ * Lookup231: pallet_ethereum::pallet::Event
**/
PalletEthereumEvent: {
_enum: {
@@ -1885,7 +1936,7 @@
}
},
/**
- * Lookup230: evm_core::error::ExitReason
+ * Lookup232: evm_core::error::ExitReason
**/
EvmCoreErrorExitReason: {
_enum: {
@@ -1896,13 +1947,13 @@
}
},
/**
- * Lookup231: evm_core::error::ExitSucceed
+ * Lookup233: evm_core::error::ExitSucceed
**/
EvmCoreErrorExitSucceed: {
_enum: ['Stopped', 'Returned', 'Suicided']
},
/**
- * Lookup232: evm_core::error::ExitError
+ * Lookup234: evm_core::error::ExitError
**/
EvmCoreErrorExitError: {
_enum: {
@@ -1924,13 +1975,13 @@
}
},
/**
- * Lookup235: evm_core::error::ExitRevert
+ * Lookup237: evm_core::error::ExitRevert
**/
EvmCoreErrorExitRevert: {
_enum: ['Reverted']
},
/**
- * Lookup236: evm_core::error::ExitFatal
+ * Lookup238: evm_core::error::ExitFatal
**/
EvmCoreErrorExitFatal: {
_enum: {
@@ -1941,7 +1992,7 @@
}
},
/**
- * Lookup237: frame_system::Phase
+ * Lookup239: frame_system::Phase
**/
FrameSystemPhase: {
_enum: {
@@ -1951,14 +2002,14 @@
}
},
/**
- * Lookup239: frame_system::LastRuntimeUpgradeInfo
+ * Lookup241: frame_system::LastRuntimeUpgradeInfo
**/
FrameSystemLastRuntimeUpgradeInfo: {
specVersion: 'Compact<u32>',
specName: 'Text'
},
/**
- * Lookup240: frame_system::limits::BlockWeights
+ * Lookup242: frame_system::limits::BlockWeights
**/
FrameSystemLimitsBlockWeights: {
baseBlock: 'u64',
@@ -1966,7 +2017,7 @@
perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
},
/**
- * Lookup241: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
+ * Lookup243: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
**/
FrameSupportWeightsPerDispatchClassWeightsPerClass: {
normal: 'FrameSystemLimitsWeightsPerClass',
@@ -1974,7 +2025,7 @@
mandatory: 'FrameSystemLimitsWeightsPerClass'
},
/**
- * Lookup242: frame_system::limits::WeightsPerClass
+ * Lookup244: frame_system::limits::WeightsPerClass
**/
FrameSystemLimitsWeightsPerClass: {
baseExtrinsic: 'u64',
@@ -1983,13 +2034,13 @@
reserved: 'Option<u64>'
},
/**
- * Lookup244: frame_system::limits::BlockLength
+ * Lookup246: frame_system::limits::BlockLength
**/
FrameSystemLimitsBlockLength: {
max: 'FrameSupportWeightsPerDispatchClassU32'
},
/**
- * Lookup245: frame_support::weights::PerDispatchClass<T>
+ * Lookup247: frame_support::weights::PerDispatchClass<T>
**/
FrameSupportWeightsPerDispatchClassU32: {
normal: 'u32',
@@ -1997,14 +2048,14 @@
mandatory: 'u32'
},
/**
- * Lookup246: frame_support::weights::RuntimeDbWeight
+ * Lookup248: frame_support::weights::RuntimeDbWeight
**/
FrameSupportWeightsRuntimeDbWeight: {
read: 'u64',
write: 'u64'
},
/**
- * Lookup247: sp_version::RuntimeVersion
+ * Lookup249: sp_version::RuntimeVersion
**/
SpVersionRuntimeVersion: {
specName: 'Text',
@@ -2017,19 +2068,19 @@
stateVersion: 'u8'
},
/**
- * Lookup251: frame_system::pallet::Error<T>
+ * Lookup253: frame_system::pallet::Error<T>
**/
FrameSystemError: {
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
},
/**
- * Lookup253: orml_vesting::module::Error<T>
+ * Lookup255: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup255: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup257: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -2037,19 +2088,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup256: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup258: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup259: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup261: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup262: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup264: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -2059,13 +2110,13 @@
lastIndex: 'u16'
},
/**
- * Lookup263: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup265: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup265: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup267: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
@@ -2076,29 +2127,29 @@
xcmpMaxIndividualWeight: 'u64'
},
/**
- * Lookup267: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup269: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup268: pallet_xcm::pallet::Error<T>
+ * Lookup270: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
},
/**
- * Lookup269: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup271: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup270: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup272: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
maxIndividual: 'u64'
},
/**
- * Lookup271: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup273: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -2106,19 +2157,19 @@
overweightCount: 'u64'
},
/**
- * Lookup274: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup276: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup278: pallet_unique::Error<T>
+ * Lookup280: pallet_unique::Error<T>
**/
PalletUniqueError: {
_enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']
},
/**
- * Lookup279: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ * Lookup281: up_data_structs::Collection<sp_core::crypto::AccountId32>
**/
UpDataStructsCollection: {
owner: 'AccountId32',
@@ -2137,7 +2188,7 @@
metaUpdatePermission: 'UpDataStructsMetaUpdatePermission'
},
/**
- * Lookup280: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup282: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipState: {
_enum: {
@@ -2147,7 +2198,7 @@
}
},
/**
- * Lookup283: up_data_structs::CollectionStats
+ * Lookup285: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -2155,32 +2206,32 @@
alive: 'u32'
},
/**
- * Lookup284: pallet_common::pallet::Error<T>
+ * Lookup286: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
_enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'TokenVariableDataLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation']
},
/**
- * Lookup286: pallet_fungible::pallet::Error<T>
+ * Lookup288: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData']
},
/**
- * Lookup287: pallet_refungible::ItemData
+ * Lookup289: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes',
variableData: 'Bytes'
},
/**
- * Lookup291: pallet_refungible::pallet::Error<T>
+ * Lookup293: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces']
},
/**
- * Lookup292: pallet_nonfungible::ItemData<pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup294: pallet_nonfungible::ItemData<pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
constData: 'Bytes',
@@ -2188,19 +2239,19 @@
owner: 'PalletCommonAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup293: pallet_nonfungible::pallet::Error<T>
+ * Lookup295: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']
},
/**
- * Lookup295: pallet_evm::pallet::Error<T>
+ * Lookup297: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
},
/**
- * Lookup298: fp_rpc::TransactionStatus
+ * Lookup300: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -2212,11 +2263,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup301: ethbloom::Bloom
+ * Lookup303: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup303: ethereum::receipt::ReceiptV3
+ * Lookup305: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -2226,7 +2277,7 @@
}
},
/**
- * Lookup304: ethereum::receipt::EIP658ReceiptData
+ * Lookup306: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -2235,7 +2286,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup305: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup307: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -2243,7 +2294,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup306: ethereum::header::Header
+ * Lookup308: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -2263,41 +2314,41 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup307: ethereum_types::hash::H64
+ * Lookup309: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup312: pallet_ethereum::pallet::Error<T>
+ * Lookup314: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup313: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup315: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup314: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup316: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup316: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup318: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission']
},
/**
- * Lookup317: pallet_evm_migration::pallet::Error<T>
+ * Lookup319: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
},
/**
- * Lookup319: sp_runtime::MultiSignature
+ * Lookup321: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -2307,39 +2358,39 @@
}
},
/**
- * Lookup320: sp_core::ed25519::Signature
+ * Lookup322: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup322: sp_core::sr25519::Signature
+ * Lookup324: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup323: sp_core::ecdsa::Signature
+ * Lookup325: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup326: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup328: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup327: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup329: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup330: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup332: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup331: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup333: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup332: pallet_template_transaction_payment::ChargeTransactionPayment<unique_runtime::Runtime>
+ * Lookup334: pallet_template_transaction_payment::ChargeTransactionPayment<unique_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup333: unique_runtime::Runtime
+ * Lookup335: unique_runtime::Runtime
**/
UniqueRuntimeRuntime: 'Null'
};
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34declare module '@polkadot/types/lookup' {5 import type { BTreeMap, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';6 import type { ITuple } from '@polkadot/types-codec/types';7 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';8 import type { Event } from '@polkadot/types/interfaces/system';910 /** @name PolkadotPrimitivesV1PersistedValidationData (2) */11 export interface PolkadotPrimitivesV1PersistedValidationData extends Struct {12 readonly parentHead: Bytes;13 readonly relayParentNumber: u32;14 readonly relayParentStorageRoot: H256;15 readonly maxPovSize: u32;16 }1718 /** @name PolkadotPrimitivesV1UpgradeRestriction (9) */19 export interface PolkadotPrimitivesV1UpgradeRestriction extends Enum {20 readonly isPresent: boolean;21 readonly type: 'Present';22 }2324 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (10) */25 export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {26 readonly dmqMqcHead: H256;27 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;28 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV1AbridgedHrmpChannel]>>;29 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV1AbridgedHrmpChannel]>>;30 }3132 /** @name PolkadotPrimitivesV1AbridgedHrmpChannel (15) */33 export interface PolkadotPrimitivesV1AbridgedHrmpChannel extends Struct {34 readonly maxCapacity: u32;35 readonly maxTotalSize: u32;36 readonly maxMessageSize: u32;37 readonly msgCount: u32;38 readonly totalSize: u32;39 readonly mqcHead: Option<H256>;40 }4142 /** @name PolkadotPrimitivesV1AbridgedHostConfiguration (17) */43 export interface PolkadotPrimitivesV1AbridgedHostConfiguration extends Struct {44 readonly maxCodeSize: u32;45 readonly maxHeadDataSize: u32;46 readonly maxUpwardQueueCount: u32;47 readonly maxUpwardQueueSize: u32;48 readonly maxUpwardMessageSize: u32;49 readonly maxUpwardMessageNumPerCandidate: u32;50 readonly hrmpMaxMessageNumPerCandidate: u32;51 readonly validationUpgradeCooldown: u32;52 readonly validationUpgradeDelay: u32;53 }5455 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (23) */56 export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {57 readonly recipient: u32;58 readonly data: Bytes;59 }6061 /** @name CumulusPalletParachainSystemCall (26) */62 export interface CumulusPalletParachainSystemCall extends Enum {63 readonly isSetValidationData: boolean;64 readonly asSetValidationData: {65 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;66 } & Struct;67 readonly isSudoSendUpwardMessage: boolean;68 readonly asSudoSendUpwardMessage: {69 readonly message: Bytes;70 } & Struct;71 readonly isAuthorizeUpgrade: boolean;72 readonly asAuthorizeUpgrade: {73 readonly codeHash: H256;74 } & Struct;75 readonly isEnactAuthorizedUpgrade: boolean;76 readonly asEnactAuthorizedUpgrade: {77 readonly code: Bytes;78 } & Struct;79 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';80 }8182 /** @name CumulusPrimitivesParachainInherentParachainInherentData (27) */83 export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {84 readonly validationData: PolkadotPrimitivesV1PersistedValidationData;85 readonly relayChainState: SpTrieStorageProof;86 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;87 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;88 }8990 /** @name SpTrieStorageProof (28) */91 export interface SpTrieStorageProof extends Struct {92 readonly trieNodes: Vec<Bytes>;93 }9495 /** @name PolkadotCorePrimitivesInboundDownwardMessage (30) */96 export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {97 readonly sentAt: u32;98 readonly msg: Bytes;99 }100101 /** @name PolkadotCorePrimitivesInboundHrmpMessage (33) */102 export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {103 readonly sentAt: u32;104 readonly data: Bytes;105 }106107 /** @name CumulusPalletParachainSystemEvent (36) */108 export interface CumulusPalletParachainSystemEvent extends Enum {109 readonly isValidationFunctionStored: boolean;110 readonly isValidationFunctionApplied: boolean;111 readonly asValidationFunctionApplied: u32;112 readonly isValidationFunctionDiscarded: boolean;113 readonly isUpgradeAuthorized: boolean;114 readonly asUpgradeAuthorized: H256;115 readonly isDownwardMessagesReceived: boolean;116 readonly asDownwardMessagesReceived: u32;117 readonly isDownwardMessagesProcessed: boolean;118 readonly asDownwardMessagesProcessed: ITuple<[u64, H256]>;119 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';120 }121122 /** @name CumulusPalletParachainSystemError (37) */123 export interface CumulusPalletParachainSystemError extends Enum {124 readonly isOverlappingUpgrades: boolean;125 readonly isProhibitedByPolkadot: boolean;126 readonly isTooBig: boolean;127 readonly isValidationDataNotAvailable: boolean;128 readonly isHostConfigurationNotAvailable: boolean;129 readonly isNotScheduled: boolean;130 readonly isNothingAuthorized: boolean;131 readonly isUnauthorized: boolean;132 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';133 }134135 /** @name PalletBalancesAccountData (40) */136 export interface PalletBalancesAccountData extends Struct {137 readonly free: u128;138 readonly reserved: u128;139 readonly miscFrozen: u128;140 readonly feeFrozen: u128;141 }142143 /** @name PalletBalancesBalanceLock (42) */144 export interface PalletBalancesBalanceLock extends Struct {145 readonly id: U8aFixed;146 readonly amount: u128;147 readonly reasons: PalletBalancesReasons;148 }149150 /** @name PalletBalancesReasons (44) */151 export interface PalletBalancesReasons extends Enum {152 readonly isFee: boolean;153 readonly isMisc: boolean;154 readonly isAll: boolean;155 readonly type: 'Fee' | 'Misc' | 'All';156 }157158 /** @name PalletBalancesReserveData (47) */159 export interface PalletBalancesReserveData extends Struct {160 readonly id: U8aFixed;161 readonly amount: u128;162 }163164 /** @name PalletBalancesReleases (49) */165 export interface PalletBalancesReleases extends Enum {166 readonly isV100: boolean;167 readonly isV200: boolean;168 readonly type: 'V100' | 'V200';169 }170171 /** @name PalletBalancesCall (50) */172 export interface PalletBalancesCall extends Enum {173 readonly isTransfer: boolean;174 readonly asTransfer: {175 readonly dest: MultiAddress;176 readonly value: Compact<u128>;177 } & Struct;178 readonly isSetBalance: boolean;179 readonly asSetBalance: {180 readonly who: MultiAddress;181 readonly newFree: Compact<u128>;182 readonly newReserved: Compact<u128>;183 } & Struct;184 readonly isForceTransfer: boolean;185 readonly asForceTransfer: {186 readonly source: MultiAddress;187 readonly dest: MultiAddress;188 readonly value: Compact<u128>;189 } & Struct;190 readonly isTransferKeepAlive: boolean;191 readonly asTransferKeepAlive: {192 readonly dest: MultiAddress;193 readonly value: Compact<u128>;194 } & Struct;195 readonly isTransferAll: boolean;196 readonly asTransferAll: {197 readonly dest: MultiAddress;198 readonly keepAlive: bool;199 } & Struct;200 readonly isForceUnreserve: boolean;201 readonly asForceUnreserve: {202 readonly who: MultiAddress;203 readonly amount: u128;204 } & Struct;205 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';206 }207208 /** @name PalletBalancesEvent (56) */209 export interface PalletBalancesEvent extends Enum {210 readonly isEndowed: boolean;211 readonly asEndowed: {212 readonly account: AccountId32;213 readonly freeBalance: u128;214 } & Struct;215 readonly isDustLost: boolean;216 readonly asDustLost: {217 readonly account: AccountId32;218 readonly amount: u128;219 } & Struct;220 readonly isTransfer: boolean;221 readonly asTransfer: {222 readonly from: AccountId32;223 readonly to: AccountId32;224 readonly amount: u128;225 } & Struct;226 readonly isBalanceSet: boolean;227 readonly asBalanceSet: {228 readonly who: AccountId32;229 readonly free: u128;230 readonly reserved: u128;231 } & Struct;232 readonly isReserved: boolean;233 readonly asReserved: {234 readonly who: AccountId32;235 readonly amount: u128;236 } & Struct;237 readonly isUnreserved: boolean;238 readonly asUnreserved: {239 readonly who: AccountId32;240 readonly amount: u128;241 } & Struct;242 readonly isReserveRepatriated: boolean;243 readonly asReserveRepatriated: {244 readonly from: AccountId32;245 readonly to: AccountId32;246 readonly amount: u128;247 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;248 } & Struct;249 readonly isDeposit: boolean;250 readonly asDeposit: {251 readonly who: AccountId32;252 readonly amount: u128;253 } & Struct;254 readonly isWithdraw: boolean;255 readonly asWithdraw: {256 readonly who: AccountId32;257 readonly amount: u128;258 } & Struct;259 readonly isSlashed: boolean;260 readonly asSlashed: {261 readonly who: AccountId32;262 readonly amount: u128;263 } & Struct;264 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';265 }266267 /** @name FrameSupportTokensMiscBalanceStatus (57) */268 export interface FrameSupportTokensMiscBalanceStatus extends Enum {269 readonly isFree: boolean;270 readonly isReserved: boolean;271 readonly type: 'Free' | 'Reserved';272 }273274 /** @name PalletBalancesError (58) */275 export interface PalletBalancesError extends Enum {276 readonly isVestingBalance: boolean;277 readonly isLiquidityRestrictions: boolean;278 readonly isInsufficientBalance: boolean;279 readonly isExistentialDeposit: boolean;280 readonly isKeepAlive: boolean;281 readonly isExistingVestingSchedule: boolean;282 readonly isDeadAccount: boolean;283 readonly isTooManyReserves: boolean;284 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';285 }286287 /** @name PalletTimestampCall (60) */288 export interface PalletTimestampCall extends Enum {289 readonly isSet: boolean;290 readonly asSet: {291 readonly now: Compact<u64>;292 } & Struct;293 readonly type: 'Set';294 }295296 /** @name PalletTransactionPaymentReleases (63) */297 export interface PalletTransactionPaymentReleases extends Enum {298 readonly isV1Ancient: boolean;299 readonly isV2: boolean;300 readonly type: 'V1Ancient' | 'V2';301 }302303 /** @name FrameSupportWeightsWeightToFeeCoefficient (65) */304 export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {305 readonly coeffInteger: u128;306 readonly coeffFrac: Perbill;307 readonly negative: bool;308 readonly degree: u8;309 }310311 /** @name PalletTreasuryProposal (67) */312 export interface PalletTreasuryProposal extends Struct {313 readonly proposer: AccountId32;314 readonly value: u128;315 readonly beneficiary: AccountId32;316 readonly bond: u128;317 }318319 /** @name PalletTreasuryCall (70) */320 export interface PalletTreasuryCall extends Enum {321 readonly isProposeSpend: boolean;322 readonly asProposeSpend: {323 readonly value: Compact<u128>;324 readonly beneficiary: MultiAddress;325 } & Struct;326 readonly isRejectProposal: boolean;327 readonly asRejectProposal: {328 readonly proposalId: Compact<u32>;329 } & Struct;330 readonly isApproveProposal: boolean;331 readonly asApproveProposal: {332 readonly proposalId: Compact<u32>;333 } & Struct;334 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';335 }336337 /** @name PalletTreasuryEvent (72) */338 export interface PalletTreasuryEvent extends Enum {339 readonly isProposed: boolean;340 readonly asProposed: {341 readonly proposalIndex: u32;342 } & Struct;343 readonly isSpending: boolean;344 readonly asSpending: {345 readonly budgetRemaining: u128;346 } & Struct;347 readonly isAwarded: boolean;348 readonly asAwarded: {349 readonly proposalIndex: u32;350 readonly award: u128;351 readonly account: AccountId32;352 } & Struct;353 readonly isRejected: boolean;354 readonly asRejected: {355 readonly proposalIndex: u32;356 readonly slashed: u128;357 } & Struct;358 readonly isBurnt: boolean;359 readonly asBurnt: {360 readonly burntFunds: u128;361 } & Struct;362 readonly isRollover: boolean;363 readonly asRollover: {364 readonly rolloverBalance: u128;365 } & Struct;366 readonly isDeposit: boolean;367 readonly asDeposit: {368 readonly value: u128;369 } & Struct;370 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';371 }372373 /** @name FrameSupportPalletId (75) */374 export interface FrameSupportPalletId extends U8aFixed {}375376 /** @name PalletTreasuryError (76) */377 export interface PalletTreasuryError extends Enum {378 readonly isInsufficientProposersBalance: boolean;379 readonly isInvalidIndex: boolean;380 readonly isTooManyApprovals: boolean;381 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';382 }383384 /** @name PalletSudoCall (77) */385 export interface PalletSudoCall extends Enum {386 readonly isSudo: boolean;387 readonly asSudo: {388 readonly call: Call;389 } & Struct;390 readonly isSudoUncheckedWeight: boolean;391 readonly asSudoUncheckedWeight: {392 readonly call: Call;393 readonly weight: u64;394 } & Struct;395 readonly isSetKey: boolean;396 readonly asSetKey: {397 readonly new_: MultiAddress;398 } & Struct;399 readonly isSudoAs: boolean;400 readonly asSudoAs: {401 readonly who: MultiAddress;402 readonly call: Call;403 } & Struct;404 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';405 }406407 /** @name FrameSystemCall (79) */408 export interface FrameSystemCall extends Enum {409 readonly isFillBlock: boolean;410 readonly asFillBlock: {411 readonly ratio: Perbill;412 } & Struct;413 readonly isRemark: boolean;414 readonly asRemark: {415 readonly remark: Bytes;416 } & Struct;417 readonly isSetHeapPages: boolean;418 readonly asSetHeapPages: {419 readonly pages: u64;420 } & Struct;421 readonly isSetCode: boolean;422 readonly asSetCode: {423 readonly code: Bytes;424 } & Struct;425 readonly isSetCodeWithoutChecks: boolean;426 readonly asSetCodeWithoutChecks: {427 readonly code: Bytes;428 } & Struct;429 readonly isSetStorage: boolean;430 readonly asSetStorage: {431 readonly items: Vec<ITuple<[Bytes, Bytes]>>;432 } & Struct;433 readonly isKillStorage: boolean;434 readonly asKillStorage: {435 readonly keys_: Vec<Bytes>;436 } & Struct;437 readonly isKillPrefix: boolean;438 readonly asKillPrefix: {439 readonly prefix: Bytes;440 readonly subkeys: u32;441 } & Struct;442 readonly isRemarkWithEvent: boolean;443 readonly asRemarkWithEvent: {444 readonly remark: Bytes;445 } & Struct;446 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';447 }448449 /** @name OrmlVestingModuleCall (82) */450 export interface OrmlVestingModuleCall extends Enum {451 readonly isClaim: boolean;452 readonly isVestedTransfer: boolean;453 readonly asVestedTransfer: {454 readonly dest: MultiAddress;455 readonly schedule: OrmlVestingVestingSchedule;456 } & Struct;457 readonly isUpdateVestingSchedules: boolean;458 readonly asUpdateVestingSchedules: {459 readonly who: MultiAddress;460 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;461 } & Struct;462 readonly isClaimFor: boolean;463 readonly asClaimFor: {464 readonly dest: MultiAddress;465 } & Struct;466 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';467 }468469 /** @name OrmlVestingVestingSchedule (83) */470 export interface OrmlVestingVestingSchedule extends Struct {471 readonly start: u32;472 readonly period: u32;473 readonly periodCount: u32;474 readonly perPeriod: Compact<u128>;475 }476477 /** @name CumulusPalletXcmpQueueCall (85) */478 export interface CumulusPalletXcmpQueueCall extends Enum {479 readonly isServiceOverweight: boolean;480 readonly asServiceOverweight: {481 readonly index: u64;482 readonly weightLimit: u64;483 } & Struct;484 readonly type: 'ServiceOverweight';485 }486487 /** @name PalletXcmCall (86) */488 export interface PalletXcmCall extends Enum {489 readonly isSend: boolean;490 readonly asSend: {491 readonly dest: XcmVersionedMultiLocation;492 readonly message: XcmVersionedXcm;493 } & Struct;494 readonly isTeleportAssets: boolean;495 readonly asTeleportAssets: {496 readonly dest: XcmVersionedMultiLocation;497 readonly beneficiary: XcmVersionedMultiLocation;498 readonly assets: XcmVersionedMultiAssets;499 readonly feeAssetItem: u32;500 } & Struct;501 readonly isReserveTransferAssets: boolean;502 readonly asReserveTransferAssets: {503 readonly dest: XcmVersionedMultiLocation;504 readonly beneficiary: XcmVersionedMultiLocation;505 readonly assets: XcmVersionedMultiAssets;506 readonly feeAssetItem: u32;507 } & Struct;508 readonly isExecute: boolean;509 readonly asExecute: {510 readonly message: XcmVersionedXcm;511 readonly maxWeight: u64;512 } & Struct;513 readonly isForceXcmVersion: boolean;514 readonly asForceXcmVersion: {515 readonly location: XcmV1MultiLocation;516 readonly xcmVersion: u32;517 } & Struct;518 readonly isForceDefaultXcmVersion: boolean;519 readonly asForceDefaultXcmVersion: {520 readonly maybeXcmVersion: Option<u32>;521 } & Struct;522 readonly isForceSubscribeVersionNotify: boolean;523 readonly asForceSubscribeVersionNotify: {524 readonly location: XcmVersionedMultiLocation;525 } & Struct;526 readonly isForceUnsubscribeVersionNotify: boolean;527 readonly asForceUnsubscribeVersionNotify: {528 readonly location: XcmVersionedMultiLocation;529 } & Struct;530 readonly isLimitedReserveTransferAssets: boolean;531 readonly asLimitedReserveTransferAssets: {532 readonly dest: XcmVersionedMultiLocation;533 readonly beneficiary: XcmVersionedMultiLocation;534 readonly assets: XcmVersionedMultiAssets;535 readonly feeAssetItem: u32;536 readonly weightLimit: XcmV2WeightLimit;537 } & Struct;538 readonly isLimitedTeleportAssets: boolean;539 readonly asLimitedTeleportAssets: {540 readonly dest: XcmVersionedMultiLocation;541 readonly beneficiary: XcmVersionedMultiLocation;542 readonly assets: XcmVersionedMultiAssets;543 readonly feeAssetItem: u32;544 readonly weightLimit: XcmV2WeightLimit;545 } & Struct;546 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';547 }548549 /** @name XcmVersionedMultiLocation (87) */550 export interface XcmVersionedMultiLocation extends Enum {551 readonly isV0: boolean;552 readonly asV0: XcmV0MultiLocation;553 readonly isV1: boolean;554 readonly asV1: XcmV1MultiLocation;555 readonly type: 'V0' | 'V1';556 }557558 /** @name XcmV0MultiLocation (88) */559 export interface XcmV0MultiLocation extends Enum {560 readonly isNull: boolean;561 readonly isX1: boolean;562 readonly asX1: XcmV0Junction;563 readonly isX2: boolean;564 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;565 readonly isX3: boolean;566 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;567 readonly isX4: boolean;568 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;569 readonly isX5: boolean;570 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;571 readonly isX6: boolean;572 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;573 readonly isX7: boolean;574 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;575 readonly isX8: boolean;576 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;577 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';578 }579580 /** @name XcmV0Junction (89) */581 export interface XcmV0Junction extends Enum {582 readonly isParent: boolean;583 readonly isParachain: boolean;584 readonly asParachain: Compact<u32>;585 readonly isAccountId32: boolean;586 readonly asAccountId32: {587 readonly network: XcmV0JunctionNetworkId;588 readonly id: U8aFixed;589 } & Struct;590 readonly isAccountIndex64: boolean;591 readonly asAccountIndex64: {592 readonly network: XcmV0JunctionNetworkId;593 readonly index: Compact<u64>;594 } & Struct;595 readonly isAccountKey20: boolean;596 readonly asAccountKey20: {597 readonly network: XcmV0JunctionNetworkId;598 readonly key: U8aFixed;599 } & Struct;600 readonly isPalletInstance: boolean;601 readonly asPalletInstance: u8;602 readonly isGeneralIndex: boolean;603 readonly asGeneralIndex: Compact<u128>;604 readonly isGeneralKey: boolean;605 readonly asGeneralKey: Bytes;606 readonly isOnlyChild: boolean;607 readonly isPlurality: boolean;608 readonly asPlurality: {609 readonly id: XcmV0JunctionBodyId;610 readonly part: XcmV0JunctionBodyPart;611 } & Struct;612 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';613 }614615 /** @name XcmV0JunctionNetworkId (90) */616 export interface XcmV0JunctionNetworkId extends Enum {617 readonly isAny: boolean;618 readonly isNamed: boolean;619 readonly asNamed: Bytes;620 readonly isPolkadot: boolean;621 readonly isKusama: boolean;622 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';623 }624625 /** @name XcmV0JunctionBodyId (91) */626 export interface XcmV0JunctionBodyId extends Enum {627 readonly isUnit: boolean;628 readonly isNamed: boolean;629 readonly asNamed: Bytes;630 readonly isIndex: boolean;631 readonly asIndex: Compact<u32>;632 readonly isExecutive: boolean;633 readonly isTechnical: boolean;634 readonly isLegislative: boolean;635 readonly isJudicial: boolean;636 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';637 }638639 /** @name XcmV0JunctionBodyPart (92) */640 export interface XcmV0JunctionBodyPart extends Enum {641 readonly isVoice: boolean;642 readonly isMembers: boolean;643 readonly asMembers: {644 readonly count: Compact<u32>;645 } & Struct;646 readonly isFraction: boolean;647 readonly asFraction: {648 readonly nom: Compact<u32>;649 readonly denom: Compact<u32>;650 } & Struct;651 readonly isAtLeastProportion: boolean;652 readonly asAtLeastProportion: {653 readonly nom: Compact<u32>;654 readonly denom: Compact<u32>;655 } & Struct;656 readonly isMoreThanProportion: boolean;657 readonly asMoreThanProportion: {658 readonly nom: Compact<u32>;659 readonly denom: Compact<u32>;660 } & Struct;661 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';662 }663664 /** @name XcmV1MultiLocation (93) */665 export interface XcmV1MultiLocation extends Struct {666 readonly parents: u8;667 readonly interior: XcmV1MultilocationJunctions;668 }669670 /** @name XcmV1MultilocationJunctions (94) */671 export interface XcmV1MultilocationJunctions extends Enum {672 readonly isHere: boolean;673 readonly isX1: boolean;674 readonly asX1: XcmV1Junction;675 readonly isX2: boolean;676 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;677 readonly isX3: boolean;678 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;679 readonly isX4: boolean;680 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;681 readonly isX5: boolean;682 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;683 readonly isX6: boolean;684 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;685 readonly isX7: boolean;686 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;687 readonly isX8: boolean;688 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;689 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';690 }691692 /** @name XcmV1Junction (95) */693 export interface XcmV1Junction extends Enum {694 readonly isParachain: boolean;695 readonly asParachain: Compact<u32>;696 readonly isAccountId32: boolean;697 readonly asAccountId32: {698 readonly network: XcmV0JunctionNetworkId;699 readonly id: U8aFixed;700 } & Struct;701 readonly isAccountIndex64: boolean;702 readonly asAccountIndex64: {703 readonly network: XcmV0JunctionNetworkId;704 readonly index: Compact<u64>;705 } & Struct;706 readonly isAccountKey20: boolean;707 readonly asAccountKey20: {708 readonly network: XcmV0JunctionNetworkId;709 readonly key: U8aFixed;710 } & Struct;711 readonly isPalletInstance: boolean;712 readonly asPalletInstance: u8;713 readonly isGeneralIndex: boolean;714 readonly asGeneralIndex: Compact<u128>;715 readonly isGeneralKey: boolean;716 readonly asGeneralKey: Bytes;717 readonly isOnlyChild: boolean;718 readonly isPlurality: boolean;719 readonly asPlurality: {720 readonly id: XcmV0JunctionBodyId;721 readonly part: XcmV0JunctionBodyPart;722 } & Struct;723 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';724 }725726 /** @name XcmVersionedXcm (96) */727 export interface XcmVersionedXcm extends Enum {728 readonly isV0: boolean;729 readonly asV0: XcmV0Xcm;730 readonly isV1: boolean;731 readonly asV1: XcmV1Xcm;732 readonly isV2: boolean;733 readonly asV2: XcmV2Xcm;734 readonly type: 'V0' | 'V1' | 'V2';735 }736737 /** @name XcmV0Xcm (97) */738 export interface XcmV0Xcm extends Enum {739 readonly isWithdrawAsset: boolean;740 readonly asWithdrawAsset: {741 readonly assets: Vec<XcmV0MultiAsset>;742 readonly effects: Vec<XcmV0Order>;743 } & Struct;744 readonly isReserveAssetDeposit: boolean;745 readonly asReserveAssetDeposit: {746 readonly assets: Vec<XcmV0MultiAsset>;747 readonly effects: Vec<XcmV0Order>;748 } & Struct;749 readonly isTeleportAsset: boolean;750 readonly asTeleportAsset: {751 readonly assets: Vec<XcmV0MultiAsset>;752 readonly effects: Vec<XcmV0Order>;753 } & Struct;754 readonly isQueryResponse: boolean;755 readonly asQueryResponse: {756 readonly queryId: Compact<u64>;757 readonly response: XcmV0Response;758 } & Struct;759 readonly isTransferAsset: boolean;760 readonly asTransferAsset: {761 readonly assets: Vec<XcmV0MultiAsset>;762 readonly dest: XcmV0MultiLocation;763 } & Struct;764 readonly isTransferReserveAsset: boolean;765 readonly asTransferReserveAsset: {766 readonly assets: Vec<XcmV0MultiAsset>;767 readonly dest: XcmV0MultiLocation;768 readonly effects: Vec<XcmV0Order>;769 } & Struct;770 readonly isTransact: boolean;771 readonly asTransact: {772 readonly originType: XcmV0OriginKind;773 readonly requireWeightAtMost: u64;774 readonly call: XcmDoubleEncoded;775 } & Struct;776 readonly isHrmpNewChannelOpenRequest: boolean;777 readonly asHrmpNewChannelOpenRequest: {778 readonly sender: Compact<u32>;779 readonly maxMessageSize: Compact<u32>;780 readonly maxCapacity: Compact<u32>;781 } & Struct;782 readonly isHrmpChannelAccepted: boolean;783 readonly asHrmpChannelAccepted: {784 readonly recipient: Compact<u32>;785 } & Struct;786 readonly isHrmpChannelClosing: boolean;787 readonly asHrmpChannelClosing: {788 readonly initiator: Compact<u32>;789 readonly sender: Compact<u32>;790 readonly recipient: Compact<u32>;791 } & Struct;792 readonly isRelayedFrom: boolean;793 readonly asRelayedFrom: {794 readonly who: XcmV0MultiLocation;795 readonly message: XcmV0Xcm;796 } & Struct;797 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';798 }799800 /** @name XcmV0MultiAsset (99) */801 export interface XcmV0MultiAsset extends Enum {802 readonly isNone: boolean;803 readonly isAll: boolean;804 readonly isAllFungible: boolean;805 readonly isAllNonFungible: boolean;806 readonly isAllAbstractFungible: boolean;807 readonly asAllAbstractFungible: {808 readonly id: Bytes;809 } & Struct;810 readonly isAllAbstractNonFungible: boolean;811 readonly asAllAbstractNonFungible: {812 readonly class: Bytes;813 } & Struct;814 readonly isAllConcreteFungible: boolean;815 readonly asAllConcreteFungible: {816 readonly id: XcmV0MultiLocation;817 } & Struct;818 readonly isAllConcreteNonFungible: boolean;819 readonly asAllConcreteNonFungible: {820 readonly class: XcmV0MultiLocation;821 } & Struct;822 readonly isAbstractFungible: boolean;823 readonly asAbstractFungible: {824 readonly id: Bytes;825 readonly amount: Compact<u128>;826 } & Struct;827 readonly isAbstractNonFungible: boolean;828 readonly asAbstractNonFungible: {829 readonly class: Bytes;830 readonly instance: XcmV1MultiassetAssetInstance;831 } & Struct;832 readonly isConcreteFungible: boolean;833 readonly asConcreteFungible: {834 readonly id: XcmV0MultiLocation;835 readonly amount: Compact<u128>;836 } & Struct;837 readonly isConcreteNonFungible: boolean;838 readonly asConcreteNonFungible: {839 readonly class: XcmV0MultiLocation;840 readonly instance: XcmV1MultiassetAssetInstance;841 } & Struct;842 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';843 }844845 /** @name XcmV1MultiassetAssetInstance (100) */846 export interface XcmV1MultiassetAssetInstance extends Enum {847 readonly isUndefined: boolean;848 readonly isIndex: boolean;849 readonly asIndex: Compact<u128>;850 readonly isArray4: boolean;851 readonly asArray4: U8aFixed;852 readonly isArray8: boolean;853 readonly asArray8: U8aFixed;854 readonly isArray16: boolean;855 readonly asArray16: U8aFixed;856 readonly isArray32: boolean;857 readonly asArray32: U8aFixed;858 readonly isBlob: boolean;859 readonly asBlob: Bytes;860 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';861 }862863 /** @name XcmV0Order (104) */864 export interface XcmV0Order extends Enum {865 readonly isNull: boolean;866 readonly isDepositAsset: boolean;867 readonly asDepositAsset: {868 readonly assets: Vec<XcmV0MultiAsset>;869 readonly dest: XcmV0MultiLocation;870 } & Struct;871 readonly isDepositReserveAsset: boolean;872 readonly asDepositReserveAsset: {873 readonly assets: Vec<XcmV0MultiAsset>;874 readonly dest: XcmV0MultiLocation;875 readonly effects: Vec<XcmV0Order>;876 } & Struct;877 readonly isExchangeAsset: boolean;878 readonly asExchangeAsset: {879 readonly give: Vec<XcmV0MultiAsset>;880 readonly receive: Vec<XcmV0MultiAsset>;881 } & Struct;882 readonly isInitiateReserveWithdraw: boolean;883 readonly asInitiateReserveWithdraw: {884 readonly assets: Vec<XcmV0MultiAsset>;885 readonly reserve: XcmV0MultiLocation;886 readonly effects: Vec<XcmV0Order>;887 } & Struct;888 readonly isInitiateTeleport: boolean;889 readonly asInitiateTeleport: {890 readonly assets: Vec<XcmV0MultiAsset>;891 readonly dest: XcmV0MultiLocation;892 readonly effects: Vec<XcmV0Order>;893 } & Struct;894 readonly isQueryHolding: boolean;895 readonly asQueryHolding: {896 readonly queryId: Compact<u64>;897 readonly dest: XcmV0MultiLocation;898 readonly assets: Vec<XcmV0MultiAsset>;899 } & Struct;900 readonly isBuyExecution: boolean;901 readonly asBuyExecution: {902 readonly fees: XcmV0MultiAsset;903 readonly weight: u64;904 readonly debt: u64;905 readonly haltOnError: bool;906 readonly xcm: Vec<XcmV0Xcm>;907 } & Struct;908 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';909 }910911 /** @name XcmV0Response (106) */912 export interface XcmV0Response extends Enum {913 readonly isAssets: boolean;914 readonly asAssets: Vec<XcmV0MultiAsset>;915 readonly type: 'Assets';916 }917918 /** @name XcmV0OriginKind (107) */919 export interface XcmV0OriginKind extends Enum {920 readonly isNative: boolean;921 readonly isSovereignAccount: boolean;922 readonly isSuperuser: boolean;923 readonly isXcm: boolean;924 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';925 }926927 /** @name XcmDoubleEncoded (108) */928 export interface XcmDoubleEncoded extends Struct {929 readonly encoded: Bytes;930 }931932 /** @name XcmV1Xcm (109) */933 export interface XcmV1Xcm extends Enum {934 readonly isWithdrawAsset: boolean;935 readonly asWithdrawAsset: {936 readonly assets: XcmV1MultiassetMultiAssets;937 readonly effects: Vec<XcmV1Order>;938 } & Struct;939 readonly isReserveAssetDeposited: boolean;940 readonly asReserveAssetDeposited: {941 readonly assets: XcmV1MultiassetMultiAssets;942 readonly effects: Vec<XcmV1Order>;943 } & Struct;944 readonly isReceiveTeleportedAsset: boolean;945 readonly asReceiveTeleportedAsset: {946 readonly assets: XcmV1MultiassetMultiAssets;947 readonly effects: Vec<XcmV1Order>;948 } & Struct;949 readonly isQueryResponse: boolean;950 readonly asQueryResponse: {951 readonly queryId: Compact<u64>;952 readonly response: XcmV1Response;953 } & Struct;954 readonly isTransferAsset: boolean;955 readonly asTransferAsset: {956 readonly assets: XcmV1MultiassetMultiAssets;957 readonly beneficiary: XcmV1MultiLocation;958 } & Struct;959 readonly isTransferReserveAsset: boolean;960 readonly asTransferReserveAsset: {961 readonly assets: XcmV1MultiassetMultiAssets;962 readonly dest: XcmV1MultiLocation;963 readonly effects: Vec<XcmV1Order>;964 } & Struct;965 readonly isTransact: boolean;966 readonly asTransact: {967 readonly originType: XcmV0OriginKind;968 readonly requireWeightAtMost: u64;969 readonly call: XcmDoubleEncoded;970 } & Struct;971 readonly isHrmpNewChannelOpenRequest: boolean;972 readonly asHrmpNewChannelOpenRequest: {973 readonly sender: Compact<u32>;974 readonly maxMessageSize: Compact<u32>;975 readonly maxCapacity: Compact<u32>;976 } & Struct;977 readonly isHrmpChannelAccepted: boolean;978 readonly asHrmpChannelAccepted: {979 readonly recipient: Compact<u32>;980 } & Struct;981 readonly isHrmpChannelClosing: boolean;982 readonly asHrmpChannelClosing: {983 readonly initiator: Compact<u32>;984 readonly sender: Compact<u32>;985 readonly recipient: Compact<u32>;986 } & Struct;987 readonly isRelayedFrom: boolean;988 readonly asRelayedFrom: {989 readonly who: XcmV1MultilocationJunctions;990 readonly message: XcmV1Xcm;991 } & Struct;992 readonly isSubscribeVersion: boolean;993 readonly asSubscribeVersion: {994 readonly queryId: Compact<u64>;995 readonly maxResponseWeight: Compact<u64>;996 } & Struct;997 readonly isUnsubscribeVersion: boolean;998 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';999 }10001001 /** @name XcmV1MultiassetMultiAssets (110) */1002 export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}10031004 /** @name XcmV1MultiAsset (112) */1005 export interface XcmV1MultiAsset extends Struct {1006 readonly id: XcmV1MultiassetAssetId;1007 readonly fun: XcmV1MultiassetFungibility;1008 }10091010 /** @name XcmV1MultiassetAssetId (113) */1011 export interface XcmV1MultiassetAssetId extends Enum {1012 readonly isConcrete: boolean;1013 readonly asConcrete: XcmV1MultiLocation;1014 readonly isAbstract: boolean;1015 readonly asAbstract: Bytes;1016 readonly type: 'Concrete' | 'Abstract';1017 }10181019 /** @name XcmV1MultiassetFungibility (114) */1020 export interface XcmV1MultiassetFungibility extends Enum {1021 readonly isFungible: boolean;1022 readonly asFungible: Compact<u128>;1023 readonly isNonFungible: boolean;1024 readonly asNonFungible: XcmV1MultiassetAssetInstance;1025 readonly type: 'Fungible' | 'NonFungible';1026 }10271028 /** @name XcmV1Order (116) */1029 export interface XcmV1Order extends Enum {1030 readonly isNoop: boolean;1031 readonly isDepositAsset: boolean;1032 readonly asDepositAsset: {1033 readonly assets: XcmV1MultiassetMultiAssetFilter;1034 readonly maxAssets: u32;1035 readonly beneficiary: XcmV1MultiLocation;1036 } & Struct;1037 readonly isDepositReserveAsset: boolean;1038 readonly asDepositReserveAsset: {1039 readonly assets: XcmV1MultiassetMultiAssetFilter;1040 readonly maxAssets: u32;1041 readonly dest: XcmV1MultiLocation;1042 readonly effects: Vec<XcmV1Order>;1043 } & Struct;1044 readonly isExchangeAsset: boolean;1045 readonly asExchangeAsset: {1046 readonly give: XcmV1MultiassetMultiAssetFilter;1047 readonly receive: XcmV1MultiassetMultiAssets;1048 } & Struct;1049 readonly isInitiateReserveWithdraw: boolean;1050 readonly asInitiateReserveWithdraw: {1051 readonly assets: XcmV1MultiassetMultiAssetFilter;1052 readonly reserve: XcmV1MultiLocation;1053 readonly effects: Vec<XcmV1Order>;1054 } & Struct;1055 readonly isInitiateTeleport: boolean;1056 readonly asInitiateTeleport: {1057 readonly assets: XcmV1MultiassetMultiAssetFilter;1058 readonly dest: XcmV1MultiLocation;1059 readonly effects: Vec<XcmV1Order>;1060 } & Struct;1061 readonly isQueryHolding: boolean;1062 readonly asQueryHolding: {1063 readonly queryId: Compact<u64>;1064 readonly dest: XcmV1MultiLocation;1065 readonly assets: XcmV1MultiassetMultiAssetFilter;1066 } & Struct;1067 readonly isBuyExecution: boolean;1068 readonly asBuyExecution: {1069 readonly fees: XcmV1MultiAsset;1070 readonly weight: u64;1071 readonly debt: u64;1072 readonly haltOnError: bool;1073 readonly instructions: Vec<XcmV1Xcm>;1074 } & Struct;1075 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';1076 }10771078 /** @name XcmV1MultiassetMultiAssetFilter (117) */1079 export interface XcmV1MultiassetMultiAssetFilter extends Enum {1080 readonly isDefinite: boolean;1081 readonly asDefinite: XcmV1MultiassetMultiAssets;1082 readonly isWild: boolean;1083 readonly asWild: XcmV1MultiassetWildMultiAsset;1084 readonly type: 'Definite' | 'Wild';1085 }10861087 /** @name XcmV1MultiassetWildMultiAsset (118) */1088 export interface XcmV1MultiassetWildMultiAsset extends Enum {1089 readonly isAll: boolean;1090 readonly isAllOf: boolean;1091 readonly asAllOf: {1092 readonly id: XcmV1MultiassetAssetId;1093 readonly fun: XcmV1MultiassetWildFungibility;1094 } & Struct;1095 readonly type: 'All' | 'AllOf';1096 }10971098 /** @name XcmV1MultiassetWildFungibility (119) */1099 export interface XcmV1MultiassetWildFungibility extends Enum {1100 readonly isFungible: boolean;1101 readonly isNonFungible: boolean;1102 readonly type: 'Fungible' | 'NonFungible';1103 }11041105 /** @name XcmV1Response (121) */1106 export interface XcmV1Response extends Enum {1107 readonly isAssets: boolean;1108 readonly asAssets: XcmV1MultiassetMultiAssets;1109 readonly isVersion: boolean;1110 readonly asVersion: u32;1111 readonly type: 'Assets' | 'Version';1112 }11131114 /** @name XcmV2Xcm (122) */1115 export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}11161117 /** @name XcmV2Instruction (124) */1118 export interface XcmV2Instruction extends Enum {1119 readonly isWithdrawAsset: boolean;1120 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;1121 readonly isReserveAssetDeposited: boolean;1122 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;1123 readonly isReceiveTeleportedAsset: boolean;1124 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;1125 readonly isQueryResponse: boolean;1126 readonly asQueryResponse: {1127 readonly queryId: Compact<u64>;1128 readonly response: XcmV2Response;1129 readonly maxWeight: Compact<u64>;1130 } & Struct;1131 readonly isTransferAsset: boolean;1132 readonly asTransferAsset: {1133 readonly assets: XcmV1MultiassetMultiAssets;1134 readonly beneficiary: XcmV1MultiLocation;1135 } & Struct;1136 readonly isTransferReserveAsset: boolean;1137 readonly asTransferReserveAsset: {1138 readonly assets: XcmV1MultiassetMultiAssets;1139 readonly dest: XcmV1MultiLocation;1140 readonly xcm: XcmV2Xcm;1141 } & Struct;1142 readonly isTransact: boolean;1143 readonly asTransact: {1144 readonly originType: XcmV0OriginKind;1145 readonly requireWeightAtMost: Compact<u64>;1146 readonly call: XcmDoubleEncoded;1147 } & Struct;1148 readonly isHrmpNewChannelOpenRequest: boolean;1149 readonly asHrmpNewChannelOpenRequest: {1150 readonly sender: Compact<u32>;1151 readonly maxMessageSize: Compact<u32>;1152 readonly maxCapacity: Compact<u32>;1153 } & Struct;1154 readonly isHrmpChannelAccepted: boolean;1155 readonly asHrmpChannelAccepted: {1156 readonly recipient: Compact<u32>;1157 } & Struct;1158 readonly isHrmpChannelClosing: boolean;1159 readonly asHrmpChannelClosing: {1160 readonly initiator: Compact<u32>;1161 readonly sender: Compact<u32>;1162 readonly recipient: Compact<u32>;1163 } & Struct;1164 readonly isClearOrigin: boolean;1165 readonly isDescendOrigin: boolean;1166 readonly asDescendOrigin: XcmV1MultilocationJunctions;1167 readonly isReportError: boolean;1168 readonly asReportError: {1169 readonly queryId: Compact<u64>;1170 readonly dest: XcmV1MultiLocation;1171 readonly maxResponseWeight: Compact<u64>;1172 } & Struct;1173 readonly isDepositAsset: boolean;1174 readonly asDepositAsset: {1175 readonly assets: XcmV1MultiassetMultiAssetFilter;1176 readonly maxAssets: Compact<u32>;1177 readonly beneficiary: XcmV1MultiLocation;1178 } & Struct;1179 readonly isDepositReserveAsset: boolean;1180 readonly asDepositReserveAsset: {1181 readonly assets: XcmV1MultiassetMultiAssetFilter;1182 readonly maxAssets: Compact<u32>;1183 readonly dest: XcmV1MultiLocation;1184 readonly xcm: XcmV2Xcm;1185 } & Struct;1186 readonly isExchangeAsset: boolean;1187 readonly asExchangeAsset: {1188 readonly give: XcmV1MultiassetMultiAssetFilter;1189 readonly receive: XcmV1MultiassetMultiAssets;1190 } & Struct;1191 readonly isInitiateReserveWithdraw: boolean;1192 readonly asInitiateReserveWithdraw: {1193 readonly assets: XcmV1MultiassetMultiAssetFilter;1194 readonly reserve: XcmV1MultiLocation;1195 readonly xcm: XcmV2Xcm;1196 } & Struct;1197 readonly isInitiateTeleport: boolean;1198 readonly asInitiateTeleport: {1199 readonly assets: XcmV1MultiassetMultiAssetFilter;1200 readonly dest: XcmV1MultiLocation;1201 readonly xcm: XcmV2Xcm;1202 } & Struct;1203 readonly isQueryHolding: boolean;1204 readonly asQueryHolding: {1205 readonly queryId: Compact<u64>;1206 readonly dest: XcmV1MultiLocation;1207 readonly assets: XcmV1MultiassetMultiAssetFilter;1208 readonly maxResponseWeight: Compact<u64>;1209 } & Struct;1210 readonly isBuyExecution: boolean;1211 readonly asBuyExecution: {1212 readonly fees: XcmV1MultiAsset;1213 readonly weightLimit: XcmV2WeightLimit;1214 } & Struct;1215 readonly isRefundSurplus: boolean;1216 readonly isSetErrorHandler: boolean;1217 readonly asSetErrorHandler: XcmV2Xcm;1218 readonly isSetAppendix: boolean;1219 readonly asSetAppendix: XcmV2Xcm;1220 readonly isClearError: boolean;1221 readonly isClaimAsset: boolean;1222 readonly asClaimAsset: {1223 readonly assets: XcmV1MultiassetMultiAssets;1224 readonly ticket: XcmV1MultiLocation;1225 } & Struct;1226 readonly isTrap: boolean;1227 readonly asTrap: Compact<u64>;1228 readonly isSubscribeVersion: boolean;1229 readonly asSubscribeVersion: {1230 readonly queryId: Compact<u64>;1231 readonly maxResponseWeight: Compact<u64>;1232 } & Struct;1233 readonly isUnsubscribeVersion: boolean;1234 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';1235 }12361237 /** @name XcmV2Response (125) */1238 export interface XcmV2Response extends Enum {1239 readonly isNull: boolean;1240 readonly isAssets: boolean;1241 readonly asAssets: XcmV1MultiassetMultiAssets;1242 readonly isExecutionResult: boolean;1243 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;1244 readonly isVersion: boolean;1245 readonly asVersion: u32;1246 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';1247 }12481249 /** @name XcmV2TraitsError (128) */1250 export interface XcmV2TraitsError extends Enum {1251 readonly isOverflow: boolean;1252 readonly isUnimplemented: boolean;1253 readonly isUntrustedReserveLocation: boolean;1254 readonly isUntrustedTeleportLocation: boolean;1255 readonly isMultiLocationFull: boolean;1256 readonly isMultiLocationNotInvertible: boolean;1257 readonly isBadOrigin: boolean;1258 readonly isInvalidLocation: boolean;1259 readonly isAssetNotFound: boolean;1260 readonly isFailedToTransactAsset: boolean;1261 readonly isNotWithdrawable: boolean;1262 readonly isLocationCannotHold: boolean;1263 readonly isExceedsMaxMessageSize: boolean;1264 readonly isDestinationUnsupported: boolean;1265 readonly isTransport: boolean;1266 readonly isUnroutable: boolean;1267 readonly isUnknownClaim: boolean;1268 readonly isFailedToDecode: boolean;1269 readonly isMaxWeightInvalid: boolean;1270 readonly isNotHoldingFees: boolean;1271 readonly isTooExpensive: boolean;1272 readonly isTrap: boolean;1273 readonly asTrap: u64;1274 readonly isUnhandledXcmVersion: boolean;1275 readonly isWeightLimitReached: boolean;1276 readonly asWeightLimitReached: u64;1277 readonly isBarrier: boolean;1278 readonly isWeightNotComputable: boolean;1279 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';1280 }12811282 /** @name XcmV2WeightLimit (129) */1283 export interface XcmV2WeightLimit extends Enum {1284 readonly isUnlimited: boolean;1285 readonly isLimited: boolean;1286 readonly asLimited: Compact<u64>;1287 readonly type: 'Unlimited' | 'Limited';1288 }12891290 /** @name XcmVersionedMultiAssets (130) */1291 export interface XcmVersionedMultiAssets extends Enum {1292 readonly isV0: boolean;1293 readonly asV0: Vec<XcmV0MultiAsset>;1294 readonly isV1: boolean;1295 readonly asV1: XcmV1MultiassetMultiAssets;1296 readonly type: 'V0' | 'V1';1297 }12981299 /** @name CumulusPalletXcmCall (145) */1300 export type CumulusPalletXcmCall = Null;13011302 /** @name CumulusPalletDmpQueueCall (146) */1303 export interface CumulusPalletDmpQueueCall extends Enum {1304 readonly isServiceOverweight: boolean;1305 readonly asServiceOverweight: {1306 readonly index: u64;1307 readonly weightLimit: u64;1308 } & Struct;1309 readonly type: 'ServiceOverweight';1310 }13111312 /** @name PalletInflationCall (147) */1313 export interface PalletInflationCall extends Enum {1314 readonly isStartInflation: boolean;1315 readonly asStartInflation: {1316 readonly inflationStartRelayBlock: u32;1317 } & Struct;1318 readonly type: 'StartInflation';1319 }13201321 /** @name PalletUniqueCall (148) */1322 export interface PalletUniqueCall extends Enum {1323 readonly isCreateCollection: boolean;1324 readonly asCreateCollection: {1325 readonly collectionName: Vec<u16>;1326 readonly collectionDescription: Vec<u16>;1327 readonly tokenPrefix: Bytes;1328 readonly mode: UpDataStructsCollectionMode;1329 } & Struct;1330 readonly isCreateCollectionEx: boolean;1331 readonly asCreateCollectionEx: {1332 readonly data: UpDataStructsCreateCollectionData;1333 } & Struct;1334 readonly isDestroyCollection: boolean;1335 readonly asDestroyCollection: {1336 readonly collectionId: u32;1337 } & Struct;1338 readonly isAddToAllowList: boolean;1339 readonly asAddToAllowList: {1340 readonly collectionId: u32;1341 readonly address: PalletCommonAccountBasicCrossAccountIdRepr;1342 } & Struct;1343 readonly isRemoveFromAllowList: boolean;1344 readonly asRemoveFromAllowList: {1345 readonly collectionId: u32;1346 readonly address: PalletCommonAccountBasicCrossAccountIdRepr;1347 } & Struct;1348 readonly isSetPublicAccessMode: boolean;1349 readonly asSetPublicAccessMode: {1350 readonly collectionId: u32;1351 readonly mode: UpDataStructsAccessMode;1352 } & Struct;1353 readonly isSetMintPermission: boolean;1354 readonly asSetMintPermission: {1355 readonly collectionId: u32;1356 readonly mintPermission: bool;1357 } & Struct;1358 readonly isChangeCollectionOwner: boolean;1359 readonly asChangeCollectionOwner: {1360 readonly collectionId: u32;1361 readonly newOwner: AccountId32;1362 } & Struct;1363 readonly isAddCollectionAdmin: boolean;1364 readonly asAddCollectionAdmin: {1365 readonly collectionId: u32;1366 readonly newAdminId: PalletCommonAccountBasicCrossAccountIdRepr;1367 } & Struct;1368 readonly isRemoveCollectionAdmin: boolean;1369 readonly asRemoveCollectionAdmin: {1370 readonly collectionId: u32;1371 readonly accountId: PalletCommonAccountBasicCrossAccountIdRepr;1372 } & Struct;1373 readonly isSetCollectionSponsor: boolean;1374 readonly asSetCollectionSponsor: {1375 readonly collectionId: u32;1376 readonly newSponsor: AccountId32;1377 } & Struct;1378 readonly isConfirmSponsorship: boolean;1379 readonly asConfirmSponsorship: {1380 readonly collectionId: u32;1381 } & Struct;1382 readonly isRemoveCollectionSponsor: boolean;1383 readonly asRemoveCollectionSponsor: {1384 readonly collectionId: u32;1385 } & Struct;1386 readonly isCreateItem: boolean;1387 readonly asCreateItem: {1388 readonly collectionId: u32;1389 readonly owner: PalletCommonAccountBasicCrossAccountIdRepr;1390 readonly data: UpDataStructsCreateItemData;1391 } & Struct;1392 readonly isCreateMultipleItems: boolean;1393 readonly asCreateMultipleItems: {1394 readonly collectionId: u32;1395 readonly owner: PalletCommonAccountBasicCrossAccountIdRepr;1396 readonly itemsData: Vec<UpDataStructsCreateItemData>;1397 } & Struct;1398 readonly isSetTransfersEnabledFlag: boolean;1399 readonly asSetTransfersEnabledFlag: {1400 readonly collectionId: u32;1401 readonly value: bool;1402 } & Struct;1403 readonly isBurnItem: boolean;1404 readonly asBurnItem: {1405 readonly collectionId: u32;1406 readonly itemId: u32;1407 readonly value: u128;1408 } & Struct;1409 readonly isBurnFrom: boolean;1410 readonly asBurnFrom: {1411 readonly collectionId: u32;1412 readonly from: PalletCommonAccountBasicCrossAccountIdRepr;1413 readonly itemId: u32;1414 readonly value: u128;1415 } & Struct;1416 readonly isTransfer: boolean;1417 readonly asTransfer: {1418 readonly recipient: PalletCommonAccountBasicCrossAccountIdRepr;1419 readonly collectionId: u32;1420 readonly itemId: u32;1421 readonly value: u128;1422 } & Struct;1423 readonly isApprove: boolean;1424 readonly asApprove: {1425 readonly spender: PalletCommonAccountBasicCrossAccountIdRepr;1426 readonly collectionId: u32;1427 readonly itemId: u32;1428 readonly amount: u128;1429 } & Struct;1430 readonly isTransferFrom: boolean;1431 readonly asTransferFrom: {1432 readonly from: PalletCommonAccountBasicCrossAccountIdRepr;1433 readonly recipient: PalletCommonAccountBasicCrossAccountIdRepr;1434 readonly collectionId: u32;1435 readonly itemId: u32;1436 readonly value: u128;1437 } & Struct;1438 readonly isSetVariableMetaData: boolean;1439 readonly asSetVariableMetaData: {1440 readonly collectionId: u32;1441 readonly itemId: u32;1442 readonly data: Bytes;1443 } & Struct;1444 readonly isSetMetaUpdatePermissionFlag: boolean;1445 readonly asSetMetaUpdatePermissionFlag: {1446 readonly collectionId: u32;1447 readonly value: UpDataStructsMetaUpdatePermission;1448 } & Struct;1449 readonly isSetSchemaVersion: boolean;1450 readonly asSetSchemaVersion: {1451 readonly collectionId: u32;1452 readonly version: UpDataStructsSchemaVersion;1453 } & Struct;1454 readonly isSetOffchainSchema: boolean;1455 readonly asSetOffchainSchema: {1456 readonly collectionId: u32;1457 readonly schema: Bytes;1458 } & Struct;1459 readonly isSetConstOnChainSchema: boolean;1460 readonly asSetConstOnChainSchema: {1461 readonly collectionId: u32;1462 readonly schema: Bytes;1463 } & Struct;1464 readonly isSetVariableOnChainSchema: boolean;1465 readonly asSetVariableOnChainSchema: {1466 readonly collectionId: u32;1467 readonly schema: Bytes;1468 } & Struct;1469 readonly isSetCollectionLimits: boolean;1470 readonly asSetCollectionLimits: {1471 readonly collectionId: u32;1472 readonly newLimit: UpDataStructsCollectionLimits;1473 } & Struct;1474 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetVariableMetaData' | 'SetMetaUpdatePermissionFlag' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetVariableOnChainSchema' | 'SetCollectionLimits';1475 }14761477 /** @name UpDataStructsCollectionMode (154) */1478 export interface UpDataStructsCollectionMode extends Enum {1479 readonly isNft: boolean;1480 readonly isFungible: boolean;1481 readonly asFungible: u8;1482 readonly isReFungible: boolean;1483 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1484 }14851486 /** @name UpDataStructsCreateCollectionData (155) */1487 export interface UpDataStructsCreateCollectionData extends Struct {1488 readonly mode: UpDataStructsCollectionMode;1489 readonly access: Option<UpDataStructsAccessMode>;1490 readonly name: Vec<u16>;1491 readonly description: Vec<u16>;1492 readonly tokenPrefix: Bytes;1493 readonly offchainSchema: Bytes;1494 readonly schemaVersion: Option<UpDataStructsSchemaVersion>;1495 readonly pendingSponsor: Option<AccountId32>;1496 readonly limits: Option<UpDataStructsCollectionLimits>;1497 readonly variableOnChainSchema: Bytes;1498 readonly constOnChainSchema: Bytes;1499 readonly metaUpdatePermission: Option<UpDataStructsMetaUpdatePermission>;1500 }15011502 /** @name UpDataStructsAccessMode (157) */1503 export interface UpDataStructsAccessMode extends Enum {1504 readonly isNormal: boolean;1505 readonly isAllowList: boolean;1506 readonly type: 'Normal' | 'AllowList';1507 }15081509 /** @name UpDataStructsSchemaVersion (160) */1510 export interface UpDataStructsSchemaVersion extends Enum {1511 readonly isImageURL: boolean;1512 readonly isUnique: boolean;1513 readonly type: 'ImageURL' | 'Unique';1514 }15151516 /** @name UpDataStructsSponsoringRateLimit */1517 export interface UpDataStructsSponsoringRateLimit extends Enum {1518 readonly isSponsoringDisabled: boolean;1519 readonly isBlocks: boolean;1520 readonly asBlocks: u32;1521 readonly type: 'SponsoringDisabled' | 'Blocks';1522 }15231524 /** @name UpDataStructsCollectionLimits (163) */1525 export interface UpDataStructsCollectionLimits extends Struct {1526 readonly accountTokenOwnershipLimit: Option<u32>;1527 readonly sponsoredDataSize: Option<u32>;1528 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;1529 readonly tokenLimit: Option<u32>;1530 readonly sponsorTransferTimeout: Option<u32>;1531 readonly sponsorApproveTimeout: Option<u32>;1532 readonly ownerCanTransfer: Option<bool>;1533 readonly ownerCanDestroy: Option<bool>;1534 readonly transfersEnabled: Option<bool>;1535 }15361537 /** @name UpDataStructsMetaUpdatePermission (169) */1538 export interface UpDataStructsMetaUpdatePermission extends Enum {1539 readonly isItemOwner: boolean;1540 readonly isAdmin: boolean;1541 readonly isNone: boolean;1542 readonly type: 'ItemOwner' | 'Admin' | 'None';1543 }15441545 /** @name PalletCommonAccountBasicCrossAccountIdRepr (171) */1546 export interface PalletCommonAccountBasicCrossAccountIdRepr extends Enum {1547 readonly isSubstrate: boolean;1548 readonly asSubstrate: AccountId32;1549 readonly isEthereum: boolean;1550 readonly asEthereum: H160;1551 readonly type: 'Substrate' | 'Ethereum';1552 }15531554 /** @name UpDataStructsCreateItemData (173) */1555 export interface UpDataStructsCreateItemData extends Enum {1556 readonly isNft: boolean;1557 readonly asNft: UpDataStructsCreateNftData;1558 readonly isFungible: boolean;1559 readonly asFungible: UpDataStructsCreateFungibleData;1560 readonly isReFungible: boolean;1561 readonly asReFungible: UpDataStructsCreateReFungibleData;1562 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1563 }15641565 /** @name UpDataStructsCreateNftData (174) */1566 export interface UpDataStructsCreateNftData extends Struct {1567 readonly constData: Bytes;1568 readonly variableData: Bytes;1569 }15701571 /** @name UpDataStructsCreateFungibleData (176) */1572 export interface UpDataStructsCreateFungibleData extends Struct {1573 readonly value: u128;1574 }15751576 /** @name UpDataStructsCreateReFungibleData (177) */1577 export interface UpDataStructsCreateReFungibleData extends Struct {1578 readonly constData: Bytes;1579 readonly variableData: Bytes;1580 readonly pieces: u128;1581 }15821583 /** @name PalletTemplateTransactionPaymentCall (180) */1584 export type PalletTemplateTransactionPaymentCall = Null;15851586 /** @name PalletEvmCall (181) */1587 export interface PalletEvmCall extends Enum {1588 readonly isWithdraw: boolean;1589 readonly asWithdraw: {1590 readonly address: H160;1591 readonly value: u128;1592 } & Struct;1593 readonly isCall: boolean;1594 readonly asCall: {1595 readonly source: H160;1596 readonly target: H160;1597 readonly input: Bytes;1598 readonly value: U256;1599 readonly gasLimit: u64;1600 readonly maxFeePerGas: U256;1601 readonly maxPriorityFeePerGas: Option<U256>;1602 readonly nonce: Option<U256>;1603 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1604 } & Struct;1605 readonly isCreate: boolean;1606 readonly asCreate: {1607 readonly source: H160;1608 readonly init: Bytes;1609 readonly value: U256;1610 readonly gasLimit: u64;1611 readonly maxFeePerGas: U256;1612 readonly maxPriorityFeePerGas: Option<U256>;1613 readonly nonce: Option<U256>;1614 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1615 } & Struct;1616 readonly isCreate2: boolean;1617 readonly asCreate2: {1618 readonly source: H160;1619 readonly init: Bytes;1620 readonly salt: H256;1621 readonly value: U256;1622 readonly gasLimit: u64;1623 readonly maxFeePerGas: U256;1624 readonly maxPriorityFeePerGas: Option<U256>;1625 readonly nonce: Option<U256>;1626 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1627 } & Struct;1628 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1629 }16301631 /** @name PalletEthereumCall (187) */1632 export interface PalletEthereumCall extends Enum {1633 readonly isTransact: boolean;1634 readonly asTransact: {1635 readonly transaction: EthereumTransactionTransactionV2;1636 } & Struct;1637 readonly type: 'Transact';1638 }16391640 /** @name EthereumTransactionTransactionV2 (188) */1641 export interface EthereumTransactionTransactionV2 extends Enum {1642 readonly isLegacy: boolean;1643 readonly asLegacy: EthereumTransactionLegacyTransaction;1644 readonly isEip2930: boolean;1645 readonly asEip2930: EthereumTransactionEip2930Transaction;1646 readonly isEip1559: boolean;1647 readonly asEip1559: EthereumTransactionEip1559Transaction;1648 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';1649 }16501651 /** @name EthereumTransactionLegacyTransaction (189) */1652 export interface EthereumTransactionLegacyTransaction extends Struct {1653 readonly nonce: U256;1654 readonly gasPrice: U256;1655 readonly gasLimit: U256;1656 readonly action: EthereumTransactionTransactionAction;1657 readonly value: U256;1658 readonly input: Bytes;1659 readonly signature: EthereumTransactionTransactionSignature;1660 }16611662 /** @name EthereumTransactionTransactionAction (190) */1663 export interface EthereumTransactionTransactionAction extends Enum {1664 readonly isCall: boolean;1665 readonly asCall: H160;1666 readonly isCreate: boolean;1667 readonly type: 'Call' | 'Create';1668 }16691670 /** @name EthereumTransactionTransactionSignature (191) */1671 export interface EthereumTransactionTransactionSignature extends Struct {1672 readonly v: u64;1673 readonly r: H256;1674 readonly s: H256;1675 }16761677 /** @name EthereumTransactionEip2930Transaction (193) */1678 export interface EthereumTransactionEip2930Transaction extends Struct {1679 readonly chainId: u64;1680 readonly nonce: U256;1681 readonly gasPrice: U256;1682 readonly gasLimit: U256;1683 readonly action: EthereumTransactionTransactionAction;1684 readonly value: U256;1685 readonly input: Bytes;1686 readonly accessList: Vec<EthereumTransactionAccessListItem>;1687 readonly oddYParity: bool;1688 readonly r: H256;1689 readonly s: H256;1690 }16911692 /** @name EthereumTransactionAccessListItem (195) */1693 export interface EthereumTransactionAccessListItem extends Struct {1694 readonly address: H160;1695 readonly slots: Vec<H256>;1696 }16971698 /** @name EthereumTransactionEip1559Transaction (196) */1699 export interface EthereumTransactionEip1559Transaction extends Struct {1700 readonly chainId: u64;1701 readonly nonce: U256;1702 readonly maxPriorityFeePerGas: U256;1703 readonly maxFeePerGas: U256;1704 readonly gasLimit: U256;1705 readonly action: EthereumTransactionTransactionAction;1706 readonly value: U256;1707 readonly input: Bytes;1708 readonly accessList: Vec<EthereumTransactionAccessListItem>;1709 readonly oddYParity: bool;1710 readonly r: H256;1711 readonly s: H256;1712 }17131714 /** @name PalletEvmMigrationCall (197) */1715 export interface PalletEvmMigrationCall extends Enum {1716 readonly isBegin: boolean;1717 readonly asBegin: {1718 readonly address: H160;1719 } & Struct;1720 readonly isSetData: boolean;1721 readonly asSetData: {1722 readonly address: H160;1723 readonly data: Vec<ITuple<[H256, H256]>>;1724 } & Struct;1725 readonly isFinish: boolean;1726 readonly asFinish: {1727 readonly address: H160;1728 readonly code: Bytes;1729 } & Struct;1730 readonly type: 'Begin' | 'SetData' | 'Finish';1731 }17321733 /** @name PalletSudoEvent (200) */1734 export interface PalletSudoEvent extends Enum {1735 readonly isSudid: boolean;1736 readonly asSudid: {1737 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1738 } & Struct;1739 readonly isKeyChanged: boolean;1740 readonly asKeyChanged: {1741 readonly oldSudoer: Option<AccountId32>;1742 } & Struct;1743 readonly isSudoAsDone: boolean;1744 readonly asSudoAsDone: {1745 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1746 } & Struct;1747 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1748 }17491750 /** @name SpRuntimeDispatchError (202) */1751 export interface SpRuntimeDispatchError extends Enum {1752 readonly isOther: boolean;1753 readonly isCannotLookup: boolean;1754 readonly isBadOrigin: boolean;1755 readonly isModule: boolean;1756 readonly asModule: {1757 readonly index: u8;1758 readonly error: u8;1759 } & Struct;1760 readonly isConsumerRemaining: boolean;1761 readonly isNoProviders: boolean;1762 readonly isTooManyConsumers: boolean;1763 readonly isToken: boolean;1764 readonly asToken: SpRuntimeTokenError;1765 readonly isArithmetic: boolean;1766 readonly asArithmetic: SpRuntimeArithmeticError;1767 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic';1768 }17691770 /** @name SpRuntimeTokenError (203) */1771 export interface SpRuntimeTokenError extends Enum {1772 readonly isNoFunds: boolean;1773 readonly isWouldDie: boolean;1774 readonly isBelowMinimum: boolean;1775 readonly isCannotCreate: boolean;1776 readonly isUnknownAsset: boolean;1777 readonly isFrozen: boolean;1778 readonly isUnsupported: boolean;1779 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';1780 }17811782 /** @name SpRuntimeArithmeticError (204) */1783 export interface SpRuntimeArithmeticError extends Enum {1784 readonly isUnderflow: boolean;1785 readonly isOverflow: boolean;1786 readonly isDivisionByZero: boolean;1787 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';1788 }17891790 /** @name PalletSudoError (205) */1791 export interface PalletSudoError extends Enum {1792 readonly isRequireSudo: boolean;1793 readonly type: 'RequireSudo';1794 }17951796 /** @name FrameSystemAccountInfo (206) */1797 export interface FrameSystemAccountInfo extends Struct {1798 readonly nonce: u32;1799 readonly consumers: u32;1800 readonly providers: u32;1801 readonly sufficients: u32;1802 readonly data: PalletBalancesAccountData;1803 }18041805 /** @name FrameSupportWeightsPerDispatchClassU64 (207) */1806 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {1807 readonly normal: u64;1808 readonly operational: u64;1809 readonly mandatory: u64;1810 }18111812 /** @name SpRuntimeDigest (208) */1813 export interface SpRuntimeDigest extends Struct {1814 readonly logs: Vec<SpRuntimeDigestDigestItem>;1815 }18161817 /** @name SpRuntimeDigestDigestItem (210) */1818 export interface SpRuntimeDigestDigestItem extends Enum {1819 readonly isOther: boolean;1820 readonly asOther: Bytes;1821 readonly isConsensus: boolean;1822 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;1823 readonly isSeal: boolean;1824 readonly asSeal: ITuple<[U8aFixed, Bytes]>;1825 readonly isPreRuntime: boolean;1826 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;1827 readonly isRuntimeEnvironmentUpdated: boolean;1828 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';1829 }18301831 /** @name FrameSystemEventRecord (212) */1832 export interface FrameSystemEventRecord extends Struct {1833 readonly phase: FrameSystemPhase;1834 readonly event: Event;1835 readonly topics: Vec<H256>;1836 }18371838 /** @name FrameSystemEvent (214) */1839 export interface FrameSystemEvent extends Enum {1840 readonly isExtrinsicSuccess: boolean;1841 readonly asExtrinsicSuccess: {1842 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;1843 } & Struct;1844 readonly isExtrinsicFailed: boolean;1845 readonly asExtrinsicFailed: {1846 readonly dispatchError: SpRuntimeDispatchError;1847 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;1848 } & Struct;1849 readonly isCodeUpdated: boolean;1850 readonly isNewAccount: boolean;1851 readonly asNewAccount: {1852 readonly account: AccountId32;1853 } & Struct;1854 readonly isKilledAccount: boolean;1855 readonly asKilledAccount: {1856 readonly account: AccountId32;1857 } & Struct;1858 readonly isRemarked: boolean;1859 readonly asRemarked: {1860 readonly sender: AccountId32;1861 readonly hash_: H256;1862 } & Struct;1863 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';1864 }18651866 /** @name FrameSupportWeightsDispatchInfo (215) */1867 export interface FrameSupportWeightsDispatchInfo extends Struct {1868 readonly weight: u64;1869 readonly class: FrameSupportWeightsDispatchClass;1870 readonly paysFee: FrameSupportWeightsPays;1871 }18721873 /** @name FrameSupportWeightsDispatchClass (216) */1874 export interface FrameSupportWeightsDispatchClass extends Enum {1875 readonly isNormal: boolean;1876 readonly isOperational: boolean;1877 readonly isMandatory: boolean;1878 readonly type: 'Normal' | 'Operational' | 'Mandatory';1879 }18801881 /** @name FrameSupportWeightsPays (217) */1882 export interface FrameSupportWeightsPays extends Enum {1883 readonly isYes: boolean;1884 readonly isNo: boolean;1885 readonly type: 'Yes' | 'No';1886 }18871888 /** @name OrmlVestingModuleEvent (218) */1889 export interface OrmlVestingModuleEvent extends Enum {1890 readonly isVestingScheduleAdded: boolean;1891 readonly asVestingScheduleAdded: {1892 readonly from: AccountId32;1893 readonly to: AccountId32;1894 readonly vestingSchedule: OrmlVestingVestingSchedule;1895 } & Struct;1896 readonly isClaimed: boolean;1897 readonly asClaimed: {1898 readonly who: AccountId32;1899 readonly amount: u128;1900 } & Struct;1901 readonly isVestingSchedulesUpdated: boolean;1902 readonly asVestingSchedulesUpdated: {1903 readonly who: AccountId32;1904 } & Struct;1905 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';1906 }19071908 /** @name CumulusPalletXcmpQueueEvent (219) */1909 export interface CumulusPalletXcmpQueueEvent extends Enum {1910 readonly isSuccess: boolean;1911 readonly asSuccess: Option<H256>;1912 readonly isFail: boolean;1913 readonly asFail: ITuple<[Option<H256>, XcmV2TraitsError]>;1914 readonly isBadVersion: boolean;1915 readonly asBadVersion: Option<H256>;1916 readonly isBadFormat: boolean;1917 readonly asBadFormat: Option<H256>;1918 readonly isUpwardMessageSent: boolean;1919 readonly asUpwardMessageSent: Option<H256>;1920 readonly isXcmpMessageSent: boolean;1921 readonly asXcmpMessageSent: Option<H256>;1922 readonly isOverweightEnqueued: boolean;1923 readonly asOverweightEnqueued: ITuple<[u32, u32, u64, u64]>;1924 readonly isOverweightServiced: boolean;1925 readonly asOverweightServiced: ITuple<[u64, u64]>;1926 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';1927 }19281929 /** @name PalletXcmEvent (220) */1930 export interface PalletXcmEvent extends Enum {1931 readonly isAttempted: boolean;1932 readonly asAttempted: XcmV2TraitsOutcome;1933 readonly isSent: boolean;1934 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;1935 readonly isUnexpectedResponse: boolean;1936 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;1937 readonly isResponseReady: boolean;1938 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;1939 readonly isNotified: boolean;1940 readonly asNotified: ITuple<[u64, u8, u8]>;1941 readonly isNotifyOverweight: boolean;1942 readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;1943 readonly isNotifyDispatchError: boolean;1944 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;1945 readonly isNotifyDecodeFailed: boolean;1946 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;1947 readonly isInvalidResponder: boolean;1948 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;1949 readonly isInvalidResponderVersion: boolean;1950 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;1951 readonly isResponseTaken: boolean;1952 readonly asResponseTaken: u64;1953 readonly isAssetsTrapped: boolean;1954 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;1955 readonly isVersionChangeNotified: boolean;1956 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;1957 readonly isSupportedVersionChanged: boolean;1958 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;1959 readonly isNotifyTargetSendFail: boolean;1960 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;1961 readonly isNotifyTargetMigrationFail: boolean;1962 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;1963 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';1964 }19651966 /** @name XcmV2TraitsOutcome (221) */1967 export interface XcmV2TraitsOutcome extends Enum {1968 readonly isComplete: boolean;1969 readonly asComplete: u64;1970 readonly isIncomplete: boolean;1971 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;1972 readonly isError: boolean;1973 readonly asError: XcmV2TraitsError;1974 readonly type: 'Complete' | 'Incomplete' | 'Error';1975 }19761977 /** @name CumulusPalletXcmEvent (223) */1978 export interface CumulusPalletXcmEvent extends Enum {1979 readonly isInvalidFormat: boolean;1980 readonly asInvalidFormat: U8aFixed;1981 readonly isUnsupportedVersion: boolean;1982 readonly asUnsupportedVersion: U8aFixed;1983 readonly isExecutedDownward: boolean;1984 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;1985 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1986 }19871988 /** @name CumulusPalletDmpQueueEvent (224) */1989 export interface CumulusPalletDmpQueueEvent extends Enum {1990 readonly isInvalidFormat: boolean;1991 readonly asInvalidFormat: U8aFixed;1992 readonly isUnsupportedVersion: boolean;1993 readonly asUnsupportedVersion: U8aFixed;1994 readonly isExecutedDownward: boolean;1995 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;1996 readonly isWeightExhausted: boolean;1997 readonly asWeightExhausted: ITuple<[U8aFixed, u64, u64]>;1998 readonly isOverweightEnqueued: boolean;1999 readonly asOverweightEnqueued: ITuple<[U8aFixed, u64, u64]>;2000 readonly isOverweightServiced: boolean;2001 readonly asOverweightServiced: ITuple<[u64, u64]>;2002 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2003 }20042005 /** @name PalletUniqueRawEvent (225) */2006 export interface PalletUniqueRawEvent extends Enum {2007 readonly isCollectionSponsorRemoved: boolean;2008 readonly asCollectionSponsorRemoved: u32;2009 readonly isCollectionAdminAdded: boolean;2010 readonly asCollectionAdminAdded: ITuple<[u32, PalletCommonAccountBasicCrossAccountIdRepr]>;2011 readonly isCollectionOwnedChanged: boolean;2012 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;2013 readonly isCollectionSponsorSet: boolean;2014 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;2015 readonly isConstOnChainSchemaSet: boolean;2016 readonly asConstOnChainSchemaSet: u32;2017 readonly isSponsorshipConfirmed: boolean;2018 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;2019 readonly isCollectionAdminRemoved: boolean;2020 readonly asCollectionAdminRemoved: ITuple<[u32, PalletCommonAccountBasicCrossAccountIdRepr]>;2021 readonly isAllowListAddressRemoved: boolean;2022 readonly asAllowListAddressRemoved: ITuple<[u32, PalletCommonAccountBasicCrossAccountIdRepr]>;2023 readonly isAllowListAddressAdded: boolean;2024 readonly asAllowListAddressAdded: ITuple<[u32, PalletCommonAccountBasicCrossAccountIdRepr]>;2025 readonly isCollectionLimitSet: boolean;2026 readonly asCollectionLimitSet: u32;2027 readonly isMintPermissionSet: boolean;2028 readonly asMintPermissionSet: u32;2029 readonly isOffchainSchemaSet: boolean;2030 readonly asOffchainSchemaSet: u32;2031 readonly isPublicAccessModeSet: boolean;2032 readonly asPublicAccessModeSet: ITuple<[u32, UpDataStructsAccessMode]>;2033 readonly isSchemaVersionSet: boolean;2034 readonly asSchemaVersionSet: u32;2035 readonly isVariableOnChainSchemaSet: boolean;2036 readonly asVariableOnChainSchemaSet: u32;2037 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet' | 'VariableOnChainSchemaSet';2038 }20392040 /** @name PalletCommonEvent (226) */2041 export interface PalletCommonEvent extends Enum {2042 readonly isCollectionCreated: boolean;2043 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2044 readonly isCollectionDestroyed: boolean;2045 readonly asCollectionDestroyed: u32;2046 readonly isItemCreated: boolean;2047 readonly asItemCreated: ITuple<[u32, u32, PalletCommonAccountBasicCrossAccountIdRepr, u128]>;2048 readonly isItemDestroyed: boolean;2049 readonly asItemDestroyed: ITuple<[u32, u32, PalletCommonAccountBasicCrossAccountIdRepr, u128]>;2050 readonly isTransfer: boolean;2051 readonly asTransfer: ITuple<[u32, u32, PalletCommonAccountBasicCrossAccountIdRepr, PalletCommonAccountBasicCrossAccountIdRepr, u128]>;2052 readonly isApproved: boolean;2053 readonly asApproved: ITuple<[u32, u32, PalletCommonAccountBasicCrossAccountIdRepr, PalletCommonAccountBasicCrossAccountIdRepr, u128]>;2054 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved';2055 }20562057 /** @name PalletEvmEvent (227) */2058 export interface PalletEvmEvent extends Enum {2059 readonly isLog: boolean;2060 readonly asLog: EthereumLog;2061 readonly isCreated: boolean;2062 readonly asCreated: H160;2063 readonly isCreatedFailed: boolean;2064 readonly asCreatedFailed: H160;2065 readonly isExecuted: boolean;2066 readonly asExecuted: H160;2067 readonly isExecutedFailed: boolean;2068 readonly asExecutedFailed: H160;2069 readonly isBalanceDeposit: boolean;2070 readonly asBalanceDeposit: ITuple<[AccountId32, H160, U256]>;2071 readonly isBalanceWithdraw: boolean;2072 readonly asBalanceWithdraw: ITuple<[AccountId32, H160, U256]>;2073 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2074 }20752076 /** @name EthereumLog (228) */2077 export interface EthereumLog extends Struct {2078 readonly address: H160;2079 readonly topics: Vec<H256>;2080 readonly data: Bytes;2081 }20822083 /** @name PalletEthereumEvent (229) */2084 export interface PalletEthereumEvent extends Enum {2085 readonly isExecuted: boolean;2086 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2087 readonly type: 'Executed';2088 }20892090 /** @name EvmCoreErrorExitReason (230) */2091 export interface EvmCoreErrorExitReason extends Enum {2092 readonly isSucceed: boolean;2093 readonly asSucceed: EvmCoreErrorExitSucceed;2094 readonly isError: boolean;2095 readonly asError: EvmCoreErrorExitError;2096 readonly isRevert: boolean;2097 readonly asRevert: EvmCoreErrorExitRevert;2098 readonly isFatal: boolean;2099 readonly asFatal: EvmCoreErrorExitFatal;2100 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2101 }21022103 /** @name EvmCoreErrorExitSucceed (231) */2104 export interface EvmCoreErrorExitSucceed extends Enum {2105 readonly isStopped: boolean;2106 readonly isReturned: boolean;2107 readonly isSuicided: boolean;2108 readonly type: 'Stopped' | 'Returned' | 'Suicided';2109 }21102111 /** @name EvmCoreErrorExitError (232) */2112 export interface EvmCoreErrorExitError extends Enum {2113 readonly isStackUnderflow: boolean;2114 readonly isStackOverflow: boolean;2115 readonly isInvalidJump: boolean;2116 readonly isInvalidRange: boolean;2117 readonly isDesignatedInvalid: boolean;2118 readonly isCallTooDeep: boolean;2119 readonly isCreateCollision: boolean;2120 readonly isCreateContractLimit: boolean;2121 readonly isInvalidCode: boolean;2122 readonly isOutOfOffset: boolean;2123 readonly isOutOfGas: boolean;2124 readonly isOutOfFund: boolean;2125 readonly isPcUnderflow: boolean;2126 readonly isCreateEmpty: boolean;2127 readonly isOther: boolean;2128 readonly asOther: Text;2129 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'InvalidCode' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other';2130 }21312132 /** @name EvmCoreErrorExitRevert (235) */2133 export interface EvmCoreErrorExitRevert extends Enum {2134 readonly isReverted: boolean;2135 readonly type: 'Reverted';2136 }21372138 /** @name EvmCoreErrorExitFatal (236) */2139 export interface EvmCoreErrorExitFatal extends Enum {2140 readonly isNotSupported: boolean;2141 readonly isUnhandledInterrupt: boolean;2142 readonly isCallErrorAsFatal: boolean;2143 readonly asCallErrorAsFatal: EvmCoreErrorExitError;2144 readonly isOther: boolean;2145 readonly asOther: Text;2146 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2147 }21482149 /** @name FrameSystemPhase (237) */2150 export interface FrameSystemPhase extends Enum {2151 readonly isApplyExtrinsic: boolean;2152 readonly asApplyExtrinsic: u32;2153 readonly isFinalization: boolean;2154 readonly isInitialization: boolean;2155 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2156 }21572158 /** @name FrameSystemLastRuntimeUpgradeInfo (239) */2159 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2160 readonly specVersion: Compact<u32>;2161 readonly specName: Text;2162 }21632164 /** @name FrameSystemLimitsBlockWeights (240) */2165 export interface FrameSystemLimitsBlockWeights extends Struct {2166 readonly baseBlock: u64;2167 readonly maxBlock: u64;2168 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2169 }21702171 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (241) */2172 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2173 readonly normal: FrameSystemLimitsWeightsPerClass;2174 readonly operational: FrameSystemLimitsWeightsPerClass;2175 readonly mandatory: FrameSystemLimitsWeightsPerClass;2176 }21772178 /** @name FrameSystemLimitsWeightsPerClass (242) */2179 export interface FrameSystemLimitsWeightsPerClass extends Struct {2180 readonly baseExtrinsic: u64;2181 readonly maxExtrinsic: Option<u64>;2182 readonly maxTotal: Option<u64>;2183 readonly reserved: Option<u64>;2184 }21852186 /** @name FrameSystemLimitsBlockLength (244) */2187 export interface FrameSystemLimitsBlockLength extends Struct {2188 readonly max: FrameSupportWeightsPerDispatchClassU32;2189 }21902191 /** @name FrameSupportWeightsPerDispatchClassU32 (245) */2192 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2193 readonly normal: u32;2194 readonly operational: u32;2195 readonly mandatory: u32;2196 }21972198 /** @name FrameSupportWeightsRuntimeDbWeight (246) */2199 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2200 readonly read: u64;2201 readonly write: u64;2202 }22032204 /** @name SpVersionRuntimeVersion (247) */2205 export interface SpVersionRuntimeVersion extends Struct {2206 readonly specName: Text;2207 readonly implName: Text;2208 readonly authoringVersion: u32;2209 readonly specVersion: u32;2210 readonly implVersion: u32;2211 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2212 readonly transactionVersion: u32;2213 readonly stateVersion: u8;2214 }22152216 /** @name FrameSystemError (251) */2217 export interface FrameSystemError extends Enum {2218 readonly isInvalidSpecName: boolean;2219 readonly isSpecVersionNeedsToIncrease: boolean;2220 readonly isFailedToExtractRuntimeVersion: boolean;2221 readonly isNonDefaultComposite: boolean;2222 readonly isNonZeroRefCount: boolean;2223 readonly isCallFiltered: boolean;2224 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2225 }22262227 /** @name OrmlVestingModuleError (253) */2228 export interface OrmlVestingModuleError extends Enum {2229 readonly isZeroVestingPeriod: boolean;2230 readonly isZeroVestingPeriodCount: boolean;2231 readonly isInsufficientBalanceToLock: boolean;2232 readonly isTooManyVestingSchedules: boolean;2233 readonly isAmountLow: boolean;2234 readonly isMaxVestingSchedulesExceeded: boolean;2235 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2236 }22372238 /** @name CumulusPalletXcmpQueueInboundChannelDetails (255) */2239 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2240 readonly sender: u32;2241 readonly state: CumulusPalletXcmpQueueInboundState;2242 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2243 }22442245 /** @name CumulusPalletXcmpQueueInboundState (256) */2246 export interface CumulusPalletXcmpQueueInboundState extends Enum {2247 readonly isOk: boolean;2248 readonly isSuspended: boolean;2249 readonly type: 'Ok' | 'Suspended';2250 }22512252 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (259) */2253 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2254 readonly isConcatenatedVersionedXcm: boolean;2255 readonly isConcatenatedEncodedBlob: boolean;2256 readonly isSignals: boolean;2257 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2258 }22592260 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (262) */2261 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2262 readonly recipient: u32;2263 readonly state: CumulusPalletXcmpQueueOutboundState;2264 readonly signalsExist: bool;2265 readonly firstIndex: u16;2266 readonly lastIndex: u16;2267 }22682269 /** @name CumulusPalletXcmpQueueOutboundState (263) */2270 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2271 readonly isOk: boolean;2272 readonly isSuspended: boolean;2273 readonly type: 'Ok' | 'Suspended';2274 }22752276 /** @name CumulusPalletXcmpQueueQueueConfigData (265) */2277 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2278 readonly suspendThreshold: u32;2279 readonly dropThreshold: u32;2280 readonly resumeThreshold: u32;2281 readonly thresholdWeight: u64;2282 readonly weightRestrictDecay: u64;2283 readonly xcmpMaxIndividualWeight: u64;2284 }22852286 /** @name CumulusPalletXcmpQueueError (267) */2287 export interface CumulusPalletXcmpQueueError extends Enum {2288 readonly isFailedToSend: boolean;2289 readonly isBadXcmOrigin: boolean;2290 readonly isBadXcm: boolean;2291 readonly isBadOverweightIndex: boolean;2292 readonly isWeightOverLimit: boolean;2293 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2294 }22952296 /** @name PalletXcmError (268) */2297 export interface PalletXcmError extends Enum {2298 readonly isUnreachable: boolean;2299 readonly isSendFailure: boolean;2300 readonly isFiltered: boolean;2301 readonly isUnweighableMessage: boolean;2302 readonly isDestinationNotInvertible: boolean;2303 readonly isEmpty: boolean;2304 readonly isCannotReanchor: boolean;2305 readonly isTooManyAssets: boolean;2306 readonly isInvalidOrigin: boolean;2307 readonly isBadVersion: boolean;2308 readonly isBadLocation: boolean;2309 readonly isNoSubscription: boolean;2310 readonly isAlreadySubscribed: boolean;2311 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2312 }23132314 /** @name CumulusPalletXcmError (269) */2315 export type CumulusPalletXcmError = Null;23162317 /** @name CumulusPalletDmpQueueConfigData (270) */2318 export interface CumulusPalletDmpQueueConfigData extends Struct {2319 readonly maxIndividual: u64;2320 }23212322 /** @name CumulusPalletDmpQueuePageIndexData (271) */2323 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2324 readonly beginUsed: u32;2325 readonly endUsed: u32;2326 readonly overweightCount: u64;2327 }23282329 /** @name CumulusPalletDmpQueueError (274) */2330 export interface CumulusPalletDmpQueueError extends Enum {2331 readonly isUnknown: boolean;2332 readonly isOverLimit: boolean;2333 readonly type: 'Unknown' | 'OverLimit';2334 }23352336 /** @name PalletUniqueError (278) */2337 export interface PalletUniqueError extends Enum {2338 readonly isCollectionDecimalPointLimitExceeded: boolean;2339 readonly isConfirmUnsetSponsorFail: boolean;2340 readonly isEmptyArgument: boolean;2341 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';2342 }23432344 /** @name UpDataStructsCollection (279) */2345 export interface UpDataStructsCollection extends Struct {2346 readonly owner: AccountId32;2347 readonly mode: UpDataStructsCollectionMode;2348 readonly access: UpDataStructsAccessMode;2349 readonly name: Vec<u16>;2350 readonly description: Vec<u16>;2351 readonly tokenPrefix: Bytes;2352 readonly mintMode: bool;2353 readonly offchainSchema: Bytes;2354 readonly schemaVersion: UpDataStructsSchemaVersion;2355 readonly sponsorship: UpDataStructsSponsorshipState;2356 readonly limits: UpDataStructsCollectionLimits;2357 readonly variableOnChainSchema: Bytes;2358 readonly constOnChainSchema: Bytes;2359 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;2360 }23612362 /** @name UpDataStructsSponsorshipState (280) */2363 export interface UpDataStructsSponsorshipState extends Enum {2364 readonly isDisabled: boolean;2365 readonly isUnconfirmed: boolean;2366 readonly asUnconfirmed: AccountId32;2367 readonly isConfirmed: boolean;2368 readonly asConfirmed: AccountId32;2369 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2370 }23712372 /** @name UpDataStructsCollectionStats (283) */2373 export interface UpDataStructsCollectionStats extends Struct {2374 readonly created: u32;2375 readonly destroyed: u32;2376 readonly alive: u32;2377 }23782379 /** @name PalletCommonError (284) */2380 export interface PalletCommonError extends Enum {2381 readonly isCollectionNotFound: boolean;2382 readonly isMustBeTokenOwner: boolean;2383 readonly isNoPermission: boolean;2384 readonly isPublicMintingNotAllowed: boolean;2385 readonly isAddressNotInAllowlist: boolean;2386 readonly isCollectionNameLimitExceeded: boolean;2387 readonly isCollectionDescriptionLimitExceeded: boolean;2388 readonly isCollectionTokenPrefixLimitExceeded: boolean;2389 readonly isTotalCollectionsLimitExceeded: boolean;2390 readonly isTokenVariableDataLimitExceeded: boolean;2391 readonly isCollectionAdminCountExceeded: boolean;2392 readonly isCollectionLimitBoundsExceeded: boolean;2393 readonly isOwnerPermissionsCantBeReverted: boolean;2394 readonly isTransferNotAllowed: boolean;2395 readonly isAccountTokenLimitExceeded: boolean;2396 readonly isCollectionTokenLimitExceeded: boolean;2397 readonly isMetadataFlagFrozen: boolean;2398 readonly isTokenNotFound: boolean;2399 readonly isTokenValueTooLow: boolean;2400 readonly isApprovedValueTooLow: boolean;2401 readonly isCantApproveMoreThanOwned: boolean;2402 readonly isAddressIsZero: boolean;2403 readonly isUnsupportedOperation: boolean;2404 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'TokenVariableDataLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation';2405 }24062407 /** @name PalletFungibleError (286) */2408 export interface PalletFungibleError extends Enum {2409 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;2410 readonly isFungibleItemsHaveNoId: boolean;2411 readonly isFungibleItemsDontHaveData: boolean;2412 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData';2413 }24142415 /** @name PalletRefungibleItemData (287) */2416 export interface PalletRefungibleItemData extends Struct {2417 readonly constData: Bytes;2418 readonly variableData: Bytes;2419 }24202421 /** @name PalletRefungibleError (291) */2422 export interface PalletRefungibleError extends Enum {2423 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;2424 readonly isWrongRefungiblePieces: boolean;2425 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces';2426 }24272428 /** @name PalletNonfungibleItemData (292) */2429 export interface PalletNonfungibleItemData extends Struct {2430 readonly constData: Bytes;2431 readonly variableData: Bytes;2432 readonly owner: PalletCommonAccountBasicCrossAccountIdRepr;2433 }24342435 /** @name PalletNonfungibleError (293) */2436 export interface PalletNonfungibleError extends Enum {2437 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2438 readonly isNonfungibleItemsHaveNoAmount: boolean;2439 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';2440 }24412442 /** @name PalletEvmError (295) */2443 export interface PalletEvmError extends Enum {2444 readonly isBalanceLow: boolean;2445 readonly isFeeOverflow: boolean;2446 readonly isPaymentOverflow: boolean;2447 readonly isWithdrawFailed: boolean;2448 readonly isGasPriceTooLow: boolean;2449 readonly isInvalidNonce: boolean;2450 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';2451 }24522453 /** @name FpRpcTransactionStatus (298) */2454 export interface FpRpcTransactionStatus extends Struct {2455 readonly transactionHash: H256;2456 readonly transactionIndex: u32;2457 readonly from: H160;2458 readonly to: Option<H160>;2459 readonly contractAddress: Option<H160>;2460 readonly logs: Vec<EthereumLog>;2461 readonly logsBloom: EthbloomBloom;2462 }24632464 /** @name EthbloomBloom (301) */2465 export interface EthbloomBloom extends U8aFixed {}24662467 /** @name EthereumReceiptReceiptV3 (303) */2468 export interface EthereumReceiptReceiptV3 extends Enum {2469 readonly isLegacy: boolean;2470 readonly asLegacy: EthereumReceiptEip658ReceiptData;2471 readonly isEip2930: boolean;2472 readonly asEip2930: EthereumReceiptEip658ReceiptData;2473 readonly isEip1559: boolean;2474 readonly asEip1559: EthereumReceiptEip658ReceiptData;2475 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2476 }24772478 /** @name EthereumReceiptEip658ReceiptData (304) */2479 export interface EthereumReceiptEip658ReceiptData extends Struct {2480 readonly statusCode: u8;2481 readonly usedGas: U256;2482 readonly logsBloom: EthbloomBloom;2483 readonly logs: Vec<EthereumLog>;2484 }24852486 /** @name EthereumBlock (305) */2487 export interface EthereumBlock extends Struct {2488 readonly header: EthereumHeader;2489 readonly transactions: Vec<EthereumTransactionTransactionV2>;2490 readonly ommers: Vec<EthereumHeader>;2491 }24922493 /** @name EthereumHeader (306) */2494 export interface EthereumHeader extends Struct {2495 readonly parentHash: H256;2496 readonly ommersHash: H256;2497 readonly beneficiary: H160;2498 readonly stateRoot: H256;2499 readonly transactionsRoot: H256;2500 readonly receiptsRoot: H256;2501 readonly logsBloom: EthbloomBloom;2502 readonly difficulty: U256;2503 readonly number: U256;2504 readonly gasLimit: U256;2505 readonly gasUsed: U256;2506 readonly timestamp: u64;2507 readonly extraData: Bytes;2508 readonly mixHash: H256;2509 readonly nonce: EthereumTypesHashH64;2510 }25112512 /** @name EthereumTypesHashH64 (307) */2513 export interface EthereumTypesHashH64 extends U8aFixed {}25142515 /** @name PalletEthereumError (312) */2516 export interface PalletEthereumError extends Enum {2517 readonly isInvalidSignature: boolean;2518 readonly isPreLogExists: boolean;2519 readonly type: 'InvalidSignature' | 'PreLogExists';2520 }25212522 /** @name PalletEvmCoderSubstrateError (313) */2523 export interface PalletEvmCoderSubstrateError extends Enum {2524 readonly isOutOfGas: boolean;2525 readonly isOutOfFund: boolean;2526 readonly type: 'OutOfGas' | 'OutOfFund';2527 }25282529 /** @name PalletEvmContractHelpersSponsoringModeT (314) */2530 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {2531 readonly isDisabled: boolean;2532 readonly isAllowlisted: boolean;2533 readonly isGenerous: boolean;2534 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';2535 }25362537 /** @name PalletEvmContractHelpersError (316) */2538 export interface PalletEvmContractHelpersError extends Enum {2539 readonly isNoPermission: boolean;2540 readonly type: 'NoPermission';2541 }25422543 /** @name PalletEvmMigrationError (317) */2544 export interface PalletEvmMigrationError extends Enum {2545 readonly isAccountNotEmpty: boolean;2546 readonly isAccountIsNotMigrating: boolean;2547 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';2548 }25492550 /** @name SpRuntimeMultiSignature (319) */2551 export interface SpRuntimeMultiSignature extends Enum {2552 readonly isEd25519: boolean;2553 readonly asEd25519: SpCoreEd25519Signature;2554 readonly isSr25519: boolean;2555 readonly asSr25519: SpCoreSr25519Signature;2556 readonly isEcdsa: boolean;2557 readonly asEcdsa: SpCoreEcdsaSignature;2558 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2559 }25602561 /** @name SpCoreEd25519Signature (320) */2562 export interface SpCoreEd25519Signature extends U8aFixed {}25632564 /** @name SpCoreSr25519Signature (322) */2565 export interface SpCoreSr25519Signature extends U8aFixed {}25662567 /** @name SpCoreEcdsaSignature (323) */2568 export interface SpCoreEcdsaSignature extends U8aFixed {}25692570 /** @name FrameSystemExtensionsCheckSpecVersion (326) */2571 export type FrameSystemExtensionsCheckSpecVersion = Null;25722573 /** @name FrameSystemExtensionsCheckGenesis (327) */2574 export type FrameSystemExtensionsCheckGenesis = Null;25752576 /** @name FrameSystemExtensionsCheckNonce (330) */2577 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}25782579 /** @name FrameSystemExtensionsCheckWeight (331) */2580 export type FrameSystemExtensionsCheckWeight = Null;25812582 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (332) */2583 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}25842585 /** @name UniqueRuntimeRuntime (333) */2586 export type UniqueRuntimeRuntime = Null;25872588} // declare module1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34declare module '@polkadot/types/lookup' {5 import type { BTreeMap, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';6 import type { ITuple } from '@polkadot/types-codec/types';7 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';8 import type { Event } from '@polkadot/types/interfaces/system';910 /** @name PolkadotPrimitivesV1PersistedValidationData (2) */11 export interface PolkadotPrimitivesV1PersistedValidationData extends Struct {12 readonly parentHead: Bytes;13 readonly relayParentNumber: u32;14 readonly relayParentStorageRoot: H256;15 readonly maxPovSize: u32;16 }1718 /** @name PolkadotPrimitivesV1UpgradeRestriction (9) */19 export interface PolkadotPrimitivesV1UpgradeRestriction extends Enum {20 readonly isPresent: boolean;21 readonly type: 'Present';22 }2324 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (10) */25 export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {26 readonly dmqMqcHead: H256;27 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;28 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV1AbridgedHrmpChannel]>>;29 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV1AbridgedHrmpChannel]>>;30 }3132 /** @name PolkadotPrimitivesV1AbridgedHrmpChannel (15) */33 export interface PolkadotPrimitivesV1AbridgedHrmpChannel extends Struct {34 readonly maxCapacity: u32;35 readonly maxTotalSize: u32;36 readonly maxMessageSize: u32;37 readonly msgCount: u32;38 readonly totalSize: u32;39 readonly mqcHead: Option<H256>;40 }4142 /** @name PolkadotPrimitivesV1AbridgedHostConfiguration (17) */43 export interface PolkadotPrimitivesV1AbridgedHostConfiguration extends Struct {44 readonly maxCodeSize: u32;45 readonly maxHeadDataSize: u32;46 readonly maxUpwardQueueCount: u32;47 readonly maxUpwardQueueSize: u32;48 readonly maxUpwardMessageSize: u32;49 readonly maxUpwardMessageNumPerCandidate: u32;50 readonly hrmpMaxMessageNumPerCandidate: u32;51 readonly validationUpgradeCooldown: u32;52 readonly validationUpgradeDelay: u32;53 }5455 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (23) */56 export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {57 readonly recipient: u32;58 readonly data: Bytes;59 }6061 /** @name CumulusPalletParachainSystemCall (26) */62 export interface CumulusPalletParachainSystemCall extends Enum {63 readonly isSetValidationData: boolean;64 readonly asSetValidationData: {65 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;66 } & Struct;67 readonly isSudoSendUpwardMessage: boolean;68 readonly asSudoSendUpwardMessage: {69 readonly message: Bytes;70 } & Struct;71 readonly isAuthorizeUpgrade: boolean;72 readonly asAuthorizeUpgrade: {73 readonly codeHash: H256;74 } & Struct;75 readonly isEnactAuthorizedUpgrade: boolean;76 readonly asEnactAuthorizedUpgrade: {77 readonly code: Bytes;78 } & Struct;79 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';80 }8182 /** @name CumulusPrimitivesParachainInherentParachainInherentData (27) */83 export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {84 readonly validationData: PolkadotPrimitivesV1PersistedValidationData;85 readonly relayChainState: SpTrieStorageProof;86 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;87 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;88 }8990 /** @name SpTrieStorageProof (28) */91 export interface SpTrieStorageProof extends Struct {92 readonly trieNodes: Vec<Bytes>;93 }9495 /** @name PolkadotCorePrimitivesInboundDownwardMessage (30) */96 export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {97 readonly sentAt: u32;98 readonly msg: Bytes;99 }100101 /** @name PolkadotCorePrimitivesInboundHrmpMessage (33) */102 export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {103 readonly sentAt: u32;104 readonly data: Bytes;105 }106107 /** @name CumulusPalletParachainSystemEvent (36) */108 export interface CumulusPalletParachainSystemEvent extends Enum {109 readonly isValidationFunctionStored: boolean;110 readonly isValidationFunctionApplied: boolean;111 readonly asValidationFunctionApplied: u32;112 readonly isValidationFunctionDiscarded: boolean;113 readonly isUpgradeAuthorized: boolean;114 readonly asUpgradeAuthorized: H256;115 readonly isDownwardMessagesReceived: boolean;116 readonly asDownwardMessagesReceived: u32;117 readonly isDownwardMessagesProcessed: boolean;118 readonly asDownwardMessagesProcessed: ITuple<[u64, H256]>;119 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';120 }121122 /** @name CumulusPalletParachainSystemError (37) */123 export interface CumulusPalletParachainSystemError extends Enum {124 readonly isOverlappingUpgrades: boolean;125 readonly isProhibitedByPolkadot: boolean;126 readonly isTooBig: boolean;127 readonly isValidationDataNotAvailable: boolean;128 readonly isHostConfigurationNotAvailable: boolean;129 readonly isNotScheduled: boolean;130 readonly isNothingAuthorized: boolean;131 readonly isUnauthorized: boolean;132 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';133 }134135 /** @name PalletBalancesAccountData (40) */136 export interface PalletBalancesAccountData extends Struct {137 readonly free: u128;138 readonly reserved: u128;139 readonly miscFrozen: u128;140 readonly feeFrozen: u128;141 }142143 /** @name PalletBalancesBalanceLock (42) */144 export interface PalletBalancesBalanceLock extends Struct {145 readonly id: U8aFixed;146 readonly amount: u128;147 readonly reasons: PalletBalancesReasons;148 }149150 /** @name PalletBalancesReasons (44) */151 export interface PalletBalancesReasons extends Enum {152 readonly isFee: boolean;153 readonly isMisc: boolean;154 readonly isAll: boolean;155 readonly type: 'Fee' | 'Misc' | 'All';156 }157158 /** @name PalletBalancesReserveData (47) */159 export interface PalletBalancesReserveData extends Struct {160 readonly id: U8aFixed;161 readonly amount: u128;162 }163164 /** @name PalletBalancesReleases (49) */165 export interface PalletBalancesReleases extends Enum {166 readonly isV100: boolean;167 readonly isV200: boolean;168 readonly type: 'V100' | 'V200';169 }170171 /** @name PalletBalancesCall (50) */172 export interface PalletBalancesCall extends Enum {173 readonly isTransfer: boolean;174 readonly asTransfer: {175 readonly dest: MultiAddress;176 readonly value: Compact<u128>;177 } & Struct;178 readonly isSetBalance: boolean;179 readonly asSetBalance: {180 readonly who: MultiAddress;181 readonly newFree: Compact<u128>;182 readonly newReserved: Compact<u128>;183 } & Struct;184 readonly isForceTransfer: boolean;185 readonly asForceTransfer: {186 readonly source: MultiAddress;187 readonly dest: MultiAddress;188 readonly value: Compact<u128>;189 } & Struct;190 readonly isTransferKeepAlive: boolean;191 readonly asTransferKeepAlive: {192 readonly dest: MultiAddress;193 readonly value: Compact<u128>;194 } & Struct;195 readonly isTransferAll: boolean;196 readonly asTransferAll: {197 readonly dest: MultiAddress;198 readonly keepAlive: bool;199 } & Struct;200 readonly isForceUnreserve: boolean;201 readonly asForceUnreserve: {202 readonly who: MultiAddress;203 readonly amount: u128;204 } & Struct;205 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';206 }207208 /** @name PalletBalancesEvent (56) */209 export interface PalletBalancesEvent extends Enum {210 readonly isEndowed: boolean;211 readonly asEndowed: {212 readonly account: AccountId32;213 readonly freeBalance: u128;214 } & Struct;215 readonly isDustLost: boolean;216 readonly asDustLost: {217 readonly account: AccountId32;218 readonly amount: u128;219 } & Struct;220 readonly isTransfer: boolean;221 readonly asTransfer: {222 readonly from: AccountId32;223 readonly to: AccountId32;224 readonly amount: u128;225 } & Struct;226 readonly isBalanceSet: boolean;227 readonly asBalanceSet: {228 readonly who: AccountId32;229 readonly free: u128;230 readonly reserved: u128;231 } & Struct;232 readonly isReserved: boolean;233 readonly asReserved: {234 readonly who: AccountId32;235 readonly amount: u128;236 } & Struct;237 readonly isUnreserved: boolean;238 readonly asUnreserved: {239 readonly who: AccountId32;240 readonly amount: u128;241 } & Struct;242 readonly isReserveRepatriated: boolean;243 readonly asReserveRepatriated: {244 readonly from: AccountId32;245 readonly to: AccountId32;246 readonly amount: u128;247 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;248 } & Struct;249 readonly isDeposit: boolean;250 readonly asDeposit: {251 readonly who: AccountId32;252 readonly amount: u128;253 } & Struct;254 readonly isWithdraw: boolean;255 readonly asWithdraw: {256 readonly who: AccountId32;257 readonly amount: u128;258 } & Struct;259 readonly isSlashed: boolean;260 readonly asSlashed: {261 readonly who: AccountId32;262 readonly amount: u128;263 } & Struct;264 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';265 }266267 /** @name FrameSupportTokensMiscBalanceStatus (57) */268 export interface FrameSupportTokensMiscBalanceStatus extends Enum {269 readonly isFree: boolean;270 readonly isReserved: boolean;271 readonly type: 'Free' | 'Reserved';272 }273274 /** @name PalletBalancesError (58) */275 export interface PalletBalancesError extends Enum {276 readonly isVestingBalance: boolean;277 readonly isLiquidityRestrictions: boolean;278 readonly isInsufficientBalance: boolean;279 readonly isExistentialDeposit: boolean;280 readonly isKeepAlive: boolean;281 readonly isExistingVestingSchedule: boolean;282 readonly isDeadAccount: boolean;283 readonly isTooManyReserves: boolean;284 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';285 }286287 /** @name PalletTimestampCall (61) */288 export interface PalletTimestampCall extends Enum {289 readonly isSet: boolean;290 readonly asSet: {291 readonly now: Compact<u64>;292 } & Struct;293 readonly type: 'Set';294 }295296 /** @name PalletTransactionPaymentReleases (64) */297 export interface PalletTransactionPaymentReleases extends Enum {298 readonly isV1Ancient: boolean;299 readonly isV2: boolean;300 readonly type: 'V1Ancient' | 'V2';301 }302303 /** @name FrameSupportWeightsWeightToFeeCoefficient (66) */304 export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {305 readonly coeffInteger: u128;306 readonly coeffFrac: Perbill;307 readonly negative: bool;308 readonly degree: u8;309 }310311 /** @name PalletTreasuryProposal (68) */312 export interface PalletTreasuryProposal extends Struct {313 readonly proposer: AccountId32;314 readonly value: u128;315 readonly beneficiary: AccountId32;316 readonly bond: u128;317 }318319 /** @name PalletTreasuryCall (71) */320 export interface PalletTreasuryCall extends Enum {321 readonly isProposeSpend: boolean;322 readonly asProposeSpend: {323 readonly value: Compact<u128>;324 readonly beneficiary: MultiAddress;325 } & Struct;326 readonly isRejectProposal: boolean;327 readonly asRejectProposal: {328 readonly proposalId: Compact<u32>;329 } & Struct;330 readonly isApproveProposal: boolean;331 readonly asApproveProposal: {332 readonly proposalId: Compact<u32>;333 } & Struct;334 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';335 }336337 /** @name PalletTreasuryEvent (73) */338 export interface PalletTreasuryEvent extends Enum {339 readonly isProposed: boolean;340 readonly asProposed: {341 readonly proposalIndex: u32;342 } & Struct;343 readonly isSpending: boolean;344 readonly asSpending: {345 readonly budgetRemaining: u128;346 } & Struct;347 readonly isAwarded: boolean;348 readonly asAwarded: {349 readonly proposalIndex: u32;350 readonly award: u128;351 readonly account: AccountId32;352 } & Struct;353 readonly isRejected: boolean;354 readonly asRejected: {355 readonly proposalIndex: u32;356 readonly slashed: u128;357 } & Struct;358 readonly isBurnt: boolean;359 readonly asBurnt: {360 readonly burntFunds: u128;361 } & Struct;362 readonly isRollover: boolean;363 readonly asRollover: {364 readonly rolloverBalance: u128;365 } & Struct;366 readonly isDeposit: boolean;367 readonly asDeposit: {368 readonly value: u128;369 } & Struct;370 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';371 }372373 /** @name FrameSupportPalletId (76) */374 export interface FrameSupportPalletId extends U8aFixed {}375376 /** @name PalletTreasuryError (77) */377 export interface PalletTreasuryError extends Enum {378 readonly isInsufficientProposersBalance: boolean;379 readonly isInvalidIndex: boolean;380 readonly isTooManyApprovals: boolean;381 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';382 }383384 /** @name PalletSudoCall (78) */385 export interface PalletSudoCall extends Enum {386 readonly isSudo: boolean;387 readonly asSudo: {388 readonly call: Call;389 } & Struct;390 readonly isSudoUncheckedWeight: boolean;391 readonly asSudoUncheckedWeight: {392 readonly call: Call;393 readonly weight: u64;394 } & Struct;395 readonly isSetKey: boolean;396 readonly asSetKey: {397 readonly new_: MultiAddress;398 } & Struct;399 readonly isSudoAs: boolean;400 readonly asSudoAs: {401 readonly who: MultiAddress;402 readonly call: Call;403 } & Struct;404 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';405 }406407 /** @name FrameSystemCall (80) */408 export interface FrameSystemCall extends Enum {409 readonly isFillBlock: boolean;410 readonly asFillBlock: {411 readonly ratio: Perbill;412 } & Struct;413 readonly isRemark: boolean;414 readonly asRemark: {415 readonly remark: Bytes;416 } & Struct;417 readonly isSetHeapPages: boolean;418 readonly asSetHeapPages: {419 readonly pages: u64;420 } & Struct;421 readonly isSetCode: boolean;422 readonly asSetCode: {423 readonly code: Bytes;424 } & Struct;425 readonly isSetCodeWithoutChecks: boolean;426 readonly asSetCodeWithoutChecks: {427 readonly code: Bytes;428 } & Struct;429 readonly isSetStorage: boolean;430 readonly asSetStorage: {431 readonly items: Vec<ITuple<[Bytes, Bytes]>>;432 } & Struct;433 readonly isKillStorage: boolean;434 readonly asKillStorage: {435 readonly keys_: Vec<Bytes>;436 } & Struct;437 readonly isKillPrefix: boolean;438 readonly asKillPrefix: {439 readonly prefix: Bytes;440 readonly subkeys: u32;441 } & Struct;442 readonly isRemarkWithEvent: boolean;443 readonly asRemarkWithEvent: {444 readonly remark: Bytes;445 } & Struct;446 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';447 }448449 /** @name OrmlVestingModuleCall (83) */450 export interface OrmlVestingModuleCall extends Enum {451 readonly isClaim: boolean;452 readonly isVestedTransfer: boolean;453 readonly asVestedTransfer: {454 readonly dest: MultiAddress;455 readonly schedule: OrmlVestingVestingSchedule;456 } & Struct;457 readonly isUpdateVestingSchedules: boolean;458 readonly asUpdateVestingSchedules: {459 readonly who: MultiAddress;460 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;461 } & Struct;462 readonly isClaimFor: boolean;463 readonly asClaimFor: {464 readonly dest: MultiAddress;465 } & Struct;466 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';467 }468469 /** @name OrmlVestingVestingSchedule (84) */470 export interface OrmlVestingVestingSchedule extends Struct {471 readonly start: u32;472 readonly period: u32;473 readonly periodCount: u32;474 readonly perPeriod: Compact<u128>;475 }476477 /** @name CumulusPalletXcmpQueueCall (86) */478 export interface CumulusPalletXcmpQueueCall extends Enum {479 readonly isServiceOverweight: boolean;480 readonly asServiceOverweight: {481 readonly index: u64;482 readonly weightLimit: u64;483 } & Struct;484 readonly isSuspendXcmExecution: boolean;485 readonly isResumeXcmExecution: boolean;486 readonly isUpdateSuspendThreshold: boolean;487 readonly asUpdateSuspendThreshold: {488 readonly new_: u32;489 } & Struct;490 readonly isUpdateDropThreshold: boolean;491 readonly asUpdateDropThreshold: {492 readonly new_: u32;493 } & Struct;494 readonly isUpdateResumeThreshold: boolean;495 readonly asUpdateResumeThreshold: {496 readonly new_: u32;497 } & Struct;498 readonly isUpdateThresholdWeight: boolean;499 readonly asUpdateThresholdWeight: {500 readonly new_: u64;501 } & Struct;502 readonly isUpdateWeightRestrictDecay: boolean;503 readonly asUpdateWeightRestrictDecay: {504 readonly new_: u64;505 } & Struct;506 readonly isUpdateXcmpMaxIndividualWeight: boolean;507 readonly asUpdateXcmpMaxIndividualWeight: {508 readonly new_: u64;509 } & Struct;510 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';511 }512513 /** @name PalletXcmCall (87) */514 export interface PalletXcmCall extends Enum {515 readonly isSend: boolean;516 readonly asSend: {517 readonly dest: XcmVersionedMultiLocation;518 readonly message: XcmVersionedXcm;519 } & Struct;520 readonly isTeleportAssets: boolean;521 readonly asTeleportAssets: {522 readonly dest: XcmVersionedMultiLocation;523 readonly beneficiary: XcmVersionedMultiLocation;524 readonly assets: XcmVersionedMultiAssets;525 readonly feeAssetItem: u32;526 } & Struct;527 readonly isReserveTransferAssets: boolean;528 readonly asReserveTransferAssets: {529 readonly dest: XcmVersionedMultiLocation;530 readonly beneficiary: XcmVersionedMultiLocation;531 readonly assets: XcmVersionedMultiAssets;532 readonly feeAssetItem: u32;533 } & Struct;534 readonly isExecute: boolean;535 readonly asExecute: {536 readonly message: XcmVersionedXcm;537 readonly maxWeight: u64;538 } & Struct;539 readonly isForceXcmVersion: boolean;540 readonly asForceXcmVersion: {541 readonly location: XcmV1MultiLocation;542 readonly xcmVersion: u32;543 } & Struct;544 readonly isForceDefaultXcmVersion: boolean;545 readonly asForceDefaultXcmVersion: {546 readonly maybeXcmVersion: Option<u32>;547 } & Struct;548 readonly isForceSubscribeVersionNotify: boolean;549 readonly asForceSubscribeVersionNotify: {550 readonly location: XcmVersionedMultiLocation;551 } & Struct;552 readonly isForceUnsubscribeVersionNotify: boolean;553 readonly asForceUnsubscribeVersionNotify: {554 readonly location: XcmVersionedMultiLocation;555 } & Struct;556 readonly isLimitedReserveTransferAssets: boolean;557 readonly asLimitedReserveTransferAssets: {558 readonly dest: XcmVersionedMultiLocation;559 readonly beneficiary: XcmVersionedMultiLocation;560 readonly assets: XcmVersionedMultiAssets;561 readonly feeAssetItem: u32;562 readonly weightLimit: XcmV2WeightLimit;563 } & Struct;564 readonly isLimitedTeleportAssets: boolean;565 readonly asLimitedTeleportAssets: {566 readonly dest: XcmVersionedMultiLocation;567 readonly beneficiary: XcmVersionedMultiLocation;568 readonly assets: XcmVersionedMultiAssets;569 readonly feeAssetItem: u32;570 readonly weightLimit: XcmV2WeightLimit;571 } & Struct;572 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';573 }574575 /** @name XcmVersionedMultiLocation (88) */576 export interface XcmVersionedMultiLocation extends Enum {577 readonly isV0: boolean;578 readonly asV0: XcmV0MultiLocation;579 readonly isV1: boolean;580 readonly asV1: XcmV1MultiLocation;581 readonly type: 'V0' | 'V1';582 }583584 /** @name XcmV0MultiLocation (89) */585 export interface XcmV0MultiLocation extends Enum {586 readonly isNull: boolean;587 readonly isX1: boolean;588 readonly asX1: XcmV0Junction;589 readonly isX2: boolean;590 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;591 readonly isX3: boolean;592 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;593 readonly isX4: boolean;594 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;595 readonly isX5: boolean;596 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;597 readonly isX6: boolean;598 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;599 readonly isX7: boolean;600 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;601 readonly isX8: boolean;602 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;603 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';604 }605606 /** @name XcmV0Junction (90) */607 export interface XcmV0Junction extends Enum {608 readonly isParent: boolean;609 readonly isParachain: boolean;610 readonly asParachain: Compact<u32>;611 readonly isAccountId32: boolean;612 readonly asAccountId32: {613 readonly network: XcmV0JunctionNetworkId;614 readonly id: U8aFixed;615 } & Struct;616 readonly isAccountIndex64: boolean;617 readonly asAccountIndex64: {618 readonly network: XcmV0JunctionNetworkId;619 readonly index: Compact<u64>;620 } & Struct;621 readonly isAccountKey20: boolean;622 readonly asAccountKey20: {623 readonly network: XcmV0JunctionNetworkId;624 readonly key: U8aFixed;625 } & Struct;626 readonly isPalletInstance: boolean;627 readonly asPalletInstance: u8;628 readonly isGeneralIndex: boolean;629 readonly asGeneralIndex: Compact<u128>;630 readonly isGeneralKey: boolean;631 readonly asGeneralKey: Bytes;632 readonly isOnlyChild: boolean;633 readonly isPlurality: boolean;634 readonly asPlurality: {635 readonly id: XcmV0JunctionBodyId;636 readonly part: XcmV0JunctionBodyPart;637 } & Struct;638 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';639 }640641 /** @name XcmV0JunctionNetworkId (91) */642 export interface XcmV0JunctionNetworkId extends Enum {643 readonly isAny: boolean;644 readonly isNamed: boolean;645 readonly asNamed: Bytes;646 readonly isPolkadot: boolean;647 readonly isKusama: boolean;648 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';649 }650651 /** @name XcmV0JunctionBodyId (92) */652 export interface XcmV0JunctionBodyId extends Enum {653 readonly isUnit: boolean;654 readonly isNamed: boolean;655 readonly asNamed: Bytes;656 readonly isIndex: boolean;657 readonly asIndex: Compact<u32>;658 readonly isExecutive: boolean;659 readonly isTechnical: boolean;660 readonly isLegislative: boolean;661 readonly isJudicial: boolean;662 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';663 }664665 /** @name XcmV0JunctionBodyPart (93) */666 export interface XcmV0JunctionBodyPart extends Enum {667 readonly isVoice: boolean;668 readonly isMembers: boolean;669 readonly asMembers: {670 readonly count: Compact<u32>;671 } & Struct;672 readonly isFraction: boolean;673 readonly asFraction: {674 readonly nom: Compact<u32>;675 readonly denom: Compact<u32>;676 } & Struct;677 readonly isAtLeastProportion: boolean;678 readonly asAtLeastProportion: {679 readonly nom: Compact<u32>;680 readonly denom: Compact<u32>;681 } & Struct;682 readonly isMoreThanProportion: boolean;683 readonly asMoreThanProportion: {684 readonly nom: Compact<u32>;685 readonly denom: Compact<u32>;686 } & Struct;687 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';688 }689690 /** @name XcmV1MultiLocation (94) */691 export interface XcmV1MultiLocation extends Struct {692 readonly parents: u8;693 readonly interior: XcmV1MultilocationJunctions;694 }695696 /** @name XcmV1MultilocationJunctions (95) */697 export interface XcmV1MultilocationJunctions extends Enum {698 readonly isHere: boolean;699 readonly isX1: boolean;700 readonly asX1: XcmV1Junction;701 readonly isX2: boolean;702 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;703 readonly isX3: boolean;704 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;705 readonly isX4: boolean;706 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;707 readonly isX5: boolean;708 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;709 readonly isX6: boolean;710 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;711 readonly isX7: boolean;712 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;713 readonly isX8: boolean;714 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;715 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';716 }717718 /** @name XcmV1Junction (96) */719 export interface XcmV1Junction extends Enum {720 readonly isParachain: boolean;721 readonly asParachain: Compact<u32>;722 readonly isAccountId32: boolean;723 readonly asAccountId32: {724 readonly network: XcmV0JunctionNetworkId;725 readonly id: U8aFixed;726 } & Struct;727 readonly isAccountIndex64: boolean;728 readonly asAccountIndex64: {729 readonly network: XcmV0JunctionNetworkId;730 readonly index: Compact<u64>;731 } & Struct;732 readonly isAccountKey20: boolean;733 readonly asAccountKey20: {734 readonly network: XcmV0JunctionNetworkId;735 readonly key: U8aFixed;736 } & Struct;737 readonly isPalletInstance: boolean;738 readonly asPalletInstance: u8;739 readonly isGeneralIndex: boolean;740 readonly asGeneralIndex: Compact<u128>;741 readonly isGeneralKey: boolean;742 readonly asGeneralKey: Bytes;743 readonly isOnlyChild: boolean;744 readonly isPlurality: boolean;745 readonly asPlurality: {746 readonly id: XcmV0JunctionBodyId;747 readonly part: XcmV0JunctionBodyPart;748 } & Struct;749 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';750 }751752 /** @name XcmVersionedXcm (97) */753 export interface XcmVersionedXcm extends Enum {754 readonly isV0: boolean;755 readonly asV0: XcmV0Xcm;756 readonly isV1: boolean;757 readonly asV1: XcmV1Xcm;758 readonly isV2: boolean;759 readonly asV2: XcmV2Xcm;760 readonly type: 'V0' | 'V1' | 'V2';761 }762763 /** @name XcmV0Xcm (98) */764 export interface XcmV0Xcm extends Enum {765 readonly isWithdrawAsset: boolean;766 readonly asWithdrawAsset: {767 readonly assets: Vec<XcmV0MultiAsset>;768 readonly effects: Vec<XcmV0Order>;769 } & Struct;770 readonly isReserveAssetDeposit: boolean;771 readonly asReserveAssetDeposit: {772 readonly assets: Vec<XcmV0MultiAsset>;773 readonly effects: Vec<XcmV0Order>;774 } & Struct;775 readonly isTeleportAsset: boolean;776 readonly asTeleportAsset: {777 readonly assets: Vec<XcmV0MultiAsset>;778 readonly effects: Vec<XcmV0Order>;779 } & Struct;780 readonly isQueryResponse: boolean;781 readonly asQueryResponse: {782 readonly queryId: Compact<u64>;783 readonly response: XcmV0Response;784 } & Struct;785 readonly isTransferAsset: boolean;786 readonly asTransferAsset: {787 readonly assets: Vec<XcmV0MultiAsset>;788 readonly dest: XcmV0MultiLocation;789 } & Struct;790 readonly isTransferReserveAsset: boolean;791 readonly asTransferReserveAsset: {792 readonly assets: Vec<XcmV0MultiAsset>;793 readonly dest: XcmV0MultiLocation;794 readonly effects: Vec<XcmV0Order>;795 } & Struct;796 readonly isTransact: boolean;797 readonly asTransact: {798 readonly originType: XcmV0OriginKind;799 readonly requireWeightAtMost: u64;800 readonly call: XcmDoubleEncoded;801 } & Struct;802 readonly isHrmpNewChannelOpenRequest: boolean;803 readonly asHrmpNewChannelOpenRequest: {804 readonly sender: Compact<u32>;805 readonly maxMessageSize: Compact<u32>;806 readonly maxCapacity: Compact<u32>;807 } & Struct;808 readonly isHrmpChannelAccepted: boolean;809 readonly asHrmpChannelAccepted: {810 readonly recipient: Compact<u32>;811 } & Struct;812 readonly isHrmpChannelClosing: boolean;813 readonly asHrmpChannelClosing: {814 readonly initiator: Compact<u32>;815 readonly sender: Compact<u32>;816 readonly recipient: Compact<u32>;817 } & Struct;818 readonly isRelayedFrom: boolean;819 readonly asRelayedFrom: {820 readonly who: XcmV0MultiLocation;821 readonly message: XcmV0Xcm;822 } & Struct;823 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';824 }825826 /** @name XcmV0MultiAsset (100) */827 export interface XcmV0MultiAsset extends Enum {828 readonly isNone: boolean;829 readonly isAll: boolean;830 readonly isAllFungible: boolean;831 readonly isAllNonFungible: boolean;832 readonly isAllAbstractFungible: boolean;833 readonly asAllAbstractFungible: {834 readonly id: Bytes;835 } & Struct;836 readonly isAllAbstractNonFungible: boolean;837 readonly asAllAbstractNonFungible: {838 readonly class: Bytes;839 } & Struct;840 readonly isAllConcreteFungible: boolean;841 readonly asAllConcreteFungible: {842 readonly id: XcmV0MultiLocation;843 } & Struct;844 readonly isAllConcreteNonFungible: boolean;845 readonly asAllConcreteNonFungible: {846 readonly class: XcmV0MultiLocation;847 } & Struct;848 readonly isAbstractFungible: boolean;849 readonly asAbstractFungible: {850 readonly id: Bytes;851 readonly amount: Compact<u128>;852 } & Struct;853 readonly isAbstractNonFungible: boolean;854 readonly asAbstractNonFungible: {855 readonly class: Bytes;856 readonly instance: XcmV1MultiassetAssetInstance;857 } & Struct;858 readonly isConcreteFungible: boolean;859 readonly asConcreteFungible: {860 readonly id: XcmV0MultiLocation;861 readonly amount: Compact<u128>;862 } & Struct;863 readonly isConcreteNonFungible: boolean;864 readonly asConcreteNonFungible: {865 readonly class: XcmV0MultiLocation;866 readonly instance: XcmV1MultiassetAssetInstance;867 } & Struct;868 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';869 }870871 /** @name XcmV1MultiassetAssetInstance (101) */872 export interface XcmV1MultiassetAssetInstance extends Enum {873 readonly isUndefined: boolean;874 readonly isIndex: boolean;875 readonly asIndex: Compact<u128>;876 readonly isArray4: boolean;877 readonly asArray4: U8aFixed;878 readonly isArray8: boolean;879 readonly asArray8: U8aFixed;880 readonly isArray16: boolean;881 readonly asArray16: U8aFixed;882 readonly isArray32: boolean;883 readonly asArray32: U8aFixed;884 readonly isBlob: boolean;885 readonly asBlob: Bytes;886 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';887 }888889 /** @name XcmV0Order (105) */890 export interface XcmV0Order extends Enum {891 readonly isNull: boolean;892 readonly isDepositAsset: boolean;893 readonly asDepositAsset: {894 readonly assets: Vec<XcmV0MultiAsset>;895 readonly dest: XcmV0MultiLocation;896 } & Struct;897 readonly isDepositReserveAsset: boolean;898 readonly asDepositReserveAsset: {899 readonly assets: Vec<XcmV0MultiAsset>;900 readonly dest: XcmV0MultiLocation;901 readonly effects: Vec<XcmV0Order>;902 } & Struct;903 readonly isExchangeAsset: boolean;904 readonly asExchangeAsset: {905 readonly give: Vec<XcmV0MultiAsset>;906 readonly receive: Vec<XcmV0MultiAsset>;907 } & Struct;908 readonly isInitiateReserveWithdraw: boolean;909 readonly asInitiateReserveWithdraw: {910 readonly assets: Vec<XcmV0MultiAsset>;911 readonly reserve: XcmV0MultiLocation;912 readonly effects: Vec<XcmV0Order>;913 } & Struct;914 readonly isInitiateTeleport: boolean;915 readonly asInitiateTeleport: {916 readonly assets: Vec<XcmV0MultiAsset>;917 readonly dest: XcmV0MultiLocation;918 readonly effects: Vec<XcmV0Order>;919 } & Struct;920 readonly isQueryHolding: boolean;921 readonly asQueryHolding: {922 readonly queryId: Compact<u64>;923 readonly dest: XcmV0MultiLocation;924 readonly assets: Vec<XcmV0MultiAsset>;925 } & Struct;926 readonly isBuyExecution: boolean;927 readonly asBuyExecution: {928 readonly fees: XcmV0MultiAsset;929 readonly weight: u64;930 readonly debt: u64;931 readonly haltOnError: bool;932 readonly xcm: Vec<XcmV0Xcm>;933 } & Struct;934 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';935 }936937 /** @name XcmV0Response (107) */938 export interface XcmV0Response extends Enum {939 readonly isAssets: boolean;940 readonly asAssets: Vec<XcmV0MultiAsset>;941 readonly type: 'Assets';942 }943944 /** @name XcmV0OriginKind (108) */945 export interface XcmV0OriginKind extends Enum {946 readonly isNative: boolean;947 readonly isSovereignAccount: boolean;948 readonly isSuperuser: boolean;949 readonly isXcm: boolean;950 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';951 }952953 /** @name XcmDoubleEncoded (109) */954 export interface XcmDoubleEncoded extends Struct {955 readonly encoded: Bytes;956 }957958 /** @name XcmV1Xcm (110) */959 export interface XcmV1Xcm extends Enum {960 readonly isWithdrawAsset: boolean;961 readonly asWithdrawAsset: {962 readonly assets: XcmV1MultiassetMultiAssets;963 readonly effects: Vec<XcmV1Order>;964 } & Struct;965 readonly isReserveAssetDeposited: boolean;966 readonly asReserveAssetDeposited: {967 readonly assets: XcmV1MultiassetMultiAssets;968 readonly effects: Vec<XcmV1Order>;969 } & Struct;970 readonly isReceiveTeleportedAsset: boolean;971 readonly asReceiveTeleportedAsset: {972 readonly assets: XcmV1MultiassetMultiAssets;973 readonly effects: Vec<XcmV1Order>;974 } & Struct;975 readonly isQueryResponse: boolean;976 readonly asQueryResponse: {977 readonly queryId: Compact<u64>;978 readonly response: XcmV1Response;979 } & Struct;980 readonly isTransferAsset: boolean;981 readonly asTransferAsset: {982 readonly assets: XcmV1MultiassetMultiAssets;983 readonly beneficiary: XcmV1MultiLocation;984 } & Struct;985 readonly isTransferReserveAsset: boolean;986 readonly asTransferReserveAsset: {987 readonly assets: XcmV1MultiassetMultiAssets;988 readonly dest: XcmV1MultiLocation;989 readonly effects: Vec<XcmV1Order>;990 } & Struct;991 readonly isTransact: boolean;992 readonly asTransact: {993 readonly originType: XcmV0OriginKind;994 readonly requireWeightAtMost: u64;995 readonly call: XcmDoubleEncoded;996 } & Struct;997 readonly isHrmpNewChannelOpenRequest: boolean;998 readonly asHrmpNewChannelOpenRequest: {999 readonly sender: Compact<u32>;1000 readonly maxMessageSize: Compact<u32>;1001 readonly maxCapacity: Compact<u32>;1002 } & Struct;1003 readonly isHrmpChannelAccepted: boolean;1004 readonly asHrmpChannelAccepted: {1005 readonly recipient: Compact<u32>;1006 } & Struct;1007 readonly isHrmpChannelClosing: boolean;1008 readonly asHrmpChannelClosing: {1009 readonly initiator: Compact<u32>;1010 readonly sender: Compact<u32>;1011 readonly recipient: Compact<u32>;1012 } & Struct;1013 readonly isRelayedFrom: boolean;1014 readonly asRelayedFrom: {1015 readonly who: XcmV1MultilocationJunctions;1016 readonly message: XcmV1Xcm;1017 } & Struct;1018 readonly isSubscribeVersion: boolean;1019 readonly asSubscribeVersion: {1020 readonly queryId: Compact<u64>;1021 readonly maxResponseWeight: Compact<u64>;1022 } & Struct;1023 readonly isUnsubscribeVersion: boolean;1024 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';1025 }10261027 /** @name XcmV1MultiassetMultiAssets (111) */1028 export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}10291030 /** @name XcmV1MultiAsset (113) */1031 export interface XcmV1MultiAsset extends Struct {1032 readonly id: XcmV1MultiassetAssetId;1033 readonly fun: XcmV1MultiassetFungibility;1034 }10351036 /** @name XcmV1MultiassetAssetId (114) */1037 export interface XcmV1MultiassetAssetId extends Enum {1038 readonly isConcrete: boolean;1039 readonly asConcrete: XcmV1MultiLocation;1040 readonly isAbstract: boolean;1041 readonly asAbstract: Bytes;1042 readonly type: 'Concrete' | 'Abstract';1043 }10441045 /** @name XcmV1MultiassetFungibility (115) */1046 export interface XcmV1MultiassetFungibility extends Enum {1047 readonly isFungible: boolean;1048 readonly asFungible: Compact<u128>;1049 readonly isNonFungible: boolean;1050 readonly asNonFungible: XcmV1MultiassetAssetInstance;1051 readonly type: 'Fungible' | 'NonFungible';1052 }10531054 /** @name XcmV1Order (117) */1055 export interface XcmV1Order extends Enum {1056 readonly isNoop: boolean;1057 readonly isDepositAsset: boolean;1058 readonly asDepositAsset: {1059 readonly assets: XcmV1MultiassetMultiAssetFilter;1060 readonly maxAssets: u32;1061 readonly beneficiary: XcmV1MultiLocation;1062 } & Struct;1063 readonly isDepositReserveAsset: boolean;1064 readonly asDepositReserveAsset: {1065 readonly assets: XcmV1MultiassetMultiAssetFilter;1066 readonly maxAssets: u32;1067 readonly dest: XcmV1MultiLocation;1068 readonly effects: Vec<XcmV1Order>;1069 } & Struct;1070 readonly isExchangeAsset: boolean;1071 readonly asExchangeAsset: {1072 readonly give: XcmV1MultiassetMultiAssetFilter;1073 readonly receive: XcmV1MultiassetMultiAssets;1074 } & Struct;1075 readonly isInitiateReserveWithdraw: boolean;1076 readonly asInitiateReserveWithdraw: {1077 readonly assets: XcmV1MultiassetMultiAssetFilter;1078 readonly reserve: XcmV1MultiLocation;1079 readonly effects: Vec<XcmV1Order>;1080 } & Struct;1081 readonly isInitiateTeleport: boolean;1082 readonly asInitiateTeleport: {1083 readonly assets: XcmV1MultiassetMultiAssetFilter;1084 readonly dest: XcmV1MultiLocation;1085 readonly effects: Vec<XcmV1Order>;1086 } & Struct;1087 readonly isQueryHolding: boolean;1088 readonly asQueryHolding: {1089 readonly queryId: Compact<u64>;1090 readonly dest: XcmV1MultiLocation;1091 readonly assets: XcmV1MultiassetMultiAssetFilter;1092 } & Struct;1093 readonly isBuyExecution: boolean;1094 readonly asBuyExecution: {1095 readonly fees: XcmV1MultiAsset;1096 readonly weight: u64;1097 readonly debt: u64;1098 readonly haltOnError: bool;1099 readonly instructions: Vec<XcmV1Xcm>;1100 } & Struct;1101 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';1102 }11031104 /** @name XcmV1MultiassetMultiAssetFilter (118) */1105 export interface XcmV1MultiassetMultiAssetFilter extends Enum {1106 readonly isDefinite: boolean;1107 readonly asDefinite: XcmV1MultiassetMultiAssets;1108 readonly isWild: boolean;1109 readonly asWild: XcmV1MultiassetWildMultiAsset;1110 readonly type: 'Definite' | 'Wild';1111 }11121113 /** @name XcmV1MultiassetWildMultiAsset (119) */1114 export interface XcmV1MultiassetWildMultiAsset extends Enum {1115 readonly isAll: boolean;1116 readonly isAllOf: boolean;1117 readonly asAllOf: {1118 readonly id: XcmV1MultiassetAssetId;1119 readonly fun: XcmV1MultiassetWildFungibility;1120 } & Struct;1121 readonly type: 'All' | 'AllOf';1122 }11231124 /** @name XcmV1MultiassetWildFungibility (120) */1125 export interface XcmV1MultiassetWildFungibility extends Enum {1126 readonly isFungible: boolean;1127 readonly isNonFungible: boolean;1128 readonly type: 'Fungible' | 'NonFungible';1129 }11301131 /** @name XcmV1Response (122) */1132 export interface XcmV1Response extends Enum {1133 readonly isAssets: boolean;1134 readonly asAssets: XcmV1MultiassetMultiAssets;1135 readonly isVersion: boolean;1136 readonly asVersion: u32;1137 readonly type: 'Assets' | 'Version';1138 }11391140 /** @name XcmV2Xcm (123) */1141 export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}11421143 /** @name XcmV2Instruction (125) */1144 export interface XcmV2Instruction extends Enum {1145 readonly isWithdrawAsset: boolean;1146 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;1147 readonly isReserveAssetDeposited: boolean;1148 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;1149 readonly isReceiveTeleportedAsset: boolean;1150 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;1151 readonly isQueryResponse: boolean;1152 readonly asQueryResponse: {1153 readonly queryId: Compact<u64>;1154 readonly response: XcmV2Response;1155 readonly maxWeight: Compact<u64>;1156 } & Struct;1157 readonly isTransferAsset: boolean;1158 readonly asTransferAsset: {1159 readonly assets: XcmV1MultiassetMultiAssets;1160 readonly beneficiary: XcmV1MultiLocation;1161 } & Struct;1162 readonly isTransferReserveAsset: boolean;1163 readonly asTransferReserveAsset: {1164 readonly assets: XcmV1MultiassetMultiAssets;1165 readonly dest: XcmV1MultiLocation;1166 readonly xcm: XcmV2Xcm;1167 } & Struct;1168 readonly isTransact: boolean;1169 readonly asTransact: {1170 readonly originType: XcmV0OriginKind;1171 readonly requireWeightAtMost: Compact<u64>;1172 readonly call: XcmDoubleEncoded;1173 } & Struct;1174 readonly isHrmpNewChannelOpenRequest: boolean;1175 readonly asHrmpNewChannelOpenRequest: {1176 readonly sender: Compact<u32>;1177 readonly maxMessageSize: Compact<u32>;1178 readonly maxCapacity: Compact<u32>;1179 } & Struct;1180 readonly isHrmpChannelAccepted: boolean;1181 readonly asHrmpChannelAccepted: {1182 readonly recipient: Compact<u32>;1183 } & Struct;1184 readonly isHrmpChannelClosing: boolean;1185 readonly asHrmpChannelClosing: {1186 readonly initiator: Compact<u32>;1187 readonly sender: Compact<u32>;1188 readonly recipient: Compact<u32>;1189 } & Struct;1190 readonly isClearOrigin: boolean;1191 readonly isDescendOrigin: boolean;1192 readonly asDescendOrigin: XcmV1MultilocationJunctions;1193 readonly isReportError: boolean;1194 readonly asReportError: {1195 readonly queryId: Compact<u64>;1196 readonly dest: XcmV1MultiLocation;1197 readonly maxResponseWeight: Compact<u64>;1198 } & Struct;1199 readonly isDepositAsset: boolean;1200 readonly asDepositAsset: {1201 readonly assets: XcmV1MultiassetMultiAssetFilter;1202 readonly maxAssets: Compact<u32>;1203 readonly beneficiary: XcmV1MultiLocation;1204 } & Struct;1205 readonly isDepositReserveAsset: boolean;1206 readonly asDepositReserveAsset: {1207 readonly assets: XcmV1MultiassetMultiAssetFilter;1208 readonly maxAssets: Compact<u32>;1209 readonly dest: XcmV1MultiLocation;1210 readonly xcm: XcmV2Xcm;1211 } & Struct;1212 readonly isExchangeAsset: boolean;1213 readonly asExchangeAsset: {1214 readonly give: XcmV1MultiassetMultiAssetFilter;1215 readonly receive: XcmV1MultiassetMultiAssets;1216 } & Struct;1217 readonly isInitiateReserveWithdraw: boolean;1218 readonly asInitiateReserveWithdraw: {1219 readonly assets: XcmV1MultiassetMultiAssetFilter;1220 readonly reserve: XcmV1MultiLocation;1221 readonly xcm: XcmV2Xcm;1222 } & Struct;1223 readonly isInitiateTeleport: boolean;1224 readonly asInitiateTeleport: {1225 readonly assets: XcmV1MultiassetMultiAssetFilter;1226 readonly dest: XcmV1MultiLocation;1227 readonly xcm: XcmV2Xcm;1228 } & Struct;1229 readonly isQueryHolding: boolean;1230 readonly asQueryHolding: {1231 readonly queryId: Compact<u64>;1232 readonly dest: XcmV1MultiLocation;1233 readonly assets: XcmV1MultiassetMultiAssetFilter;1234 readonly maxResponseWeight: Compact<u64>;1235 } & Struct;1236 readonly isBuyExecution: boolean;1237 readonly asBuyExecution: {1238 readonly fees: XcmV1MultiAsset;1239 readonly weightLimit: XcmV2WeightLimit;1240 } & Struct;1241 readonly isRefundSurplus: boolean;1242 readonly isSetErrorHandler: boolean;1243 readonly asSetErrorHandler: XcmV2Xcm;1244 readonly isSetAppendix: boolean;1245 readonly asSetAppendix: XcmV2Xcm;1246 readonly isClearError: boolean;1247 readonly isClaimAsset: boolean;1248 readonly asClaimAsset: {1249 readonly assets: XcmV1MultiassetMultiAssets;1250 readonly ticket: XcmV1MultiLocation;1251 } & Struct;1252 readonly isTrap: boolean;1253 readonly asTrap: Compact<u64>;1254 readonly isSubscribeVersion: boolean;1255 readonly asSubscribeVersion: {1256 readonly queryId: Compact<u64>;1257 readonly maxResponseWeight: Compact<u64>;1258 } & Struct;1259 readonly isUnsubscribeVersion: boolean;1260 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';1261 }12621263 /** @name XcmV2Response (126) */1264 export interface XcmV2Response extends Enum {1265 readonly isNull: boolean;1266 readonly isAssets: boolean;1267 readonly asAssets: XcmV1MultiassetMultiAssets;1268 readonly isExecutionResult: boolean;1269 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;1270 readonly isVersion: boolean;1271 readonly asVersion: u32;1272 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';1273 }12741275 /** @name XcmV2TraitsError (129) */1276 export interface XcmV2TraitsError extends Enum {1277 readonly isOverflow: boolean;1278 readonly isUnimplemented: boolean;1279 readonly isUntrustedReserveLocation: boolean;1280 readonly isUntrustedTeleportLocation: boolean;1281 readonly isMultiLocationFull: boolean;1282 readonly isMultiLocationNotInvertible: boolean;1283 readonly isBadOrigin: boolean;1284 readonly isInvalidLocation: boolean;1285 readonly isAssetNotFound: boolean;1286 readonly isFailedToTransactAsset: boolean;1287 readonly isNotWithdrawable: boolean;1288 readonly isLocationCannotHold: boolean;1289 readonly isExceedsMaxMessageSize: boolean;1290 readonly isDestinationUnsupported: boolean;1291 readonly isTransport: boolean;1292 readonly isUnroutable: boolean;1293 readonly isUnknownClaim: boolean;1294 readonly isFailedToDecode: boolean;1295 readonly isMaxWeightInvalid: boolean;1296 readonly isNotHoldingFees: boolean;1297 readonly isTooExpensive: boolean;1298 readonly isTrap: boolean;1299 readonly asTrap: u64;1300 readonly isUnhandledXcmVersion: boolean;1301 readonly isWeightLimitReached: boolean;1302 readonly asWeightLimitReached: u64;1303 readonly isBarrier: boolean;1304 readonly isWeightNotComputable: boolean;1305 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';1306 }13071308 /** @name XcmV2WeightLimit (130) */1309 export interface XcmV2WeightLimit extends Enum {1310 readonly isUnlimited: boolean;1311 readonly isLimited: boolean;1312 readonly asLimited: Compact<u64>;1313 readonly type: 'Unlimited' | 'Limited';1314 }13151316 /** @name XcmVersionedMultiAssets (131) */1317 export interface XcmVersionedMultiAssets extends Enum {1318 readonly isV0: boolean;1319 readonly asV0: Vec<XcmV0MultiAsset>;1320 readonly isV1: boolean;1321 readonly asV1: XcmV1MultiassetMultiAssets;1322 readonly type: 'V0' | 'V1';1323 }13241325 /** @name CumulusPalletXcmCall (146) */1326 export type CumulusPalletXcmCall = Null;13271328 /** @name CumulusPalletDmpQueueCall (147) */1329 export interface CumulusPalletDmpQueueCall extends Enum {1330 readonly isServiceOverweight: boolean;1331 readonly asServiceOverweight: {1332 readonly index: u64;1333 readonly weightLimit: u64;1334 } & Struct;1335 readonly type: 'ServiceOverweight';1336 }13371338 /** @name PalletInflationCall (148) */1339 export interface PalletInflationCall extends Enum {1340 readonly isStartInflation: boolean;1341 readonly asStartInflation: {1342 readonly inflationStartRelayBlock: u32;1343 } & Struct;1344 readonly type: 'StartInflation';1345 }13461347 /** @name PalletUniqueCall (149) */1348 export interface PalletUniqueCall extends Enum {1349 readonly isCreateCollection: boolean;1350 readonly asCreateCollection: {1351 readonly collectionName: Vec<u16>;1352 readonly collectionDescription: Vec<u16>;1353 readonly tokenPrefix: Bytes;1354 readonly mode: UpDataStructsCollectionMode;1355 } & Struct;1356 readonly isCreateCollectionEx: boolean;1357 readonly asCreateCollectionEx: {1358 readonly data: UpDataStructsCreateCollectionData;1359 } & Struct;1360 readonly isDestroyCollection: boolean;1361 readonly asDestroyCollection: {1362 readonly collectionId: u32;1363 } & Struct;1364 readonly isAddToAllowList: boolean;1365 readonly asAddToAllowList: {1366 readonly collectionId: u32;1367 readonly address: PalletCommonAccountBasicCrossAccountIdRepr;1368 } & Struct;1369 readonly isRemoveFromAllowList: boolean;1370 readonly asRemoveFromAllowList: {1371 readonly collectionId: u32;1372 readonly address: PalletCommonAccountBasicCrossAccountIdRepr;1373 } & Struct;1374 readonly isSetPublicAccessMode: boolean;1375 readonly asSetPublicAccessMode: {1376 readonly collectionId: u32;1377 readonly mode: UpDataStructsAccessMode;1378 } & Struct;1379 readonly isSetMintPermission: boolean;1380 readonly asSetMintPermission: {1381 readonly collectionId: u32;1382 readonly mintPermission: bool;1383 } & Struct;1384 readonly isChangeCollectionOwner: boolean;1385 readonly asChangeCollectionOwner: {1386 readonly collectionId: u32;1387 readonly newOwner: AccountId32;1388 } & Struct;1389 readonly isAddCollectionAdmin: boolean;1390 readonly asAddCollectionAdmin: {1391 readonly collectionId: u32;1392 readonly newAdminId: PalletCommonAccountBasicCrossAccountIdRepr;1393 } & Struct;1394 readonly isRemoveCollectionAdmin: boolean;1395 readonly asRemoveCollectionAdmin: {1396 readonly collectionId: u32;1397 readonly accountId: PalletCommonAccountBasicCrossAccountIdRepr;1398 } & Struct;1399 readonly isSetCollectionSponsor: boolean;1400 readonly asSetCollectionSponsor: {1401 readonly collectionId: u32;1402 readonly newSponsor: AccountId32;1403 } & Struct;1404 readonly isConfirmSponsorship: boolean;1405 readonly asConfirmSponsorship: {1406 readonly collectionId: u32;1407 } & Struct;1408 readonly isRemoveCollectionSponsor: boolean;1409 readonly asRemoveCollectionSponsor: {1410 readonly collectionId: u32;1411 } & Struct;1412 readonly isCreateItem: boolean;1413 readonly asCreateItem: {1414 readonly collectionId: u32;1415 readonly owner: PalletCommonAccountBasicCrossAccountIdRepr;1416 readonly data: UpDataStructsCreateItemData;1417 } & Struct;1418 readonly isCreateMultipleItems: boolean;1419 readonly asCreateMultipleItems: {1420 readonly collectionId: u32;1421 readonly owner: PalletCommonAccountBasicCrossAccountIdRepr;1422 readonly itemsData: Vec<UpDataStructsCreateItemData>;1423 } & Struct;1424 readonly isSetTransfersEnabledFlag: boolean;1425 readonly asSetTransfersEnabledFlag: {1426 readonly collectionId: u32;1427 readonly value: bool;1428 } & Struct;1429 readonly isBurnItem: boolean;1430 readonly asBurnItem: {1431 readonly collectionId: u32;1432 readonly itemId: u32;1433 readonly value: u128;1434 } & Struct;1435 readonly isBurnFrom: boolean;1436 readonly asBurnFrom: {1437 readonly collectionId: u32;1438 readonly from: PalletCommonAccountBasicCrossAccountIdRepr;1439 readonly itemId: u32;1440 readonly value: u128;1441 } & Struct;1442 readonly isTransfer: boolean;1443 readonly asTransfer: {1444 readonly recipient: PalletCommonAccountBasicCrossAccountIdRepr;1445 readonly collectionId: u32;1446 readonly itemId: u32;1447 readonly value: u128;1448 } & Struct;1449 readonly isApprove: boolean;1450 readonly asApprove: {1451 readonly spender: PalletCommonAccountBasicCrossAccountIdRepr;1452 readonly collectionId: u32;1453 readonly itemId: u32;1454 readonly amount: u128;1455 } & Struct;1456 readonly isTransferFrom: boolean;1457 readonly asTransferFrom: {1458 readonly from: PalletCommonAccountBasicCrossAccountIdRepr;1459 readonly recipient: PalletCommonAccountBasicCrossAccountIdRepr;1460 readonly collectionId: u32;1461 readonly itemId: u32;1462 readonly value: u128;1463 } & Struct;1464 readonly isSetVariableMetaData: boolean;1465 readonly asSetVariableMetaData: {1466 readonly collectionId: u32;1467 readonly itemId: u32;1468 readonly data: Bytes;1469 } & Struct;1470 readonly isSetMetaUpdatePermissionFlag: boolean;1471 readonly asSetMetaUpdatePermissionFlag: {1472 readonly collectionId: u32;1473 readonly value: UpDataStructsMetaUpdatePermission;1474 } & Struct;1475 readonly isSetSchemaVersion: boolean;1476 readonly asSetSchemaVersion: {1477 readonly collectionId: u32;1478 readonly version: UpDataStructsSchemaVersion;1479 } & Struct;1480 readonly isSetOffchainSchema: boolean;1481 readonly asSetOffchainSchema: {1482 readonly collectionId: u32;1483 readonly schema: Bytes;1484 } & Struct;1485 readonly isSetConstOnChainSchema: boolean;1486 readonly asSetConstOnChainSchema: {1487 readonly collectionId: u32;1488 readonly schema: Bytes;1489 } & Struct;1490 readonly isSetVariableOnChainSchema: boolean;1491 readonly asSetVariableOnChainSchema: {1492 readonly collectionId: u32;1493 readonly schema: Bytes;1494 } & Struct;1495 readonly isSetCollectionLimits: boolean;1496 readonly asSetCollectionLimits: {1497 readonly collectionId: u32;1498 readonly newLimit: UpDataStructsCollectionLimits;1499 } & Struct;1500 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetVariableMetaData' | 'SetMetaUpdatePermissionFlag' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetVariableOnChainSchema' | 'SetCollectionLimits';1501 }15021503 /** @name UpDataStructsCollectionMode (155) */1504 export interface UpDataStructsCollectionMode extends Enum {1505 readonly isNft: boolean;1506 readonly isFungible: boolean;1507 readonly asFungible: u8;1508 readonly isReFungible: boolean;1509 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1510 }15111512 /** @name UpDataStructsCreateCollectionData (156) */1513 export interface UpDataStructsCreateCollectionData extends Struct {1514 readonly mode: UpDataStructsCollectionMode;1515 readonly access: Option<UpDataStructsAccessMode>;1516 readonly name: Vec<u16>;1517 readonly description: Vec<u16>;1518 readonly tokenPrefix: Bytes;1519 readonly offchainSchema: Bytes;1520 readonly schemaVersion: Option<UpDataStructsSchemaVersion>;1521 readonly pendingSponsor: Option<AccountId32>;1522 readonly limits: Option<UpDataStructsCollectionLimits>;1523 readonly variableOnChainSchema: Bytes;1524 readonly constOnChainSchema: Bytes;1525 readonly metaUpdatePermission: Option<UpDataStructsMetaUpdatePermission>;1526 }15271528 /** @name UpDataStructsAccessMode (158) */1529 export interface UpDataStructsAccessMode extends Enum {1530 readonly isNormal: boolean;1531 readonly isAllowList: boolean;1532 readonly type: 'Normal' | 'AllowList';1533 }15341535 /** @name UpDataStructsSchemaVersion (161) */1536 export interface UpDataStructsSchemaVersion extends Enum {1537 readonly isImageURL: boolean;1538 readonly isUnique: boolean;1539 readonly type: 'ImageURL' | 'Unique';1540 }15411542 /** @name UpDataStructsCollectionLimits (164) */1543 export interface UpDataStructsCollectionLimits extends Struct {1544 readonly accountTokenOwnershipLimit: Option<u32>;1545 readonly sponsoredDataSize: Option<u32>;1546 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;1547 readonly tokenLimit: Option<u32>;1548 readonly sponsorTransferTimeout: Option<u32>;1549 readonly sponsorApproveTimeout: Option<u32>;1550 readonly ownerCanTransfer: Option<bool>;1551 readonly ownerCanDestroy: Option<bool>;1552 readonly transfersEnabled: Option<bool>;1553 }15541555 /** @name UpDataStructsSponsoringRateLimit (166) */1556 export interface UpDataStructsSponsoringRateLimit extends Enum {1557 readonly isSponsoringDisabled: boolean;1558 readonly isBlocks: boolean;1559 readonly asBlocks: u32;1560 readonly type: 'SponsoringDisabled' | 'Blocks';1561 }15621563 /** @name UpDataStructsMetaUpdatePermission (170) */1564 export interface UpDataStructsMetaUpdatePermission extends Enum {1565 readonly isItemOwner: boolean;1566 readonly isAdmin: boolean;1567 readonly isNone: boolean;1568 readonly type: 'ItemOwner' | 'Admin' | 'None';1569 }15701571 /** @name PalletCommonAccountBasicCrossAccountIdRepr (172) */1572 export interface PalletCommonAccountBasicCrossAccountIdRepr extends Enum {1573 readonly isSubstrate: boolean;1574 readonly asSubstrate: AccountId32;1575 readonly isEthereum: boolean;1576 readonly asEthereum: H160;1577 readonly type: 'Substrate' | 'Ethereum';1578 }15791580 /** @name UpDataStructsCreateItemData (174) */1581 export interface UpDataStructsCreateItemData extends Enum {1582 readonly isNft: boolean;1583 readonly asNft: UpDataStructsCreateNftData;1584 readonly isFungible: boolean;1585 readonly asFungible: UpDataStructsCreateFungibleData;1586 readonly isReFungible: boolean;1587 readonly asReFungible: UpDataStructsCreateReFungibleData;1588 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1589 }15901591 /** @name UpDataStructsCreateNftData (175) */1592 export interface UpDataStructsCreateNftData extends Struct {1593 readonly constData: Bytes;1594 readonly variableData: Bytes;1595 }15961597 /** @name UpDataStructsCreateFungibleData (177) */1598 export interface UpDataStructsCreateFungibleData extends Struct {1599 readonly value: u128;1600 }16011602 /** @name UpDataStructsCreateReFungibleData (178) */1603 export interface UpDataStructsCreateReFungibleData extends Struct {1604 readonly constData: Bytes;1605 readonly variableData: Bytes;1606 readonly pieces: u128;1607 }16081609 /** @name PalletTemplateTransactionPaymentCall (181) */1610 export type PalletTemplateTransactionPaymentCall = Null;16111612 /** @name PalletEvmCall (182) */1613 export interface PalletEvmCall extends Enum {1614 readonly isWithdraw: boolean;1615 readonly asWithdraw: {1616 readonly address: H160;1617 readonly value: u128;1618 } & Struct;1619 readonly isCall: boolean;1620 readonly asCall: {1621 readonly source: H160;1622 readonly target: H160;1623 readonly input: Bytes;1624 readonly value: U256;1625 readonly gasLimit: u64;1626 readonly maxFeePerGas: U256;1627 readonly maxPriorityFeePerGas: Option<U256>;1628 readonly nonce: Option<U256>;1629 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1630 } & Struct;1631 readonly isCreate: boolean;1632 readonly asCreate: {1633 readonly source: H160;1634 readonly init: Bytes;1635 readonly value: U256;1636 readonly gasLimit: u64;1637 readonly maxFeePerGas: U256;1638 readonly maxPriorityFeePerGas: Option<U256>;1639 readonly nonce: Option<U256>;1640 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1641 } & Struct;1642 readonly isCreate2: boolean;1643 readonly asCreate2: {1644 readonly source: H160;1645 readonly init: Bytes;1646 readonly salt: H256;1647 readonly value: U256;1648 readonly gasLimit: u64;1649 readonly maxFeePerGas: U256;1650 readonly maxPriorityFeePerGas: Option<U256>;1651 readonly nonce: Option<U256>;1652 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1653 } & Struct;1654 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1655 }16561657 /** @name PalletEthereumCall (188) */1658 export interface PalletEthereumCall extends Enum {1659 readonly isTransact: boolean;1660 readonly asTransact: {1661 readonly transaction: EthereumTransactionTransactionV2;1662 } & Struct;1663 readonly type: 'Transact';1664 }16651666 /** @name EthereumTransactionTransactionV2 (189) */1667 export interface EthereumTransactionTransactionV2 extends Enum {1668 readonly isLegacy: boolean;1669 readonly asLegacy: EthereumTransactionLegacyTransaction;1670 readonly isEip2930: boolean;1671 readonly asEip2930: EthereumTransactionEip2930Transaction;1672 readonly isEip1559: boolean;1673 readonly asEip1559: EthereumTransactionEip1559Transaction;1674 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';1675 }16761677 /** @name EthereumTransactionLegacyTransaction (190) */1678 export interface EthereumTransactionLegacyTransaction extends Struct {1679 readonly nonce: U256;1680 readonly gasPrice: U256;1681 readonly gasLimit: U256;1682 readonly action: EthereumTransactionTransactionAction;1683 readonly value: U256;1684 readonly input: Bytes;1685 readonly signature: EthereumTransactionTransactionSignature;1686 }16871688 /** @name EthereumTransactionTransactionAction (191) */1689 export interface EthereumTransactionTransactionAction extends Enum {1690 readonly isCall: boolean;1691 readonly asCall: H160;1692 readonly isCreate: boolean;1693 readonly type: 'Call' | 'Create';1694 }16951696 /** @name EthereumTransactionTransactionSignature (192) */1697 export interface EthereumTransactionTransactionSignature extends Struct {1698 readonly v: u64;1699 readonly r: H256;1700 readonly s: H256;1701 }17021703 /** @name EthereumTransactionEip2930Transaction (194) */1704 export interface EthereumTransactionEip2930Transaction extends Struct {1705 readonly chainId: u64;1706 readonly nonce: U256;1707 readonly gasPrice: U256;1708 readonly gasLimit: U256;1709 readonly action: EthereumTransactionTransactionAction;1710 readonly value: U256;1711 readonly input: Bytes;1712 readonly accessList: Vec<EthereumTransactionAccessListItem>;1713 readonly oddYParity: bool;1714 readonly r: H256;1715 readonly s: H256;1716 }17171718 /** @name EthereumTransactionAccessListItem (196) */1719 export interface EthereumTransactionAccessListItem extends Struct {1720 readonly address: H160;1721 readonly slots: Vec<H256>;1722 }17231724 /** @name EthereumTransactionEip1559Transaction (197) */1725 export interface EthereumTransactionEip1559Transaction extends Struct {1726 readonly chainId: u64;1727 readonly nonce: U256;1728 readonly maxPriorityFeePerGas: U256;1729 readonly maxFeePerGas: U256;1730 readonly gasLimit: U256;1731 readonly action: EthereumTransactionTransactionAction;1732 readonly value: U256;1733 readonly input: Bytes;1734 readonly accessList: Vec<EthereumTransactionAccessListItem>;1735 readonly oddYParity: bool;1736 readonly r: H256;1737 readonly s: H256;1738 }17391740 /** @name PalletEvmMigrationCall (198) */1741 export interface PalletEvmMigrationCall extends Enum {1742 readonly isBegin: boolean;1743 readonly asBegin: {1744 readonly address: H160;1745 } & Struct;1746 readonly isSetData: boolean;1747 readonly asSetData: {1748 readonly address: H160;1749 readonly data: Vec<ITuple<[H256, H256]>>;1750 } & Struct;1751 readonly isFinish: boolean;1752 readonly asFinish: {1753 readonly address: H160;1754 readonly code: Bytes;1755 } & Struct;1756 readonly type: 'Begin' | 'SetData' | 'Finish';1757 }17581759 /** @name PalletSudoEvent (201) */1760 export interface PalletSudoEvent extends Enum {1761 readonly isSudid: boolean;1762 readonly asSudid: {1763 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1764 } & Struct;1765 readonly isKeyChanged: boolean;1766 readonly asKeyChanged: {1767 readonly oldSudoer: Option<AccountId32>;1768 } & Struct;1769 readonly isSudoAsDone: boolean;1770 readonly asSudoAsDone: {1771 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1772 } & Struct;1773 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1774 }17751776 /** @name SpRuntimeDispatchError (203) */1777 export interface SpRuntimeDispatchError extends Enum {1778 readonly isOther: boolean;1779 readonly isCannotLookup: boolean;1780 readonly isBadOrigin: boolean;1781 readonly isModule: boolean;1782 readonly asModule: SpRuntimeModuleError;1783 readonly isConsumerRemaining: boolean;1784 readonly isNoProviders: boolean;1785 readonly isTooManyConsumers: boolean;1786 readonly isToken: boolean;1787 readonly asToken: SpRuntimeTokenError;1788 readonly isArithmetic: boolean;1789 readonly asArithmetic: SpRuntimeArithmeticError;1790 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic';1791 }17921793 /** @name SpRuntimeModuleError (204) */1794 export interface SpRuntimeModuleError extends Struct {1795 readonly index: u8;1796 readonly error: u8;1797 }17981799 /** @name SpRuntimeTokenError (205) */1800 export interface SpRuntimeTokenError extends Enum {1801 readonly isNoFunds: boolean;1802 readonly isWouldDie: boolean;1803 readonly isBelowMinimum: boolean;1804 readonly isCannotCreate: boolean;1805 readonly isUnknownAsset: boolean;1806 readonly isFrozen: boolean;1807 readonly isUnsupported: boolean;1808 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';1809 }18101811 /** @name SpRuntimeArithmeticError (206) */1812 export interface SpRuntimeArithmeticError extends Enum {1813 readonly isUnderflow: boolean;1814 readonly isOverflow: boolean;1815 readonly isDivisionByZero: boolean;1816 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';1817 }18181819 /** @name PalletSudoError (207) */1820 export interface PalletSudoError extends Enum {1821 readonly isRequireSudo: boolean;1822 readonly type: 'RequireSudo';1823 }18241825 /** @name FrameSystemAccountInfo (208) */1826 export interface FrameSystemAccountInfo extends Struct {1827 readonly nonce: u32;1828 readonly consumers: u32;1829 readonly providers: u32;1830 readonly sufficients: u32;1831 readonly data: PalletBalancesAccountData;1832 }18331834 /** @name FrameSupportWeightsPerDispatchClassU64 (209) */1835 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {1836 readonly normal: u64;1837 readonly operational: u64;1838 readonly mandatory: u64;1839 }18401841 /** @name SpRuntimeDigest (210) */1842 export interface SpRuntimeDigest extends Struct {1843 readonly logs: Vec<SpRuntimeDigestDigestItem>;1844 }18451846 /** @name SpRuntimeDigestDigestItem (212) */1847 export interface SpRuntimeDigestDigestItem extends Enum {1848 readonly isOther: boolean;1849 readonly asOther: Bytes;1850 readonly isConsensus: boolean;1851 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;1852 readonly isSeal: boolean;1853 readonly asSeal: ITuple<[U8aFixed, Bytes]>;1854 readonly isPreRuntime: boolean;1855 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;1856 readonly isRuntimeEnvironmentUpdated: boolean;1857 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';1858 }18591860 /** @name FrameSystemEventRecord (214) */1861 export interface FrameSystemEventRecord extends Struct {1862 readonly phase: FrameSystemPhase;1863 readonly event: Event;1864 readonly topics: Vec<H256>;1865 }18661867 /** @name FrameSystemEvent (216) */1868 export interface FrameSystemEvent extends Enum {1869 readonly isExtrinsicSuccess: boolean;1870 readonly asExtrinsicSuccess: {1871 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;1872 } & Struct;1873 readonly isExtrinsicFailed: boolean;1874 readonly asExtrinsicFailed: {1875 readonly dispatchError: SpRuntimeDispatchError;1876 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;1877 } & Struct;1878 readonly isCodeUpdated: boolean;1879 readonly isNewAccount: boolean;1880 readonly asNewAccount: {1881 readonly account: AccountId32;1882 } & Struct;1883 readonly isKilledAccount: boolean;1884 readonly asKilledAccount: {1885 readonly account: AccountId32;1886 } & Struct;1887 readonly isRemarked: boolean;1888 readonly asRemarked: {1889 readonly sender: AccountId32;1890 readonly hash_: H256;1891 } & Struct;1892 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';1893 }18941895 /** @name FrameSupportWeightsDispatchInfo (217) */1896 export interface FrameSupportWeightsDispatchInfo extends Struct {1897 readonly weight: u64;1898 readonly class: FrameSupportWeightsDispatchClass;1899 readonly paysFee: FrameSupportWeightsPays;1900 }19011902 /** @name FrameSupportWeightsDispatchClass (218) */1903 export interface FrameSupportWeightsDispatchClass extends Enum {1904 readonly isNormal: boolean;1905 readonly isOperational: boolean;1906 readonly isMandatory: boolean;1907 readonly type: 'Normal' | 'Operational' | 'Mandatory';1908 }19091910 /** @name FrameSupportWeightsPays (219) */1911 export interface FrameSupportWeightsPays extends Enum {1912 readonly isYes: boolean;1913 readonly isNo: boolean;1914 readonly type: 'Yes' | 'No';1915 }19161917 /** @name OrmlVestingModuleEvent (220) */1918 export interface OrmlVestingModuleEvent extends Enum {1919 readonly isVestingScheduleAdded: boolean;1920 readonly asVestingScheduleAdded: {1921 readonly from: AccountId32;1922 readonly to: AccountId32;1923 readonly vestingSchedule: OrmlVestingVestingSchedule;1924 } & Struct;1925 readonly isClaimed: boolean;1926 readonly asClaimed: {1927 readonly who: AccountId32;1928 readonly amount: u128;1929 } & Struct;1930 readonly isVestingSchedulesUpdated: boolean;1931 readonly asVestingSchedulesUpdated: {1932 readonly who: AccountId32;1933 } & Struct;1934 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';1935 }19361937 /** @name CumulusPalletXcmpQueueEvent (221) */1938 export interface CumulusPalletXcmpQueueEvent extends Enum {1939 readonly isSuccess: boolean;1940 readonly asSuccess: Option<H256>;1941 readonly isFail: boolean;1942 readonly asFail: ITuple<[Option<H256>, XcmV2TraitsError]>;1943 readonly isBadVersion: boolean;1944 readonly asBadVersion: Option<H256>;1945 readonly isBadFormat: boolean;1946 readonly asBadFormat: Option<H256>;1947 readonly isUpwardMessageSent: boolean;1948 readonly asUpwardMessageSent: Option<H256>;1949 readonly isXcmpMessageSent: boolean;1950 readonly asXcmpMessageSent: Option<H256>;1951 readonly isOverweightEnqueued: boolean;1952 readonly asOverweightEnqueued: ITuple<[u32, u32, u64, u64]>;1953 readonly isOverweightServiced: boolean;1954 readonly asOverweightServiced: ITuple<[u64, u64]>;1955 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';1956 }19571958 /** @name PalletXcmEvent (222) */1959 export interface PalletXcmEvent extends Enum {1960 readonly isAttempted: boolean;1961 readonly asAttempted: XcmV2TraitsOutcome;1962 readonly isSent: boolean;1963 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;1964 readonly isUnexpectedResponse: boolean;1965 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;1966 readonly isResponseReady: boolean;1967 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;1968 readonly isNotified: boolean;1969 readonly asNotified: ITuple<[u64, u8, u8]>;1970 readonly isNotifyOverweight: boolean;1971 readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;1972 readonly isNotifyDispatchError: boolean;1973 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;1974 readonly isNotifyDecodeFailed: boolean;1975 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;1976 readonly isInvalidResponder: boolean;1977 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;1978 readonly isInvalidResponderVersion: boolean;1979 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;1980 readonly isResponseTaken: boolean;1981 readonly asResponseTaken: u64;1982 readonly isAssetsTrapped: boolean;1983 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;1984 readonly isVersionChangeNotified: boolean;1985 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;1986 readonly isSupportedVersionChanged: boolean;1987 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;1988 readonly isNotifyTargetSendFail: boolean;1989 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;1990 readonly isNotifyTargetMigrationFail: boolean;1991 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;1992 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';1993 }19941995 /** @name XcmV2TraitsOutcome (223) */1996 export interface XcmV2TraitsOutcome extends Enum {1997 readonly isComplete: boolean;1998 readonly asComplete: u64;1999 readonly isIncomplete: boolean;2000 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;2001 readonly isError: boolean;2002 readonly asError: XcmV2TraitsError;2003 readonly type: 'Complete' | 'Incomplete' | 'Error';2004 }20052006 /** @name CumulusPalletXcmEvent (225) */2007 export interface CumulusPalletXcmEvent extends Enum {2008 readonly isInvalidFormat: boolean;2009 readonly asInvalidFormat: U8aFixed;2010 readonly isUnsupportedVersion: boolean;2011 readonly asUnsupportedVersion: U8aFixed;2012 readonly isExecutedDownward: boolean;2013 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;2014 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';2015 }20162017 /** @name CumulusPalletDmpQueueEvent (226) */2018 export interface CumulusPalletDmpQueueEvent extends Enum {2019 readonly isInvalidFormat: boolean;2020 readonly asInvalidFormat: U8aFixed;2021 readonly isUnsupportedVersion: boolean;2022 readonly asUnsupportedVersion: U8aFixed;2023 readonly isExecutedDownward: boolean;2024 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;2025 readonly isWeightExhausted: boolean;2026 readonly asWeightExhausted: ITuple<[U8aFixed, u64, u64]>;2027 readonly isOverweightEnqueued: boolean;2028 readonly asOverweightEnqueued: ITuple<[U8aFixed, u64, u64]>;2029 readonly isOverweightServiced: boolean;2030 readonly asOverweightServiced: ITuple<[u64, u64]>;2031 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2032 }20332034 /** @name PalletUniqueRawEvent (227) */2035 export interface PalletUniqueRawEvent extends Enum {2036 readonly isCollectionSponsorRemoved: boolean;2037 readonly asCollectionSponsorRemoved: u32;2038 readonly isCollectionAdminAdded: boolean;2039 readonly asCollectionAdminAdded: ITuple<[u32, PalletCommonAccountBasicCrossAccountIdRepr]>;2040 readonly isCollectionOwnedChanged: boolean;2041 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;2042 readonly isCollectionSponsorSet: boolean;2043 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;2044 readonly isConstOnChainSchemaSet: boolean;2045 readonly asConstOnChainSchemaSet: u32;2046 readonly isSponsorshipConfirmed: boolean;2047 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;2048 readonly isCollectionAdminRemoved: boolean;2049 readonly asCollectionAdminRemoved: ITuple<[u32, PalletCommonAccountBasicCrossAccountIdRepr]>;2050 readonly isAllowListAddressRemoved: boolean;2051 readonly asAllowListAddressRemoved: ITuple<[u32, PalletCommonAccountBasicCrossAccountIdRepr]>;2052 readonly isAllowListAddressAdded: boolean;2053 readonly asAllowListAddressAdded: ITuple<[u32, PalletCommonAccountBasicCrossAccountIdRepr]>;2054 readonly isCollectionLimitSet: boolean;2055 readonly asCollectionLimitSet: u32;2056 readonly isMintPermissionSet: boolean;2057 readonly asMintPermissionSet: u32;2058 readonly isOffchainSchemaSet: boolean;2059 readonly asOffchainSchemaSet: u32;2060 readonly isPublicAccessModeSet: boolean;2061 readonly asPublicAccessModeSet: ITuple<[u32, UpDataStructsAccessMode]>;2062 readonly isSchemaVersionSet: boolean;2063 readonly asSchemaVersionSet: u32;2064 readonly isVariableOnChainSchemaSet: boolean;2065 readonly asVariableOnChainSchemaSet: u32;2066 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet' | 'VariableOnChainSchemaSet';2067 }20682069 /** @name PalletCommonEvent (228) */2070 export interface PalletCommonEvent extends Enum {2071 readonly isCollectionCreated: boolean;2072 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2073 readonly isCollectionDestroyed: boolean;2074 readonly asCollectionDestroyed: u32;2075 readonly isItemCreated: boolean;2076 readonly asItemCreated: ITuple<[u32, u32, PalletCommonAccountBasicCrossAccountIdRepr, u128]>;2077 readonly isItemDestroyed: boolean;2078 readonly asItemDestroyed: ITuple<[u32, u32, PalletCommonAccountBasicCrossAccountIdRepr, u128]>;2079 readonly isTransfer: boolean;2080 readonly asTransfer: ITuple<[u32, u32, PalletCommonAccountBasicCrossAccountIdRepr, PalletCommonAccountBasicCrossAccountIdRepr, u128]>;2081 readonly isApproved: boolean;2082 readonly asApproved: ITuple<[u32, u32, PalletCommonAccountBasicCrossAccountIdRepr, PalletCommonAccountBasicCrossAccountIdRepr, u128]>;2083 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved';2084 }20852086 /** @name PalletEvmEvent (229) */2087 export interface PalletEvmEvent extends Enum {2088 readonly isLog: boolean;2089 readonly asLog: EthereumLog;2090 readonly isCreated: boolean;2091 readonly asCreated: H160;2092 readonly isCreatedFailed: boolean;2093 readonly asCreatedFailed: H160;2094 readonly isExecuted: boolean;2095 readonly asExecuted: H160;2096 readonly isExecutedFailed: boolean;2097 readonly asExecutedFailed: H160;2098 readonly isBalanceDeposit: boolean;2099 readonly asBalanceDeposit: ITuple<[AccountId32, H160, U256]>;2100 readonly isBalanceWithdraw: boolean;2101 readonly asBalanceWithdraw: ITuple<[AccountId32, H160, U256]>;2102 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2103 }21042105 /** @name EthereumLog (230) */2106 export interface EthereumLog extends Struct {2107 readonly address: H160;2108 readonly topics: Vec<H256>;2109 readonly data: Bytes;2110 }21112112 /** @name PalletEthereumEvent (231) */2113 export interface PalletEthereumEvent extends Enum {2114 readonly isExecuted: boolean;2115 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2116 readonly type: 'Executed';2117 }21182119 /** @name EvmCoreErrorExitReason (232) */2120 export interface EvmCoreErrorExitReason extends Enum {2121 readonly isSucceed: boolean;2122 readonly asSucceed: EvmCoreErrorExitSucceed;2123 readonly isError: boolean;2124 readonly asError: EvmCoreErrorExitError;2125 readonly isRevert: boolean;2126 readonly asRevert: EvmCoreErrorExitRevert;2127 readonly isFatal: boolean;2128 readonly asFatal: EvmCoreErrorExitFatal;2129 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2130 }21312132 /** @name EvmCoreErrorExitSucceed (233) */2133 export interface EvmCoreErrorExitSucceed extends Enum {2134 readonly isStopped: boolean;2135 readonly isReturned: boolean;2136 readonly isSuicided: boolean;2137 readonly type: 'Stopped' | 'Returned' | 'Suicided';2138 }21392140 /** @name EvmCoreErrorExitError (234) */2141 export interface EvmCoreErrorExitError extends Enum {2142 readonly isStackUnderflow: boolean;2143 readonly isStackOverflow: boolean;2144 readonly isInvalidJump: boolean;2145 readonly isInvalidRange: boolean;2146 readonly isDesignatedInvalid: boolean;2147 readonly isCallTooDeep: boolean;2148 readonly isCreateCollision: boolean;2149 readonly isCreateContractLimit: boolean;2150 readonly isInvalidCode: boolean;2151 readonly isOutOfOffset: boolean;2152 readonly isOutOfGas: boolean;2153 readonly isOutOfFund: boolean;2154 readonly isPcUnderflow: boolean;2155 readonly isCreateEmpty: boolean;2156 readonly isOther: boolean;2157 readonly asOther: Text;2158 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'InvalidCode' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other';2159 }21602161 /** @name EvmCoreErrorExitRevert (237) */2162 export interface EvmCoreErrorExitRevert extends Enum {2163 readonly isReverted: boolean;2164 readonly type: 'Reverted';2165 }21662167 /** @name EvmCoreErrorExitFatal (238) */2168 export interface EvmCoreErrorExitFatal extends Enum {2169 readonly isNotSupported: boolean;2170 readonly isUnhandledInterrupt: boolean;2171 readonly isCallErrorAsFatal: boolean;2172 readonly asCallErrorAsFatal: EvmCoreErrorExitError;2173 readonly isOther: boolean;2174 readonly asOther: Text;2175 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2176 }21772178 /** @name FrameSystemPhase (239) */2179 export interface FrameSystemPhase extends Enum {2180 readonly isApplyExtrinsic: boolean;2181 readonly asApplyExtrinsic: u32;2182 readonly isFinalization: boolean;2183 readonly isInitialization: boolean;2184 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2185 }21862187 /** @name FrameSystemLastRuntimeUpgradeInfo (241) */2188 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2189 readonly specVersion: Compact<u32>;2190 readonly specName: Text;2191 }21922193 /** @name FrameSystemLimitsBlockWeights (242) */2194 export interface FrameSystemLimitsBlockWeights extends Struct {2195 readonly baseBlock: u64;2196 readonly maxBlock: u64;2197 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2198 }21992200 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (243) */2201 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2202 readonly normal: FrameSystemLimitsWeightsPerClass;2203 readonly operational: FrameSystemLimitsWeightsPerClass;2204 readonly mandatory: FrameSystemLimitsWeightsPerClass;2205 }22062207 /** @name FrameSystemLimitsWeightsPerClass (244) */2208 export interface FrameSystemLimitsWeightsPerClass extends Struct {2209 readonly baseExtrinsic: u64;2210 readonly maxExtrinsic: Option<u64>;2211 readonly maxTotal: Option<u64>;2212 readonly reserved: Option<u64>;2213 }22142215 /** @name FrameSystemLimitsBlockLength (246) */2216 export interface FrameSystemLimitsBlockLength extends Struct {2217 readonly max: FrameSupportWeightsPerDispatchClassU32;2218 }22192220 /** @name FrameSupportWeightsPerDispatchClassU32 (247) */2221 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2222 readonly normal: u32;2223 readonly operational: u32;2224 readonly mandatory: u32;2225 }22262227 /** @name FrameSupportWeightsRuntimeDbWeight (248) */2228 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2229 readonly read: u64;2230 readonly write: u64;2231 }22322233 /** @name SpVersionRuntimeVersion (249) */2234 export interface SpVersionRuntimeVersion extends Struct {2235 readonly specName: Text;2236 readonly implName: Text;2237 readonly authoringVersion: u32;2238 readonly specVersion: u32;2239 readonly implVersion: u32;2240 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2241 readonly transactionVersion: u32;2242 readonly stateVersion: u8;2243 }22442245 /** @name FrameSystemError (253) */2246 export interface FrameSystemError extends Enum {2247 readonly isInvalidSpecName: boolean;2248 readonly isSpecVersionNeedsToIncrease: boolean;2249 readonly isFailedToExtractRuntimeVersion: boolean;2250 readonly isNonDefaultComposite: boolean;2251 readonly isNonZeroRefCount: boolean;2252 readonly isCallFiltered: boolean;2253 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2254 }22552256 /** @name OrmlVestingModuleError (255) */2257 export interface OrmlVestingModuleError extends Enum {2258 readonly isZeroVestingPeriod: boolean;2259 readonly isZeroVestingPeriodCount: boolean;2260 readonly isInsufficientBalanceToLock: boolean;2261 readonly isTooManyVestingSchedules: boolean;2262 readonly isAmountLow: boolean;2263 readonly isMaxVestingSchedulesExceeded: boolean;2264 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2265 }22662267 /** @name CumulusPalletXcmpQueueInboundChannelDetails (257) */2268 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2269 readonly sender: u32;2270 readonly state: CumulusPalletXcmpQueueInboundState;2271 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2272 }22732274 /** @name CumulusPalletXcmpQueueInboundState (258) */2275 export interface CumulusPalletXcmpQueueInboundState extends Enum {2276 readonly isOk: boolean;2277 readonly isSuspended: boolean;2278 readonly type: 'Ok' | 'Suspended';2279 }22802281 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (261) */2282 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2283 readonly isConcatenatedVersionedXcm: boolean;2284 readonly isConcatenatedEncodedBlob: boolean;2285 readonly isSignals: boolean;2286 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2287 }22882289 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (264) */2290 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2291 readonly recipient: u32;2292 readonly state: CumulusPalletXcmpQueueOutboundState;2293 readonly signalsExist: bool;2294 readonly firstIndex: u16;2295 readonly lastIndex: u16;2296 }22972298 /** @name CumulusPalletXcmpQueueOutboundState (265) */2299 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2300 readonly isOk: boolean;2301 readonly isSuspended: boolean;2302 readonly type: 'Ok' | 'Suspended';2303 }23042305 /** @name CumulusPalletXcmpQueueQueueConfigData (267) */2306 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2307 readonly suspendThreshold: u32;2308 readonly dropThreshold: u32;2309 readonly resumeThreshold: u32;2310 readonly thresholdWeight: u64;2311 readonly weightRestrictDecay: u64;2312 readonly xcmpMaxIndividualWeight: u64;2313 }23142315 /** @name CumulusPalletXcmpQueueError (269) */2316 export interface CumulusPalletXcmpQueueError extends Enum {2317 readonly isFailedToSend: boolean;2318 readonly isBadXcmOrigin: boolean;2319 readonly isBadXcm: boolean;2320 readonly isBadOverweightIndex: boolean;2321 readonly isWeightOverLimit: boolean;2322 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2323 }23242325 /** @name PalletXcmError (270) */2326 export interface PalletXcmError extends Enum {2327 readonly isUnreachable: boolean;2328 readonly isSendFailure: boolean;2329 readonly isFiltered: boolean;2330 readonly isUnweighableMessage: boolean;2331 readonly isDestinationNotInvertible: boolean;2332 readonly isEmpty: boolean;2333 readonly isCannotReanchor: boolean;2334 readonly isTooManyAssets: boolean;2335 readonly isInvalidOrigin: boolean;2336 readonly isBadVersion: boolean;2337 readonly isBadLocation: boolean;2338 readonly isNoSubscription: boolean;2339 readonly isAlreadySubscribed: boolean;2340 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2341 }23422343 /** @name CumulusPalletXcmError (271) */2344 export type CumulusPalletXcmError = Null;23452346 /** @name CumulusPalletDmpQueueConfigData (272) */2347 export interface CumulusPalletDmpQueueConfigData extends Struct {2348 readonly maxIndividual: u64;2349 }23502351 /** @name CumulusPalletDmpQueuePageIndexData (273) */2352 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2353 readonly beginUsed: u32;2354 readonly endUsed: u32;2355 readonly overweightCount: u64;2356 }23572358 /** @name CumulusPalletDmpQueueError (276) */2359 export interface CumulusPalletDmpQueueError extends Enum {2360 readonly isUnknown: boolean;2361 readonly isOverLimit: boolean;2362 readonly type: 'Unknown' | 'OverLimit';2363 }23642365 /** @name PalletUniqueError (280) */2366 export interface PalletUniqueError extends Enum {2367 readonly isCollectionDecimalPointLimitExceeded: boolean;2368 readonly isConfirmUnsetSponsorFail: boolean;2369 readonly isEmptyArgument: boolean;2370 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';2371 }23722373 /** @name UpDataStructsCollection (281) */2374 export interface UpDataStructsCollection extends Struct {2375 readonly owner: AccountId32;2376 readonly mode: UpDataStructsCollectionMode;2377 readonly access: UpDataStructsAccessMode;2378 readonly name: Vec<u16>;2379 readonly description: Vec<u16>;2380 readonly tokenPrefix: Bytes;2381 readonly mintMode: bool;2382 readonly offchainSchema: Bytes;2383 readonly schemaVersion: UpDataStructsSchemaVersion;2384 readonly sponsorship: UpDataStructsSponsorshipState;2385 readonly limits: UpDataStructsCollectionLimits;2386 readonly variableOnChainSchema: Bytes;2387 readonly constOnChainSchema: Bytes;2388 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;2389 }23902391 /** @name UpDataStructsSponsorshipState (282) */2392 export interface UpDataStructsSponsorshipState extends Enum {2393 readonly isDisabled: boolean;2394 readonly isUnconfirmed: boolean;2395 readonly asUnconfirmed: AccountId32;2396 readonly isConfirmed: boolean;2397 readonly asConfirmed: AccountId32;2398 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2399 }24002401 /** @name UpDataStructsCollectionStats (285) */2402 export interface UpDataStructsCollectionStats extends Struct {2403 readonly created: u32;2404 readonly destroyed: u32;2405 readonly alive: u32;2406 }24072408 /** @name PalletCommonError (286) */2409 export interface PalletCommonError extends Enum {2410 readonly isCollectionNotFound: boolean;2411 readonly isMustBeTokenOwner: boolean;2412 readonly isNoPermission: boolean;2413 readonly isPublicMintingNotAllowed: boolean;2414 readonly isAddressNotInAllowlist: boolean;2415 readonly isCollectionNameLimitExceeded: boolean;2416 readonly isCollectionDescriptionLimitExceeded: boolean;2417 readonly isCollectionTokenPrefixLimitExceeded: boolean;2418 readonly isTotalCollectionsLimitExceeded: boolean;2419 readonly isTokenVariableDataLimitExceeded: boolean;2420 readonly isCollectionAdminCountExceeded: boolean;2421 readonly isCollectionLimitBoundsExceeded: boolean;2422 readonly isOwnerPermissionsCantBeReverted: boolean;2423 readonly isTransferNotAllowed: boolean;2424 readonly isAccountTokenLimitExceeded: boolean;2425 readonly isCollectionTokenLimitExceeded: boolean;2426 readonly isMetadataFlagFrozen: boolean;2427 readonly isTokenNotFound: boolean;2428 readonly isTokenValueTooLow: boolean;2429 readonly isApprovedValueTooLow: boolean;2430 readonly isCantApproveMoreThanOwned: boolean;2431 readonly isAddressIsZero: boolean;2432 readonly isUnsupportedOperation: boolean;2433 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'TokenVariableDataLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation';2434 }24352436 /** @name PalletFungibleError (288) */2437 export interface PalletFungibleError extends Enum {2438 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;2439 readonly isFungibleItemsHaveNoId: boolean;2440 readonly isFungibleItemsDontHaveData: boolean;2441 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData';2442 }24432444 /** @name PalletRefungibleItemData (289) */2445 export interface PalletRefungibleItemData extends Struct {2446 readonly constData: Bytes;2447 readonly variableData: Bytes;2448 }24492450 /** @name PalletRefungibleError (293) */2451 export interface PalletRefungibleError extends Enum {2452 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;2453 readonly isWrongRefungiblePieces: boolean;2454 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces';2455 }24562457 /** @name PalletNonfungibleItemData (294) */2458 export interface PalletNonfungibleItemData extends Struct {2459 readonly constData: Bytes;2460 readonly variableData: Bytes;2461 readonly owner: PalletCommonAccountBasicCrossAccountIdRepr;2462 }24632464 /** @name PalletNonfungibleError (295) */2465 export interface PalletNonfungibleError extends Enum {2466 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2467 readonly isNonfungibleItemsHaveNoAmount: boolean;2468 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';2469 }24702471 /** @name PalletEvmError (297) */2472 export interface PalletEvmError extends Enum {2473 readonly isBalanceLow: boolean;2474 readonly isFeeOverflow: boolean;2475 readonly isPaymentOverflow: boolean;2476 readonly isWithdrawFailed: boolean;2477 readonly isGasPriceTooLow: boolean;2478 readonly isInvalidNonce: boolean;2479 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';2480 }24812482 /** @name FpRpcTransactionStatus (300) */2483 export interface FpRpcTransactionStatus extends Struct {2484 readonly transactionHash: H256;2485 readonly transactionIndex: u32;2486 readonly from: H160;2487 readonly to: Option<H160>;2488 readonly contractAddress: Option<H160>;2489 readonly logs: Vec<EthereumLog>;2490 readonly logsBloom: EthbloomBloom;2491 }24922493 /** @name EthbloomBloom (303) */2494 export interface EthbloomBloom extends U8aFixed {}24952496 /** @name EthereumReceiptReceiptV3 (305) */2497 export interface EthereumReceiptReceiptV3 extends Enum {2498 readonly isLegacy: boolean;2499 readonly asLegacy: EthereumReceiptEip658ReceiptData;2500 readonly isEip2930: boolean;2501 readonly asEip2930: EthereumReceiptEip658ReceiptData;2502 readonly isEip1559: boolean;2503 readonly asEip1559: EthereumReceiptEip658ReceiptData;2504 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2505 }25062507 /** @name EthereumReceiptEip658ReceiptData (306) */2508 export interface EthereumReceiptEip658ReceiptData extends Struct {2509 readonly statusCode: u8;2510 readonly usedGas: U256;2511 readonly logsBloom: EthbloomBloom;2512 readonly logs: Vec<EthereumLog>;2513 }25142515 /** @name EthereumBlock (307) */2516 export interface EthereumBlock extends Struct {2517 readonly header: EthereumHeader;2518 readonly transactions: Vec<EthereumTransactionTransactionV2>;2519 readonly ommers: Vec<EthereumHeader>;2520 }25212522 /** @name EthereumHeader (308) */2523 export interface EthereumHeader extends Struct {2524 readonly parentHash: H256;2525 readonly ommersHash: H256;2526 readonly beneficiary: H160;2527 readonly stateRoot: H256;2528 readonly transactionsRoot: H256;2529 readonly receiptsRoot: H256;2530 readonly logsBloom: EthbloomBloom;2531 readonly difficulty: U256;2532 readonly number: U256;2533 readonly gasLimit: U256;2534 readonly gasUsed: U256;2535 readonly timestamp: u64;2536 readonly extraData: Bytes;2537 readonly mixHash: H256;2538 readonly nonce: EthereumTypesHashH64;2539 }25402541 /** @name EthereumTypesHashH64 (309) */2542 export interface EthereumTypesHashH64 extends U8aFixed {}25432544 /** @name PalletEthereumError (314) */2545 export interface PalletEthereumError extends Enum {2546 readonly isInvalidSignature: boolean;2547 readonly isPreLogExists: boolean;2548 readonly type: 'InvalidSignature' | 'PreLogExists';2549 }25502551 /** @name PalletEvmCoderSubstrateError (315) */2552 export interface PalletEvmCoderSubstrateError extends Enum {2553 readonly isOutOfGas: boolean;2554 readonly isOutOfFund: boolean;2555 readonly type: 'OutOfGas' | 'OutOfFund';2556 }25572558 /** @name PalletEvmContractHelpersSponsoringModeT (316) */2559 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {2560 readonly isDisabled: boolean;2561 readonly isAllowlisted: boolean;2562 readonly isGenerous: boolean;2563 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';2564 }25652566 /** @name PalletEvmContractHelpersError (318) */2567 export interface PalletEvmContractHelpersError extends Enum {2568 readonly isNoPermission: boolean;2569 readonly type: 'NoPermission';2570 }25712572 /** @name PalletEvmMigrationError (319) */2573 export interface PalletEvmMigrationError extends Enum {2574 readonly isAccountNotEmpty: boolean;2575 readonly isAccountIsNotMigrating: boolean;2576 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';2577 }25782579 /** @name SpRuntimeMultiSignature (321) */2580 export interface SpRuntimeMultiSignature extends Enum {2581 readonly isEd25519: boolean;2582 readonly asEd25519: SpCoreEd25519Signature;2583 readonly isSr25519: boolean;2584 readonly asSr25519: SpCoreSr25519Signature;2585 readonly isEcdsa: boolean;2586 readonly asEcdsa: SpCoreEcdsaSignature;2587 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2588 }25892590 /** @name SpCoreEd25519Signature (322) */2591 export interface SpCoreEd25519Signature extends U8aFixed {}25922593 /** @name SpCoreSr25519Signature (324) */2594 export interface SpCoreSr25519Signature extends U8aFixed {}25952596 /** @name SpCoreEcdsaSignature (325) */2597 export interface SpCoreEcdsaSignature extends U8aFixed {}25982599 /** @name FrameSystemExtensionsCheckSpecVersion (328) */2600 export type FrameSystemExtensionsCheckSpecVersion = Null;26012602 /** @name FrameSystemExtensionsCheckGenesis (329) */2603 export type FrameSystemExtensionsCheckGenesis = Null;26042605 /** @name FrameSystemExtensionsCheckNonce (332) */2606 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}26072608 /** @name FrameSystemExtensionsCheckWeight (333) */2609 export type FrameSystemExtensionsCheckWeight = Null;26102611 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (334) */2612 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}26132614 /** @name UniqueRuntimeRuntime (335) */2615 export type UniqueRuntimeRuntime = Null;26162617} // declare moduletests/src/interfaces/unique/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/unique/types.ts
+++ b/tests/src/interfaces/unique/types.ts
@@ -133,7 +133,33 @@
readonly index: u64;
readonly weightLimit: u64;
} & Struct;
- readonly type: 'ServiceOverweight';
+ readonly isSuspendXcmExecution: boolean;
+ readonly isResumeXcmExecution: boolean;
+ readonly isUpdateSuspendThreshold: boolean;
+ readonly asUpdateSuspendThreshold: {
+ readonly new_: u32;
+ } & Struct;
+ readonly isUpdateDropThreshold: boolean;
+ readonly asUpdateDropThreshold: {
+ readonly new_: u32;
+ } & Struct;
+ readonly isUpdateResumeThreshold: boolean;
+ readonly asUpdateResumeThreshold: {
+ readonly new_: u32;
+ } & Struct;
+ readonly isUpdateThresholdWeight: boolean;
+ readonly asUpdateThresholdWeight: {
+ readonly new_: u64;
+ } & Struct;
+ readonly isUpdateWeightRestrictDecay: boolean;
+ readonly asUpdateWeightRestrictDecay: {
+ readonly new_: u64;
+ } & Struct;
+ readonly isUpdateXcmpMaxIndividualWeight: boolean;
+ readonly asUpdateXcmpMaxIndividualWeight: {
+ readonly new_: u64;
+ } & Struct;
+ readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
}
/** @name CumulusPalletXcmpQueueError */
@@ -1634,10 +1660,7 @@
readonly isCannotLookup: boolean;
readonly isBadOrigin: boolean;
readonly isModule: boolean;
- readonly asModule: {
- readonly index: u8;
- readonly error: u8;
- } & Struct;
+ readonly asModule: SpRuntimeModuleError;
readonly isConsumerRemaining: boolean;
readonly isNoProviders: boolean;
readonly isTooManyConsumers: boolean;
@@ -1648,6 +1671,12 @@
readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic';
}
+/** @name SpRuntimeModuleError */
+export interface SpRuntimeModuleError extends Struct {
+ readonly index: u8;
+ readonly error: u8;
+}
+
/** @name SpRuntimeMultiSignature */
export interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
@@ -1810,6 +1839,7 @@
readonly isSponsoringDisabled: boolean;
readonly isBlocks: boolean;
readonly asBlocks: u32;
+ readonly type: 'SponsoringDisabled' | 'Blocks';
}
/** @name UpDataStructsSponsorshipState */