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.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -284,7 +284,7 @@
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name PalletTimestampCall (60) */
+ /** @name PalletTimestampCall (61) */
export interface PalletTimestampCall extends Enum {
readonly isSet: boolean;
readonly asSet: {
@@ -293,14 +293,14 @@
readonly type: 'Set';
}
- /** @name PalletTransactionPaymentReleases (63) */
+ /** @name PalletTransactionPaymentReleases (64) */
export interface PalletTransactionPaymentReleases extends Enum {
readonly isV1Ancient: boolean;
readonly isV2: boolean;
readonly type: 'V1Ancient' | 'V2';
}
- /** @name FrameSupportWeightsWeightToFeeCoefficient (65) */
+ /** @name FrameSupportWeightsWeightToFeeCoefficient (66) */
export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {
readonly coeffInteger: u128;
readonly coeffFrac: Perbill;
@@ -308,7 +308,7 @@
readonly degree: u8;
}
- /** @name PalletTreasuryProposal (67) */
+ /** @name PalletTreasuryProposal (68) */
export interface PalletTreasuryProposal extends Struct {
readonly proposer: AccountId32;
readonly value: u128;
@@ -316,7 +316,7 @@
readonly bond: u128;
}
- /** @name PalletTreasuryCall (70) */
+ /** @name PalletTreasuryCall (71) */
export interface PalletTreasuryCall extends Enum {
readonly isProposeSpend: boolean;
readonly asProposeSpend: {
@@ -334,7 +334,7 @@
readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';
}
- /** @name PalletTreasuryEvent (72) */
+ /** @name PalletTreasuryEvent (73) */
export interface PalletTreasuryEvent extends Enum {
readonly isProposed: boolean;
readonly asProposed: {
@@ -370,10 +370,10 @@
readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';
}
- /** @name FrameSupportPalletId (75) */
+ /** @name FrameSupportPalletId (76) */
export interface FrameSupportPalletId extends U8aFixed {}
- /** @name PalletTreasuryError (76) */
+ /** @name PalletTreasuryError (77) */
export interface PalletTreasuryError extends Enum {
readonly isInsufficientProposersBalance: boolean;
readonly isInvalidIndex: boolean;
@@ -381,7 +381,7 @@
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';
}
- /** @name PalletSudoCall (77) */
+ /** @name PalletSudoCall (78) */
export interface PalletSudoCall extends Enum {
readonly isSudo: boolean;
readonly asSudo: {
@@ -404,7 +404,7 @@
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
}
- /** @name FrameSystemCall (79) */
+ /** @name FrameSystemCall (80) */
export interface FrameSystemCall extends Enum {
readonly isFillBlock: boolean;
readonly asFillBlock: {
@@ -446,7 +446,7 @@
readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
}
- /** @name OrmlVestingModuleCall (82) */
+ /** @name OrmlVestingModuleCall (83) */
export interface OrmlVestingModuleCall extends Enum {
readonly isClaim: boolean;
readonly isVestedTransfer: boolean;
@@ -466,7 +466,7 @@
readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
}
- /** @name OrmlVestingVestingSchedule (83) */
+ /** @name OrmlVestingVestingSchedule (84) */
export interface OrmlVestingVestingSchedule extends Struct {
readonly start: u32;
readonly period: u32;
@@ -474,17 +474,43 @@
readonly perPeriod: Compact<u128>;
}
- /** @name CumulusPalletXcmpQueueCall (85) */
+ /** @name CumulusPalletXcmpQueueCall (86) */
export interface CumulusPalletXcmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
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 PalletXcmCall (86) */
+ /** @name PalletXcmCall (87) */
export interface PalletXcmCall extends Enum {
readonly isSend: boolean;
readonly asSend: {
@@ -546,7 +572,7 @@
readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
}
- /** @name XcmVersionedMultiLocation (87) */
+ /** @name XcmVersionedMultiLocation (88) */
export interface XcmVersionedMultiLocation extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0MultiLocation;
@@ -555,7 +581,7 @@
readonly type: 'V0' | 'V1';
}
- /** @name XcmV0MultiLocation (88) */
+ /** @name XcmV0MultiLocation (89) */
export interface XcmV0MultiLocation extends Enum {
readonly isNull: boolean;
readonly isX1: boolean;
@@ -577,7 +603,7 @@
readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
}
- /** @name XcmV0Junction (89) */
+ /** @name XcmV0Junction (90) */
export interface XcmV0Junction extends Enum {
readonly isParent: boolean;
readonly isParachain: boolean;
@@ -612,7 +638,7 @@
readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
}
- /** @name XcmV0JunctionNetworkId (90) */
+ /** @name XcmV0JunctionNetworkId (91) */
export interface XcmV0JunctionNetworkId extends Enum {
readonly isAny: boolean;
readonly isNamed: boolean;
@@ -622,7 +648,7 @@
readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';
}
- /** @name XcmV0JunctionBodyId (91) */
+ /** @name XcmV0JunctionBodyId (92) */
export interface XcmV0JunctionBodyId extends Enum {
readonly isUnit: boolean;
readonly isNamed: boolean;
@@ -636,7 +662,7 @@
readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';
}
- /** @name XcmV0JunctionBodyPart (92) */
+ /** @name XcmV0JunctionBodyPart (93) */
export interface XcmV0JunctionBodyPart extends Enum {
readonly isVoice: boolean;
readonly isMembers: boolean;
@@ -661,13 +687,13 @@
readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
}
- /** @name XcmV1MultiLocation (93) */
+ /** @name XcmV1MultiLocation (94) */
export interface XcmV1MultiLocation extends Struct {
readonly parents: u8;
readonly interior: XcmV1MultilocationJunctions;
}
- /** @name XcmV1MultilocationJunctions (94) */
+ /** @name XcmV1MultilocationJunctions (95) */
export interface XcmV1MultilocationJunctions extends Enum {
readonly isHere: boolean;
readonly isX1: boolean;
@@ -689,7 +715,7 @@
readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
}
- /** @name XcmV1Junction (95) */
+ /** @name XcmV1Junction (96) */
export interface XcmV1Junction extends Enum {
readonly isParachain: boolean;
readonly asParachain: Compact<u32>;
@@ -723,7 +749,7 @@
readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
}
- /** @name XcmVersionedXcm (96) */
+ /** @name XcmVersionedXcm (97) */
export interface XcmVersionedXcm extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0Xcm;
@@ -734,7 +760,7 @@
readonly type: 'V0' | 'V1' | 'V2';
}
- /** @name XcmV0Xcm (97) */
+ /** @name XcmV0Xcm (98) */
export interface XcmV0Xcm extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: {
@@ -797,7 +823,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
}
- /** @name XcmV0MultiAsset (99) */
+ /** @name XcmV0MultiAsset (100) */
export interface XcmV0MultiAsset extends Enum {
readonly isNone: boolean;
readonly isAll: boolean;
@@ -842,7 +868,7 @@
readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';
}
- /** @name XcmV1MultiassetAssetInstance (100) */
+ /** @name XcmV1MultiassetAssetInstance (101) */
export interface XcmV1MultiassetAssetInstance extends Enum {
readonly isUndefined: boolean;
readonly isIndex: boolean;
@@ -860,7 +886,7 @@
readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';
}
- /** @name XcmV0Order (104) */
+ /** @name XcmV0Order (105) */
export interface XcmV0Order extends Enum {
readonly isNull: boolean;
readonly isDepositAsset: boolean;
@@ -908,14 +934,14 @@
readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
}
- /** @name XcmV0Response (106) */
+ /** @name XcmV0Response (107) */
export interface XcmV0Response extends Enum {
readonly isAssets: boolean;
readonly asAssets: Vec<XcmV0MultiAsset>;
readonly type: 'Assets';
}
- /** @name XcmV0OriginKind (107) */
+ /** @name XcmV0OriginKind (108) */
export interface XcmV0OriginKind extends Enum {
readonly isNative: boolean;
readonly isSovereignAccount: boolean;
@@ -924,12 +950,12 @@
readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';
}
- /** @name XcmDoubleEncoded (108) */
+ /** @name XcmDoubleEncoded (109) */
export interface XcmDoubleEncoded extends Struct {
readonly encoded: Bytes;
}
- /** @name XcmV1Xcm (109) */
+ /** @name XcmV1Xcm (110) */
export interface XcmV1Xcm extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: {
@@ -998,16 +1024,16 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
}
- /** @name XcmV1MultiassetMultiAssets (110) */
+ /** @name XcmV1MultiassetMultiAssets (111) */
export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}
- /** @name XcmV1MultiAsset (112) */
+ /** @name XcmV1MultiAsset (113) */
export interface XcmV1MultiAsset extends Struct {
readonly id: XcmV1MultiassetAssetId;
readonly fun: XcmV1MultiassetFungibility;
}
- /** @name XcmV1MultiassetAssetId (113) */
+ /** @name XcmV1MultiassetAssetId (114) */
export interface XcmV1MultiassetAssetId extends Enum {
readonly isConcrete: boolean;
readonly asConcrete: XcmV1MultiLocation;
@@ -1016,7 +1042,7 @@
readonly type: 'Concrete' | 'Abstract';
}
- /** @name XcmV1MultiassetFungibility (114) */
+ /** @name XcmV1MultiassetFungibility (115) */
export interface XcmV1MultiassetFungibility extends Enum {
readonly isFungible: boolean;
readonly asFungible: Compact<u128>;
@@ -1025,7 +1051,7 @@
readonly type: 'Fungible' | 'NonFungible';
}
- /** @name XcmV1Order (116) */
+ /** @name XcmV1Order (117) */
export interface XcmV1Order extends Enum {
readonly isNoop: boolean;
readonly isDepositAsset: boolean;
@@ -1075,7 +1101,7 @@
readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
}
- /** @name XcmV1MultiassetMultiAssetFilter (117) */
+ /** @name XcmV1MultiassetMultiAssetFilter (118) */
export interface XcmV1MultiassetMultiAssetFilter extends Enum {
readonly isDefinite: boolean;
readonly asDefinite: XcmV1MultiassetMultiAssets;
@@ -1084,7 +1110,7 @@
readonly type: 'Definite' | 'Wild';
}
- /** @name XcmV1MultiassetWildMultiAsset (118) */
+ /** @name XcmV1MultiassetWildMultiAsset (119) */
export interface XcmV1MultiassetWildMultiAsset extends Enum {
readonly isAll: boolean;
readonly isAllOf: boolean;
@@ -1095,14 +1121,14 @@
readonly type: 'All' | 'AllOf';
}
- /** @name XcmV1MultiassetWildFungibility (119) */
+ /** @name XcmV1MultiassetWildFungibility (120) */
export interface XcmV1MultiassetWildFungibility extends Enum {
readonly isFungible: boolean;
readonly isNonFungible: boolean;
readonly type: 'Fungible' | 'NonFungible';
}
- /** @name XcmV1Response (121) */
+ /** @name XcmV1Response (122) */
export interface XcmV1Response extends Enum {
readonly isAssets: boolean;
readonly asAssets: XcmV1MultiassetMultiAssets;
@@ -1111,10 +1137,10 @@
readonly type: 'Assets' | 'Version';
}
- /** @name XcmV2Xcm (122) */
+ /** @name XcmV2Xcm (123) */
export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}
- /** @name XcmV2Instruction (124) */
+ /** @name XcmV2Instruction (125) */
export interface XcmV2Instruction extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;
@@ -1234,7 +1260,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';
}
- /** @name XcmV2Response (125) */
+ /** @name XcmV2Response (126) */
export interface XcmV2Response extends Enum {
readonly isNull: boolean;
readonly isAssets: boolean;
@@ -1246,7 +1272,7 @@
readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';
}
- /** @name XcmV2TraitsError (128) */
+ /** @name XcmV2TraitsError (129) */
export interface XcmV2TraitsError extends Enum {
readonly isOverflow: boolean;
readonly isUnimplemented: boolean;
@@ -1279,7 +1305,7 @@
readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';
}
- /** @name XcmV2WeightLimit (129) */
+ /** @name XcmV2WeightLimit (130) */
export interface XcmV2WeightLimit extends Enum {
readonly isUnlimited: boolean;
readonly isLimited: boolean;
@@ -1287,7 +1313,7 @@
readonly type: 'Unlimited' | 'Limited';
}
- /** @name XcmVersionedMultiAssets (130) */
+ /** @name XcmVersionedMultiAssets (131) */
export interface XcmVersionedMultiAssets extends Enum {
readonly isV0: boolean;
readonly asV0: Vec<XcmV0MultiAsset>;
@@ -1296,10 +1322,10 @@
readonly type: 'V0' | 'V1';
}
- /** @name CumulusPalletXcmCall (145) */
+ /** @name CumulusPalletXcmCall (146) */
export type CumulusPalletXcmCall = Null;
- /** @name CumulusPalletDmpQueueCall (146) */
+ /** @name CumulusPalletDmpQueueCall (147) */
export interface CumulusPalletDmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -1309,7 +1335,7 @@
readonly type: 'ServiceOverweight';
}
- /** @name PalletInflationCall (147) */
+ /** @name PalletInflationCall (148) */
export interface PalletInflationCall extends Enum {
readonly isStartInflation: boolean;
readonly asStartInflation: {
@@ -1318,7 +1344,7 @@
readonly type: 'StartInflation';
}
- /** @name PalletUniqueCall (148) */
+ /** @name PalletUniqueCall (149) */
export interface PalletUniqueCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -1474,7 +1500,7 @@
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';
}
- /** @name UpDataStructsCollectionMode (154) */
+ /** @name UpDataStructsCollectionMode (155) */
export interface UpDataStructsCollectionMode extends Enum {
readonly isNft: boolean;
readonly isFungible: boolean;
@@ -1483,7 +1509,7 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateCollectionData (155) */
+ /** @name UpDataStructsCreateCollectionData (156) */
export interface UpDataStructsCreateCollectionData extends Struct {
readonly mode: UpDataStructsCollectionMode;
readonly access: Option<UpDataStructsAccessMode>;
@@ -1499,29 +1525,21 @@
readonly metaUpdatePermission: Option<UpDataStructsMetaUpdatePermission>;
}
- /** @name UpDataStructsAccessMode (157) */
+ /** @name UpDataStructsAccessMode (158) */
export interface UpDataStructsAccessMode extends Enum {
readonly isNormal: boolean;
readonly isAllowList: boolean;
readonly type: 'Normal' | 'AllowList';
}
- /** @name UpDataStructsSchemaVersion (160) */
+ /** @name UpDataStructsSchemaVersion (161) */
export interface UpDataStructsSchemaVersion extends Enum {
readonly isImageURL: boolean;
readonly isUnique: boolean;
readonly type: 'ImageURL' | 'Unique';
}
- /** @name UpDataStructsSponsoringRateLimit */
- export interface UpDataStructsSponsoringRateLimit extends Enum {
- readonly isSponsoringDisabled: boolean;
- readonly isBlocks: boolean;
- readonly asBlocks: u32;
- readonly type: 'SponsoringDisabled' | 'Blocks';
- }
-
- /** @name UpDataStructsCollectionLimits (163) */
+ /** @name UpDataStructsCollectionLimits (164) */
export interface UpDataStructsCollectionLimits extends Struct {
readonly accountTokenOwnershipLimit: Option<u32>;
readonly sponsoredDataSize: Option<u32>;
@@ -1534,7 +1552,15 @@
readonly transfersEnabled: Option<bool>;
}
- /** @name UpDataStructsMetaUpdatePermission (169) */
+ /** @name UpDataStructsSponsoringRateLimit (166) */
+ export interface UpDataStructsSponsoringRateLimit extends Enum {
+ readonly isSponsoringDisabled: boolean;
+ readonly isBlocks: boolean;
+ readonly asBlocks: u32;
+ readonly type: 'SponsoringDisabled' | 'Blocks';
+ }
+
+ /** @name UpDataStructsMetaUpdatePermission (170) */
export interface UpDataStructsMetaUpdatePermission extends Enum {
readonly isItemOwner: boolean;
readonly isAdmin: boolean;
@@ -1542,7 +1568,7 @@
readonly type: 'ItemOwner' | 'Admin' | 'None';
}
- /** @name PalletCommonAccountBasicCrossAccountIdRepr (171) */
+ /** @name PalletCommonAccountBasicCrossAccountIdRepr (172) */
export interface PalletCommonAccountBasicCrossAccountIdRepr extends Enum {
readonly isSubstrate: boolean;
readonly asSubstrate: AccountId32;
@@ -1551,7 +1577,7 @@
readonly type: 'Substrate' | 'Ethereum';
}
- /** @name UpDataStructsCreateItemData (173) */
+ /** @name UpDataStructsCreateItemData (174) */
export interface UpDataStructsCreateItemData extends Enum {
readonly isNft: boolean;
readonly asNft: UpDataStructsCreateNftData;
@@ -1562,28 +1588,28 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateNftData (174) */
+ /** @name UpDataStructsCreateNftData (175) */
export interface UpDataStructsCreateNftData extends Struct {
readonly constData: Bytes;
readonly variableData: Bytes;
}
- /** @name UpDataStructsCreateFungibleData (176) */
+ /** @name UpDataStructsCreateFungibleData (177) */
export interface UpDataStructsCreateFungibleData extends Struct {
readonly value: u128;
}
- /** @name UpDataStructsCreateReFungibleData (177) */
+ /** @name UpDataStructsCreateReFungibleData (178) */
export interface UpDataStructsCreateReFungibleData extends Struct {
readonly constData: Bytes;
readonly variableData: Bytes;
readonly pieces: u128;
}
- /** @name PalletTemplateTransactionPaymentCall (180) */
+ /** @name PalletTemplateTransactionPaymentCall (181) */
export type PalletTemplateTransactionPaymentCall = Null;
- /** @name PalletEvmCall (181) */
+ /** @name PalletEvmCall (182) */
export interface PalletEvmCall extends Enum {
readonly isWithdraw: boolean;
readonly asWithdraw: {
@@ -1628,7 +1654,7 @@
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
}
- /** @name PalletEthereumCall (187) */
+ /** @name PalletEthereumCall (188) */
export interface PalletEthereumCall extends Enum {
readonly isTransact: boolean;
readonly asTransact: {
@@ -1637,7 +1663,7 @@
readonly type: 'Transact';
}
- /** @name EthereumTransactionTransactionV2 (188) */
+ /** @name EthereumTransactionTransactionV2 (189) */
export interface EthereumTransactionTransactionV2 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -1648,7 +1674,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumTransactionLegacyTransaction (189) */
+ /** @name EthereumTransactionLegacyTransaction (190) */
export interface EthereumTransactionLegacyTransaction extends Struct {
readonly nonce: U256;
readonly gasPrice: U256;
@@ -1659,7 +1685,7 @@
readonly signature: EthereumTransactionTransactionSignature;
}
- /** @name EthereumTransactionTransactionAction (190) */
+ /** @name EthereumTransactionTransactionAction (191) */
export interface EthereumTransactionTransactionAction extends Enum {
readonly isCall: boolean;
readonly asCall: H160;
@@ -1667,14 +1693,14 @@
readonly type: 'Call' | 'Create';
}
- /** @name EthereumTransactionTransactionSignature (191) */
+ /** @name EthereumTransactionTransactionSignature (192) */
export interface EthereumTransactionTransactionSignature extends Struct {
readonly v: u64;
readonly r: H256;
readonly s: H256;
}
- /** @name EthereumTransactionEip2930Transaction (193) */
+ /** @name EthereumTransactionEip2930Transaction (194) */
export interface EthereumTransactionEip2930Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -1689,13 +1715,13 @@
readonly s: H256;
}
- /** @name EthereumTransactionAccessListItem (195) */
+ /** @name EthereumTransactionAccessListItem (196) */
export interface EthereumTransactionAccessListItem extends Struct {
readonly address: H160;
readonly slots: Vec<H256>;
}
- /** @name EthereumTransactionEip1559Transaction (196) */
+ /** @name EthereumTransactionEip1559Transaction (197) */
export interface EthereumTransactionEip1559Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -1711,7 +1737,7 @@
readonly s: H256;
}
- /** @name PalletEvmMigrationCall (197) */
+ /** @name PalletEvmMigrationCall (198) */
export interface PalletEvmMigrationCall extends Enum {
readonly isBegin: boolean;
readonly asBegin: {
@@ -1730,7 +1756,7 @@
readonly type: 'Begin' | 'SetData' | 'Finish';
}
- /** @name PalletSudoEvent (200) */
+ /** @name PalletSudoEvent (201) */
export interface PalletSudoEvent extends Enum {
readonly isSudid: boolean;
readonly asSudid: {
@@ -1747,16 +1773,13 @@
readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
}
- /** @name SpRuntimeDispatchError (202) */
+ /** @name SpRuntimeDispatchError (203) */
export interface SpRuntimeDispatchError extends Enum {
readonly isOther: boolean;
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;
@@ -1767,7 +1790,13 @@
readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic';
}
- /** @name SpRuntimeTokenError (203) */
+ /** @name SpRuntimeModuleError (204) */
+ export interface SpRuntimeModuleError extends Struct {
+ readonly index: u8;
+ readonly error: u8;
+ }
+
+ /** @name SpRuntimeTokenError (205) */
export interface SpRuntimeTokenError extends Enum {
readonly isNoFunds: boolean;
readonly isWouldDie: boolean;
@@ -1779,7 +1808,7 @@
readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';
}
- /** @name SpRuntimeArithmeticError (204) */
+ /** @name SpRuntimeArithmeticError (206) */
export interface SpRuntimeArithmeticError extends Enum {
readonly isUnderflow: boolean;
readonly isOverflow: boolean;
@@ -1787,13 +1816,13 @@
readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
}
- /** @name PalletSudoError (205) */
+ /** @name PalletSudoError (207) */
export interface PalletSudoError extends Enum {
readonly isRequireSudo: boolean;
readonly type: 'RequireSudo';
}
- /** @name FrameSystemAccountInfo (206) */
+ /** @name FrameSystemAccountInfo (208) */
export interface FrameSystemAccountInfo extends Struct {
readonly nonce: u32;
readonly consumers: u32;
@@ -1802,19 +1831,19 @@
readonly data: PalletBalancesAccountData;
}
- /** @name FrameSupportWeightsPerDispatchClassU64 (207) */
+ /** @name FrameSupportWeightsPerDispatchClassU64 (209) */
export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {
readonly normal: u64;
readonly operational: u64;
readonly mandatory: u64;
}
- /** @name SpRuntimeDigest (208) */
+ /** @name SpRuntimeDigest (210) */
export interface SpRuntimeDigest extends Struct {
readonly logs: Vec<SpRuntimeDigestDigestItem>;
}
- /** @name SpRuntimeDigestDigestItem (210) */
+ /** @name SpRuntimeDigestDigestItem (212) */
export interface SpRuntimeDigestDigestItem extends Enum {
readonly isOther: boolean;
readonly asOther: Bytes;
@@ -1828,14 +1857,14 @@
readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';
}
- /** @name FrameSystemEventRecord (212) */
+ /** @name FrameSystemEventRecord (214) */
export interface FrameSystemEventRecord extends Struct {
readonly phase: FrameSystemPhase;
readonly event: Event;
readonly topics: Vec<H256>;
}
- /** @name FrameSystemEvent (214) */
+ /** @name FrameSystemEvent (216) */
export interface FrameSystemEvent extends Enum {
readonly isExtrinsicSuccess: boolean;
readonly asExtrinsicSuccess: {
@@ -1863,14 +1892,14 @@
readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
}
- /** @name FrameSupportWeightsDispatchInfo (215) */
+ /** @name FrameSupportWeightsDispatchInfo (217) */
export interface FrameSupportWeightsDispatchInfo extends Struct {
readonly weight: u64;
readonly class: FrameSupportWeightsDispatchClass;
readonly paysFee: FrameSupportWeightsPays;
}
- /** @name FrameSupportWeightsDispatchClass (216) */
+ /** @name FrameSupportWeightsDispatchClass (218) */
export interface FrameSupportWeightsDispatchClass extends Enum {
readonly isNormal: boolean;
readonly isOperational: boolean;
@@ -1878,14 +1907,14 @@
readonly type: 'Normal' | 'Operational' | 'Mandatory';
}
- /** @name FrameSupportWeightsPays (217) */
+ /** @name FrameSupportWeightsPays (219) */
export interface FrameSupportWeightsPays extends Enum {
readonly isYes: boolean;
readonly isNo: boolean;
readonly type: 'Yes' | 'No';
}
- /** @name OrmlVestingModuleEvent (218) */
+ /** @name OrmlVestingModuleEvent (220) */
export interface OrmlVestingModuleEvent extends Enum {
readonly isVestingScheduleAdded: boolean;
readonly asVestingScheduleAdded: {
@@ -1905,7 +1934,7 @@
readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
}
- /** @name CumulusPalletXcmpQueueEvent (219) */
+ /** @name CumulusPalletXcmpQueueEvent (221) */
export interface CumulusPalletXcmpQueueEvent extends Enum {
readonly isSuccess: boolean;
readonly asSuccess: Option<H256>;
@@ -1926,7 +1955,7 @@
readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
}
- /** @name PalletXcmEvent (220) */
+ /** @name PalletXcmEvent (222) */
export interface PalletXcmEvent extends Enum {
readonly isAttempted: boolean;
readonly asAttempted: XcmV2TraitsOutcome;
@@ -1963,7 +1992,7 @@
readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
}
- /** @name XcmV2TraitsOutcome (221) */
+ /** @name XcmV2TraitsOutcome (223) */
export interface XcmV2TraitsOutcome extends Enum {
readonly isComplete: boolean;
readonly asComplete: u64;
@@ -1974,7 +2003,7 @@
readonly type: 'Complete' | 'Incomplete' | 'Error';
}
- /** @name CumulusPalletXcmEvent (223) */
+ /** @name CumulusPalletXcmEvent (225) */
export interface CumulusPalletXcmEvent extends Enum {
readonly isInvalidFormat: boolean;
readonly asInvalidFormat: U8aFixed;
@@ -1985,7 +2014,7 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
}
- /** @name CumulusPalletDmpQueueEvent (224) */
+ /** @name CumulusPalletDmpQueueEvent (226) */
export interface CumulusPalletDmpQueueEvent extends Enum {
readonly isInvalidFormat: boolean;
readonly asInvalidFormat: U8aFixed;
@@ -2002,7 +2031,7 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
}
- /** @name PalletUniqueRawEvent (225) */
+ /** @name PalletUniqueRawEvent (227) */
export interface PalletUniqueRawEvent extends Enum {
readonly isCollectionSponsorRemoved: boolean;
readonly asCollectionSponsorRemoved: u32;
@@ -2037,7 +2066,7 @@
readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet' | 'VariableOnChainSchemaSet';
}
- /** @name PalletCommonEvent (226) */
+ /** @name PalletCommonEvent (228) */
export interface PalletCommonEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -2054,7 +2083,7 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved';
}
- /** @name PalletEvmEvent (227) */
+ /** @name PalletEvmEvent (229) */
export interface PalletEvmEvent extends Enum {
readonly isLog: boolean;
readonly asLog: EthereumLog;
@@ -2073,21 +2102,21 @@
readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';
}
- /** @name EthereumLog (228) */
+ /** @name EthereumLog (230) */
export interface EthereumLog extends Struct {
readonly address: H160;
readonly topics: Vec<H256>;
readonly data: Bytes;
}
- /** @name PalletEthereumEvent (229) */
+ /** @name PalletEthereumEvent (231) */
export interface PalletEthereumEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;
readonly type: 'Executed';
}
- /** @name EvmCoreErrorExitReason (230) */
+ /** @name EvmCoreErrorExitReason (232) */
export interface EvmCoreErrorExitReason extends Enum {
readonly isSucceed: boolean;
readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -2100,7 +2129,7 @@
readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
}
- /** @name EvmCoreErrorExitSucceed (231) */
+ /** @name EvmCoreErrorExitSucceed (233) */
export interface EvmCoreErrorExitSucceed extends Enum {
readonly isStopped: boolean;
readonly isReturned: boolean;
@@ -2108,7 +2137,7 @@
readonly type: 'Stopped' | 'Returned' | 'Suicided';
}
- /** @name EvmCoreErrorExitError (232) */
+ /** @name EvmCoreErrorExitError (234) */
export interface EvmCoreErrorExitError extends Enum {
readonly isStackUnderflow: boolean;
readonly isStackOverflow: boolean;
@@ -2129,13 +2158,13 @@
readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'InvalidCode' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other';
}
- /** @name EvmCoreErrorExitRevert (235) */
+ /** @name EvmCoreErrorExitRevert (237) */
export interface EvmCoreErrorExitRevert extends Enum {
readonly isReverted: boolean;
readonly type: 'Reverted';
}
- /** @name EvmCoreErrorExitFatal (236) */
+ /** @name EvmCoreErrorExitFatal (238) */
export interface EvmCoreErrorExitFatal extends Enum {
readonly isNotSupported: boolean;
readonly isUnhandledInterrupt: boolean;
@@ -2146,7 +2175,7 @@
readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
}
- /** @name FrameSystemPhase (237) */
+ /** @name FrameSystemPhase (239) */
export interface FrameSystemPhase extends Enum {
readonly isApplyExtrinsic: boolean;
readonly asApplyExtrinsic: u32;
@@ -2155,27 +2184,27 @@
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
}
- /** @name FrameSystemLastRuntimeUpgradeInfo (239) */
+ /** @name FrameSystemLastRuntimeUpgradeInfo (241) */
export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
readonly specVersion: Compact<u32>;
readonly specName: Text;
}
- /** @name FrameSystemLimitsBlockWeights (240) */
+ /** @name FrameSystemLimitsBlockWeights (242) */
export interface FrameSystemLimitsBlockWeights extends Struct {
readonly baseBlock: u64;
readonly maxBlock: u64;
readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
}
- /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (241) */
+ /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (243) */
export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
readonly normal: FrameSystemLimitsWeightsPerClass;
readonly operational: FrameSystemLimitsWeightsPerClass;
readonly mandatory: FrameSystemLimitsWeightsPerClass;
}
- /** @name FrameSystemLimitsWeightsPerClass (242) */
+ /** @name FrameSystemLimitsWeightsPerClass (244) */
export interface FrameSystemLimitsWeightsPerClass extends Struct {
readonly baseExtrinsic: u64;
readonly maxExtrinsic: Option<u64>;
@@ -2183,25 +2212,25 @@
readonly reserved: Option<u64>;
}
- /** @name FrameSystemLimitsBlockLength (244) */
+ /** @name FrameSystemLimitsBlockLength (246) */
export interface FrameSystemLimitsBlockLength extends Struct {
readonly max: FrameSupportWeightsPerDispatchClassU32;
}
- /** @name FrameSupportWeightsPerDispatchClassU32 (245) */
+ /** @name FrameSupportWeightsPerDispatchClassU32 (247) */
export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
readonly normal: u32;
readonly operational: u32;
readonly mandatory: u32;
}
- /** @name FrameSupportWeightsRuntimeDbWeight (246) */
+ /** @name FrameSupportWeightsRuntimeDbWeight (248) */
export interface FrameSupportWeightsRuntimeDbWeight extends Struct {
readonly read: u64;
readonly write: u64;
}
- /** @name SpVersionRuntimeVersion (247) */
+ /** @name SpVersionRuntimeVersion (249) */
export interface SpVersionRuntimeVersion extends Struct {
readonly specName: Text;
readonly implName: Text;
@@ -2213,7 +2242,7 @@
readonly stateVersion: u8;
}
- /** @name FrameSystemError (251) */
+ /** @name FrameSystemError (253) */
export interface FrameSystemError extends Enum {
readonly isInvalidSpecName: boolean;
readonly isSpecVersionNeedsToIncrease: boolean;
@@ -2224,7 +2253,7 @@
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
}
- /** @name OrmlVestingModuleError (253) */
+ /** @name OrmlVestingModuleError (255) */
export interface OrmlVestingModuleError extends Enum {
readonly isZeroVestingPeriod: boolean;
readonly isZeroVestingPeriodCount: boolean;
@@ -2235,21 +2264,21 @@
readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
}
- /** @name CumulusPalletXcmpQueueInboundChannelDetails (255) */
+ /** @name CumulusPalletXcmpQueueInboundChannelDetails (257) */
export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
readonly sender: u32;
readonly state: CumulusPalletXcmpQueueInboundState;
readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
}
- /** @name CumulusPalletXcmpQueueInboundState (256) */
+ /** @name CumulusPalletXcmpQueueInboundState (258) */
export interface CumulusPalletXcmpQueueInboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name PolkadotParachainPrimitivesXcmpMessageFormat (259) */
+ /** @name PolkadotParachainPrimitivesXcmpMessageFormat (261) */
export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
readonly isConcatenatedVersionedXcm: boolean;
readonly isConcatenatedEncodedBlob: boolean;
@@ -2257,7 +2286,7 @@
readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
}
- /** @name CumulusPalletXcmpQueueOutboundChannelDetails (262) */
+ /** @name CumulusPalletXcmpQueueOutboundChannelDetails (264) */
export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
readonly recipient: u32;
readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -2266,14 +2295,14 @@
readonly lastIndex: u16;
}
- /** @name CumulusPalletXcmpQueueOutboundState (263) */
+ /** @name CumulusPalletXcmpQueueOutboundState (265) */
export interface CumulusPalletXcmpQueueOutboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name CumulusPalletXcmpQueueQueueConfigData (265) */
+ /** @name CumulusPalletXcmpQueueQueueConfigData (267) */
export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
readonly suspendThreshold: u32;
readonly dropThreshold: u32;
@@ -2283,7 +2312,7 @@
readonly xcmpMaxIndividualWeight: u64;
}
- /** @name CumulusPalletXcmpQueueError (267) */
+ /** @name CumulusPalletXcmpQueueError (269) */
export interface CumulusPalletXcmpQueueError extends Enum {
readonly isFailedToSend: boolean;
readonly isBadXcmOrigin: boolean;
@@ -2293,7 +2322,7 @@
readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
}
- /** @name PalletXcmError (268) */
+ /** @name PalletXcmError (270) */
export interface PalletXcmError extends Enum {
readonly isUnreachable: boolean;
readonly isSendFailure: boolean;
@@ -2311,29 +2340,29 @@
readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
}
- /** @name CumulusPalletXcmError (269) */
+ /** @name CumulusPalletXcmError (271) */
export type CumulusPalletXcmError = Null;
- /** @name CumulusPalletDmpQueueConfigData (270) */
+ /** @name CumulusPalletDmpQueueConfigData (272) */
export interface CumulusPalletDmpQueueConfigData extends Struct {
readonly maxIndividual: u64;
}
- /** @name CumulusPalletDmpQueuePageIndexData (271) */
+ /** @name CumulusPalletDmpQueuePageIndexData (273) */
export interface CumulusPalletDmpQueuePageIndexData extends Struct {
readonly beginUsed: u32;
readonly endUsed: u32;
readonly overweightCount: u64;
}
- /** @name CumulusPalletDmpQueueError (274) */
+ /** @name CumulusPalletDmpQueueError (276) */
export interface CumulusPalletDmpQueueError extends Enum {
readonly isUnknown: boolean;
readonly isOverLimit: boolean;
readonly type: 'Unknown' | 'OverLimit';
}
- /** @name PalletUniqueError (278) */
+ /** @name PalletUniqueError (280) */
export interface PalletUniqueError extends Enum {
readonly isCollectionDecimalPointLimitExceeded: boolean;
readonly isConfirmUnsetSponsorFail: boolean;
@@ -2341,7 +2370,7 @@
readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';
}
- /** @name UpDataStructsCollection (279) */
+ /** @name UpDataStructsCollection (281) */
export interface UpDataStructsCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -2359,7 +2388,7 @@
readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;
}
- /** @name UpDataStructsSponsorshipState (280) */
+ /** @name UpDataStructsSponsorshipState (282) */
export interface UpDataStructsSponsorshipState extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -2369,14 +2398,14 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name UpDataStructsCollectionStats (283) */
+ /** @name UpDataStructsCollectionStats (285) */
export interface UpDataStructsCollectionStats extends Struct {
readonly created: u32;
readonly destroyed: u32;
readonly alive: u32;
}
- /** @name PalletCommonError (284) */
+ /** @name PalletCommonError (286) */
export interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -2404,7 +2433,7 @@
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';
}
- /** @name PalletFungibleError (286) */
+ /** @name PalletFungibleError (288) */
export interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -2412,34 +2441,34 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData';
}
- /** @name PalletRefungibleItemData (287) */
+ /** @name PalletRefungibleItemData (289) */
export interface PalletRefungibleItemData extends Struct {
readonly constData: Bytes;
readonly variableData: Bytes;
}
- /** @name PalletRefungibleError (291) */
+ /** @name PalletRefungibleError (293) */
export interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces';
}
- /** @name PalletNonfungibleItemData (292) */
+ /** @name PalletNonfungibleItemData (294) */
export interface PalletNonfungibleItemData extends Struct {
readonly constData: Bytes;
readonly variableData: Bytes;
readonly owner: PalletCommonAccountBasicCrossAccountIdRepr;
}
- /** @name PalletNonfungibleError (293) */
+ /** @name PalletNonfungibleError (295) */
export interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';
}
- /** @name PalletEvmError (295) */
+ /** @name PalletEvmError (297) */
export interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -2450,7 +2479,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
}
- /** @name FpRpcTransactionStatus (298) */
+ /** @name FpRpcTransactionStatus (300) */
export interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -2461,10 +2490,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (301) */
+ /** @name EthbloomBloom (303) */
export interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (303) */
+ /** @name EthereumReceiptReceiptV3 (305) */
export interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -2475,7 +2504,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (304) */
+ /** @name EthereumReceiptEip658ReceiptData (306) */
export interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -2483,14 +2512,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (305) */
+ /** @name EthereumBlock (307) */
export interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (306) */
+ /** @name EthereumHeader (308) */
export interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -2509,24 +2538,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (307) */
+ /** @name EthereumTypesHashH64 (309) */
export interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (312) */
+ /** @name PalletEthereumError (314) */
export interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (313) */
+ /** @name PalletEvmCoderSubstrateError (315) */
export interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (314) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (316) */
export interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -2534,20 +2563,20 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (316) */
+ /** @name PalletEvmContractHelpersError (318) */
export interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly type: 'NoPermission';
}
- /** @name PalletEvmMigrationError (317) */
+ /** @name PalletEvmMigrationError (319) */
export interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
}
- /** @name SpRuntimeMultiSignature (319) */
+ /** @name SpRuntimeMultiSignature (321) */
export interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -2558,31 +2587,31 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (320) */
+ /** @name SpCoreEd25519Signature (322) */
export interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (322) */
+ /** @name SpCoreSr25519Signature (324) */
export interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (323) */
+ /** @name SpCoreEcdsaSignature (325) */
export interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (326) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (328) */
export type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (327) */
+ /** @name FrameSystemExtensionsCheckGenesis (329) */
export type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (330) */
+ /** @name FrameSystemExtensionsCheckNonce (332) */
export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (331) */
+ /** @name FrameSystemExtensionsCheckWeight (333) */
export type FrameSystemExtensionsCheckWeight = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (332) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (334) */
export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name UniqueRuntimeRuntime (333) */
+ /** @name UniqueRuntimeRuntime (335) */
export type UniqueRuntimeRuntime = Null;
} // declare module
tests/src/interfaces/unique/types.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { BTreeMap, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';5import type { ITuple } from '@polkadot/types-codec/types';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';7import type { Event } from '@polkadot/types/interfaces/system';89/** @name CumulusPalletDmpQueueCall */10export interface CumulusPalletDmpQueueCall extends Enum {11 readonly isServiceOverweight: boolean;12 readonly asServiceOverweight: {13 readonly index: u64;14 readonly weightLimit: u64;15 } & Struct;16 readonly type: 'ServiceOverweight';17}1819/** @name CumulusPalletDmpQueueConfigData */20export interface CumulusPalletDmpQueueConfigData extends Struct {21 readonly maxIndividual: u64;22}2324/** @name CumulusPalletDmpQueueError */25export interface CumulusPalletDmpQueueError extends Enum {26 readonly isUnknown: boolean;27 readonly isOverLimit: boolean;28 readonly type: 'Unknown' | 'OverLimit';29}3031/** @name CumulusPalletDmpQueueEvent */32export interface CumulusPalletDmpQueueEvent extends Enum {33 readonly isInvalidFormat: boolean;34 readonly asInvalidFormat: U8aFixed;35 readonly isUnsupportedVersion: boolean;36 readonly asUnsupportedVersion: U8aFixed;37 readonly isExecutedDownward: boolean;38 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;39 readonly isWeightExhausted: boolean;40 readonly asWeightExhausted: ITuple<[U8aFixed, u64, u64]>;41 readonly isOverweightEnqueued: boolean;42 readonly asOverweightEnqueued: ITuple<[U8aFixed, u64, u64]>;43 readonly isOverweightServiced: boolean;44 readonly asOverweightServiced: ITuple<[u64, u64]>;45 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';46}4748/** @name CumulusPalletDmpQueuePageIndexData */49export interface CumulusPalletDmpQueuePageIndexData extends Struct {50 readonly beginUsed: u32;51 readonly endUsed: u32;52 readonly overweightCount: u64;53}5455/** @name CumulusPalletParachainSystemCall */56export interface CumulusPalletParachainSystemCall extends Enum {57 readonly isSetValidationData: boolean;58 readonly asSetValidationData: {59 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;60 } & Struct;61 readonly isSudoSendUpwardMessage: boolean;62 readonly asSudoSendUpwardMessage: {63 readonly message: Bytes;64 } & Struct;65 readonly isAuthorizeUpgrade: boolean;66 readonly asAuthorizeUpgrade: {67 readonly codeHash: H256;68 } & Struct;69 readonly isEnactAuthorizedUpgrade: boolean;70 readonly asEnactAuthorizedUpgrade: {71 readonly code: Bytes;72 } & Struct;73 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';74}7576/** @name CumulusPalletParachainSystemError */77export interface CumulusPalletParachainSystemError extends Enum {78 readonly isOverlappingUpgrades: boolean;79 readonly isProhibitedByPolkadot: boolean;80 readonly isTooBig: boolean;81 readonly isValidationDataNotAvailable: boolean;82 readonly isHostConfigurationNotAvailable: boolean;83 readonly isNotScheduled: boolean;84 readonly isNothingAuthorized: boolean;85 readonly isUnauthorized: boolean;86 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';87}8889/** @name CumulusPalletParachainSystemEvent */90export interface CumulusPalletParachainSystemEvent extends Enum {91 readonly isValidationFunctionStored: boolean;92 readonly isValidationFunctionApplied: boolean;93 readonly asValidationFunctionApplied: u32;94 readonly isValidationFunctionDiscarded: boolean;95 readonly isUpgradeAuthorized: boolean;96 readonly asUpgradeAuthorized: H256;97 readonly isDownwardMessagesReceived: boolean;98 readonly asDownwardMessagesReceived: u32;99 readonly isDownwardMessagesProcessed: boolean;100 readonly asDownwardMessagesProcessed: ITuple<[u64, H256]>;101 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';102}103104/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */105export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {106 readonly dmqMqcHead: H256;107 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;108 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV1AbridgedHrmpChannel]>>;109 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV1AbridgedHrmpChannel]>>;110}111112/** @name CumulusPalletXcmCall */113export interface CumulusPalletXcmCall extends Null {}114115/** @name CumulusPalletXcmError */116export interface CumulusPalletXcmError extends Null {}117118/** @name CumulusPalletXcmEvent */119export interface CumulusPalletXcmEvent extends Enum {120 readonly isInvalidFormat: boolean;121 readonly asInvalidFormat: U8aFixed;122 readonly isUnsupportedVersion: boolean;123 readonly asUnsupportedVersion: U8aFixed;124 readonly isExecutedDownward: boolean;125 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;126 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';127}128129/** @name CumulusPalletXcmpQueueCall */130export interface CumulusPalletXcmpQueueCall extends Enum {131 readonly isServiceOverweight: boolean;132 readonly asServiceOverweight: {133 readonly index: u64;134 readonly weightLimit: u64;135 } & Struct;136 readonly type: 'ServiceOverweight';137}138139/** @name CumulusPalletXcmpQueueError */140export interface CumulusPalletXcmpQueueError extends Enum {141 readonly isFailedToSend: boolean;142 readonly isBadXcmOrigin: boolean;143 readonly isBadXcm: boolean;144 readonly isBadOverweightIndex: boolean;145 readonly isWeightOverLimit: boolean;146 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';147}148149/** @name CumulusPalletXcmpQueueEvent */150export interface CumulusPalletXcmpQueueEvent extends Enum {151 readonly isSuccess: boolean;152 readonly asSuccess: Option<H256>;153 readonly isFail: boolean;154 readonly asFail: ITuple<[Option<H256>, XcmV2TraitsError]>;155 readonly isBadVersion: boolean;156 readonly asBadVersion: Option<H256>;157 readonly isBadFormat: boolean;158 readonly asBadFormat: Option<H256>;159 readonly isUpwardMessageSent: boolean;160 readonly asUpwardMessageSent: Option<H256>;161 readonly isXcmpMessageSent: boolean;162 readonly asXcmpMessageSent: Option<H256>;163 readonly isOverweightEnqueued: boolean;164 readonly asOverweightEnqueued: ITuple<[u32, u32, u64, u64]>;165 readonly isOverweightServiced: boolean;166 readonly asOverweightServiced: ITuple<[u64, u64]>;167 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';168}169170/** @name CumulusPalletXcmpQueueInboundChannelDetails */171export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {172 readonly sender: u32;173 readonly state: CumulusPalletXcmpQueueInboundState;174 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;175}176177/** @name CumulusPalletXcmpQueueInboundState */178export interface CumulusPalletXcmpQueueInboundState extends Enum {179 readonly isOk: boolean;180 readonly isSuspended: boolean;181 readonly type: 'Ok' | 'Suspended';182}183184/** @name CumulusPalletXcmpQueueOutboundChannelDetails */185export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {186 readonly recipient: u32;187 readonly state: CumulusPalletXcmpQueueOutboundState;188 readonly signalsExist: bool;189 readonly firstIndex: u16;190 readonly lastIndex: u16;191}192193/** @name CumulusPalletXcmpQueueOutboundState */194export interface CumulusPalletXcmpQueueOutboundState extends Enum {195 readonly isOk: boolean;196 readonly isSuspended: boolean;197 readonly type: 'Ok' | 'Suspended';198}199200/** @name CumulusPalletXcmpQueueQueueConfigData */201export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {202 readonly suspendThreshold: u32;203 readonly dropThreshold: u32;204 readonly resumeThreshold: u32;205 readonly thresholdWeight: u64;206 readonly weightRestrictDecay: u64;207 readonly xcmpMaxIndividualWeight: u64;208}209210/** @name CumulusPrimitivesParachainInherentParachainInherentData */211export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {212 readonly validationData: PolkadotPrimitivesV1PersistedValidationData;213 readonly relayChainState: SpTrieStorageProof;214 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;215 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;216}217218/** @name EthbloomBloom */219export interface EthbloomBloom extends U8aFixed {}220221/** @name EthereumBlock */222export interface EthereumBlock extends Struct {223 readonly header: EthereumHeader;224 readonly transactions: Vec<EthereumTransactionTransactionV2>;225 readonly ommers: Vec<EthereumHeader>;226}227228/** @name EthereumHeader */229export interface EthereumHeader extends Struct {230 readonly parentHash: H256;231 readonly ommersHash: H256;232 readonly beneficiary: H160;233 readonly stateRoot: H256;234 readonly transactionsRoot: H256;235 readonly receiptsRoot: H256;236 readonly logsBloom: EthbloomBloom;237 readonly difficulty: U256;238 readonly number: U256;239 readonly gasLimit: U256;240 readonly gasUsed: U256;241 readonly timestamp: u64;242 readonly extraData: Bytes;243 readonly mixHash: H256;244 readonly nonce: EthereumTypesHashH64;245}246247/** @name EthereumLog */248export interface EthereumLog extends Struct {249 readonly address: H160;250 readonly topics: Vec<H256>;251 readonly data: Bytes;252}253254/** @name EthereumReceiptEip658ReceiptData */255export interface EthereumReceiptEip658ReceiptData extends Struct {256 readonly statusCode: u8;257 readonly usedGas: U256;258 readonly logsBloom: EthbloomBloom;259 readonly logs: Vec<EthereumLog>;260}261262/** @name EthereumReceiptReceiptV3 */263export interface EthereumReceiptReceiptV3 extends Enum {264 readonly isLegacy: boolean;265 readonly asLegacy: EthereumReceiptEip658ReceiptData;266 readonly isEip2930: boolean;267 readonly asEip2930: EthereumReceiptEip658ReceiptData;268 readonly isEip1559: boolean;269 readonly asEip1559: EthereumReceiptEip658ReceiptData;270 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';271}272273/** @name EthereumTransactionAccessListItem */274export interface EthereumTransactionAccessListItem extends Struct {275 readonly address: H160;276 readonly slots: Vec<H256>;277}278279/** @name EthereumTransactionEip1559Transaction */280export interface EthereumTransactionEip1559Transaction extends Struct {281 readonly chainId: u64;282 readonly nonce: U256;283 readonly maxPriorityFeePerGas: U256;284 readonly maxFeePerGas: U256;285 readonly gasLimit: U256;286 readonly action: EthereumTransactionTransactionAction;287 readonly value: U256;288 readonly input: Bytes;289 readonly accessList: Vec<EthereumTransactionAccessListItem>;290 readonly oddYParity: bool;291 readonly r: H256;292 readonly s: H256;293}294295/** @name EthereumTransactionEip2930Transaction */296export interface EthereumTransactionEip2930Transaction extends Struct {297 readonly chainId: u64;298 readonly nonce: U256;299 readonly gasPrice: U256;300 readonly gasLimit: U256;301 readonly action: EthereumTransactionTransactionAction;302 readonly value: U256;303 readonly input: Bytes;304 readonly accessList: Vec<EthereumTransactionAccessListItem>;305 readonly oddYParity: bool;306 readonly r: H256;307 readonly s: H256;308}309310/** @name EthereumTransactionLegacyTransaction */311export interface EthereumTransactionLegacyTransaction extends Struct {312 readonly nonce: U256;313 readonly gasPrice: U256;314 readonly gasLimit: U256;315 readonly action: EthereumTransactionTransactionAction;316 readonly value: U256;317 readonly input: Bytes;318 readonly signature: EthereumTransactionTransactionSignature;319}320321/** @name EthereumTransactionTransactionAction */322export interface EthereumTransactionTransactionAction extends Enum {323 readonly isCall: boolean;324 readonly asCall: H160;325 readonly isCreate: boolean;326 readonly type: 'Call' | 'Create';327}328329/** @name EthereumTransactionTransactionSignature */330export interface EthereumTransactionTransactionSignature extends Struct {331 readonly v: u64;332 readonly r: H256;333 readonly s: H256;334}335336/** @name EthereumTransactionTransactionV2 */337export interface EthereumTransactionTransactionV2 extends Enum {338 readonly isLegacy: boolean;339 readonly asLegacy: EthereumTransactionLegacyTransaction;340 readonly isEip2930: boolean;341 readonly asEip2930: EthereumTransactionEip2930Transaction;342 readonly isEip1559: boolean;343 readonly asEip1559: EthereumTransactionEip1559Transaction;344 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';345}346347/** @name EthereumTypesHashH64 */348export interface EthereumTypesHashH64 extends U8aFixed {}349350/** @name EvmCoreErrorExitError */351export interface EvmCoreErrorExitError extends Enum {352 readonly isStackUnderflow: boolean;353 readonly isStackOverflow: boolean;354 readonly isInvalidJump: boolean;355 readonly isInvalidRange: boolean;356 readonly isDesignatedInvalid: boolean;357 readonly isCallTooDeep: boolean;358 readonly isCreateCollision: boolean;359 readonly isCreateContractLimit: boolean;360 readonly isInvalidCode: boolean;361 readonly isOutOfOffset: boolean;362 readonly isOutOfGas: boolean;363 readonly isOutOfFund: boolean;364 readonly isPcUnderflow: boolean;365 readonly isCreateEmpty: boolean;366 readonly isOther: boolean;367 readonly asOther: Text;368 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'InvalidCode' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other';369}370371/** @name EvmCoreErrorExitFatal */372export interface EvmCoreErrorExitFatal extends Enum {373 readonly isNotSupported: boolean;374 readonly isUnhandledInterrupt: boolean;375 readonly isCallErrorAsFatal: boolean;376 readonly asCallErrorAsFatal: EvmCoreErrorExitError;377 readonly isOther: boolean;378 readonly asOther: Text;379 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';380}381382/** @name EvmCoreErrorExitReason */383export interface EvmCoreErrorExitReason extends Enum {384 readonly isSucceed: boolean;385 readonly asSucceed: EvmCoreErrorExitSucceed;386 readonly isError: boolean;387 readonly asError: EvmCoreErrorExitError;388 readonly isRevert: boolean;389 readonly asRevert: EvmCoreErrorExitRevert;390 readonly isFatal: boolean;391 readonly asFatal: EvmCoreErrorExitFatal;392 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';393}394395/** @name EvmCoreErrorExitRevert */396export interface EvmCoreErrorExitRevert extends Enum {397 readonly isReverted: boolean;398 readonly type: 'Reverted';399}400401/** @name EvmCoreErrorExitSucceed */402export interface EvmCoreErrorExitSucceed extends Enum {403 readonly isStopped: boolean;404 readonly isReturned: boolean;405 readonly isSuicided: boolean;406 readonly type: 'Stopped' | 'Returned' | 'Suicided';407}408409/** @name FpRpcTransactionStatus */410export interface FpRpcTransactionStatus extends Struct {411 readonly transactionHash: H256;412 readonly transactionIndex: u32;413 readonly from: H160;414 readonly to: Option<H160>;415 readonly contractAddress: Option<H160>;416 readonly logs: Vec<EthereumLog>;417 readonly logsBloom: EthbloomBloom;418}419420/** @name FrameSupportPalletId */421export interface FrameSupportPalletId extends U8aFixed {}422423/** @name FrameSupportTokensMiscBalanceStatus */424export interface FrameSupportTokensMiscBalanceStatus extends Enum {425 readonly isFree: boolean;426 readonly isReserved: boolean;427 readonly type: 'Free' | 'Reserved';428}429430/** @name FrameSupportWeightsDispatchClass */431export interface FrameSupportWeightsDispatchClass extends Enum {432 readonly isNormal: boolean;433 readonly isOperational: boolean;434 readonly isMandatory: boolean;435 readonly type: 'Normal' | 'Operational' | 'Mandatory';436}437438/** @name FrameSupportWeightsDispatchInfo */439export interface FrameSupportWeightsDispatchInfo extends Struct {440 readonly weight: u64;441 readonly class: FrameSupportWeightsDispatchClass;442 readonly paysFee: FrameSupportWeightsPays;443}444445/** @name FrameSupportWeightsPays */446export interface FrameSupportWeightsPays extends Enum {447 readonly isYes: boolean;448 readonly isNo: boolean;449 readonly type: 'Yes' | 'No';450}451452/** @name FrameSupportWeightsPerDispatchClassU32 */453export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {454 readonly normal: u32;455 readonly operational: u32;456 readonly mandatory: u32;457}458459/** @name FrameSupportWeightsPerDispatchClassU64 */460export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {461 readonly normal: u64;462 readonly operational: u64;463 readonly mandatory: u64;464}465466/** @name FrameSupportWeightsPerDispatchClassWeightsPerClass */467export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {468 readonly normal: FrameSystemLimitsWeightsPerClass;469 readonly operational: FrameSystemLimitsWeightsPerClass;470 readonly mandatory: FrameSystemLimitsWeightsPerClass;471}472473/** @name FrameSupportWeightsRuntimeDbWeight */474export interface FrameSupportWeightsRuntimeDbWeight extends Struct {475 readonly read: u64;476 readonly write: u64;477}478479/** @name FrameSupportWeightsWeightToFeeCoefficient */480export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {481 readonly coeffInteger: u128;482 readonly coeffFrac: Perbill;483 readonly negative: bool;484 readonly degree: u8;485}486487/** @name FrameSystemAccountInfo */488export interface FrameSystemAccountInfo extends Struct {489 readonly nonce: u32;490 readonly consumers: u32;491 readonly providers: u32;492 readonly sufficients: u32;493 readonly data: PalletBalancesAccountData;494}495496/** @name FrameSystemCall */497export interface FrameSystemCall extends Enum {498 readonly isFillBlock: boolean;499 readonly asFillBlock: {500 readonly ratio: Perbill;501 } & Struct;502 readonly isRemark: boolean;503 readonly asRemark: {504 readonly remark: Bytes;505 } & Struct;506 readonly isSetHeapPages: boolean;507 readonly asSetHeapPages: {508 readonly pages: u64;509 } & Struct;510 readonly isSetCode: boolean;511 readonly asSetCode: {512 readonly code: Bytes;513 } & Struct;514 readonly isSetCodeWithoutChecks: boolean;515 readonly asSetCodeWithoutChecks: {516 readonly code: Bytes;517 } & Struct;518 readonly isSetStorage: boolean;519 readonly asSetStorage: {520 readonly items: Vec<ITuple<[Bytes, Bytes]>>;521 } & Struct;522 readonly isKillStorage: boolean;523 readonly asKillStorage: {524 readonly keys_: Vec<Bytes>;525 } & Struct;526 readonly isKillPrefix: boolean;527 readonly asKillPrefix: {528 readonly prefix: Bytes;529 readonly subkeys: u32;530 } & Struct;531 readonly isRemarkWithEvent: boolean;532 readonly asRemarkWithEvent: {533 readonly remark: Bytes;534 } & Struct;535 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';536}537538/** @name FrameSystemError */539export interface FrameSystemError extends Enum {540 readonly isInvalidSpecName: boolean;541 readonly isSpecVersionNeedsToIncrease: boolean;542 readonly isFailedToExtractRuntimeVersion: boolean;543 readonly isNonDefaultComposite: boolean;544 readonly isNonZeroRefCount: boolean;545 readonly isCallFiltered: boolean;546 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';547}548549/** @name FrameSystemEvent */550export interface FrameSystemEvent extends Enum {551 readonly isExtrinsicSuccess: boolean;552 readonly asExtrinsicSuccess: {553 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;554 } & Struct;555 readonly isExtrinsicFailed: boolean;556 readonly asExtrinsicFailed: {557 readonly dispatchError: SpRuntimeDispatchError;558 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;559 } & Struct;560 readonly isCodeUpdated: boolean;561 readonly isNewAccount: boolean;562 readonly asNewAccount: {563 readonly account: AccountId32;564 } & Struct;565 readonly isKilledAccount: boolean;566 readonly asKilledAccount: {567 readonly account: AccountId32;568 } & Struct;569 readonly isRemarked: boolean;570 readonly asRemarked: {571 readonly sender: AccountId32;572 readonly hash_: H256;573 } & Struct;574 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';575}576577/** @name FrameSystemEventRecord */578export interface FrameSystemEventRecord extends Struct {579 readonly phase: FrameSystemPhase;580 readonly event: Event;581 readonly topics: Vec<H256>;582}583584/** @name FrameSystemExtensionsCheckGenesis */585export interface FrameSystemExtensionsCheckGenesis extends Null {}586587/** @name FrameSystemExtensionsCheckNonce */588export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}589590/** @name FrameSystemExtensionsCheckSpecVersion */591export interface FrameSystemExtensionsCheckSpecVersion extends Null {}592593/** @name FrameSystemExtensionsCheckWeight */594export interface FrameSystemExtensionsCheckWeight extends Null {}595596/** @name FrameSystemLastRuntimeUpgradeInfo */597export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {598 readonly specVersion: Compact<u32>;599 readonly specName: Text;600}601602/** @name FrameSystemLimitsBlockLength */603export interface FrameSystemLimitsBlockLength extends Struct {604 readonly max: FrameSupportWeightsPerDispatchClassU32;605}606607/** @name FrameSystemLimitsBlockWeights */608export interface FrameSystemLimitsBlockWeights extends Struct {609 readonly baseBlock: u64;610 readonly maxBlock: u64;611 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;612}613614/** @name FrameSystemLimitsWeightsPerClass */615export interface FrameSystemLimitsWeightsPerClass extends Struct {616 readonly baseExtrinsic: u64;617 readonly maxExtrinsic: Option<u64>;618 readonly maxTotal: Option<u64>;619 readonly reserved: Option<u64>;620}621622/** @name FrameSystemPhase */623export interface FrameSystemPhase extends Enum {624 readonly isApplyExtrinsic: boolean;625 readonly asApplyExtrinsic: u32;626 readonly isFinalization: boolean;627 readonly isInitialization: boolean;628 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';629}630631/** @name OrmlVestingModuleCall */632export interface OrmlVestingModuleCall extends Enum {633 readonly isClaim: boolean;634 readonly isVestedTransfer: boolean;635 readonly asVestedTransfer: {636 readonly dest: MultiAddress;637 readonly schedule: OrmlVestingVestingSchedule;638 } & Struct;639 readonly isUpdateVestingSchedules: boolean;640 readonly asUpdateVestingSchedules: {641 readonly who: MultiAddress;642 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;643 } & Struct;644 readonly isClaimFor: boolean;645 readonly asClaimFor: {646 readonly dest: MultiAddress;647 } & Struct;648 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';649}650651/** @name OrmlVestingModuleError */652export interface OrmlVestingModuleError extends Enum {653 readonly isZeroVestingPeriod: boolean;654 readonly isZeroVestingPeriodCount: boolean;655 readonly isInsufficientBalanceToLock: boolean;656 readonly isTooManyVestingSchedules: boolean;657 readonly isAmountLow: boolean;658 readonly isMaxVestingSchedulesExceeded: boolean;659 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';660}661662/** @name OrmlVestingModuleEvent */663export interface OrmlVestingModuleEvent extends Enum {664 readonly isVestingScheduleAdded: boolean;665 readonly asVestingScheduleAdded: {666 readonly from: AccountId32;667 readonly to: AccountId32;668 readonly vestingSchedule: OrmlVestingVestingSchedule;669 } & Struct;670 readonly isClaimed: boolean;671 readonly asClaimed: {672 readonly who: AccountId32;673 readonly amount: u128;674 } & Struct;675 readonly isVestingSchedulesUpdated: boolean;676 readonly asVestingSchedulesUpdated: {677 readonly who: AccountId32;678 } & Struct;679 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';680}681682/** @name OrmlVestingVestingSchedule */683export interface OrmlVestingVestingSchedule extends Struct {684 readonly start: u32;685 readonly period: u32;686 readonly periodCount: u32;687 readonly perPeriod: Compact<u128>;688}689690/** @name PalletBalancesAccountData */691export interface PalletBalancesAccountData extends Struct {692 readonly free: u128;693 readonly reserved: u128;694 readonly miscFrozen: u128;695 readonly feeFrozen: u128;696}697698/** @name PalletBalancesBalanceLock */699export interface PalletBalancesBalanceLock extends Struct {700 readonly id: U8aFixed;701 readonly amount: u128;702 readonly reasons: PalletBalancesReasons;703}704705/** @name PalletBalancesCall */706export interface PalletBalancesCall extends Enum {707 readonly isTransfer: boolean;708 readonly asTransfer: {709 readonly dest: MultiAddress;710 readonly value: Compact<u128>;711 } & Struct;712 readonly isSetBalance: boolean;713 readonly asSetBalance: {714 readonly who: MultiAddress;715 readonly newFree: Compact<u128>;716 readonly newReserved: Compact<u128>;717 } & Struct;718 readonly isForceTransfer: boolean;719 readonly asForceTransfer: {720 readonly source: MultiAddress;721 readonly dest: MultiAddress;722 readonly value: Compact<u128>;723 } & Struct;724 readonly isTransferKeepAlive: boolean;725 readonly asTransferKeepAlive: {726 readonly dest: MultiAddress;727 readonly value: Compact<u128>;728 } & Struct;729 readonly isTransferAll: boolean;730 readonly asTransferAll: {731 readonly dest: MultiAddress;732 readonly keepAlive: bool;733 } & Struct;734 readonly isForceUnreserve: boolean;735 readonly asForceUnreserve: {736 readonly who: MultiAddress;737 readonly amount: u128;738 } & Struct;739 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';740}741742/** @name PalletBalancesError */743export interface PalletBalancesError extends Enum {744 readonly isVestingBalance: boolean;745 readonly isLiquidityRestrictions: boolean;746 readonly isInsufficientBalance: boolean;747 readonly isExistentialDeposit: boolean;748 readonly isKeepAlive: boolean;749 readonly isExistingVestingSchedule: boolean;750 readonly isDeadAccount: boolean;751 readonly isTooManyReserves: boolean;752 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';753}754755/** @name PalletBalancesEvent */756export interface PalletBalancesEvent extends Enum {757 readonly isEndowed: boolean;758 readonly asEndowed: {759 readonly account: AccountId32;760 readonly freeBalance: u128;761 } & Struct;762 readonly isDustLost: boolean;763 readonly asDustLost: {764 readonly account: AccountId32;765 readonly amount: u128;766 } & Struct;767 readonly isTransfer: boolean;768 readonly asTransfer: {769 readonly from: AccountId32;770 readonly to: AccountId32;771 readonly amount: u128;772 } & Struct;773 readonly isBalanceSet: boolean;774 readonly asBalanceSet: {775 readonly who: AccountId32;776 readonly free: u128;777 readonly reserved: u128;778 } & Struct;779 readonly isReserved: boolean;780 readonly asReserved: {781 readonly who: AccountId32;782 readonly amount: u128;783 } & Struct;784 readonly isUnreserved: boolean;785 readonly asUnreserved: {786 readonly who: AccountId32;787 readonly amount: u128;788 } & Struct;789 readonly isReserveRepatriated: boolean;790 readonly asReserveRepatriated: {791 readonly from: AccountId32;792 readonly to: AccountId32;793 readonly amount: u128;794 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;795 } & Struct;796 readonly isDeposit: boolean;797 readonly asDeposit: {798 readonly who: AccountId32;799 readonly amount: u128;800 } & Struct;801 readonly isWithdraw: boolean;802 readonly asWithdraw: {803 readonly who: AccountId32;804 readonly amount: u128;805 } & Struct;806 readonly isSlashed: boolean;807 readonly asSlashed: {808 readonly who: AccountId32;809 readonly amount: u128;810 } & Struct;811 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';812}813814/** @name PalletBalancesReasons */815export interface PalletBalancesReasons extends Enum {816 readonly isFee: boolean;817 readonly isMisc: boolean;818 readonly isAll: boolean;819 readonly type: 'Fee' | 'Misc' | 'All';820}821822/** @name PalletBalancesReleases */823export interface PalletBalancesReleases extends Enum {824 readonly isV100: boolean;825 readonly isV200: boolean;826 readonly type: 'V100' | 'V200';827}828829/** @name PalletBalancesReserveData */830export interface PalletBalancesReserveData extends Struct {831 readonly id: U8aFixed;832 readonly amount: u128;833}834835/** @name PalletCommonAccountBasicCrossAccountIdRepr */836export interface PalletCommonAccountBasicCrossAccountIdRepr extends Enum {837 readonly isSubstrate: boolean;838 readonly asSubstrate: AccountId32;839 readonly isEthereum: boolean;840 readonly asEthereum: H160;841 readonly type: 'Substrate' | 'Ethereum';842}843844/** @name PalletCommonError */845export interface PalletCommonError extends Enum {846 readonly isCollectionNotFound: boolean;847 readonly isMustBeTokenOwner: boolean;848 readonly isNoPermission: boolean;849 readonly isPublicMintingNotAllowed: boolean;850 readonly isAddressNotInAllowlist: boolean;851 readonly isCollectionNameLimitExceeded: boolean;852 readonly isCollectionDescriptionLimitExceeded: boolean;853 readonly isCollectionTokenPrefixLimitExceeded: boolean;854 readonly isTotalCollectionsLimitExceeded: boolean;855 readonly isTokenVariableDataLimitExceeded: boolean;856 readonly isCollectionAdminCountExceeded: boolean;857 readonly isCollectionLimitBoundsExceeded: boolean;858 readonly isOwnerPermissionsCantBeReverted: boolean;859 readonly isTransferNotAllowed: boolean;860 readonly isAccountTokenLimitExceeded: boolean;861 readonly isCollectionTokenLimitExceeded: boolean;862 readonly isMetadataFlagFrozen: boolean;863 readonly isTokenNotFound: boolean;864 readonly isTokenValueTooLow: boolean;865 readonly isApprovedValueTooLow: boolean;866 readonly isCantApproveMoreThanOwned: boolean;867 readonly isAddressIsZero: boolean;868 readonly isUnsupportedOperation: boolean;869 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';870}871872/** @name PalletCommonEvent */873export interface PalletCommonEvent extends Enum {874 readonly isCollectionCreated: boolean;875 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;876 readonly isCollectionDestroyed: boolean;877 readonly asCollectionDestroyed: u32;878 readonly isItemCreated: boolean;879 readonly asItemCreated: ITuple<[u32, u32, PalletCommonAccountBasicCrossAccountIdRepr, u128]>;880 readonly isItemDestroyed: boolean;881 readonly asItemDestroyed: ITuple<[u32, u32, PalletCommonAccountBasicCrossAccountIdRepr, u128]>;882 readonly isTransfer: boolean;883 readonly asTransfer: ITuple<[u32, u32, PalletCommonAccountBasicCrossAccountIdRepr, PalletCommonAccountBasicCrossAccountIdRepr, u128]>;884 readonly isApproved: boolean;885 readonly asApproved: ITuple<[u32, u32, PalletCommonAccountBasicCrossAccountIdRepr, PalletCommonAccountBasicCrossAccountIdRepr, u128]>;886 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved';887}888889/** @name PalletEthereumCall */890export interface PalletEthereumCall extends Enum {891 readonly isTransact: boolean;892 readonly asTransact: {893 readonly transaction: EthereumTransactionTransactionV2;894 } & Struct;895 readonly type: 'Transact';896}897898/** @name PalletEthereumError */899export interface PalletEthereumError extends Enum {900 readonly isInvalidSignature: boolean;901 readonly isPreLogExists: boolean;902 readonly type: 'InvalidSignature' | 'PreLogExists';903}904905/** @name PalletEthereumEvent */906export interface PalletEthereumEvent extends Enum {907 readonly isExecuted: boolean;908 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;909 readonly type: 'Executed';910}911912/** @name PalletEvmCall */913export interface PalletEvmCall extends Enum {914 readonly isWithdraw: boolean;915 readonly asWithdraw: {916 readonly address: H160;917 readonly value: u128;918 } & Struct;919 readonly isCall: boolean;920 readonly asCall: {921 readonly source: H160;922 readonly target: H160;923 readonly input: Bytes;924 readonly value: U256;925 readonly gasLimit: u64;926 readonly maxFeePerGas: U256;927 readonly maxPriorityFeePerGas: Option<U256>;928 readonly nonce: Option<U256>;929 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;930 } & Struct;931 readonly isCreate: boolean;932 readonly asCreate: {933 readonly source: H160;934 readonly init: Bytes;935 readonly value: U256;936 readonly gasLimit: u64;937 readonly maxFeePerGas: U256;938 readonly maxPriorityFeePerGas: Option<U256>;939 readonly nonce: Option<U256>;940 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;941 } & Struct;942 readonly isCreate2: boolean;943 readonly asCreate2: {944 readonly source: H160;945 readonly init: Bytes;946 readonly salt: H256;947 readonly value: U256;948 readonly gasLimit: u64;949 readonly maxFeePerGas: U256;950 readonly maxPriorityFeePerGas: Option<U256>;951 readonly nonce: Option<U256>;952 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;953 } & Struct;954 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';955}956957/** @name PalletEvmCoderSubstrateError */958export interface PalletEvmCoderSubstrateError extends Enum {959 readonly isOutOfGas: boolean;960 readonly isOutOfFund: boolean;961 readonly type: 'OutOfGas' | 'OutOfFund';962}963964/** @name PalletEvmContractHelpersError */965export interface PalletEvmContractHelpersError extends Enum {966 readonly isNoPermission: boolean;967 readonly type: 'NoPermission';968}969970/** @name PalletEvmContractHelpersSponsoringModeT */971export interface PalletEvmContractHelpersSponsoringModeT extends Enum {972 readonly isDisabled: boolean;973 readonly isAllowlisted: boolean;974 readonly isGenerous: boolean;975 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';976}977978/** @name PalletEvmError */979export interface PalletEvmError extends Enum {980 readonly isBalanceLow: boolean;981 readonly isFeeOverflow: boolean;982 readonly isPaymentOverflow: boolean;983 readonly isWithdrawFailed: boolean;984 readonly isGasPriceTooLow: boolean;985 readonly isInvalidNonce: boolean;986 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';987}988989/** @name PalletEvmEvent */990export interface PalletEvmEvent extends Enum {991 readonly isLog: boolean;992 readonly asLog: EthereumLog;993 readonly isCreated: boolean;994 readonly asCreated: H160;995 readonly isCreatedFailed: boolean;996 readonly asCreatedFailed: H160;997 readonly isExecuted: boolean;998 readonly asExecuted: H160;999 readonly isExecutedFailed: boolean;1000 readonly asExecutedFailed: H160;1001 readonly isBalanceDeposit: boolean;1002 readonly asBalanceDeposit: ITuple<[AccountId32, H160, U256]>;1003 readonly isBalanceWithdraw: boolean;1004 readonly asBalanceWithdraw: ITuple<[AccountId32, H160, U256]>;1005 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';1006}10071008/** @name PalletEvmMigrationCall */1009export interface PalletEvmMigrationCall extends Enum {1010 readonly isBegin: boolean;1011 readonly asBegin: {1012 readonly address: H160;1013 } & Struct;1014 readonly isSetData: boolean;1015 readonly asSetData: {1016 readonly address: H160;1017 readonly data: Vec<ITuple<[H256, H256]>>;1018 } & Struct;1019 readonly isFinish: boolean;1020 readonly asFinish: {1021 readonly address: H160;1022 readonly code: Bytes;1023 } & Struct;1024 readonly type: 'Begin' | 'SetData' | 'Finish';1025}10261027/** @name PalletEvmMigrationError */1028export interface PalletEvmMigrationError extends Enum {1029 readonly isAccountNotEmpty: boolean;1030 readonly isAccountIsNotMigrating: boolean;1031 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';1032}10331034/** @name PalletFungibleError */1035export interface PalletFungibleError extends Enum {1036 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;1037 readonly isFungibleItemsHaveNoId: boolean;1038 readonly isFungibleItemsDontHaveData: boolean;1039 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData';1040}10411042/** @name PalletInflationCall */1043export interface PalletInflationCall extends Enum {1044 readonly isStartInflation: boolean;1045 readonly asStartInflation: {1046 readonly inflationStartRelayBlock: u32;1047 } & Struct;1048 readonly type: 'StartInflation';1049}10501051/** @name PalletNonfungibleError */1052export interface PalletNonfungibleError extends Enum {1053 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;1054 readonly isNonfungibleItemsHaveNoAmount: boolean;1055 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';1056}10571058/** @name PalletNonfungibleItemData */1059export interface PalletNonfungibleItemData extends Struct {1060 readonly constData: Bytes;1061 readonly variableData: Bytes;1062 readonly owner: PalletCommonAccountBasicCrossAccountIdRepr;1063}10641065/** @name PalletRefungibleError */1066export interface PalletRefungibleError extends Enum {1067 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;1068 readonly isWrongRefungiblePieces: boolean;1069 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces';1070}10711072/** @name PalletRefungibleItemData */1073export interface PalletRefungibleItemData extends Struct {1074 readonly constData: Bytes;1075 readonly variableData: Bytes;1076}10771078/** @name PalletSudoCall */1079export interface PalletSudoCall extends Enum {1080 readonly isSudo: boolean;1081 readonly asSudo: {1082 readonly call: Call;1083 } & Struct;1084 readonly isSudoUncheckedWeight: boolean;1085 readonly asSudoUncheckedWeight: {1086 readonly call: Call;1087 readonly weight: u64;1088 } & Struct;1089 readonly isSetKey: boolean;1090 readonly asSetKey: {1091 readonly new_: MultiAddress;1092 } & Struct;1093 readonly isSudoAs: boolean;1094 readonly asSudoAs: {1095 readonly who: MultiAddress;1096 readonly call: Call;1097 } & Struct;1098 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1099}11001101/** @name PalletSudoError */1102export interface PalletSudoError extends Enum {1103 readonly isRequireSudo: boolean;1104 readonly type: 'RequireSudo';1105}11061107/** @name PalletSudoEvent */1108export interface PalletSudoEvent extends Enum {1109 readonly isSudid: boolean;1110 readonly asSudid: {1111 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1112 } & Struct;1113 readonly isKeyChanged: boolean;1114 readonly asKeyChanged: {1115 readonly oldSudoer: Option<AccountId32>;1116 } & Struct;1117 readonly isSudoAsDone: boolean;1118 readonly asSudoAsDone: {1119 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1120 } & Struct;1121 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1122}11231124/** @name PalletTemplateTransactionPaymentCall */1125export interface PalletTemplateTransactionPaymentCall extends Null {}11261127/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */1128export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}11291130/** @name PalletTimestampCall */1131export interface PalletTimestampCall extends Enum {1132 readonly isSet: boolean;1133 readonly asSet: {1134 readonly now: Compact<u64>;1135 } & Struct;1136 readonly type: 'Set';1137}11381139/** @name PalletTransactionPaymentReleases */1140export interface PalletTransactionPaymentReleases extends Enum {1141 readonly isV1Ancient: boolean;1142 readonly isV2: boolean;1143 readonly type: 'V1Ancient' | 'V2';1144}11451146/** @name PalletTreasuryCall */1147export interface PalletTreasuryCall extends Enum {1148 readonly isProposeSpend: boolean;1149 readonly asProposeSpend: {1150 readonly value: Compact<u128>;1151 readonly beneficiary: MultiAddress;1152 } & Struct;1153 readonly isRejectProposal: boolean;1154 readonly asRejectProposal: {1155 readonly proposalId: Compact<u32>;1156 } & Struct;1157 readonly isApproveProposal: boolean;1158 readonly asApproveProposal: {1159 readonly proposalId: Compact<u32>;1160 } & Struct;1161 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';1162}11631164/** @name PalletTreasuryError */1165export interface PalletTreasuryError extends Enum {1166 readonly isInsufficientProposersBalance: boolean;1167 readonly isInvalidIndex: boolean;1168 readonly isTooManyApprovals: boolean;1169 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';1170}11711172/** @name PalletTreasuryEvent */1173export interface PalletTreasuryEvent extends Enum {1174 readonly isProposed: boolean;1175 readonly asProposed: {1176 readonly proposalIndex: u32;1177 } & Struct;1178 readonly isSpending: boolean;1179 readonly asSpending: {1180 readonly budgetRemaining: u128;1181 } & Struct;1182 readonly isAwarded: boolean;1183 readonly asAwarded: {1184 readonly proposalIndex: u32;1185 readonly award: u128;1186 readonly account: AccountId32;1187 } & Struct;1188 readonly isRejected: boolean;1189 readonly asRejected: {1190 readonly proposalIndex: u32;1191 readonly slashed: u128;1192 } & Struct;1193 readonly isBurnt: boolean;1194 readonly asBurnt: {1195 readonly burntFunds: u128;1196 } & Struct;1197 readonly isRollover: boolean;1198 readonly asRollover: {1199 readonly rolloverBalance: u128;1200 } & Struct;1201 readonly isDeposit: boolean;1202 readonly asDeposit: {1203 readonly value: u128;1204 } & Struct;1205 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';1206}12071208/** @name PalletTreasuryProposal */1209export interface PalletTreasuryProposal extends Struct {1210 readonly proposer: AccountId32;1211 readonly value: u128;1212 readonly beneficiary: AccountId32;1213 readonly bond: u128;1214}12151216/** @name PalletUniqueCall */1217export interface PalletUniqueCall extends Enum {1218 readonly isCreateCollection: boolean;1219 readonly asCreateCollection: {1220 readonly collectionName: Vec<u16>;1221 readonly collectionDescription: Vec<u16>;1222 readonly tokenPrefix: Bytes;1223 readonly mode: UpDataStructsCollectionMode;1224 } & Struct;1225 readonly isCreateCollectionEx: boolean;1226 readonly asCreateCollectionEx: {1227 readonly data: UpDataStructsCreateCollectionData;1228 } & Struct;1229 readonly isDestroyCollection: boolean;1230 readonly asDestroyCollection: {1231 readonly collectionId: u32;1232 } & Struct;1233 readonly isAddToAllowList: boolean;1234 readonly asAddToAllowList: {1235 readonly collectionId: u32;1236 readonly address: PalletCommonAccountBasicCrossAccountIdRepr;1237 } & Struct;1238 readonly isRemoveFromAllowList: boolean;1239 readonly asRemoveFromAllowList: {1240 readonly collectionId: u32;1241 readonly address: PalletCommonAccountBasicCrossAccountIdRepr;1242 } & Struct;1243 readonly isSetPublicAccessMode: boolean;1244 readonly asSetPublicAccessMode: {1245 readonly collectionId: u32;1246 readonly mode: UpDataStructsAccessMode;1247 } & Struct;1248 readonly isSetMintPermission: boolean;1249 readonly asSetMintPermission: {1250 readonly collectionId: u32;1251 readonly mintPermission: bool;1252 } & Struct;1253 readonly isChangeCollectionOwner: boolean;1254 readonly asChangeCollectionOwner: {1255 readonly collectionId: u32;1256 readonly newOwner: AccountId32;1257 } & Struct;1258 readonly isAddCollectionAdmin: boolean;1259 readonly asAddCollectionAdmin: {1260 readonly collectionId: u32;1261 readonly newAdminId: PalletCommonAccountBasicCrossAccountIdRepr;1262 } & Struct;1263 readonly isRemoveCollectionAdmin: boolean;1264 readonly asRemoveCollectionAdmin: {1265 readonly collectionId: u32;1266 readonly accountId: PalletCommonAccountBasicCrossAccountIdRepr;1267 } & Struct;1268 readonly isSetCollectionSponsor: boolean;1269 readonly asSetCollectionSponsor: {1270 readonly collectionId: u32;1271 readonly newSponsor: AccountId32;1272 } & Struct;1273 readonly isConfirmSponsorship: boolean;1274 readonly asConfirmSponsorship: {1275 readonly collectionId: u32;1276 } & Struct;1277 readonly isRemoveCollectionSponsor: boolean;1278 readonly asRemoveCollectionSponsor: {1279 readonly collectionId: u32;1280 } & Struct;1281 readonly isCreateItem: boolean;1282 readonly asCreateItem: {1283 readonly collectionId: u32;1284 readonly owner: PalletCommonAccountBasicCrossAccountIdRepr;1285 readonly data: UpDataStructsCreateItemData;1286 } & Struct;1287 readonly isCreateMultipleItems: boolean;1288 readonly asCreateMultipleItems: {1289 readonly collectionId: u32;1290 readonly owner: PalletCommonAccountBasicCrossAccountIdRepr;1291 readonly itemsData: Vec<UpDataStructsCreateItemData>;1292 } & Struct;1293 readonly isSetTransfersEnabledFlag: boolean;1294 readonly asSetTransfersEnabledFlag: {1295 readonly collectionId: u32;1296 readonly value: bool;1297 } & Struct;1298 readonly isBurnItem: boolean;1299 readonly asBurnItem: {1300 readonly collectionId: u32;1301 readonly itemId: u32;1302 readonly value: u128;1303 } & Struct;1304 readonly isBurnFrom: boolean;1305 readonly asBurnFrom: {1306 readonly collectionId: u32;1307 readonly from: PalletCommonAccountBasicCrossAccountIdRepr;1308 readonly itemId: u32;1309 readonly value: u128;1310 } & Struct;1311 readonly isTransfer: boolean;1312 readonly asTransfer: {1313 readonly recipient: PalletCommonAccountBasicCrossAccountIdRepr;1314 readonly collectionId: u32;1315 readonly itemId: u32;1316 readonly value: u128;1317 } & Struct;1318 readonly isApprove: boolean;1319 readonly asApprove: {1320 readonly spender: PalletCommonAccountBasicCrossAccountIdRepr;1321 readonly collectionId: u32;1322 readonly itemId: u32;1323 readonly amount: u128;1324 } & Struct;1325 readonly isTransferFrom: boolean;1326 readonly asTransferFrom: {1327 readonly from: PalletCommonAccountBasicCrossAccountIdRepr;1328 readonly recipient: PalletCommonAccountBasicCrossAccountIdRepr;1329 readonly collectionId: u32;1330 readonly itemId: u32;1331 readonly value: u128;1332 } & Struct;1333 readonly isSetVariableMetaData: boolean;1334 readonly asSetVariableMetaData: {1335 readonly collectionId: u32;1336 readonly itemId: u32;1337 readonly data: Bytes;1338 } & Struct;1339 readonly isSetMetaUpdatePermissionFlag: boolean;1340 readonly asSetMetaUpdatePermissionFlag: {1341 readonly collectionId: u32;1342 readonly value: UpDataStructsMetaUpdatePermission;1343 } & Struct;1344 readonly isSetSchemaVersion: boolean;1345 readonly asSetSchemaVersion: {1346 readonly collectionId: u32;1347 readonly version: UpDataStructsSchemaVersion;1348 } & Struct;1349 readonly isSetOffchainSchema: boolean;1350 readonly asSetOffchainSchema: {1351 readonly collectionId: u32;1352 readonly schema: Bytes;1353 } & Struct;1354 readonly isSetConstOnChainSchema: boolean;1355 readonly asSetConstOnChainSchema: {1356 readonly collectionId: u32;1357 readonly schema: Bytes;1358 } & Struct;1359 readonly isSetVariableOnChainSchema: boolean;1360 readonly asSetVariableOnChainSchema: {1361 readonly collectionId: u32;1362 readonly schema: Bytes;1363 } & Struct;1364 readonly isSetCollectionLimits: boolean;1365 readonly asSetCollectionLimits: {1366 readonly collectionId: u32;1367 readonly newLimit: UpDataStructsCollectionLimits;1368 } & Struct;1369 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';1370}13711372/** @name PalletUniqueError */1373export interface PalletUniqueError extends Enum {1374 readonly isCollectionDecimalPointLimitExceeded: boolean;1375 readonly isConfirmUnsetSponsorFail: boolean;1376 readonly isEmptyArgument: boolean;1377 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';1378}13791380/** @name PalletUniqueRawEvent */1381export interface PalletUniqueRawEvent extends Enum {1382 readonly isCollectionSponsorRemoved: boolean;1383 readonly asCollectionSponsorRemoved: u32;1384 readonly isCollectionAdminAdded: boolean;1385 readonly asCollectionAdminAdded: ITuple<[u32, PalletCommonAccountBasicCrossAccountIdRepr]>;1386 readonly isCollectionOwnedChanged: boolean;1387 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;1388 readonly isCollectionSponsorSet: boolean;1389 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1390 readonly isConstOnChainSchemaSet: boolean;1391 readonly asConstOnChainSchemaSet: u32;1392 readonly isSponsorshipConfirmed: boolean;1393 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1394 readonly isCollectionAdminRemoved: boolean;1395 readonly asCollectionAdminRemoved: ITuple<[u32, PalletCommonAccountBasicCrossAccountIdRepr]>;1396 readonly isAllowListAddressRemoved: boolean;1397 readonly asAllowListAddressRemoved: ITuple<[u32, PalletCommonAccountBasicCrossAccountIdRepr]>;1398 readonly isAllowListAddressAdded: boolean;1399 readonly asAllowListAddressAdded: ITuple<[u32, PalletCommonAccountBasicCrossAccountIdRepr]>;1400 readonly isCollectionLimitSet: boolean;1401 readonly asCollectionLimitSet: u32;1402 readonly isMintPermissionSet: boolean;1403 readonly asMintPermissionSet: u32;1404 readonly isOffchainSchemaSet: boolean;1405 readonly asOffchainSchemaSet: u32;1406 readonly isPublicAccessModeSet: boolean;1407 readonly asPublicAccessModeSet: ITuple<[u32, UpDataStructsAccessMode]>;1408 readonly isSchemaVersionSet: boolean;1409 readonly asSchemaVersionSet: u32;1410 readonly isVariableOnChainSchemaSet: boolean;1411 readonly asVariableOnChainSchemaSet: u32;1412 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet' | 'VariableOnChainSchemaSet';1413}14141415/** @name PalletXcmCall */1416export interface PalletXcmCall extends Enum {1417 readonly isSend: boolean;1418 readonly asSend: {1419 readonly dest: XcmVersionedMultiLocation;1420 readonly message: XcmVersionedXcm;1421 } & Struct;1422 readonly isTeleportAssets: boolean;1423 readonly asTeleportAssets: {1424 readonly dest: XcmVersionedMultiLocation;1425 readonly beneficiary: XcmVersionedMultiLocation;1426 readonly assets: XcmVersionedMultiAssets;1427 readonly feeAssetItem: u32;1428 } & Struct;1429 readonly isReserveTransferAssets: boolean;1430 readonly asReserveTransferAssets: {1431 readonly dest: XcmVersionedMultiLocation;1432 readonly beneficiary: XcmVersionedMultiLocation;1433 readonly assets: XcmVersionedMultiAssets;1434 readonly feeAssetItem: u32;1435 } & Struct;1436 readonly isExecute: boolean;1437 readonly asExecute: {1438 readonly message: XcmVersionedXcm;1439 readonly maxWeight: u64;1440 } & Struct;1441 readonly isForceXcmVersion: boolean;1442 readonly asForceXcmVersion: {1443 readonly location: XcmV1MultiLocation;1444 readonly xcmVersion: u32;1445 } & Struct;1446 readonly isForceDefaultXcmVersion: boolean;1447 readonly asForceDefaultXcmVersion: {1448 readonly maybeXcmVersion: Option<u32>;1449 } & Struct;1450 readonly isForceSubscribeVersionNotify: boolean;1451 readonly asForceSubscribeVersionNotify: {1452 readonly location: XcmVersionedMultiLocation;1453 } & Struct;1454 readonly isForceUnsubscribeVersionNotify: boolean;1455 readonly asForceUnsubscribeVersionNotify: {1456 readonly location: XcmVersionedMultiLocation;1457 } & Struct;1458 readonly isLimitedReserveTransferAssets: boolean;1459 readonly asLimitedReserveTransferAssets: {1460 readonly dest: XcmVersionedMultiLocation;1461 readonly beneficiary: XcmVersionedMultiLocation;1462 readonly assets: XcmVersionedMultiAssets;1463 readonly feeAssetItem: u32;1464 readonly weightLimit: XcmV2WeightLimit;1465 } & Struct;1466 readonly isLimitedTeleportAssets: boolean;1467 readonly asLimitedTeleportAssets: {1468 readonly dest: XcmVersionedMultiLocation;1469 readonly beneficiary: XcmVersionedMultiLocation;1470 readonly assets: XcmVersionedMultiAssets;1471 readonly feeAssetItem: u32;1472 readonly weightLimit: XcmV2WeightLimit;1473 } & Struct;1474 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';1475}14761477/** @name PalletXcmError */1478export interface PalletXcmError extends Enum {1479 readonly isUnreachable: boolean;1480 readonly isSendFailure: boolean;1481 readonly isFiltered: boolean;1482 readonly isUnweighableMessage: boolean;1483 readonly isDestinationNotInvertible: boolean;1484 readonly isEmpty: boolean;1485 readonly isCannotReanchor: boolean;1486 readonly isTooManyAssets: boolean;1487 readonly isInvalidOrigin: boolean;1488 readonly isBadVersion: boolean;1489 readonly isBadLocation: boolean;1490 readonly isNoSubscription: boolean;1491 readonly isAlreadySubscribed: boolean;1492 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';1493}14941495/** @name PalletXcmEvent */1496export interface PalletXcmEvent extends Enum {1497 readonly isAttempted: boolean;1498 readonly asAttempted: XcmV2TraitsOutcome;1499 readonly isSent: boolean;1500 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;1501 readonly isUnexpectedResponse: boolean;1502 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;1503 readonly isResponseReady: boolean;1504 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;1505 readonly isNotified: boolean;1506 readonly asNotified: ITuple<[u64, u8, u8]>;1507 readonly isNotifyOverweight: boolean;1508 readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;1509 readonly isNotifyDispatchError: boolean;1510 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;1511 readonly isNotifyDecodeFailed: boolean;1512 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;1513 readonly isInvalidResponder: boolean;1514 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;1515 readonly isInvalidResponderVersion: boolean;1516 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;1517 readonly isResponseTaken: boolean;1518 readonly asResponseTaken: u64;1519 readonly isAssetsTrapped: boolean;1520 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;1521 readonly isVersionChangeNotified: boolean;1522 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;1523 readonly isSupportedVersionChanged: boolean;1524 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;1525 readonly isNotifyTargetSendFail: boolean;1526 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;1527 readonly isNotifyTargetMigrationFail: boolean;1528 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;1529 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';1530}15311532/** @name PolkadotCorePrimitivesInboundDownwardMessage */1533export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1534 readonly sentAt: u32;1535 readonly msg: Bytes;1536}15371538/** @name PolkadotCorePrimitivesInboundHrmpMessage */1539export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1540 readonly sentAt: u32;1541 readonly data: Bytes;1542}15431544/** @name PolkadotCorePrimitivesOutboundHrmpMessage */1545export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1546 readonly recipient: u32;1547 readonly data: Bytes;1548}15491550/** @name PolkadotParachainPrimitivesXcmpMessageFormat */1551export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {1552 readonly isConcatenatedVersionedXcm: boolean;1553 readonly isConcatenatedEncodedBlob: boolean;1554 readonly isSignals: boolean;1555 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';1556}15571558/** @name PolkadotPrimitivesV1AbridgedHostConfiguration */1559export interface PolkadotPrimitivesV1AbridgedHostConfiguration extends Struct {1560 readonly maxCodeSize: u32;1561 readonly maxHeadDataSize: u32;1562 readonly maxUpwardQueueCount: u32;1563 readonly maxUpwardQueueSize: u32;1564 readonly maxUpwardMessageSize: u32;1565 readonly maxUpwardMessageNumPerCandidate: u32;1566 readonly hrmpMaxMessageNumPerCandidate: u32;1567 readonly validationUpgradeCooldown: u32;1568 readonly validationUpgradeDelay: u32;1569}15701571/** @name PolkadotPrimitivesV1AbridgedHrmpChannel */1572export interface PolkadotPrimitivesV1AbridgedHrmpChannel extends Struct {1573 readonly maxCapacity: u32;1574 readonly maxTotalSize: u32;1575 readonly maxMessageSize: u32;1576 readonly msgCount: u32;1577 readonly totalSize: u32;1578 readonly mqcHead: Option<H256>;1579}15801581/** @name PolkadotPrimitivesV1PersistedValidationData */1582export interface PolkadotPrimitivesV1PersistedValidationData extends Struct {1583 readonly parentHead: Bytes;1584 readonly relayParentNumber: u32;1585 readonly relayParentStorageRoot: H256;1586 readonly maxPovSize: u32;1587}15881589/** @name PolkadotPrimitivesV1UpgradeRestriction */1590export interface PolkadotPrimitivesV1UpgradeRestriction extends Enum {1591 readonly isPresent: boolean;1592 readonly type: 'Present';1593}15941595/** @name SpCoreEcdsaSignature */1596export interface SpCoreEcdsaSignature extends U8aFixed {}15971598/** @name SpCoreEd25519Signature */1599export interface SpCoreEd25519Signature extends U8aFixed {}16001601/** @name SpCoreSr25519Signature */1602export interface SpCoreSr25519Signature extends U8aFixed {}16031604/** @name SpRuntimeArithmeticError */1605export interface SpRuntimeArithmeticError extends Enum {1606 readonly isUnderflow: boolean;1607 readonly isOverflow: boolean;1608 readonly isDivisionByZero: boolean;1609 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';1610}16111612/** @name SpRuntimeDigest */1613export interface SpRuntimeDigest extends Struct {1614 readonly logs: Vec<SpRuntimeDigestDigestItem>;1615}16161617/** @name SpRuntimeDigestDigestItem */1618export interface SpRuntimeDigestDigestItem extends Enum {1619 readonly isOther: boolean;1620 readonly asOther: Bytes;1621 readonly isConsensus: boolean;1622 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;1623 readonly isSeal: boolean;1624 readonly asSeal: ITuple<[U8aFixed, Bytes]>;1625 readonly isPreRuntime: boolean;1626 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;1627 readonly isRuntimeEnvironmentUpdated: boolean;1628 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';1629}16301631/** @name SpRuntimeDispatchError */1632export interface SpRuntimeDispatchError extends Enum {1633 readonly isOther: boolean;1634 readonly isCannotLookup: boolean;1635 readonly isBadOrigin: boolean;1636 readonly isModule: boolean;1637 readonly asModule: {1638 readonly index: u8;1639 readonly error: u8;1640 } & Struct;1641 readonly isConsumerRemaining: boolean;1642 readonly isNoProviders: boolean;1643 readonly isTooManyConsumers: boolean;1644 readonly isToken: boolean;1645 readonly asToken: SpRuntimeTokenError;1646 readonly isArithmetic: boolean;1647 readonly asArithmetic: SpRuntimeArithmeticError;1648 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic';1649}16501651/** @name SpRuntimeMultiSignature */1652export interface SpRuntimeMultiSignature extends Enum {1653 readonly isEd25519: boolean;1654 readonly asEd25519: SpCoreEd25519Signature;1655 readonly isSr25519: boolean;1656 readonly asSr25519: SpCoreSr25519Signature;1657 readonly isEcdsa: boolean;1658 readonly asEcdsa: SpCoreEcdsaSignature;1659 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';1660}16611662/** @name SpRuntimeTokenError */1663export interface SpRuntimeTokenError extends Enum {1664 readonly isNoFunds: boolean;1665 readonly isWouldDie: boolean;1666 readonly isBelowMinimum: boolean;1667 readonly isCannotCreate: boolean;1668 readonly isUnknownAsset: boolean;1669 readonly isFrozen: boolean;1670 readonly isUnsupported: boolean;1671 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';1672}16731674/** @name SpTrieStorageProof */1675export interface SpTrieStorageProof extends Struct {1676 readonly trieNodes: Vec<Bytes>;1677}16781679/** @name SpVersionRuntimeVersion */1680export interface SpVersionRuntimeVersion extends Struct {1681 readonly specName: Text;1682 readonly implName: Text;1683 readonly authoringVersion: u32;1684 readonly specVersion: u32;1685 readonly implVersion: u32;1686 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1687 readonly transactionVersion: u32;1688 readonly stateVersion: u8;1689}16901691/** @name UniqueRuntimeRuntime */1692export interface UniqueRuntimeRuntime extends Null {}16931694/** @name UpDataStructsAccessMode */1695export interface UpDataStructsAccessMode extends Enum {1696 readonly isNormal: boolean;1697 readonly isAllowList: boolean;1698 readonly type: 'Normal' | 'AllowList';1699}17001701/** @name UpDataStructsCollection */1702export interface UpDataStructsCollection extends Struct {1703 readonly owner: AccountId32;1704 readonly mode: UpDataStructsCollectionMode;1705 readonly access: UpDataStructsAccessMode;1706 readonly name: Vec<u16>;1707 readonly description: Vec<u16>;1708 readonly tokenPrefix: Bytes;1709 readonly mintMode: bool;1710 readonly offchainSchema: Bytes;1711 readonly schemaVersion: UpDataStructsSchemaVersion;1712 readonly sponsorship: UpDataStructsSponsorshipState;1713 readonly limits: UpDataStructsCollectionLimits;1714 readonly variableOnChainSchema: Bytes;1715 readonly constOnChainSchema: Bytes;1716 readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;1717}17181719/** @name UpDataStructsCollectionLimits */1720export interface UpDataStructsCollectionLimits extends Struct {1721 readonly accountTokenOwnershipLimit: Option<u32>;1722 readonly sponsoredDataSize: Option<u32>;1723 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;1724 readonly tokenLimit: Option<u32>;1725 readonly sponsorTransferTimeout: Option<u32>;1726 readonly sponsorApproveTimeout: Option<u32>;1727 readonly ownerCanTransfer: Option<bool>;1728 readonly ownerCanDestroy: Option<bool>;1729 readonly transfersEnabled: Option<bool>;1730}17311732/** @name UpDataStructsCollectionMode */1733export interface UpDataStructsCollectionMode extends Enum {1734 readonly isNft: boolean;1735 readonly isFungible: boolean;1736 readonly asFungible: u8;1737 readonly isReFungible: boolean;1738 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1739}17401741/** @name UpDataStructsCollectionStats */1742export interface UpDataStructsCollectionStats extends Struct {1743 readonly created: u32;1744 readonly destroyed: u32;1745 readonly alive: u32;1746}17471748/** @name UpDataStructsCreateCollectionData */1749export interface UpDataStructsCreateCollectionData extends Struct {1750 readonly mode: UpDataStructsCollectionMode;1751 readonly access: Option<UpDataStructsAccessMode>;1752 readonly name: Vec<u16>;1753 readonly description: Vec<u16>;1754 readonly tokenPrefix: Bytes;1755 readonly offchainSchema: Bytes;1756 readonly schemaVersion: Option<UpDataStructsSchemaVersion>;1757 readonly pendingSponsor: Option<AccountId32>;1758 readonly limits: Option<UpDataStructsCollectionLimits>;1759 readonly variableOnChainSchema: Bytes;1760 readonly constOnChainSchema: Bytes;1761 readonly metaUpdatePermission: Option<UpDataStructsMetaUpdatePermission>;1762}17631764/** @name UpDataStructsCreateFungibleData */1765export interface UpDataStructsCreateFungibleData extends Struct {1766 readonly value: u128;1767}17681769/** @name UpDataStructsCreateItemData */1770export interface UpDataStructsCreateItemData extends Enum {1771 readonly isNft: boolean;1772 readonly asNft: UpDataStructsCreateNftData;1773 readonly isFungible: boolean;1774 readonly asFungible: UpDataStructsCreateFungibleData;1775 readonly isReFungible: boolean;1776 readonly asReFungible: UpDataStructsCreateReFungibleData;1777 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1778}17791780/** @name UpDataStructsCreateNftData */1781export interface UpDataStructsCreateNftData extends Struct {1782 readonly constData: Bytes;1783 readonly variableData: Bytes;1784}17851786/** @name UpDataStructsCreateReFungibleData */1787export interface UpDataStructsCreateReFungibleData extends Struct {1788 readonly constData: Bytes;1789 readonly variableData: Bytes;1790 readonly pieces: u128;1791}17921793/** @name UpDataStructsMetaUpdatePermission */1794export interface UpDataStructsMetaUpdatePermission extends Enum {1795 readonly isItemOwner: boolean;1796 readonly isAdmin: boolean;1797 readonly isNone: boolean;1798 readonly type: 'ItemOwner' | 'Admin' | 'None';1799}18001801/** @name UpDataStructsSchemaVersion */1802export interface UpDataStructsSchemaVersion extends Enum {1803 readonly isImageURL: boolean;1804 readonly isUnique: boolean;1805 readonly type: 'ImageURL' | 'Unique';1806}18071808/** @name UpDataStructsSponsoringRateLimit */1809export interface UpDataStructsSponsoringRateLimit extends Enum {1810 readonly isSponsoringDisabled: boolean;1811 readonly isBlocks: boolean;1812 readonly asBlocks: u32;1813}18141815/** @name UpDataStructsSponsorshipState */1816export interface UpDataStructsSponsorshipState extends Enum {1817 readonly isDisabled: boolean;1818 readonly isUnconfirmed: boolean;1819 readonly asUnconfirmed: AccountId32;1820 readonly isConfirmed: boolean;1821 readonly asConfirmed: AccountId32;1822 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';1823}18241825/** @name XcmDoubleEncoded */1826export interface XcmDoubleEncoded extends Struct {1827 readonly encoded: Bytes;1828}18291830/** @name XcmV0Junction */1831export interface XcmV0Junction extends Enum {1832 readonly isParent: boolean;1833 readonly isParachain: boolean;1834 readonly asParachain: Compact<u32>;1835 readonly isAccountId32: boolean;1836 readonly asAccountId32: {1837 readonly network: XcmV0JunctionNetworkId;1838 readonly id: U8aFixed;1839 } & Struct;1840 readonly isAccountIndex64: boolean;1841 readonly asAccountIndex64: {1842 readonly network: XcmV0JunctionNetworkId;1843 readonly index: Compact<u64>;1844 } & Struct;1845 readonly isAccountKey20: boolean;1846 readonly asAccountKey20: {1847 readonly network: XcmV0JunctionNetworkId;1848 readonly key: U8aFixed;1849 } & Struct;1850 readonly isPalletInstance: boolean;1851 readonly asPalletInstance: u8;1852 readonly isGeneralIndex: boolean;1853 readonly asGeneralIndex: Compact<u128>;1854 readonly isGeneralKey: boolean;1855 readonly asGeneralKey: Bytes;1856 readonly isOnlyChild: boolean;1857 readonly isPlurality: boolean;1858 readonly asPlurality: {1859 readonly id: XcmV0JunctionBodyId;1860 readonly part: XcmV0JunctionBodyPart;1861 } & Struct;1862 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1863}18641865/** @name XcmV0JunctionBodyId */1866export interface XcmV0JunctionBodyId extends Enum {1867 readonly isUnit: boolean;1868 readonly isNamed: boolean;1869 readonly asNamed: Bytes;1870 readonly isIndex: boolean;1871 readonly asIndex: Compact<u32>;1872 readonly isExecutive: boolean;1873 readonly isTechnical: boolean;1874 readonly isLegislative: boolean;1875 readonly isJudicial: boolean;1876 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';1877}18781879/** @name XcmV0JunctionBodyPart */1880export interface XcmV0JunctionBodyPart extends Enum {1881 readonly isVoice: boolean;1882 readonly isMembers: boolean;1883 readonly asMembers: {1884 readonly count: Compact<u32>;1885 } & Struct;1886 readonly isFraction: boolean;1887 readonly asFraction: {1888 readonly nom: Compact<u32>;1889 readonly denom: Compact<u32>;1890 } & Struct;1891 readonly isAtLeastProportion: boolean;1892 readonly asAtLeastProportion: {1893 readonly nom: Compact<u32>;1894 readonly denom: Compact<u32>;1895 } & Struct;1896 readonly isMoreThanProportion: boolean;1897 readonly asMoreThanProportion: {1898 readonly nom: Compact<u32>;1899 readonly denom: Compact<u32>;1900 } & Struct;1901 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';1902}19031904/** @name XcmV0JunctionNetworkId */1905export interface XcmV0JunctionNetworkId extends Enum {1906 readonly isAny: boolean;1907 readonly isNamed: boolean;1908 readonly asNamed: Bytes;1909 readonly isPolkadot: boolean;1910 readonly isKusama: boolean;1911 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';1912}19131914/** @name XcmV0MultiAsset */1915export interface XcmV0MultiAsset extends Enum {1916 readonly isNone: boolean;1917 readonly isAll: boolean;1918 readonly isAllFungible: boolean;1919 readonly isAllNonFungible: boolean;1920 readonly isAllAbstractFungible: boolean;1921 readonly asAllAbstractFungible: {1922 readonly id: Bytes;1923 } & Struct;1924 readonly isAllAbstractNonFungible: boolean;1925 readonly asAllAbstractNonFungible: {1926 readonly class: Bytes;1927 } & Struct;1928 readonly isAllConcreteFungible: boolean;1929 readonly asAllConcreteFungible: {1930 readonly id: XcmV0MultiLocation;1931 } & Struct;1932 readonly isAllConcreteNonFungible: boolean;1933 readonly asAllConcreteNonFungible: {1934 readonly class: XcmV0MultiLocation;1935 } & Struct;1936 readonly isAbstractFungible: boolean;1937 readonly asAbstractFungible: {1938 readonly id: Bytes;1939 readonly amount: Compact<u128>;1940 } & Struct;1941 readonly isAbstractNonFungible: boolean;1942 readonly asAbstractNonFungible: {1943 readonly class: Bytes;1944 readonly instance: XcmV1MultiassetAssetInstance;1945 } & Struct;1946 readonly isConcreteFungible: boolean;1947 readonly asConcreteFungible: {1948 readonly id: XcmV0MultiLocation;1949 readonly amount: Compact<u128>;1950 } & Struct;1951 readonly isConcreteNonFungible: boolean;1952 readonly asConcreteNonFungible: {1953 readonly class: XcmV0MultiLocation;1954 readonly instance: XcmV1MultiassetAssetInstance;1955 } & Struct;1956 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';1957}19581959/** @name XcmV0MultiLocation */1960export interface XcmV0MultiLocation extends Enum {1961 readonly isNull: boolean;1962 readonly isX1: boolean;1963 readonly asX1: XcmV0Junction;1964 readonly isX2: boolean;1965 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;1966 readonly isX3: boolean;1967 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1968 readonly isX4: boolean;1969 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1970 readonly isX5: boolean;1971 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1972 readonly isX6: boolean;1973 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1974 readonly isX7: boolean;1975 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1976 readonly isX8: boolean;1977 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1978 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1979}19801981/** @name XcmV0Order */1982export interface XcmV0Order extends Enum {1983 readonly isNull: boolean;1984 readonly isDepositAsset: boolean;1985 readonly asDepositAsset: {1986 readonly assets: Vec<XcmV0MultiAsset>;1987 readonly dest: XcmV0MultiLocation;1988 } & Struct;1989 readonly isDepositReserveAsset: boolean;1990 readonly asDepositReserveAsset: {1991 readonly assets: Vec<XcmV0MultiAsset>;1992 readonly dest: XcmV0MultiLocation;1993 readonly effects: Vec<XcmV0Order>;1994 } & Struct;1995 readonly isExchangeAsset: boolean;1996 readonly asExchangeAsset: {1997 readonly give: Vec<XcmV0MultiAsset>;1998 readonly receive: Vec<XcmV0MultiAsset>;1999 } & Struct;2000 readonly isInitiateReserveWithdraw: boolean;2001 readonly asInitiateReserveWithdraw: {2002 readonly assets: Vec<XcmV0MultiAsset>;2003 readonly reserve: XcmV0MultiLocation;2004 readonly effects: Vec<XcmV0Order>;2005 } & Struct;2006 readonly isInitiateTeleport: boolean;2007 readonly asInitiateTeleport: {2008 readonly assets: Vec<XcmV0MultiAsset>;2009 readonly dest: XcmV0MultiLocation;2010 readonly effects: Vec<XcmV0Order>;2011 } & Struct;2012 readonly isQueryHolding: boolean;2013 readonly asQueryHolding: {2014 readonly queryId: Compact<u64>;2015 readonly dest: XcmV0MultiLocation;2016 readonly assets: Vec<XcmV0MultiAsset>;2017 } & Struct;2018 readonly isBuyExecution: boolean;2019 readonly asBuyExecution: {2020 readonly fees: XcmV0MultiAsset;2021 readonly weight: u64;2022 readonly debt: u64;2023 readonly haltOnError: bool;2024 readonly xcm: Vec<XcmV0Xcm>;2025 } & Struct;2026 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2027}20282029/** @name XcmV0OriginKind */2030export interface XcmV0OriginKind extends Enum {2031 readonly isNative: boolean;2032 readonly isSovereignAccount: boolean;2033 readonly isSuperuser: boolean;2034 readonly isXcm: boolean;2035 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';2036}20372038/** @name XcmV0Response */2039export interface XcmV0Response extends Enum {2040 readonly isAssets: boolean;2041 readonly asAssets: Vec<XcmV0MultiAsset>;2042 readonly type: 'Assets';2043}20442045/** @name XcmV0Xcm */2046export interface XcmV0Xcm extends Enum {2047 readonly isWithdrawAsset: boolean;2048 readonly asWithdrawAsset: {2049 readonly assets: Vec<XcmV0MultiAsset>;2050 readonly effects: Vec<XcmV0Order>;2051 } & Struct;2052 readonly isReserveAssetDeposit: boolean;2053 readonly asReserveAssetDeposit: {2054 readonly assets: Vec<XcmV0MultiAsset>;2055 readonly effects: Vec<XcmV0Order>;2056 } & Struct;2057 readonly isTeleportAsset: boolean;2058 readonly asTeleportAsset: {2059 readonly assets: Vec<XcmV0MultiAsset>;2060 readonly effects: Vec<XcmV0Order>;2061 } & Struct;2062 readonly isQueryResponse: boolean;2063 readonly asQueryResponse: {2064 readonly queryId: Compact<u64>;2065 readonly response: XcmV0Response;2066 } & Struct;2067 readonly isTransferAsset: boolean;2068 readonly asTransferAsset: {2069 readonly assets: Vec<XcmV0MultiAsset>;2070 readonly dest: XcmV0MultiLocation;2071 } & Struct;2072 readonly isTransferReserveAsset: boolean;2073 readonly asTransferReserveAsset: {2074 readonly assets: Vec<XcmV0MultiAsset>;2075 readonly dest: XcmV0MultiLocation;2076 readonly effects: Vec<XcmV0Order>;2077 } & Struct;2078 readonly isTransact: boolean;2079 readonly asTransact: {2080 readonly originType: XcmV0OriginKind;2081 readonly requireWeightAtMost: u64;2082 readonly call: XcmDoubleEncoded;2083 } & Struct;2084 readonly isHrmpNewChannelOpenRequest: boolean;2085 readonly asHrmpNewChannelOpenRequest: {2086 readonly sender: Compact<u32>;2087 readonly maxMessageSize: Compact<u32>;2088 readonly maxCapacity: Compact<u32>;2089 } & Struct;2090 readonly isHrmpChannelAccepted: boolean;2091 readonly asHrmpChannelAccepted: {2092 readonly recipient: Compact<u32>;2093 } & Struct;2094 readonly isHrmpChannelClosing: boolean;2095 readonly asHrmpChannelClosing: {2096 readonly initiator: Compact<u32>;2097 readonly sender: Compact<u32>;2098 readonly recipient: Compact<u32>;2099 } & Struct;2100 readonly isRelayedFrom: boolean;2101 readonly asRelayedFrom: {2102 readonly who: XcmV0MultiLocation;2103 readonly message: XcmV0Xcm;2104 } & Struct;2105 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2106}21072108/** @name XcmV1Junction */2109export interface XcmV1Junction extends Enum {2110 readonly isParachain: boolean;2111 readonly asParachain: Compact<u32>;2112 readonly isAccountId32: boolean;2113 readonly asAccountId32: {2114 readonly network: XcmV0JunctionNetworkId;2115 readonly id: U8aFixed;2116 } & Struct;2117 readonly isAccountIndex64: boolean;2118 readonly asAccountIndex64: {2119 readonly network: XcmV0JunctionNetworkId;2120 readonly index: Compact<u64>;2121 } & Struct;2122 readonly isAccountKey20: boolean;2123 readonly asAccountKey20: {2124 readonly network: XcmV0JunctionNetworkId;2125 readonly key: U8aFixed;2126 } & Struct;2127 readonly isPalletInstance: boolean;2128 readonly asPalletInstance: u8;2129 readonly isGeneralIndex: boolean;2130 readonly asGeneralIndex: Compact<u128>;2131 readonly isGeneralKey: boolean;2132 readonly asGeneralKey: Bytes;2133 readonly isOnlyChild: boolean;2134 readonly isPlurality: boolean;2135 readonly asPlurality: {2136 readonly id: XcmV0JunctionBodyId;2137 readonly part: XcmV0JunctionBodyPart;2138 } & Struct;2139 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';2140}21412142/** @name XcmV1MultiAsset */2143export interface XcmV1MultiAsset extends Struct {2144 readonly id: XcmV1MultiassetAssetId;2145 readonly fun: XcmV1MultiassetFungibility;2146}21472148/** @name XcmV1MultiassetAssetId */2149export interface XcmV1MultiassetAssetId extends Enum {2150 readonly isConcrete: boolean;2151 readonly asConcrete: XcmV1MultiLocation;2152 readonly isAbstract: boolean;2153 readonly asAbstract: Bytes;2154 readonly type: 'Concrete' | 'Abstract';2155}21562157/** @name XcmV1MultiassetAssetInstance */2158export interface XcmV1MultiassetAssetInstance extends Enum {2159 readonly isUndefined: boolean;2160 readonly isIndex: boolean;2161 readonly asIndex: Compact<u128>;2162 readonly isArray4: boolean;2163 readonly asArray4: U8aFixed;2164 readonly isArray8: boolean;2165 readonly asArray8: U8aFixed;2166 readonly isArray16: boolean;2167 readonly asArray16: U8aFixed;2168 readonly isArray32: boolean;2169 readonly asArray32: U8aFixed;2170 readonly isBlob: boolean;2171 readonly asBlob: Bytes;2172 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';2173}21742175/** @name XcmV1MultiassetFungibility */2176export interface XcmV1MultiassetFungibility extends Enum {2177 readonly isFungible: boolean;2178 readonly asFungible: Compact<u128>;2179 readonly isNonFungible: boolean;2180 readonly asNonFungible: XcmV1MultiassetAssetInstance;2181 readonly type: 'Fungible' | 'NonFungible';2182}21832184/** @name XcmV1MultiassetMultiAssetFilter */2185export interface XcmV1MultiassetMultiAssetFilter extends Enum {2186 readonly isDefinite: boolean;2187 readonly asDefinite: XcmV1MultiassetMultiAssets;2188 readonly isWild: boolean;2189 readonly asWild: XcmV1MultiassetWildMultiAsset;2190 readonly type: 'Definite' | 'Wild';2191}21922193/** @name XcmV1MultiassetMultiAssets */2194export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}21952196/** @name XcmV1MultiassetWildFungibility */2197export interface XcmV1MultiassetWildFungibility extends Enum {2198 readonly isFungible: boolean;2199 readonly isNonFungible: boolean;2200 readonly type: 'Fungible' | 'NonFungible';2201}22022203/** @name XcmV1MultiassetWildMultiAsset */2204export interface XcmV1MultiassetWildMultiAsset extends Enum {2205 readonly isAll: boolean;2206 readonly isAllOf: boolean;2207 readonly asAllOf: {2208 readonly id: XcmV1MultiassetAssetId;2209 readonly fun: XcmV1MultiassetWildFungibility;2210 } & Struct;2211 readonly type: 'All' | 'AllOf';2212}22132214/** @name XcmV1MultiLocation */2215export interface XcmV1MultiLocation extends Struct {2216 readonly parents: u8;2217 readonly interior: XcmV1MultilocationJunctions;2218}22192220/** @name XcmV1MultilocationJunctions */2221export interface XcmV1MultilocationJunctions extends Enum {2222 readonly isHere: boolean;2223 readonly isX1: boolean;2224 readonly asX1: XcmV1Junction;2225 readonly isX2: boolean;2226 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;2227 readonly isX3: boolean;2228 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2229 readonly isX4: boolean;2230 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2231 readonly isX5: boolean;2232 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2233 readonly isX6: boolean;2234 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2235 readonly isX7: boolean;2236 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2237 readonly isX8: boolean;2238 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;2239 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';2240}22412242/** @name XcmV1Order */2243export interface XcmV1Order extends Enum {2244 readonly isNoop: boolean;2245 readonly isDepositAsset: boolean;2246 readonly asDepositAsset: {2247 readonly assets: XcmV1MultiassetMultiAssetFilter;2248 readonly maxAssets: u32;2249 readonly beneficiary: XcmV1MultiLocation;2250 } & Struct;2251 readonly isDepositReserveAsset: boolean;2252 readonly asDepositReserveAsset: {2253 readonly assets: XcmV1MultiassetMultiAssetFilter;2254 readonly maxAssets: u32;2255 readonly dest: XcmV1MultiLocation;2256 readonly effects: Vec<XcmV1Order>;2257 } & Struct;2258 readonly isExchangeAsset: boolean;2259 readonly asExchangeAsset: {2260 readonly give: XcmV1MultiassetMultiAssetFilter;2261 readonly receive: XcmV1MultiassetMultiAssets;2262 } & Struct;2263 readonly isInitiateReserveWithdraw: boolean;2264 readonly asInitiateReserveWithdraw: {2265 readonly assets: XcmV1MultiassetMultiAssetFilter;2266 readonly reserve: XcmV1MultiLocation;2267 readonly effects: Vec<XcmV1Order>;2268 } & Struct;2269 readonly isInitiateTeleport: boolean;2270 readonly asInitiateTeleport: {2271 readonly assets: XcmV1MultiassetMultiAssetFilter;2272 readonly dest: XcmV1MultiLocation;2273 readonly effects: Vec<XcmV1Order>;2274 } & Struct;2275 readonly isQueryHolding: boolean;2276 readonly asQueryHolding: {2277 readonly queryId: Compact<u64>;2278 readonly dest: XcmV1MultiLocation;2279 readonly assets: XcmV1MultiassetMultiAssetFilter;2280 } & Struct;2281 readonly isBuyExecution: boolean;2282 readonly asBuyExecution: {2283 readonly fees: XcmV1MultiAsset;2284 readonly weight: u64;2285 readonly debt: u64;2286 readonly haltOnError: bool;2287 readonly instructions: Vec<XcmV1Xcm>;2288 } & Struct;2289 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2290}22912292/** @name XcmV1Response */2293export interface XcmV1Response extends Enum {2294 readonly isAssets: boolean;2295 readonly asAssets: XcmV1MultiassetMultiAssets;2296 readonly isVersion: boolean;2297 readonly asVersion: u32;2298 readonly type: 'Assets' | 'Version';2299}23002301/** @name XcmV1Xcm */2302export interface XcmV1Xcm extends Enum {2303 readonly isWithdrawAsset: boolean;2304 readonly asWithdrawAsset: {2305 readonly assets: XcmV1MultiassetMultiAssets;2306 readonly effects: Vec<XcmV1Order>;2307 } & Struct;2308 readonly isReserveAssetDeposited: boolean;2309 readonly asReserveAssetDeposited: {2310 readonly assets: XcmV1MultiassetMultiAssets;2311 readonly effects: Vec<XcmV1Order>;2312 } & Struct;2313 readonly isReceiveTeleportedAsset: boolean;2314 readonly asReceiveTeleportedAsset: {2315 readonly assets: XcmV1MultiassetMultiAssets;2316 readonly effects: Vec<XcmV1Order>;2317 } & Struct;2318 readonly isQueryResponse: boolean;2319 readonly asQueryResponse: {2320 readonly queryId: Compact<u64>;2321 readonly response: XcmV1Response;2322 } & Struct;2323 readonly isTransferAsset: boolean;2324 readonly asTransferAsset: {2325 readonly assets: XcmV1MultiassetMultiAssets;2326 readonly beneficiary: XcmV1MultiLocation;2327 } & Struct;2328 readonly isTransferReserveAsset: boolean;2329 readonly asTransferReserveAsset: {2330 readonly assets: XcmV1MultiassetMultiAssets;2331 readonly dest: XcmV1MultiLocation;2332 readonly effects: Vec<XcmV1Order>;2333 } & Struct;2334 readonly isTransact: boolean;2335 readonly asTransact: {2336 readonly originType: XcmV0OriginKind;2337 readonly requireWeightAtMost: u64;2338 readonly call: XcmDoubleEncoded;2339 } & Struct;2340 readonly isHrmpNewChannelOpenRequest: boolean;2341 readonly asHrmpNewChannelOpenRequest: {2342 readonly sender: Compact<u32>;2343 readonly maxMessageSize: Compact<u32>;2344 readonly maxCapacity: Compact<u32>;2345 } & Struct;2346 readonly isHrmpChannelAccepted: boolean;2347 readonly asHrmpChannelAccepted: {2348 readonly recipient: Compact<u32>;2349 } & Struct;2350 readonly isHrmpChannelClosing: boolean;2351 readonly asHrmpChannelClosing: {2352 readonly initiator: Compact<u32>;2353 readonly sender: Compact<u32>;2354 readonly recipient: Compact<u32>;2355 } & Struct;2356 readonly isRelayedFrom: boolean;2357 readonly asRelayedFrom: {2358 readonly who: XcmV1MultilocationJunctions;2359 readonly message: XcmV1Xcm;2360 } & Struct;2361 readonly isSubscribeVersion: boolean;2362 readonly asSubscribeVersion: {2363 readonly queryId: Compact<u64>;2364 readonly maxResponseWeight: Compact<u64>;2365 } & Struct;2366 readonly isUnsubscribeVersion: boolean;2367 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2368}23692370/** @name XcmV2Instruction */2371export interface XcmV2Instruction extends Enum {2372 readonly isWithdrawAsset: boolean;2373 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;2374 readonly isReserveAssetDeposited: boolean;2375 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;2376 readonly isReceiveTeleportedAsset: boolean;2377 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;2378 readonly isQueryResponse: boolean;2379 readonly asQueryResponse: {2380 readonly queryId: Compact<u64>;2381 readonly response: XcmV2Response;2382 readonly maxWeight: Compact<u64>;2383 } & Struct;2384 readonly isTransferAsset: boolean;2385 readonly asTransferAsset: {2386 readonly assets: XcmV1MultiassetMultiAssets;2387 readonly beneficiary: XcmV1MultiLocation;2388 } & Struct;2389 readonly isTransferReserveAsset: boolean;2390 readonly asTransferReserveAsset: {2391 readonly assets: XcmV1MultiassetMultiAssets;2392 readonly dest: XcmV1MultiLocation;2393 readonly xcm: XcmV2Xcm;2394 } & Struct;2395 readonly isTransact: boolean;2396 readonly asTransact: {2397 readonly originType: XcmV0OriginKind;2398 readonly requireWeightAtMost: Compact<u64>;2399 readonly call: XcmDoubleEncoded;2400 } & Struct;2401 readonly isHrmpNewChannelOpenRequest: boolean;2402 readonly asHrmpNewChannelOpenRequest: {2403 readonly sender: Compact<u32>;2404 readonly maxMessageSize: Compact<u32>;2405 readonly maxCapacity: Compact<u32>;2406 } & Struct;2407 readonly isHrmpChannelAccepted: boolean;2408 readonly asHrmpChannelAccepted: {2409 readonly recipient: Compact<u32>;2410 } & Struct;2411 readonly isHrmpChannelClosing: boolean;2412 readonly asHrmpChannelClosing: {2413 readonly initiator: Compact<u32>;2414 readonly sender: Compact<u32>;2415 readonly recipient: Compact<u32>;2416 } & Struct;2417 readonly isClearOrigin: boolean;2418 readonly isDescendOrigin: boolean;2419 readonly asDescendOrigin: XcmV1MultilocationJunctions;2420 readonly isReportError: boolean;2421 readonly asReportError: {2422 readonly queryId: Compact<u64>;2423 readonly dest: XcmV1MultiLocation;2424 readonly maxResponseWeight: Compact<u64>;2425 } & Struct;2426 readonly isDepositAsset: boolean;2427 readonly asDepositAsset: {2428 readonly assets: XcmV1MultiassetMultiAssetFilter;2429 readonly maxAssets: Compact<u32>;2430 readonly beneficiary: XcmV1MultiLocation;2431 } & Struct;2432 readonly isDepositReserveAsset: boolean;2433 readonly asDepositReserveAsset: {2434 readonly assets: XcmV1MultiassetMultiAssetFilter;2435 readonly maxAssets: Compact<u32>;2436 readonly dest: XcmV1MultiLocation;2437 readonly xcm: XcmV2Xcm;2438 } & Struct;2439 readonly isExchangeAsset: boolean;2440 readonly asExchangeAsset: {2441 readonly give: XcmV1MultiassetMultiAssetFilter;2442 readonly receive: XcmV1MultiassetMultiAssets;2443 } & Struct;2444 readonly isInitiateReserveWithdraw: boolean;2445 readonly asInitiateReserveWithdraw: {2446 readonly assets: XcmV1MultiassetMultiAssetFilter;2447 readonly reserve: XcmV1MultiLocation;2448 readonly xcm: XcmV2Xcm;2449 } & Struct;2450 readonly isInitiateTeleport: boolean;2451 readonly asInitiateTeleport: {2452 readonly assets: XcmV1MultiassetMultiAssetFilter;2453 readonly dest: XcmV1MultiLocation;2454 readonly xcm: XcmV2Xcm;2455 } & Struct;2456 readonly isQueryHolding: boolean;2457 readonly asQueryHolding: {2458 readonly queryId: Compact<u64>;2459 readonly dest: XcmV1MultiLocation;2460 readonly assets: XcmV1MultiassetMultiAssetFilter;2461 readonly maxResponseWeight: Compact<u64>;2462 } & Struct;2463 readonly isBuyExecution: boolean;2464 readonly asBuyExecution: {2465 readonly fees: XcmV1MultiAsset;2466 readonly weightLimit: XcmV2WeightLimit;2467 } & Struct;2468 readonly isRefundSurplus: boolean;2469 readonly isSetErrorHandler: boolean;2470 readonly asSetErrorHandler: XcmV2Xcm;2471 readonly isSetAppendix: boolean;2472 readonly asSetAppendix: XcmV2Xcm;2473 readonly isClearError: boolean;2474 readonly isClaimAsset: boolean;2475 readonly asClaimAsset: {2476 readonly assets: XcmV1MultiassetMultiAssets;2477 readonly ticket: XcmV1MultiLocation;2478 } & Struct;2479 readonly isTrap: boolean;2480 readonly asTrap: Compact<u64>;2481 readonly isSubscribeVersion: boolean;2482 readonly asSubscribeVersion: {2483 readonly queryId: Compact<u64>;2484 readonly maxResponseWeight: Compact<u64>;2485 } & Struct;2486 readonly isUnsubscribeVersion: boolean;2487 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';2488}24892490/** @name XcmV2Response */2491export interface XcmV2Response extends Enum {2492 readonly isNull: boolean;2493 readonly isAssets: boolean;2494 readonly asAssets: XcmV1MultiassetMultiAssets;2495 readonly isExecutionResult: boolean;2496 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;2497 readonly isVersion: boolean;2498 readonly asVersion: u32;2499 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';2500}25012502/** @name XcmV2TraitsError */2503export interface XcmV2TraitsError extends Enum {2504 readonly isOverflow: boolean;2505 readonly isUnimplemented: boolean;2506 readonly isUntrustedReserveLocation: boolean;2507 readonly isUntrustedTeleportLocation: boolean;2508 readonly isMultiLocationFull: boolean;2509 readonly isMultiLocationNotInvertible: boolean;2510 readonly isBadOrigin: boolean;2511 readonly isInvalidLocation: boolean;2512 readonly isAssetNotFound: boolean;2513 readonly isFailedToTransactAsset: boolean;2514 readonly isNotWithdrawable: boolean;2515 readonly isLocationCannotHold: boolean;2516 readonly isExceedsMaxMessageSize: boolean;2517 readonly isDestinationUnsupported: boolean;2518 readonly isTransport: boolean;2519 readonly isUnroutable: boolean;2520 readonly isUnknownClaim: boolean;2521 readonly isFailedToDecode: boolean;2522 readonly isMaxWeightInvalid: boolean;2523 readonly isNotHoldingFees: boolean;2524 readonly isTooExpensive: boolean;2525 readonly isTrap: boolean;2526 readonly asTrap: u64;2527 readonly isUnhandledXcmVersion: boolean;2528 readonly isWeightLimitReached: boolean;2529 readonly asWeightLimitReached: u64;2530 readonly isBarrier: boolean;2531 readonly isWeightNotComputable: boolean;2532 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';2533}25342535/** @name XcmV2TraitsOutcome */2536export interface XcmV2TraitsOutcome extends Enum {2537 readonly isComplete: boolean;2538 readonly asComplete: u64;2539 readonly isIncomplete: boolean;2540 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;2541 readonly isError: boolean;2542 readonly asError: XcmV2TraitsError;2543 readonly type: 'Complete' | 'Incomplete' | 'Error';2544}25452546/** @name XcmV2WeightLimit */2547export interface XcmV2WeightLimit extends Enum {2548 readonly isUnlimited: boolean;2549 readonly isLimited: boolean;2550 readonly asLimited: Compact<u64>;2551 readonly type: 'Unlimited' | 'Limited';2552}25532554/** @name XcmV2Xcm */2555export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}25562557/** @name XcmVersionedMultiAssets */2558export interface XcmVersionedMultiAssets extends Enum {2559 readonly isV0: boolean;2560 readonly asV0: Vec<XcmV0MultiAsset>;2561 readonly isV1: boolean;2562 readonly asV1: XcmV1MultiassetMultiAssets;2563 readonly type: 'V0' | 'V1';2564}25652566/** @name XcmVersionedMultiLocation */2567export interface XcmVersionedMultiLocation extends Enum {2568 readonly isV0: boolean;2569 readonly asV0: XcmV0MultiLocation;2570 readonly isV1: boolean;2571 readonly asV1: XcmV1MultiLocation;2572 readonly type: 'V0' | 'V1';2573}25742575/** @name XcmVersionedXcm */2576export interface XcmVersionedXcm extends Enum {2577 readonly isV0: boolean;2578 readonly asV0: XcmV0Xcm;2579 readonly isV1: boolean;2580 readonly asV1: XcmV1Xcm;2581 readonly isV2: boolean;2582 readonly asV2: XcmV2Xcm;2583 readonly type: 'V0' | 'V1' | 'V2';2584}25852586export type PHANTOM_UNIQUE = 'unique';