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.tsdiffbeforeafterboth259 PalletBalancesError: {259 PalletBalancesError: {260 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']260 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']261 },261 },262 /**262 /**263 * Lookup60: pallet_timestamp::pallet::Call<T>263 * Lookup61: pallet_timestamp::pallet::Call<T>264 **/264 **/265 PalletTimestampCall: {265 PalletTimestampCall: {266 _enum: {266 _enum: {267 set: {267 set: {268 now: 'Compact<u64>'268 now: 'Compact<u64>'269 }269 }270 }270 }271 },271 },272 /**272 /**273 * Lookup63: pallet_transaction_payment::Releases273 * Lookup64: pallet_transaction_payment::Releases274 **/274 **/275 PalletTransactionPaymentReleases: {275 PalletTransactionPaymentReleases: {276 _enum: ['V1Ancient', 'V2']276 _enum: ['V1Ancient', 'V2']277 },277 },278 /**278 /**279 * Lookup65: frame_support::weights::WeightToFeeCoefficient<Balance>279 * Lookup66: frame_support::weights::WeightToFeeCoefficient<Balance>280 **/280 **/281 FrameSupportWeightsWeightToFeeCoefficient: {281 FrameSupportWeightsWeightToFeeCoefficient: {282 coeffInteger: 'u128',282 coeffInteger: 'u128',283 coeffFrac: 'Perbill',283 coeffFrac: 'Perbill',284 negative: 'bool',284 negative: 'bool',285 degree: 'u8'285 degree: 'u8'286 },286 },287 /**287 /**288 * Lookup67: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>288 * Lookup68: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>289 **/289 **/290 PalletTreasuryProposal: {290 PalletTreasuryProposal: {291 proposer: 'AccountId32',291 proposer: 'AccountId32',292 value: 'u128',292 value: 'u128',293 beneficiary: 'AccountId32',293 beneficiary: 'AccountId32',294 bond: 'u128'294 bond: 'u128'295 },295 },296 /**296 /**297 * Lookup70: pallet_treasury::pallet::Call<T, I>297 * Lookup71: pallet_treasury::pallet::Call<T, I>298 **/298 **/299 PalletTreasuryCall: {299 PalletTreasuryCall: {300 _enum: {300 _enum: {301 propose_spend: {301 propose_spend: {310 }310 }311 }311 }312 },312 },313 /**313 /**314 * Lookup72: pallet_treasury::pallet::Event<T, I>314 * Lookup73: pallet_treasury::pallet::Event<T, I>315 **/315 **/316 PalletTreasuryEvent: {316 PalletTreasuryEvent: {317 _enum: {317 _enum: {318 Proposed: {318 Proposed: {341 }341 }342 }342 }343 },343 },344 /**344 /**345 * Lookup75: frame_support::PalletId345 * Lookup76: frame_support::PalletId346 **/346 **/347 FrameSupportPalletId: '[u8;8]',347 FrameSupportPalletId: '[u8;8]',348 /**348 /**349 * Lookup76: pallet_treasury::pallet::Error<T, I>349 * Lookup77: pallet_treasury::pallet::Error<T, I>350 **/350 **/351 PalletTreasuryError: {351 PalletTreasuryError: {352 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals']352 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals']353 },353 },354 /**354 /**355 * Lookup77: pallet_sudo::pallet::Call<T>355 * Lookup78: pallet_sudo::pallet::Call<T>356 **/356 **/357 PalletSudoCall: {357 PalletSudoCall: {358 _enum: {358 _enum: {359 sudo: {359 sudo: {375 }375 }376 }376 }377 },377 },378 /**378 /**379 * Lookup79: frame_system::pallet::Call<T>379 * Lookup80: frame_system::pallet::Call<T>380 **/380 **/381 FrameSystemCall: {381 FrameSystemCall: {382 _enum: {382 _enum: {383 fill_block: {383 fill_block: {413 }413 }414 }414 }415 },415 },416 /**416 /**417 * Lookup82: orml_vesting::module::Call<T>417 * Lookup83: orml_vesting::module::Call<T>418 **/418 **/419 OrmlVestingModuleCall: {419 OrmlVestingModuleCall: {420 _enum: {420 _enum: {421 claim: 'Null',421 claim: 'Null',432 }432 }433 }433 }434 },434 },435 /**435 /**436 * Lookup83: orml_vesting::VestingSchedule<BlockNumber, Balance>436 * Lookup84: orml_vesting::VestingSchedule<BlockNumber, Balance>437 **/437 **/438 OrmlVestingVestingSchedule: {438 OrmlVestingVestingSchedule: {439 start: 'u32',439 start: 'u32',440 period: 'u32',440 period: 'u32',441 periodCount: 'u32',441 periodCount: 'u32',442 perPeriod: 'Compact<u128>'442 perPeriod: 'Compact<u128>'443 },443 },444 /**444 /**445 * Lookup85: cumulus_pallet_xcmp_queue::pallet::Call<T>445 * Lookup86: cumulus_pallet_xcmp_queue::pallet::Call<T>446 **/446 **/447 CumulusPalletXcmpQueueCall: {447 CumulusPalletXcmpQueueCall: {448 _enum: {448 _enum: {449 service_overweight: {449 service_overweight: {450 index: 'u64',450 index: 'u64',451 weightLimit: 'u64'451 weightLimit: 'u64',452 }452 },453 suspend_xcm_execution: 'Null',454 resume_xcm_execution: 'Null',455 update_suspend_threshold: {456 _alias: {457 new_: 'new',458 },459 new_: 'u32',460 },461 update_drop_threshold: {462 _alias: {463 new_: 'new',464 },465 new_: 'u32',466 },467 update_resume_threshold: {468 _alias: {469 new_: 'new',470 },471 new_: 'u32',472 },473 update_threshold_weight: {474 _alias: {475 new_: 'new',476 },477 new_: 'u64',478 },479 update_weight_restrict_decay: {480 _alias: {481 new_: 'new',482 },483 new_: 'u64',484 },485 update_xcmp_max_individual_weight: {486 _alias: {487 new_: 'new',488 },489 new_: 'u64'490 }453 }491 }454 },492 },455 /**493 /**456 * Lookup86: pallet_xcm::pallet::Call<T>494 * Lookup87: pallet_xcm::pallet::Call<T>457 **/495 **/458 PalletXcmCall: {496 PalletXcmCall: {459 _enum: {497 _enum: {460 send: {498 send: {506 }544 }507 }545 }508 },546 },509 /**547 /**510 * Lookup87: xcm::VersionedMultiLocation548 * Lookup88: xcm::VersionedMultiLocation511 **/549 **/512 XcmVersionedMultiLocation: {550 XcmVersionedMultiLocation: {513 _enum: {551 _enum: {514 V0: 'XcmV0MultiLocation',552 V0: 'XcmV0MultiLocation',515 V1: 'XcmV1MultiLocation'553 V1: 'XcmV1MultiLocation'516 }554 }517 },555 },518 /**556 /**519 * Lookup88: xcm::v0::multi_location::MultiLocation557 * Lookup89: xcm::v0::multi_location::MultiLocation520 **/558 **/521 XcmV0MultiLocation: {559 XcmV0MultiLocation: {522 _enum: {560 _enum: {523 Null: 'Null',561 Null: 'Null',531 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'569 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'532 }570 }533 },571 },534 /**572 /**535 * Lookup89: xcm::v0::junction::Junction573 * Lookup90: xcm::v0::junction::Junction536 **/574 **/537 XcmV0Junction: {575 XcmV0Junction: {538 _enum: {576 _enum: {539 Parent: 'Null',577 Parent: 'Null',560 }598 }561 }599 }562 },600 },563 /**601 /**564 * Lookup90: xcm::v0::junction::NetworkId602 * Lookup91: xcm::v0::junction::NetworkId565 **/603 **/566 XcmV0JunctionNetworkId: {604 XcmV0JunctionNetworkId: {567 _enum: {605 _enum: {568 Any: 'Null',606 Any: 'Null',571 Kusama: 'Null'609 Kusama: 'Null'572 }610 }573 },611 },574 /**612 /**575 * Lookup91: xcm::v0::junction::BodyId613 * Lookup92: xcm::v0::junction::BodyId576 **/614 **/577 XcmV0JunctionBodyId: {615 XcmV0JunctionBodyId: {578 _enum: {616 _enum: {579 Unit: 'Null',617 Unit: 'Null',585 Judicial: 'Null'623 Judicial: 'Null'586 }624 }587 },625 },588 /**626 /**589 * Lookup92: xcm::v0::junction::BodyPart627 * Lookup93: xcm::v0::junction::BodyPart590 **/628 **/591 XcmV0JunctionBodyPart: {629 XcmV0JunctionBodyPart: {592 _enum: {630 _enum: {593 Voice: 'Null',631 Voice: 'Null',608 }646 }609 }647 }610 },648 },611 /**649 /**612 * Lookup93: xcm::v1::multilocation::MultiLocation650 * Lookup94: xcm::v1::multilocation::MultiLocation613 **/651 **/614 XcmV1MultiLocation: {652 XcmV1MultiLocation: {615 parents: 'u8',653 parents: 'u8',616 interior: 'XcmV1MultilocationJunctions'654 interior: 'XcmV1MultilocationJunctions'617 },655 },618 /**656 /**619 * Lookup94: xcm::v1::multilocation::Junctions657 * Lookup95: xcm::v1::multilocation::Junctions620 **/658 **/621 XcmV1MultilocationJunctions: {659 XcmV1MultilocationJunctions: {622 _enum: {660 _enum: {623 Here: 'Null',661 Here: 'Null',631 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'669 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'632 }670 }633 },671 },634 /**672 /**635 * Lookup95: xcm::v1::junction::Junction673 * Lookup96: xcm::v1::junction::Junction636 **/674 **/637 XcmV1Junction: {675 XcmV1Junction: {638 _enum: {676 _enum: {639 Parachain: 'Compact<u32>',677 Parachain: 'Compact<u32>',659 }697 }660 }698 }661 },699 },662 /**700 /**663 * Lookup96: xcm::VersionedXcm<Call>701 * Lookup97: xcm::VersionedXcm<Call>664 **/702 **/665 XcmVersionedXcm: {703 XcmVersionedXcm: {666 _enum: {704 _enum: {667 V0: 'XcmV0Xcm',705 V0: 'XcmV0Xcm',668 V1: 'XcmV1Xcm',706 V1: 'XcmV1Xcm',669 V2: 'XcmV2Xcm'707 V2: 'XcmV2Xcm'670 }708 }671 },709 },672 /**710 /**673 * Lookup97: xcm::v0::Xcm<Call>711 * Lookup98: xcm::v0::Xcm<Call>674 **/712 **/675 XcmV0Xcm: {713 XcmV0Xcm: {676 _enum: {714 _enum: {677 WithdrawAsset: {715 WithdrawAsset: {723 }761 }724 }762 }725 },763 },726 /**764 /**727 * Lookup99: xcm::v0::multi_asset::MultiAsset765 * Lookup100: xcm::v0::multi_asset::MultiAsset728 **/766 **/729 XcmV0MultiAsset: {767 XcmV0MultiAsset: {730 _enum: {768 _enum: {731 None: 'Null',769 None: 'Null',762 }800 }763 }801 }764 },802 },765 /**803 /**766 * Lookup100: xcm::v1::multiasset::AssetInstance804 * Lookup101: xcm::v1::multiasset::AssetInstance767 **/805 **/768 XcmV1MultiassetAssetInstance: {806 XcmV1MultiassetAssetInstance: {769 _enum: {807 _enum: {770 Undefined: 'Null',808 Undefined: 'Null',776 Blob: 'Bytes'814 Blob: 'Bytes'777 }815 }778 },816 },779 /**817 /**780 * Lookup104: xcm::v0::order::Order<Call>818 * Lookup105: xcm::v0::order::Order<Call>781 **/819 **/782 XcmV0Order: {820 XcmV0Order: {783 _enum: {821 _enum: {784 Null: 'Null',822 Null: 'Null',819 }857 }820 }858 }821 },859 },822 /**860 /**823 * Lookup106: xcm::v0::Response861 * Lookup107: xcm::v0::Response824 **/862 **/825 XcmV0Response: {863 XcmV0Response: {826 _enum: {864 _enum: {827 Assets: 'Vec<XcmV0MultiAsset>'865 Assets: 'Vec<XcmV0MultiAsset>'828 }866 }829 },867 },830 /**868 /**831 * Lookup107: xcm::v0::OriginKind869 * Lookup108: xcm::v0::OriginKind832 **/870 **/833 XcmV0OriginKind: {871 XcmV0OriginKind: {834 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']872 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']835 },873 },836 /**874 /**837 * Lookup108: xcm::double_encoded::DoubleEncoded<T>875 * Lookup109: xcm::double_encoded::DoubleEncoded<T>838 **/876 **/839 XcmDoubleEncoded: {877 XcmDoubleEncoded: {840 encoded: 'Bytes'878 encoded: 'Bytes'841 },879 },842 /**880 /**843 * Lookup109: xcm::v1::Xcm<Call>881 * Lookup110: xcm::v1::Xcm<Call>844 **/882 **/845 XcmV1Xcm: {883 XcmV1Xcm: {846 _enum: {884 _enum: {847 WithdrawAsset: {885 WithdrawAsset: {898 UnsubscribeVersion: 'Null'936 UnsubscribeVersion: 'Null'899 }937 }900 },938 },901 /**939 /**902 * Lookup110: xcm::v1::multiasset::MultiAssets940 * Lookup111: xcm::v1::multiasset::MultiAssets903 **/941 **/904 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',942 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',905 /**943 /**906 * Lookup112: xcm::v1::multiasset::MultiAsset944 * Lookup113: xcm::v1::multiasset::MultiAsset907 **/945 **/908 XcmV1MultiAsset: {946 XcmV1MultiAsset: {909 id: 'XcmV1MultiassetAssetId',947 id: 'XcmV1MultiassetAssetId',910 fun: 'XcmV1MultiassetFungibility'948 fun: 'XcmV1MultiassetFungibility'911 },949 },912 /**950 /**913 * Lookup113: xcm::v1::multiasset::AssetId951 * Lookup114: xcm::v1::multiasset::AssetId914 **/952 **/915 XcmV1MultiassetAssetId: {953 XcmV1MultiassetAssetId: {916 _enum: {954 _enum: {917 Concrete: 'XcmV1MultiLocation',955 Concrete: 'XcmV1MultiLocation',918 Abstract: 'Bytes'956 Abstract: 'Bytes'919 }957 }920 },958 },921 /**959 /**922 * Lookup114: xcm::v1::multiasset::Fungibility960 * Lookup115: xcm::v1::multiasset::Fungibility923 **/961 **/924 XcmV1MultiassetFungibility: {962 XcmV1MultiassetFungibility: {925 _enum: {963 _enum: {926 Fungible: 'Compact<u128>',964 Fungible: 'Compact<u128>',927 NonFungible: 'XcmV1MultiassetAssetInstance'965 NonFungible: 'XcmV1MultiassetAssetInstance'928 }966 }929 },967 },930 /**968 /**931 * Lookup116: xcm::v1::order::Order<Call>969 * Lookup117: xcm::v1::order::Order<Call>932 **/970 **/933 XcmV1Order: {971 XcmV1Order: {934 _enum: {972 _enum: {935 Noop: 'Null',973 Noop: 'Null',972 }1010 }973 }1011 }974 },1012 },975 /**1013 /**976 * Lookup117: xcm::v1::multiasset::MultiAssetFilter1014 * Lookup118: xcm::v1::multiasset::MultiAssetFilter977 **/1015 **/978 XcmV1MultiassetMultiAssetFilter: {1016 XcmV1MultiassetMultiAssetFilter: {979 _enum: {1017 _enum: {980 Definite: 'XcmV1MultiassetMultiAssets',1018 Definite: 'XcmV1MultiassetMultiAssets',981 Wild: 'XcmV1MultiassetWildMultiAsset'1019 Wild: 'XcmV1MultiassetWildMultiAsset'982 }1020 }983 },1021 },984 /**1022 /**985 * Lookup118: xcm::v1::multiasset::WildMultiAsset1023 * Lookup119: xcm::v1::multiasset::WildMultiAsset986 **/1024 **/987 XcmV1MultiassetWildMultiAsset: {1025 XcmV1MultiassetWildMultiAsset: {988 _enum: {1026 _enum: {989 All: 'Null',1027 All: 'Null',993 }1031 }994 }1032 }995 },1033 },996 /**1034 /**997 * Lookup119: xcm::v1::multiasset::WildFungibility1035 * Lookup120: xcm::v1::multiasset::WildFungibility998 **/1036 **/999 XcmV1MultiassetWildFungibility: {1037 XcmV1MultiassetWildFungibility: {1000 _enum: ['Fungible', 'NonFungible']1038 _enum: ['Fungible', 'NonFungible']1001 },1039 },1002 /**1040 /**1003 * Lookup121: xcm::v1::Response1041 * Lookup122: xcm::v1::Response1004 **/1042 **/1005 XcmV1Response: {1043 XcmV1Response: {1006 _enum: {1044 _enum: {1007 Assets: 'XcmV1MultiassetMultiAssets',1045 Assets: 'XcmV1MultiassetMultiAssets',1008 Version: 'u32'1046 Version: 'u32'1009 }1047 }1010 },1048 },1011 /**1049 /**1012 * Lookup122: xcm::v2::Xcm<Call>1050 * Lookup123: xcm::v2::Xcm<Call>1013 **/1051 **/1014 XcmV2Xcm: 'Vec<XcmV2Instruction>',1052 XcmV2Xcm: 'Vec<XcmV2Instruction>',1015 /**1053 /**1016 * Lookup124: xcm::v2::Instruction<Call>1054 * Lookup125: xcm::v2::Instruction<Call>1017 **/1055 **/1018 XcmV2Instruction: {1056 XcmV2Instruction: {1019 _enum: {1057 _enum: {1020 WithdrawAsset: 'XcmV1MultiassetMultiAssets',1058 WithdrawAsset: 'XcmV1MultiassetMultiAssets',1110 UnsubscribeVersion: 'Null'1148 UnsubscribeVersion: 'Null'1111 }1149 }1112 },1150 },1113 /**1151 /**1114 * Lookup125: xcm::v2::Response1152 * Lookup126: xcm::v2::Response1115 **/1153 **/1116 XcmV2Response: {1154 XcmV2Response: {1117 _enum: {1155 _enum: {1118 Null: 'Null',1156 Null: 'Null',1121 Version: 'u32'1159 Version: 'u32'1122 }1160 }1123 },1161 },1124 /**1162 /**1125 * Lookup128: xcm::v2::traits::Error1163 * Lookup129: xcm::v2::traits::Error1126 **/1164 **/1127 XcmV2TraitsError: {1165 XcmV2TraitsError: {1128 _enum: {1166 _enum: {1129 Overflow: 'Null',1167 Overflow: 'Null',1154 WeightNotComputable: 'Null'1192 WeightNotComputable: 'Null'1155 }1193 }1156 },1194 },1157 /**1195 /**1158 * Lookup129: xcm::v2::WeightLimit1196 * Lookup130: xcm::v2::WeightLimit1159 **/1197 **/1160 XcmV2WeightLimit: {1198 XcmV2WeightLimit: {1161 _enum: {1199 _enum: {1162 Unlimited: 'Null',1200 Unlimited: 'Null',1163 Limited: 'Compact<u64>'1201 Limited: 'Compact<u64>'1164 }1202 }1165 },1203 },1166 /**1204 /**1167 * Lookup130: xcm::VersionedMultiAssets1205 * Lookup131: xcm::VersionedMultiAssets1168 **/1206 **/1169 XcmVersionedMultiAssets: {1207 XcmVersionedMultiAssets: {1170 _enum: {1208 _enum: {1171 V0: 'Vec<XcmV0MultiAsset>',1209 V0: 'Vec<XcmV0MultiAsset>',1172 V1: 'XcmV1MultiassetMultiAssets'1210 V1: 'XcmV1MultiassetMultiAssets'1173 }1211 }1174 },1212 },1175 /**1213 /**1176 * Lookup145: cumulus_pallet_xcm::pallet::Call<T>1214 * Lookup146: cumulus_pallet_xcm::pallet::Call<T>1177 **/1215 **/1178 CumulusPalletXcmCall: 'Null',1216 CumulusPalletXcmCall: 'Null',1179 /**1217 /**1180 * Lookup146: cumulus_pallet_dmp_queue::pallet::Call<T>1218 * Lookup147: cumulus_pallet_dmp_queue::pallet::Call<T>1181 **/1219 **/1182 CumulusPalletDmpQueueCall: {1220 CumulusPalletDmpQueueCall: {1183 _enum: {1221 _enum: {1184 service_overweight: {1222 service_overweight: {1187 }1225 }1188 }1226 }1189 },1227 },1190 /**1228 /**1191 * Lookup147: pallet_inflation::pallet::Call<T>1229 * Lookup148: pallet_inflation::pallet::Call<T>1192 **/1230 **/1193 PalletInflationCall: {1231 PalletInflationCall: {1194 _enum: {1232 _enum: {1195 start_inflation: {1233 start_inflation: {1196 inflationStartRelayBlock: 'u32'1234 inflationStartRelayBlock: 'u32'1197 }1235 }1198 }1236 }1199 },1237 },1200 /**1238 /**1201 * Lookup148: pallet_unique::Call<T>1239 * Lookup149: pallet_unique::Call<T>1202 **/1240 **/1203 PalletUniqueCall: {1241 PalletUniqueCall: {1204 _enum: {1242 _enum: {1205 create_collection: {1243 create_collection: {1327 }1365 }1328 }1366 }1329 },1367 },1330 /**1368 /**1331 * Lookup154: up_data_structs::CollectionMode1369 * Lookup155: up_data_structs::CollectionMode1332 **/1370 **/1333 UpDataStructsCollectionMode: {1371 UpDataStructsCollectionMode: {1334 _enum: {1372 _enum: {1335 NFT: 'Null',1373 NFT: 'Null',1336 Fungible: 'u8',1374 Fungible: 'u8',1337 ReFungible: 'Null'1375 ReFungible: 'Null'1338 }1376 }1339 },1377 },1340 /**1378 /**1341 * Lookup155: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>1379 * Lookup156: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>1342 **/1380 **/1343 UpDataStructsCreateCollectionData: {1381 UpDataStructsCreateCollectionData: {1344 mode: 'UpDataStructsCollectionMode',1382 mode: 'UpDataStructsCollectionMode',1345 access: 'Option<UpDataStructsAccessMode>',1383 access: 'Option<UpDataStructsAccessMode>',1354 constOnChainSchema: 'Bytes',1392 constOnChainSchema: 'Bytes',1355 metaUpdatePermission: 'Option<UpDataStructsMetaUpdatePermission>'1393 metaUpdatePermission: 'Option<UpDataStructsMetaUpdatePermission>'1356 },1394 },1357 /**1395 /**1358 * Lookup157: up_data_structs::AccessMode1396 * Lookup158: up_data_structs::AccessMode1359 **/1397 **/1360 UpDataStructsAccessMode: {1398 UpDataStructsAccessMode: {1361 _enum: ['Normal', 'AllowList']1399 _enum: ['Normal', 'AllowList']1362 },1400 },1363 /**1401 /**1364 * Lookup160: up_data_structs::SchemaVersion1402 * Lookup161: up_data_structs::SchemaVersion1365 **/1403 **/1366 UpDataStructsSchemaVersion: {1404 UpDataStructsSchemaVersion: {1367 _enum: ['ImageURL', 'Unique']1405 _enum: ['ImageURL', 'Unique']1368 },1406 },1369 /**1407 /**1370 * Lookup163: up_data_structs::CollectionLimits1408 * Lookup164: up_data_structs::CollectionLimits1371 **/1409 **/1372 UpDataStructsCollectionLimits: {1410 UpDataStructsCollectionLimits: {1373 accountTokenOwnershipLimit: 'Option<u32>',1411 accountTokenOwnershipLimit: 'Option<u32>',1374 sponsoredDataSize: 'Option<u32>',1412 sponsoredDataSize: 'Option<u32>',1375 sponsoredDataRateLimit: 'Option<Option<u32>>',1413 sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',1376 tokenLimit: 'Option<u32>',1414 tokenLimit: 'Option<u32>',1377 sponsorTransferTimeout: 'Option<u32>',1415 sponsorTransferTimeout: 'Option<u32>',1378 sponsorApproveTimeout: 'Option<u32>',1416 sponsorApproveTimeout: 'Option<u32>',1379 ownerCanTransfer: 'Option<bool>',1417 ownerCanTransfer: 'Option<bool>',1380 ownerCanDestroy: 'Option<bool>',1418 ownerCanDestroy: 'Option<bool>',1381 transfersEnabled: 'Option<bool>'1419 transfersEnabled: 'Option<bool>'1382 },1420 },1421 /**1422 * Lookup166: up_data_structs::SponsoringRateLimit1423 **/1424 UpDataStructsSponsoringRateLimit: {1425 _enum: {1426 SponsoringDisabled: 'Null',1427 Blocks: 'u32'1428 }1429 },1383 /**1430 /**1384 * Lookup169: up_data_structs::MetaUpdatePermission1431 * Lookup170: up_data_structs::MetaUpdatePermission1385 **/1432 **/1386 UpDataStructsMetaUpdatePermission: {1433 UpDataStructsMetaUpdatePermission: {1387 _enum: ['ItemOwner', 'Admin', 'None']1434 _enum: ['ItemOwner', 'Admin', 'None']1388 },1435 },1389 /**1436 /**1390 * Lookup171: pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1437 * Lookup172: pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1391 **/1438 **/1392 PalletCommonAccountBasicCrossAccountIdRepr: {1439 PalletCommonAccountBasicCrossAccountIdRepr: {1393 _enum: {1440 _enum: {1394 Substrate: 'AccountId32',1441 Substrate: 'AccountId32',1395 Ethereum: 'H160'1442 Ethereum: 'H160'1396 }1443 }1397 },1444 },1398 /**1445 /**1399 * Lookup173: up_data_structs::CreateItemData1446 * Lookup174: up_data_structs::CreateItemData1400 **/1447 **/1401 UpDataStructsCreateItemData: {1448 UpDataStructsCreateItemData: {1402 _enum: {1449 _enum: {1403 NFT: 'UpDataStructsCreateNftData',1450 NFT: 'UpDataStructsCreateNftData',1404 Fungible: 'UpDataStructsCreateFungibleData',1451 Fungible: 'UpDataStructsCreateFungibleData',1405 ReFungible: 'UpDataStructsCreateReFungibleData'1452 ReFungible: 'UpDataStructsCreateReFungibleData'1406 }1453 }1407 },1454 },1408 /**1455 /**1409 * Lookup174: up_data_structs::CreateNftData1456 * Lookup175: up_data_structs::CreateNftData1410 **/1457 **/1411 UpDataStructsCreateNftData: {1458 UpDataStructsCreateNftData: {1412 constData: 'Bytes',1459 constData: 'Bytes',1413 variableData: 'Bytes'1460 variableData: 'Bytes'1414 },1461 },1415 /**1462 /**1416 * Lookup176: up_data_structs::CreateFungibleData1463 * Lookup177: up_data_structs::CreateFungibleData1417 **/1464 **/1418 UpDataStructsCreateFungibleData: {1465 UpDataStructsCreateFungibleData: {1419 value: 'u128'1466 value: 'u128'1420 },1467 },1421 /**1468 /**1422 * Lookup177: up_data_structs::CreateReFungibleData1469 * Lookup178: up_data_structs::CreateReFungibleData1423 **/1470 **/1424 UpDataStructsCreateReFungibleData: {1471 UpDataStructsCreateReFungibleData: {1425 constData: 'Bytes',1472 constData: 'Bytes',1426 variableData: 'Bytes',1473 variableData: 'Bytes',1427 pieces: 'u128'1474 pieces: 'u128'1428 },1475 },1429 /**1476 /**1430 * Lookup180: pallet_template_transaction_payment::Call<T>1477 * Lookup181: pallet_template_transaction_payment::Call<T>1431 **/1478 **/1432 PalletTemplateTransactionPaymentCall: 'Null',1479 PalletTemplateTransactionPaymentCall: 'Null',1433 /**1480 /**1434 * Lookup181: pallet_evm::pallet::Call<T>1481 * Lookup182: pallet_evm::pallet::Call<T>1435 **/1482 **/1436 PalletEvmCall: {1483 PalletEvmCall: {1437 _enum: {1484 _enum: {1438 withdraw: {1485 withdraw: {1473 }1520 }1474 }1521 }1475 },1522 },1476 /**1523 /**1477 * Lookup187: pallet_ethereum::pallet::Call<T>1524 * Lookup188: pallet_ethereum::pallet::Call<T>1478 **/1525 **/1479 PalletEthereumCall: {1526 PalletEthereumCall: {1480 _enum: {1527 _enum: {1481 transact: {1528 transact: {1482 transaction: 'EthereumTransactionTransactionV2'1529 transaction: 'EthereumTransactionTransactionV2'1483 }1530 }1484 }1531 }1485 },1532 },1486 /**1533 /**1487 * Lookup188: ethereum::transaction::TransactionV21534 * Lookup189: ethereum::transaction::TransactionV21488 **/1535 **/1489 EthereumTransactionTransactionV2: {1536 EthereumTransactionTransactionV2: {1490 _enum: {1537 _enum: {1491 Legacy: 'EthereumTransactionLegacyTransaction',1538 Legacy: 'EthereumTransactionLegacyTransaction',1492 EIP2930: 'EthereumTransactionEip2930Transaction',1539 EIP2930: 'EthereumTransactionEip2930Transaction',1493 EIP1559: 'EthereumTransactionEip1559Transaction'1540 EIP1559: 'EthereumTransactionEip1559Transaction'1494 }1541 }1495 },1542 },1496 /**1543 /**1497 * Lookup189: ethereum::transaction::LegacyTransaction1544 * Lookup190: ethereum::transaction::LegacyTransaction1498 **/1545 **/1499 EthereumTransactionLegacyTransaction: {1546 EthereumTransactionLegacyTransaction: {1500 nonce: 'U256',1547 nonce: 'U256',1501 gasPrice: 'U256',1548 gasPrice: 'U256',1505 input: 'Bytes',1552 input: 'Bytes',1506 signature: 'EthereumTransactionTransactionSignature'1553 signature: 'EthereumTransactionTransactionSignature'1507 },1554 },1508 /**1555 /**1509 * Lookup190: ethereum::transaction::TransactionAction1556 * Lookup191: ethereum::transaction::TransactionAction1510 **/1557 **/1511 EthereumTransactionTransactionAction: {1558 EthereumTransactionTransactionAction: {1512 _enum: {1559 _enum: {1513 Call: 'H160',1560 Call: 'H160',1514 Create: 'Null'1561 Create: 'Null'1515 }1562 }1516 },1563 },1517 /**1564 /**1518 * Lookup191: ethereum::transaction::TransactionSignature1565 * Lookup192: ethereum::transaction::TransactionSignature1519 **/1566 **/1520 EthereumTransactionTransactionSignature: {1567 EthereumTransactionTransactionSignature: {1521 v: 'u64',1568 v: 'u64',1522 r: 'H256',1569 r: 'H256',1523 s: 'H256'1570 s: 'H256'1524 },1571 },1525 /**1572 /**1526 * Lookup193: ethereum::transaction::EIP2930Transaction1573 * Lookup194: ethereum::transaction::EIP2930Transaction1527 **/1574 **/1528 EthereumTransactionEip2930Transaction: {1575 EthereumTransactionEip2930Transaction: {1529 chainId: 'u64',1576 chainId: 'u64',1530 nonce: 'U256',1577 nonce: 'U256',1538 r: 'H256',1585 r: 'H256',1539 s: 'H256'1586 s: 'H256'1540 },1587 },1541 /**1588 /**1542 * Lookup195: ethereum::transaction::AccessListItem1589 * Lookup196: ethereum::transaction::AccessListItem1543 **/1590 **/1544 EthereumTransactionAccessListItem: {1591 EthereumTransactionAccessListItem: {1545 address: 'H160',1592 address: 'H160',1546 slots: 'Vec<H256>'1593 slots: 'Vec<H256>'1547 },1594 },1548 /**1595 /**1549 * Lookup196: ethereum::transaction::EIP1559Transaction1596 * Lookup197: ethereum::transaction::EIP1559Transaction1550 **/1597 **/1551 EthereumTransactionEip1559Transaction: {1598 EthereumTransactionEip1559Transaction: {1552 chainId: 'u64',1599 chainId: 'u64',1553 nonce: 'U256',1600 nonce: 'U256',1562 r: 'H256',1609 r: 'H256',1563 s: 'H256'1610 s: 'H256'1564 },1611 },1565 /**1612 /**1566 * Lookup197: pallet_evm_migration::pallet::Call<T>1613 * Lookup198: pallet_evm_migration::pallet::Call<T>1567 **/1614 **/1568 PalletEvmMigrationCall: {1615 PalletEvmMigrationCall: {1569 _enum: {1616 _enum: {1570 begin: {1617 begin: {1580 }1627 }1581 }1628 }1582 },1629 },1583 /**1630 /**1584 * Lookup200: pallet_sudo::pallet::Event<T>1631 * Lookup201: pallet_sudo::pallet::Event<T>1585 **/1632 **/1586 PalletSudoEvent: {1633 PalletSudoEvent: {1587 _enum: {1634 _enum: {1588 Sudid: {1635 Sudid: {1596 }1643 }1597 }1644 }1598 },1645 },1599 /**1646 /**1600 * Lookup202: sp_runtime::DispatchError1647 * Lookup203: sp_runtime::DispatchError1601 **/1648 **/1602 SpRuntimeDispatchError: {1649 SpRuntimeDispatchError: {1603 _enum: {1650 _enum: {1604 Other: 'Null',1651 Other: 'Null',1605 CannotLookup: 'Null',1652 CannotLookup: 'Null',1606 BadOrigin: 'Null',1653 BadOrigin: 'Null',1607 Module: {1654 Module: 'SpRuntimeModuleError',1608 index: 'u8',1609 error: 'u8',1610 },1611 ConsumerRemaining: 'Null',1655 ConsumerRemaining: 'Null',1612 NoProviders: 'Null',1656 NoProviders: 'Null',1613 TooManyConsumers: 'Null',1657 TooManyConsumers: 'Null',1614 Token: 'SpRuntimeTokenError',1658 Token: 'SpRuntimeTokenError',1615 Arithmetic: 'SpRuntimeArithmeticError'1659 Arithmetic: 'SpRuntimeArithmeticError'1616 }1660 }1617 },1661 },1662 /**1663 * Lookup204: sp_runtime::ModuleError1664 **/1665 SpRuntimeModuleError: {1666 index: 'u8',1667 error: 'u8'1668 },1618 /**1669 /**1619 * Lookup203: sp_runtime::TokenError1670 * Lookup205: sp_runtime::TokenError1620 **/1671 **/1621 SpRuntimeTokenError: {1672 SpRuntimeTokenError: {1622 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']1673 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']1623 },1674 },1624 /**1675 /**1625 * Lookup204: sp_runtime::ArithmeticError1676 * Lookup206: sp_runtime::ArithmeticError1626 **/1677 **/1627 SpRuntimeArithmeticError: {1678 SpRuntimeArithmeticError: {1628 _enum: ['Underflow', 'Overflow', 'DivisionByZero']1679 _enum: ['Underflow', 'Overflow', 'DivisionByZero']1629 },1680 },1630 /**1681 /**1631 * Lookup205: pallet_sudo::pallet::Error<T>1682 * Lookup207: pallet_sudo::pallet::Error<T>1632 **/1683 **/1633 PalletSudoError: {1684 PalletSudoError: {1634 _enum: ['RequireSudo']1685 _enum: ['RequireSudo']1635 },1686 },1636 /**1687 /**1637 * Lookup206: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>1688 * Lookup208: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>1638 **/1689 **/1639 FrameSystemAccountInfo: {1690 FrameSystemAccountInfo: {1640 nonce: 'u32',1691 nonce: 'u32',1641 consumers: 'u32',1692 consumers: 'u32',1642 providers: 'u32',1693 providers: 'u32',1643 sufficients: 'u32',1694 sufficients: 'u32',1644 data: 'PalletBalancesAccountData'1695 data: 'PalletBalancesAccountData'1645 },1696 },1646 /**1697 /**1647 * Lookup207: frame_support::weights::PerDispatchClass<T>1698 * Lookup209: frame_support::weights::PerDispatchClass<T>1648 **/1699 **/1649 FrameSupportWeightsPerDispatchClassU64: {1700 FrameSupportWeightsPerDispatchClassU64: {1650 normal: 'u64',1701 normal: 'u64',1651 operational: 'u64',1702 operational: 'u64',1652 mandatory: 'u64'1703 mandatory: 'u64'1653 },1704 },1654 /**1705 /**1655 * Lookup208: sp_runtime::generic::digest::Digest1706 * Lookup210: sp_runtime::generic::digest::Digest1656 **/1707 **/1657 SpRuntimeDigest: {1708 SpRuntimeDigest: {1658 logs: 'Vec<SpRuntimeDigestDigestItem>'1709 logs: 'Vec<SpRuntimeDigestDigestItem>'1659 },1710 },1660 /**1711 /**1661 * Lookup210: sp_runtime::generic::digest::DigestItem1712 * Lookup212: sp_runtime::generic::digest::DigestItem1662 **/1713 **/1663 SpRuntimeDigestDigestItem: {1714 SpRuntimeDigestDigestItem: {1664 _enum: {1715 _enum: {1665 Other: 'Bytes',1716 Other: 'Bytes',1673 RuntimeEnvironmentUpdated: 'Null'1724 RuntimeEnvironmentUpdated: 'Null'1674 }1725 }1675 },1726 },1676 /**1727 /**1677 * Lookup212: frame_system::EventRecord<unique_runtime::Event, primitive_types::H256>1728 * Lookup214: frame_system::EventRecord<unique_runtime::Event, primitive_types::H256>1678 **/1729 **/1679 FrameSystemEventRecord: {1730 FrameSystemEventRecord: {1680 phase: 'FrameSystemPhase',1731 phase: 'FrameSystemPhase',1681 event: 'Event',1732 event: 'Event',1682 topics: 'Vec<H256>'1733 topics: 'Vec<H256>'1683 },1734 },1684 /**1735 /**1685 * Lookup214: frame_system::pallet::Event<T>1736 * Lookup216: frame_system::pallet::Event<T>1686 **/1737 **/1687 FrameSystemEvent: {1738 FrameSystemEvent: {1688 _enum: {1739 _enum: {1689 ExtrinsicSuccess: {1740 ExtrinsicSuccess: {1709 }1760 }1710 }1761 }1711 },1762 },1712 /**1763 /**1713 * Lookup215: frame_support::weights::DispatchInfo1764 * Lookup217: frame_support::weights::DispatchInfo1714 **/1765 **/1715 FrameSupportWeightsDispatchInfo: {1766 FrameSupportWeightsDispatchInfo: {1716 weight: 'u64',1767 weight: 'u64',1717 class: 'FrameSupportWeightsDispatchClass',1768 class: 'FrameSupportWeightsDispatchClass',1718 paysFee: 'FrameSupportWeightsPays'1769 paysFee: 'FrameSupportWeightsPays'1719 },1770 },1720 /**1771 /**1721 * Lookup216: frame_support::weights::DispatchClass1772 * Lookup218: frame_support::weights::DispatchClass1722 **/1773 **/1723 FrameSupportWeightsDispatchClass: {1774 FrameSupportWeightsDispatchClass: {1724 _enum: ['Normal', 'Operational', 'Mandatory']1775 _enum: ['Normal', 'Operational', 'Mandatory']1725 },1776 },1726 /**1777 /**1727 * Lookup217: frame_support::weights::Pays1778 * Lookup219: frame_support::weights::Pays1728 **/1779 **/1729 FrameSupportWeightsPays: {1780 FrameSupportWeightsPays: {1730 _enum: ['Yes', 'No']1781 _enum: ['Yes', 'No']1731 },1782 },1732 /**1783 /**1733 * Lookup218: orml_vesting::module::Event<T>1784 * Lookup220: orml_vesting::module::Event<T>1734 **/1785 **/1735 OrmlVestingModuleEvent: {1786 OrmlVestingModuleEvent: {1736 _enum: {1787 _enum: {1737 VestingScheduleAdded: {1788 VestingScheduleAdded: {1748 }1799 }1749 }1800 }1750 },1801 },1751 /**1802 /**1752 * Lookup219: cumulus_pallet_xcmp_queue::pallet::Event<T>1803 * Lookup221: cumulus_pallet_xcmp_queue::pallet::Event<T>1753 **/1804 **/1754 CumulusPalletXcmpQueueEvent: {1805 CumulusPalletXcmpQueueEvent: {1755 _enum: {1806 _enum: {1756 Success: 'Option<H256>',1807 Success: 'Option<H256>',1763 OverweightServiced: '(u64,u64)'1814 OverweightServiced: '(u64,u64)'1764 }1815 }1765 },1816 },1766 /**1817 /**1767 * Lookup220: pallet_xcm::pallet::Event<T>1818 * Lookup222: pallet_xcm::pallet::Event<T>1768 **/1819 **/1769 PalletXcmEvent: {1820 PalletXcmEvent: {1770 _enum: {1821 _enum: {1771 Attempted: 'XcmV2TraitsOutcome',1822 Attempted: 'XcmV2TraitsOutcome',1786 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'1837 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'1787 }1838 }1788 },1839 },1789 /**1840 /**1790 * Lookup221: xcm::v2::traits::Outcome1841 * Lookup223: xcm::v2::traits::Outcome1791 **/1842 **/1792 XcmV2TraitsOutcome: {1843 XcmV2TraitsOutcome: {1793 _enum: {1844 _enum: {1794 Complete: 'u64',1845 Complete: 'u64',1795 Incomplete: '(u64,XcmV2TraitsError)',1846 Incomplete: '(u64,XcmV2TraitsError)',1796 Error: 'XcmV2TraitsError'1847 Error: 'XcmV2TraitsError'1797 }1848 }1798 },1849 },1799 /**1850 /**1800 * Lookup223: cumulus_pallet_xcm::pallet::Event<T>1851 * Lookup225: cumulus_pallet_xcm::pallet::Event<T>1801 **/1852 **/1802 CumulusPalletXcmEvent: {1853 CumulusPalletXcmEvent: {1803 _enum: {1854 _enum: {1804 InvalidFormat: '[u8;8]',1855 InvalidFormat: '[u8;8]',1805 UnsupportedVersion: '[u8;8]',1856 UnsupportedVersion: '[u8;8]',1806 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'1857 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'1807 }1858 }1808 },1859 },1809 /**1860 /**1810 * Lookup224: cumulus_pallet_dmp_queue::pallet::Event<T>1861 * Lookup226: cumulus_pallet_dmp_queue::pallet::Event<T>1811 **/1862 **/1812 CumulusPalletDmpQueueEvent: {1863 CumulusPalletDmpQueueEvent: {1813 _enum: {1864 _enum: {1814 InvalidFormat: '[u8;32]',1865 InvalidFormat: '[u8;32]',1819 OverweightServiced: '(u64,u64)'1870 OverweightServiced: '(u64,u64)'1820 }1871 }1821 },1872 },1822 /**1873 /**1823 * Lookup225: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1874 * Lookup227: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1824 **/1875 **/1825 PalletUniqueRawEvent: {1876 PalletUniqueRawEvent: {1826 _enum: {1877 _enum: {1827 CollectionSponsorRemoved: 'u32',1878 CollectionSponsorRemoved: 'u32',1841 VariableOnChainSchemaSet: 'u32'1892 VariableOnChainSchemaSet: 'u32'1842 }1893 }1843 },1894 },1844 /**1895 /**1845 * Lookup226: pallet_common::pallet::Event<T>1896 * Lookup228: pallet_common::pallet::Event<T>1846 **/1897 **/1847 PalletCommonEvent: {1898 PalletCommonEvent: {1848 _enum: {1899 _enum: {1849 CollectionCreated: '(u32,u8,AccountId32)',1900 CollectionCreated: '(u32,u8,AccountId32)',1854 Approved: '(u32,u32,PalletCommonAccountBasicCrossAccountIdRepr,PalletCommonAccountBasicCrossAccountIdRepr,u128)'1905 Approved: '(u32,u32,PalletCommonAccountBasicCrossAccountIdRepr,PalletCommonAccountBasicCrossAccountIdRepr,u128)'1855 }1906 }1856 },1907 },1857 /**1908 /**1858 * Lookup227: pallet_evm::pallet::Event<T>1909 * Lookup229: pallet_evm::pallet::Event<T>1859 **/1910 **/1860 PalletEvmEvent: {1911 PalletEvmEvent: {1861 _enum: {1912 _enum: {1862 Log: 'EthereumLog',1913 Log: 'EthereumLog',1868 BalanceWithdraw: '(AccountId32,H160,U256)'1919 BalanceWithdraw: '(AccountId32,H160,U256)'1869 }1920 }1870 },1921 },1871 /**1922 /**1872 * Lookup228: ethereum::log::Log1923 * Lookup230: ethereum::log::Log1873 **/1924 **/1874 EthereumLog: {1925 EthereumLog: {1875 address: 'H160',1926 address: 'H160',1876 topics: 'Vec<H256>',1927 topics: 'Vec<H256>',1877 data: 'Bytes'1928 data: 'Bytes'1878 },1929 },1879 /**1930 /**1880 * Lookup229: pallet_ethereum::pallet::Event1931 * Lookup231: pallet_ethereum::pallet::Event1881 **/1932 **/1882 PalletEthereumEvent: {1933 PalletEthereumEvent: {1883 _enum: {1934 _enum: {1884 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'1935 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'1885 }1936 }1886 },1937 },1887 /**1938 /**1888 * Lookup230: evm_core::error::ExitReason1939 * Lookup232: evm_core::error::ExitReason1889 **/1940 **/1890 EvmCoreErrorExitReason: {1941 EvmCoreErrorExitReason: {1891 _enum: {1942 _enum: {1892 Succeed: 'EvmCoreErrorExitSucceed',1943 Succeed: 'EvmCoreErrorExitSucceed',1895 Fatal: 'EvmCoreErrorExitFatal'1946 Fatal: 'EvmCoreErrorExitFatal'1896 }1947 }1897 },1948 },1898 /**1949 /**1899 * Lookup231: evm_core::error::ExitSucceed1950 * Lookup233: evm_core::error::ExitSucceed1900 **/1951 **/1901 EvmCoreErrorExitSucceed: {1952 EvmCoreErrorExitSucceed: {1902 _enum: ['Stopped', 'Returned', 'Suicided']1953 _enum: ['Stopped', 'Returned', 'Suicided']1903 },1954 },1904 /**1955 /**1905 * Lookup232: evm_core::error::ExitError1956 * Lookup234: evm_core::error::ExitError1906 **/1957 **/1907 EvmCoreErrorExitError: {1958 EvmCoreErrorExitError: {1908 _enum: {1959 _enum: {1909 StackUnderflow: 'Null',1960 StackUnderflow: 'Null',1923 Other: 'Text'1974 Other: 'Text'1924 }1975 }1925 },1976 },1926 /**1977 /**1927 * Lookup235: evm_core::error::ExitRevert1978 * Lookup237: evm_core::error::ExitRevert1928 **/1979 **/1929 EvmCoreErrorExitRevert: {1980 EvmCoreErrorExitRevert: {1930 _enum: ['Reverted']1981 _enum: ['Reverted']1931 },1982 },1932 /**1983 /**1933 * Lookup236: evm_core::error::ExitFatal1984 * Lookup238: evm_core::error::ExitFatal1934 **/1985 **/1935 EvmCoreErrorExitFatal: {1986 EvmCoreErrorExitFatal: {1936 _enum: {1987 _enum: {1937 NotSupported: 'Null',1988 NotSupported: 'Null',1940 Other: 'Text'1991 Other: 'Text'1941 }1992 }1942 },1993 },1943 /**1994 /**1944 * Lookup237: frame_system::Phase1995 * Lookup239: frame_system::Phase1945 **/1996 **/1946 FrameSystemPhase: {1997 FrameSystemPhase: {1947 _enum: {1998 _enum: {1948 ApplyExtrinsic: 'u32',1999 ApplyExtrinsic: 'u32',1949 Finalization: 'Null',2000 Finalization: 'Null',1950 Initialization: 'Null'2001 Initialization: 'Null'1951 }2002 }1952 },2003 },1953 /**2004 /**1954 * Lookup239: frame_system::LastRuntimeUpgradeInfo2005 * Lookup241: frame_system::LastRuntimeUpgradeInfo1955 **/2006 **/1956 FrameSystemLastRuntimeUpgradeInfo: {2007 FrameSystemLastRuntimeUpgradeInfo: {1957 specVersion: 'Compact<u32>',2008 specVersion: 'Compact<u32>',1958 specName: 'Text'2009 specName: 'Text'1959 },2010 },1960 /**2011 /**1961 * Lookup240: frame_system::limits::BlockWeights2012 * Lookup242: frame_system::limits::BlockWeights1962 **/2013 **/1963 FrameSystemLimitsBlockWeights: {2014 FrameSystemLimitsBlockWeights: {1964 baseBlock: 'u64',2015 baseBlock: 'u64',1965 maxBlock: 'u64',2016 maxBlock: 'u64',1966 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'2017 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'1967 },2018 },1968 /**2019 /**1969 * Lookup241: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>2020 * Lookup243: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>1970 **/2021 **/1971 FrameSupportWeightsPerDispatchClassWeightsPerClass: {2022 FrameSupportWeightsPerDispatchClassWeightsPerClass: {1972 normal: 'FrameSystemLimitsWeightsPerClass',2023 normal: 'FrameSystemLimitsWeightsPerClass',1973 operational: 'FrameSystemLimitsWeightsPerClass',2024 operational: 'FrameSystemLimitsWeightsPerClass',1974 mandatory: 'FrameSystemLimitsWeightsPerClass'2025 mandatory: 'FrameSystemLimitsWeightsPerClass'1975 },2026 },1976 /**2027 /**1977 * Lookup242: frame_system::limits::WeightsPerClass2028 * Lookup244: frame_system::limits::WeightsPerClass1978 **/2029 **/1979 FrameSystemLimitsWeightsPerClass: {2030 FrameSystemLimitsWeightsPerClass: {1980 baseExtrinsic: 'u64',2031 baseExtrinsic: 'u64',1981 maxExtrinsic: 'Option<u64>',2032 maxExtrinsic: 'Option<u64>',1982 maxTotal: 'Option<u64>',2033 maxTotal: 'Option<u64>',1983 reserved: 'Option<u64>'2034 reserved: 'Option<u64>'1984 },2035 },1985 /**2036 /**1986 * Lookup244: frame_system::limits::BlockLength2037 * Lookup246: frame_system::limits::BlockLength1987 **/2038 **/1988 FrameSystemLimitsBlockLength: {2039 FrameSystemLimitsBlockLength: {1989 max: 'FrameSupportWeightsPerDispatchClassU32'2040 max: 'FrameSupportWeightsPerDispatchClassU32'1990 },2041 },1991 /**2042 /**1992 * Lookup245: frame_support::weights::PerDispatchClass<T>2043 * Lookup247: frame_support::weights::PerDispatchClass<T>1993 **/2044 **/1994 FrameSupportWeightsPerDispatchClassU32: {2045 FrameSupportWeightsPerDispatchClassU32: {1995 normal: 'u32',2046 normal: 'u32',1996 operational: 'u32',2047 operational: 'u32',1997 mandatory: 'u32'2048 mandatory: 'u32'1998 },2049 },1999 /**2050 /**2000 * Lookup246: frame_support::weights::RuntimeDbWeight2051 * Lookup248: frame_support::weights::RuntimeDbWeight2001 **/2052 **/2002 FrameSupportWeightsRuntimeDbWeight: {2053 FrameSupportWeightsRuntimeDbWeight: {2003 read: 'u64',2054 read: 'u64',2004 write: 'u64'2055 write: 'u64'2005 },2056 },2006 /**2057 /**2007 * Lookup247: sp_version::RuntimeVersion2058 * Lookup249: sp_version::RuntimeVersion2008 **/2059 **/2009 SpVersionRuntimeVersion: {2060 SpVersionRuntimeVersion: {2010 specName: 'Text',2061 specName: 'Text',2011 implName: 'Text',2062 implName: 'Text',2016 transactionVersion: 'u32',2067 transactionVersion: 'u32',2017 stateVersion: 'u8'2068 stateVersion: 'u8'2018 },2069 },2019 /**2070 /**2020 * Lookup251: frame_system::pallet::Error<T>2071 * Lookup253: frame_system::pallet::Error<T>2021 **/2072 **/2022 FrameSystemError: {2073 FrameSystemError: {2023 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']2074 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']2024 },2075 },2025 /**2076 /**2026 * Lookup253: orml_vesting::module::Error<T>2077 * Lookup255: orml_vesting::module::Error<T>2027 **/2078 **/2028 OrmlVestingModuleError: {2079 OrmlVestingModuleError: {2029 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2080 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2030 },2081 },2031 /**2082 /**2032 * Lookup255: cumulus_pallet_xcmp_queue::InboundChannelDetails2083 * Lookup257: cumulus_pallet_xcmp_queue::InboundChannelDetails2033 **/2084 **/2034 CumulusPalletXcmpQueueInboundChannelDetails: {2085 CumulusPalletXcmpQueueInboundChannelDetails: {2035 sender: 'u32',2086 sender: 'u32',2036 state: 'CumulusPalletXcmpQueueInboundState',2087 state: 'CumulusPalletXcmpQueueInboundState',2037 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2088 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2038 },2089 },2039 /**2090 /**2040 * Lookup256: cumulus_pallet_xcmp_queue::InboundState2091 * Lookup258: cumulus_pallet_xcmp_queue::InboundState2041 **/2092 **/2042 CumulusPalletXcmpQueueInboundState: {2093 CumulusPalletXcmpQueueInboundState: {2043 _enum: ['Ok', 'Suspended']2094 _enum: ['Ok', 'Suspended']2044 },2095 },2045 /**2096 /**2046 * Lookup259: polkadot_parachain::primitives::XcmpMessageFormat2097 * Lookup261: polkadot_parachain::primitives::XcmpMessageFormat2047 **/2098 **/2048 PolkadotParachainPrimitivesXcmpMessageFormat: {2099 PolkadotParachainPrimitivesXcmpMessageFormat: {2049 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2100 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2050 },2101 },2051 /**2102 /**2052 * Lookup262: cumulus_pallet_xcmp_queue::OutboundChannelDetails2103 * Lookup264: cumulus_pallet_xcmp_queue::OutboundChannelDetails2053 **/2104 **/2054 CumulusPalletXcmpQueueOutboundChannelDetails: {2105 CumulusPalletXcmpQueueOutboundChannelDetails: {2055 recipient: 'u32',2106 recipient: 'u32',2056 state: 'CumulusPalletXcmpQueueOutboundState',2107 state: 'CumulusPalletXcmpQueueOutboundState',2057 signalsExist: 'bool',2108 signalsExist: 'bool',2058 firstIndex: 'u16',2109 firstIndex: 'u16',2059 lastIndex: 'u16'2110 lastIndex: 'u16'2060 },2111 },2061 /**2112 /**2062 * Lookup263: cumulus_pallet_xcmp_queue::OutboundState2113 * Lookup265: cumulus_pallet_xcmp_queue::OutboundState2063 **/2114 **/2064 CumulusPalletXcmpQueueOutboundState: {2115 CumulusPalletXcmpQueueOutboundState: {2065 _enum: ['Ok', 'Suspended']2116 _enum: ['Ok', 'Suspended']2066 },2117 },2067 /**2118 /**2068 * Lookup265: cumulus_pallet_xcmp_queue::QueueConfigData2119 * Lookup267: cumulus_pallet_xcmp_queue::QueueConfigData2069 **/2120 **/2070 CumulusPalletXcmpQueueQueueConfigData: {2121 CumulusPalletXcmpQueueQueueConfigData: {2071 suspendThreshold: 'u32',2122 suspendThreshold: 'u32',2072 dropThreshold: 'u32',2123 dropThreshold: 'u32',2075 weightRestrictDecay: 'u64',2126 weightRestrictDecay: 'u64',2076 xcmpMaxIndividualWeight: 'u64'2127 xcmpMaxIndividualWeight: 'u64'2077 },2128 },2078 /**2129 /**2079 * Lookup267: cumulus_pallet_xcmp_queue::pallet::Error<T>2130 * Lookup269: cumulus_pallet_xcmp_queue::pallet::Error<T>2080 **/2131 **/2081 CumulusPalletXcmpQueueError: {2132 CumulusPalletXcmpQueueError: {2082 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2133 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2083 },2134 },2084 /**2135 /**2085 * Lookup268: pallet_xcm::pallet::Error<T>2136 * Lookup270: pallet_xcm::pallet::Error<T>2086 **/2137 **/2087 PalletXcmError: {2138 PalletXcmError: {2088 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2139 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2089 },2140 },2090 /**2141 /**2091 * Lookup269: cumulus_pallet_xcm::pallet::Error<T>2142 * Lookup271: cumulus_pallet_xcm::pallet::Error<T>2092 **/2143 **/2093 CumulusPalletXcmError: 'Null',2144 CumulusPalletXcmError: 'Null',2094 /**2145 /**2095 * Lookup270: cumulus_pallet_dmp_queue::ConfigData2146 * Lookup272: cumulus_pallet_dmp_queue::ConfigData2096 **/2147 **/2097 CumulusPalletDmpQueueConfigData: {2148 CumulusPalletDmpQueueConfigData: {2098 maxIndividual: 'u64'2149 maxIndividual: 'u64'2099 },2150 },2100 /**2151 /**2101 * Lookup271: cumulus_pallet_dmp_queue::PageIndexData2152 * Lookup273: cumulus_pallet_dmp_queue::PageIndexData2102 **/2153 **/2103 CumulusPalletDmpQueuePageIndexData: {2154 CumulusPalletDmpQueuePageIndexData: {2104 beginUsed: 'u32',2155 beginUsed: 'u32',2105 endUsed: 'u32',2156 endUsed: 'u32',2106 overweightCount: 'u64'2157 overweightCount: 'u64'2107 },2158 },2108 /**2159 /**2109 * Lookup274: cumulus_pallet_dmp_queue::pallet::Error<T>2160 * Lookup276: cumulus_pallet_dmp_queue::pallet::Error<T>2110 **/2161 **/2111 CumulusPalletDmpQueueError: {2162 CumulusPalletDmpQueueError: {2112 _enum: ['Unknown', 'OverLimit']2163 _enum: ['Unknown', 'OverLimit']2113 },2164 },2114 /**2165 /**2115 * Lookup278: pallet_unique::Error<T>2166 * Lookup280: pallet_unique::Error<T>2116 **/2167 **/2117 PalletUniqueError: {2168 PalletUniqueError: {2118 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']2169 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']2119 },2170 },2120 /**2171 /**2121 * Lookup279: up_data_structs::Collection<sp_core::crypto::AccountId32>2172 * Lookup281: up_data_structs::Collection<sp_core::crypto::AccountId32>2122 **/2173 **/2123 UpDataStructsCollection: {2174 UpDataStructsCollection: {2124 owner: 'AccountId32',2175 owner: 'AccountId32',2125 mode: 'UpDataStructsCollectionMode',2176 mode: 'UpDataStructsCollectionMode',2136 constOnChainSchema: 'Bytes',2187 constOnChainSchema: 'Bytes',2137 metaUpdatePermission: 'UpDataStructsMetaUpdatePermission'2188 metaUpdatePermission: 'UpDataStructsMetaUpdatePermission'2138 },2189 },2139 /**2190 /**2140 * Lookup280: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>2191 * Lookup282: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>2141 **/2192 **/2142 UpDataStructsSponsorshipState: {2193 UpDataStructsSponsorshipState: {2143 _enum: {2194 _enum: {2144 Disabled: 'Null',2195 Disabled: 'Null',2145 Unconfirmed: 'AccountId32',2196 Unconfirmed: 'AccountId32',2146 Confirmed: 'AccountId32'2197 Confirmed: 'AccountId32'2147 }2198 }2148 },2199 },2149 /**2200 /**2150 * Lookup283: up_data_structs::CollectionStats2201 * Lookup285: up_data_structs::CollectionStats2151 **/2202 **/2152 UpDataStructsCollectionStats: {2203 UpDataStructsCollectionStats: {2153 created: 'u32',2204 created: 'u32',2154 destroyed: 'u32',2205 destroyed: 'u32',2155 alive: 'u32'2206 alive: 'u32'2156 },2207 },2157 /**2208 /**2158 * Lookup284: pallet_common::pallet::Error<T>2209 * Lookup286: pallet_common::pallet::Error<T>2159 **/2210 **/2160 PalletCommonError: {2211 PalletCommonError: {2161 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'TokenVariableDataLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation']2212 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'TokenVariableDataLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation']2162 },2213 },2163 /**2214 /**2164 * Lookup286: pallet_fungible::pallet::Error<T>2215 * Lookup288: pallet_fungible::pallet::Error<T>2165 **/2216 **/2166 PalletFungibleError: {2217 PalletFungibleError: {2167 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData']2218 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData']2168 },2219 },2169 /**2220 /**2170 * Lookup287: pallet_refungible::ItemData2221 * Lookup289: pallet_refungible::ItemData2171 **/2222 **/2172 PalletRefungibleItemData: {2223 PalletRefungibleItemData: {2173 constData: 'Bytes',2224 constData: 'Bytes',2174 variableData: 'Bytes'2225 variableData: 'Bytes'2175 },2226 },2176 /**2227 /**2177 * Lookup291: pallet_refungible::pallet::Error<T>2228 * Lookup293: pallet_refungible::pallet::Error<T>2178 **/2229 **/2179 PalletRefungibleError: {2230 PalletRefungibleError: {2180 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces']2231 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces']2181 },2232 },2182 /**2233 /**2183 * Lookup292: pallet_nonfungible::ItemData<pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2234 * Lookup294: pallet_nonfungible::ItemData<pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2184 **/2235 **/2185 PalletNonfungibleItemData: {2236 PalletNonfungibleItemData: {2186 constData: 'Bytes',2237 constData: 'Bytes',2187 variableData: 'Bytes',2238 variableData: 'Bytes',2188 owner: 'PalletCommonAccountBasicCrossAccountIdRepr'2239 owner: 'PalletCommonAccountBasicCrossAccountIdRepr'2189 },2240 },2190 /**2241 /**2191 * Lookup293: pallet_nonfungible::pallet::Error<T>2242 * Lookup295: pallet_nonfungible::pallet::Error<T>2192 **/2243 **/2193 PalletNonfungibleError: {2244 PalletNonfungibleError: {2194 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']2245 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']2195 },2246 },2196 /**2247 /**2197 * Lookup295: pallet_evm::pallet::Error<T>2248 * Lookup297: pallet_evm::pallet::Error<T>2198 **/2249 **/2199 PalletEvmError: {2250 PalletEvmError: {2200 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']2251 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']2201 },2252 },2202 /**2253 /**2203 * Lookup298: fp_rpc::TransactionStatus2254 * Lookup300: fp_rpc::TransactionStatus2204 **/2255 **/2205 FpRpcTransactionStatus: {2256 FpRpcTransactionStatus: {2206 transactionHash: 'H256',2257 transactionHash: 'H256',2207 transactionIndex: 'u32',2258 transactionIndex: 'u32',2211 logs: 'Vec<EthereumLog>',2262 logs: 'Vec<EthereumLog>',2212 logsBloom: 'EthbloomBloom'2263 logsBloom: 'EthbloomBloom'2213 },2264 },2214 /**2265 /**2215 * Lookup301: ethbloom::Bloom2266 * Lookup303: ethbloom::Bloom2216 **/2267 **/2217 EthbloomBloom: '[u8;256]',2268 EthbloomBloom: '[u8;256]',2218 /**2269 /**2219 * Lookup303: ethereum::receipt::ReceiptV32270 * Lookup305: ethereum::receipt::ReceiptV32220 **/2271 **/2221 EthereumReceiptReceiptV3: {2272 EthereumReceiptReceiptV3: {2222 _enum: {2273 _enum: {2223 Legacy: 'EthereumReceiptEip658ReceiptData',2274 Legacy: 'EthereumReceiptEip658ReceiptData',2224 EIP2930: 'EthereumReceiptEip658ReceiptData',2275 EIP2930: 'EthereumReceiptEip658ReceiptData',2225 EIP1559: 'EthereumReceiptEip658ReceiptData'2276 EIP1559: 'EthereumReceiptEip658ReceiptData'2226 }2277 }2227 },2278 },2228 /**2279 /**2229 * Lookup304: ethereum::receipt::EIP658ReceiptData2280 * Lookup306: ethereum::receipt::EIP658ReceiptData2230 **/2281 **/2231 EthereumReceiptEip658ReceiptData: {2282 EthereumReceiptEip658ReceiptData: {2232 statusCode: 'u8',2283 statusCode: 'u8',2233 usedGas: 'U256',2284 usedGas: 'U256',2234 logsBloom: 'EthbloomBloom',2285 logsBloom: 'EthbloomBloom',2235 logs: 'Vec<EthereumLog>'2286 logs: 'Vec<EthereumLog>'2236 },2287 },2237 /**2288 /**2238 * Lookup305: ethereum::block::Block<ethereum::transaction::TransactionV2>2289 * Lookup307: ethereum::block::Block<ethereum::transaction::TransactionV2>2239 **/2290 **/2240 EthereumBlock: {2291 EthereumBlock: {2241 header: 'EthereumHeader',2292 header: 'EthereumHeader',2242 transactions: 'Vec<EthereumTransactionTransactionV2>',2293 transactions: 'Vec<EthereumTransactionTransactionV2>',2243 ommers: 'Vec<EthereumHeader>'2294 ommers: 'Vec<EthereumHeader>'2244 },2295 },2245 /**2296 /**2246 * Lookup306: ethereum::header::Header2297 * Lookup308: ethereum::header::Header2247 **/2298 **/2248 EthereumHeader: {2299 EthereumHeader: {2249 parentHash: 'H256',2300 parentHash: 'H256',2250 ommersHash: 'H256',2301 ommersHash: 'H256',2262 mixHash: 'H256',2313 mixHash: 'H256',2263 nonce: 'EthereumTypesHashH64'2314 nonce: 'EthereumTypesHashH64'2264 },2315 },2265 /**2316 /**2266 * Lookup307: ethereum_types::hash::H642317 * Lookup309: ethereum_types::hash::H642267 **/2318 **/2268 EthereumTypesHashH64: '[u8;8]',2319 EthereumTypesHashH64: '[u8;8]',2269 /**2320 /**2270 * Lookup312: pallet_ethereum::pallet::Error<T>2321 * Lookup314: pallet_ethereum::pallet::Error<T>2271 **/2322 **/2272 PalletEthereumError: {2323 PalletEthereumError: {2273 _enum: ['InvalidSignature', 'PreLogExists']2324 _enum: ['InvalidSignature', 'PreLogExists']2274 },2325 },2275 /**2326 /**2276 * Lookup313: pallet_evm_coder_substrate::pallet::Error<T>2327 * Lookup315: pallet_evm_coder_substrate::pallet::Error<T>2277 **/2328 **/2278 PalletEvmCoderSubstrateError: {2329 PalletEvmCoderSubstrateError: {2279 _enum: ['OutOfGas', 'OutOfFund']2330 _enum: ['OutOfGas', 'OutOfFund']2280 },2331 },2281 /**2332 /**2282 * Lookup314: pallet_evm_contract_helpers::SponsoringModeT2333 * Lookup316: pallet_evm_contract_helpers::SponsoringModeT2283 **/2334 **/2284 PalletEvmContractHelpersSponsoringModeT: {2335 PalletEvmContractHelpersSponsoringModeT: {2285 _enum: ['Disabled', 'Allowlisted', 'Generous']2336 _enum: ['Disabled', 'Allowlisted', 'Generous']2286 },2337 },2287 /**2338 /**2288 * Lookup316: pallet_evm_contract_helpers::pallet::Error<T>2339 * Lookup318: pallet_evm_contract_helpers::pallet::Error<T>2289 **/2340 **/2290 PalletEvmContractHelpersError: {2341 PalletEvmContractHelpersError: {2291 _enum: ['NoPermission']2342 _enum: ['NoPermission']2292 },2343 },2293 /**2344 /**2294 * Lookup317: pallet_evm_migration::pallet::Error<T>2345 * Lookup319: pallet_evm_migration::pallet::Error<T>2295 **/2346 **/2296 PalletEvmMigrationError: {2347 PalletEvmMigrationError: {2297 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']2348 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']2298 },2349 },2299 /**2350 /**2300 * Lookup319: sp_runtime::MultiSignature2351 * Lookup321: sp_runtime::MultiSignature2301 **/2352 **/2302 SpRuntimeMultiSignature: {2353 SpRuntimeMultiSignature: {2303 _enum: {2354 _enum: {2304 Ed25519: 'SpCoreEd25519Signature',2355 Ed25519: 'SpCoreEd25519Signature',2305 Sr25519: 'SpCoreSr25519Signature',2356 Sr25519: 'SpCoreSr25519Signature',2306 Ecdsa: 'SpCoreEcdsaSignature'2357 Ecdsa: 'SpCoreEcdsaSignature'2307 }2358 }2308 },2359 },2309 /**2360 /**2310 * Lookup320: sp_core::ed25519::Signature2361 * Lookup322: sp_core::ed25519::Signature2311 **/2362 **/2312 SpCoreEd25519Signature: '[u8;64]',2363 SpCoreEd25519Signature: '[u8;64]',2313 /**2364 /**2314 * Lookup322: sp_core::sr25519::Signature2365 * Lookup324: sp_core::sr25519::Signature2315 **/2366 **/2316 SpCoreSr25519Signature: '[u8;64]',2367 SpCoreSr25519Signature: '[u8;64]',2317 /**2368 /**2318 * Lookup323: sp_core::ecdsa::Signature2369 * Lookup325: sp_core::ecdsa::Signature2319 **/2370 **/2320 SpCoreEcdsaSignature: '[u8;65]',2371 SpCoreEcdsaSignature: '[u8;65]',2321 /**2372 /**2322 * Lookup326: frame_system::extensions::check_spec_version::CheckSpecVersion<T>2373 * Lookup328: frame_system::extensions::check_spec_version::CheckSpecVersion<T>2323 **/2374 **/2324 FrameSystemExtensionsCheckSpecVersion: 'Null',2375 FrameSystemExtensionsCheckSpecVersion: 'Null',2325 /**2376 /**2326 * Lookup327: frame_system::extensions::check_genesis::CheckGenesis<T>2377 * Lookup329: frame_system::extensions::check_genesis::CheckGenesis<T>2327 **/2378 **/2328 FrameSystemExtensionsCheckGenesis: 'Null',2379 FrameSystemExtensionsCheckGenesis: 'Null',2329 /**2380 /**2330 * Lookup330: frame_system::extensions::check_nonce::CheckNonce<T>2381 * Lookup332: frame_system::extensions::check_nonce::CheckNonce<T>2331 **/2382 **/2332 FrameSystemExtensionsCheckNonce: 'Compact<u32>',2383 FrameSystemExtensionsCheckNonce: 'Compact<u32>',2333 /**2384 /**2334 * Lookup331: frame_system::extensions::check_weight::CheckWeight<T>2385 * Lookup333: frame_system::extensions::check_weight::CheckWeight<T>2335 **/2386 **/2336 FrameSystemExtensionsCheckWeight: 'Null',2387 FrameSystemExtensionsCheckWeight: 'Null',2337 /**2388 /**2338 * Lookup332: pallet_template_transaction_payment::ChargeTransactionPayment<unique_runtime::Runtime>2389 * Lookup334: pallet_template_transaction_payment::ChargeTransactionPayment<unique_runtime::Runtime>2339 **/2390 **/2340 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',2391 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',2341 /**2392 /**2342 * Lookup333: unique_runtime::Runtime2393 * Lookup335: unique_runtime::Runtime2343 **/2394 **/2344 UniqueRuntimeRuntime: 'Null'2395 UniqueRuntimeRuntime: 'Null'2345};2396};23462397tests/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.tsdiffbeforeafterboth--- a/tests/src/interfaces/unique/types.ts
+++ b/tests/src/interfaces/unique/types.ts
@@ -133,7 +133,33 @@
readonly index: u64;
readonly weightLimit: u64;
} & Struct;
- readonly type: 'ServiceOverweight';
+ readonly isSuspendXcmExecution: boolean;
+ readonly isResumeXcmExecution: boolean;
+ readonly isUpdateSuspendThreshold: boolean;
+ readonly asUpdateSuspendThreshold: {
+ readonly new_: u32;
+ } & Struct;
+ readonly isUpdateDropThreshold: boolean;
+ readonly asUpdateDropThreshold: {
+ readonly new_: u32;
+ } & Struct;
+ readonly isUpdateResumeThreshold: boolean;
+ readonly asUpdateResumeThreshold: {
+ readonly new_: u32;
+ } & Struct;
+ readonly isUpdateThresholdWeight: boolean;
+ readonly asUpdateThresholdWeight: {
+ readonly new_: u64;
+ } & Struct;
+ readonly isUpdateWeightRestrictDecay: boolean;
+ readonly asUpdateWeightRestrictDecay: {
+ readonly new_: u64;
+ } & Struct;
+ readonly isUpdateXcmpMaxIndividualWeight: boolean;
+ readonly asUpdateXcmpMaxIndividualWeight: {
+ readonly new_: u64;
+ } & Struct;
+ readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
}
/** @name CumulusPalletXcmpQueueError */
@@ -1634,10 +1660,7 @@
readonly isCannotLookup: boolean;
readonly isBadOrigin: boolean;
readonly isModule: boolean;
- readonly asModule: {
- readonly index: u8;
- readonly error: u8;
- } & Struct;
+ readonly asModule: SpRuntimeModuleError;
readonly isConsumerRemaining: boolean;
readonly isNoProviders: boolean;
readonly isTooManyConsumers: boolean;
@@ -1648,6 +1671,12 @@
readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic';
}
+/** @name SpRuntimeModuleError */
+export interface SpRuntimeModuleError extends Struct {
+ readonly index: u8;
+ readonly error: u8;
+}
+
/** @name SpRuntimeMultiSignature */
export interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
@@ -1810,6 +1839,7 @@
readonly isSponsoringDisabled: boolean;
readonly isBlocks: boolean;
readonly asBlocks: u32;
+ readonly type: 'SponsoringDisabled' | 'Blocks';
}
/** @name UpDataStructsSponsorshipState */