difftreelog
test add test for createMultipleItemsEx
in: master
6 files changed
tests/src/createMultipleItemsEx.test.tsdiffbeforeafterboth--- /dev/null
+++ b/tests/src/createMultipleItemsEx.test.ts
@@ -0,0 +1,58 @@
+import {expect} from 'chai';
+import privateKey from './substrate/privateKey';
+import usingApi, {executeTransaction} from './substrate/substrate-api';
+import {createCollectionExpectSuccess} from './util/helpers';
+
+describe('createMultipleItemsEx', () => {
+ it('can initialize multiple NFT with different owners', async () => {
+ const collection = await createCollectionExpectSuccess({mode: {type: 'NFT'}});
+ const alice = privateKey('//Alice');
+ const bob = privateKey('//Bob');
+ const charlie = privateKey('//Charlie');
+ await usingApi(async (api) => {
+ const data = [
+ {
+ owner: {substrate: alice.address},
+ constData: '0x0000',
+ variableData: '0x1111',
+ }, {
+ owner: {substrate: bob.address},
+ constData: '0x2222',
+ variableData: '0x3333',
+ }, {
+ owner: {substrate: charlie.address},
+ constData: '0x4444',
+ variableData: '0x5555',
+ },
+ ];
+
+ await executeTransaction(api, alice, api.tx.unique.createMultipleItemsEx(collection, {
+ NFT: data,
+ }));
+ const tokens = await api.query.nonfungible.tokenData.entries(collection);
+ const json = tokens.map(([, token]) => token.toJSON());
+ expect(json).to.be.deep.equal(data);
+ });
+ });
+
+ it('fails when trying to set multiple owners when creating multiple refungibles', async () => {
+ const collection = await createCollectionExpectSuccess({mode: {type: 'ReFungible'}});
+ const alice = privateKey('//Alice');
+ const bob = privateKey('//Bob');
+
+ await usingApi(async (api) => {
+ // Polkadot requires map, and yet requires keys to be JSON encoded
+ const users = new Map();
+ users.set(JSON.stringify({substrate: alice.address}), 1);
+ users.set(JSON.stringify({substrate: bob.address}), 1);
+
+ // TODO: better error message?
+ await expect(executeTransaction(api, alice, api.tx.unique.createMultipleItemsEx(collection, {
+ RefungibleMultipleItems: [
+ {users},
+ {users},
+ ],
+ }))).to.be.rejectedWith(/^refungible\.NotRefungibleDataUsedToMintFungibleCollectionToken$/);
+ });
+ });
+});
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -5,7 +5,7 @@
import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletCommonAccountBasicCrossAccountIdRepr, UpDataStructsAccessMode, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsMetaUpdatePermission, UpDataStructsSchemaVersion, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletCommonAccountBasicCrossAccountIdRepr, UpDataStructsAccessMode, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsMetaUpdatePermission, UpDataStructsSchemaVersion, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/api-base/types/submittable' {
export interface AugmentedSubmittables<ApiType extends ApiTypes> {
@@ -710,6 +710,7 @@
* * owner: Address, initial owner of the NFT.
**/
createMultipleItems: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, owner: PalletCommonAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array, itemsData: Vec<UpDataStructsCreateItemData> | (UpDataStructsCreateItemData | { NFT: any } | { Fungible: any } | { ReFungible: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [u32, PalletCommonAccountBasicCrossAccountIdRepr, Vec<UpDataStructsCreateItemData>]>;
+ createMultipleItemsEx: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, data: UpDataStructsCreateItemExData | { NFT: any } | { Fungible: any } | { RefungibleMultipleItems: any } | { RefungibleMultipleOwners: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, UpDataStructsCreateItemExData]>;
/**
* **DANGEROUS**: Destroys collection and all NFTs within this collection. Users irrecoverably lose their assets and may lose real money.
*
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, 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 { 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, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, 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';
@@ -1159,8 +1159,11 @@
UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;
UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;
UpDataStructsCreateItemData: UpDataStructsCreateItemData;
+ UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;
UpDataStructsCreateNftData: UpDataStructsCreateNftData;
+ UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;
UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;
+ UpDataStructsCreateRefungibleExData: UpDataStructsCreateRefungibleExData;
UpDataStructsMetaUpdatePermission: UpDataStructsMetaUpdatePermission;
UpDataStructsSchemaVersion: UpDataStructsSchemaVersion;
UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;
tests/src/interfaces/lookup.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34/* eslint-disable sort-keys */56export default {7 /**8 * Lookup2: polkadot_primitives::v1::PersistedValidationData<primitive_types::H256, N>9 **/10 PolkadotPrimitivesV1PersistedValidationData: {11 parentHead: 'Bytes',12 relayParentNumber: 'u32',13 relayParentStorageRoot: 'H256',14 maxPovSize: 'u32'15 },16 /**17 * Lookup9: polkadot_primitives::v1::UpgradeRestriction18 **/19 PolkadotPrimitivesV1UpgradeRestriction: {20 _enum: ['Present']21 },22 /**23 * Lookup10: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot24 **/25 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {26 dmqMqcHead: 'H256',27 relayDispatchQueueSize: '(u32,u32)',28 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV1AbridgedHrmpChannel)>',29 egressChannels: 'Vec<(u32,PolkadotPrimitivesV1AbridgedHrmpChannel)>'30 },31 /**32 * Lookup15: polkadot_primitives::v1::AbridgedHrmpChannel33 **/34 PolkadotPrimitivesV1AbridgedHrmpChannel: {35 maxCapacity: 'u32',36 maxTotalSize: 'u32',37 maxMessageSize: 'u32',38 msgCount: 'u32',39 totalSize: 'u32',40 mqcHead: 'Option<H256>'41 },42 /**43 * Lookup17: polkadot_primitives::v1::AbridgedHostConfiguration44 **/45 PolkadotPrimitivesV1AbridgedHostConfiguration: {46 maxCodeSize: 'u32',47 maxHeadDataSize: 'u32',48 maxUpwardQueueCount: 'u32',49 maxUpwardQueueSize: 'u32',50 maxUpwardMessageSize: 'u32',51 maxUpwardMessageNumPerCandidate: 'u32',52 hrmpMaxMessageNumPerCandidate: 'u32',53 validationUpgradeCooldown: 'u32',54 validationUpgradeDelay: 'u32'55 },56 /**57 * Lookup23: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>58 **/59 PolkadotCorePrimitivesOutboundHrmpMessage: {60 recipient: 'u32',61 data: 'Bytes'62 },63 /**64 * Lookup26: cumulus_pallet_parachain_system::pallet::Call<T>65 **/66 CumulusPalletParachainSystemCall: {67 _enum: {68 set_validation_data: {69 data: 'CumulusPrimitivesParachainInherentParachainInherentData',70 },71 sudo_send_upward_message: {72 message: 'Bytes',73 },74 authorize_upgrade: {75 codeHash: 'H256',76 },77 enact_authorized_upgrade: {78 code: 'Bytes'79 }80 }81 },82 /**83 * Lookup27: cumulus_primitives_parachain_inherent::ParachainInherentData84 **/85 CumulusPrimitivesParachainInherentParachainInherentData: {86 validationData: 'PolkadotPrimitivesV1PersistedValidationData',87 relayChainState: 'SpTrieStorageProof',88 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',89 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'90 },91 /**92 * Lookup28: sp_trie::storage_proof::StorageProof93 **/94 SpTrieStorageProof: {95 trieNodes: 'Vec<Bytes>'96 },97 /**98 * Lookup30: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>99 **/100 PolkadotCorePrimitivesInboundDownwardMessage: {101 sentAt: 'u32',102 msg: 'Bytes'103 },104 /**105 * Lookup33: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>106 **/107 PolkadotCorePrimitivesInboundHrmpMessage: {108 sentAt: 'u32',109 data: 'Bytes'110 },111 /**112 * Lookup36: cumulus_pallet_parachain_system::pallet::Event<T>113 **/114 CumulusPalletParachainSystemEvent: {115 _enum: {116 ValidationFunctionStored: 'Null',117 ValidationFunctionApplied: 'u32',118 ValidationFunctionDiscarded: 'Null',119 UpgradeAuthorized: 'H256',120 DownwardMessagesReceived: 'u32',121 DownwardMessagesProcessed: '(u64,H256)'122 }123 },124 /**125 * Lookup37: cumulus_pallet_parachain_system::pallet::Error<T>126 **/127 CumulusPalletParachainSystemError: {128 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']129 },130 /**131 * Lookup40: pallet_balances::AccountData<Balance>132 **/133 PalletBalancesAccountData: {134 free: 'u128',135 reserved: 'u128',136 miscFrozen: 'u128',137 feeFrozen: 'u128'138 },139 /**140 * Lookup42: pallet_balances::BalanceLock<Balance>141 **/142 PalletBalancesBalanceLock: {143 id: '[u8;8]',144 amount: 'u128',145 reasons: 'PalletBalancesReasons'146 },147 /**148 * Lookup44: pallet_balances::Reasons149 **/150 PalletBalancesReasons: {151 _enum: ['Fee', 'Misc', 'All']152 },153 /**154 * Lookup47: pallet_balances::ReserveData<ReserveIdentifier, Balance>155 **/156 PalletBalancesReserveData: {157 id: '[u8;8]',158 amount: 'u128'159 },160 /**161 * Lookup49: pallet_balances::Releases162 **/163 PalletBalancesReleases: {164 _enum: ['V1_0_0', 'V2_0_0']165 },166 /**167 * Lookup50: pallet_balances::pallet::Call<T, I>168 **/169 PalletBalancesCall: {170 _enum: {171 transfer: {172 dest: 'MultiAddress',173 value: 'Compact<u128>',174 },175 set_balance: {176 who: 'MultiAddress',177 newFree: 'Compact<u128>',178 newReserved: 'Compact<u128>',179 },180 force_transfer: {181 source: 'MultiAddress',182 dest: 'MultiAddress',183 value: 'Compact<u128>',184 },185 transfer_keep_alive: {186 dest: 'MultiAddress',187 value: 'Compact<u128>',188 },189 transfer_all: {190 dest: 'MultiAddress',191 keepAlive: 'bool',192 },193 force_unreserve: {194 who: 'MultiAddress',195 amount: 'u128'196 }197 }198 },199 /**200 * Lookup56: pallet_balances::pallet::Event<T, I>201 **/202 PalletBalancesEvent: {203 _enum: {204 Endowed: {205 account: 'AccountId32',206 freeBalance: 'u128',207 },208 DustLost: {209 account: 'AccountId32',210 amount: 'u128',211 },212 Transfer: {213 from: 'AccountId32',214 to: 'AccountId32',215 amount: 'u128',216 },217 BalanceSet: {218 who: 'AccountId32',219 free: 'u128',220 reserved: 'u128',221 },222 Reserved: {223 who: 'AccountId32',224 amount: 'u128',225 },226 Unreserved: {227 who: 'AccountId32',228 amount: 'u128',229 },230 ReserveRepatriated: {231 from: 'AccountId32',232 to: 'AccountId32',233 amount: 'u128',234 destinationStatus: 'FrameSupportTokensMiscBalanceStatus',235 },236 Deposit: {237 who: 'AccountId32',238 amount: 'u128',239 },240 Withdraw: {241 who: 'AccountId32',242 amount: 'u128',243 },244 Slashed: {245 who: 'AccountId32',246 amount: 'u128'247 }248 }249 },250 /**251 * Lookup57: frame_support::traits::tokens::misc::BalanceStatus252 **/253 FrameSupportTokensMiscBalanceStatus: {254 _enum: ['Free', 'Reserved']255 },256 /**257 * Lookup58: pallet_balances::pallet::Error<T, I>258 **/259 PalletBalancesError: {260 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']261 },262 /**263 * Lookup61: pallet_timestamp::pallet::Call<T>264 **/265 PalletTimestampCall: {266 _enum: {267 set: {268 now: 'Compact<u64>'269 }270 }271 },272 /**273 * Lookup64: pallet_transaction_payment::Releases274 **/275 PalletTransactionPaymentReleases: {276 _enum: ['V1Ancient', 'V2']277 },278 /**279 * Lookup66: frame_support::weights::WeightToFeeCoefficient<Balance>280 **/281 FrameSupportWeightsWeightToFeeCoefficient: {282 coeffInteger: 'u128',283 coeffFrac: 'Perbill',284 negative: 'bool',285 degree: 'u8'286 },287 /**288 * Lookup68: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>289 **/290 PalletTreasuryProposal: {291 proposer: 'AccountId32',292 value: 'u128',293 beneficiary: 'AccountId32',294 bond: 'u128'295 },296 /**297 * Lookup71: pallet_treasury::pallet::Call<T, I>298 **/299 PalletTreasuryCall: {300 _enum: {301 propose_spend: {302 value: 'Compact<u128>',303 beneficiary: 'MultiAddress',304 },305 reject_proposal: {306 proposalId: 'Compact<u32>',307 },308 approve_proposal: {309 proposalId: 'Compact<u32>'310 }311 }312 },313 /**314 * Lookup73: pallet_treasury::pallet::Event<T, I>315 **/316 PalletTreasuryEvent: {317 _enum: {318 Proposed: {319 proposalIndex: 'u32',320 },321 Spending: {322 budgetRemaining: 'u128',323 },324 Awarded: {325 proposalIndex: 'u32',326 award: 'u128',327 account: 'AccountId32',328 },329 Rejected: {330 proposalIndex: 'u32',331 slashed: 'u128',332 },333 Burnt: {334 burntFunds: 'u128',335 },336 Rollover: {337 rolloverBalance: 'u128',338 },339 Deposit: {340 value: 'u128'341 }342 }343 },344 /**345 * Lookup76: frame_support::PalletId346 **/347 FrameSupportPalletId: '[u8;8]',348 /**349 * Lookup77: pallet_treasury::pallet::Error<T, I>350 **/351 PalletTreasuryError: {352 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals']353 },354 /**355 * Lookup78: pallet_sudo::pallet::Call<T>356 **/357 PalletSudoCall: {358 _enum: {359 sudo: {360 call: 'Call',361 },362 sudo_unchecked_weight: {363 call: 'Call',364 weight: 'u64',365 },366 set_key: {367 _alias: {368 new_: 'new',369 },370 new_: 'MultiAddress',371 },372 sudo_as: {373 who: 'MultiAddress',374 call: 'Call'375 }376 }377 },378 /**379 * Lookup80: frame_system::pallet::Call<T>380 **/381 FrameSystemCall: {382 _enum: {383 fill_block: {384 ratio: 'Perbill',385 },386 remark: {387 remark: 'Bytes',388 },389 set_heap_pages: {390 pages: 'u64',391 },392 set_code: {393 code: 'Bytes',394 },395 set_code_without_checks: {396 code: 'Bytes',397 },398 set_storage: {399 items: 'Vec<(Bytes,Bytes)>',400 },401 kill_storage: {402 _alias: {403 keys_: 'keys',404 },405 keys_: 'Vec<Bytes>',406 },407 kill_prefix: {408 prefix: 'Bytes',409 subkeys: 'u32',410 },411 remark_with_event: {412 remark: 'Bytes'413 }414 }415 },416 /**417 * Lookup83: orml_vesting::module::Call<T>418 **/419 OrmlVestingModuleCall: {420 _enum: {421 claim: 'Null',422 vested_transfer: {423 dest: 'MultiAddress',424 schedule: 'OrmlVestingVestingSchedule',425 },426 update_vesting_schedules: {427 who: 'MultiAddress',428 vestingSchedules: 'Vec<OrmlVestingVestingSchedule>',429 },430 claim_for: {431 dest: 'MultiAddress'432 }433 }434 },435 /**436 * Lookup84: orml_vesting::VestingSchedule<BlockNumber, Balance>437 **/438 OrmlVestingVestingSchedule: {439 start: 'u32',440 period: 'u32',441 periodCount: 'u32',442 perPeriod: 'Compact<u128>'443 },444 /**445 * Lookup86: cumulus_pallet_xcmp_queue::pallet::Call<T>446 **/447 CumulusPalletXcmpQueueCall: {448 _enum: {449 service_overweight: {450 index: 'u64',451 weightLimit: 'u64',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 }491 }492 },493 /**494 * Lookup87: pallet_xcm::pallet::Call<T>495 **/496 PalletXcmCall: {497 _enum: {498 send: {499 dest: 'XcmVersionedMultiLocation',500 message: 'XcmVersionedXcm',501 },502 teleport_assets: {503 dest: 'XcmVersionedMultiLocation',504 beneficiary: 'XcmVersionedMultiLocation',505 assets: 'XcmVersionedMultiAssets',506 feeAssetItem: 'u32',507 },508 reserve_transfer_assets: {509 dest: 'XcmVersionedMultiLocation',510 beneficiary: 'XcmVersionedMultiLocation',511 assets: 'XcmVersionedMultiAssets',512 feeAssetItem: 'u32',513 },514 execute: {515 message: 'XcmVersionedXcm',516 maxWeight: 'u64',517 },518 force_xcm_version: {519 location: 'XcmV1MultiLocation',520 xcmVersion: 'u32',521 },522 force_default_xcm_version: {523 maybeXcmVersion: 'Option<u32>',524 },525 force_subscribe_version_notify: {526 location: 'XcmVersionedMultiLocation',527 },528 force_unsubscribe_version_notify: {529 location: 'XcmVersionedMultiLocation',530 },531 limited_reserve_transfer_assets: {532 dest: 'XcmVersionedMultiLocation',533 beneficiary: 'XcmVersionedMultiLocation',534 assets: 'XcmVersionedMultiAssets',535 feeAssetItem: 'u32',536 weightLimit: 'XcmV2WeightLimit',537 },538 limited_teleport_assets: {539 dest: 'XcmVersionedMultiLocation',540 beneficiary: 'XcmVersionedMultiLocation',541 assets: 'XcmVersionedMultiAssets',542 feeAssetItem: 'u32',543 weightLimit: 'XcmV2WeightLimit'544 }545 }546 },547 /**548 * Lookup88: xcm::VersionedMultiLocation549 **/550 XcmVersionedMultiLocation: {551 _enum: {552 V0: 'XcmV0MultiLocation',553 V1: 'XcmV1MultiLocation'554 }555 },556 /**557 * Lookup89: xcm::v0::multi_location::MultiLocation558 **/559 XcmV0MultiLocation: {560 _enum: {561 Null: 'Null',562 X1: 'XcmV0Junction',563 X2: '(XcmV0Junction,XcmV0Junction)',564 X3: '(XcmV0Junction,XcmV0Junction,XcmV0Junction)',565 X4: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',566 X5: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',567 X6: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',568 X7: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',569 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'570 }571 },572 /**573 * Lookup90: xcm::v0::junction::Junction574 **/575 XcmV0Junction: {576 _enum: {577 Parent: 'Null',578 Parachain: 'Compact<u32>',579 AccountId32: {580 network: 'XcmV0JunctionNetworkId',581 id: '[u8;32]',582 },583 AccountIndex64: {584 network: 'XcmV0JunctionNetworkId',585 index: 'Compact<u64>',586 },587 AccountKey20: {588 network: 'XcmV0JunctionNetworkId',589 key: '[u8;20]',590 },591 PalletInstance: 'u8',592 GeneralIndex: 'Compact<u128>',593 GeneralKey: 'Bytes',594 OnlyChild: 'Null',595 Plurality: {596 id: 'XcmV0JunctionBodyId',597 part: 'XcmV0JunctionBodyPart'598 }599 }600 },601 /**602 * Lookup91: xcm::v0::junction::NetworkId603 **/604 XcmV0JunctionNetworkId: {605 _enum: {606 Any: 'Null',607 Named: 'Bytes',608 Polkadot: 'Null',609 Kusama: 'Null'610 }611 },612 /**613 * Lookup92: xcm::v0::junction::BodyId614 **/615 XcmV0JunctionBodyId: {616 _enum: {617 Unit: 'Null',618 Named: 'Bytes',619 Index: 'Compact<u32>',620 Executive: 'Null',621 Technical: 'Null',622 Legislative: 'Null',623 Judicial: 'Null'624 }625 },626 /**627 * Lookup93: xcm::v0::junction::BodyPart628 **/629 XcmV0JunctionBodyPart: {630 _enum: {631 Voice: 'Null',632 Members: {633 count: 'Compact<u32>',634 },635 Fraction: {636 nom: 'Compact<u32>',637 denom: 'Compact<u32>',638 },639 AtLeastProportion: {640 nom: 'Compact<u32>',641 denom: 'Compact<u32>',642 },643 MoreThanProportion: {644 nom: 'Compact<u32>',645 denom: 'Compact<u32>'646 }647 }648 },649 /**650 * Lookup94: xcm::v1::multilocation::MultiLocation651 **/652 XcmV1MultiLocation: {653 parents: 'u8',654 interior: 'XcmV1MultilocationJunctions'655 },656 /**657 * Lookup95: xcm::v1::multilocation::Junctions658 **/659 XcmV1MultilocationJunctions: {660 _enum: {661 Here: 'Null',662 X1: 'XcmV1Junction',663 X2: '(XcmV1Junction,XcmV1Junction)',664 X3: '(XcmV1Junction,XcmV1Junction,XcmV1Junction)',665 X4: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',666 X5: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',667 X6: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',668 X7: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',669 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'670 }671 },672 /**673 * Lookup96: xcm::v1::junction::Junction674 **/675 XcmV1Junction: {676 _enum: {677 Parachain: 'Compact<u32>',678 AccountId32: {679 network: 'XcmV0JunctionNetworkId',680 id: '[u8;32]',681 },682 AccountIndex64: {683 network: 'XcmV0JunctionNetworkId',684 index: 'Compact<u64>',685 },686 AccountKey20: {687 network: 'XcmV0JunctionNetworkId',688 key: '[u8;20]',689 },690 PalletInstance: 'u8',691 GeneralIndex: 'Compact<u128>',692 GeneralKey: 'Bytes',693 OnlyChild: 'Null',694 Plurality: {695 id: 'XcmV0JunctionBodyId',696 part: 'XcmV0JunctionBodyPart'697 }698 }699 },700 /**701 * Lookup97: xcm::VersionedXcm<Call>702 **/703 XcmVersionedXcm: {704 _enum: {705 V0: 'XcmV0Xcm',706 V1: 'XcmV1Xcm',707 V2: 'XcmV2Xcm'708 }709 },710 /**711 * Lookup98: xcm::v0::Xcm<Call>712 **/713 XcmV0Xcm: {714 _enum: {715 WithdrawAsset: {716 assets: 'Vec<XcmV0MultiAsset>',717 effects: 'Vec<XcmV0Order>',718 },719 ReserveAssetDeposit: {720 assets: 'Vec<XcmV0MultiAsset>',721 effects: 'Vec<XcmV0Order>',722 },723 TeleportAsset: {724 assets: 'Vec<XcmV0MultiAsset>',725 effects: 'Vec<XcmV0Order>',726 },727 QueryResponse: {728 queryId: 'Compact<u64>',729 response: 'XcmV0Response',730 },731 TransferAsset: {732 assets: 'Vec<XcmV0MultiAsset>',733 dest: 'XcmV0MultiLocation',734 },735 TransferReserveAsset: {736 assets: 'Vec<XcmV0MultiAsset>',737 dest: 'XcmV0MultiLocation',738 effects: 'Vec<XcmV0Order>',739 },740 Transact: {741 originType: 'XcmV0OriginKind',742 requireWeightAtMost: 'u64',743 call: 'XcmDoubleEncoded',744 },745 HrmpNewChannelOpenRequest: {746 sender: 'Compact<u32>',747 maxMessageSize: 'Compact<u32>',748 maxCapacity: 'Compact<u32>',749 },750 HrmpChannelAccepted: {751 recipient: 'Compact<u32>',752 },753 HrmpChannelClosing: {754 initiator: 'Compact<u32>',755 sender: 'Compact<u32>',756 recipient: 'Compact<u32>',757 },758 RelayedFrom: {759 who: 'XcmV0MultiLocation',760 message: 'XcmV0Xcm'761 }762 }763 },764 /**765 * Lookup100: xcm::v0::multi_asset::MultiAsset766 **/767 XcmV0MultiAsset: {768 _enum: {769 None: 'Null',770 All: 'Null',771 AllFungible: 'Null',772 AllNonFungible: 'Null',773 AllAbstractFungible: {774 id: 'Bytes',775 },776 AllAbstractNonFungible: {777 class: 'Bytes',778 },779 AllConcreteFungible: {780 id: 'XcmV0MultiLocation',781 },782 AllConcreteNonFungible: {783 class: 'XcmV0MultiLocation',784 },785 AbstractFungible: {786 id: 'Bytes',787 amount: 'Compact<u128>',788 },789 AbstractNonFungible: {790 class: 'Bytes',791 instance: 'XcmV1MultiassetAssetInstance',792 },793 ConcreteFungible: {794 id: 'XcmV0MultiLocation',795 amount: 'Compact<u128>',796 },797 ConcreteNonFungible: {798 class: 'XcmV0MultiLocation',799 instance: 'XcmV1MultiassetAssetInstance'800 }801 }802 },803 /**804 * Lookup101: xcm::v1::multiasset::AssetInstance805 **/806 XcmV1MultiassetAssetInstance: {807 _enum: {808 Undefined: 'Null',809 Index: 'Compact<u128>',810 Array4: '[u8;4]',811 Array8: '[u8;8]',812 Array16: '[u8;16]',813 Array32: '[u8;32]',814 Blob: 'Bytes'815 }816 },817 /**818 * Lookup105: xcm::v0::order::Order<Call>819 **/820 XcmV0Order: {821 _enum: {822 Null: 'Null',823 DepositAsset: {824 assets: 'Vec<XcmV0MultiAsset>',825 dest: 'XcmV0MultiLocation',826 },827 DepositReserveAsset: {828 assets: 'Vec<XcmV0MultiAsset>',829 dest: 'XcmV0MultiLocation',830 effects: 'Vec<XcmV0Order>',831 },832 ExchangeAsset: {833 give: 'Vec<XcmV0MultiAsset>',834 receive: 'Vec<XcmV0MultiAsset>',835 },836 InitiateReserveWithdraw: {837 assets: 'Vec<XcmV0MultiAsset>',838 reserve: 'XcmV0MultiLocation',839 effects: 'Vec<XcmV0Order>',840 },841 InitiateTeleport: {842 assets: 'Vec<XcmV0MultiAsset>',843 dest: 'XcmV0MultiLocation',844 effects: 'Vec<XcmV0Order>',845 },846 QueryHolding: {847 queryId: 'Compact<u64>',848 dest: 'XcmV0MultiLocation',849 assets: 'Vec<XcmV0MultiAsset>',850 },851 BuyExecution: {852 fees: 'XcmV0MultiAsset',853 weight: 'u64',854 debt: 'u64',855 haltOnError: 'bool',856 xcm: 'Vec<XcmV0Xcm>'857 }858 }859 },860 /**861 * Lookup107: xcm::v0::Response862 **/863 XcmV0Response: {864 _enum: {865 Assets: 'Vec<XcmV0MultiAsset>'866 }867 },868 /**869 * Lookup108: xcm::v0::OriginKind870 **/871 XcmV0OriginKind: {872 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']873 },874 /**875 * Lookup109: xcm::double_encoded::DoubleEncoded<T>876 **/877 XcmDoubleEncoded: {878 encoded: 'Bytes'879 },880 /**881 * Lookup110: xcm::v1::Xcm<Call>882 **/883 XcmV1Xcm: {884 _enum: {885 WithdrawAsset: {886 assets: 'XcmV1MultiassetMultiAssets',887 effects: 'Vec<XcmV1Order>',888 },889 ReserveAssetDeposited: {890 assets: 'XcmV1MultiassetMultiAssets',891 effects: 'Vec<XcmV1Order>',892 },893 ReceiveTeleportedAsset: {894 assets: 'XcmV1MultiassetMultiAssets',895 effects: 'Vec<XcmV1Order>',896 },897 QueryResponse: {898 queryId: 'Compact<u64>',899 response: 'XcmV1Response',900 },901 TransferAsset: {902 assets: 'XcmV1MultiassetMultiAssets',903 beneficiary: 'XcmV1MultiLocation',904 },905 TransferReserveAsset: {906 assets: 'XcmV1MultiassetMultiAssets',907 dest: 'XcmV1MultiLocation',908 effects: 'Vec<XcmV1Order>',909 },910 Transact: {911 originType: 'XcmV0OriginKind',912 requireWeightAtMost: 'u64',913 call: 'XcmDoubleEncoded',914 },915 HrmpNewChannelOpenRequest: {916 sender: 'Compact<u32>',917 maxMessageSize: 'Compact<u32>',918 maxCapacity: 'Compact<u32>',919 },920 HrmpChannelAccepted: {921 recipient: 'Compact<u32>',922 },923 HrmpChannelClosing: {924 initiator: 'Compact<u32>',925 sender: 'Compact<u32>',926 recipient: 'Compact<u32>',927 },928 RelayedFrom: {929 who: 'XcmV1MultilocationJunctions',930 message: 'XcmV1Xcm',931 },932 SubscribeVersion: {933 queryId: 'Compact<u64>',934 maxResponseWeight: 'Compact<u64>',935 },936 UnsubscribeVersion: 'Null'937 }938 },939 /**940 * Lookup111: xcm::v1::multiasset::MultiAssets941 **/942 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',943 /**944 * Lookup113: xcm::v1::multiasset::MultiAsset945 **/946 XcmV1MultiAsset: {947 id: 'XcmV1MultiassetAssetId',948 fun: 'XcmV1MultiassetFungibility'949 },950 /**951 * Lookup114: xcm::v1::multiasset::AssetId952 **/953 XcmV1MultiassetAssetId: {954 _enum: {955 Concrete: 'XcmV1MultiLocation',956 Abstract: 'Bytes'957 }958 },959 /**960 * Lookup115: xcm::v1::multiasset::Fungibility961 **/962 XcmV1MultiassetFungibility: {963 _enum: {964 Fungible: 'Compact<u128>',965 NonFungible: 'XcmV1MultiassetAssetInstance'966 }967 },968 /**969 * Lookup117: xcm::v1::order::Order<Call>970 **/971 XcmV1Order: {972 _enum: {973 Noop: 'Null',974 DepositAsset: {975 assets: 'XcmV1MultiassetMultiAssetFilter',976 maxAssets: 'u32',977 beneficiary: 'XcmV1MultiLocation',978 },979 DepositReserveAsset: {980 assets: 'XcmV1MultiassetMultiAssetFilter',981 maxAssets: 'u32',982 dest: 'XcmV1MultiLocation',983 effects: 'Vec<XcmV1Order>',984 },985 ExchangeAsset: {986 give: 'XcmV1MultiassetMultiAssetFilter',987 receive: 'XcmV1MultiassetMultiAssets',988 },989 InitiateReserveWithdraw: {990 assets: 'XcmV1MultiassetMultiAssetFilter',991 reserve: 'XcmV1MultiLocation',992 effects: 'Vec<XcmV1Order>',993 },994 InitiateTeleport: {995 assets: 'XcmV1MultiassetMultiAssetFilter',996 dest: 'XcmV1MultiLocation',997 effects: 'Vec<XcmV1Order>',998 },999 QueryHolding: {1000 queryId: 'Compact<u64>',1001 dest: 'XcmV1MultiLocation',1002 assets: 'XcmV1MultiassetMultiAssetFilter',1003 },1004 BuyExecution: {1005 fees: 'XcmV1MultiAsset',1006 weight: 'u64',1007 debt: 'u64',1008 haltOnError: 'bool',1009 instructions: 'Vec<XcmV1Xcm>'1010 }1011 }1012 },1013 /**1014 * Lookup118: xcm::v1::multiasset::MultiAssetFilter1015 **/1016 XcmV1MultiassetMultiAssetFilter: {1017 _enum: {1018 Definite: 'XcmV1MultiassetMultiAssets',1019 Wild: 'XcmV1MultiassetWildMultiAsset'1020 }1021 },1022 /**1023 * Lookup119: xcm::v1::multiasset::WildMultiAsset1024 **/1025 XcmV1MultiassetWildMultiAsset: {1026 _enum: {1027 All: 'Null',1028 AllOf: {1029 id: 'XcmV1MultiassetAssetId',1030 fun: 'XcmV1MultiassetWildFungibility'1031 }1032 }1033 },1034 /**1035 * Lookup120: xcm::v1::multiasset::WildFungibility1036 **/1037 XcmV1MultiassetWildFungibility: {1038 _enum: ['Fungible', 'NonFungible']1039 },1040 /**1041 * Lookup122: xcm::v1::Response1042 **/1043 XcmV1Response: {1044 _enum: {1045 Assets: 'XcmV1MultiassetMultiAssets',1046 Version: 'u32'1047 }1048 },1049 /**1050 * Lookup123: xcm::v2::Xcm<Call>1051 **/1052 XcmV2Xcm: 'Vec<XcmV2Instruction>',1053 /**1054 * Lookup125: xcm::v2::Instruction<Call>1055 **/1056 XcmV2Instruction: {1057 _enum: {1058 WithdrawAsset: 'XcmV1MultiassetMultiAssets',1059 ReserveAssetDeposited: 'XcmV1MultiassetMultiAssets',1060 ReceiveTeleportedAsset: 'XcmV1MultiassetMultiAssets',1061 QueryResponse: {1062 queryId: 'Compact<u64>',1063 response: 'XcmV2Response',1064 maxWeight: 'Compact<u64>',1065 },1066 TransferAsset: {1067 assets: 'XcmV1MultiassetMultiAssets',1068 beneficiary: 'XcmV1MultiLocation',1069 },1070 TransferReserveAsset: {1071 assets: 'XcmV1MultiassetMultiAssets',1072 dest: 'XcmV1MultiLocation',1073 xcm: 'XcmV2Xcm',1074 },1075 Transact: {1076 originType: 'XcmV0OriginKind',1077 requireWeightAtMost: 'Compact<u64>',1078 call: 'XcmDoubleEncoded',1079 },1080 HrmpNewChannelOpenRequest: {1081 sender: 'Compact<u32>',1082 maxMessageSize: 'Compact<u32>',1083 maxCapacity: 'Compact<u32>',1084 },1085 HrmpChannelAccepted: {1086 recipient: 'Compact<u32>',1087 },1088 HrmpChannelClosing: {1089 initiator: 'Compact<u32>',1090 sender: 'Compact<u32>',1091 recipient: 'Compact<u32>',1092 },1093 ClearOrigin: 'Null',1094 DescendOrigin: 'XcmV1MultilocationJunctions',1095 ReportError: {1096 queryId: 'Compact<u64>',1097 dest: 'XcmV1MultiLocation',1098 maxResponseWeight: 'Compact<u64>',1099 },1100 DepositAsset: {1101 assets: 'XcmV1MultiassetMultiAssetFilter',1102 maxAssets: 'Compact<u32>',1103 beneficiary: 'XcmV1MultiLocation',1104 },1105 DepositReserveAsset: {1106 assets: 'XcmV1MultiassetMultiAssetFilter',1107 maxAssets: 'Compact<u32>',1108 dest: 'XcmV1MultiLocation',1109 xcm: 'XcmV2Xcm',1110 },1111 ExchangeAsset: {1112 give: 'XcmV1MultiassetMultiAssetFilter',1113 receive: 'XcmV1MultiassetMultiAssets',1114 },1115 InitiateReserveWithdraw: {1116 assets: 'XcmV1MultiassetMultiAssetFilter',1117 reserve: 'XcmV1MultiLocation',1118 xcm: 'XcmV2Xcm',1119 },1120 InitiateTeleport: {1121 assets: 'XcmV1MultiassetMultiAssetFilter',1122 dest: 'XcmV1MultiLocation',1123 xcm: 'XcmV2Xcm',1124 },1125 QueryHolding: {1126 queryId: 'Compact<u64>',1127 dest: 'XcmV1MultiLocation',1128 assets: 'XcmV1MultiassetMultiAssetFilter',1129 maxResponseWeight: 'Compact<u64>',1130 },1131 BuyExecution: {1132 fees: 'XcmV1MultiAsset',1133 weightLimit: 'XcmV2WeightLimit',1134 },1135 RefundSurplus: 'Null',1136 SetErrorHandler: 'XcmV2Xcm',1137 SetAppendix: 'XcmV2Xcm',1138 ClearError: 'Null',1139 ClaimAsset: {1140 assets: 'XcmV1MultiassetMultiAssets',1141 ticket: 'XcmV1MultiLocation',1142 },1143 Trap: 'Compact<u64>',1144 SubscribeVersion: {1145 queryId: 'Compact<u64>',1146 maxResponseWeight: 'Compact<u64>',1147 },1148 UnsubscribeVersion: 'Null'1149 }1150 },1151 /**1152 * Lookup126: xcm::v2::Response1153 **/1154 XcmV2Response: {1155 _enum: {1156 Null: 'Null',1157 Assets: 'XcmV1MultiassetMultiAssets',1158 ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',1159 Version: 'u32'1160 }1161 },1162 /**1163 * Lookup129: xcm::v2::traits::Error1164 **/1165 XcmV2TraitsError: {1166 _enum: {1167 Overflow: 'Null',1168 Unimplemented: 'Null',1169 UntrustedReserveLocation: 'Null',1170 UntrustedTeleportLocation: 'Null',1171 MultiLocationFull: 'Null',1172 MultiLocationNotInvertible: 'Null',1173 BadOrigin: 'Null',1174 InvalidLocation: 'Null',1175 AssetNotFound: 'Null',1176 FailedToTransactAsset: 'Null',1177 NotWithdrawable: 'Null',1178 LocationCannotHold: 'Null',1179 ExceedsMaxMessageSize: 'Null',1180 DestinationUnsupported: 'Null',1181 Transport: 'Null',1182 Unroutable: 'Null',1183 UnknownClaim: 'Null',1184 FailedToDecode: 'Null',1185 MaxWeightInvalid: 'Null',1186 NotHoldingFees: 'Null',1187 TooExpensive: 'Null',1188 Trap: 'u64',1189 UnhandledXcmVersion: 'Null',1190 WeightLimitReached: 'u64',1191 Barrier: 'Null',1192 WeightNotComputable: 'Null'1193 }1194 },1195 /**1196 * Lookup130: xcm::v2::WeightLimit1197 **/1198 XcmV2WeightLimit: {1199 _enum: {1200 Unlimited: 'Null',1201 Limited: 'Compact<u64>'1202 }1203 },1204 /**1205 * Lookup131: xcm::VersionedMultiAssets1206 **/1207 XcmVersionedMultiAssets: {1208 _enum: {1209 V0: 'Vec<XcmV0MultiAsset>',1210 V1: 'XcmV1MultiassetMultiAssets'1211 }1212 },1213 /**1214 * Lookup146: cumulus_pallet_xcm::pallet::Call<T>1215 **/1216 CumulusPalletXcmCall: 'Null',1217 /**1218 * Lookup147: cumulus_pallet_dmp_queue::pallet::Call<T>1219 **/1220 CumulusPalletDmpQueueCall: {1221 _enum: {1222 service_overweight: {1223 index: 'u64',1224 weightLimit: 'u64'1225 }1226 }1227 },1228 /**1229 * Lookup148: pallet_inflation::pallet::Call<T>1230 **/1231 PalletInflationCall: {1232 _enum: {1233 start_inflation: {1234 inflationStartRelayBlock: 'u32'1235 }1236 }1237 },1238 /**1239 * Lookup149: pallet_unique::Call<T>1240 **/1241 PalletUniqueCall: {1242 _enum: {1243 create_collection: {1244 collectionName: 'Vec<u16>',1245 collectionDescription: 'Vec<u16>',1246 tokenPrefix: 'Bytes',1247 mode: 'UpDataStructsCollectionMode',1248 },1249 create_collection_ex: {1250 data: 'UpDataStructsCreateCollectionData',1251 },1252 destroy_collection: {1253 collectionId: 'u32',1254 },1255 add_to_allow_list: {1256 collectionId: 'u32',1257 address: 'PalletCommonAccountBasicCrossAccountIdRepr',1258 },1259 remove_from_allow_list: {1260 collectionId: 'u32',1261 address: 'PalletCommonAccountBasicCrossAccountIdRepr',1262 },1263 set_public_access_mode: {1264 collectionId: 'u32',1265 mode: 'UpDataStructsAccessMode',1266 },1267 set_mint_permission: {1268 collectionId: 'u32',1269 mintPermission: 'bool',1270 },1271 change_collection_owner: {1272 collectionId: 'u32',1273 newOwner: 'AccountId32',1274 },1275 add_collection_admin: {1276 collectionId: 'u32',1277 newAdminId: 'PalletCommonAccountBasicCrossAccountIdRepr',1278 },1279 remove_collection_admin: {1280 collectionId: 'u32',1281 accountId: 'PalletCommonAccountBasicCrossAccountIdRepr',1282 },1283 set_collection_sponsor: {1284 collectionId: 'u32',1285 newSponsor: 'AccountId32',1286 },1287 confirm_sponsorship: {1288 collectionId: 'u32',1289 },1290 remove_collection_sponsor: {1291 collectionId: 'u32',1292 },1293 create_item: {1294 collectionId: 'u32',1295 owner: 'PalletCommonAccountBasicCrossAccountIdRepr',1296 data: 'UpDataStructsCreateItemData',1297 },1298 create_multiple_items: {1299 collectionId: 'u32',1300 owner: 'PalletCommonAccountBasicCrossAccountIdRepr',1301 itemsData: 'Vec<UpDataStructsCreateItemData>',1302 },1303 set_transfers_enabled_flag: {1304 collectionId: 'u32',1305 value: 'bool',1306 },1307 burn_item: {1308 collectionId: 'u32',1309 itemId: 'u32',1310 value: 'u128',1311 },1312 burn_from: {1313 collectionId: 'u32',1314 from: 'PalletCommonAccountBasicCrossAccountIdRepr',1315 itemId: 'u32',1316 value: 'u128',1317 },1318 transfer: {1319 recipient: 'PalletCommonAccountBasicCrossAccountIdRepr',1320 collectionId: 'u32',1321 itemId: 'u32',1322 value: 'u128',1323 },1324 approve: {1325 spender: 'PalletCommonAccountBasicCrossAccountIdRepr',1326 collectionId: 'u32',1327 itemId: 'u32',1328 amount: 'u128',1329 },1330 transfer_from: {1331 from: 'PalletCommonAccountBasicCrossAccountIdRepr',1332 recipient: 'PalletCommonAccountBasicCrossAccountIdRepr',1333 collectionId: 'u32',1334 itemId: 'u32',1335 value: 'u128',1336 },1337 set_variable_meta_data: {1338 collectionId: 'u32',1339 itemId: 'u32',1340 data: 'Bytes',1341 },1342 set_meta_update_permission_flag: {1343 collectionId: 'u32',1344 value: 'UpDataStructsMetaUpdatePermission',1345 },1346 set_schema_version: {1347 collectionId: 'u32',1348 version: 'UpDataStructsSchemaVersion',1349 },1350 set_offchain_schema: {1351 collectionId: 'u32',1352 schema: 'Bytes',1353 },1354 set_const_on_chain_schema: {1355 collectionId: 'u32',1356 schema: 'Bytes',1357 },1358 set_variable_on_chain_schema: {1359 collectionId: 'u32',1360 schema: 'Bytes',1361 },1362 set_collection_limits: {1363 collectionId: 'u32',1364 newLimit: 'UpDataStructsCollectionLimits'1365 }1366 }1367 },1368 /**1369 * Lookup155: up_data_structs::CollectionMode1370 **/1371 UpDataStructsCollectionMode: {1372 _enum: {1373 NFT: 'Null',1374 Fungible: 'u8',1375 ReFungible: 'Null'1376 }1377 },1378 /**1379 * Lookup156: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>1380 **/1381 UpDataStructsCreateCollectionData: {1382 mode: 'UpDataStructsCollectionMode',1383 access: 'Option<UpDataStructsAccessMode>',1384 name: 'Vec<u16>',1385 description: 'Vec<u16>',1386 tokenPrefix: 'Bytes',1387 offchainSchema: 'Bytes',1388 schemaVersion: 'Option<UpDataStructsSchemaVersion>',1389 pendingSponsor: 'Option<AccountId32>',1390 limits: 'Option<UpDataStructsCollectionLimits>',1391 variableOnChainSchema: 'Bytes',1392 constOnChainSchema: 'Bytes',1393 metaUpdatePermission: 'Option<UpDataStructsMetaUpdatePermission>'1394 },1395 /**1396 * Lookup158: up_data_structs::AccessMode1397 **/1398 UpDataStructsAccessMode: {1399 _enum: ['Normal', 'AllowList']1400 },1401 /**1402 * Lookup161: up_data_structs::SchemaVersion1403 **/1404 UpDataStructsSchemaVersion: {1405 _enum: ['ImageURL', 'Unique']1406 },1407 /**1408 * Lookup164: up_data_structs::CollectionLimits1409 **/1410 UpDataStructsCollectionLimits: {1411 accountTokenOwnershipLimit: 'Option<u32>',1412 sponsoredDataSize: 'Option<u32>',1413 sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',1414 tokenLimit: 'Option<u32>',1415 sponsorTransferTimeout: 'Option<u32>',1416 sponsorApproveTimeout: 'Option<u32>',1417 ownerCanTransfer: 'Option<bool>',1418 ownerCanDestroy: 'Option<bool>',1419 transfersEnabled: 'Option<bool>'1420 },1421 /**1422 * Lookup166: up_data_structs::SponsoringRateLimit1423 **/1424 UpDataStructsSponsoringRateLimit: {1425 _enum: {1426 SponsoringDisabled: 'Null',1427 Blocks: 'u32'1428 }1429 },1430 /**1431 * Lookup170: up_data_structs::MetaUpdatePermission1432 **/1433 UpDataStructsMetaUpdatePermission: {1434 _enum: ['ItemOwner', 'Admin', 'None']1435 },1436 /**1437 * Lookup172: pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1438 **/1439 PalletCommonAccountBasicCrossAccountIdRepr: {1440 _enum: {1441 Substrate: 'AccountId32',1442 Ethereum: 'H160'1443 }1444 },1445 /**1446 * Lookup174: up_data_structs::CreateItemData1447 **/1448 UpDataStructsCreateItemData: {1449 _enum: {1450 NFT: 'UpDataStructsCreateNftData',1451 Fungible: 'UpDataStructsCreateFungibleData',1452 ReFungible: 'UpDataStructsCreateReFungibleData'1453 }1454 },1455 /**1456 * Lookup175: up_data_structs::CreateNftData1457 **/1458 UpDataStructsCreateNftData: {1459 constData: 'Bytes',1460 variableData: 'Bytes'1461 },1462 /**1463 * Lookup177: up_data_structs::CreateFungibleData1464 **/1465 UpDataStructsCreateFungibleData: {1466 value: 'u128'1467 },1468 /**1469 * Lookup178: up_data_structs::CreateReFungibleData1470 **/1471 UpDataStructsCreateReFungibleData: {1472 constData: 'Bytes',1473 variableData: 'Bytes',1474 pieces: 'u128'1475 },1476 /**1477 * Lookup181: pallet_template_transaction_payment::Call<T>1478 **/1479 PalletTemplateTransactionPaymentCall: 'Null',1480 /**1481 * Lookup182: pallet_evm::pallet::Call<T>1482 **/1483 PalletEvmCall: {1484 _enum: {1485 withdraw: {1486 address: 'H160',1487 value: 'u128',1488 },1489 call: {1490 source: 'H160',1491 target: 'H160',1492 input: 'Bytes',1493 value: 'U256',1494 gasLimit: 'u64',1495 maxFeePerGas: 'U256',1496 maxPriorityFeePerGas: 'Option<U256>',1497 nonce: 'Option<U256>',1498 accessList: 'Vec<(H160,Vec<H256>)>',1499 },1500 create: {1501 source: 'H160',1502 init: 'Bytes',1503 value: 'U256',1504 gasLimit: 'u64',1505 maxFeePerGas: 'U256',1506 maxPriorityFeePerGas: 'Option<U256>',1507 nonce: 'Option<U256>',1508 accessList: 'Vec<(H160,Vec<H256>)>',1509 },1510 create2: {1511 source: 'H160',1512 init: 'Bytes',1513 salt: 'H256',1514 value: 'U256',1515 gasLimit: 'u64',1516 maxFeePerGas: 'U256',1517 maxPriorityFeePerGas: 'Option<U256>',1518 nonce: 'Option<U256>',1519 accessList: 'Vec<(H160,Vec<H256>)>'1520 }1521 }1522 },1523 /**1524 * Lookup188: pallet_ethereum::pallet::Call<T>1525 **/1526 PalletEthereumCall: {1527 _enum: {1528 transact: {1529 transaction: 'EthereumTransactionTransactionV2'1530 }1531 }1532 },1533 /**1534 * Lookup189: ethereum::transaction::TransactionV21535 **/1536 EthereumTransactionTransactionV2: {1537 _enum: {1538 Legacy: 'EthereumTransactionLegacyTransaction',1539 EIP2930: 'EthereumTransactionEip2930Transaction',1540 EIP1559: 'EthereumTransactionEip1559Transaction'1541 }1542 },1543 /**1544 * Lookup190: ethereum::transaction::LegacyTransaction1545 **/1546 EthereumTransactionLegacyTransaction: {1547 nonce: 'U256',1548 gasPrice: 'U256',1549 gasLimit: 'U256',1550 action: 'EthereumTransactionTransactionAction',1551 value: 'U256',1552 input: 'Bytes',1553 signature: 'EthereumTransactionTransactionSignature'1554 },1555 /**1556 * Lookup191: ethereum::transaction::TransactionAction1557 **/1558 EthereumTransactionTransactionAction: {1559 _enum: {1560 Call: 'H160',1561 Create: 'Null'1562 }1563 },1564 /**1565 * Lookup192: ethereum::transaction::TransactionSignature1566 **/1567 EthereumTransactionTransactionSignature: {1568 v: 'u64',1569 r: 'H256',1570 s: 'H256'1571 },1572 /**1573 * Lookup194: ethereum::transaction::EIP2930Transaction1574 **/1575 EthereumTransactionEip2930Transaction: {1576 chainId: 'u64',1577 nonce: 'U256',1578 gasPrice: 'U256',1579 gasLimit: 'U256',1580 action: 'EthereumTransactionTransactionAction',1581 value: 'U256',1582 input: 'Bytes',1583 accessList: 'Vec<EthereumTransactionAccessListItem>',1584 oddYParity: 'bool',1585 r: 'H256',1586 s: 'H256'1587 },1588 /**1589 * Lookup196: ethereum::transaction::AccessListItem1590 **/1591 EthereumTransactionAccessListItem: {1592 address: 'H160',1593 slots: 'Vec<H256>'1594 },1595 /**1596 * Lookup197: ethereum::transaction::EIP1559Transaction1597 **/1598 EthereumTransactionEip1559Transaction: {1599 chainId: 'u64',1600 nonce: 'U256',1601 maxPriorityFeePerGas: 'U256',1602 maxFeePerGas: 'U256',1603 gasLimit: 'U256',1604 action: 'EthereumTransactionTransactionAction',1605 value: 'U256',1606 input: 'Bytes',1607 accessList: 'Vec<EthereumTransactionAccessListItem>',1608 oddYParity: 'bool',1609 r: 'H256',1610 s: 'H256'1611 },1612 /**1613 * Lookup198: pallet_evm_migration::pallet::Call<T>1614 **/1615 PalletEvmMigrationCall: {1616 _enum: {1617 begin: {1618 address: 'H160',1619 },1620 set_data: {1621 address: 'H160',1622 data: 'Vec<(H256,H256)>',1623 },1624 finish: {1625 address: 'H160',1626 code: 'Bytes'1627 }1628 }1629 },1630 /**1631 * Lookup201: pallet_sudo::pallet::Event<T>1632 **/1633 PalletSudoEvent: {1634 _enum: {1635 Sudid: {1636 sudoResult: 'Result<Null, SpRuntimeDispatchError>',1637 },1638 KeyChanged: {1639 oldSudoer: 'Option<AccountId32>',1640 },1641 SudoAsDone: {1642 sudoResult: 'Result<Null, SpRuntimeDispatchError>'1643 }1644 }1645 },1646 /**1647 * Lookup203: sp_runtime::DispatchError1648 **/1649 SpRuntimeDispatchError: {1650 _enum: {1651 Other: 'Null',1652 CannotLookup: 'Null',1653 BadOrigin: 'Null',1654 Module: 'SpRuntimeModuleError',1655 ConsumerRemaining: 'Null',1656 NoProviders: 'Null',1657 TooManyConsumers: 'Null',1658 Token: 'SpRuntimeTokenError',1659 Arithmetic: 'SpRuntimeArithmeticError'1660 }1661 },1662 /**1663 * Lookup204: sp_runtime::ModuleError1664 **/1665 SpRuntimeModuleError: {1666 index: 'u8',1667 error: 'u8'1668 },1669 /**1670 * Lookup205: sp_runtime::TokenError1671 **/1672 SpRuntimeTokenError: {1673 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']1674 },1675 /**1676 * Lookup206: sp_runtime::ArithmeticError1677 **/1678 SpRuntimeArithmeticError: {1679 _enum: ['Underflow', 'Overflow', 'DivisionByZero']1680 },1681 /**1682 * Lookup207: pallet_sudo::pallet::Error<T>1683 **/1684 PalletSudoError: {1685 _enum: ['RequireSudo']1686 },1687 /**1688 * Lookup208: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>1689 **/1690 FrameSystemAccountInfo: {1691 nonce: 'u32',1692 consumers: 'u32',1693 providers: 'u32',1694 sufficients: 'u32',1695 data: 'PalletBalancesAccountData'1696 },1697 /**1698 * Lookup209: frame_support::weights::PerDispatchClass<T>1699 **/1700 FrameSupportWeightsPerDispatchClassU64: {1701 normal: 'u64',1702 operational: 'u64',1703 mandatory: 'u64'1704 },1705 /**1706 * Lookup210: sp_runtime::generic::digest::Digest1707 **/1708 SpRuntimeDigest: {1709 logs: 'Vec<SpRuntimeDigestDigestItem>'1710 },1711 /**1712 * Lookup212: sp_runtime::generic::digest::DigestItem1713 **/1714 SpRuntimeDigestDigestItem: {1715 _enum: {1716 Other: 'Bytes',1717 __Unused1: 'Null',1718 __Unused2: 'Null',1719 __Unused3: 'Null',1720 Consensus: '([u8;4],Bytes)',1721 Seal: '([u8;4],Bytes)',1722 PreRuntime: '([u8;4],Bytes)',1723 __Unused7: 'Null',1724 RuntimeEnvironmentUpdated: 'Null'1725 }1726 },1727 /**1728 * Lookup214: frame_system::EventRecord<unique_runtime::Event, primitive_types::H256>1729 **/1730 FrameSystemEventRecord: {1731 phase: 'FrameSystemPhase',1732 event: 'Event',1733 topics: 'Vec<H256>'1734 },1735 /**1736 * Lookup216: frame_system::pallet::Event<T>1737 **/1738 FrameSystemEvent: {1739 _enum: {1740 ExtrinsicSuccess: {1741 dispatchInfo: 'FrameSupportWeightsDispatchInfo',1742 },1743 ExtrinsicFailed: {1744 dispatchError: 'SpRuntimeDispatchError',1745 dispatchInfo: 'FrameSupportWeightsDispatchInfo',1746 },1747 CodeUpdated: 'Null',1748 NewAccount: {1749 account: 'AccountId32',1750 },1751 KilledAccount: {1752 account: 'AccountId32',1753 },1754 Remarked: {1755 _alias: {1756 hash_: 'hash',1757 },1758 sender: 'AccountId32',1759 hash_: 'H256'1760 }1761 }1762 },1763 /**1764 * Lookup217: frame_support::weights::DispatchInfo1765 **/1766 FrameSupportWeightsDispatchInfo: {1767 weight: 'u64',1768 class: 'FrameSupportWeightsDispatchClass',1769 paysFee: 'FrameSupportWeightsPays'1770 },1771 /**1772 * Lookup218: frame_support::weights::DispatchClass1773 **/1774 FrameSupportWeightsDispatchClass: {1775 _enum: ['Normal', 'Operational', 'Mandatory']1776 },1777 /**1778 * Lookup219: frame_support::weights::Pays1779 **/1780 FrameSupportWeightsPays: {1781 _enum: ['Yes', 'No']1782 },1783 /**1784 * Lookup220: orml_vesting::module::Event<T>1785 **/1786 OrmlVestingModuleEvent: {1787 _enum: {1788 VestingScheduleAdded: {1789 from: 'AccountId32',1790 to: 'AccountId32',1791 vestingSchedule: 'OrmlVestingVestingSchedule',1792 },1793 Claimed: {1794 who: 'AccountId32',1795 amount: 'u128',1796 },1797 VestingSchedulesUpdated: {1798 who: 'AccountId32'1799 }1800 }1801 },1802 /**1803 * Lookup221: cumulus_pallet_xcmp_queue::pallet::Event<T>1804 **/1805 CumulusPalletXcmpQueueEvent: {1806 _enum: {1807 Success: 'Option<H256>',1808 Fail: '(Option<H256>,XcmV2TraitsError)',1809 BadVersion: 'Option<H256>',1810 BadFormat: 'Option<H256>',1811 UpwardMessageSent: 'Option<H256>',1812 XcmpMessageSent: 'Option<H256>',1813 OverweightEnqueued: '(u32,u32,u64,u64)',1814 OverweightServiced: '(u64,u64)'1815 }1816 },1817 /**1818 * Lookup222: pallet_xcm::pallet::Event<T>1819 **/1820 PalletXcmEvent: {1821 _enum: {1822 Attempted: 'XcmV2TraitsOutcome',1823 Sent: '(XcmV1MultiLocation,XcmV1MultiLocation,XcmV2Xcm)',1824 UnexpectedResponse: '(XcmV1MultiLocation,u64)',1825 ResponseReady: '(u64,XcmV2Response)',1826 Notified: '(u64,u8,u8)',1827 NotifyOverweight: '(u64,u8,u8,u64,u64)',1828 NotifyDispatchError: '(u64,u8,u8)',1829 NotifyDecodeFailed: '(u64,u8,u8)',1830 InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',1831 InvalidResponderVersion: '(XcmV1MultiLocation,u64)',1832 ResponseTaken: 'u64',1833 AssetsTrapped: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)',1834 VersionChangeNotified: '(XcmV1MultiLocation,u32)',1835 SupportedVersionChanged: '(XcmV1MultiLocation,u32)',1836 NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',1837 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'1838 }1839 },1840 /**1841 * Lookup223: xcm::v2::traits::Outcome1842 **/1843 XcmV2TraitsOutcome: {1844 _enum: {1845 Complete: 'u64',1846 Incomplete: '(u64,XcmV2TraitsError)',1847 Error: 'XcmV2TraitsError'1848 }1849 },1850 /**1851 * Lookup225: cumulus_pallet_xcm::pallet::Event<T>1852 **/1853 CumulusPalletXcmEvent: {1854 _enum: {1855 InvalidFormat: '[u8;8]',1856 UnsupportedVersion: '[u8;8]',1857 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'1858 }1859 },1860 /**1861 * Lookup226: cumulus_pallet_dmp_queue::pallet::Event<T>1862 **/1863 CumulusPalletDmpQueueEvent: {1864 _enum: {1865 InvalidFormat: '[u8;32]',1866 UnsupportedVersion: '[u8;32]',1867 ExecutedDownward: '([u8;32],XcmV2TraitsOutcome)',1868 WeightExhausted: '([u8;32],u64,u64)',1869 OverweightEnqueued: '([u8;32],u64,u64)',1870 OverweightServiced: '(u64,u64)'1871 }1872 },1873 /**1874 * Lookup227: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1875 **/1876 PalletUniqueRawEvent: {1877 _enum: {1878 CollectionSponsorRemoved: 'u32',1879 CollectionAdminAdded: '(u32,PalletCommonAccountBasicCrossAccountIdRepr)',1880 CollectionOwnedChanged: '(u32,AccountId32)',1881 CollectionSponsorSet: '(u32,AccountId32)',1882 ConstOnChainSchemaSet: 'u32',1883 SponsorshipConfirmed: '(u32,AccountId32)',1884 CollectionAdminRemoved: '(u32,PalletCommonAccountBasicCrossAccountIdRepr)',1885 AllowListAddressRemoved: '(u32,PalletCommonAccountBasicCrossAccountIdRepr)',1886 AllowListAddressAdded: '(u32,PalletCommonAccountBasicCrossAccountIdRepr)',1887 CollectionLimitSet: 'u32',1888 MintPermissionSet: 'u32',1889 OffchainSchemaSet: 'u32',1890 PublicAccessModeSet: '(u32,UpDataStructsAccessMode)',1891 SchemaVersionSet: 'u32',1892 VariableOnChainSchemaSet: 'u32'1893 }1894 },1895 /**1896 * Lookup228: pallet_common::pallet::Event<T>1897 **/1898 PalletCommonEvent: {1899 _enum: {1900 CollectionCreated: '(u32,u8,AccountId32)',1901 CollectionDestroyed: 'u32',1902 ItemCreated: '(u32,u32,PalletCommonAccountBasicCrossAccountIdRepr,u128)',1903 ItemDestroyed: '(u32,u32,PalletCommonAccountBasicCrossAccountIdRepr,u128)',1904 Transfer: '(u32,u32,PalletCommonAccountBasicCrossAccountIdRepr,PalletCommonAccountBasicCrossAccountIdRepr,u128)',1905 Approved: '(u32,u32,PalletCommonAccountBasicCrossAccountIdRepr,PalletCommonAccountBasicCrossAccountIdRepr,u128)'1906 }1907 },1908 /**1909 * Lookup229: pallet_evm::pallet::Event<T>1910 **/1911 PalletEvmEvent: {1912 _enum: {1913 Log: 'EthereumLog',1914 Created: 'H160',1915 CreatedFailed: 'H160',1916 Executed: 'H160',1917 ExecutedFailed: 'H160',1918 BalanceDeposit: '(AccountId32,H160,U256)',1919 BalanceWithdraw: '(AccountId32,H160,U256)'1920 }1921 },1922 /**1923 * Lookup230: ethereum::log::Log1924 **/1925 EthereumLog: {1926 address: 'H160',1927 topics: 'Vec<H256>',1928 data: 'Bytes'1929 },1930 /**1931 * Lookup231: pallet_ethereum::pallet::Event1932 **/1933 PalletEthereumEvent: {1934 _enum: {1935 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'1936 }1937 },1938 /**1939 * Lookup232: evm_core::error::ExitReason1940 **/1941 EvmCoreErrorExitReason: {1942 _enum: {1943 Succeed: 'EvmCoreErrorExitSucceed',1944 Error: 'EvmCoreErrorExitError',1945 Revert: 'EvmCoreErrorExitRevert',1946 Fatal: 'EvmCoreErrorExitFatal'1947 }1948 },1949 /**1950 * Lookup233: evm_core::error::ExitSucceed1951 **/1952 EvmCoreErrorExitSucceed: {1953 _enum: ['Stopped', 'Returned', 'Suicided']1954 },1955 /**1956 * Lookup234: evm_core::error::ExitError1957 **/1958 EvmCoreErrorExitError: {1959 _enum: {1960 StackUnderflow: 'Null',1961 StackOverflow: 'Null',1962 InvalidJump: 'Null',1963 InvalidRange: 'Null',1964 DesignatedInvalid: 'Null',1965 CallTooDeep: 'Null',1966 CreateCollision: 'Null',1967 CreateContractLimit: 'Null',1968 InvalidCode: 'Null',1969 OutOfOffset: 'Null',1970 OutOfGas: 'Null',1971 OutOfFund: 'Null',1972 PCUnderflow: 'Null',1973 CreateEmpty: 'Null',1974 Other: 'Text'1975 }1976 },1977 /**1978 * Lookup237: evm_core::error::ExitRevert1979 **/1980 EvmCoreErrorExitRevert: {1981 _enum: ['Reverted']1982 },1983 /**1984 * Lookup238: evm_core::error::ExitFatal1985 **/1986 EvmCoreErrorExitFatal: {1987 _enum: {1988 NotSupported: 'Null',1989 UnhandledInterrupt: 'Null',1990 CallErrorAsFatal: 'EvmCoreErrorExitError',1991 Other: 'Text'1992 }1993 },1994 /**1995 * Lookup239: frame_system::Phase1996 **/1997 FrameSystemPhase: {1998 _enum: {1999 ApplyExtrinsic: 'u32',2000 Finalization: 'Null',2001 Initialization: 'Null'2002 }2003 },2004 /**2005 * Lookup241: frame_system::LastRuntimeUpgradeInfo2006 **/2007 FrameSystemLastRuntimeUpgradeInfo: {2008 specVersion: 'Compact<u32>',2009 specName: 'Text'2010 },2011 /**2012 * Lookup242: frame_system::limits::BlockWeights2013 **/2014 FrameSystemLimitsBlockWeights: {2015 baseBlock: 'u64',2016 maxBlock: 'u64',2017 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'2018 },2019 /**2020 * Lookup243: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>2021 **/2022 FrameSupportWeightsPerDispatchClassWeightsPerClass: {2023 normal: 'FrameSystemLimitsWeightsPerClass',2024 operational: 'FrameSystemLimitsWeightsPerClass',2025 mandatory: 'FrameSystemLimitsWeightsPerClass'2026 },2027 /**2028 * Lookup244: frame_system::limits::WeightsPerClass2029 **/2030 FrameSystemLimitsWeightsPerClass: {2031 baseExtrinsic: 'u64',2032 maxExtrinsic: 'Option<u64>',2033 maxTotal: 'Option<u64>',2034 reserved: 'Option<u64>'2035 },2036 /**2037 * Lookup246: frame_system::limits::BlockLength2038 **/2039 FrameSystemLimitsBlockLength: {2040 max: 'FrameSupportWeightsPerDispatchClassU32'2041 },2042 /**2043 * Lookup247: frame_support::weights::PerDispatchClass<T>2044 **/2045 FrameSupportWeightsPerDispatchClassU32: {2046 normal: 'u32',2047 operational: 'u32',2048 mandatory: 'u32'2049 },2050 /**2051 * Lookup248: frame_support::weights::RuntimeDbWeight2052 **/2053 FrameSupportWeightsRuntimeDbWeight: {2054 read: 'u64',2055 write: 'u64'2056 },2057 /**2058 * Lookup249: sp_version::RuntimeVersion2059 **/2060 SpVersionRuntimeVersion: {2061 specName: 'Text',2062 implName: 'Text',2063 authoringVersion: 'u32',2064 specVersion: 'u32',2065 implVersion: 'u32',2066 apis: 'Vec<([u8;8],u32)>',2067 transactionVersion: 'u32',2068 stateVersion: 'u8'2069 },2070 /**2071 * Lookup253: frame_system::pallet::Error<T>2072 **/2073 FrameSystemError: {2074 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']2075 },2076 /**2077 * Lookup255: orml_vesting::module::Error<T>2078 **/2079 OrmlVestingModuleError: {2080 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2081 },2082 /**2083 * Lookup257: cumulus_pallet_xcmp_queue::InboundChannelDetails2084 **/2085 CumulusPalletXcmpQueueInboundChannelDetails: {2086 sender: 'u32',2087 state: 'CumulusPalletXcmpQueueInboundState',2088 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2089 },2090 /**2091 * Lookup258: cumulus_pallet_xcmp_queue::InboundState2092 **/2093 CumulusPalletXcmpQueueInboundState: {2094 _enum: ['Ok', 'Suspended']2095 },2096 /**2097 * Lookup261: polkadot_parachain::primitives::XcmpMessageFormat2098 **/2099 PolkadotParachainPrimitivesXcmpMessageFormat: {2100 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2101 },2102 /**2103 * Lookup264: cumulus_pallet_xcmp_queue::OutboundChannelDetails2104 **/2105 CumulusPalletXcmpQueueOutboundChannelDetails: {2106 recipient: 'u32',2107 state: 'CumulusPalletXcmpQueueOutboundState',2108 signalsExist: 'bool',2109 firstIndex: 'u16',2110 lastIndex: 'u16'2111 },2112 /**2113 * Lookup265: cumulus_pallet_xcmp_queue::OutboundState2114 **/2115 CumulusPalletXcmpQueueOutboundState: {2116 _enum: ['Ok', 'Suspended']2117 },2118 /**2119 * Lookup267: cumulus_pallet_xcmp_queue::QueueConfigData2120 **/2121 CumulusPalletXcmpQueueQueueConfigData: {2122 suspendThreshold: 'u32',2123 dropThreshold: 'u32',2124 resumeThreshold: 'u32',2125 thresholdWeight: 'u64',2126 weightRestrictDecay: 'u64',2127 xcmpMaxIndividualWeight: 'u64'2128 },2129 /**2130 * Lookup269: cumulus_pallet_xcmp_queue::pallet::Error<T>2131 **/2132 CumulusPalletXcmpQueueError: {2133 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2134 },2135 /**2136 * Lookup270: pallet_xcm::pallet::Error<T>2137 **/2138 PalletXcmError: {2139 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2140 },2141 /**2142 * Lookup271: cumulus_pallet_xcm::pallet::Error<T>2143 **/2144 CumulusPalletXcmError: 'Null',2145 /**2146 * Lookup272: cumulus_pallet_dmp_queue::ConfigData2147 **/2148 CumulusPalletDmpQueueConfigData: {2149 maxIndividual: 'u64'2150 },2151 /**2152 * Lookup273: cumulus_pallet_dmp_queue::PageIndexData2153 **/2154 CumulusPalletDmpQueuePageIndexData: {2155 beginUsed: 'u32',2156 endUsed: 'u32',2157 overweightCount: 'u64'2158 },2159 /**2160 * Lookup276: cumulus_pallet_dmp_queue::pallet::Error<T>2161 **/2162 CumulusPalletDmpQueueError: {2163 _enum: ['Unknown', 'OverLimit']2164 },2165 /**2166 * Lookup280: pallet_unique::Error<T>2167 **/2168 PalletUniqueError: {2169 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']2170 },2171 /**2172 * Lookup281: up_data_structs::Collection<sp_core::crypto::AccountId32>2173 **/2174 UpDataStructsCollection: {2175 owner: 'AccountId32',2176 mode: 'UpDataStructsCollectionMode',2177 access: 'UpDataStructsAccessMode',2178 name: 'Vec<u16>',2179 description: 'Vec<u16>',2180 tokenPrefix: 'Bytes',2181 mintMode: 'bool',2182 offchainSchema: 'Bytes',2183 schemaVersion: 'UpDataStructsSchemaVersion',2184 sponsorship: 'UpDataStructsSponsorshipState',2185 limits: 'UpDataStructsCollectionLimits',2186 variableOnChainSchema: 'Bytes',2187 constOnChainSchema: 'Bytes',2188 metaUpdatePermission: 'UpDataStructsMetaUpdatePermission'2189 },2190 /**2191 * Lookup282: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>2192 **/2193 UpDataStructsSponsorshipState: {2194 _enum: {2195 Disabled: 'Null',2196 Unconfirmed: 'AccountId32',2197 Confirmed: 'AccountId32'2198 }2199 },2200 /**2201 * Lookup285: up_data_structs::CollectionStats2202 **/2203 UpDataStructsCollectionStats: {2204 created: 'u32',2205 destroyed: 'u32',2206 alive: 'u32'2207 },2208 /**2209 * Lookup286: pallet_common::pallet::Error<T>2210 **/2211 PalletCommonError: {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']2213 },2214 /**2215 * Lookup288: pallet_fungible::pallet::Error<T>2216 **/2217 PalletFungibleError: {2218 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData']2219 },2220 /**2221 * Lookup289: pallet_refungible::ItemData2222 **/2223 PalletRefungibleItemData: {2224 constData: 'Bytes',2225 variableData: 'Bytes'2226 },2227 /**2228 * Lookup293: pallet_refungible::pallet::Error<T>2229 **/2230 PalletRefungibleError: {2231 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces']2232 },2233 /**2234 * Lookup294: pallet_nonfungible::ItemData<pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2235 **/2236 PalletNonfungibleItemData: {2237 constData: 'Bytes',2238 variableData: 'Bytes',2239 owner: 'PalletCommonAccountBasicCrossAccountIdRepr'2240 },2241 /**2242 * Lookup295: pallet_nonfungible::pallet::Error<T>2243 **/2244 PalletNonfungibleError: {2245 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']2246 },2247 /**2248 * Lookup297: pallet_evm::pallet::Error<T>2249 **/2250 PalletEvmError: {2251 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']2252 },2253 /**2254 * Lookup300: fp_rpc::TransactionStatus2255 **/2256 FpRpcTransactionStatus: {2257 transactionHash: 'H256',2258 transactionIndex: 'u32',2259 from: 'H160',2260 to: 'Option<H160>',2261 contractAddress: 'Option<H160>',2262 logs: 'Vec<EthereumLog>',2263 logsBloom: 'EthbloomBloom'2264 },2265 /**2266 * Lookup303: ethbloom::Bloom2267 **/2268 EthbloomBloom: '[u8;256]',2269 /**2270 * Lookup305: ethereum::receipt::ReceiptV32271 **/2272 EthereumReceiptReceiptV3: {2273 _enum: {2274 Legacy: 'EthereumReceiptEip658ReceiptData',2275 EIP2930: 'EthereumReceiptEip658ReceiptData',2276 EIP1559: 'EthereumReceiptEip658ReceiptData'2277 }2278 },2279 /**2280 * Lookup306: ethereum::receipt::EIP658ReceiptData2281 **/2282 EthereumReceiptEip658ReceiptData: {2283 statusCode: 'u8',2284 usedGas: 'U256',2285 logsBloom: 'EthbloomBloom',2286 logs: 'Vec<EthereumLog>'2287 },2288 /**2289 * Lookup307: ethereum::block::Block<ethereum::transaction::TransactionV2>2290 **/2291 EthereumBlock: {2292 header: 'EthereumHeader',2293 transactions: 'Vec<EthereumTransactionTransactionV2>',2294 ommers: 'Vec<EthereumHeader>'2295 },2296 /**2297 * Lookup308: ethereum::header::Header2298 **/2299 EthereumHeader: {2300 parentHash: 'H256',2301 ommersHash: 'H256',2302 beneficiary: 'H160',2303 stateRoot: 'H256',2304 transactionsRoot: 'H256',2305 receiptsRoot: 'H256',2306 logsBloom: 'EthbloomBloom',2307 difficulty: 'U256',2308 number: 'U256',2309 gasLimit: 'U256',2310 gasUsed: 'U256',2311 timestamp: 'u64',2312 extraData: 'Bytes',2313 mixHash: 'H256',2314 nonce: 'EthereumTypesHashH64'2315 },2316 /**2317 * Lookup309: ethereum_types::hash::H642318 **/2319 EthereumTypesHashH64: '[u8;8]',2320 /**2321 * Lookup314: pallet_ethereum::pallet::Error<T>2322 **/2323 PalletEthereumError: {2324 _enum: ['InvalidSignature', 'PreLogExists']2325 },2326 /**2327 * Lookup315: pallet_evm_coder_substrate::pallet::Error<T>2328 **/2329 PalletEvmCoderSubstrateError: {2330 _enum: ['OutOfGas', 'OutOfFund']2331 },2332 /**2333 * Lookup316: pallet_evm_contract_helpers::SponsoringModeT2334 **/2335 PalletEvmContractHelpersSponsoringModeT: {2336 _enum: ['Disabled', 'Allowlisted', 'Generous']2337 },2338 /**2339 * Lookup318: pallet_evm_contract_helpers::pallet::Error<T>2340 **/2341 PalletEvmContractHelpersError: {2342 _enum: ['NoPermission']2343 },2344 /**2345 * Lookup319: pallet_evm_migration::pallet::Error<T>2346 **/2347 PalletEvmMigrationError: {2348 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']2349 },2350 /**2351 * Lookup321: sp_runtime::MultiSignature2352 **/2353 SpRuntimeMultiSignature: {2354 _enum: {2355 Ed25519: 'SpCoreEd25519Signature',2356 Sr25519: 'SpCoreSr25519Signature',2357 Ecdsa: 'SpCoreEcdsaSignature'2358 }2359 },2360 /**2361 * Lookup322: sp_core::ed25519::Signature2362 **/2363 SpCoreEd25519Signature: '[u8;64]',2364 /**2365 * Lookup324: sp_core::sr25519::Signature2366 **/2367 SpCoreSr25519Signature: '[u8;64]',2368 /**2369 * Lookup325: sp_core::ecdsa::Signature2370 **/2371 SpCoreEcdsaSignature: '[u8;65]',2372 /**2373 * Lookup328: frame_system::extensions::check_spec_version::CheckSpecVersion<T>2374 **/2375 FrameSystemExtensionsCheckSpecVersion: 'Null',2376 /**2377 * Lookup329: frame_system::extensions::check_genesis::CheckGenesis<T>2378 **/2379 FrameSystemExtensionsCheckGenesis: 'Null',2380 /**2381 * Lookup332: frame_system::extensions::check_nonce::CheckNonce<T>2382 **/2383 FrameSystemExtensionsCheckNonce: 'Compact<u32>',2384 /**2385 * Lookup333: frame_system::extensions::check_weight::CheckWeight<T>2386 **/2387 FrameSystemExtensionsCheckWeight: 'Null',2388 /**2389 * Lookup334: pallet_template_transaction_payment::ChargeTransactionPayment<unique_runtime::Runtime>2390 **/2391 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',2392 /**2393 * Lookup335: unique_runtime::Runtime2394 **/2395 UniqueRuntimeRuntime: 'Null'2396};1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34/* eslint-disable sort-keys */56export default {7 /**8 * Lookup2: polkadot_primitives::v1::PersistedValidationData<primitive_types::H256, N>9 **/10 PolkadotPrimitivesV1PersistedValidationData: {11 parentHead: 'Bytes',12 relayParentNumber: 'u32',13 relayParentStorageRoot: 'H256',14 maxPovSize: 'u32'15 },16 /**17 * Lookup9: polkadot_primitives::v1::UpgradeRestriction18 **/19 PolkadotPrimitivesV1UpgradeRestriction: {20 _enum: ['Present']21 },22 /**23 * Lookup10: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot24 **/25 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {26 dmqMqcHead: 'H256',27 relayDispatchQueueSize: '(u32,u32)',28 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV1AbridgedHrmpChannel)>',29 egressChannels: 'Vec<(u32,PolkadotPrimitivesV1AbridgedHrmpChannel)>'30 },31 /**32 * Lookup15: polkadot_primitives::v1::AbridgedHrmpChannel33 **/34 PolkadotPrimitivesV1AbridgedHrmpChannel: {35 maxCapacity: 'u32',36 maxTotalSize: 'u32',37 maxMessageSize: 'u32',38 msgCount: 'u32',39 totalSize: 'u32',40 mqcHead: 'Option<H256>'41 },42 /**43 * Lookup17: polkadot_primitives::v1::AbridgedHostConfiguration44 **/45 PolkadotPrimitivesV1AbridgedHostConfiguration: {46 maxCodeSize: 'u32',47 maxHeadDataSize: 'u32',48 maxUpwardQueueCount: 'u32',49 maxUpwardQueueSize: 'u32',50 maxUpwardMessageSize: 'u32',51 maxUpwardMessageNumPerCandidate: 'u32',52 hrmpMaxMessageNumPerCandidate: 'u32',53 validationUpgradeCooldown: 'u32',54 validationUpgradeDelay: 'u32'55 },56 /**57 * Lookup23: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>58 **/59 PolkadotCorePrimitivesOutboundHrmpMessage: {60 recipient: 'u32',61 data: 'Bytes'62 },63 /**64 * Lookup26: cumulus_pallet_parachain_system::pallet::Call<T>65 **/66 CumulusPalletParachainSystemCall: {67 _enum: {68 set_validation_data: {69 data: 'CumulusPrimitivesParachainInherentParachainInherentData',70 },71 sudo_send_upward_message: {72 message: 'Bytes',73 },74 authorize_upgrade: {75 codeHash: 'H256',76 },77 enact_authorized_upgrade: {78 code: 'Bytes'79 }80 }81 },82 /**83 * Lookup27: cumulus_primitives_parachain_inherent::ParachainInherentData84 **/85 CumulusPrimitivesParachainInherentParachainInherentData: {86 validationData: 'PolkadotPrimitivesV1PersistedValidationData',87 relayChainState: 'SpTrieStorageProof',88 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',89 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'90 },91 /**92 * Lookup28: sp_trie::storage_proof::StorageProof93 **/94 SpTrieStorageProof: {95 trieNodes: 'Vec<Bytes>'96 },97 /**98 * Lookup30: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>99 **/100 PolkadotCorePrimitivesInboundDownwardMessage: {101 sentAt: 'u32',102 msg: 'Bytes'103 },104 /**105 * Lookup33: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>106 **/107 PolkadotCorePrimitivesInboundHrmpMessage: {108 sentAt: 'u32',109 data: 'Bytes'110 },111 /**112 * Lookup36: cumulus_pallet_parachain_system::pallet::Event<T>113 **/114 CumulusPalletParachainSystemEvent: {115 _enum: {116 ValidationFunctionStored: 'Null',117 ValidationFunctionApplied: 'u32',118 ValidationFunctionDiscarded: 'Null',119 UpgradeAuthorized: 'H256',120 DownwardMessagesReceived: 'u32',121 DownwardMessagesProcessed: '(u64,H256)'122 }123 },124 /**125 * Lookup37: cumulus_pallet_parachain_system::pallet::Error<T>126 **/127 CumulusPalletParachainSystemError: {128 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']129 },130 /**131 * Lookup40: pallet_balances::AccountData<Balance>132 **/133 PalletBalancesAccountData: {134 free: 'u128',135 reserved: 'u128',136 miscFrozen: 'u128',137 feeFrozen: 'u128'138 },139 /**140 * Lookup42: pallet_balances::BalanceLock<Balance>141 **/142 PalletBalancesBalanceLock: {143 id: '[u8;8]',144 amount: 'u128',145 reasons: 'PalletBalancesReasons'146 },147 /**148 * Lookup44: pallet_balances::Reasons149 **/150 PalletBalancesReasons: {151 _enum: ['Fee', 'Misc', 'All']152 },153 /**154 * Lookup47: pallet_balances::ReserveData<ReserveIdentifier, Balance>155 **/156 PalletBalancesReserveData: {157 id: '[u8;8]',158 amount: 'u128'159 },160 /**161 * Lookup49: pallet_balances::Releases162 **/163 PalletBalancesReleases: {164 _enum: ['V1_0_0', 'V2_0_0']165 },166 /**167 * Lookup50: pallet_balances::pallet::Call<T, I>168 **/169 PalletBalancesCall: {170 _enum: {171 transfer: {172 dest: 'MultiAddress',173 value: 'Compact<u128>',174 },175 set_balance: {176 who: 'MultiAddress',177 newFree: 'Compact<u128>',178 newReserved: 'Compact<u128>',179 },180 force_transfer: {181 source: 'MultiAddress',182 dest: 'MultiAddress',183 value: 'Compact<u128>',184 },185 transfer_keep_alive: {186 dest: 'MultiAddress',187 value: 'Compact<u128>',188 },189 transfer_all: {190 dest: 'MultiAddress',191 keepAlive: 'bool',192 },193 force_unreserve: {194 who: 'MultiAddress',195 amount: 'u128'196 }197 }198 },199 /**200 * Lookup56: pallet_balances::pallet::Event<T, I>201 **/202 PalletBalancesEvent: {203 _enum: {204 Endowed: {205 account: 'AccountId32',206 freeBalance: 'u128',207 },208 DustLost: {209 account: 'AccountId32',210 amount: 'u128',211 },212 Transfer: {213 from: 'AccountId32',214 to: 'AccountId32',215 amount: 'u128',216 },217 BalanceSet: {218 who: 'AccountId32',219 free: 'u128',220 reserved: 'u128',221 },222 Reserved: {223 who: 'AccountId32',224 amount: 'u128',225 },226 Unreserved: {227 who: 'AccountId32',228 amount: 'u128',229 },230 ReserveRepatriated: {231 from: 'AccountId32',232 to: 'AccountId32',233 amount: 'u128',234 destinationStatus: 'FrameSupportTokensMiscBalanceStatus',235 },236 Deposit: {237 who: 'AccountId32',238 amount: 'u128',239 },240 Withdraw: {241 who: 'AccountId32',242 amount: 'u128',243 },244 Slashed: {245 who: 'AccountId32',246 amount: 'u128'247 }248 }249 },250 /**251 * Lookup57: frame_support::traits::tokens::misc::BalanceStatus252 **/253 FrameSupportTokensMiscBalanceStatus: {254 _enum: ['Free', 'Reserved']255 },256 /**257 * Lookup58: pallet_balances::pallet::Error<T, I>258 **/259 PalletBalancesError: {260 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']261 },262 /**263 * Lookup61: pallet_timestamp::pallet::Call<T>264 **/265 PalletTimestampCall: {266 _enum: {267 set: {268 now: 'Compact<u64>'269 }270 }271 },272 /**273 * Lookup64: pallet_transaction_payment::Releases274 **/275 PalletTransactionPaymentReleases: {276 _enum: ['V1Ancient', 'V2']277 },278 /**279 * Lookup66: frame_support::weights::WeightToFeeCoefficient<Balance>280 **/281 FrameSupportWeightsWeightToFeeCoefficient: {282 coeffInteger: 'u128',283 coeffFrac: 'Perbill',284 negative: 'bool',285 degree: 'u8'286 },287 /**288 * Lookup68: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>289 **/290 PalletTreasuryProposal: {291 proposer: 'AccountId32',292 value: 'u128',293 beneficiary: 'AccountId32',294 bond: 'u128'295 },296 /**297 * Lookup71: pallet_treasury::pallet::Call<T, I>298 **/299 PalletTreasuryCall: {300 _enum: {301 propose_spend: {302 value: 'Compact<u128>',303 beneficiary: 'MultiAddress',304 },305 reject_proposal: {306 proposalId: 'Compact<u32>',307 },308 approve_proposal: {309 proposalId: 'Compact<u32>'310 }311 }312 },313 /**314 * Lookup73: pallet_treasury::pallet::Event<T, I>315 **/316 PalletTreasuryEvent: {317 _enum: {318 Proposed: {319 proposalIndex: 'u32',320 },321 Spending: {322 budgetRemaining: 'u128',323 },324 Awarded: {325 proposalIndex: 'u32',326 award: 'u128',327 account: 'AccountId32',328 },329 Rejected: {330 proposalIndex: 'u32',331 slashed: 'u128',332 },333 Burnt: {334 burntFunds: 'u128',335 },336 Rollover: {337 rolloverBalance: 'u128',338 },339 Deposit: {340 value: 'u128'341 }342 }343 },344 /**345 * Lookup76: frame_support::PalletId346 **/347 FrameSupportPalletId: '[u8;8]',348 /**349 * Lookup77: pallet_treasury::pallet::Error<T, I>350 **/351 PalletTreasuryError: {352 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals']353 },354 /**355 * Lookup78: pallet_sudo::pallet::Call<T>356 **/357 PalletSudoCall: {358 _enum: {359 sudo: {360 call: 'Call',361 },362 sudo_unchecked_weight: {363 call: 'Call',364 weight: 'u64',365 },366 set_key: {367 _alias: {368 new_: 'new',369 },370 new_: 'MultiAddress',371 },372 sudo_as: {373 who: 'MultiAddress',374 call: 'Call'375 }376 }377 },378 /**379 * Lookup80: frame_system::pallet::Call<T>380 **/381 FrameSystemCall: {382 _enum: {383 fill_block: {384 ratio: 'Perbill',385 },386 remark: {387 remark: 'Bytes',388 },389 set_heap_pages: {390 pages: 'u64',391 },392 set_code: {393 code: 'Bytes',394 },395 set_code_without_checks: {396 code: 'Bytes',397 },398 set_storage: {399 items: 'Vec<(Bytes,Bytes)>',400 },401 kill_storage: {402 _alias: {403 keys_: 'keys',404 },405 keys_: 'Vec<Bytes>',406 },407 kill_prefix: {408 prefix: 'Bytes',409 subkeys: 'u32',410 },411 remark_with_event: {412 remark: 'Bytes'413 }414 }415 },416 /**417 * Lookup83: orml_vesting::module::Call<T>418 **/419 OrmlVestingModuleCall: {420 _enum: {421 claim: 'Null',422 vested_transfer: {423 dest: 'MultiAddress',424 schedule: 'OrmlVestingVestingSchedule',425 },426 update_vesting_schedules: {427 who: 'MultiAddress',428 vestingSchedules: 'Vec<OrmlVestingVestingSchedule>',429 },430 claim_for: {431 dest: 'MultiAddress'432 }433 }434 },435 /**436 * Lookup84: orml_vesting::VestingSchedule<BlockNumber, Balance>437 **/438 OrmlVestingVestingSchedule: {439 start: 'u32',440 period: 'u32',441 periodCount: 'u32',442 perPeriod: 'Compact<u128>'443 },444 /**445 * Lookup86: cumulus_pallet_xcmp_queue::pallet::Call<T>446 **/447 CumulusPalletXcmpQueueCall: {448 _enum: {449 service_overweight: {450 index: 'u64',451 weightLimit: 'u64',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 }491 }492 },493 /**494 * Lookup87: pallet_xcm::pallet::Call<T>495 **/496 PalletXcmCall: {497 _enum: {498 send: {499 dest: 'XcmVersionedMultiLocation',500 message: 'XcmVersionedXcm',501 },502 teleport_assets: {503 dest: 'XcmVersionedMultiLocation',504 beneficiary: 'XcmVersionedMultiLocation',505 assets: 'XcmVersionedMultiAssets',506 feeAssetItem: 'u32',507 },508 reserve_transfer_assets: {509 dest: 'XcmVersionedMultiLocation',510 beneficiary: 'XcmVersionedMultiLocation',511 assets: 'XcmVersionedMultiAssets',512 feeAssetItem: 'u32',513 },514 execute: {515 message: 'XcmVersionedXcm',516 maxWeight: 'u64',517 },518 force_xcm_version: {519 location: 'XcmV1MultiLocation',520 xcmVersion: 'u32',521 },522 force_default_xcm_version: {523 maybeXcmVersion: 'Option<u32>',524 },525 force_subscribe_version_notify: {526 location: 'XcmVersionedMultiLocation',527 },528 force_unsubscribe_version_notify: {529 location: 'XcmVersionedMultiLocation',530 },531 limited_reserve_transfer_assets: {532 dest: 'XcmVersionedMultiLocation',533 beneficiary: 'XcmVersionedMultiLocation',534 assets: 'XcmVersionedMultiAssets',535 feeAssetItem: 'u32',536 weightLimit: 'XcmV2WeightLimit',537 },538 limited_teleport_assets: {539 dest: 'XcmVersionedMultiLocation',540 beneficiary: 'XcmVersionedMultiLocation',541 assets: 'XcmVersionedMultiAssets',542 feeAssetItem: 'u32',543 weightLimit: 'XcmV2WeightLimit'544 }545 }546 },547 /**548 * Lookup88: xcm::VersionedMultiLocation549 **/550 XcmVersionedMultiLocation: {551 _enum: {552 V0: 'XcmV0MultiLocation',553 V1: 'XcmV1MultiLocation'554 }555 },556 /**557 * Lookup89: xcm::v0::multi_location::MultiLocation558 **/559 XcmV0MultiLocation: {560 _enum: {561 Null: 'Null',562 X1: 'XcmV0Junction',563 X2: '(XcmV0Junction,XcmV0Junction)',564 X3: '(XcmV0Junction,XcmV0Junction,XcmV0Junction)',565 X4: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',566 X5: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',567 X6: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',568 X7: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)',569 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'570 }571 },572 /**573 * Lookup90: xcm::v0::junction::Junction574 **/575 XcmV0Junction: {576 _enum: {577 Parent: 'Null',578 Parachain: 'Compact<u32>',579 AccountId32: {580 network: 'XcmV0JunctionNetworkId',581 id: '[u8;32]',582 },583 AccountIndex64: {584 network: 'XcmV0JunctionNetworkId',585 index: 'Compact<u64>',586 },587 AccountKey20: {588 network: 'XcmV0JunctionNetworkId',589 key: '[u8;20]',590 },591 PalletInstance: 'u8',592 GeneralIndex: 'Compact<u128>',593 GeneralKey: 'Bytes',594 OnlyChild: 'Null',595 Plurality: {596 id: 'XcmV0JunctionBodyId',597 part: 'XcmV0JunctionBodyPart'598 }599 }600 },601 /**602 * Lookup91: xcm::v0::junction::NetworkId603 **/604 XcmV0JunctionNetworkId: {605 _enum: {606 Any: 'Null',607 Named: 'Bytes',608 Polkadot: 'Null',609 Kusama: 'Null'610 }611 },612 /**613 * Lookup92: xcm::v0::junction::BodyId614 **/615 XcmV0JunctionBodyId: {616 _enum: {617 Unit: 'Null',618 Named: 'Bytes',619 Index: 'Compact<u32>',620 Executive: 'Null',621 Technical: 'Null',622 Legislative: 'Null',623 Judicial: 'Null'624 }625 },626 /**627 * Lookup93: xcm::v0::junction::BodyPart628 **/629 XcmV0JunctionBodyPart: {630 _enum: {631 Voice: 'Null',632 Members: {633 count: 'Compact<u32>',634 },635 Fraction: {636 nom: 'Compact<u32>',637 denom: 'Compact<u32>',638 },639 AtLeastProportion: {640 nom: 'Compact<u32>',641 denom: 'Compact<u32>',642 },643 MoreThanProportion: {644 nom: 'Compact<u32>',645 denom: 'Compact<u32>'646 }647 }648 },649 /**650 * Lookup94: xcm::v1::multilocation::MultiLocation651 **/652 XcmV1MultiLocation: {653 parents: 'u8',654 interior: 'XcmV1MultilocationJunctions'655 },656 /**657 * Lookup95: xcm::v1::multilocation::Junctions658 **/659 XcmV1MultilocationJunctions: {660 _enum: {661 Here: 'Null',662 X1: 'XcmV1Junction',663 X2: '(XcmV1Junction,XcmV1Junction)',664 X3: '(XcmV1Junction,XcmV1Junction,XcmV1Junction)',665 X4: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',666 X5: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',667 X6: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',668 X7: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)',669 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'670 }671 },672 /**673 * Lookup96: xcm::v1::junction::Junction674 **/675 XcmV1Junction: {676 _enum: {677 Parachain: 'Compact<u32>',678 AccountId32: {679 network: 'XcmV0JunctionNetworkId',680 id: '[u8;32]',681 },682 AccountIndex64: {683 network: 'XcmV0JunctionNetworkId',684 index: 'Compact<u64>',685 },686 AccountKey20: {687 network: 'XcmV0JunctionNetworkId',688 key: '[u8;20]',689 },690 PalletInstance: 'u8',691 GeneralIndex: 'Compact<u128>',692 GeneralKey: 'Bytes',693 OnlyChild: 'Null',694 Plurality: {695 id: 'XcmV0JunctionBodyId',696 part: 'XcmV0JunctionBodyPart'697 }698 }699 },700 /**701 * Lookup97: xcm::VersionedXcm<Call>702 **/703 XcmVersionedXcm: {704 _enum: {705 V0: 'XcmV0Xcm',706 V1: 'XcmV1Xcm',707 V2: 'XcmV2Xcm'708 }709 },710 /**711 * Lookup98: xcm::v0::Xcm<Call>712 **/713 XcmV0Xcm: {714 _enum: {715 WithdrawAsset: {716 assets: 'Vec<XcmV0MultiAsset>',717 effects: 'Vec<XcmV0Order>',718 },719 ReserveAssetDeposit: {720 assets: 'Vec<XcmV0MultiAsset>',721 effects: 'Vec<XcmV0Order>',722 },723 TeleportAsset: {724 assets: 'Vec<XcmV0MultiAsset>',725 effects: 'Vec<XcmV0Order>',726 },727 QueryResponse: {728 queryId: 'Compact<u64>',729 response: 'XcmV0Response',730 },731 TransferAsset: {732 assets: 'Vec<XcmV0MultiAsset>',733 dest: 'XcmV0MultiLocation',734 },735 TransferReserveAsset: {736 assets: 'Vec<XcmV0MultiAsset>',737 dest: 'XcmV0MultiLocation',738 effects: 'Vec<XcmV0Order>',739 },740 Transact: {741 originType: 'XcmV0OriginKind',742 requireWeightAtMost: 'u64',743 call: 'XcmDoubleEncoded',744 },745 HrmpNewChannelOpenRequest: {746 sender: 'Compact<u32>',747 maxMessageSize: 'Compact<u32>',748 maxCapacity: 'Compact<u32>',749 },750 HrmpChannelAccepted: {751 recipient: 'Compact<u32>',752 },753 HrmpChannelClosing: {754 initiator: 'Compact<u32>',755 sender: 'Compact<u32>',756 recipient: 'Compact<u32>',757 },758 RelayedFrom: {759 who: 'XcmV0MultiLocation',760 message: 'XcmV0Xcm'761 }762 }763 },764 /**765 * Lookup100: xcm::v0::multi_asset::MultiAsset766 **/767 XcmV0MultiAsset: {768 _enum: {769 None: 'Null',770 All: 'Null',771 AllFungible: 'Null',772 AllNonFungible: 'Null',773 AllAbstractFungible: {774 id: 'Bytes',775 },776 AllAbstractNonFungible: {777 class: 'Bytes',778 },779 AllConcreteFungible: {780 id: 'XcmV0MultiLocation',781 },782 AllConcreteNonFungible: {783 class: 'XcmV0MultiLocation',784 },785 AbstractFungible: {786 id: 'Bytes',787 amount: 'Compact<u128>',788 },789 AbstractNonFungible: {790 class: 'Bytes',791 instance: 'XcmV1MultiassetAssetInstance',792 },793 ConcreteFungible: {794 id: 'XcmV0MultiLocation',795 amount: 'Compact<u128>',796 },797 ConcreteNonFungible: {798 class: 'XcmV0MultiLocation',799 instance: 'XcmV1MultiassetAssetInstance'800 }801 }802 },803 /**804 * Lookup101: xcm::v1::multiasset::AssetInstance805 **/806 XcmV1MultiassetAssetInstance: {807 _enum: {808 Undefined: 'Null',809 Index: 'Compact<u128>',810 Array4: '[u8;4]',811 Array8: '[u8;8]',812 Array16: '[u8;16]',813 Array32: '[u8;32]',814 Blob: 'Bytes'815 }816 },817 /**818 * Lookup105: xcm::v0::order::Order<Call>819 **/820 XcmV0Order: {821 _enum: {822 Null: 'Null',823 DepositAsset: {824 assets: 'Vec<XcmV0MultiAsset>',825 dest: 'XcmV0MultiLocation',826 },827 DepositReserveAsset: {828 assets: 'Vec<XcmV0MultiAsset>',829 dest: 'XcmV0MultiLocation',830 effects: 'Vec<XcmV0Order>',831 },832 ExchangeAsset: {833 give: 'Vec<XcmV0MultiAsset>',834 receive: 'Vec<XcmV0MultiAsset>',835 },836 InitiateReserveWithdraw: {837 assets: 'Vec<XcmV0MultiAsset>',838 reserve: 'XcmV0MultiLocation',839 effects: 'Vec<XcmV0Order>',840 },841 InitiateTeleport: {842 assets: 'Vec<XcmV0MultiAsset>',843 dest: 'XcmV0MultiLocation',844 effects: 'Vec<XcmV0Order>',845 },846 QueryHolding: {847 queryId: 'Compact<u64>',848 dest: 'XcmV0MultiLocation',849 assets: 'Vec<XcmV0MultiAsset>',850 },851 BuyExecution: {852 fees: 'XcmV0MultiAsset',853 weight: 'u64',854 debt: 'u64',855 haltOnError: 'bool',856 xcm: 'Vec<XcmV0Xcm>'857 }858 }859 },860 /**861 * Lookup107: xcm::v0::Response862 **/863 XcmV0Response: {864 _enum: {865 Assets: 'Vec<XcmV0MultiAsset>'866 }867 },868 /**869 * Lookup108: xcm::v0::OriginKind870 **/871 XcmV0OriginKind: {872 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']873 },874 /**875 * Lookup109: xcm::double_encoded::DoubleEncoded<T>876 **/877 XcmDoubleEncoded: {878 encoded: 'Bytes'879 },880 /**881 * Lookup110: xcm::v1::Xcm<Call>882 **/883 XcmV1Xcm: {884 _enum: {885 WithdrawAsset: {886 assets: 'XcmV1MultiassetMultiAssets',887 effects: 'Vec<XcmV1Order>',888 },889 ReserveAssetDeposited: {890 assets: 'XcmV1MultiassetMultiAssets',891 effects: 'Vec<XcmV1Order>',892 },893 ReceiveTeleportedAsset: {894 assets: 'XcmV1MultiassetMultiAssets',895 effects: 'Vec<XcmV1Order>',896 },897 QueryResponse: {898 queryId: 'Compact<u64>',899 response: 'XcmV1Response',900 },901 TransferAsset: {902 assets: 'XcmV1MultiassetMultiAssets',903 beneficiary: 'XcmV1MultiLocation',904 },905 TransferReserveAsset: {906 assets: 'XcmV1MultiassetMultiAssets',907 dest: 'XcmV1MultiLocation',908 effects: 'Vec<XcmV1Order>',909 },910 Transact: {911 originType: 'XcmV0OriginKind',912 requireWeightAtMost: 'u64',913 call: 'XcmDoubleEncoded',914 },915 HrmpNewChannelOpenRequest: {916 sender: 'Compact<u32>',917 maxMessageSize: 'Compact<u32>',918 maxCapacity: 'Compact<u32>',919 },920 HrmpChannelAccepted: {921 recipient: 'Compact<u32>',922 },923 HrmpChannelClosing: {924 initiator: 'Compact<u32>',925 sender: 'Compact<u32>',926 recipient: 'Compact<u32>',927 },928 RelayedFrom: {929 who: 'XcmV1MultilocationJunctions',930 message: 'XcmV1Xcm',931 },932 SubscribeVersion: {933 queryId: 'Compact<u64>',934 maxResponseWeight: 'Compact<u64>',935 },936 UnsubscribeVersion: 'Null'937 }938 },939 /**940 * Lookup111: xcm::v1::multiasset::MultiAssets941 **/942 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',943 /**944 * Lookup113: xcm::v1::multiasset::MultiAsset945 **/946 XcmV1MultiAsset: {947 id: 'XcmV1MultiassetAssetId',948 fun: 'XcmV1MultiassetFungibility'949 },950 /**951 * Lookup114: xcm::v1::multiasset::AssetId952 **/953 XcmV1MultiassetAssetId: {954 _enum: {955 Concrete: 'XcmV1MultiLocation',956 Abstract: 'Bytes'957 }958 },959 /**960 * Lookup115: xcm::v1::multiasset::Fungibility961 **/962 XcmV1MultiassetFungibility: {963 _enum: {964 Fungible: 'Compact<u128>',965 NonFungible: 'XcmV1MultiassetAssetInstance'966 }967 },968 /**969 * Lookup117: xcm::v1::order::Order<Call>970 **/971 XcmV1Order: {972 _enum: {973 Noop: 'Null',974 DepositAsset: {975 assets: 'XcmV1MultiassetMultiAssetFilter',976 maxAssets: 'u32',977 beneficiary: 'XcmV1MultiLocation',978 },979 DepositReserveAsset: {980 assets: 'XcmV1MultiassetMultiAssetFilter',981 maxAssets: 'u32',982 dest: 'XcmV1MultiLocation',983 effects: 'Vec<XcmV1Order>',984 },985 ExchangeAsset: {986 give: 'XcmV1MultiassetMultiAssetFilter',987 receive: 'XcmV1MultiassetMultiAssets',988 },989 InitiateReserveWithdraw: {990 assets: 'XcmV1MultiassetMultiAssetFilter',991 reserve: 'XcmV1MultiLocation',992 effects: 'Vec<XcmV1Order>',993 },994 InitiateTeleport: {995 assets: 'XcmV1MultiassetMultiAssetFilter',996 dest: 'XcmV1MultiLocation',997 effects: 'Vec<XcmV1Order>',998 },999 QueryHolding: {1000 queryId: 'Compact<u64>',1001 dest: 'XcmV1MultiLocation',1002 assets: 'XcmV1MultiassetMultiAssetFilter',1003 },1004 BuyExecution: {1005 fees: 'XcmV1MultiAsset',1006 weight: 'u64',1007 debt: 'u64',1008 haltOnError: 'bool',1009 instructions: 'Vec<XcmV1Xcm>'1010 }1011 }1012 },1013 /**1014 * Lookup118: xcm::v1::multiasset::MultiAssetFilter1015 **/1016 XcmV1MultiassetMultiAssetFilter: {1017 _enum: {1018 Definite: 'XcmV1MultiassetMultiAssets',1019 Wild: 'XcmV1MultiassetWildMultiAsset'1020 }1021 },1022 /**1023 * Lookup119: xcm::v1::multiasset::WildMultiAsset1024 **/1025 XcmV1MultiassetWildMultiAsset: {1026 _enum: {1027 All: 'Null',1028 AllOf: {1029 id: 'XcmV1MultiassetAssetId',1030 fun: 'XcmV1MultiassetWildFungibility'1031 }1032 }1033 },1034 /**1035 * Lookup120: xcm::v1::multiasset::WildFungibility1036 **/1037 XcmV1MultiassetWildFungibility: {1038 _enum: ['Fungible', 'NonFungible']1039 },1040 /**1041 * Lookup122: xcm::v1::Response1042 **/1043 XcmV1Response: {1044 _enum: {1045 Assets: 'XcmV1MultiassetMultiAssets',1046 Version: 'u32'1047 }1048 },1049 /**1050 * Lookup123: xcm::v2::Xcm<Call>1051 **/1052 XcmV2Xcm: 'Vec<XcmV2Instruction>',1053 /**1054 * Lookup125: xcm::v2::Instruction<Call>1055 **/1056 XcmV2Instruction: {1057 _enum: {1058 WithdrawAsset: 'XcmV1MultiassetMultiAssets',1059 ReserveAssetDeposited: 'XcmV1MultiassetMultiAssets',1060 ReceiveTeleportedAsset: 'XcmV1MultiassetMultiAssets',1061 QueryResponse: {1062 queryId: 'Compact<u64>',1063 response: 'XcmV2Response',1064 maxWeight: 'Compact<u64>',1065 },1066 TransferAsset: {1067 assets: 'XcmV1MultiassetMultiAssets',1068 beneficiary: 'XcmV1MultiLocation',1069 },1070 TransferReserveAsset: {1071 assets: 'XcmV1MultiassetMultiAssets',1072 dest: 'XcmV1MultiLocation',1073 xcm: 'XcmV2Xcm',1074 },1075 Transact: {1076 originType: 'XcmV0OriginKind',1077 requireWeightAtMost: 'Compact<u64>',1078 call: 'XcmDoubleEncoded',1079 },1080 HrmpNewChannelOpenRequest: {1081 sender: 'Compact<u32>',1082 maxMessageSize: 'Compact<u32>',1083 maxCapacity: 'Compact<u32>',1084 },1085 HrmpChannelAccepted: {1086 recipient: 'Compact<u32>',1087 },1088 HrmpChannelClosing: {1089 initiator: 'Compact<u32>',1090 sender: 'Compact<u32>',1091 recipient: 'Compact<u32>',1092 },1093 ClearOrigin: 'Null',1094 DescendOrigin: 'XcmV1MultilocationJunctions',1095 ReportError: {1096 queryId: 'Compact<u64>',1097 dest: 'XcmV1MultiLocation',1098 maxResponseWeight: 'Compact<u64>',1099 },1100 DepositAsset: {1101 assets: 'XcmV1MultiassetMultiAssetFilter',1102 maxAssets: 'Compact<u32>',1103 beneficiary: 'XcmV1MultiLocation',1104 },1105 DepositReserveAsset: {1106 assets: 'XcmV1MultiassetMultiAssetFilter',1107 maxAssets: 'Compact<u32>',1108 dest: 'XcmV1MultiLocation',1109 xcm: 'XcmV2Xcm',1110 },1111 ExchangeAsset: {1112 give: 'XcmV1MultiassetMultiAssetFilter',1113 receive: 'XcmV1MultiassetMultiAssets',1114 },1115 InitiateReserveWithdraw: {1116 assets: 'XcmV1MultiassetMultiAssetFilter',1117 reserve: 'XcmV1MultiLocation',1118 xcm: 'XcmV2Xcm',1119 },1120 InitiateTeleport: {1121 assets: 'XcmV1MultiassetMultiAssetFilter',1122 dest: 'XcmV1MultiLocation',1123 xcm: 'XcmV2Xcm',1124 },1125 QueryHolding: {1126 queryId: 'Compact<u64>',1127 dest: 'XcmV1MultiLocation',1128 assets: 'XcmV1MultiassetMultiAssetFilter',1129 maxResponseWeight: 'Compact<u64>',1130 },1131 BuyExecution: {1132 fees: 'XcmV1MultiAsset',1133 weightLimit: 'XcmV2WeightLimit',1134 },1135 RefundSurplus: 'Null',1136 SetErrorHandler: 'XcmV2Xcm',1137 SetAppendix: 'XcmV2Xcm',1138 ClearError: 'Null',1139 ClaimAsset: {1140 assets: 'XcmV1MultiassetMultiAssets',1141 ticket: 'XcmV1MultiLocation',1142 },1143 Trap: 'Compact<u64>',1144 SubscribeVersion: {1145 queryId: 'Compact<u64>',1146 maxResponseWeight: 'Compact<u64>',1147 },1148 UnsubscribeVersion: 'Null'1149 }1150 },1151 /**1152 * Lookup126: xcm::v2::Response1153 **/1154 XcmV2Response: {1155 _enum: {1156 Null: 'Null',1157 Assets: 'XcmV1MultiassetMultiAssets',1158 ExecutionResult: 'Option<(u32,XcmV2TraitsError)>',1159 Version: 'u32'1160 }1161 },1162 /**1163 * Lookup129: xcm::v2::traits::Error1164 **/1165 XcmV2TraitsError: {1166 _enum: {1167 Overflow: 'Null',1168 Unimplemented: 'Null',1169 UntrustedReserveLocation: 'Null',1170 UntrustedTeleportLocation: 'Null',1171 MultiLocationFull: 'Null',1172 MultiLocationNotInvertible: 'Null',1173 BadOrigin: 'Null',1174 InvalidLocation: 'Null',1175 AssetNotFound: 'Null',1176 FailedToTransactAsset: 'Null',1177 NotWithdrawable: 'Null',1178 LocationCannotHold: 'Null',1179 ExceedsMaxMessageSize: 'Null',1180 DestinationUnsupported: 'Null',1181 Transport: 'Null',1182 Unroutable: 'Null',1183 UnknownClaim: 'Null',1184 FailedToDecode: 'Null',1185 MaxWeightInvalid: 'Null',1186 NotHoldingFees: 'Null',1187 TooExpensive: 'Null',1188 Trap: 'u64',1189 UnhandledXcmVersion: 'Null',1190 WeightLimitReached: 'u64',1191 Barrier: 'Null',1192 WeightNotComputable: 'Null'1193 }1194 },1195 /**1196 * Lookup130: xcm::v2::WeightLimit1197 **/1198 XcmV2WeightLimit: {1199 _enum: {1200 Unlimited: 'Null',1201 Limited: 'Compact<u64>'1202 }1203 },1204 /**1205 * Lookup131: xcm::VersionedMultiAssets1206 **/1207 XcmVersionedMultiAssets: {1208 _enum: {1209 V0: 'Vec<XcmV0MultiAsset>',1210 V1: 'XcmV1MultiassetMultiAssets'1211 }1212 },1213 /**1214 * Lookup146: cumulus_pallet_xcm::pallet::Call<T>1215 **/1216 CumulusPalletXcmCall: 'Null',1217 /**1218 * Lookup147: cumulus_pallet_dmp_queue::pallet::Call<T>1219 **/1220 CumulusPalletDmpQueueCall: {1221 _enum: {1222 service_overweight: {1223 index: 'u64',1224 weightLimit: 'u64'1225 }1226 }1227 },1228 /**1229 * Lookup148: pallet_inflation::pallet::Call<T>1230 **/1231 PalletInflationCall: {1232 _enum: {1233 start_inflation: {1234 inflationStartRelayBlock: 'u32'1235 }1236 }1237 },1238 /**1239 * Lookup149: pallet_unique::Call<T>1240 **/1241 PalletUniqueCall: {1242 _enum: {1243 create_collection: {1244 collectionName: 'Vec<u16>',1245 collectionDescription: 'Vec<u16>',1246 tokenPrefix: 'Bytes',1247 mode: 'UpDataStructsCollectionMode',1248 },1249 create_collection_ex: {1250 data: 'UpDataStructsCreateCollectionData',1251 },1252 destroy_collection: {1253 collectionId: 'u32',1254 },1255 add_to_allow_list: {1256 collectionId: 'u32',1257 address: 'PalletCommonAccountBasicCrossAccountIdRepr',1258 },1259 remove_from_allow_list: {1260 collectionId: 'u32',1261 address: 'PalletCommonAccountBasicCrossAccountIdRepr',1262 },1263 set_public_access_mode: {1264 collectionId: 'u32',1265 mode: 'UpDataStructsAccessMode',1266 },1267 set_mint_permission: {1268 collectionId: 'u32',1269 mintPermission: 'bool',1270 },1271 change_collection_owner: {1272 collectionId: 'u32',1273 newOwner: 'AccountId32',1274 },1275 add_collection_admin: {1276 collectionId: 'u32',1277 newAdminId: 'PalletCommonAccountBasicCrossAccountIdRepr',1278 },1279 remove_collection_admin: {1280 collectionId: 'u32',1281 accountId: 'PalletCommonAccountBasicCrossAccountIdRepr',1282 },1283 set_collection_sponsor: {1284 collectionId: 'u32',1285 newSponsor: 'AccountId32',1286 },1287 confirm_sponsorship: {1288 collectionId: 'u32',1289 },1290 remove_collection_sponsor: {1291 collectionId: 'u32',1292 },1293 create_item: {1294 collectionId: 'u32',1295 owner: 'PalletCommonAccountBasicCrossAccountIdRepr',1296 data: 'UpDataStructsCreateItemData',1297 },1298 create_multiple_items: {1299 collectionId: 'u32',1300 owner: 'PalletCommonAccountBasicCrossAccountIdRepr',1301 itemsData: 'Vec<UpDataStructsCreateItemData>',1302 },1303 create_multiple_items_ex: {1304 collectionId: 'u32',1305 data: 'UpDataStructsCreateItemExData',1306 },1307 set_transfers_enabled_flag: {1308 collectionId: 'u32',1309 value: 'bool',1310 },1311 burn_item: {1312 collectionId: 'u32',1313 itemId: 'u32',1314 value: 'u128',1315 },1316 burn_from: {1317 collectionId: 'u32',1318 from: 'PalletCommonAccountBasicCrossAccountIdRepr',1319 itemId: 'u32',1320 value: 'u128',1321 },1322 transfer: {1323 recipient: 'PalletCommonAccountBasicCrossAccountIdRepr',1324 collectionId: 'u32',1325 itemId: 'u32',1326 value: 'u128',1327 },1328 approve: {1329 spender: 'PalletCommonAccountBasicCrossAccountIdRepr',1330 collectionId: 'u32',1331 itemId: 'u32',1332 amount: 'u128',1333 },1334 transfer_from: {1335 from: 'PalletCommonAccountBasicCrossAccountIdRepr',1336 recipient: 'PalletCommonAccountBasicCrossAccountIdRepr',1337 collectionId: 'u32',1338 itemId: 'u32',1339 value: 'u128',1340 },1341 set_variable_meta_data: {1342 collectionId: 'u32',1343 itemId: 'u32',1344 data: 'Bytes',1345 },1346 set_meta_update_permission_flag: {1347 collectionId: 'u32',1348 value: 'UpDataStructsMetaUpdatePermission',1349 },1350 set_schema_version: {1351 collectionId: 'u32',1352 version: 'UpDataStructsSchemaVersion',1353 },1354 set_offchain_schema: {1355 collectionId: 'u32',1356 schema: 'Bytes',1357 },1358 set_const_on_chain_schema: {1359 collectionId: 'u32',1360 schema: 'Bytes',1361 },1362 set_variable_on_chain_schema: {1363 collectionId: 'u32',1364 schema: 'Bytes',1365 },1366 set_collection_limits: {1367 collectionId: 'u32',1368 newLimit: 'UpDataStructsCollectionLimits'1369 }1370 }1371 },1372 /**1373 * Lookup155: up_data_structs::CollectionMode1374 **/1375 UpDataStructsCollectionMode: {1376 _enum: {1377 NFT: 'Null',1378 Fungible: 'u8',1379 ReFungible: 'Null'1380 }1381 },1382 /**1383 * Lookup156: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>1384 **/1385 UpDataStructsCreateCollectionData: {1386 mode: 'UpDataStructsCollectionMode',1387 access: 'Option<UpDataStructsAccessMode>',1388 name: 'Vec<u16>',1389 description: 'Vec<u16>',1390 tokenPrefix: 'Bytes',1391 offchainSchema: 'Bytes',1392 schemaVersion: 'Option<UpDataStructsSchemaVersion>',1393 pendingSponsor: 'Option<AccountId32>',1394 limits: 'Option<UpDataStructsCollectionLimits>',1395 variableOnChainSchema: 'Bytes',1396 constOnChainSchema: 'Bytes',1397 metaUpdatePermission: 'Option<UpDataStructsMetaUpdatePermission>'1398 },1399 /**1400 * Lookup158: up_data_structs::AccessMode1401 **/1402 UpDataStructsAccessMode: {1403 _enum: ['Normal', 'AllowList']1404 },1405 /**1406 * Lookup161: up_data_structs::SchemaVersion1407 **/1408 UpDataStructsSchemaVersion: {1409 _enum: ['ImageURL', 'Unique']1410 },1411 /**1412 * Lookup164: up_data_structs::CollectionLimits1413 **/1414 UpDataStructsCollectionLimits: {1415 accountTokenOwnershipLimit: 'Option<u32>',1416 sponsoredDataSize: 'Option<u32>',1417 sponsoredDataRateLimit: 'Option<UpDataStructsSponsoringRateLimit>',1418 tokenLimit: 'Option<u32>',1419 sponsorTransferTimeout: 'Option<u32>',1420 sponsorApproveTimeout: 'Option<u32>',1421 ownerCanTransfer: 'Option<bool>',1422 ownerCanDestroy: 'Option<bool>',1423 transfersEnabled: 'Option<bool>'1424 },1425 /**1426 * Lookup166: up_data_structs::SponsoringRateLimit1427 **/1428 UpDataStructsSponsoringRateLimit: {1429 _enum: {1430 SponsoringDisabled: 'Null',1431 Blocks: 'u32'1432 }1433 },1434 /**1435 * Lookup170: up_data_structs::MetaUpdatePermission1436 **/1437 UpDataStructsMetaUpdatePermission: {1438 _enum: ['ItemOwner', 'Admin', 'None']1439 },1440 /**1441 * Lookup172: pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1442 **/1443 PalletCommonAccountBasicCrossAccountIdRepr: {1444 _enum: {1445 Substrate: 'AccountId32',1446 Ethereum: 'H160'1447 }1448 },1449 /**1450 * Lookup174: up_data_structs::CreateItemData1451 **/1452 UpDataStructsCreateItemData: {1453 _enum: {1454 NFT: 'UpDataStructsCreateNftData',1455 Fungible: 'UpDataStructsCreateFungibleData',1456 ReFungible: 'UpDataStructsCreateReFungibleData'1457 }1458 },1459 /**1460 * Lookup175: up_data_structs::CreateNftData1461 **/1462 UpDataStructsCreateNftData: {1463 constData: 'Bytes',1464 variableData: 'Bytes'1465 },1466 /**1467 * Lookup177: up_data_structs::CreateFungibleData1468 **/1469 UpDataStructsCreateFungibleData: {1470 value: 'u128'1471 },1472 /**1473 * Lookup178: up_data_structs::CreateReFungibleData1474 **/1475 UpDataStructsCreateReFungibleData: {1476 constData: 'Bytes',1477 variableData: 'Bytes',1478 pieces: 'u128'1479 },1480 /**1481 * Lookup180: up_data_structs::CreateItemExData<pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1482 **/1483 UpDataStructsCreateItemExData: {1484 _enum: {1485 NFT: 'Vec<UpDataStructsCreateNftExData>',1486 Fungible: 'BTreeMap<PalletCommonAccountBasicCrossAccountIdRepr, u128>',1487 RefungibleMultipleItems: 'Vec<UpDataStructsCreateRefungibleExData>',1488 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExData'1489 }1490 },1491 /**1492 * Lookup182: up_data_structs::CreateNftExData<pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1493 **/1494 UpDataStructsCreateNftExData: {1495 constData: 'Bytes',1496 variableData: 'Bytes',1497 owner: 'PalletCommonAccountBasicCrossAccountIdRepr'1498 },1499 /**1500 * Lookup189: up_data_structs::CreateRefungibleExData<pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1501 **/1502 UpDataStructsCreateRefungibleExData: {1503 constData: 'Bytes',1504 variableData: 'Bytes',1505 users: 'BTreeMap<PalletCommonAccountBasicCrossAccountIdRepr, u128>'1506 },1507 /**1508 * Lookup192: pallet_template_transaction_payment::Call<T>1509 **/1510 PalletTemplateTransactionPaymentCall: 'Null',1511 /**1512 * Lookup193: pallet_evm::pallet::Call<T>1513 **/1514 PalletEvmCall: {1515 _enum: {1516 withdraw: {1517 address: 'H160',1518 value: 'u128',1519 },1520 call: {1521 source: 'H160',1522 target: 'H160',1523 input: 'Bytes',1524 value: 'U256',1525 gasLimit: 'u64',1526 maxFeePerGas: 'U256',1527 maxPriorityFeePerGas: 'Option<U256>',1528 nonce: 'Option<U256>',1529 accessList: 'Vec<(H160,Vec<H256>)>',1530 },1531 create: {1532 source: 'H160',1533 init: 'Bytes',1534 value: 'U256',1535 gasLimit: 'u64',1536 maxFeePerGas: 'U256',1537 maxPriorityFeePerGas: 'Option<U256>',1538 nonce: 'Option<U256>',1539 accessList: 'Vec<(H160,Vec<H256>)>',1540 },1541 create2: {1542 source: 'H160',1543 init: 'Bytes',1544 salt: 'H256',1545 value: 'U256',1546 gasLimit: 'u64',1547 maxFeePerGas: 'U256',1548 maxPriorityFeePerGas: 'Option<U256>',1549 nonce: 'Option<U256>',1550 accessList: 'Vec<(H160,Vec<H256>)>'1551 }1552 }1553 },1554 /**1555 * Lookup199: pallet_ethereum::pallet::Call<T>1556 **/1557 PalletEthereumCall: {1558 _enum: {1559 transact: {1560 transaction: 'EthereumTransactionTransactionV2'1561 }1562 }1563 },1564 /**1565 * Lookup200: ethereum::transaction::TransactionV21566 **/1567 EthereumTransactionTransactionV2: {1568 _enum: {1569 Legacy: 'EthereumTransactionLegacyTransaction',1570 EIP2930: 'EthereumTransactionEip2930Transaction',1571 EIP1559: 'EthereumTransactionEip1559Transaction'1572 }1573 },1574 /**1575 * Lookup201: ethereum::transaction::LegacyTransaction1576 **/1577 EthereumTransactionLegacyTransaction: {1578 nonce: 'U256',1579 gasPrice: 'U256',1580 gasLimit: 'U256',1581 action: 'EthereumTransactionTransactionAction',1582 value: 'U256',1583 input: 'Bytes',1584 signature: 'EthereumTransactionTransactionSignature'1585 },1586 /**1587 * Lookup202: ethereum::transaction::TransactionAction1588 **/1589 EthereumTransactionTransactionAction: {1590 _enum: {1591 Call: 'H160',1592 Create: 'Null'1593 }1594 },1595 /**1596 * Lookup203: ethereum::transaction::TransactionSignature1597 **/1598 EthereumTransactionTransactionSignature: {1599 v: 'u64',1600 r: 'H256',1601 s: 'H256'1602 },1603 /**1604 * Lookup205: ethereum::transaction::EIP2930Transaction1605 **/1606 EthereumTransactionEip2930Transaction: {1607 chainId: 'u64',1608 nonce: 'U256',1609 gasPrice: 'U256',1610 gasLimit: 'U256',1611 action: 'EthereumTransactionTransactionAction',1612 value: 'U256',1613 input: 'Bytes',1614 accessList: 'Vec<EthereumTransactionAccessListItem>',1615 oddYParity: 'bool',1616 r: 'H256',1617 s: 'H256'1618 },1619 /**1620 * Lookup207: ethereum::transaction::AccessListItem1621 **/1622 EthereumTransactionAccessListItem: {1623 address: 'H160',1624 slots: 'Vec<H256>'1625 },1626 /**1627 * Lookup208: ethereum::transaction::EIP1559Transaction1628 **/1629 EthereumTransactionEip1559Transaction: {1630 chainId: 'u64',1631 nonce: 'U256',1632 maxPriorityFeePerGas: 'U256',1633 maxFeePerGas: 'U256',1634 gasLimit: 'U256',1635 action: 'EthereumTransactionTransactionAction',1636 value: 'U256',1637 input: 'Bytes',1638 accessList: 'Vec<EthereumTransactionAccessListItem>',1639 oddYParity: 'bool',1640 r: 'H256',1641 s: 'H256'1642 },1643 /**1644 * Lookup209: pallet_evm_migration::pallet::Call<T>1645 **/1646 PalletEvmMigrationCall: {1647 _enum: {1648 begin: {1649 address: 'H160',1650 },1651 set_data: {1652 address: 'H160',1653 data: 'Vec<(H256,H256)>',1654 },1655 finish: {1656 address: 'H160',1657 code: 'Bytes'1658 }1659 }1660 },1661 /**1662 * Lookup212: pallet_sudo::pallet::Event<T>1663 **/1664 PalletSudoEvent: {1665 _enum: {1666 Sudid: {1667 sudoResult: 'Result<Null, SpRuntimeDispatchError>',1668 },1669 KeyChanged: {1670 oldSudoer: 'Option<AccountId32>',1671 },1672 SudoAsDone: {1673 sudoResult: 'Result<Null, SpRuntimeDispatchError>'1674 }1675 }1676 },1677 /**1678 * Lookup214: sp_runtime::DispatchError1679 **/1680 SpRuntimeDispatchError: {1681 _enum: {1682 Other: 'Null',1683 CannotLookup: 'Null',1684 BadOrigin: 'Null',1685 Module: 'SpRuntimeModuleError',1686 ConsumerRemaining: 'Null',1687 NoProviders: 'Null',1688 TooManyConsumers: 'Null',1689 Token: 'SpRuntimeTokenError',1690 Arithmetic: 'SpRuntimeArithmeticError'1691 }1692 },1693 /**1694 * Lookup215: sp_runtime::ModuleError1695 **/1696 SpRuntimeModuleError: {1697 index: 'u8',1698 error: 'u8'1699 },1700 /**1701 * Lookup216: sp_runtime::TokenError1702 **/1703 SpRuntimeTokenError: {1704 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']1705 },1706 /**1707 * Lookup217: sp_runtime::ArithmeticError1708 **/1709 SpRuntimeArithmeticError: {1710 _enum: ['Underflow', 'Overflow', 'DivisionByZero']1711 },1712 /**1713 * Lookup218: pallet_sudo::pallet::Error<T>1714 **/1715 PalletSudoError: {1716 _enum: ['RequireSudo']1717 },1718 /**1719 * Lookup219: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>1720 **/1721 FrameSystemAccountInfo: {1722 nonce: 'u32',1723 consumers: 'u32',1724 providers: 'u32',1725 sufficients: 'u32',1726 data: 'PalletBalancesAccountData'1727 },1728 /**1729 * Lookup220: frame_support::weights::PerDispatchClass<T>1730 **/1731 FrameSupportWeightsPerDispatchClassU64: {1732 normal: 'u64',1733 operational: 'u64',1734 mandatory: 'u64'1735 },1736 /**1737 * Lookup221: sp_runtime::generic::digest::Digest1738 **/1739 SpRuntimeDigest: {1740 logs: 'Vec<SpRuntimeDigestDigestItem>'1741 },1742 /**1743 * Lookup223: sp_runtime::generic::digest::DigestItem1744 **/1745 SpRuntimeDigestDigestItem: {1746 _enum: {1747 Other: 'Bytes',1748 __Unused1: 'Null',1749 __Unused2: 'Null',1750 __Unused3: 'Null',1751 Consensus: '([u8;4],Bytes)',1752 Seal: '([u8;4],Bytes)',1753 PreRuntime: '([u8;4],Bytes)',1754 __Unused7: 'Null',1755 RuntimeEnvironmentUpdated: 'Null'1756 }1757 },1758 /**1759 * Lookup225: frame_system::EventRecord<unique_runtime::Event, primitive_types::H256>1760 **/1761 FrameSystemEventRecord: {1762 phase: 'FrameSystemPhase',1763 event: 'Event',1764 topics: 'Vec<H256>'1765 },1766 /**1767 * Lookup227: frame_system::pallet::Event<T>1768 **/1769 FrameSystemEvent: {1770 _enum: {1771 ExtrinsicSuccess: {1772 dispatchInfo: 'FrameSupportWeightsDispatchInfo',1773 },1774 ExtrinsicFailed: {1775 dispatchError: 'SpRuntimeDispatchError',1776 dispatchInfo: 'FrameSupportWeightsDispatchInfo',1777 },1778 CodeUpdated: 'Null',1779 NewAccount: {1780 account: 'AccountId32',1781 },1782 KilledAccount: {1783 account: 'AccountId32',1784 },1785 Remarked: {1786 _alias: {1787 hash_: 'hash',1788 },1789 sender: 'AccountId32',1790 hash_: 'H256'1791 }1792 }1793 },1794 /**1795 * Lookup228: frame_support::weights::DispatchInfo1796 **/1797 FrameSupportWeightsDispatchInfo: {1798 weight: 'u64',1799 class: 'FrameSupportWeightsDispatchClass',1800 paysFee: 'FrameSupportWeightsPays'1801 },1802 /**1803 * Lookup229: frame_support::weights::DispatchClass1804 **/1805 FrameSupportWeightsDispatchClass: {1806 _enum: ['Normal', 'Operational', 'Mandatory']1807 },1808 /**1809 * Lookup230: frame_support::weights::Pays1810 **/1811 FrameSupportWeightsPays: {1812 _enum: ['Yes', 'No']1813 },1814 /**1815 * Lookup231: orml_vesting::module::Event<T>1816 **/1817 OrmlVestingModuleEvent: {1818 _enum: {1819 VestingScheduleAdded: {1820 from: 'AccountId32',1821 to: 'AccountId32',1822 vestingSchedule: 'OrmlVestingVestingSchedule',1823 },1824 Claimed: {1825 who: 'AccountId32',1826 amount: 'u128',1827 },1828 VestingSchedulesUpdated: {1829 who: 'AccountId32'1830 }1831 }1832 },1833 /**1834 * Lookup232: cumulus_pallet_xcmp_queue::pallet::Event<T>1835 **/1836 CumulusPalletXcmpQueueEvent: {1837 _enum: {1838 Success: 'Option<H256>',1839 Fail: '(Option<H256>,XcmV2TraitsError)',1840 BadVersion: 'Option<H256>',1841 BadFormat: 'Option<H256>',1842 UpwardMessageSent: 'Option<H256>',1843 XcmpMessageSent: 'Option<H256>',1844 OverweightEnqueued: '(u32,u32,u64,u64)',1845 OverweightServiced: '(u64,u64)'1846 }1847 },1848 /**1849 * Lookup233: pallet_xcm::pallet::Event<T>1850 **/1851 PalletXcmEvent: {1852 _enum: {1853 Attempted: 'XcmV2TraitsOutcome',1854 Sent: '(XcmV1MultiLocation,XcmV1MultiLocation,XcmV2Xcm)',1855 UnexpectedResponse: '(XcmV1MultiLocation,u64)',1856 ResponseReady: '(u64,XcmV2Response)',1857 Notified: '(u64,u8,u8)',1858 NotifyOverweight: '(u64,u8,u8,u64,u64)',1859 NotifyDispatchError: '(u64,u8,u8)',1860 NotifyDecodeFailed: '(u64,u8,u8)',1861 InvalidResponder: '(XcmV1MultiLocation,u64,Option<XcmV1MultiLocation>)',1862 InvalidResponderVersion: '(XcmV1MultiLocation,u64)',1863 ResponseTaken: 'u64',1864 AssetsTrapped: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)',1865 VersionChangeNotified: '(XcmV1MultiLocation,u32)',1866 SupportedVersionChanged: '(XcmV1MultiLocation,u32)',1867 NotifyTargetSendFail: '(XcmV1MultiLocation,u64,XcmV2TraitsError)',1868 NotifyTargetMigrationFail: '(XcmVersionedMultiLocation,u64)'1869 }1870 },1871 /**1872 * Lookup234: xcm::v2::traits::Outcome1873 **/1874 XcmV2TraitsOutcome: {1875 _enum: {1876 Complete: 'u64',1877 Incomplete: '(u64,XcmV2TraitsError)',1878 Error: 'XcmV2TraitsError'1879 }1880 },1881 /**1882 * Lookup236: cumulus_pallet_xcm::pallet::Event<T>1883 **/1884 CumulusPalletXcmEvent: {1885 _enum: {1886 InvalidFormat: '[u8;8]',1887 UnsupportedVersion: '[u8;8]',1888 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'1889 }1890 },1891 /**1892 * Lookup237: cumulus_pallet_dmp_queue::pallet::Event<T>1893 **/1894 CumulusPalletDmpQueueEvent: {1895 _enum: {1896 InvalidFormat: '[u8;32]',1897 UnsupportedVersion: '[u8;32]',1898 ExecutedDownward: '([u8;32],XcmV2TraitsOutcome)',1899 WeightExhausted: '([u8;32],u64,u64)',1900 OverweightEnqueued: '([u8;32],u64,u64)',1901 OverweightServiced: '(u64,u64)'1902 }1903 },1904 /**1905 * Lookup238: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>1906 **/1907 PalletUniqueRawEvent: {1908 _enum: {1909 CollectionSponsorRemoved: 'u32',1910 CollectionAdminAdded: '(u32,PalletCommonAccountBasicCrossAccountIdRepr)',1911 CollectionOwnedChanged: '(u32,AccountId32)',1912 CollectionSponsorSet: '(u32,AccountId32)',1913 ConstOnChainSchemaSet: 'u32',1914 SponsorshipConfirmed: '(u32,AccountId32)',1915 CollectionAdminRemoved: '(u32,PalletCommonAccountBasicCrossAccountIdRepr)',1916 AllowListAddressRemoved: '(u32,PalletCommonAccountBasicCrossAccountIdRepr)',1917 AllowListAddressAdded: '(u32,PalletCommonAccountBasicCrossAccountIdRepr)',1918 CollectionLimitSet: 'u32',1919 MintPermissionSet: 'u32',1920 OffchainSchemaSet: 'u32',1921 PublicAccessModeSet: '(u32,UpDataStructsAccessMode)',1922 SchemaVersionSet: 'u32',1923 VariableOnChainSchemaSet: 'u32'1924 }1925 },1926 /**1927 * Lookup239: pallet_common::pallet::Event<T>1928 **/1929 PalletCommonEvent: {1930 _enum: {1931 CollectionCreated: '(u32,u8,AccountId32)',1932 CollectionDestroyed: 'u32',1933 ItemCreated: '(u32,u32,PalletCommonAccountBasicCrossAccountIdRepr,u128)',1934 ItemDestroyed: '(u32,u32,PalletCommonAccountBasicCrossAccountIdRepr,u128)',1935 Transfer: '(u32,u32,PalletCommonAccountBasicCrossAccountIdRepr,PalletCommonAccountBasicCrossAccountIdRepr,u128)',1936 Approved: '(u32,u32,PalletCommonAccountBasicCrossAccountIdRepr,PalletCommonAccountBasicCrossAccountIdRepr,u128)'1937 }1938 },1939 /**1940 * Lookup240: pallet_evm::pallet::Event<T>1941 **/1942 PalletEvmEvent: {1943 _enum: {1944 Log: 'EthereumLog',1945 Created: 'H160',1946 CreatedFailed: 'H160',1947 Executed: 'H160',1948 ExecutedFailed: 'H160',1949 BalanceDeposit: '(AccountId32,H160,U256)',1950 BalanceWithdraw: '(AccountId32,H160,U256)'1951 }1952 },1953 /**1954 * Lookup241: ethereum::log::Log1955 **/1956 EthereumLog: {1957 address: 'H160',1958 topics: 'Vec<H256>',1959 data: 'Bytes'1960 },1961 /**1962 * Lookup242: pallet_ethereum::pallet::Event1963 **/1964 PalletEthereumEvent: {1965 _enum: {1966 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'1967 }1968 },1969 /**1970 * Lookup243: evm_core::error::ExitReason1971 **/1972 EvmCoreErrorExitReason: {1973 _enum: {1974 Succeed: 'EvmCoreErrorExitSucceed',1975 Error: 'EvmCoreErrorExitError',1976 Revert: 'EvmCoreErrorExitRevert',1977 Fatal: 'EvmCoreErrorExitFatal'1978 }1979 },1980 /**1981 * Lookup244: evm_core::error::ExitSucceed1982 **/1983 EvmCoreErrorExitSucceed: {1984 _enum: ['Stopped', 'Returned', 'Suicided']1985 },1986 /**1987 * Lookup245: evm_core::error::ExitError1988 **/1989 EvmCoreErrorExitError: {1990 _enum: {1991 StackUnderflow: 'Null',1992 StackOverflow: 'Null',1993 InvalidJump: 'Null',1994 InvalidRange: 'Null',1995 DesignatedInvalid: 'Null',1996 CallTooDeep: 'Null',1997 CreateCollision: 'Null',1998 CreateContractLimit: 'Null',1999 InvalidCode: 'Null',2000 OutOfOffset: 'Null',2001 OutOfGas: 'Null',2002 OutOfFund: 'Null',2003 PCUnderflow: 'Null',2004 CreateEmpty: 'Null',2005 Other: 'Text'2006 }2007 },2008 /**2009 * Lookup248: evm_core::error::ExitRevert2010 **/2011 EvmCoreErrorExitRevert: {2012 _enum: ['Reverted']2013 },2014 /**2015 * Lookup249: evm_core::error::ExitFatal2016 **/2017 EvmCoreErrorExitFatal: {2018 _enum: {2019 NotSupported: 'Null',2020 UnhandledInterrupt: 'Null',2021 CallErrorAsFatal: 'EvmCoreErrorExitError',2022 Other: 'Text'2023 }2024 },2025 /**2026 * Lookup250: frame_system::Phase2027 **/2028 FrameSystemPhase: {2029 _enum: {2030 ApplyExtrinsic: 'u32',2031 Finalization: 'Null',2032 Initialization: 'Null'2033 }2034 },2035 /**2036 * Lookup252: frame_system::LastRuntimeUpgradeInfo2037 **/2038 FrameSystemLastRuntimeUpgradeInfo: {2039 specVersion: 'Compact<u32>',2040 specName: 'Text'2041 },2042 /**2043 * Lookup253: frame_system::limits::BlockWeights2044 **/2045 FrameSystemLimitsBlockWeights: {2046 baseBlock: 'u64',2047 maxBlock: 'u64',2048 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'2049 },2050 /**2051 * Lookup254: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>2052 **/2053 FrameSupportWeightsPerDispatchClassWeightsPerClass: {2054 normal: 'FrameSystemLimitsWeightsPerClass',2055 operational: 'FrameSystemLimitsWeightsPerClass',2056 mandatory: 'FrameSystemLimitsWeightsPerClass'2057 },2058 /**2059 * Lookup255: frame_system::limits::WeightsPerClass2060 **/2061 FrameSystemLimitsWeightsPerClass: {2062 baseExtrinsic: 'u64',2063 maxExtrinsic: 'Option<u64>',2064 maxTotal: 'Option<u64>',2065 reserved: 'Option<u64>'2066 },2067 /**2068 * Lookup257: frame_system::limits::BlockLength2069 **/2070 FrameSystemLimitsBlockLength: {2071 max: 'FrameSupportWeightsPerDispatchClassU32'2072 },2073 /**2074 * Lookup258: frame_support::weights::PerDispatchClass<T>2075 **/2076 FrameSupportWeightsPerDispatchClassU32: {2077 normal: 'u32',2078 operational: 'u32',2079 mandatory: 'u32'2080 },2081 /**2082 * Lookup259: frame_support::weights::RuntimeDbWeight2083 **/2084 FrameSupportWeightsRuntimeDbWeight: {2085 read: 'u64',2086 write: 'u64'2087 },2088 /**2089 * Lookup260: sp_version::RuntimeVersion2090 **/2091 SpVersionRuntimeVersion: {2092 specName: 'Text',2093 implName: 'Text',2094 authoringVersion: 'u32',2095 specVersion: 'u32',2096 implVersion: 'u32',2097 apis: 'Vec<([u8;8],u32)>',2098 transactionVersion: 'u32',2099 stateVersion: 'u8'2100 },2101 /**2102 * Lookup264: frame_system::pallet::Error<T>2103 **/2104 FrameSystemError: {2105 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']2106 },2107 /**2108 * Lookup266: orml_vesting::module::Error<T>2109 **/2110 OrmlVestingModuleError: {2111 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2112 },2113 /**2114 * Lookup268: cumulus_pallet_xcmp_queue::InboundChannelDetails2115 **/2116 CumulusPalletXcmpQueueInboundChannelDetails: {2117 sender: 'u32',2118 state: 'CumulusPalletXcmpQueueInboundState',2119 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2120 },2121 /**2122 * Lookup269: cumulus_pallet_xcmp_queue::InboundState2123 **/2124 CumulusPalletXcmpQueueInboundState: {2125 _enum: ['Ok', 'Suspended']2126 },2127 /**2128 * Lookup272: polkadot_parachain::primitives::XcmpMessageFormat2129 **/2130 PolkadotParachainPrimitivesXcmpMessageFormat: {2131 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2132 },2133 /**2134 * Lookup275: cumulus_pallet_xcmp_queue::OutboundChannelDetails2135 **/2136 CumulusPalletXcmpQueueOutboundChannelDetails: {2137 recipient: 'u32',2138 state: 'CumulusPalletXcmpQueueOutboundState',2139 signalsExist: 'bool',2140 firstIndex: 'u16',2141 lastIndex: 'u16'2142 },2143 /**2144 * Lookup276: cumulus_pallet_xcmp_queue::OutboundState2145 **/2146 CumulusPalletXcmpQueueOutboundState: {2147 _enum: ['Ok', 'Suspended']2148 },2149 /**2150 * Lookup278: cumulus_pallet_xcmp_queue::QueueConfigData2151 **/2152 CumulusPalletXcmpQueueQueueConfigData: {2153 suspendThreshold: 'u32',2154 dropThreshold: 'u32',2155 resumeThreshold: 'u32',2156 thresholdWeight: 'u64',2157 weightRestrictDecay: 'u64',2158 xcmpMaxIndividualWeight: 'u64'2159 },2160 /**2161 * Lookup280: cumulus_pallet_xcmp_queue::pallet::Error<T>2162 **/2163 CumulusPalletXcmpQueueError: {2164 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2165 },2166 /**2167 * Lookup281: pallet_xcm::pallet::Error<T>2168 **/2169 PalletXcmError: {2170 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2171 },2172 /**2173 * Lookup282: cumulus_pallet_xcm::pallet::Error<T>2174 **/2175 CumulusPalletXcmError: 'Null',2176 /**2177 * Lookup283: cumulus_pallet_dmp_queue::ConfigData2178 **/2179 CumulusPalletDmpQueueConfigData: {2180 maxIndividual: 'u64'2181 },2182 /**2183 * Lookup284: cumulus_pallet_dmp_queue::PageIndexData2184 **/2185 CumulusPalletDmpQueuePageIndexData: {2186 beginUsed: 'u32',2187 endUsed: 'u32',2188 overweightCount: 'u64'2189 },2190 /**2191 * Lookup287: cumulus_pallet_dmp_queue::pallet::Error<T>2192 **/2193 CumulusPalletDmpQueueError: {2194 _enum: ['Unknown', 'OverLimit']2195 },2196 /**2197 * Lookup291: pallet_unique::Error<T>2198 **/2199 PalletUniqueError: {2200 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']2201 },2202 /**2203 * Lookup292: up_data_structs::Collection<sp_core::crypto::AccountId32>2204 **/2205 UpDataStructsCollection: {2206 owner: 'AccountId32',2207 mode: 'UpDataStructsCollectionMode',2208 access: 'UpDataStructsAccessMode',2209 name: 'Vec<u16>',2210 description: 'Vec<u16>',2211 tokenPrefix: 'Bytes',2212 mintMode: 'bool',2213 offchainSchema: 'Bytes',2214 schemaVersion: 'UpDataStructsSchemaVersion',2215 sponsorship: 'UpDataStructsSponsorshipState',2216 limits: 'UpDataStructsCollectionLimits',2217 variableOnChainSchema: 'Bytes',2218 constOnChainSchema: 'Bytes',2219 metaUpdatePermission: 'UpDataStructsMetaUpdatePermission'2220 },2221 /**2222 * Lookup293: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>2223 **/2224 UpDataStructsSponsorshipState: {2225 _enum: {2226 Disabled: 'Null',2227 Unconfirmed: 'AccountId32',2228 Confirmed: 'AccountId32'2229 }2230 },2231 /**2232 * Lookup296: up_data_structs::CollectionStats2233 **/2234 UpDataStructsCollectionStats: {2235 created: 'u32',2236 destroyed: 'u32',2237 alive: 'u32'2238 },2239 /**2240 * Lookup297: pallet_common::pallet::Error<T>2241 **/2242 PalletCommonError: {2243 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'TokenVariableDataLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation']2244 },2245 /**2246 * Lookup299: pallet_fungible::pallet::Error<T>2247 **/2248 PalletFungibleError: {2249 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData']2250 },2251 /**2252 * Lookup300: pallet_refungible::ItemData2253 **/2254 PalletRefungibleItemData: {2255 constData: 'Bytes',2256 variableData: 'Bytes'2257 },2258 /**2259 * Lookup304: pallet_refungible::pallet::Error<T>2260 **/2261 PalletRefungibleError: {2262 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces']2263 },2264 /**2265 * Lookup305: pallet_nonfungible::ItemData<pallet_common::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2266 **/2267 PalletNonfungibleItemData: {2268 constData: 'Bytes',2269 variableData: 'Bytes',2270 owner: 'PalletCommonAccountBasicCrossAccountIdRepr'2271 },2272 /**2273 * Lookup306: pallet_nonfungible::pallet::Error<T>2274 **/2275 PalletNonfungibleError: {2276 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']2277 },2278 /**2279 * Lookup308: pallet_evm::pallet::Error<T>2280 **/2281 PalletEvmError: {2282 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']2283 },2284 /**2285 * Lookup311: fp_rpc::TransactionStatus2286 **/2287 FpRpcTransactionStatus: {2288 transactionHash: 'H256',2289 transactionIndex: 'u32',2290 from: 'H160',2291 to: 'Option<H160>',2292 contractAddress: 'Option<H160>',2293 logs: 'Vec<EthereumLog>',2294 logsBloom: 'EthbloomBloom'2295 },2296 /**2297 * Lookup314: ethbloom::Bloom2298 **/2299 EthbloomBloom: '[u8;256]',2300 /**2301 * Lookup316: ethereum::receipt::ReceiptV32302 **/2303 EthereumReceiptReceiptV3: {2304 _enum: {2305 Legacy: 'EthereumReceiptEip658ReceiptData',2306 EIP2930: 'EthereumReceiptEip658ReceiptData',2307 EIP1559: 'EthereumReceiptEip658ReceiptData'2308 }2309 },2310 /**2311 * Lookup317: ethereum::receipt::EIP658ReceiptData2312 **/2313 EthereumReceiptEip658ReceiptData: {2314 statusCode: 'u8',2315 usedGas: 'U256',2316 logsBloom: 'EthbloomBloom',2317 logs: 'Vec<EthereumLog>'2318 },2319 /**2320 * Lookup318: ethereum::block::Block<ethereum::transaction::TransactionV2>2321 **/2322 EthereumBlock: {2323 header: 'EthereumHeader',2324 transactions: 'Vec<EthereumTransactionTransactionV2>',2325 ommers: 'Vec<EthereumHeader>'2326 },2327 /**2328 * Lookup319: ethereum::header::Header2329 **/2330 EthereumHeader: {2331 parentHash: 'H256',2332 ommersHash: 'H256',2333 beneficiary: 'H160',2334 stateRoot: 'H256',2335 transactionsRoot: 'H256',2336 receiptsRoot: 'H256',2337 logsBloom: 'EthbloomBloom',2338 difficulty: 'U256',2339 number: 'U256',2340 gasLimit: 'U256',2341 gasUsed: 'U256',2342 timestamp: 'u64',2343 extraData: 'Bytes',2344 mixHash: 'H256',2345 nonce: 'EthereumTypesHashH64'2346 },2347 /**2348 * Lookup320: ethereum_types::hash::H642349 **/2350 EthereumTypesHashH64: '[u8;8]',2351 /**2352 * Lookup325: pallet_ethereum::pallet::Error<T>2353 **/2354 PalletEthereumError: {2355 _enum: ['InvalidSignature', 'PreLogExists']2356 },2357 /**2358 * Lookup326: pallet_evm_coder_substrate::pallet::Error<T>2359 **/2360 PalletEvmCoderSubstrateError: {2361 _enum: ['OutOfGas', 'OutOfFund']2362 },2363 /**2364 * Lookup327: pallet_evm_contract_helpers::SponsoringModeT2365 **/2366 PalletEvmContractHelpersSponsoringModeT: {2367 _enum: ['Disabled', 'Allowlisted', 'Generous']2368 },2369 /**2370 * Lookup329: pallet_evm_contract_helpers::pallet::Error<T>2371 **/2372 PalletEvmContractHelpersError: {2373 _enum: ['NoPermission']2374 },2375 /**2376 * Lookup330: pallet_evm_migration::pallet::Error<T>2377 **/2378 PalletEvmMigrationError: {2379 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']2380 },2381 /**2382 * Lookup332: sp_runtime::MultiSignature2383 **/2384 SpRuntimeMultiSignature: {2385 _enum: {2386 Ed25519: 'SpCoreEd25519Signature',2387 Sr25519: 'SpCoreSr25519Signature',2388 Ecdsa: 'SpCoreEcdsaSignature'2389 }2390 },2391 /**2392 * Lookup333: sp_core::ed25519::Signature2393 **/2394 SpCoreEd25519Signature: '[u8;64]',2395 /**2396 * Lookup335: sp_core::sr25519::Signature2397 **/2398 SpCoreSr25519Signature: '[u8;64]',2399 /**2400 * Lookup336: sp_core::ecdsa::Signature2401 **/2402 SpCoreEcdsaSignature: '[u8;65]',2403 /**2404 * Lookup339: frame_system::extensions::check_spec_version::CheckSpecVersion<T>2405 **/2406 FrameSystemExtensionsCheckSpecVersion: 'Null',2407 /**2408 * Lookup340: frame_system::extensions::check_genesis::CheckGenesis<T>2409 **/2410 FrameSystemExtensionsCheckGenesis: 'Null',2411 /**2412 * Lookup343: frame_system::extensions::check_nonce::CheckNonce<T>2413 **/2414 FrameSystemExtensionsCheckNonce: 'Compact<u32>',2415 /**2416 * Lookup344: frame_system::extensions::check_weight::CheckWeight<T>2417 **/2418 FrameSystemExtensionsCheckWeight: 'Null',2419 /**2420 * Lookup345: pallet_template_transaction_payment::ChargeTransactionPayment<unique_runtime::Runtime>2421 **/2422 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',2423 /**2424 * Lookup346: unique_runtime::Runtime2425 **/2426 UniqueRuntimeRuntime: 'Null'2427};tests/src/interfaces/types-lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -1421,6 +1421,11 @@
readonly owner: PalletCommonAccountBasicCrossAccountIdRepr;
readonly itemsData: Vec<UpDataStructsCreateItemData>;
} & Struct;
+ readonly isCreateMultipleItemsEx: boolean;
+ readonly asCreateMultipleItemsEx: {
+ readonly collectionId: u32;
+ readonly data: UpDataStructsCreateItemExData;
+ } & Struct;
readonly isSetTransfersEnabledFlag: boolean;
readonly asSetTransfersEnabledFlag: {
readonly collectionId: u32;
@@ -1497,7 +1502,7 @@
readonly collectionId: u32;
readonly newLimit: UpDataStructsCollectionLimits;
} & Struct;
- 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';
+ readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetVariableMetaData' | 'SetMetaUpdatePermissionFlag' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetVariableOnChainSchema' | 'SetCollectionLimits';
}
/** @name UpDataStructsCollectionMode (155) */
@@ -1606,10 +1611,37 @@
readonly pieces: u128;
}
- /** @name PalletTemplateTransactionPaymentCall (181) */
+ /** @name UpDataStructsCreateItemExData (180) */
+ export interface UpDataStructsCreateItemExData extends Enum {
+ readonly isNft: boolean;
+ readonly asNft: Vec<UpDataStructsCreateNftExData>;
+ readonly isFungible: boolean;
+ readonly asFungible: BTreeMap<PalletCommonAccountBasicCrossAccountIdRepr, u128>;
+ readonly isRefungibleMultipleItems: boolean;
+ readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExData>;
+ readonly isRefungibleMultipleOwners: boolean;
+ readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExData;
+ readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
+ }
+
+ /** @name UpDataStructsCreateNftExData (182) */
+ export interface UpDataStructsCreateNftExData extends Struct {
+ readonly constData: Bytes;
+ readonly variableData: Bytes;
+ readonly owner: PalletCommonAccountBasicCrossAccountIdRepr;
+ }
+
+ /** @name UpDataStructsCreateRefungibleExData (189) */
+ export interface UpDataStructsCreateRefungibleExData extends Struct {
+ readonly constData: Bytes;
+ readonly variableData: Bytes;
+ readonly users: BTreeMap<PalletCommonAccountBasicCrossAccountIdRepr, u128>;
+ }
+
+ /** @name PalletTemplateTransactionPaymentCall (192) */
export type PalletTemplateTransactionPaymentCall = Null;
- /** @name PalletEvmCall (182) */
+ /** @name PalletEvmCall (193) */
export interface PalletEvmCall extends Enum {
readonly isWithdraw: boolean;
readonly asWithdraw: {
@@ -1654,7 +1686,7 @@
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
}
- /** @name PalletEthereumCall (188) */
+ /** @name PalletEthereumCall (199) */
export interface PalletEthereumCall extends Enum {
readonly isTransact: boolean;
readonly asTransact: {
@@ -1663,7 +1695,7 @@
readonly type: 'Transact';
}
- /** @name EthereumTransactionTransactionV2 (189) */
+ /** @name EthereumTransactionTransactionV2 (200) */
export interface EthereumTransactionTransactionV2 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -1674,7 +1706,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumTransactionLegacyTransaction (190) */
+ /** @name EthereumTransactionLegacyTransaction (201) */
export interface EthereumTransactionLegacyTransaction extends Struct {
readonly nonce: U256;
readonly gasPrice: U256;
@@ -1685,7 +1717,7 @@
readonly signature: EthereumTransactionTransactionSignature;
}
- /** @name EthereumTransactionTransactionAction (191) */
+ /** @name EthereumTransactionTransactionAction (202) */
export interface EthereumTransactionTransactionAction extends Enum {
readonly isCall: boolean;
readonly asCall: H160;
@@ -1693,14 +1725,14 @@
readonly type: 'Call' | 'Create';
}
- /** @name EthereumTransactionTransactionSignature (192) */
+ /** @name EthereumTransactionTransactionSignature (203) */
export interface EthereumTransactionTransactionSignature extends Struct {
readonly v: u64;
readonly r: H256;
readonly s: H256;
}
- /** @name EthereumTransactionEip2930Transaction (194) */
+ /** @name EthereumTransactionEip2930Transaction (205) */
export interface EthereumTransactionEip2930Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -1715,13 +1747,13 @@
readonly s: H256;
}
- /** @name EthereumTransactionAccessListItem (196) */
+ /** @name EthereumTransactionAccessListItem (207) */
export interface EthereumTransactionAccessListItem extends Struct {
readonly address: H160;
readonly slots: Vec<H256>;
}
- /** @name EthereumTransactionEip1559Transaction (197) */
+ /** @name EthereumTransactionEip1559Transaction (208) */
export interface EthereumTransactionEip1559Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -1737,7 +1769,7 @@
readonly s: H256;
}
- /** @name PalletEvmMigrationCall (198) */
+ /** @name PalletEvmMigrationCall (209) */
export interface PalletEvmMigrationCall extends Enum {
readonly isBegin: boolean;
readonly asBegin: {
@@ -1756,7 +1788,7 @@
readonly type: 'Begin' | 'SetData' | 'Finish';
}
- /** @name PalletSudoEvent (201) */
+ /** @name PalletSudoEvent (212) */
export interface PalletSudoEvent extends Enum {
readonly isSudid: boolean;
readonly asSudid: {
@@ -1773,7 +1805,7 @@
readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
}
- /** @name SpRuntimeDispatchError (203) */
+ /** @name SpRuntimeDispatchError (214) */
export interface SpRuntimeDispatchError extends Enum {
readonly isOther: boolean;
readonly isCannotLookup: boolean;
@@ -1790,13 +1822,13 @@
readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic';
}
- /** @name SpRuntimeModuleError (204) */
+ /** @name SpRuntimeModuleError (215) */
export interface SpRuntimeModuleError extends Struct {
readonly index: u8;
readonly error: u8;
}
- /** @name SpRuntimeTokenError (205) */
+ /** @name SpRuntimeTokenError (216) */
export interface SpRuntimeTokenError extends Enum {
readonly isNoFunds: boolean;
readonly isWouldDie: boolean;
@@ -1808,7 +1840,7 @@
readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';
}
- /** @name SpRuntimeArithmeticError (206) */
+ /** @name SpRuntimeArithmeticError (217) */
export interface SpRuntimeArithmeticError extends Enum {
readonly isUnderflow: boolean;
readonly isOverflow: boolean;
@@ -1816,13 +1848,13 @@
readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
}
- /** @name PalletSudoError (207) */
+ /** @name PalletSudoError (218) */
export interface PalletSudoError extends Enum {
readonly isRequireSudo: boolean;
readonly type: 'RequireSudo';
}
- /** @name FrameSystemAccountInfo (208) */
+ /** @name FrameSystemAccountInfo (219) */
export interface FrameSystemAccountInfo extends Struct {
readonly nonce: u32;
readonly consumers: u32;
@@ -1831,19 +1863,19 @@
readonly data: PalletBalancesAccountData;
}
- /** @name FrameSupportWeightsPerDispatchClassU64 (209) */
+ /** @name FrameSupportWeightsPerDispatchClassU64 (220) */
export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {
readonly normal: u64;
readonly operational: u64;
readonly mandatory: u64;
}
- /** @name SpRuntimeDigest (210) */
+ /** @name SpRuntimeDigest (221) */
export interface SpRuntimeDigest extends Struct {
readonly logs: Vec<SpRuntimeDigestDigestItem>;
}
- /** @name SpRuntimeDigestDigestItem (212) */
+ /** @name SpRuntimeDigestDigestItem (223) */
export interface SpRuntimeDigestDigestItem extends Enum {
readonly isOther: boolean;
readonly asOther: Bytes;
@@ -1857,14 +1889,14 @@
readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';
}
- /** @name FrameSystemEventRecord (214) */
+ /** @name FrameSystemEventRecord (225) */
export interface FrameSystemEventRecord extends Struct {
readonly phase: FrameSystemPhase;
readonly event: Event;
readonly topics: Vec<H256>;
}
- /** @name FrameSystemEvent (216) */
+ /** @name FrameSystemEvent (227) */
export interface FrameSystemEvent extends Enum {
readonly isExtrinsicSuccess: boolean;
readonly asExtrinsicSuccess: {
@@ -1892,14 +1924,14 @@
readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
}
- /** @name FrameSupportWeightsDispatchInfo (217) */
+ /** @name FrameSupportWeightsDispatchInfo (228) */
export interface FrameSupportWeightsDispatchInfo extends Struct {
readonly weight: u64;
readonly class: FrameSupportWeightsDispatchClass;
readonly paysFee: FrameSupportWeightsPays;
}
- /** @name FrameSupportWeightsDispatchClass (218) */
+ /** @name FrameSupportWeightsDispatchClass (229) */
export interface FrameSupportWeightsDispatchClass extends Enum {
readonly isNormal: boolean;
readonly isOperational: boolean;
@@ -1907,14 +1939,14 @@
readonly type: 'Normal' | 'Operational' | 'Mandatory';
}
- /** @name FrameSupportWeightsPays (219) */
+ /** @name FrameSupportWeightsPays (230) */
export interface FrameSupportWeightsPays extends Enum {
readonly isYes: boolean;
readonly isNo: boolean;
readonly type: 'Yes' | 'No';
}
- /** @name OrmlVestingModuleEvent (220) */
+ /** @name OrmlVestingModuleEvent (231) */
export interface OrmlVestingModuleEvent extends Enum {
readonly isVestingScheduleAdded: boolean;
readonly asVestingScheduleAdded: {
@@ -1934,7 +1966,7 @@
readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
}
- /** @name CumulusPalletXcmpQueueEvent (221) */
+ /** @name CumulusPalletXcmpQueueEvent (232) */
export interface CumulusPalletXcmpQueueEvent extends Enum {
readonly isSuccess: boolean;
readonly asSuccess: Option<H256>;
@@ -1955,7 +1987,7 @@
readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
}
- /** @name PalletXcmEvent (222) */
+ /** @name PalletXcmEvent (233) */
export interface PalletXcmEvent extends Enum {
readonly isAttempted: boolean;
readonly asAttempted: XcmV2TraitsOutcome;
@@ -1992,7 +2024,7 @@
readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';
}
- /** @name XcmV2TraitsOutcome (223) */
+ /** @name XcmV2TraitsOutcome (234) */
export interface XcmV2TraitsOutcome extends Enum {
readonly isComplete: boolean;
readonly asComplete: u64;
@@ -2003,7 +2035,7 @@
readonly type: 'Complete' | 'Incomplete' | 'Error';
}
- /** @name CumulusPalletXcmEvent (225) */
+ /** @name CumulusPalletXcmEvent (236) */
export interface CumulusPalletXcmEvent extends Enum {
readonly isInvalidFormat: boolean;
readonly asInvalidFormat: U8aFixed;
@@ -2014,7 +2046,7 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
}
- /** @name CumulusPalletDmpQueueEvent (226) */
+ /** @name CumulusPalletDmpQueueEvent (237) */
export interface CumulusPalletDmpQueueEvent extends Enum {
readonly isInvalidFormat: boolean;
readonly asInvalidFormat: U8aFixed;
@@ -2031,7 +2063,7 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
}
- /** @name PalletUniqueRawEvent (227) */
+ /** @name PalletUniqueRawEvent (238) */
export interface PalletUniqueRawEvent extends Enum {
readonly isCollectionSponsorRemoved: boolean;
readonly asCollectionSponsorRemoved: u32;
@@ -2066,7 +2098,7 @@
readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet' | 'VariableOnChainSchemaSet';
}
- /** @name PalletCommonEvent (228) */
+ /** @name PalletCommonEvent (239) */
export interface PalletCommonEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -2083,7 +2115,7 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved';
}
- /** @name PalletEvmEvent (229) */
+ /** @name PalletEvmEvent (240) */
export interface PalletEvmEvent extends Enum {
readonly isLog: boolean;
readonly asLog: EthereumLog;
@@ -2102,21 +2134,21 @@
readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';
}
- /** @name EthereumLog (230) */
+ /** @name EthereumLog (241) */
export interface EthereumLog extends Struct {
readonly address: H160;
readonly topics: Vec<H256>;
readonly data: Bytes;
}
- /** @name PalletEthereumEvent (231) */
+ /** @name PalletEthereumEvent (242) */
export interface PalletEthereumEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;
readonly type: 'Executed';
}
- /** @name EvmCoreErrorExitReason (232) */
+ /** @name EvmCoreErrorExitReason (243) */
export interface EvmCoreErrorExitReason extends Enum {
readonly isSucceed: boolean;
readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -2129,7 +2161,7 @@
readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
}
- /** @name EvmCoreErrorExitSucceed (233) */
+ /** @name EvmCoreErrorExitSucceed (244) */
export interface EvmCoreErrorExitSucceed extends Enum {
readonly isStopped: boolean;
readonly isReturned: boolean;
@@ -2137,7 +2169,7 @@
readonly type: 'Stopped' | 'Returned' | 'Suicided';
}
- /** @name EvmCoreErrorExitError (234) */
+ /** @name EvmCoreErrorExitError (245) */
export interface EvmCoreErrorExitError extends Enum {
readonly isStackUnderflow: boolean;
readonly isStackOverflow: boolean;
@@ -2158,13 +2190,13 @@
readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'InvalidCode' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other';
}
- /** @name EvmCoreErrorExitRevert (237) */
+ /** @name EvmCoreErrorExitRevert (248) */
export interface EvmCoreErrorExitRevert extends Enum {
readonly isReverted: boolean;
readonly type: 'Reverted';
}
- /** @name EvmCoreErrorExitFatal (238) */
+ /** @name EvmCoreErrorExitFatal (249) */
export interface EvmCoreErrorExitFatal extends Enum {
readonly isNotSupported: boolean;
readonly isUnhandledInterrupt: boolean;
@@ -2175,7 +2207,7 @@
readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
}
- /** @name FrameSystemPhase (239) */
+ /** @name FrameSystemPhase (250) */
export interface FrameSystemPhase extends Enum {
readonly isApplyExtrinsic: boolean;
readonly asApplyExtrinsic: u32;
@@ -2184,27 +2216,27 @@
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
}
- /** @name FrameSystemLastRuntimeUpgradeInfo (241) */
+ /** @name FrameSystemLastRuntimeUpgradeInfo (252) */
export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
readonly specVersion: Compact<u32>;
readonly specName: Text;
}
- /** @name FrameSystemLimitsBlockWeights (242) */
+ /** @name FrameSystemLimitsBlockWeights (253) */
export interface FrameSystemLimitsBlockWeights extends Struct {
readonly baseBlock: u64;
readonly maxBlock: u64;
readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
}
- /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (243) */
+ /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (254) */
export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
readonly normal: FrameSystemLimitsWeightsPerClass;
readonly operational: FrameSystemLimitsWeightsPerClass;
readonly mandatory: FrameSystemLimitsWeightsPerClass;
}
- /** @name FrameSystemLimitsWeightsPerClass (244) */
+ /** @name FrameSystemLimitsWeightsPerClass (255) */
export interface FrameSystemLimitsWeightsPerClass extends Struct {
readonly baseExtrinsic: u64;
readonly maxExtrinsic: Option<u64>;
@@ -2212,25 +2244,25 @@
readonly reserved: Option<u64>;
}
- /** @name FrameSystemLimitsBlockLength (246) */
+ /** @name FrameSystemLimitsBlockLength (257) */
export interface FrameSystemLimitsBlockLength extends Struct {
readonly max: FrameSupportWeightsPerDispatchClassU32;
}
- /** @name FrameSupportWeightsPerDispatchClassU32 (247) */
+ /** @name FrameSupportWeightsPerDispatchClassU32 (258) */
export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
readonly normal: u32;
readonly operational: u32;
readonly mandatory: u32;
}
- /** @name FrameSupportWeightsRuntimeDbWeight (248) */
+ /** @name FrameSupportWeightsRuntimeDbWeight (259) */
export interface FrameSupportWeightsRuntimeDbWeight extends Struct {
readonly read: u64;
readonly write: u64;
}
- /** @name SpVersionRuntimeVersion (249) */
+ /** @name SpVersionRuntimeVersion (260) */
export interface SpVersionRuntimeVersion extends Struct {
readonly specName: Text;
readonly implName: Text;
@@ -2242,7 +2274,7 @@
readonly stateVersion: u8;
}
- /** @name FrameSystemError (253) */
+ /** @name FrameSystemError (264) */
export interface FrameSystemError extends Enum {
readonly isInvalidSpecName: boolean;
readonly isSpecVersionNeedsToIncrease: boolean;
@@ -2253,7 +2285,7 @@
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
}
- /** @name OrmlVestingModuleError (255) */
+ /** @name OrmlVestingModuleError (266) */
export interface OrmlVestingModuleError extends Enum {
readonly isZeroVestingPeriod: boolean;
readonly isZeroVestingPeriodCount: boolean;
@@ -2264,21 +2296,21 @@
readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
}
- /** @name CumulusPalletXcmpQueueInboundChannelDetails (257) */
+ /** @name CumulusPalletXcmpQueueInboundChannelDetails (268) */
export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
readonly sender: u32;
readonly state: CumulusPalletXcmpQueueInboundState;
readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
}
- /** @name CumulusPalletXcmpQueueInboundState (258) */
+ /** @name CumulusPalletXcmpQueueInboundState (269) */
export interface CumulusPalletXcmpQueueInboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name PolkadotParachainPrimitivesXcmpMessageFormat (261) */
+ /** @name PolkadotParachainPrimitivesXcmpMessageFormat (272) */
export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
readonly isConcatenatedVersionedXcm: boolean;
readonly isConcatenatedEncodedBlob: boolean;
@@ -2286,7 +2318,7 @@
readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
}
- /** @name CumulusPalletXcmpQueueOutboundChannelDetails (264) */
+ /** @name CumulusPalletXcmpQueueOutboundChannelDetails (275) */
export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
readonly recipient: u32;
readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -2295,14 +2327,14 @@
readonly lastIndex: u16;
}
- /** @name CumulusPalletXcmpQueueOutboundState (265) */
+ /** @name CumulusPalletXcmpQueueOutboundState (276) */
export interface CumulusPalletXcmpQueueOutboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name CumulusPalletXcmpQueueQueueConfigData (267) */
+ /** @name CumulusPalletXcmpQueueQueueConfigData (278) */
export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
readonly suspendThreshold: u32;
readonly dropThreshold: u32;
@@ -2312,7 +2344,7 @@
readonly xcmpMaxIndividualWeight: u64;
}
- /** @name CumulusPalletXcmpQueueError (269) */
+ /** @name CumulusPalletXcmpQueueError (280) */
export interface CumulusPalletXcmpQueueError extends Enum {
readonly isFailedToSend: boolean;
readonly isBadXcmOrigin: boolean;
@@ -2322,7 +2354,7 @@
readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
}
- /** @name PalletXcmError (270) */
+ /** @name PalletXcmError (281) */
export interface PalletXcmError extends Enum {
readonly isUnreachable: boolean;
readonly isSendFailure: boolean;
@@ -2340,29 +2372,29 @@
readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
}
- /** @name CumulusPalletXcmError (271) */
+ /** @name CumulusPalletXcmError (282) */
export type CumulusPalletXcmError = Null;
- /** @name CumulusPalletDmpQueueConfigData (272) */
+ /** @name CumulusPalletDmpQueueConfigData (283) */
export interface CumulusPalletDmpQueueConfigData extends Struct {
readonly maxIndividual: u64;
}
- /** @name CumulusPalletDmpQueuePageIndexData (273) */
+ /** @name CumulusPalletDmpQueuePageIndexData (284) */
export interface CumulusPalletDmpQueuePageIndexData extends Struct {
readonly beginUsed: u32;
readonly endUsed: u32;
readonly overweightCount: u64;
}
- /** @name CumulusPalletDmpQueueError (276) */
+ /** @name CumulusPalletDmpQueueError (287) */
export interface CumulusPalletDmpQueueError extends Enum {
readonly isUnknown: boolean;
readonly isOverLimit: boolean;
readonly type: 'Unknown' | 'OverLimit';
}
- /** @name PalletUniqueError (280) */
+ /** @name PalletUniqueError (291) */
export interface PalletUniqueError extends Enum {
readonly isCollectionDecimalPointLimitExceeded: boolean;
readonly isConfirmUnsetSponsorFail: boolean;
@@ -2370,7 +2402,7 @@
readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';
}
- /** @name UpDataStructsCollection (281) */
+ /** @name UpDataStructsCollection (292) */
export interface UpDataStructsCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -2388,7 +2420,7 @@
readonly metaUpdatePermission: UpDataStructsMetaUpdatePermission;
}
- /** @name UpDataStructsSponsorshipState (282) */
+ /** @name UpDataStructsSponsorshipState (293) */
export interface UpDataStructsSponsorshipState extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -2398,14 +2430,14 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name UpDataStructsCollectionStats (285) */
+ /** @name UpDataStructsCollectionStats (296) */
export interface UpDataStructsCollectionStats extends Struct {
readonly created: u32;
readonly destroyed: u32;
readonly alive: u32;
}
- /** @name PalletCommonError (286) */
+ /** @name PalletCommonError (297) */
export interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -2433,7 +2465,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 (288) */
+ /** @name PalletFungibleError (299) */
export interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -2441,34 +2473,34 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData';
}
- /** @name PalletRefungibleItemData (289) */
+ /** @name PalletRefungibleItemData (300) */
export interface PalletRefungibleItemData extends Struct {
readonly constData: Bytes;
readonly variableData: Bytes;
}
- /** @name PalletRefungibleError (293) */
+ /** @name PalletRefungibleError (304) */
export interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces';
}
- /** @name PalletNonfungibleItemData (294) */
+ /** @name PalletNonfungibleItemData (305) */
export interface PalletNonfungibleItemData extends Struct {
readonly constData: Bytes;
readonly variableData: Bytes;
readonly owner: PalletCommonAccountBasicCrossAccountIdRepr;
}
- /** @name PalletNonfungibleError (295) */
+ /** @name PalletNonfungibleError (306) */
export interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';
}
- /** @name PalletEvmError (297) */
+ /** @name PalletEvmError (308) */
export interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -2479,7 +2511,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
}
- /** @name FpRpcTransactionStatus (300) */
+ /** @name FpRpcTransactionStatus (311) */
export interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -2490,10 +2522,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (303) */
+ /** @name EthbloomBloom (314) */
export interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (305) */
+ /** @name EthereumReceiptReceiptV3 (316) */
export interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -2504,7 +2536,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (306) */
+ /** @name EthereumReceiptEip658ReceiptData (317) */
export interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -2512,14 +2544,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (307) */
+ /** @name EthereumBlock (318) */
export interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (308) */
+ /** @name EthereumHeader (319) */
export interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -2538,24 +2570,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (309) */
+ /** @name EthereumTypesHashH64 (320) */
export interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (314) */
+ /** @name PalletEthereumError (325) */
export interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (315) */
+ /** @name PalletEvmCoderSubstrateError (326) */
export interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (316) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (327) */
export interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -2563,20 +2595,20 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (318) */
+ /** @name PalletEvmContractHelpersError (329) */
export interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly type: 'NoPermission';
}
- /** @name PalletEvmMigrationError (319) */
+ /** @name PalletEvmMigrationError (330) */
export interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
}
- /** @name SpRuntimeMultiSignature (321) */
+ /** @name SpRuntimeMultiSignature (332) */
export interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -2587,31 +2619,31 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (322) */
+ /** @name SpCoreEd25519Signature (333) */
export interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (324) */
+ /** @name SpCoreSr25519Signature (335) */
export interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (325) */
+ /** @name SpCoreEcdsaSignature (336) */
export interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (328) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (339) */
export type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (329) */
+ /** @name FrameSystemExtensionsCheckGenesis (340) */
export type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (332) */
+ /** @name FrameSystemExtensionsCheckNonce (343) */
export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (333) */
+ /** @name FrameSystemExtensionsCheckWeight (344) */
export type FrameSystemExtensionsCheckWeight = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (334) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (345) */
export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name UniqueRuntimeRuntime (335) */
+ /** @name UniqueRuntimeRuntime (346) */
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
@@ -1316,6 +1316,11 @@
readonly owner: PalletCommonAccountBasicCrossAccountIdRepr;
readonly itemsData: Vec<UpDataStructsCreateItemData>;
} & Struct;
+ readonly isCreateMultipleItemsEx: boolean;
+ readonly asCreateMultipleItemsEx: {
+ readonly collectionId: u32;
+ readonly data: UpDataStructsCreateItemExData;
+ } & Struct;
readonly isSetTransfersEnabledFlag: boolean;
readonly asSetTransfersEnabledFlag: {
readonly collectionId: u32;
@@ -1392,7 +1397,7 @@
readonly collectionId: u32;
readonly newLimit: UpDataStructsCollectionLimits;
} & Struct;
- 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';
+ readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetVariableMetaData' | 'SetMetaUpdatePermissionFlag' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetVariableOnChainSchema' | 'SetCollectionLimits';
}
/** @name PalletUniqueError */
@@ -1806,12 +1811,32 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
+/** @name UpDataStructsCreateItemExData */
+export interface UpDataStructsCreateItemExData extends Enum {
+ readonly isNft: boolean;
+ readonly asNft: Vec<UpDataStructsCreateNftExData>;
+ readonly isFungible: boolean;
+ readonly asFungible: BTreeMap<PalletCommonAccountBasicCrossAccountIdRepr,u128>;
+ readonly isRefungibleMultipleItems: boolean;
+ readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExData>;
+ readonly isRefungibleMultipleOwners: boolean;
+ readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExData;
+ readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
+}
+
/** @name UpDataStructsCreateNftData */
export interface UpDataStructsCreateNftData extends Struct {
readonly constData: Bytes;
readonly variableData: Bytes;
}
+/** @name UpDataStructsCreateNftExData */
+export interface UpDataStructsCreateNftExData extends Struct {
+ readonly constData: Bytes;
+ readonly variableData: Bytes;
+ readonly owner: PalletCommonAccountBasicCrossAccountIdRepr;
+}
+
/** @name UpDataStructsCreateReFungibleData */
export interface UpDataStructsCreateReFungibleData extends Struct {
readonly constData: Bytes;
@@ -1819,6 +1844,13 @@
readonly pieces: u128;
}
+/** @name UpDataStructsCreateRefungibleExData */
+export interface UpDataStructsCreateRefungibleExData extends Struct {
+ readonly constData: Bytes;
+ readonly variableData: Bytes;
+ readonly users: BTreeMap<PalletCommonAccountBasicCrossAccountIdRepr, u128>;
+}
+
/** @name UpDataStructsMetaUpdatePermission */
export interface UpDataStructsMetaUpdatePermission extends Enum {
readonly isItemOwner: boolean;