difftreelog
fix(tests) rmrk definitions
in: master
12 files changed
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -429,6 +429,33 @@
**/
[key: string]: AugmentedError<ApiType>;
};
+ rmrkCore: {
+ CollectionFullOrLocked: AugmentedError<ApiType>;
+ CollectionNotEmpty: AugmentedError<ApiType>;
+ CollectionUnknown: AugmentedError<ApiType>;
+ CorruptedCollectionType: AugmentedError<ApiType>;
+ NftTypeEncodeError: AugmentedError<ApiType>;
+ NoAvailableCollectionId: AugmentedError<ApiType>;
+ NoAvailableNftId: AugmentedError<ApiType>;
+ NoPermission: AugmentedError<ApiType>;
+ RmrkPropertyKeyIsTooLong: AugmentedError<ApiType>;
+ RmrkPropertyValueIsTooLong: AugmentedError<ApiType>;
+ /**
+ * Generic error
+ **/
+ [key: string]: AugmentedError<ApiType>;
+ };
+ rmrkEquip: {
+ BaseDoesntExist: AugmentedError<ApiType>;
+ NeedsDefaultThemeFirst: AugmentedError<ApiType>;
+ NoAvailableBaseId: AugmentedError<ApiType>;
+ NoAvailablePartId: AugmentedError<ApiType>;
+ PermissionError: AugmentedError<ApiType>;
+ /**
+ * Generic error
+ **/
+ [key: string]: AugmentedError<ApiType>;
+ };
structure: {
/**
* While searched for owner, encountered depth limit
tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -396,6 +396,26 @@
**/
[key: string]: AugmentedEvent<ApiType>;
};
+ rmrkCore: {
+ CollectionCreated: AugmentedEvent<ApiType, [AccountId32, u32]>;
+ CollectionDestroyed: AugmentedEvent<ApiType, [AccountId32, u32]>;
+ CollectionLocked: AugmentedEvent<ApiType, [AccountId32, u32]>;
+ IssuerChanged: AugmentedEvent<ApiType, [AccountId32, AccountId32, u32]>;
+ NFTBurned: AugmentedEvent<ApiType, [AccountId32, u32]>;
+ NftMinted: AugmentedEvent<ApiType, [AccountId32, u32, u32]>;
+ PropertySet: AugmentedEvent<ApiType, [u32, Option<u32>, Bytes, Bytes]>;
+ /**
+ * Generic event
+ **/
+ [key: string]: AugmentedEvent<ApiType>;
+ };
+ rmrkEquip: {
+ BaseCreated: AugmentedEvent<ApiType, [AccountId32, u32]>;
+ /**
+ * Generic event
+ **/
+ [key: string]: AugmentedEvent<ApiType>;
+ };
structure: {
/**
* Executed call on behalf of token
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -415,6 +415,21 @@
**/
[key: string]: QueryableStorageEntry<ApiType>;
};
+ rmrkCore: {
+ collectionIndex: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
+ /**
+ * Generic query
+ **/
+ [key: string]: QueryableStorageEntry<ApiType>;
+ };
+ rmrkEquip: {
+ baseHasDefaultTheme: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<bool>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
+ inernalPartId: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
+ /**
+ * Generic query
+ **/
+ [key: string]: QueryableStorageEntry<ApiType>;
+ };
structure: {
/**
* Generic query
@@ -585,6 +600,7 @@
* Collection id (controlled?2), token id (controlled?2)
**/
reFungibleTransferBasket: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: AccountId32 | string | Uint8Array) => Observable<Option<u32>>, [u32, u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, u32, AccountId32]>;
+ tokenPropertyBasket: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
/**
* Variable metadata sponsoring
* Collection id (controlled?2), token id (controlled?2)
tests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-rpc.ts
+++ b/tests/src/interfaces/augment-api-rpc.ts
@@ -1,7 +1,7 @@
// Auto-generated via `yarn polkadot-types-from-chain`, do not edit
/* eslint-disable */
-import type { PalletEvmAccountBasicCrossAccountIdRepr, RmrkTypesBaseInfo, RmrkTypesCollectionInfo, RmrkTypesNftChild, RmrkTypesNftInfo, RmrkTypesPartType, RmrkTypesPropertyInfo, RmrkTypesResourceInfo, RmrkTypesTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionStats, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRpcCollection, UpDataStructsTokenData } from './unique';
+import type { PalletEvmAccountBasicCrossAccountIdRepr, PhantomTypeUpDataStructsBaseInfo, PhantomTypeUpDataStructsCollectionInfo, PhantomTypeUpDataStructsNftChild, PhantomTypeUpDataStructsNftInfo, PhantomTypeUpDataStructsPartType, PhantomTypeUpDataStructsPropertyInfo, PhantomTypeUpDataStructsResourceInfo, PhantomTypeUpDataStructsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionStats, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRpcCollection, UpDataStructsTokenData } from './unique';
import type { AugmentedRpc } from '@polkadot/rpc-core/types';
import type { Metadata, StorageKey } from '@polkadot/types';
import type { Bytes, HashMap, Json, Null, Option, Text, U256, U64, Vec, bool, u128, u32, u64 } from '@polkadot/types-codec';
@@ -401,19 +401,19 @@
/**
* Get base info
**/
- base: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<RmrkTypesBaseInfo>>>;
+ base: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<PhantomTypeUpDataStructsBaseInfo>>>;
/**
* Get all Base's parts
**/
- baseParts: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTypesPartType>>>;
+ baseParts: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<PhantomTypeUpDataStructsPartType>>>;
/**
* Get collection by id
**/
- collectionById: AugmentedRpc<(id: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<RmrkTypesCollectionInfo>>>;
+ collectionById: AugmentedRpc<(id: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<PhantomTypeUpDataStructsCollectionInfo>>>;
/**
* Get collection properties
**/
- collectionProperties: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTypesPropertyInfo>>>;
+ collectionProperties: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<PhantomTypeUpDataStructsPropertyInfo>>>;
/**
* Get the latest created collection id
**/
@@ -421,15 +421,15 @@
/**
* Get NFT by collection id and NFT id
**/
- nftById: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<RmrkTypesNftInfo>>>;
+ nftById: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<PhantomTypeUpDataStructsNftInfo>>>;
/**
* Get NFT children
**/
- nftChildren: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTypesNftChild>>>;
+ nftChildren: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<PhantomTypeUpDataStructsNftChild>>>;
/**
* Get NFT properties
**/
- nftProperties: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTypesPropertyInfo>>>;
+ nftProperties: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<PhantomTypeUpDataStructsPropertyInfo>>>;
/**
* Get NFT resource priorities
**/
@@ -437,7 +437,7 @@
/**
* Get NFT resources
**/
- nftResources: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<RmrkTypesResourceInfo>>>;
+ nftResources: AugmentedRpc<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Vec<PhantomTypeUpDataStructsResourceInfo>>>;
/**
* Get Base's theme names
**/
@@ -445,7 +445,7 @@
/**
* Get Theme's keys values
**/
- themes: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, themeName: Text | string, keys: Option<Vec<Text>> | null | object | string | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<RmrkTypesTheme>>>;
+ themes: AugmentedRpc<(baseId: u32 | AnyNumber | Uint8Array, themeName: Text | string, keys: Option<Vec<Text>> | null | object | string | Uint8Array, at?: Hash | string | Uint8Array) => Observable<Option<PhantomTypeUpDataStructsTheme>>>;
};
rpc: {
/**
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -4,8 +4,8 @@
import type { ApiTypes } from '@polkadot/api-base/types';
import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64 } from '@polkadot/types-codec';
import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
-import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, UpDataStructsAccessMode, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsSchemaVersion, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, UpDataStructsAccessMode, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRmrkPartType, UpDataStructsRmrkTheme, UpDataStructsSchemaVersion, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/api-base/types/submittable' {
export interface AugmentedSubmittables<ApiType extends ApiTypes> {
@@ -346,6 +346,27 @@
**/
[key: string]: SubmittableExtrinsicFunction<ApiType>;
};
+ rmrkCore: {
+ burnNft: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, nftId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
+ changeCollectionIssuer: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array, newIssuer: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, MultiAddress]>;
+ createCollection: AugmentedSubmittable<(metadata: Bytes | string | Uint8Array, max: Option<u32> | null | object | string | Uint8Array, symbol: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes, Option<u32>, Bytes]>;
+ destroyCollection: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
+ lockCollection: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
+ mintNft: AugmentedSubmittable<(owner: AccountId32 | string | Uint8Array, collectionId: u32 | AnyNumber | Uint8Array, recipient: Option<AccountId32> | null | object | string | Uint8Array, royaltyAmount: Option<Permill> | null | object | string | Uint8Array, metadata: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u32, Option<AccountId32>, Option<Permill>, Bytes]>;
+ setProperty: AugmentedSubmittable<(rmrkCollectionId: Compact<u32> | AnyNumber | Uint8Array, maybeNftId: Option<u32> | null | object | string | Uint8Array, key: Bytes | string | Uint8Array, value: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, Option<u32>, Bytes, Bytes]>;
+ /**
+ * Generic tx
+ **/
+ [key: string]: SubmittableExtrinsicFunction<ApiType>;
+ };
+ rmrkEquip: {
+ createBase: AugmentedSubmittable<(baseType: Bytes | string | Uint8Array, symbol: Bytes | string | Uint8Array, parts: Vec<UpDataStructsRmrkPartType> | (UpDataStructsRmrkPartType | { FixedPart: any } | { SlotPart: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Bytes, Bytes, Vec<UpDataStructsRmrkPartType>]>;
+ themeAdd: AugmentedSubmittable<(baseId: u32 | AnyNumber | Uint8Array, theme: UpDataStructsRmrkTheme | { name?: any; properties?: any; inherit?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, UpDataStructsRmrkTheme]>;
+ /**
+ * Generic tx
+ **/
+ [key: string]: SubmittableExtrinsicFunction<ApiType>;
+ };
structure: {
/**
* Generic tx
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -1,7 +1,7 @@
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsBaseInfo, PhantomTypeUpDataStructsCollectionInfo, PhantomTypeUpDataStructsNftChild, PhantomTypeUpDataStructsNftInfo, PhantomTypeUpDataStructsPartType, PhantomTypeUpDataStructsPropertyInfo, PhantomTypeUpDataStructsResourceInfo, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTheme, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTypesAccountIdOrCollectionNftTuple, RmrkTypesBaseInfo, RmrkTypesCollectionInfo, RmrkTypesEquippableList, RmrkTypesFixedPart, RmrkTypesNftChild, RmrkTypesNftInfo, RmrkTypesPartType, RmrkTypesPropertyInfo, RmrkTypesResourceInfo, RmrkTypesRoyaltyInfo, RmrkTypesSlotPart, RmrkTypesTheme, RmrkTypesThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './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, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsBaseInfo, PhantomTypeUpDataStructsCollectionInfo, PhantomTypeUpDataStructsNftChild, PhantomTypeUpDataStructsNftInfo, PhantomTypeUpDataStructsPartType, PhantomTypeUpDataStructsPropertyInfo, PhantomTypeUpDataStructsResourceInfo, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTheme, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRmrkAccountIdOrCollectionNftTuple, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkBasicResource, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkComposableResource, UpDataStructsRmrkEquippableList, UpDataStructsRmrkFixedPart, UpDataStructsRmrkNftChild, UpDataStructsRmrkNftInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkResourceTypes, UpDataStructsRmrkRoyaltyInfo, UpDataStructsRmrkSlotPart, UpDataStructsRmrkSlotResource, UpDataStructsRmrkTheme, UpDataStructsRmrkThemeProperty, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './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';
@@ -786,6 +786,12 @@
PalletNonfungibleItemData: PalletNonfungibleItemData;
PalletRefungibleError: PalletRefungibleError;
PalletRefungibleItemData: PalletRefungibleItemData;
+ PalletRmrkCoreCall: PalletRmrkCoreCall;
+ PalletRmrkCoreError: PalletRmrkCoreError;
+ PalletRmrkCoreEvent: PalletRmrkCoreEvent;
+ PalletRmrkEquipCall: PalletRmrkEquipCall;
+ PalletRmrkEquipError: PalletRmrkEquipError;
+ PalletRmrkEquipEvent: PalletRmrkEquipEvent;
PalletsOrigin: PalletsOrigin;
PalletStorageMetadataLatest: PalletStorageMetadataLatest;
PalletStorageMetadataV14: PalletStorageMetadataV14;
@@ -950,20 +956,6 @@
Retriable: Retriable;
RewardDestination: RewardDestination;
RewardPoint: RewardPoint;
- RmrkTypesAccountIdOrCollectionNftTuple: RmrkTypesAccountIdOrCollectionNftTuple;
- RmrkTypesBaseInfo: RmrkTypesBaseInfo;
- RmrkTypesCollectionInfo: RmrkTypesCollectionInfo;
- RmrkTypesEquippableList: RmrkTypesEquippableList;
- RmrkTypesFixedPart: RmrkTypesFixedPart;
- RmrkTypesNftChild: RmrkTypesNftChild;
- RmrkTypesNftInfo: RmrkTypesNftInfo;
- RmrkTypesPartType: RmrkTypesPartType;
- RmrkTypesPropertyInfo: RmrkTypesPropertyInfo;
- RmrkTypesResourceInfo: RmrkTypesResourceInfo;
- RmrkTypesRoyaltyInfo: RmrkTypesRoyaltyInfo;
- RmrkTypesSlotPart: RmrkTypesSlotPart;
- RmrkTypesTheme: RmrkTypesTheme;
- RmrkTypesThemeProperty: RmrkTypesThemeProperty;
RoundSnapshot: RoundSnapshot;
RoundState: RoundState;
RpcMethods: RpcMethods;
@@ -1210,6 +1202,24 @@
UpDataStructsProperty: UpDataStructsProperty;
UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;
UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;
+ UpDataStructsRmrkAccountIdOrCollectionNftTuple: UpDataStructsRmrkAccountIdOrCollectionNftTuple;
+ UpDataStructsRmrkBaseInfo: UpDataStructsRmrkBaseInfo;
+ UpDataStructsRmrkBasicResource: UpDataStructsRmrkBasicResource;
+ UpDataStructsRmrkCollectionInfo: UpDataStructsRmrkCollectionInfo;
+ UpDataStructsRmrkComposableResource: UpDataStructsRmrkComposableResource;
+ UpDataStructsRmrkEquippableList: UpDataStructsRmrkEquippableList;
+ UpDataStructsRmrkFixedPart: UpDataStructsRmrkFixedPart;
+ UpDataStructsRmrkNftChild: UpDataStructsRmrkNftChild;
+ UpDataStructsRmrkNftInfo: UpDataStructsRmrkNftInfo;
+ UpDataStructsRmrkPartType: UpDataStructsRmrkPartType;
+ UpDataStructsRmrkPropertyInfo: UpDataStructsRmrkPropertyInfo;
+ UpDataStructsRmrkResourceInfo: UpDataStructsRmrkResourceInfo;
+ UpDataStructsRmrkResourceTypes: UpDataStructsRmrkResourceTypes;
+ UpDataStructsRmrkRoyaltyInfo: UpDataStructsRmrkRoyaltyInfo;
+ UpDataStructsRmrkSlotPart: UpDataStructsRmrkSlotPart;
+ UpDataStructsRmrkSlotResource: UpDataStructsRmrkSlotResource;
+ UpDataStructsRmrkTheme: UpDataStructsRmrkTheme;
+ UpDataStructsRmrkThemeProperty: UpDataStructsRmrkThemeProperty;
UpDataStructsRpcCollection: UpDataStructsRpcCollection;
UpDataStructsSchemaVersion: UpDataStructsSchemaVersion;
UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -1547,8 +1547,114 @@
**/
PalletStructureCall: 'Null',
/**
- * Lookup207: pallet_evm::pallet::Call<T>
+ * Lookup207: pallet_rmrk_core::pallet::Call<T>
+ **/
+ PalletRmrkCoreCall: {
+ _enum: {
+ create_collection: {
+ metadata: 'Bytes',
+ max: 'Option<u32>',
+ symbol: 'Bytes',
+ },
+ destroy_collection: {
+ collectionId: 'u32',
+ },
+ change_collection_issuer: {
+ collectionId: 'u32',
+ newIssuer: 'MultiAddress',
+ },
+ lock_collection: {
+ collectionId: 'u32',
+ },
+ mint_nft: {
+ owner: 'AccountId32',
+ collectionId: 'u32',
+ recipient: 'Option<AccountId32>',
+ royaltyAmount: 'Option<Permill>',
+ metadata: 'Bytes',
+ },
+ burn_nft: {
+ collectionId: 'u32',
+ nftId: 'u32',
+ },
+ set_property: {
+ rmrkCollectionId: 'Compact<u32>',
+ maybeNftId: 'Option<u32>',
+ key: 'Bytes',
+ value: 'Bytes'
+ }
+ }
+ },
+ /**
+ * Lookup213: pallet_rmrk_equip::pallet::Call<T>
+ **/
+ PalletRmrkEquipCall: {
+ _enum: {
+ create_base: {
+ baseType: 'Bytes',
+ symbol: 'Bytes',
+ parts: 'Vec<UpDataStructsRmrkPartType>',
+ },
+ theme_add: {
+ baseId: 'u32',
+ theme: 'UpDataStructsRmrkTheme'
+ }
+ }
+ },
+ /**
+ * Lookup215: up_data_structs::rmrk::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ **/
+ UpDataStructsRmrkPartType: {
+ _enum: {
+ FixedPart: 'UpDataStructsRmrkFixedPart',
+ SlotPart: 'UpDataStructsRmrkSlotPart'
+ }
+ },
+ /**
+ * Lookup217: up_data_structs::rmrk::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ **/
+ UpDataStructsRmrkFixedPart: {
+ id: 'u32',
+ z: 'u32',
+ src: 'Bytes'
+ },
+ /**
+ * Lookup218: up_data_structs::rmrk::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ **/
+ UpDataStructsRmrkSlotPart: {
+ id: 'u32',
+ equippable: 'UpDataStructsRmrkEquippableList',
+ src: 'Bytes',
+ z: 'u32'
+ },
+ /**
+ * Lookup219: up_data_structs::rmrk::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
+ UpDataStructsRmrkEquippableList: {
+ _enum: {
+ All: 'Null',
+ Empty: 'Null',
+ Custom: 'Vec<u32>'
+ }
+ },
+ /**
+ * Lookup221: up_data_structs::rmrk::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>
+ **/
+ UpDataStructsRmrkTheme: {
+ name: 'Bytes',
+ properties: 'Vec<UpDataStructsRmrkThemeProperty>',
+ inherit: 'bool'
+ },
+ /**
+ * Lookup223: up_data_structs::rmrk::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ **/
+ UpDataStructsRmrkThemeProperty: {
+ key: 'Bytes',
+ value: 'Bytes'
+ },
+ /**
+ * Lookup224: pallet_evm::pallet::Call<T>
+ **/
PalletEvmCall: {
_enum: {
withdraw: {
@@ -1590,7 +1696,7 @@
}
},
/**
- * Lookup213: pallet_ethereum::pallet::Call<T>
+ * Lookup230: pallet_ethereum::pallet::Call<T>
**/
PalletEthereumCall: {
_enum: {
@@ -1600,7 +1706,7 @@
}
},
/**
- * Lookup214: ethereum::transaction::TransactionV2
+ * Lookup231: ethereum::transaction::TransactionV2
**/
EthereumTransactionTransactionV2: {
_enum: {
@@ -1610,7 +1716,7 @@
}
},
/**
- * Lookup215: ethereum::transaction::LegacyTransaction
+ * Lookup232: ethereum::transaction::LegacyTransaction
**/
EthereumTransactionLegacyTransaction: {
nonce: 'U256',
@@ -1622,7 +1728,7 @@
signature: 'EthereumTransactionTransactionSignature'
},
/**
- * Lookup216: ethereum::transaction::TransactionAction
+ * Lookup233: ethereum::transaction::TransactionAction
**/
EthereumTransactionTransactionAction: {
_enum: {
@@ -1631,7 +1737,7 @@
}
},
/**
- * Lookup217: ethereum::transaction::TransactionSignature
+ * Lookup234: ethereum::transaction::TransactionSignature
**/
EthereumTransactionTransactionSignature: {
v: 'u64',
@@ -1639,7 +1745,7 @@
s: 'H256'
},
/**
- * Lookup219: ethereum::transaction::EIP2930Transaction
+ * Lookup236: ethereum::transaction::EIP2930Transaction
**/
EthereumTransactionEip2930Transaction: {
chainId: 'u64',
@@ -1655,14 +1761,14 @@
s: 'H256'
},
/**
- * Lookup221: ethereum::transaction::AccessListItem
+ * Lookup238: ethereum::transaction::AccessListItem
**/
EthereumTransactionAccessListItem: {
address: 'H160',
storageKeys: 'Vec<H256>'
},
/**
- * Lookup222: ethereum::transaction::EIP1559Transaction
+ * Lookup239: ethereum::transaction::EIP1559Transaction
**/
EthereumTransactionEip1559Transaction: {
chainId: 'u64',
@@ -1679,7 +1785,7 @@
s: 'H256'
},
/**
- * Lookup223: pallet_evm_migration::pallet::Call<T>
+ * Lookup240: pallet_evm_migration::pallet::Call<T>
**/
PalletEvmMigrationCall: {
_enum: {
@@ -1697,7 +1803,7 @@
}
},
/**
- * Lookup226: pallet_sudo::pallet::Event<T>
+ * Lookup243: pallet_sudo::pallet::Event<T>
**/
PalletSudoEvent: {
_enum: {
@@ -1713,7 +1819,7 @@
}
},
/**
- * Lookup228: sp_runtime::DispatchError
+ * Lookup245: sp_runtime::DispatchError
**/
SpRuntimeDispatchError: {
_enum: {
@@ -1730,38 +1836,38 @@
}
},
/**
- * Lookup229: sp_runtime::ModuleError
+ * Lookup246: sp_runtime::ModuleError
**/
SpRuntimeModuleError: {
index: 'u8',
error: '[u8;4]'
},
/**
- * Lookup230: sp_runtime::TokenError
+ * Lookup247: sp_runtime::TokenError
**/
SpRuntimeTokenError: {
_enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
},
/**
- * Lookup231: sp_runtime::ArithmeticError
+ * Lookup248: sp_runtime::ArithmeticError
**/
SpRuntimeArithmeticError: {
_enum: ['Underflow', 'Overflow', 'DivisionByZero']
},
/**
- * Lookup232: sp_runtime::TransactionalError
+ * Lookup249: sp_runtime::TransactionalError
**/
SpRuntimeTransactionalError: {
_enum: ['LimitReached', 'NoLayer']
},
/**
- * Lookup233: pallet_sudo::pallet::Error<T>
+ * Lookup250: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup234: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
+ * Lookup251: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
**/
FrameSystemAccountInfo: {
nonce: 'u32',
@@ -1771,7 +1877,7 @@
data: 'PalletBalancesAccountData'
},
/**
- * Lookup235: frame_support::weights::PerDispatchClass<T>
+ * Lookup252: frame_support::weights::PerDispatchClass<T>
**/
FrameSupportWeightsPerDispatchClassU64: {
normal: 'u64',
@@ -1779,13 +1885,13 @@
mandatory: 'u64'
},
/**
- * Lookup236: sp_runtime::generic::digest::Digest
+ * Lookup253: sp_runtime::generic::digest::Digest
**/
SpRuntimeDigest: {
logs: 'Vec<SpRuntimeDigestDigestItem>'
},
/**
- * Lookup238: sp_runtime::generic::digest::DigestItem
+ * Lookup255: sp_runtime::generic::digest::DigestItem
**/
SpRuntimeDigestDigestItem: {
_enum: {
@@ -1801,7 +1907,7 @@
}
},
/**
- * Lookup240: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
+ * Lookup257: frame_system::EventRecord<opal_runtime::Event, primitive_types::H256>
**/
FrameSystemEventRecord: {
phase: 'FrameSystemPhase',
@@ -1809,7 +1915,7 @@
topics: 'Vec<H256>'
},
/**
- * Lookup242: frame_system::pallet::Event<T>
+ * Lookup259: frame_system::pallet::Event<T>
**/
FrameSystemEvent: {
_enum: {
@@ -1837,7 +1943,7 @@
}
},
/**
- * Lookup243: frame_support::weights::DispatchInfo
+ * Lookup260: frame_support::weights::DispatchInfo
**/
FrameSupportWeightsDispatchInfo: {
weight: 'u64',
@@ -1845,19 +1951,19 @@
paysFee: 'FrameSupportWeightsPays'
},
/**
- * Lookup244: frame_support::weights::DispatchClass
+ * Lookup261: frame_support::weights::DispatchClass
**/
FrameSupportWeightsDispatchClass: {
_enum: ['Normal', 'Operational', 'Mandatory']
},
/**
- * Lookup245: frame_support::weights::Pays
+ * Lookup262: frame_support::weights::Pays
**/
FrameSupportWeightsPays: {
_enum: ['Yes', 'No']
},
/**
- * Lookup246: orml_vesting::module::Event<T>
+ * Lookup263: orml_vesting::module::Event<T>
**/
OrmlVestingModuleEvent: {
_enum: {
@@ -1876,7 +1982,7 @@
}
},
/**
- * Lookup247: cumulus_pallet_xcmp_queue::pallet::Event<T>
+ * Lookup264: cumulus_pallet_xcmp_queue::pallet::Event<T>
**/
CumulusPalletXcmpQueueEvent: {
_enum: {
@@ -1891,7 +1997,7 @@
}
},
/**
- * Lookup248: pallet_xcm::pallet::Event<T>
+ * Lookup265: pallet_xcm::pallet::Event<T>
**/
PalletXcmEvent: {
_enum: {
@@ -1914,7 +2020,7 @@
}
},
/**
- * Lookup249: xcm::v2::traits::Outcome
+ * Lookup266: xcm::v2::traits::Outcome
**/
XcmV2TraitsOutcome: {
_enum: {
@@ -1924,7 +2030,7 @@
}
},
/**
- * Lookup251: cumulus_pallet_xcm::pallet::Event<T>
+ * Lookup268: cumulus_pallet_xcm::pallet::Event<T>
**/
CumulusPalletXcmEvent: {
_enum: {
@@ -1934,7 +2040,7 @@
}
},
/**
- * Lookup252: cumulus_pallet_dmp_queue::pallet::Event<T>
+ * Lookup269: cumulus_pallet_dmp_queue::pallet::Event<T>
**/
CumulusPalletDmpQueueEvent: {
_enum: {
@@ -1947,7 +2053,7 @@
}
},
/**
- * Lookup253: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup270: pallet_unique::RawEvent<sp_core::crypto::AccountId32, pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletUniqueRawEvent: {
_enum: {
@@ -1968,7 +2074,7 @@
}
},
/**
- * Lookup254: pallet_common::pallet::Event<T>
+ * Lookup271: pallet_common::pallet::Event<T>
**/
PalletCommonEvent: {
_enum: {
@@ -1986,7 +2092,7 @@
}
},
/**
- * Lookup255: pallet_structure::pallet::Event<T>
+ * Lookup272: pallet_structure::pallet::Event<T>
**/
PalletStructureEvent: {
_enum: {
@@ -1994,8 +2100,58 @@
}
},
/**
- * Lookup256: pallet_evm::pallet::Event<T>
+ * Lookup273: pallet_rmrk_core::pallet::Event<T>
**/
+ PalletRmrkCoreEvent: {
+ _enum: {
+ CollectionCreated: {
+ issuer: 'AccountId32',
+ collectionId: 'u32',
+ },
+ CollectionDestroyed: {
+ issuer: 'AccountId32',
+ collectionId: 'u32',
+ },
+ IssuerChanged: {
+ oldIssuer: 'AccountId32',
+ newIssuer: 'AccountId32',
+ collectionId: 'u32',
+ },
+ CollectionLocked: {
+ issuer: 'AccountId32',
+ collectionId: 'u32',
+ },
+ NftMinted: {
+ owner: 'AccountId32',
+ collectionId: 'u32',
+ nftId: 'u32',
+ },
+ NFTBurned: {
+ owner: 'AccountId32',
+ nftId: 'u32',
+ },
+ PropertySet: {
+ collectionId: 'u32',
+ maybeNftId: 'Option<u32>',
+ key: 'Bytes',
+ value: 'Bytes'
+ }
+ }
+ },
+ /**
+ * Lookup274: pallet_rmrk_equip::pallet::Event<T>
+ **/
+ PalletRmrkEquipEvent: {
+ _enum: {
+ BaseCreated: {
+ issuer: 'AccountId32',
+ baseId: 'u32'
+ }
+ }
+ },
+ /**
+ * Lookup275: pallet_evm::pallet::Event<T>
+ **/
PalletEvmEvent: {
_enum: {
Log: 'EthereumLog',
@@ -2008,7 +2164,7 @@
}
},
/**
- * Lookup257: ethereum::log::Log
+ * Lookup276: ethereum::log::Log
**/
EthereumLog: {
address: 'H160',
@@ -2016,7 +2172,7 @@
data: 'Bytes'
},
/**
- * Lookup258: pallet_ethereum::pallet::Event
+ * Lookup277: pallet_ethereum::pallet::Event
**/
PalletEthereumEvent: {
_enum: {
@@ -2024,7 +2180,7 @@
}
},
/**
- * Lookup259: evm_core::error::ExitReason
+ * Lookup278: evm_core::error::ExitReason
**/
EvmCoreErrorExitReason: {
_enum: {
@@ -2035,13 +2191,13 @@
}
},
/**
- * Lookup260: evm_core::error::ExitSucceed
+ * Lookup279: evm_core::error::ExitSucceed
**/
EvmCoreErrorExitSucceed: {
_enum: ['Stopped', 'Returned', 'Suicided']
},
/**
- * Lookup261: evm_core::error::ExitError
+ * Lookup280: evm_core::error::ExitError
**/
EvmCoreErrorExitError: {
_enum: {
@@ -2063,13 +2219,13 @@
}
},
/**
- * Lookup264: evm_core::error::ExitRevert
+ * Lookup283: evm_core::error::ExitRevert
**/
EvmCoreErrorExitRevert: {
_enum: ['Reverted']
},
/**
- * Lookup265: evm_core::error::ExitFatal
+ * Lookup284: evm_core::error::ExitFatal
**/
EvmCoreErrorExitFatal: {
_enum: {
@@ -2080,7 +2236,7 @@
}
},
/**
- * Lookup266: frame_system::Phase
+ * Lookup285: frame_system::Phase
**/
FrameSystemPhase: {
_enum: {
@@ -2090,14 +2246,14 @@
}
},
/**
- * Lookup268: frame_system::LastRuntimeUpgradeInfo
+ * Lookup287: frame_system::LastRuntimeUpgradeInfo
**/
FrameSystemLastRuntimeUpgradeInfo: {
specVersion: 'Compact<u32>',
specName: 'Text'
},
/**
- * Lookup269: frame_system::limits::BlockWeights
+ * Lookup288: frame_system::limits::BlockWeights
**/
FrameSystemLimitsBlockWeights: {
baseBlock: 'u64',
@@ -2105,7 +2261,7 @@
perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
},
/**
- * Lookup270: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
+ * Lookup289: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
**/
FrameSupportWeightsPerDispatchClassWeightsPerClass: {
normal: 'FrameSystemLimitsWeightsPerClass',
@@ -2113,7 +2269,7 @@
mandatory: 'FrameSystemLimitsWeightsPerClass'
},
/**
- * Lookup271: frame_system::limits::WeightsPerClass
+ * Lookup290: frame_system::limits::WeightsPerClass
**/
FrameSystemLimitsWeightsPerClass: {
baseExtrinsic: 'u64',
@@ -2122,13 +2278,13 @@
reserved: 'Option<u64>'
},
/**
- * Lookup273: frame_system::limits::BlockLength
+ * Lookup292: frame_system::limits::BlockLength
**/
FrameSystemLimitsBlockLength: {
max: 'FrameSupportWeightsPerDispatchClassU32'
},
/**
- * Lookup274: frame_support::weights::PerDispatchClass<T>
+ * Lookup293: frame_support::weights::PerDispatchClass<T>
**/
FrameSupportWeightsPerDispatchClassU32: {
normal: 'u32',
@@ -2136,14 +2292,14 @@
mandatory: 'u32'
},
/**
- * Lookup275: frame_support::weights::RuntimeDbWeight
+ * Lookup294: frame_support::weights::RuntimeDbWeight
**/
FrameSupportWeightsRuntimeDbWeight: {
read: 'u64',
write: 'u64'
},
/**
- * Lookup276: sp_version::RuntimeVersion
+ * Lookup295: sp_version::RuntimeVersion
**/
SpVersionRuntimeVersion: {
specName: 'Text',
@@ -2156,19 +2312,19 @@
stateVersion: 'u8'
},
/**
- * Lookup280: frame_system::pallet::Error<T>
+ * Lookup299: frame_system::pallet::Error<T>
**/
FrameSystemError: {
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
},
/**
- * Lookup282: orml_vesting::module::Error<T>
+ * Lookup301: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup284: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup303: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -2176,19 +2332,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup285: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup304: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup288: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup307: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup291: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup310: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -2198,13 +2354,13 @@
lastIndex: 'u16'
},
/**
- * Lookup292: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup311: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup294: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup313: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
@@ -2215,29 +2371,29 @@
xcmpMaxIndividualWeight: 'u64'
},
/**
- * Lookup296: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup315: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup297: pallet_xcm::pallet::Error<T>
+ * Lookup316: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
},
/**
- * Lookup298: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup317: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup299: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup318: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
maxIndividual: 'u64'
},
/**
- * Lookup300: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup319: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -2245,19 +2401,19 @@
overweightCount: 'u64'
},
/**
- * Lookup303: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup322: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup307: pallet_unique::Error<T>
+ * Lookup326: pallet_unique::Error<T>
**/
PalletUniqueError: {
_enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument']
},
/**
- * Lookup308: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ * Lookup327: up_data_structs::Collection<sp_core::crypto::AccountId32>
**/
UpDataStructsCollection: {
owner: 'AccountId32',
@@ -2272,7 +2428,7 @@
limits: 'UpDataStructsCollectionLimits'
},
/**
- * Lookup309: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup328: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipState: {
_enum: {
@@ -2282,7 +2438,7 @@
}
},
/**
- * Lookup310: up_data_structs::Properties
+ * Lookup329: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -2290,21 +2446,21 @@
spaceLimit: 'u32'
},
/**
- * Lookup311: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup330: up_data_structs::PropertiesMap<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
/**
- * Lookup316: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ * Lookup335: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
**/
UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
/**
- * Lookup322: up_data_structs::CollectionField
+ * Lookup341: up_data_structs::CollectionField
**/
UpDataStructsCollectionField: {
_enum: ['ConstOnChainSchema', 'OffchainSchema']
},
/**
- * Lookup325: up_data_structs::CollectionStats
+ * Lookup344: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -2312,11 +2468,11 @@
alive: 'u32'
},
/**
- * Lookup326: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>
+ * Lookup345: PhantomType::up_data_structs<up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>>
**/
- PhantomTypeUpDataStructsTokenData: '[Lookup327;0]',
+ PhantomTypeUpDataStructsTokenData: '[Lookup346;0]',
/**
- * Lookup327: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup346: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
constData: 'Bytes',
@@ -2324,11 +2480,11 @@
owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>'
},
/**
- * Lookup330: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>
+ * Lookup349: PhantomType::up_data_structs<up_data_structs::RpcCollection<sp_core::crypto::AccountId32>>
**/
- PhantomTypeUpDataStructsRpcCollection: '[Lookup331;0]',
+ PhantomTypeUpDataStructsRpcCollection: '[Lookup350;0]',
/**
- * Lookup331: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup350: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -2347,13 +2503,13 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup333: PhantomType::up_data_structs<rmrk_types::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>>
+ * Lookup352: PhantomType::up_data_structs<up_data_structs::rmrk::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>>
**/
- PhantomTypeUpDataStructsCollectionInfo: '[Lookup334;0]',
+ PhantomTypeUpDataStructsCollectionInfo: '[Lookup353;0]',
/**
- * Lookup334: rmrk_types::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
+ * Lookup353: up_data_structs::rmrk::CollectionInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
**/
- RmrkTypesCollectionInfo: {
+ UpDataStructsRmrkCollectionInfo: {
issuer: 'AccountId32',
metadata: 'Bytes',
max: 'Option<u32>',
@@ -2361,198 +2517,194 @@
nftsCount: 'u32'
},
/**
- * Lookup338: PhantomType::up_data_structs<rmrk_types::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
+ * Lookup355: PhantomType::up_data_structs<up_data_structs::rmrk::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
**/
- PhantomTypeUpDataStructsNftInfo: '[Lookup339;0]',
+ PhantomTypeUpDataStructsNftInfo: '[Lookup356;0]',
/**
- * Lookup339: rmrk_types::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup356: up_data_structs::rmrk::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
- RmrkTypesNftInfo: {
- owner: 'RmrkTypesAccountIdOrCollectionNftTuple',
- royalty: 'Option<RmrkTypesRoyaltyInfo>',
+ UpDataStructsRmrkNftInfo: {
+ owner: 'UpDataStructsRmrkAccountIdOrCollectionNftTuple',
+ royalty: 'Option<UpDataStructsRmrkRoyaltyInfo>',
metadata: 'Bytes',
equipped: 'bool',
pending: 'bool'
},
/**
- * Lookup340: rmrk_types::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
+ * Lookup357: up_data_structs::rmrk::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
**/
- RmrkTypesAccountIdOrCollectionNftTuple: {
+ UpDataStructsRmrkAccountIdOrCollectionNftTuple: {
_enum: {
AccountId: 'AccountId32',
CollectionAndNftTuple: '(u32,u32)'
}
},
/**
- * Lookup342: rmrk_types::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+ * Lookup359: up_data_structs::rmrk::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
**/
- RmrkTypesRoyaltyInfo: {
+ UpDataStructsRmrkRoyaltyInfo: {
recipient: 'AccountId32',
amount: 'Permill'
},
/**
- * Lookup344: PhantomType::up_data_structs<rmrk_types::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
+ * Lookup361: PhantomType::up_data_structs<up_data_structs::rmrk::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
**/
- PhantomTypeUpDataStructsResourceInfo: '[Lookup345;0]',
+ PhantomTypeUpDataStructsResourceInfo: '[Lookup362;0]',
/**
- * Lookup345: rmrk_types::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup362: up_data_structs::rmrk::ResourceInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
- RmrkTypesResourceInfo: {
+ UpDataStructsRmrkResourceInfo: {
id: 'Bytes',
+ resource: 'UpDataStructsRmrkResourceTypes',
pending: 'bool',
- pendingRemoval: 'bool',
- parts: 'Option<Vec<u32>>',
- base: 'Option<u32>',
- src: 'Option<Bytes>',
- metadata: 'Option<Bytes>',
- slot: 'Option<u32>',
- license: 'Option<Bytes>',
- thumb: 'Option<Bytes>'
+ pendingRemoval: 'bool'
},
/**
- * Lookup351: PhantomType::up_data_structs<rmrk_types::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
- **/
- PhantomTypeUpDataStructsPropertyInfo: '[Lookup352;0]',
- /**
- * Lookup352: rmrk_types::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup365: up_data_structs::rmrk::ResourceTypes<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
- RmrkTypesPropertyInfo: {
- key: 'Bytes',
- value: 'Bytes'
+ UpDataStructsRmrkResourceTypes: {
+ _enum: {
+ Basic: 'UpDataStructsRmrkBasicResource',
+ Composable: 'UpDataStructsRmrkComposableResource',
+ Slot: 'UpDataStructsRmrkSlotResource'
+ }
},
/**
- * Lookup356: PhantomType::up_data_structs<rmrk_types::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
- **/
- PhantomTypeUpDataStructsBaseInfo: '[Lookup357;0]',
- /**
- * Lookup357: rmrk_types::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup366: up_data_structs::rmrk::BasicResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
- RmrkTypesBaseInfo: {
- issuer: 'AccountId32',
- baseType: 'Bytes',
- symbol: 'Bytes'
+ UpDataStructsRmrkBasicResource: {
+ src: 'Option<Bytes>',
+ metadata: 'Option<Bytes>',
+ license: 'Option<Bytes>',
+ thumb: 'Option<Bytes>'
},
/**
- * Lookup359: PhantomType::up_data_structs<rmrk_types::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
+ * Lookup368: up_data_structs::rmrk::ComposableResource<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
- PhantomTypeUpDataStructsPartType: '[Lookup360;0]',
- /**
- * Lookup360: rmrk_types::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
- **/
- RmrkTypesPartType: {
- _enum: {
- FixedPart: 'RmrkTypesFixedPart',
- SlotPart: 'RmrkTypesSlotPart'
- }
+ UpDataStructsRmrkComposableResource: {
+ parts: 'Vec<u32>',
+ base: 'u32',
+ src: 'Option<Bytes>',
+ metadata: 'Option<Bytes>',
+ license: 'Option<Bytes>',
+ thumb: 'Option<Bytes>'
},
/**
- * Lookup362: rmrk_types::FixedPart<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup369: up_data_structs::rmrk::SlotResource<frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
- RmrkTypesFixedPart: {
- id: 'u32',
- z: 'u32',
- src: 'Bytes'
+ UpDataStructsRmrkSlotResource: {
+ base: 'u32',
+ src: 'Option<Bytes>',
+ metadata: 'Option<Bytes>',
+ slot: 'u32',
+ license: 'Option<Bytes>',
+ thumb: 'Option<Bytes>'
},
/**
- * Lookup363: rmrk_types::SlotPart<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup371: PhantomType::up_data_structs<up_data_structs::rmrk::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
**/
- RmrkTypesSlotPart: {
- id: 'u32',
- equippable: 'RmrkTypesEquippableList',
- src: 'Bytes',
- z: 'u32'
- },
+ PhantomTypeUpDataStructsPropertyInfo: '[Lookup372;0]',
/**
- * Lookup364: rmrk_types::EquippableList<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup372: up_data_structs::rmrk::PropertyInfo<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
- RmrkTypesEquippableList: {
- _enum: {
- All: 'Null',
- Empty: 'Null',
- Custom: 'Vec<u32>'
- }
+ UpDataStructsRmrkPropertyInfo: {
+ key: 'Bytes',
+ value: 'Bytes'
},
/**
- * Lookup366: PhantomType::up_data_structs<rmrk_types::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, BoundedPropertyList>>
+ * Lookup374: PhantomType::up_data_structs<up_data_structs::rmrk::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
**/
- PhantomTypeUpDataStructsTheme: '[Lookup367;0]',
+ PhantomTypeUpDataStructsBaseInfo: '[Lookup375;0]',
/**
- * Lookup367: rmrk_types::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, BoundedPropertyList>
+ * Lookup375: up_data_structs::rmrk::BaseInfo<sp_core::crypto::AccountId32, frame_support::storage::bounded_vec::BoundedVec<T, S>>
**/
- RmrkTypesTheme: {
- name: 'Bytes',
- properties: 'Vec<RmrkTypesThemeProperty>',
- inherit: 'bool'
+ UpDataStructsRmrkBaseInfo: {
+ issuer: 'AccountId32',
+ baseType: 'Bytes',
+ symbol: 'Bytes'
},
/**
- * Lookup369: rmrk_types::ThemeProperty<frame_support::storage::bounded_vec::BoundedVec<T, S>>
+ * Lookup377: PhantomType::up_data_structs<up_data_structs::rmrk::PartType<frame_support::storage::bounded_vec::BoundedVec<T, S>, frame_support::storage::bounded_vec::BoundedVec<T, S>>>
+ **/
+ PhantomTypeUpDataStructsPartType: '[Lookup215;0]',
+ /**
+ * Lookup379: PhantomType::up_data_structs<up_data_structs::rmrk::Theme<frame_support::storage::bounded_vec::BoundedVec<T, S>, PropertyList>>
**/
- RmrkTypesThemeProperty: {
- key: 'Bytes',
- value: 'Bytes'
- },
+ PhantomTypeUpDataStructsTheme: '[Lookup221;0]',
/**
- * Lookup371: PhantomType::up_data_structs<rmrk_types::NftChild>
+ * Lookup381: PhantomType::up_data_structs<up_data_structs::rmrk::NftChild>
**/
- PhantomTypeUpDataStructsNftChild: '[Lookup372;0]',
+ PhantomTypeUpDataStructsNftChild: '[Lookup382;0]',
/**
- * Lookup372: rmrk_types::NftChild
+ * Lookup382: up_data_structs::rmrk::NftChild
**/
- RmrkTypesNftChild: {
+ UpDataStructsRmrkNftChild: {
collectionId: 'u32',
nftId: 'u32'
},
/**
- * Lookup374: pallet_common::pallet::Error<T>
+ * Lookup384: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
_enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'NestingIsDisabled', 'OnlyOwnerAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey']
},
/**
- * Lookup376: pallet_fungible::pallet::Error<T>
+ * Lookup386: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup377: pallet_refungible::ItemData
+ * Lookup387: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes'
},
/**
- * Lookup381: pallet_refungible::pallet::Error<T>
+ * Lookup391: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup382: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup392: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
constData: 'Bytes',
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup383: pallet_nonfungible::pallet::Error<T>
+ * Lookup393: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount']
},
/**
- * Lookup384: pallet_structure::pallet::Error<T>
+ * Lookup394: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'TokenNotFound']
},
/**
- * Lookup387: pallet_evm::pallet::Error<T>
+ * Lookup395: pallet_rmrk_core::pallet::Error<T>
+ **/
+ PalletRmrkCoreError: {
+ _enum: ['CorruptedCollectionType', 'NftTypeEncodeError', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'CollectionFullOrLocked']
+ },
+ /**
+ * Lookup397: pallet_rmrk_equip::pallet::Error<T>
+ **/
+ PalletRmrkEquipError: {
+ _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst']
+ },
+ /**
+ * Lookup400: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
},
/**
- * Lookup390: fp_rpc::TransactionStatus
+ * Lookup403: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -2564,11 +2716,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup392: ethbloom::Bloom
+ * Lookup405: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup394: ethereum::receipt::ReceiptV3
+ * Lookup407: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -2578,7 +2730,7 @@
}
},
/**
- * Lookup395: ethereum::receipt::EIP658ReceiptData
+ * Lookup408: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -2587,7 +2739,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup396: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup409: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -2595,7 +2747,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup397: ethereum::header::Header
+ * Lookup410: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -2615,41 +2767,41 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup398: ethereum_types::hash::H64
+ * Lookup411: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup403: pallet_ethereum::pallet::Error<T>
+ * Lookup416: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup404: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup417: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup405: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup418: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup407: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup420: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission']
},
/**
- * Lookup408: pallet_evm_migration::pallet::Error<T>
+ * Lookup421: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
},
/**
- * Lookup410: sp_runtime::MultiSignature
+ * Lookup423: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -2659,43 +2811,43 @@
}
},
/**
- * Lookup411: sp_core::ed25519::Signature
+ * Lookup424: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup413: sp_core::sr25519::Signature
+ * Lookup426: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup414: sp_core::ecdsa::Signature
+ * Lookup427: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup417: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup430: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup418: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup431: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup421: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup434: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup422: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup435: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup423: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup436: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup424: opal_runtime::Runtime
+ * Lookup437: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup425: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup438: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
**/
PalletEthereumFakeTransactionFinalizer: 'Null'
};
tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -1,7 +1,7 @@
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsBaseInfo, PhantomTypeUpDataStructsCollectionInfo, PhantomTypeUpDataStructsNftChild, PhantomTypeUpDataStructsNftInfo, PhantomTypeUpDataStructsPartType, PhantomTypeUpDataStructsPropertyInfo, PhantomTypeUpDataStructsResourceInfo, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTheme, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTypesAccountIdOrCollectionNftTuple, RmrkTypesBaseInfo, RmrkTypesCollectionInfo, RmrkTypesEquippableList, RmrkTypesFixedPart, RmrkTypesNftChild, RmrkTypesNftInfo, RmrkTypesPartType, RmrkTypesPropertyInfo, RmrkTypesResourceInfo, RmrkTypesRoyaltyInfo, RmrkTypesSlotPart, RmrkTypesTheme, RmrkTypesThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSupportWeightsWeightToFeeCoefficient, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTimestampCall, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructsBaseInfo, PhantomTypeUpDataStructsCollectionInfo, PhantomTypeUpDataStructsNftChild, PhantomTypeUpDataStructsNftInfo, PhantomTypeUpDataStructsPartType, PhantomTypeUpDataStructsPropertyInfo, PhantomTypeUpDataStructsResourceInfo, PhantomTypeUpDataStructsRpcCollection, PhantomTypeUpDataStructsTheme, PhantomTypeUpDataStructsTokenData, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionField, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExData, UpDataStructsNestingRule, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsRmrkAccountIdOrCollectionNftTuple, UpDataStructsRmrkBaseInfo, UpDataStructsRmrkBasicResource, UpDataStructsRmrkCollectionInfo, UpDataStructsRmrkComposableResource, UpDataStructsRmrkEquippableList, UpDataStructsRmrkFixedPart, UpDataStructsRmrkNftChild, UpDataStructsRmrkNftInfo, UpDataStructsRmrkPartType, UpDataStructsRmrkPropertyInfo, UpDataStructsRmrkResourceInfo, UpDataStructsRmrkResourceTypes, UpDataStructsRmrkRoyaltyInfo, UpDataStructsRmrkSlotPart, UpDataStructsRmrkSlotResource, UpDataStructsRmrkTheme, UpDataStructsRmrkThemeProperty, UpDataStructsRpcCollection, UpDataStructsSchemaVersion, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipState, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
export interface InterfaceTypes {
@@ -104,6 +104,12 @@
PalletNonfungibleItemData: PalletNonfungibleItemData;
PalletRefungibleError: PalletRefungibleError;
PalletRefungibleItemData: PalletRefungibleItemData;
+ PalletRmrkCoreCall: PalletRmrkCoreCall;
+ PalletRmrkCoreError: PalletRmrkCoreError;
+ PalletRmrkCoreEvent: PalletRmrkCoreEvent;
+ PalletRmrkEquipCall: PalletRmrkEquipCall;
+ PalletRmrkEquipError: PalletRmrkEquipError;
+ PalletRmrkEquipEvent: PalletRmrkEquipEvent;
PalletStructureCall: PalletStructureCall;
PalletStructureError: PalletStructureError;
PalletStructureEvent: PalletStructureEvent;
@@ -142,20 +148,6 @@
PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;
PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;
PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;
- RmrkTypesAccountIdOrCollectionNftTuple: RmrkTypesAccountIdOrCollectionNftTuple;
- RmrkTypesBaseInfo: RmrkTypesBaseInfo;
- RmrkTypesCollectionInfo: RmrkTypesCollectionInfo;
- RmrkTypesEquippableList: RmrkTypesEquippableList;
- RmrkTypesFixedPart: RmrkTypesFixedPart;
- RmrkTypesNftChild: RmrkTypesNftChild;
- RmrkTypesNftInfo: RmrkTypesNftInfo;
- RmrkTypesPartType: RmrkTypesPartType;
- RmrkTypesPropertyInfo: RmrkTypesPropertyInfo;
- RmrkTypesResourceInfo: RmrkTypesResourceInfo;
- RmrkTypesRoyaltyInfo: RmrkTypesRoyaltyInfo;
- RmrkTypesSlotPart: RmrkTypesSlotPart;
- RmrkTypesTheme: RmrkTypesTheme;
- RmrkTypesThemeProperty: RmrkTypesThemeProperty;
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
SpCoreEd25519Signature: SpCoreEd25519Signature;
SpCoreSr25519Signature: SpCoreSr25519Signature;
@@ -190,6 +182,24 @@
UpDataStructsProperty: UpDataStructsProperty;
UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;
UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;
+ UpDataStructsRmrkAccountIdOrCollectionNftTuple: UpDataStructsRmrkAccountIdOrCollectionNftTuple;
+ UpDataStructsRmrkBaseInfo: UpDataStructsRmrkBaseInfo;
+ UpDataStructsRmrkBasicResource: UpDataStructsRmrkBasicResource;
+ UpDataStructsRmrkCollectionInfo: UpDataStructsRmrkCollectionInfo;
+ UpDataStructsRmrkComposableResource: UpDataStructsRmrkComposableResource;
+ UpDataStructsRmrkEquippableList: UpDataStructsRmrkEquippableList;
+ UpDataStructsRmrkFixedPart: UpDataStructsRmrkFixedPart;
+ UpDataStructsRmrkNftChild: UpDataStructsRmrkNftChild;
+ UpDataStructsRmrkNftInfo: UpDataStructsRmrkNftInfo;
+ UpDataStructsRmrkPartType: UpDataStructsRmrkPartType;
+ UpDataStructsRmrkPropertyInfo: UpDataStructsRmrkPropertyInfo;
+ UpDataStructsRmrkResourceInfo: UpDataStructsRmrkResourceInfo;
+ UpDataStructsRmrkResourceTypes: UpDataStructsRmrkResourceTypes;
+ UpDataStructsRmrkRoyaltyInfo: UpDataStructsRmrkRoyaltyInfo;
+ UpDataStructsRmrkSlotPart: UpDataStructsRmrkSlotPart;
+ UpDataStructsRmrkSlotResource: UpDataStructsRmrkSlotResource;
+ UpDataStructsRmrkTheme: UpDataStructsRmrkTheme;
+ UpDataStructsRmrkThemeProperty: UpDataStructsRmrkThemeProperty;
UpDataStructsRpcCollection: UpDataStructsRpcCollection;
UpDataStructsSchemaVersion: UpDataStructsSchemaVersion;
UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;
tests/src/interfaces/rmrk/definitions.tsdiffbeforeafterboth--- a/tests/src/interfaces/rmrk/definitions.ts
+++ b/tests/src/interfaces/rmrk/definitions.ts
@@ -33,14 +33,14 @@
types,
rpc: {
lastCollectionIdx: fn('Get the latest created collection id', [], 'u32'),
- collectionById: fn('Get collection by id', [{name: 'id', type: 'u32'}], 'Option<RmrkTypesCollectionInfo>'),
+ collectionById: fn('Get collection by id', [{name: 'id', type: 'u32'}], 'Option<PhantomTypeUpDataStructsCollectionInfo>'),
nftById: fn(
'Get NFT by collection id and NFT id',
[
{name: 'collectionId', type: 'u32'},
{name: 'nftId', type: 'u32'},
],
- 'Option<RmrkTypesNftInfo>',
+ 'Option<PhantomTypeUpDataStructsNftInfo>',
),
accountTokens: fn(
'Get tokens owned by an account in a collection',
@@ -56,12 +56,12 @@
{name: 'collectionId', type: 'u32'},
{name: 'nftId', type: 'u32'},
],
- 'Vec<RmrkTypesNftChild>',
+ 'Vec<PhantomTypeUpDataStructsNftChild>',
),
collectionProperties: fn(
'Get collection properties',
[{name: 'collectionId', type: 'u32'}],
- 'Vec<RmrkTypesPropertyInfo>',
+ 'Vec<PhantomTypeUpDataStructsPropertyInfo>',
),
nftProperties: fn(
'Get NFT properties',
@@ -69,7 +69,7 @@
{name: 'collectionId', type: 'u32'},
{name: 'nftId', type: 'u32'},
],
- 'Vec<RmrkTypesPropertyInfo>',
+ 'Vec<PhantomTypeUpDataStructsPropertyInfo>',
),
nftResources: fn(
'Get NFT resources',
@@ -77,7 +77,7 @@
{name: 'collectionId', type: 'u32'},
{name: 'nftId', type: 'u32'},
],
- 'Vec<RmrkTypesResourceInfo>',
+ 'Vec<PhantomTypeUpDataStructsResourceInfo>',
),
nftResourcePriorities: fn(
'Get NFT resource priorities',
@@ -90,12 +90,12 @@
base: fn(
'Get base info',
[{name: 'baseId', type: 'u32'}],
- 'Option<RmrkTypesBaseInfo>',
+ 'Option<PhantomTypeUpDataStructsBaseInfo>',
),
baseParts: fn(
'Get all Base\'s parts',
[{name: 'baseId', type: 'u32'}],
- 'Vec<RmrkTypesPartType>',
+ 'Vec<PhantomTypeUpDataStructsPartType>',
),
themeNames: fn(
'Get Base\'s theme names',
@@ -109,7 +109,7 @@
{name: 'themeName', type: 'String'},
{name: 'keys', type: 'Option<Vec<String>>'},
],
- 'Option<RmrkTypesTheme>',
+ 'Option<PhantomTypeUpDataStructsTheme>',
),
},
};
tests/src/interfaces/rmrk/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/rmrk/types.ts
+++ b/tests/src/interfaces/rmrk/types.ts
@@ -1128,6 +1128,145 @@
readonly constData: Bytes;
}
+/** @name PalletRmrkCoreCall */
+export interface PalletRmrkCoreCall extends Enum {
+ readonly isCreateCollection: boolean;
+ readonly asCreateCollection: {
+ readonly metadata: Bytes;
+ readonly max: Option<u32>;
+ readonly symbol: Bytes;
+ } & Struct;
+ readonly isDestroyCollection: boolean;
+ readonly asDestroyCollection: {
+ readonly collectionId: u32;
+ } & Struct;
+ readonly isChangeCollectionIssuer: boolean;
+ readonly asChangeCollectionIssuer: {
+ readonly collectionId: u32;
+ readonly newIssuer: MultiAddress;
+ } & Struct;
+ readonly isLockCollection: boolean;
+ readonly asLockCollection: {
+ readonly collectionId: u32;
+ } & Struct;
+ readonly isMintNft: boolean;
+ readonly asMintNft: {
+ readonly owner: AccountId32;
+ readonly collectionId: u32;
+ readonly recipient: Option<AccountId32>;
+ readonly royaltyAmount: Option<Permill>;
+ readonly metadata: Bytes;
+ } & Struct;
+ readonly isBurnNft: boolean;
+ readonly asBurnNft: {
+ readonly collectionId: u32;
+ readonly nftId: u32;
+ } & Struct;
+ readonly isSetProperty: boolean;
+ readonly asSetProperty: {
+ readonly rmrkCollectionId: Compact<u32>;
+ readonly maybeNftId: Option<u32>;
+ readonly key: Bytes;
+ readonly value: Bytes;
+ } & Struct;
+ readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'SetProperty';
+}
+
+/** @name PalletRmrkCoreError */
+export interface PalletRmrkCoreError extends Enum {
+ readonly isCorruptedCollectionType: boolean;
+ readonly isNftTypeEncodeError: boolean;
+ readonly isRmrkPropertyKeyIsTooLong: boolean;
+ readonly isRmrkPropertyValueIsTooLong: boolean;
+ readonly isCollectionNotEmpty: boolean;
+ readonly isNoAvailableCollectionId: boolean;
+ readonly isNoAvailableNftId: boolean;
+ readonly isCollectionUnknown: boolean;
+ readonly isNoPermission: boolean;
+ readonly isCollectionFullOrLocked: boolean;
+ readonly type: 'CorruptedCollectionType' | 'NftTypeEncodeError' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'CollectionFullOrLocked';
+}
+
+/** @name PalletRmrkCoreEvent */
+export interface PalletRmrkCoreEvent extends Enum {
+ readonly isCollectionCreated: boolean;
+ readonly asCollectionCreated: {
+ readonly issuer: AccountId32;
+ readonly collectionId: u32;
+ } & Struct;
+ readonly isCollectionDestroyed: boolean;
+ readonly asCollectionDestroyed: {
+ readonly issuer: AccountId32;
+ readonly collectionId: u32;
+ } & Struct;
+ readonly isIssuerChanged: boolean;
+ readonly asIssuerChanged: {
+ readonly oldIssuer: AccountId32;
+ readonly newIssuer: AccountId32;
+ readonly collectionId: u32;
+ } & Struct;
+ readonly isCollectionLocked: boolean;
+ readonly asCollectionLocked: {
+ readonly issuer: AccountId32;
+ readonly collectionId: u32;
+ } & Struct;
+ readonly isNftMinted: boolean;
+ readonly asNftMinted: {
+ readonly owner: AccountId32;
+ readonly collectionId: u32;
+ readonly nftId: u32;
+ } & Struct;
+ readonly isNftBurned: boolean;
+ readonly asNftBurned: {
+ readonly owner: AccountId32;
+ readonly nftId: u32;
+ } & Struct;
+ readonly isPropertySet: boolean;
+ readonly asPropertySet: {
+ readonly collectionId: u32;
+ readonly maybeNftId: Option<u32>;
+ readonly key: Bytes;
+ readonly value: Bytes;
+ } & Struct;
+ readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'PropertySet';
+}
+
+/** @name PalletRmrkEquipCall */
+export interface PalletRmrkEquipCall extends Enum {
+ readonly isCreateBase: boolean;
+ readonly asCreateBase: {
+ readonly baseType: Bytes;
+ readonly symbol: Bytes;
+ readonly parts: Vec<UpDataStructsRmrkPartType>;
+ } & Struct;
+ readonly isThemeAdd: boolean;
+ readonly asThemeAdd: {
+ readonly baseId: u32;
+ readonly theme: UpDataStructsRmrkTheme;
+ } & Struct;
+ readonly type: 'CreateBase' | 'ThemeAdd';
+}
+
+/** @name PalletRmrkEquipError */
+export interface PalletRmrkEquipError extends Enum {
+ readonly isPermissionError: boolean;
+ readonly isNoAvailableBaseId: boolean;
+ readonly isNoAvailablePartId: boolean;
+ readonly isBaseDoesntExist: boolean;
+ readonly isNeedsDefaultThemeFirst: boolean;
+ readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst';
+}
+
+/** @name PalletRmrkEquipEvent */
+export interface PalletRmrkEquipEvent extends Enum {
+ readonly isBaseCreated: boolean;
+ readonly asBaseCreated: {
+ readonly issuer: AccountId32;
+ readonly baseId: u32;
+ } & Struct;
+ readonly type: 'BaseCreated';
+}
+
/** @name PalletStructureCall */
export interface PalletStructureCall extends Null {}
@@ -1615,34 +1754,34 @@
}
/** @name PhantomTypeUpDataStructsBaseInfo */
-export interface PhantomTypeUpDataStructsBaseInfo extends Vec<Lookup357> {}
+export interface PhantomTypeUpDataStructsBaseInfo extends Vec<Lookup375> {}
/** @name PhantomTypeUpDataStructsCollectionInfo */
-export interface PhantomTypeUpDataStructsCollectionInfo extends Vec<Lookup334> {}
+export interface PhantomTypeUpDataStructsCollectionInfo extends Vec<Lookup353> {}
/** @name PhantomTypeUpDataStructsNftChild */
-export interface PhantomTypeUpDataStructsNftChild extends Vec<Lookup372> {}
+export interface PhantomTypeUpDataStructsNftChild extends Vec<Lookup382> {}
/** @name PhantomTypeUpDataStructsNftInfo */
-export interface PhantomTypeUpDataStructsNftInfo extends Vec<Lookup339> {}
+export interface PhantomTypeUpDataStructsNftInfo extends Vec<Lookup356> {}
/** @name PhantomTypeUpDataStructsPartType */
-export interface PhantomTypeUpDataStructsPartType extends Vec<Lookup360> {}
+export interface PhantomTypeUpDataStructsPartType extends Vec<Lookup215> {}
/** @name PhantomTypeUpDataStructsPropertyInfo */
-export interface PhantomTypeUpDataStructsPropertyInfo extends Vec<Lookup352> {}
+export interface PhantomTypeUpDataStructsPropertyInfo extends Vec<Lookup372> {}
/** @name PhantomTypeUpDataStructsResourceInfo */
-export interface PhantomTypeUpDataStructsResourceInfo extends Vec<Lookup345> {}
+export interface PhantomTypeUpDataStructsResourceInfo extends Vec<Lookup362> {}
/** @name PhantomTypeUpDataStructsRpcCollection */
-export interface PhantomTypeUpDataStructsRpcCollection extends Vec<Lookup331> {}
+export interface PhantomTypeUpDataStructsRpcCollection extends Vec<Lookup350> {}
/** @name PhantomTypeUpDataStructsTheme */
-export interface PhantomTypeUpDataStructsTheme extends Vec<Lookup367> {}
+export interface PhantomTypeUpDataStructsTheme extends Vec<Lookup221> {}
/** @name PhantomTypeUpDataStructsTokenData */
-export interface PhantomTypeUpDataStructsTokenData extends Vec<Lookup327> {}
+export interface PhantomTypeUpDataStructsTokenData extends Vec<Lookup346> {}
/** @name PolkadotCorePrimitivesInboundDownwardMessage */
export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
@@ -1705,120 +1844,8 @@
export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
readonly isPresent: boolean;
readonly type: 'Present';
-}
-
-/** @name RmrkTypesAccountIdOrCollectionNftTuple */
-export interface RmrkTypesAccountIdOrCollectionNftTuple extends Enum {
- readonly isAccountId: boolean;
- readonly asAccountId: AccountId32;
- readonly isCollectionAndNftTuple: boolean;
- readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;
- readonly type: 'AccountId' | 'CollectionAndNftTuple';
-}
-
-/** @name RmrkTypesBaseInfo */
-export interface RmrkTypesBaseInfo extends Struct {
- readonly issuer: AccountId32;
- readonly baseType: Bytes;
- readonly symbol: Bytes;
-}
-
-/** @name RmrkTypesCollectionInfo */
-export interface RmrkTypesCollectionInfo extends Struct {
- readonly issuer: AccountId32;
- readonly metadata: Bytes;
- readonly max: Option<u32>;
- readonly symbol: Bytes;
- readonly nftsCount: u32;
-}
-
-/** @name RmrkTypesEquippableList */
-export interface RmrkTypesEquippableList extends Enum {
- readonly isAll: boolean;
- readonly isEmpty: boolean;
- readonly isCustom: boolean;
- readonly asCustom: Vec<u32>;
- readonly type: 'All' | 'Empty' | 'Custom';
-}
-
-/** @name RmrkTypesFixedPart */
-export interface RmrkTypesFixedPart extends Struct {
- readonly id: u32;
- readonly z: u32;
- readonly src: Bytes;
-}
-
-/** @name RmrkTypesNftChild */
-export interface RmrkTypesNftChild extends Struct {
- readonly collectionId: u32;
- readonly nftId: u32;
-}
-
-/** @name RmrkTypesNftInfo */
-export interface RmrkTypesNftInfo extends Struct {
- readonly owner: RmrkTypesAccountIdOrCollectionNftTuple;
- readonly royalty: Option<RmrkTypesRoyaltyInfo>;
- readonly metadata: Bytes;
- readonly equipped: bool;
- readonly pending: bool;
-}
-
-/** @name RmrkTypesPartType */
-export interface RmrkTypesPartType extends Enum {
- readonly isFixedPart: boolean;
- readonly asFixedPart: RmrkTypesFixedPart;
- readonly isSlotPart: boolean;
- readonly asSlotPart: RmrkTypesSlotPart;
- readonly type: 'FixedPart' | 'SlotPart';
-}
-
-/** @name RmrkTypesPropertyInfo */
-export interface RmrkTypesPropertyInfo extends Struct {
- readonly key: Bytes;
- readonly value: Bytes;
-}
-
-/** @name RmrkTypesResourceInfo */
-export interface RmrkTypesResourceInfo extends Struct {
- readonly id: Bytes;
- readonly pending: bool;
- readonly pendingRemoval: bool;
- readonly parts: Option<Vec<u32>>;
- readonly base: Option<u32>;
- readonly src: Option<Bytes>;
- readonly metadata: Option<Bytes>;
- readonly slot: Option<u32>;
- readonly license: Option<Bytes>;
- readonly thumb: Option<Bytes>;
-}
-
-/** @name RmrkTypesRoyaltyInfo */
-export interface RmrkTypesRoyaltyInfo extends Struct {
- readonly recipient: AccountId32;
- readonly amount: Permill;
-}
-
-/** @name RmrkTypesSlotPart */
-export interface RmrkTypesSlotPart extends Struct {
- readonly id: u32;
- readonly equippable: RmrkTypesEquippableList;
- readonly src: Bytes;
- readonly z: u32;
-}
-
-/** @name RmrkTypesTheme */
-export interface RmrkTypesTheme extends Struct {
- readonly name: Bytes;
- readonly properties: Vec<RmrkTypesThemeProperty>;
- readonly inherit: bool;
}
-/** @name RmrkTypesThemeProperty */
-export interface RmrkTypesThemeProperty extends Struct {
- readonly key: Bytes;
- readonly value: Bytes;
-}
-
/** @name SpCoreEcdsaSignature */
export interface SpCoreEcdsaSignature extends U8aFixed {}
@@ -2096,6 +2123,151 @@
readonly tokenOwner: bool;
}
+/** @name UpDataStructsRmrkAccountIdOrCollectionNftTuple */
+export interface UpDataStructsRmrkAccountIdOrCollectionNftTuple extends Enum {
+ readonly isAccountId: boolean;
+ readonly asAccountId: AccountId32;
+ readonly isCollectionAndNftTuple: boolean;
+ readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;
+ readonly type: 'AccountId' | 'CollectionAndNftTuple';
+}
+
+/** @name UpDataStructsRmrkBaseInfo */
+export interface UpDataStructsRmrkBaseInfo extends Struct {
+ readonly issuer: AccountId32;
+ readonly baseType: Bytes;
+ readonly symbol: Bytes;
+}
+
+/** @name UpDataStructsRmrkBasicResource */
+export interface UpDataStructsRmrkBasicResource extends Struct {
+ readonly src: Option<Bytes>;
+ readonly metadata: Option<Bytes>;
+ readonly license: Option<Bytes>;
+ readonly thumb: Option<Bytes>;
+}
+
+/** @name UpDataStructsRmrkCollectionInfo */
+export interface UpDataStructsRmrkCollectionInfo extends Struct {
+ readonly issuer: AccountId32;
+ readonly metadata: Bytes;
+ readonly max: Option<u32>;
+ readonly symbol: Bytes;
+ readonly nftsCount: u32;
+}
+
+/** @name UpDataStructsRmrkComposableResource */
+export interface UpDataStructsRmrkComposableResource extends Struct {
+ readonly parts: Vec<u32>;
+ readonly base: u32;
+ readonly src: Option<Bytes>;
+ readonly metadata: Option<Bytes>;
+ readonly license: Option<Bytes>;
+ readonly thumb: Option<Bytes>;
+}
+
+/** @name UpDataStructsRmrkEquippableList */
+export interface UpDataStructsRmrkEquippableList extends Enum {
+ readonly isAll: boolean;
+ readonly isEmpty: boolean;
+ readonly isCustom: boolean;
+ readonly asCustom: Vec<u32>;
+ readonly type: 'All' | 'Empty' | 'Custom';
+}
+
+/** @name UpDataStructsRmrkFixedPart */
+export interface UpDataStructsRmrkFixedPart extends Struct {
+ readonly id: u32;
+ readonly z: u32;
+ readonly src: Bytes;
+}
+
+/** @name UpDataStructsRmrkNftChild */
+export interface UpDataStructsRmrkNftChild extends Struct {
+ readonly collectionId: u32;
+ readonly nftId: u32;
+}
+
+/** @name UpDataStructsRmrkNftInfo */
+export interface UpDataStructsRmrkNftInfo extends Struct {
+ readonly owner: UpDataStructsRmrkAccountIdOrCollectionNftTuple;
+ readonly royalty: Option<UpDataStructsRmrkRoyaltyInfo>;
+ readonly metadata: Bytes;
+ readonly equipped: bool;
+ readonly pending: bool;
+}
+
+/** @name UpDataStructsRmrkPartType */
+export interface UpDataStructsRmrkPartType extends Enum {
+ readonly isFixedPart: boolean;
+ readonly asFixedPart: UpDataStructsRmrkFixedPart;
+ readonly isSlotPart: boolean;
+ readonly asSlotPart: UpDataStructsRmrkSlotPart;
+ readonly type: 'FixedPart' | 'SlotPart';
+}
+
+/** @name UpDataStructsRmrkPropertyInfo */
+export interface UpDataStructsRmrkPropertyInfo extends Struct {
+ readonly key: Bytes;
+ readonly value: Bytes;
+}
+
+/** @name UpDataStructsRmrkResourceInfo */
+export interface UpDataStructsRmrkResourceInfo extends Struct {
+ readonly id: Bytes;
+ readonly resource: UpDataStructsRmrkResourceTypes;
+ readonly pending: bool;
+ readonly pendingRemoval: bool;
+}
+
+/** @name UpDataStructsRmrkResourceTypes */
+export interface UpDataStructsRmrkResourceTypes extends Enum {
+ readonly isBasic: boolean;
+ readonly asBasic: UpDataStructsRmrkBasicResource;
+ readonly isComposable: boolean;
+ readonly asComposable: UpDataStructsRmrkComposableResource;
+ readonly isSlot: boolean;
+ readonly asSlot: UpDataStructsRmrkSlotResource;
+ readonly type: 'Basic' | 'Composable' | 'Slot';
+}
+
+/** @name UpDataStructsRmrkRoyaltyInfo */
+export interface UpDataStructsRmrkRoyaltyInfo extends Struct {
+ readonly recipient: AccountId32;
+ readonly amount: Permill;
+}
+
+/** @name UpDataStructsRmrkSlotPart */
+export interface UpDataStructsRmrkSlotPart extends Struct {
+ readonly id: u32;
+ readonly equippable: UpDataStructsRmrkEquippableList;
+ readonly src: Bytes;
+ readonly z: u32;
+}
+
+/** @name UpDataStructsRmrkSlotResource */
+export interface UpDataStructsRmrkSlotResource extends Struct {
+ readonly base: u32;
+ readonly src: Option<Bytes>;
+ readonly metadata: Option<Bytes>;
+ readonly slot: u32;
+ readonly license: Option<Bytes>;
+ readonly thumb: Option<Bytes>;
+}
+
+/** @name UpDataStructsRmrkTheme */
+export interface UpDataStructsRmrkTheme extends Struct {
+ readonly name: Bytes;
+ readonly properties: Vec<UpDataStructsRmrkThemeProperty>;
+ readonly inherit: bool;
+}
+
+/** @name UpDataStructsRmrkThemeProperty */
+export interface UpDataStructsRmrkThemeProperty extends Struct {
+ readonly key: Bytes;
+ readonly value: Bytes;
+}
+
/** @name UpDataStructsRpcCollection */
export interface UpDataStructsRpcCollection extends Struct {
readonly owner: AccountId32;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34declare module '@polkadot/types/lookup' {5 import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';6 import type { ITuple } from '@polkadot/types-codec/types';7 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';8 import type { Event } from '@polkadot/types/interfaces/system';910 /** @name PolkadotPrimitivesV2PersistedValidationData (2) */11 export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {12 readonly parentHead: Bytes;13 readonly relayParentNumber: u32;14 readonly relayParentStorageRoot: H256;15 readonly maxPovSize: u32;16 }1718 /** @name PolkadotPrimitivesV2UpgradeRestriction (9) */19 export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {20 readonly isPresent: boolean;21 readonly type: 'Present';22 }2324 /** @name SpTrieStorageProof (10) */25 export interface SpTrieStorageProof extends Struct {26 readonly trieNodes: BTreeSet<Bytes>;27 }2829 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (13) */30 export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {31 readonly dmqMqcHead: H256;32 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;33 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;34 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;35 }3637 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (18) */38 export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {39 readonly maxCapacity: u32;40 readonly maxTotalSize: u32;41 readonly maxMessageSize: u32;42 readonly msgCount: u32;43 readonly totalSize: u32;44 readonly mqcHead: Option<H256>;45 }4647 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (20) */48 export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {49 readonly maxCodeSize: u32;50 readonly maxHeadDataSize: u32;51 readonly maxUpwardQueueCount: u32;52 readonly maxUpwardQueueSize: u32;53 readonly maxUpwardMessageSize: u32;54 readonly maxUpwardMessageNumPerCandidate: u32;55 readonly hrmpMaxMessageNumPerCandidate: u32;56 readonly validationUpgradeCooldown: u32;57 readonly validationUpgradeDelay: u32;58 }5960 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (26) */61 export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {62 readonly recipient: u32;63 readonly data: Bytes;64 }6566 /** @name CumulusPalletParachainSystemCall (28) */67 export interface CumulusPalletParachainSystemCall extends Enum {68 readonly isSetValidationData: boolean;69 readonly asSetValidationData: {70 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;71 } & Struct;72 readonly isSudoSendUpwardMessage: boolean;73 readonly asSudoSendUpwardMessage: {74 readonly message: Bytes;75 } & Struct;76 readonly isAuthorizeUpgrade: boolean;77 readonly asAuthorizeUpgrade: {78 readonly codeHash: H256;79 } & Struct;80 readonly isEnactAuthorizedUpgrade: boolean;81 readonly asEnactAuthorizedUpgrade: {82 readonly code: Bytes;83 } & Struct;84 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';85 }8687 /** @name CumulusPrimitivesParachainInherentParachainInherentData (29) */88 export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {89 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;90 readonly relayChainState: SpTrieStorageProof;91 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;92 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;93 }9495 /** @name PolkadotCorePrimitivesInboundDownwardMessage (31) */96 export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {97 readonly sentAt: u32;98 readonly msg: Bytes;99 }100101 /** @name PolkadotCorePrimitivesInboundHrmpMessage (34) */102 export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {103 readonly sentAt: u32;104 readonly data: Bytes;105 }106107 /** @name CumulusPalletParachainSystemEvent (37) */108 export interface CumulusPalletParachainSystemEvent extends Enum {109 readonly isValidationFunctionStored: boolean;110 readonly isValidationFunctionApplied: boolean;111 readonly asValidationFunctionApplied: u32;112 readonly isValidationFunctionDiscarded: boolean;113 readonly isUpgradeAuthorized: boolean;114 readonly asUpgradeAuthorized: H256;115 readonly isDownwardMessagesReceived: boolean;116 readonly asDownwardMessagesReceived: u32;117 readonly isDownwardMessagesProcessed: boolean;118 readonly asDownwardMessagesProcessed: ITuple<[u64, H256]>;119 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';120 }121122 /** @name CumulusPalletParachainSystemError (38) */123 export interface CumulusPalletParachainSystemError extends Enum {124 readonly isOverlappingUpgrades: boolean;125 readonly isProhibitedByPolkadot: boolean;126 readonly isTooBig: boolean;127 readonly isValidationDataNotAvailable: boolean;128 readonly isHostConfigurationNotAvailable: boolean;129 readonly isNotScheduled: boolean;130 readonly isNothingAuthorized: boolean;131 readonly isUnauthorized: boolean;132 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';133 }134135 /** @name PalletBalancesAccountData (41) */136 export interface PalletBalancesAccountData extends Struct {137 readonly free: u128;138 readonly reserved: u128;139 readonly miscFrozen: u128;140 readonly feeFrozen: u128;141 }142143 /** @name PalletBalancesBalanceLock (43) */144 export interface PalletBalancesBalanceLock extends Struct {145 readonly id: U8aFixed;146 readonly amount: u128;147 readonly reasons: PalletBalancesReasons;148 }149150 /** @name PalletBalancesReasons (45) */151 export interface PalletBalancesReasons extends Enum {152 readonly isFee: boolean;153 readonly isMisc: boolean;154 readonly isAll: boolean;155 readonly type: 'Fee' | 'Misc' | 'All';156 }157158 /** @name PalletBalancesReserveData (48) */159 export interface PalletBalancesReserveData extends Struct {160 readonly id: U8aFixed;161 readonly amount: u128;162 }163164 /** @name PalletBalancesReleases (50) */165 export interface PalletBalancesReleases extends Enum {166 readonly isV100: boolean;167 readonly isV200: boolean;168 readonly type: 'V100' | 'V200';169 }170171 /** @name PalletBalancesCall (51) */172 export interface PalletBalancesCall extends Enum {173 readonly isTransfer: boolean;174 readonly asTransfer: {175 readonly dest: MultiAddress;176 readonly value: Compact<u128>;177 } & Struct;178 readonly isSetBalance: boolean;179 readonly asSetBalance: {180 readonly who: MultiAddress;181 readonly newFree: Compact<u128>;182 readonly newReserved: Compact<u128>;183 } & Struct;184 readonly isForceTransfer: boolean;185 readonly asForceTransfer: {186 readonly source: MultiAddress;187 readonly dest: MultiAddress;188 readonly value: Compact<u128>;189 } & Struct;190 readonly isTransferKeepAlive: boolean;191 readonly asTransferKeepAlive: {192 readonly dest: MultiAddress;193 readonly value: Compact<u128>;194 } & Struct;195 readonly isTransferAll: boolean;196 readonly asTransferAll: {197 readonly dest: MultiAddress;198 readonly keepAlive: bool;199 } & Struct;200 readonly isForceUnreserve: boolean;201 readonly asForceUnreserve: {202 readonly who: MultiAddress;203 readonly amount: u128;204 } & Struct;205 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';206 }207208 /** @name PalletBalancesEvent (57) */209 export interface PalletBalancesEvent extends Enum {210 readonly isEndowed: boolean;211 readonly asEndowed: {212 readonly account: AccountId32;213 readonly freeBalance: u128;214 } & Struct;215 readonly isDustLost: boolean;216 readonly asDustLost: {217 readonly account: AccountId32;218 readonly amount: u128;219 } & Struct;220 readonly isTransfer: boolean;221 readonly asTransfer: {222 readonly from: AccountId32;223 readonly to: AccountId32;224 readonly amount: u128;225 } & Struct;226 readonly isBalanceSet: boolean;227 readonly asBalanceSet: {228 readonly who: AccountId32;229 readonly free: u128;230 readonly reserved: u128;231 } & Struct;232 readonly isReserved: boolean;233 readonly asReserved: {234 readonly who: AccountId32;235 readonly amount: u128;236 } & Struct;237 readonly isUnreserved: boolean;238 readonly asUnreserved: {239 readonly who: AccountId32;240 readonly amount: u128;241 } & Struct;242 readonly isReserveRepatriated: boolean;243 readonly asReserveRepatriated: {244 readonly from: AccountId32;245 readonly to: AccountId32;246 readonly amount: u128;247 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;248 } & Struct;249 readonly isDeposit: boolean;250 readonly asDeposit: {251 readonly who: AccountId32;252 readonly amount: u128;253 } & Struct;254 readonly isWithdraw: boolean;255 readonly asWithdraw: {256 readonly who: AccountId32;257 readonly amount: u128;258 } & Struct;259 readonly isSlashed: boolean;260 readonly asSlashed: {261 readonly who: AccountId32;262 readonly amount: u128;263 } & Struct;264 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';265 }266267 /** @name FrameSupportTokensMiscBalanceStatus (58) */268 export interface FrameSupportTokensMiscBalanceStatus extends Enum {269 readonly isFree: boolean;270 readonly isReserved: boolean;271 readonly type: 'Free' | 'Reserved';272 }273274 /** @name PalletBalancesError (59) */275 export interface PalletBalancesError extends Enum {276 readonly isVestingBalance: boolean;277 readonly isLiquidityRestrictions: boolean;278 readonly isInsufficientBalance: boolean;279 readonly isExistentialDeposit: boolean;280 readonly isKeepAlive: boolean;281 readonly isExistingVestingSchedule: boolean;282 readonly isDeadAccount: boolean;283 readonly isTooManyReserves: boolean;284 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';285 }286287 /** @name PalletTimestampCall (62) */288 export interface PalletTimestampCall extends Enum {289 readonly isSet: boolean;290 readonly asSet: {291 readonly now: Compact<u64>;292 } & Struct;293 readonly type: 'Set';294 }295296 /** @name PalletTransactionPaymentReleases (65) */297 export interface PalletTransactionPaymentReleases extends Enum {298 readonly isV1Ancient: boolean;299 readonly isV2: boolean;300 readonly type: 'V1Ancient' | 'V2';301 }302303 /** @name FrameSupportWeightsWeightToFeeCoefficient (67) */304 export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {305 readonly coeffInteger: u128;306 readonly coeffFrac: Perbill;307 readonly negative: bool;308 readonly degree: u8;309 }310311 /** @name PalletTreasuryProposal (69) */312 export interface PalletTreasuryProposal extends Struct {313 readonly proposer: AccountId32;314 readonly value: u128;315 readonly beneficiary: AccountId32;316 readonly bond: u128;317 }318319 /** @name PalletTreasuryCall (72) */320 export interface PalletTreasuryCall extends Enum {321 readonly isProposeSpend: boolean;322 readonly asProposeSpend: {323 readonly value: Compact<u128>;324 readonly beneficiary: MultiAddress;325 } & Struct;326 readonly isRejectProposal: boolean;327 readonly asRejectProposal: {328 readonly proposalId: Compact<u32>;329 } & Struct;330 readonly isApproveProposal: boolean;331 readonly asApproveProposal: {332 readonly proposalId: Compact<u32>;333 } & Struct;334 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';335 }336337 /** @name PalletTreasuryEvent (74) */338 export interface PalletTreasuryEvent extends Enum {339 readonly isProposed: boolean;340 readonly asProposed: {341 readonly proposalIndex: u32;342 } & Struct;343 readonly isSpending: boolean;344 readonly asSpending: {345 readonly budgetRemaining: u128;346 } & Struct;347 readonly isAwarded: boolean;348 readonly asAwarded: {349 readonly proposalIndex: u32;350 readonly award: u128;351 readonly account: AccountId32;352 } & Struct;353 readonly isRejected: boolean;354 readonly asRejected: {355 readonly proposalIndex: u32;356 readonly slashed: u128;357 } & Struct;358 readonly isBurnt: boolean;359 readonly asBurnt: {360 readonly burntFunds: u128;361 } & Struct;362 readonly isRollover: boolean;363 readonly asRollover: {364 readonly rolloverBalance: u128;365 } & Struct;366 readonly isDeposit: boolean;367 readonly asDeposit: {368 readonly value: u128;369 } & Struct;370 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';371 }372373 /** @name FrameSupportPalletId (77) */374 export interface FrameSupportPalletId extends U8aFixed {}375376 /** @name PalletTreasuryError (78) */377 export interface PalletTreasuryError extends Enum {378 readonly isInsufficientProposersBalance: boolean;379 readonly isInvalidIndex: boolean;380 readonly isTooManyApprovals: boolean;381 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';382 }383384 /** @name PalletSudoCall (79) */385 export interface PalletSudoCall extends Enum {386 readonly isSudo: boolean;387 readonly asSudo: {388 readonly call: Call;389 } & Struct;390 readonly isSudoUncheckedWeight: boolean;391 readonly asSudoUncheckedWeight: {392 readonly call: Call;393 readonly weight: u64;394 } & Struct;395 readonly isSetKey: boolean;396 readonly asSetKey: {397 readonly new_: MultiAddress;398 } & Struct;399 readonly isSudoAs: boolean;400 readonly asSudoAs: {401 readonly who: MultiAddress;402 readonly call: Call;403 } & Struct;404 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';405 }406407 /** @name FrameSystemCall (81) */408 export interface FrameSystemCall extends Enum {409 readonly isFillBlock: boolean;410 readonly asFillBlock: {411 readonly ratio: Perbill;412 } & Struct;413 readonly isRemark: boolean;414 readonly asRemark: {415 readonly remark: Bytes;416 } & Struct;417 readonly isSetHeapPages: boolean;418 readonly asSetHeapPages: {419 readonly pages: u64;420 } & Struct;421 readonly isSetCode: boolean;422 readonly asSetCode: {423 readonly code: Bytes;424 } & Struct;425 readonly isSetCodeWithoutChecks: boolean;426 readonly asSetCodeWithoutChecks: {427 readonly code: Bytes;428 } & Struct;429 readonly isSetStorage: boolean;430 readonly asSetStorage: {431 readonly items: Vec<ITuple<[Bytes, Bytes]>>;432 } & Struct;433 readonly isKillStorage: boolean;434 readonly asKillStorage: {435 readonly keys_: Vec<Bytes>;436 } & Struct;437 readonly isKillPrefix: boolean;438 readonly asKillPrefix: {439 readonly prefix: Bytes;440 readonly subkeys: u32;441 } & Struct;442 readonly isRemarkWithEvent: boolean;443 readonly asRemarkWithEvent: {444 readonly remark: Bytes;445 } & Struct;446 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';447 }448449 /** @name OrmlVestingModuleCall (84) */450 export interface OrmlVestingModuleCall extends Enum {451 readonly isClaim: boolean;452 readonly isVestedTransfer: boolean;453 readonly asVestedTransfer: {454 readonly dest: MultiAddress;455 readonly schedule: OrmlVestingVestingSchedule;456 } & Struct;457 readonly isUpdateVestingSchedules: boolean;458 readonly asUpdateVestingSchedules: {459 readonly who: MultiAddress;460 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;461 } & Struct;462 readonly isClaimFor: boolean;463 readonly asClaimFor: {464 readonly dest: MultiAddress;465 } & Struct;466 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';467 }468469 /** @name OrmlVestingVestingSchedule (85) */470 export interface OrmlVestingVestingSchedule extends Struct {471 readonly start: u32;472 readonly period: u32;473 readonly periodCount: u32;474 readonly perPeriod: Compact<u128>;475 }476477 /** @name CumulusPalletXcmpQueueCall (87) */478 export interface CumulusPalletXcmpQueueCall extends Enum {479 readonly isServiceOverweight: boolean;480 readonly asServiceOverweight: {481 readonly index: u64;482 readonly weightLimit: u64;483 } & Struct;484 readonly isSuspendXcmExecution: boolean;485 readonly isResumeXcmExecution: boolean;486 readonly isUpdateSuspendThreshold: boolean;487 readonly asUpdateSuspendThreshold: {488 readonly new_: u32;489 } & Struct;490 readonly isUpdateDropThreshold: boolean;491 readonly asUpdateDropThreshold: {492 readonly new_: u32;493 } & Struct;494 readonly isUpdateResumeThreshold: boolean;495 readonly asUpdateResumeThreshold: {496 readonly new_: u32;497 } & Struct;498 readonly isUpdateThresholdWeight: boolean;499 readonly asUpdateThresholdWeight: {500 readonly new_: u64;501 } & Struct;502 readonly isUpdateWeightRestrictDecay: boolean;503 readonly asUpdateWeightRestrictDecay: {504 readonly new_: u64;505 } & Struct;506 readonly isUpdateXcmpMaxIndividualWeight: boolean;507 readonly asUpdateXcmpMaxIndividualWeight: {508 readonly new_: u64;509 } & Struct;510 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';511 }512513 /** @name PalletXcmCall (88) */514 export interface PalletXcmCall extends Enum {515 readonly isSend: boolean;516 readonly asSend: {517 readonly dest: XcmVersionedMultiLocation;518 readonly message: XcmVersionedXcm;519 } & Struct;520 readonly isTeleportAssets: boolean;521 readonly asTeleportAssets: {522 readonly dest: XcmVersionedMultiLocation;523 readonly beneficiary: XcmVersionedMultiLocation;524 readonly assets: XcmVersionedMultiAssets;525 readonly feeAssetItem: u32;526 } & Struct;527 readonly isReserveTransferAssets: boolean;528 readonly asReserveTransferAssets: {529 readonly dest: XcmVersionedMultiLocation;530 readonly beneficiary: XcmVersionedMultiLocation;531 readonly assets: XcmVersionedMultiAssets;532 readonly feeAssetItem: u32;533 } & Struct;534 readonly isExecute: boolean;535 readonly asExecute: {536 readonly message: XcmVersionedXcm;537 readonly maxWeight: u64;538 } & Struct;539 readonly isForceXcmVersion: boolean;540 readonly asForceXcmVersion: {541 readonly location: XcmV1MultiLocation;542 readonly xcmVersion: u32;543 } & Struct;544 readonly isForceDefaultXcmVersion: boolean;545 readonly asForceDefaultXcmVersion: {546 readonly maybeXcmVersion: Option<u32>;547 } & Struct;548 readonly isForceSubscribeVersionNotify: boolean;549 readonly asForceSubscribeVersionNotify: {550 readonly location: XcmVersionedMultiLocation;551 } & Struct;552 readonly isForceUnsubscribeVersionNotify: boolean;553 readonly asForceUnsubscribeVersionNotify: {554 readonly location: XcmVersionedMultiLocation;555 } & Struct;556 readonly isLimitedReserveTransferAssets: boolean;557 readonly asLimitedReserveTransferAssets: {558 readonly dest: XcmVersionedMultiLocation;559 readonly beneficiary: XcmVersionedMultiLocation;560 readonly assets: XcmVersionedMultiAssets;561 readonly feeAssetItem: u32;562 readonly weightLimit: XcmV2WeightLimit;563 } & Struct;564 readonly isLimitedTeleportAssets: boolean;565 readonly asLimitedTeleportAssets: {566 readonly dest: XcmVersionedMultiLocation;567 readonly beneficiary: XcmVersionedMultiLocation;568 readonly assets: XcmVersionedMultiAssets;569 readonly feeAssetItem: u32;570 readonly weightLimit: XcmV2WeightLimit;571 } & Struct;572 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';573 }574575 /** @name XcmVersionedMultiLocation (89) */576 export interface XcmVersionedMultiLocation extends Enum {577 readonly isV0: boolean;578 readonly asV0: XcmV0MultiLocation;579 readonly isV1: boolean;580 readonly asV1: XcmV1MultiLocation;581 readonly type: 'V0' | 'V1';582 }583584 /** @name XcmV0MultiLocation (90) */585 export interface XcmV0MultiLocation extends Enum {586 readonly isNull: boolean;587 readonly isX1: boolean;588 readonly asX1: XcmV0Junction;589 readonly isX2: boolean;590 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;591 readonly isX3: boolean;592 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;593 readonly isX4: boolean;594 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;595 readonly isX5: boolean;596 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;597 readonly isX6: boolean;598 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;599 readonly isX7: boolean;600 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;601 readonly isX8: boolean;602 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;603 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';604 }605606 /** @name XcmV0Junction (91) */607 export interface XcmV0Junction extends Enum {608 readonly isParent: boolean;609 readonly isParachain: boolean;610 readonly asParachain: Compact<u32>;611 readonly isAccountId32: boolean;612 readonly asAccountId32: {613 readonly network: XcmV0JunctionNetworkId;614 readonly id: U8aFixed;615 } & Struct;616 readonly isAccountIndex64: boolean;617 readonly asAccountIndex64: {618 readonly network: XcmV0JunctionNetworkId;619 readonly index: Compact<u64>;620 } & Struct;621 readonly isAccountKey20: boolean;622 readonly asAccountKey20: {623 readonly network: XcmV0JunctionNetworkId;624 readonly key: U8aFixed;625 } & Struct;626 readonly isPalletInstance: boolean;627 readonly asPalletInstance: u8;628 readonly isGeneralIndex: boolean;629 readonly asGeneralIndex: Compact<u128>;630 readonly isGeneralKey: boolean;631 readonly asGeneralKey: Bytes;632 readonly isOnlyChild: boolean;633 readonly isPlurality: boolean;634 readonly asPlurality: {635 readonly id: XcmV0JunctionBodyId;636 readonly part: XcmV0JunctionBodyPart;637 } & Struct;638 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';639 }640641 /** @name XcmV0JunctionNetworkId (92) */642 export interface XcmV0JunctionNetworkId extends Enum {643 readonly isAny: boolean;644 readonly isNamed: boolean;645 readonly asNamed: Bytes;646 readonly isPolkadot: boolean;647 readonly isKusama: boolean;648 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';649 }650651 /** @name XcmV0JunctionBodyId (93) */652 export interface XcmV0JunctionBodyId extends Enum {653 readonly isUnit: boolean;654 readonly isNamed: boolean;655 readonly asNamed: Bytes;656 readonly isIndex: boolean;657 readonly asIndex: Compact<u32>;658 readonly isExecutive: boolean;659 readonly isTechnical: boolean;660 readonly isLegislative: boolean;661 readonly isJudicial: boolean;662 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';663 }664665 /** @name XcmV0JunctionBodyPart (94) */666 export interface XcmV0JunctionBodyPart extends Enum {667 readonly isVoice: boolean;668 readonly isMembers: boolean;669 readonly asMembers: {670 readonly count: Compact<u32>;671 } & Struct;672 readonly isFraction: boolean;673 readonly asFraction: {674 readonly nom: Compact<u32>;675 readonly denom: Compact<u32>;676 } & Struct;677 readonly isAtLeastProportion: boolean;678 readonly asAtLeastProportion: {679 readonly nom: Compact<u32>;680 readonly denom: Compact<u32>;681 } & Struct;682 readonly isMoreThanProportion: boolean;683 readonly asMoreThanProportion: {684 readonly nom: Compact<u32>;685 readonly denom: Compact<u32>;686 } & Struct;687 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';688 }689690 /** @name XcmV1MultiLocation (95) */691 export interface XcmV1MultiLocation extends Struct {692 readonly parents: u8;693 readonly interior: XcmV1MultilocationJunctions;694 }695696 /** @name XcmV1MultilocationJunctions (96) */697 export interface XcmV1MultilocationJunctions extends Enum {698 readonly isHere: boolean;699 readonly isX1: boolean;700 readonly asX1: XcmV1Junction;701 readonly isX2: boolean;702 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;703 readonly isX3: boolean;704 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;705 readonly isX4: boolean;706 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;707 readonly isX5: boolean;708 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;709 readonly isX6: boolean;710 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;711 readonly isX7: boolean;712 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;713 readonly isX8: boolean;714 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;715 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';716 }717718 /** @name XcmV1Junction (97) */719 export interface XcmV1Junction extends Enum {720 readonly isParachain: boolean;721 readonly asParachain: Compact<u32>;722 readonly isAccountId32: boolean;723 readonly asAccountId32: {724 readonly network: XcmV0JunctionNetworkId;725 readonly id: U8aFixed;726 } & Struct;727 readonly isAccountIndex64: boolean;728 readonly asAccountIndex64: {729 readonly network: XcmV0JunctionNetworkId;730 readonly index: Compact<u64>;731 } & Struct;732 readonly isAccountKey20: boolean;733 readonly asAccountKey20: {734 readonly network: XcmV0JunctionNetworkId;735 readonly key: U8aFixed;736 } & Struct;737 readonly isPalletInstance: boolean;738 readonly asPalletInstance: u8;739 readonly isGeneralIndex: boolean;740 readonly asGeneralIndex: Compact<u128>;741 readonly isGeneralKey: boolean;742 readonly asGeneralKey: Bytes;743 readonly isOnlyChild: boolean;744 readonly isPlurality: boolean;745 readonly asPlurality: {746 readonly id: XcmV0JunctionBodyId;747 readonly part: XcmV0JunctionBodyPart;748 } & Struct;749 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';750 }751752 /** @name XcmVersionedXcm (98) */753 export interface XcmVersionedXcm extends Enum {754 readonly isV0: boolean;755 readonly asV0: XcmV0Xcm;756 readonly isV1: boolean;757 readonly asV1: XcmV1Xcm;758 readonly isV2: boolean;759 readonly asV2: XcmV2Xcm;760 readonly type: 'V0' | 'V1' | 'V2';761 }762763 /** @name XcmV0Xcm (99) */764 export interface XcmV0Xcm extends Enum {765 readonly isWithdrawAsset: boolean;766 readonly asWithdrawAsset: {767 readonly assets: Vec<XcmV0MultiAsset>;768 readonly effects: Vec<XcmV0Order>;769 } & Struct;770 readonly isReserveAssetDeposit: boolean;771 readonly asReserveAssetDeposit: {772 readonly assets: Vec<XcmV0MultiAsset>;773 readonly effects: Vec<XcmV0Order>;774 } & Struct;775 readonly isTeleportAsset: boolean;776 readonly asTeleportAsset: {777 readonly assets: Vec<XcmV0MultiAsset>;778 readonly effects: Vec<XcmV0Order>;779 } & Struct;780 readonly isQueryResponse: boolean;781 readonly asQueryResponse: {782 readonly queryId: Compact<u64>;783 readonly response: XcmV0Response;784 } & Struct;785 readonly isTransferAsset: boolean;786 readonly asTransferAsset: {787 readonly assets: Vec<XcmV0MultiAsset>;788 readonly dest: XcmV0MultiLocation;789 } & Struct;790 readonly isTransferReserveAsset: boolean;791 readonly asTransferReserveAsset: {792 readonly assets: Vec<XcmV0MultiAsset>;793 readonly dest: XcmV0MultiLocation;794 readonly effects: Vec<XcmV0Order>;795 } & Struct;796 readonly isTransact: boolean;797 readonly asTransact: {798 readonly originType: XcmV0OriginKind;799 readonly requireWeightAtMost: u64;800 readonly call: XcmDoubleEncoded;801 } & Struct;802 readonly isHrmpNewChannelOpenRequest: boolean;803 readonly asHrmpNewChannelOpenRequest: {804 readonly sender: Compact<u32>;805 readonly maxMessageSize: Compact<u32>;806 readonly maxCapacity: Compact<u32>;807 } & Struct;808 readonly isHrmpChannelAccepted: boolean;809 readonly asHrmpChannelAccepted: {810 readonly recipient: Compact<u32>;811 } & Struct;812 readonly isHrmpChannelClosing: boolean;813 readonly asHrmpChannelClosing: {814 readonly initiator: Compact<u32>;815 readonly sender: Compact<u32>;816 readonly recipient: Compact<u32>;817 } & Struct;818 readonly isRelayedFrom: boolean;819 readonly asRelayedFrom: {820 readonly who: XcmV0MultiLocation;821 readonly message: XcmV0Xcm;822 } & Struct;823 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';824 }825826 /** @name XcmV0MultiAsset (101) */827 export interface XcmV0MultiAsset extends Enum {828 readonly isNone: boolean;829 readonly isAll: boolean;830 readonly isAllFungible: boolean;831 readonly isAllNonFungible: boolean;832 readonly isAllAbstractFungible: boolean;833 readonly asAllAbstractFungible: {834 readonly id: Bytes;835 } & Struct;836 readonly isAllAbstractNonFungible: boolean;837 readonly asAllAbstractNonFungible: {838 readonly class: Bytes;839 } & Struct;840 readonly isAllConcreteFungible: boolean;841 readonly asAllConcreteFungible: {842 readonly id: XcmV0MultiLocation;843 } & Struct;844 readonly isAllConcreteNonFungible: boolean;845 readonly asAllConcreteNonFungible: {846 readonly class: XcmV0MultiLocation;847 } & Struct;848 readonly isAbstractFungible: boolean;849 readonly asAbstractFungible: {850 readonly id: Bytes;851 readonly amount: Compact<u128>;852 } & Struct;853 readonly isAbstractNonFungible: boolean;854 readonly asAbstractNonFungible: {855 readonly class: Bytes;856 readonly instance: XcmV1MultiassetAssetInstance;857 } & Struct;858 readonly isConcreteFungible: boolean;859 readonly asConcreteFungible: {860 readonly id: XcmV0MultiLocation;861 readonly amount: Compact<u128>;862 } & Struct;863 readonly isConcreteNonFungible: boolean;864 readonly asConcreteNonFungible: {865 readonly class: XcmV0MultiLocation;866 readonly instance: XcmV1MultiassetAssetInstance;867 } & Struct;868 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';869 }870871 /** @name XcmV1MultiassetAssetInstance (102) */872 export interface XcmV1MultiassetAssetInstance extends Enum {873 readonly isUndefined: boolean;874 readonly isIndex: boolean;875 readonly asIndex: Compact<u128>;876 readonly isArray4: boolean;877 readonly asArray4: U8aFixed;878 readonly isArray8: boolean;879 readonly asArray8: U8aFixed;880 readonly isArray16: boolean;881 readonly asArray16: U8aFixed;882 readonly isArray32: boolean;883 readonly asArray32: U8aFixed;884 readonly isBlob: boolean;885 readonly asBlob: Bytes;886 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';887 }888889 /** @name XcmV0Order (106) */890 export interface XcmV0Order extends Enum {891 readonly isNull: boolean;892 readonly isDepositAsset: boolean;893 readonly asDepositAsset: {894 readonly assets: Vec<XcmV0MultiAsset>;895 readonly dest: XcmV0MultiLocation;896 } & Struct;897 readonly isDepositReserveAsset: boolean;898 readonly asDepositReserveAsset: {899 readonly assets: Vec<XcmV0MultiAsset>;900 readonly dest: XcmV0MultiLocation;901 readonly effects: Vec<XcmV0Order>;902 } & Struct;903 readonly isExchangeAsset: boolean;904 readonly asExchangeAsset: {905 readonly give: Vec<XcmV0MultiAsset>;906 readonly receive: Vec<XcmV0MultiAsset>;907 } & Struct;908 readonly isInitiateReserveWithdraw: boolean;909 readonly asInitiateReserveWithdraw: {910 readonly assets: Vec<XcmV0MultiAsset>;911 readonly reserve: XcmV0MultiLocation;912 readonly effects: Vec<XcmV0Order>;913 } & Struct;914 readonly isInitiateTeleport: boolean;915 readonly asInitiateTeleport: {916 readonly assets: Vec<XcmV0MultiAsset>;917 readonly dest: XcmV0MultiLocation;918 readonly effects: Vec<XcmV0Order>;919 } & Struct;920 readonly isQueryHolding: boolean;921 readonly asQueryHolding: {922 readonly queryId: Compact<u64>;923 readonly dest: XcmV0MultiLocation;924 readonly assets: Vec<XcmV0MultiAsset>;925 } & Struct;926 readonly isBuyExecution: boolean;927 readonly asBuyExecution: {928 readonly fees: XcmV0MultiAsset;929 readonly weight: u64;930 readonly debt: u64;931 readonly haltOnError: bool;932 readonly xcm: Vec<XcmV0Xcm>;933 } & Struct;934 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';935 }936937 /** @name XcmV0Response (108) */938 export interface XcmV0Response extends Enum {939 readonly isAssets: boolean;940 readonly asAssets: Vec<XcmV0MultiAsset>;941 readonly type: 'Assets';942 }943944 /** @name XcmV0OriginKind (109) */945 export interface XcmV0OriginKind extends Enum {946 readonly isNative: boolean;947 readonly isSovereignAccount: boolean;948 readonly isSuperuser: boolean;949 readonly isXcm: boolean;950 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';951 }952953 /** @name XcmDoubleEncoded (110) */954 export interface XcmDoubleEncoded extends Struct {955 readonly encoded: Bytes;956 }957958 /** @name XcmV1Xcm (111) */959 export interface XcmV1Xcm extends Enum {960 readonly isWithdrawAsset: boolean;961 readonly asWithdrawAsset: {962 readonly assets: XcmV1MultiassetMultiAssets;963 readonly effects: Vec<XcmV1Order>;964 } & Struct;965 readonly isReserveAssetDeposited: boolean;966 readonly asReserveAssetDeposited: {967 readonly assets: XcmV1MultiassetMultiAssets;968 readonly effects: Vec<XcmV1Order>;969 } & Struct;970 readonly isReceiveTeleportedAsset: boolean;971 readonly asReceiveTeleportedAsset: {972 readonly assets: XcmV1MultiassetMultiAssets;973 readonly effects: Vec<XcmV1Order>;974 } & Struct;975 readonly isQueryResponse: boolean;976 readonly asQueryResponse: {977 readonly queryId: Compact<u64>;978 readonly response: XcmV1Response;979 } & Struct;980 readonly isTransferAsset: boolean;981 readonly asTransferAsset: {982 readonly assets: XcmV1MultiassetMultiAssets;983 readonly beneficiary: XcmV1MultiLocation;984 } & Struct;985 readonly isTransferReserveAsset: boolean;986 readonly asTransferReserveAsset: {987 readonly assets: XcmV1MultiassetMultiAssets;988 readonly dest: XcmV1MultiLocation;989 readonly effects: Vec<XcmV1Order>;990 } & Struct;991 readonly isTransact: boolean;992 readonly asTransact: {993 readonly originType: XcmV0OriginKind;994 readonly requireWeightAtMost: u64;995 readonly call: XcmDoubleEncoded;996 } & Struct;997 readonly isHrmpNewChannelOpenRequest: boolean;998 readonly asHrmpNewChannelOpenRequest: {999 readonly sender: Compact<u32>;1000 readonly maxMessageSize: Compact<u32>;1001 readonly maxCapacity: Compact<u32>;1002 } & Struct;1003 readonly isHrmpChannelAccepted: boolean;1004 readonly asHrmpChannelAccepted: {1005 readonly recipient: Compact<u32>;1006 } & Struct;1007 readonly isHrmpChannelClosing: boolean;1008 readonly asHrmpChannelClosing: {1009 readonly initiator: Compact<u32>;1010 readonly sender: Compact<u32>;1011 readonly recipient: Compact<u32>;1012 } & Struct;1013 readonly isRelayedFrom: boolean;1014 readonly asRelayedFrom: {1015 readonly who: XcmV1MultilocationJunctions;1016 readonly message: XcmV1Xcm;1017 } & Struct;1018 readonly isSubscribeVersion: boolean;1019 readonly asSubscribeVersion: {1020 readonly queryId: Compact<u64>;1021 readonly maxResponseWeight: Compact<u64>;1022 } & Struct;1023 readonly isUnsubscribeVersion: boolean;1024 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';1025 }10261027 /** @name XcmV1MultiassetMultiAssets (112) */1028 export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}10291030 /** @name XcmV1MultiAsset (114) */1031 export interface XcmV1MultiAsset extends Struct {1032 readonly id: XcmV1MultiassetAssetId;1033 readonly fun: XcmV1MultiassetFungibility;1034 }10351036 /** @name XcmV1MultiassetAssetId (115) */1037 export interface XcmV1MultiassetAssetId extends Enum {1038 readonly isConcrete: boolean;1039 readonly asConcrete: XcmV1MultiLocation;1040 readonly isAbstract: boolean;1041 readonly asAbstract: Bytes;1042 readonly type: 'Concrete' | 'Abstract';1043 }10441045 /** @name XcmV1MultiassetFungibility (116) */1046 export interface XcmV1MultiassetFungibility extends Enum {1047 readonly isFungible: boolean;1048 readonly asFungible: Compact<u128>;1049 readonly isNonFungible: boolean;1050 readonly asNonFungible: XcmV1MultiassetAssetInstance;1051 readonly type: 'Fungible' | 'NonFungible';1052 }10531054 /** @name XcmV1Order (118) */1055 export interface XcmV1Order extends Enum {1056 readonly isNoop: boolean;1057 readonly isDepositAsset: boolean;1058 readonly asDepositAsset: {1059 readonly assets: XcmV1MultiassetMultiAssetFilter;1060 readonly maxAssets: u32;1061 readonly beneficiary: XcmV1MultiLocation;1062 } & Struct;1063 readonly isDepositReserveAsset: boolean;1064 readonly asDepositReserveAsset: {1065 readonly assets: XcmV1MultiassetMultiAssetFilter;1066 readonly maxAssets: u32;1067 readonly dest: XcmV1MultiLocation;1068 readonly effects: Vec<XcmV1Order>;1069 } & Struct;1070 readonly isExchangeAsset: boolean;1071 readonly asExchangeAsset: {1072 readonly give: XcmV1MultiassetMultiAssetFilter;1073 readonly receive: XcmV1MultiassetMultiAssets;1074 } & Struct;1075 readonly isInitiateReserveWithdraw: boolean;1076 readonly asInitiateReserveWithdraw: {1077 readonly assets: XcmV1MultiassetMultiAssetFilter;1078 readonly reserve: XcmV1MultiLocation;1079 readonly effects: Vec<XcmV1Order>;1080 } & Struct;1081 readonly isInitiateTeleport: boolean;1082 readonly asInitiateTeleport: {1083 readonly assets: XcmV1MultiassetMultiAssetFilter;1084 readonly dest: XcmV1MultiLocation;1085 readonly effects: Vec<XcmV1Order>;1086 } & Struct;1087 readonly isQueryHolding: boolean;1088 readonly asQueryHolding: {1089 readonly queryId: Compact<u64>;1090 readonly dest: XcmV1MultiLocation;1091 readonly assets: XcmV1MultiassetMultiAssetFilter;1092 } & Struct;1093 readonly isBuyExecution: boolean;1094 readonly asBuyExecution: {1095 readonly fees: XcmV1MultiAsset;1096 readonly weight: u64;1097 readonly debt: u64;1098 readonly haltOnError: bool;1099 readonly instructions: Vec<XcmV1Xcm>;1100 } & Struct;1101 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';1102 }11031104 /** @name XcmV1MultiassetMultiAssetFilter (119) */1105 export interface XcmV1MultiassetMultiAssetFilter extends Enum {1106 readonly isDefinite: boolean;1107 readonly asDefinite: XcmV1MultiassetMultiAssets;1108 readonly isWild: boolean;1109 readonly asWild: XcmV1MultiassetWildMultiAsset;1110 readonly type: 'Definite' | 'Wild';1111 }11121113 /** @name XcmV1MultiassetWildMultiAsset (120) */1114 export interface XcmV1MultiassetWildMultiAsset extends Enum {1115 readonly isAll: boolean;1116 readonly isAllOf: boolean;1117 readonly asAllOf: {1118 readonly id: XcmV1MultiassetAssetId;1119 readonly fun: XcmV1MultiassetWildFungibility;1120 } & Struct;1121 readonly type: 'All' | 'AllOf';1122 }11231124 /** @name XcmV1MultiassetWildFungibility (121) */1125 export interface XcmV1MultiassetWildFungibility extends Enum {1126 readonly isFungible: boolean;1127 readonly isNonFungible: boolean;1128 readonly type: 'Fungible' | 'NonFungible';1129 }11301131 /** @name XcmV1Response (123) */1132 export interface XcmV1Response extends Enum {1133 readonly isAssets: boolean;1134 readonly asAssets: XcmV1MultiassetMultiAssets;1135 readonly isVersion: boolean;1136 readonly asVersion: u32;1137 readonly type: 'Assets' | 'Version';1138 }11391140 /** @name XcmV2Xcm (124) */1141 export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}11421143 /** @name XcmV2Instruction (126) */1144 export interface XcmV2Instruction extends Enum {1145 readonly isWithdrawAsset: boolean;1146 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;1147 readonly isReserveAssetDeposited: boolean;1148 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;1149 readonly isReceiveTeleportedAsset: boolean;1150 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;1151 readonly isQueryResponse: boolean;1152 readonly asQueryResponse: {1153 readonly queryId: Compact<u64>;1154 readonly response: XcmV2Response;1155 readonly maxWeight: Compact<u64>;1156 } & Struct;1157 readonly isTransferAsset: boolean;1158 readonly asTransferAsset: {1159 readonly assets: XcmV1MultiassetMultiAssets;1160 readonly beneficiary: XcmV1MultiLocation;1161 } & Struct;1162 readonly isTransferReserveAsset: boolean;1163 readonly asTransferReserveAsset: {1164 readonly assets: XcmV1MultiassetMultiAssets;1165 readonly dest: XcmV1MultiLocation;1166 readonly xcm: XcmV2Xcm;1167 } & Struct;1168 readonly isTransact: boolean;1169 readonly asTransact: {1170 readonly originType: XcmV0OriginKind;1171 readonly requireWeightAtMost: Compact<u64>;1172 readonly call: XcmDoubleEncoded;1173 } & Struct;1174 readonly isHrmpNewChannelOpenRequest: boolean;1175 readonly asHrmpNewChannelOpenRequest: {1176 readonly sender: Compact<u32>;1177 readonly maxMessageSize: Compact<u32>;1178 readonly maxCapacity: Compact<u32>;1179 } & Struct;1180 readonly isHrmpChannelAccepted: boolean;1181 readonly asHrmpChannelAccepted: {1182 readonly recipient: Compact<u32>;1183 } & Struct;1184 readonly isHrmpChannelClosing: boolean;1185 readonly asHrmpChannelClosing: {1186 readonly initiator: Compact<u32>;1187 readonly sender: Compact<u32>;1188 readonly recipient: Compact<u32>;1189 } & Struct;1190 readonly isClearOrigin: boolean;1191 readonly isDescendOrigin: boolean;1192 readonly asDescendOrigin: XcmV1MultilocationJunctions;1193 readonly isReportError: boolean;1194 readonly asReportError: {1195 readonly queryId: Compact<u64>;1196 readonly dest: XcmV1MultiLocation;1197 readonly maxResponseWeight: Compact<u64>;1198 } & Struct;1199 readonly isDepositAsset: boolean;1200 readonly asDepositAsset: {1201 readonly assets: XcmV1MultiassetMultiAssetFilter;1202 readonly maxAssets: Compact<u32>;1203 readonly beneficiary: XcmV1MultiLocation;1204 } & Struct;1205 readonly isDepositReserveAsset: boolean;1206 readonly asDepositReserveAsset: {1207 readonly assets: XcmV1MultiassetMultiAssetFilter;1208 readonly maxAssets: Compact<u32>;1209 readonly dest: XcmV1MultiLocation;1210 readonly xcm: XcmV2Xcm;1211 } & Struct;1212 readonly isExchangeAsset: boolean;1213 readonly asExchangeAsset: {1214 readonly give: XcmV1MultiassetMultiAssetFilter;1215 readonly receive: XcmV1MultiassetMultiAssets;1216 } & Struct;1217 readonly isInitiateReserveWithdraw: boolean;1218 readonly asInitiateReserveWithdraw: {1219 readonly assets: XcmV1MultiassetMultiAssetFilter;1220 readonly reserve: XcmV1MultiLocation;1221 readonly xcm: XcmV2Xcm;1222 } & Struct;1223 readonly isInitiateTeleport: boolean;1224 readonly asInitiateTeleport: {1225 readonly assets: XcmV1MultiassetMultiAssetFilter;1226 readonly dest: XcmV1MultiLocation;1227 readonly xcm: XcmV2Xcm;1228 } & Struct;1229 readonly isQueryHolding: boolean;1230 readonly asQueryHolding: {1231 readonly queryId: Compact<u64>;1232 readonly dest: XcmV1MultiLocation;1233 readonly assets: XcmV1MultiassetMultiAssetFilter;1234 readonly maxResponseWeight: Compact<u64>;1235 } & Struct;1236 readonly isBuyExecution: boolean;1237 readonly asBuyExecution: {1238 readonly fees: XcmV1MultiAsset;1239 readonly weightLimit: XcmV2WeightLimit;1240 } & Struct;1241 readonly isRefundSurplus: boolean;1242 readonly isSetErrorHandler: boolean;1243 readonly asSetErrorHandler: XcmV2Xcm;1244 readonly isSetAppendix: boolean;1245 readonly asSetAppendix: XcmV2Xcm;1246 readonly isClearError: boolean;1247 readonly isClaimAsset: boolean;1248 readonly asClaimAsset: {1249 readonly assets: XcmV1MultiassetMultiAssets;1250 readonly ticket: XcmV1MultiLocation;1251 } & Struct;1252 readonly isTrap: boolean;1253 readonly asTrap: Compact<u64>;1254 readonly isSubscribeVersion: boolean;1255 readonly asSubscribeVersion: {1256 readonly queryId: Compact<u64>;1257 readonly maxResponseWeight: Compact<u64>;1258 } & Struct;1259 readonly isUnsubscribeVersion: boolean;1260 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';1261 }12621263 /** @name XcmV2Response (127) */1264 export interface XcmV2Response extends Enum {1265 readonly isNull: boolean;1266 readonly isAssets: boolean;1267 readonly asAssets: XcmV1MultiassetMultiAssets;1268 readonly isExecutionResult: boolean;1269 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;1270 readonly isVersion: boolean;1271 readonly asVersion: u32;1272 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';1273 }12741275 /** @name XcmV2TraitsError (130) */1276 export interface XcmV2TraitsError extends Enum {1277 readonly isOverflow: boolean;1278 readonly isUnimplemented: boolean;1279 readonly isUntrustedReserveLocation: boolean;1280 readonly isUntrustedTeleportLocation: boolean;1281 readonly isMultiLocationFull: boolean;1282 readonly isMultiLocationNotInvertible: boolean;1283 readonly isBadOrigin: boolean;1284 readonly isInvalidLocation: boolean;1285 readonly isAssetNotFound: boolean;1286 readonly isFailedToTransactAsset: boolean;1287 readonly isNotWithdrawable: boolean;1288 readonly isLocationCannotHold: boolean;1289 readonly isExceedsMaxMessageSize: boolean;1290 readonly isDestinationUnsupported: boolean;1291 readonly isTransport: boolean;1292 readonly isUnroutable: boolean;1293 readonly isUnknownClaim: boolean;1294 readonly isFailedToDecode: boolean;1295 readonly isMaxWeightInvalid: boolean;1296 readonly isNotHoldingFees: boolean;1297 readonly isTooExpensive: boolean;1298 readonly isTrap: boolean;1299 readonly asTrap: u64;1300 readonly isUnhandledXcmVersion: boolean;1301 readonly isWeightLimitReached: boolean;1302 readonly asWeightLimitReached: u64;1303 readonly isBarrier: boolean;1304 readonly isWeightNotComputable: boolean;1305 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';1306 }13071308 /** @name XcmV2WeightLimit (131) */1309 export interface XcmV2WeightLimit extends Enum {1310 readonly isUnlimited: boolean;1311 readonly isLimited: boolean;1312 readonly asLimited: Compact<u64>;1313 readonly type: 'Unlimited' | 'Limited';1314 }13151316 /** @name XcmVersionedMultiAssets (132) */1317 export interface XcmVersionedMultiAssets extends Enum {1318 readonly isV0: boolean;1319 readonly asV0: Vec<XcmV0MultiAsset>;1320 readonly isV1: boolean;1321 readonly asV1: XcmV1MultiassetMultiAssets;1322 readonly type: 'V0' | 'V1';1323 }13241325 /** @name CumulusPalletXcmCall (147) */1326 export type CumulusPalletXcmCall = Null;13271328 /** @name CumulusPalletDmpQueueCall (148) */1329 export interface CumulusPalletDmpQueueCall extends Enum {1330 readonly isServiceOverweight: boolean;1331 readonly asServiceOverweight: {1332 readonly index: u64;1333 readonly weightLimit: u64;1334 } & Struct;1335 readonly type: 'ServiceOverweight';1336 }13371338 /** @name PalletInflationCall (149) */1339 export interface PalletInflationCall extends Enum {1340 readonly isStartInflation: boolean;1341 readonly asStartInflation: {1342 readonly inflationStartRelayBlock: u32;1343 } & Struct;1344 readonly type: 'StartInflation';1345 }13461347 /** @name PalletUniqueCall (150) */1348 export interface PalletUniqueCall extends Enum {1349 readonly isCreateCollection: boolean;1350 readonly asCreateCollection: {1351 readonly collectionName: Vec<u16>;1352 readonly collectionDescription: Vec<u16>;1353 readonly tokenPrefix: Bytes;1354 readonly mode: UpDataStructsCollectionMode;1355 } & Struct;1356 readonly isCreateCollectionEx: boolean;1357 readonly asCreateCollectionEx: {1358 readonly data: UpDataStructsCreateCollectionData;1359 } & Struct;1360 readonly isDestroyCollection: boolean;1361 readonly asDestroyCollection: {1362 readonly collectionId: u32;1363 } & Struct;1364 readonly isAddToAllowList: boolean;1365 readonly asAddToAllowList: {1366 readonly collectionId: u32;1367 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1368 } & Struct;1369 readonly isRemoveFromAllowList: boolean;1370 readonly asRemoveFromAllowList: {1371 readonly collectionId: u32;1372 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1373 } & Struct;1374 readonly isSetPublicAccessMode: boolean;1375 readonly asSetPublicAccessMode: {1376 readonly collectionId: u32;1377 readonly mode: UpDataStructsAccessMode;1378 } & Struct;1379 readonly isSetMintPermission: boolean;1380 readonly asSetMintPermission: {1381 readonly collectionId: u32;1382 readonly mintPermission: bool;1383 } & Struct;1384 readonly isChangeCollectionOwner: boolean;1385 readonly asChangeCollectionOwner: {1386 readonly collectionId: u32;1387 readonly newOwner: AccountId32;1388 } & Struct;1389 readonly isAddCollectionAdmin: boolean;1390 readonly asAddCollectionAdmin: {1391 readonly collectionId: u32;1392 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;1393 } & Struct;1394 readonly isRemoveCollectionAdmin: boolean;1395 readonly asRemoveCollectionAdmin: {1396 readonly collectionId: u32;1397 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;1398 } & Struct;1399 readonly isSetCollectionSponsor: boolean;1400 readonly asSetCollectionSponsor: {1401 readonly collectionId: u32;1402 readonly newSponsor: AccountId32;1403 } & Struct;1404 readonly isConfirmSponsorship: boolean;1405 readonly asConfirmSponsorship: {1406 readonly collectionId: u32;1407 } & Struct;1408 readonly isRemoveCollectionSponsor: boolean;1409 readonly asRemoveCollectionSponsor: {1410 readonly collectionId: u32;1411 } & Struct;1412 readonly isCreateItem: boolean;1413 readonly asCreateItem: {1414 readonly collectionId: u32;1415 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1416 readonly data: UpDataStructsCreateItemData;1417 } & Struct;1418 readonly isCreateMultipleItems: boolean;1419 readonly asCreateMultipleItems: {1420 readonly collectionId: u32;1421 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1422 readonly itemsData: Vec<UpDataStructsCreateItemData>;1423 } & Struct;1424 readonly isSetCollectionProperties: boolean;1425 readonly asSetCollectionProperties: {1426 readonly collectionId: u32;1427 readonly properties: Vec<UpDataStructsProperty>;1428 } & Struct;1429 readonly isDeleteCollectionProperties: boolean;1430 readonly asDeleteCollectionProperties: {1431 readonly collectionId: u32;1432 readonly propertyKeys: Vec<Bytes>;1433 } & Struct;1434 readonly isSetTokenProperties: boolean;1435 readonly asSetTokenProperties: {1436 readonly collectionId: u32;1437 readonly tokenId: u32;1438 readonly properties: Vec<UpDataStructsProperty>;1439 } & Struct;1440 readonly isDeleteTokenProperties: boolean;1441 readonly asDeleteTokenProperties: {1442 readonly collectionId: u32;1443 readonly tokenId: u32;1444 readonly propertyKeys: Vec<Bytes>;1445 } & Struct;1446 readonly isSetPropertyPermissions: boolean;1447 readonly asSetPropertyPermissions: {1448 readonly collectionId: u32;1449 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1450 } & Struct;1451 readonly isCreateMultipleItemsEx: boolean;1452 readonly asCreateMultipleItemsEx: {1453 readonly collectionId: u32;1454 readonly data: UpDataStructsCreateItemExData;1455 } & Struct;1456 readonly isSetTransfersEnabledFlag: boolean;1457 readonly asSetTransfersEnabledFlag: {1458 readonly collectionId: u32;1459 readonly value: bool;1460 } & Struct;1461 readonly isBurnItem: boolean;1462 readonly asBurnItem: {1463 readonly collectionId: u32;1464 readonly itemId: u32;1465 readonly value: u128;1466 } & Struct;1467 readonly isBurnFrom: boolean;1468 readonly asBurnFrom: {1469 readonly collectionId: u32;1470 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1471 readonly itemId: u32;1472 readonly value: u128;1473 } & Struct;1474 readonly isTransfer: boolean;1475 readonly asTransfer: {1476 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1477 readonly collectionId: u32;1478 readonly itemId: u32;1479 readonly value: u128;1480 } & Struct;1481 readonly isApprove: boolean;1482 readonly asApprove: {1483 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;1484 readonly collectionId: u32;1485 readonly itemId: u32;1486 readonly amount: u128;1487 } & Struct;1488 readonly isTransferFrom: boolean;1489 readonly asTransferFrom: {1490 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1491 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1492 readonly collectionId: u32;1493 readonly itemId: u32;1494 readonly value: u128;1495 } & Struct;1496 readonly isSetSchemaVersion: boolean;1497 readonly asSetSchemaVersion: {1498 readonly collectionId: u32;1499 readonly version: UpDataStructsSchemaVersion;1500 } & Struct;1501 readonly isSetOffchainSchema: boolean;1502 readonly asSetOffchainSchema: {1503 readonly collectionId: u32;1504 readonly schema: Bytes;1505 } & Struct;1506 readonly isSetConstOnChainSchema: boolean;1507 readonly asSetConstOnChainSchema: {1508 readonly collectionId: u32;1509 readonly schema: Bytes;1510 } & Struct;1511 readonly isSetCollectionLimits: boolean;1512 readonly asSetCollectionLimits: {1513 readonly collectionId: u32;1514 readonly newLimit: UpDataStructsCollectionLimits;1515 } & Struct;1516 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetCollectionLimits';1517 }15181519 /** @name UpDataStructsCollectionMode (156) */1520 export interface UpDataStructsCollectionMode extends Enum {1521 readonly isNft: boolean;1522 readonly isFungible: boolean;1523 readonly asFungible: u8;1524 readonly isReFungible: boolean;1525 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1526 }15271528 /** @name UpDataStructsCreateCollectionData (157) */1529 export interface UpDataStructsCreateCollectionData extends Struct {1530 readonly mode: UpDataStructsCollectionMode;1531 readonly access: Option<UpDataStructsAccessMode>;1532 readonly name: Vec<u16>;1533 readonly description: Vec<u16>;1534 readonly tokenPrefix: Bytes;1535 readonly offchainSchema: Bytes;1536 readonly schemaVersion: Option<UpDataStructsSchemaVersion>;1537 readonly pendingSponsor: Option<AccountId32>;1538 readonly limits: Option<UpDataStructsCollectionLimits>;1539 readonly constOnChainSchema: Bytes;1540 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1541 readonly properties: Vec<UpDataStructsProperty>;1542 }15431544 /** @name UpDataStructsAccessMode (159) */1545 export interface UpDataStructsAccessMode extends Enum {1546 readonly isNormal: boolean;1547 readonly isAllowList: boolean;1548 readonly type: 'Normal' | 'AllowList';1549 }15501551 /** @name UpDataStructsSchemaVersion (162) */1552 export interface UpDataStructsSchemaVersion extends Enum {1553 readonly isImageURL: boolean;1554 readonly isUnique: boolean;1555 readonly type: 'ImageURL' | 'Unique';1556 }15571558 /** @name UpDataStructsCollectionLimits (165) */1559 export interface UpDataStructsCollectionLimits extends Struct {1560 readonly accountTokenOwnershipLimit: Option<u32>;1561 readonly sponsoredDataSize: Option<u32>;1562 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;1563 readonly tokenLimit: Option<u32>;1564 readonly sponsorTransferTimeout: Option<u32>;1565 readonly sponsorApproveTimeout: Option<u32>;1566 readonly ownerCanTransfer: Option<bool>;1567 readonly ownerCanDestroy: Option<bool>;1568 readonly transfersEnabled: Option<bool>;1569 readonly nestingRule: Option<UpDataStructsNestingRule>;1570 }15711572 /** @name UpDataStructsSponsoringRateLimit (167) */1573 export interface UpDataStructsSponsoringRateLimit extends Enum {1574 readonly isSponsoringDisabled: boolean;1575 readonly isBlocks: boolean;1576 readonly asBlocks: u32;1577 readonly type: 'SponsoringDisabled' | 'Blocks';1578 }15791580 /** @name UpDataStructsNestingRule (170) */1581 export interface UpDataStructsNestingRule extends Enum {1582 readonly isDisabled: boolean;1583 readonly isOwner: boolean;1584 readonly isOwnerRestricted: boolean;1585 readonly asOwnerRestricted: BTreeSet<u32>;1586 readonly type: 'Disabled' | 'Owner' | 'OwnerRestricted';1587 }15881589 /** @name UpDataStructsPropertyKeyPermission (177) */1590 export interface UpDataStructsPropertyKeyPermission extends Struct {1591 readonly key: Bytes;1592 readonly permission: UpDataStructsPropertyPermission;1593 }15941595 /** @name UpDataStructsPropertyPermission (179) */1596 export interface UpDataStructsPropertyPermission extends Struct {1597 readonly mutable: bool;1598 readonly collectionAdmin: bool;1599 readonly tokenOwner: bool;1600 }16011602 /** @name UpDataStructsProperty (182) */1603 export interface UpDataStructsProperty extends Struct {1604 readonly key: Bytes;1605 readonly value: Bytes;1606 }16071608 /** @name PalletEvmAccountBasicCrossAccountIdRepr (184) */1609 export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1610 readonly isSubstrate: boolean;1611 readonly asSubstrate: AccountId32;1612 readonly isEthereum: boolean;1613 readonly asEthereum: H160;1614 readonly type: 'Substrate' | 'Ethereum';1615 }16161617 /** @name UpDataStructsCreateItemData (186) */1618 export interface UpDataStructsCreateItemData extends Enum {1619 readonly isNft: boolean;1620 readonly asNft: UpDataStructsCreateNftData;1621 readonly isFungible: boolean;1622 readonly asFungible: UpDataStructsCreateFungibleData;1623 readonly isReFungible: boolean;1624 readonly asReFungible: UpDataStructsCreateReFungibleData;1625 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1626 }16271628 /** @name UpDataStructsCreateNftData (187) */1629 export interface UpDataStructsCreateNftData extends Struct {1630 readonly constData: Bytes;1631 readonly properties: Vec<UpDataStructsProperty>;1632 }16331634 /** @name UpDataStructsCreateFungibleData (189) */1635 export interface UpDataStructsCreateFungibleData extends Struct {1636 readonly value: u128;1637 }16381639 /** @name UpDataStructsCreateReFungibleData (190) */1640 export interface UpDataStructsCreateReFungibleData extends Struct {1641 readonly constData: Bytes;1642 readonly pieces: u128;1643 }16441645 /** @name UpDataStructsCreateItemExData (194) */1646 export interface UpDataStructsCreateItemExData extends Enum {1647 readonly isNft: boolean;1648 readonly asNft: Vec<UpDataStructsCreateNftExData>;1649 readonly isFungible: boolean;1650 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1651 readonly isRefungibleMultipleItems: boolean;1652 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExData>;1653 readonly isRefungibleMultipleOwners: boolean;1654 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExData;1655 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';1656 }16571658 /** @name UpDataStructsCreateNftExData (196) */1659 export interface UpDataStructsCreateNftExData extends Struct {1660 readonly constData: Bytes;1661 readonly properties: Vec<UpDataStructsProperty>;1662 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1663 }16641665 /** @name UpDataStructsCreateRefungibleExData (203) */1666 export interface UpDataStructsCreateRefungibleExData extends Struct {1667 readonly constData: Bytes;1668 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1669 }16701671 /** @name PalletTemplateTransactionPaymentCall (205) */1672 export type PalletTemplateTransactionPaymentCall = Null;16731674 /** @name PalletStructureCall (206) */1675 export type PalletStructureCall = Null;16761677 /** @name PalletEvmCall (207) */1678 export interface PalletEvmCall extends Enum {1679 readonly isWithdraw: boolean;1680 readonly asWithdraw: {1681 readonly address: H160;1682 readonly value: u128;1683 } & Struct;1684 readonly isCall: boolean;1685 readonly asCall: {1686 readonly source: H160;1687 readonly target: H160;1688 readonly input: Bytes;1689 readonly value: U256;1690 readonly gasLimit: u64;1691 readonly maxFeePerGas: U256;1692 readonly maxPriorityFeePerGas: Option<U256>;1693 readonly nonce: Option<U256>;1694 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1695 } & Struct;1696 readonly isCreate: boolean;1697 readonly asCreate: {1698 readonly source: H160;1699 readonly init: Bytes;1700 readonly value: U256;1701 readonly gasLimit: u64;1702 readonly maxFeePerGas: U256;1703 readonly maxPriorityFeePerGas: Option<U256>;1704 readonly nonce: Option<U256>;1705 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1706 } & Struct;1707 readonly isCreate2: boolean;1708 readonly asCreate2: {1709 readonly source: H160;1710 readonly init: Bytes;1711 readonly salt: H256;1712 readonly value: U256;1713 readonly gasLimit: u64;1714 readonly maxFeePerGas: U256;1715 readonly maxPriorityFeePerGas: Option<U256>;1716 readonly nonce: Option<U256>;1717 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1718 } & Struct;1719 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1720 }17211722 /** @name PalletEthereumCall (213) */1723 export interface PalletEthereumCall extends Enum {1724 readonly isTransact: boolean;1725 readonly asTransact: {1726 readonly transaction: EthereumTransactionTransactionV2;1727 } & Struct;1728 readonly type: 'Transact';1729 }17301731 /** @name EthereumTransactionTransactionV2 (214) */1732 export interface EthereumTransactionTransactionV2 extends Enum {1733 readonly isLegacy: boolean;1734 readonly asLegacy: EthereumTransactionLegacyTransaction;1735 readonly isEip2930: boolean;1736 readonly asEip2930: EthereumTransactionEip2930Transaction;1737 readonly isEip1559: boolean;1738 readonly asEip1559: EthereumTransactionEip1559Transaction;1739 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';1740 }17411742 /** @name EthereumTransactionLegacyTransaction (215) */1743 export interface EthereumTransactionLegacyTransaction extends Struct {1744 readonly nonce: U256;1745 readonly gasPrice: U256;1746 readonly gasLimit: U256;1747 readonly action: EthereumTransactionTransactionAction;1748 readonly value: U256;1749 readonly input: Bytes;1750 readonly signature: EthereumTransactionTransactionSignature;1751 }17521753 /** @name EthereumTransactionTransactionAction (216) */1754 export interface EthereumTransactionTransactionAction extends Enum {1755 readonly isCall: boolean;1756 readonly asCall: H160;1757 readonly isCreate: boolean;1758 readonly type: 'Call' | 'Create';1759 }17601761 /** @name EthereumTransactionTransactionSignature (217) */1762 export interface EthereumTransactionTransactionSignature extends Struct {1763 readonly v: u64;1764 readonly r: H256;1765 readonly s: H256;1766 }17671768 /** @name EthereumTransactionEip2930Transaction (219) */1769 export interface EthereumTransactionEip2930Transaction extends Struct {1770 readonly chainId: u64;1771 readonly nonce: U256;1772 readonly gasPrice: U256;1773 readonly gasLimit: U256;1774 readonly action: EthereumTransactionTransactionAction;1775 readonly value: U256;1776 readonly input: Bytes;1777 readonly accessList: Vec<EthereumTransactionAccessListItem>;1778 readonly oddYParity: bool;1779 readonly r: H256;1780 readonly s: H256;1781 }17821783 /** @name EthereumTransactionAccessListItem (221) */1784 export interface EthereumTransactionAccessListItem extends Struct {1785 readonly address: H160;1786 readonly storageKeys: Vec<H256>;1787 }17881789 /** @name EthereumTransactionEip1559Transaction (222) */1790 export interface EthereumTransactionEip1559Transaction extends Struct {1791 readonly chainId: u64;1792 readonly nonce: U256;1793 readonly maxPriorityFeePerGas: U256;1794 readonly maxFeePerGas: U256;1795 readonly gasLimit: U256;1796 readonly action: EthereumTransactionTransactionAction;1797 readonly value: U256;1798 readonly input: Bytes;1799 readonly accessList: Vec<EthereumTransactionAccessListItem>;1800 readonly oddYParity: bool;1801 readonly r: H256;1802 readonly s: H256;1803 }18041805 /** @name PalletEvmMigrationCall (223) */1806 export interface PalletEvmMigrationCall extends Enum {1807 readonly isBegin: boolean;1808 readonly asBegin: {1809 readonly address: H160;1810 } & Struct;1811 readonly isSetData: boolean;1812 readonly asSetData: {1813 readonly address: H160;1814 readonly data: Vec<ITuple<[H256, H256]>>;1815 } & Struct;1816 readonly isFinish: boolean;1817 readonly asFinish: {1818 readonly address: H160;1819 readonly code: Bytes;1820 } & Struct;1821 readonly type: 'Begin' | 'SetData' | 'Finish';1822 }18231824 /** @name PalletSudoEvent (226) */1825 export interface PalletSudoEvent extends Enum {1826 readonly isSudid: boolean;1827 readonly asSudid: {1828 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1829 } & Struct;1830 readonly isKeyChanged: boolean;1831 readonly asKeyChanged: {1832 readonly oldSudoer: Option<AccountId32>;1833 } & Struct;1834 readonly isSudoAsDone: boolean;1835 readonly asSudoAsDone: {1836 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1837 } & Struct;1838 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1839 }18401841 /** @name SpRuntimeDispatchError (228) */1842 export interface SpRuntimeDispatchError extends Enum {1843 readonly isOther: boolean;1844 readonly isCannotLookup: boolean;1845 readonly isBadOrigin: boolean;1846 readonly isModule: boolean;1847 readonly asModule: SpRuntimeModuleError;1848 readonly isConsumerRemaining: boolean;1849 readonly isNoProviders: boolean;1850 readonly isTooManyConsumers: boolean;1851 readonly isToken: boolean;1852 readonly asToken: SpRuntimeTokenError;1853 readonly isArithmetic: boolean;1854 readonly asArithmetic: SpRuntimeArithmeticError;1855 readonly isTransactional: boolean;1856 readonly asTransactional: SpRuntimeTransactionalError;1857 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';1858 }18591860 /** @name SpRuntimeModuleError (229) */1861 export interface SpRuntimeModuleError extends Struct {1862 readonly index: u8;1863 readonly error: U8aFixed;1864 }18651866 /** @name SpRuntimeTokenError (230) */1867 export interface SpRuntimeTokenError extends Enum {1868 readonly isNoFunds: boolean;1869 readonly isWouldDie: boolean;1870 readonly isBelowMinimum: boolean;1871 readonly isCannotCreate: boolean;1872 readonly isUnknownAsset: boolean;1873 readonly isFrozen: boolean;1874 readonly isUnsupported: boolean;1875 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';1876 }18771878 /** @name SpRuntimeArithmeticError (231) */1879 export interface SpRuntimeArithmeticError extends Enum {1880 readonly isUnderflow: boolean;1881 readonly isOverflow: boolean;1882 readonly isDivisionByZero: boolean;1883 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';1884 }18851886 /** @name SpRuntimeTransactionalError (232) */1887 export interface SpRuntimeTransactionalError extends Enum {1888 readonly isLimitReached: boolean;1889 readonly isNoLayer: boolean;1890 readonly type: 'LimitReached' | 'NoLayer';1891 }18921893 /** @name PalletSudoError (233) */1894 export interface PalletSudoError extends Enum {1895 readonly isRequireSudo: boolean;1896 readonly type: 'RequireSudo';1897 }18981899 /** @name FrameSystemAccountInfo (234) */1900 export interface FrameSystemAccountInfo extends Struct {1901 readonly nonce: u32;1902 readonly consumers: u32;1903 readonly providers: u32;1904 readonly sufficients: u32;1905 readonly data: PalletBalancesAccountData;1906 }19071908 /** @name FrameSupportWeightsPerDispatchClassU64 (235) */1909 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {1910 readonly normal: u64;1911 readonly operational: u64;1912 readonly mandatory: u64;1913 }19141915 /** @name SpRuntimeDigest (236) */1916 export interface SpRuntimeDigest extends Struct {1917 readonly logs: Vec<SpRuntimeDigestDigestItem>;1918 }19191920 /** @name SpRuntimeDigestDigestItem (238) */1921 export interface SpRuntimeDigestDigestItem extends Enum {1922 readonly isOther: boolean;1923 readonly asOther: Bytes;1924 readonly isConsensus: boolean;1925 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;1926 readonly isSeal: boolean;1927 readonly asSeal: ITuple<[U8aFixed, Bytes]>;1928 readonly isPreRuntime: boolean;1929 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;1930 readonly isRuntimeEnvironmentUpdated: boolean;1931 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';1932 }19331934 /** @name FrameSystemEventRecord (240) */1935 export interface FrameSystemEventRecord extends Struct {1936 readonly phase: FrameSystemPhase;1937 readonly event: Event;1938 readonly topics: Vec<H256>;1939 }19401941 /** @name FrameSystemEvent (242) */1942 export interface FrameSystemEvent extends Enum {1943 readonly isExtrinsicSuccess: boolean;1944 readonly asExtrinsicSuccess: {1945 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;1946 } & Struct;1947 readonly isExtrinsicFailed: boolean;1948 readonly asExtrinsicFailed: {1949 readonly dispatchError: SpRuntimeDispatchError;1950 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;1951 } & Struct;1952 readonly isCodeUpdated: boolean;1953 readonly isNewAccount: boolean;1954 readonly asNewAccount: {1955 readonly account: AccountId32;1956 } & Struct;1957 readonly isKilledAccount: boolean;1958 readonly asKilledAccount: {1959 readonly account: AccountId32;1960 } & Struct;1961 readonly isRemarked: boolean;1962 readonly asRemarked: {1963 readonly sender: AccountId32;1964 readonly hash_: H256;1965 } & Struct;1966 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';1967 }19681969 /** @name FrameSupportWeightsDispatchInfo (243) */1970 export interface FrameSupportWeightsDispatchInfo extends Struct {1971 readonly weight: u64;1972 readonly class: FrameSupportWeightsDispatchClass;1973 readonly paysFee: FrameSupportWeightsPays;1974 }19751976 /** @name FrameSupportWeightsDispatchClass (244) */1977 export interface FrameSupportWeightsDispatchClass extends Enum {1978 readonly isNormal: boolean;1979 readonly isOperational: boolean;1980 readonly isMandatory: boolean;1981 readonly type: 'Normal' | 'Operational' | 'Mandatory';1982 }19831984 /** @name FrameSupportWeightsPays (245) */1985 export interface FrameSupportWeightsPays extends Enum {1986 readonly isYes: boolean;1987 readonly isNo: boolean;1988 readonly type: 'Yes' | 'No';1989 }19901991 /** @name OrmlVestingModuleEvent (246) */1992 export interface OrmlVestingModuleEvent extends Enum {1993 readonly isVestingScheduleAdded: boolean;1994 readonly asVestingScheduleAdded: {1995 readonly from: AccountId32;1996 readonly to: AccountId32;1997 readonly vestingSchedule: OrmlVestingVestingSchedule;1998 } & Struct;1999 readonly isClaimed: boolean;2000 readonly asClaimed: {2001 readonly who: AccountId32;2002 readonly amount: u128;2003 } & Struct;2004 readonly isVestingSchedulesUpdated: boolean;2005 readonly asVestingSchedulesUpdated: {2006 readonly who: AccountId32;2007 } & Struct;2008 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';2009 }20102011 /** @name CumulusPalletXcmpQueueEvent (247) */2012 export interface CumulusPalletXcmpQueueEvent extends Enum {2013 readonly isSuccess: boolean;2014 readonly asSuccess: Option<H256>;2015 readonly isFail: boolean;2016 readonly asFail: ITuple<[Option<H256>, XcmV2TraitsError]>;2017 readonly isBadVersion: boolean;2018 readonly asBadVersion: Option<H256>;2019 readonly isBadFormat: boolean;2020 readonly asBadFormat: Option<H256>;2021 readonly isUpwardMessageSent: boolean;2022 readonly asUpwardMessageSent: Option<H256>;2023 readonly isXcmpMessageSent: boolean;2024 readonly asXcmpMessageSent: Option<H256>;2025 readonly isOverweightEnqueued: boolean;2026 readonly asOverweightEnqueued: ITuple<[u32, u32, u64, u64]>;2027 readonly isOverweightServiced: boolean;2028 readonly asOverweightServiced: ITuple<[u64, u64]>;2029 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';2030 }20312032 /** @name PalletXcmEvent (248) */2033 export interface PalletXcmEvent extends Enum {2034 readonly isAttempted: boolean;2035 readonly asAttempted: XcmV2TraitsOutcome;2036 readonly isSent: boolean;2037 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;2038 readonly isUnexpectedResponse: boolean;2039 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;2040 readonly isResponseReady: boolean;2041 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;2042 readonly isNotified: boolean;2043 readonly asNotified: ITuple<[u64, u8, u8]>;2044 readonly isNotifyOverweight: boolean;2045 readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;2046 readonly isNotifyDispatchError: boolean;2047 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2048 readonly isNotifyDecodeFailed: boolean;2049 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;2050 readonly isInvalidResponder: boolean;2051 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;2052 readonly isInvalidResponderVersion: boolean;2053 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;2054 readonly isResponseTaken: boolean;2055 readonly asResponseTaken: u64;2056 readonly isAssetsTrapped: boolean;2057 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2058 readonly isVersionChangeNotified: boolean;2059 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;2060 readonly isSupportedVersionChanged: boolean;2061 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;2062 readonly isNotifyTargetSendFail: boolean;2063 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;2064 readonly isNotifyTargetMigrationFail: boolean;2065 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2066 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2067 }20682069 /** @name XcmV2TraitsOutcome (249) */2070 export interface XcmV2TraitsOutcome extends Enum {2071 readonly isComplete: boolean;2072 readonly asComplete: u64;2073 readonly isIncomplete: boolean;2074 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;2075 readonly isError: boolean;2076 readonly asError: XcmV2TraitsError;2077 readonly type: 'Complete' | 'Incomplete' | 'Error';2078 }20792080 /** @name CumulusPalletXcmEvent (251) */2081 export interface CumulusPalletXcmEvent extends Enum {2082 readonly isInvalidFormat: boolean;2083 readonly asInvalidFormat: U8aFixed;2084 readonly isUnsupportedVersion: boolean;2085 readonly asUnsupportedVersion: U8aFixed;2086 readonly isExecutedDownward: boolean;2087 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;2088 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';2089 }20902091 /** @name CumulusPalletDmpQueueEvent (252) */2092 export interface CumulusPalletDmpQueueEvent extends Enum {2093 readonly isInvalidFormat: boolean;2094 readonly asInvalidFormat: U8aFixed;2095 readonly isUnsupportedVersion: boolean;2096 readonly asUnsupportedVersion: U8aFixed;2097 readonly isExecutedDownward: boolean;2098 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;2099 readonly isWeightExhausted: boolean;2100 readonly asWeightExhausted: ITuple<[U8aFixed, u64, u64]>;2101 readonly isOverweightEnqueued: boolean;2102 readonly asOverweightEnqueued: ITuple<[U8aFixed, u64, u64]>;2103 readonly isOverweightServiced: boolean;2104 readonly asOverweightServiced: ITuple<[u64, u64]>;2105 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2106 }21072108 /** @name PalletUniqueRawEvent (253) */2109 export interface PalletUniqueRawEvent extends Enum {2110 readonly isCollectionSponsorRemoved: boolean;2111 readonly asCollectionSponsorRemoved: u32;2112 readonly isCollectionAdminAdded: boolean;2113 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2114 readonly isCollectionOwnedChanged: boolean;2115 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;2116 readonly isCollectionSponsorSet: boolean;2117 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;2118 readonly isConstOnChainSchemaSet: boolean;2119 readonly asConstOnChainSchemaSet: u32;2120 readonly isSponsorshipConfirmed: boolean;2121 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;2122 readonly isCollectionAdminRemoved: boolean;2123 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2124 readonly isAllowListAddressRemoved: boolean;2125 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2126 readonly isAllowListAddressAdded: boolean;2127 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2128 readonly isCollectionLimitSet: boolean;2129 readonly asCollectionLimitSet: u32;2130 readonly isMintPermissionSet: boolean;2131 readonly asMintPermissionSet: u32;2132 readonly isOffchainSchemaSet: boolean;2133 readonly asOffchainSchemaSet: u32;2134 readonly isPublicAccessModeSet: boolean;2135 readonly asPublicAccessModeSet: ITuple<[u32, UpDataStructsAccessMode]>;2136 readonly isSchemaVersionSet: boolean;2137 readonly asSchemaVersionSet: u32;2138 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet';2139 }21402141 /** @name PalletCommonEvent (254) */2142 export interface PalletCommonEvent extends Enum {2143 readonly isCollectionCreated: boolean;2144 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2145 readonly isCollectionDestroyed: boolean;2146 readonly asCollectionDestroyed: u32;2147 readonly isItemCreated: boolean;2148 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2149 readonly isItemDestroyed: boolean;2150 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2151 readonly isTransfer: boolean;2152 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2153 readonly isApproved: boolean;2154 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2155 readonly isCollectionPropertySet: boolean;2156 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;2157 readonly isCollectionPropertyDeleted: boolean;2158 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;2159 readonly isTokenPropertySet: boolean;2160 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;2161 readonly isTokenPropertyDeleted: boolean;2162 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;2163 readonly isPropertyPermissionSet: boolean;2164 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;2165 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';2166 }21672168 /** @name PalletStructureEvent (255) */2169 export interface PalletStructureEvent extends Enum {2170 readonly isExecuted: boolean;2171 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2172 readonly type: 'Executed';2173 }21742175 /** @name PalletEvmEvent (256) */2176 export interface PalletEvmEvent extends Enum {2177 readonly isLog: boolean;2178 readonly asLog: EthereumLog;2179 readonly isCreated: boolean;2180 readonly asCreated: H160;2181 readonly isCreatedFailed: boolean;2182 readonly asCreatedFailed: H160;2183 readonly isExecuted: boolean;2184 readonly asExecuted: H160;2185 readonly isExecutedFailed: boolean;2186 readonly asExecutedFailed: H160;2187 readonly isBalanceDeposit: boolean;2188 readonly asBalanceDeposit: ITuple<[AccountId32, H160, U256]>;2189 readonly isBalanceWithdraw: boolean;2190 readonly asBalanceWithdraw: ITuple<[AccountId32, H160, U256]>;2191 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2192 }21932194 /** @name EthereumLog (257) */2195 export interface EthereumLog extends Struct {2196 readonly address: H160;2197 readonly topics: Vec<H256>;2198 readonly data: Bytes;2199 }22002201 /** @name PalletEthereumEvent (258) */2202 export interface PalletEthereumEvent extends Enum {2203 readonly isExecuted: boolean;2204 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2205 readonly type: 'Executed';2206 }22072208 /** @name EvmCoreErrorExitReason (259) */2209 export interface EvmCoreErrorExitReason extends Enum {2210 readonly isSucceed: boolean;2211 readonly asSucceed: EvmCoreErrorExitSucceed;2212 readonly isError: boolean;2213 readonly asError: EvmCoreErrorExitError;2214 readonly isRevert: boolean;2215 readonly asRevert: EvmCoreErrorExitRevert;2216 readonly isFatal: boolean;2217 readonly asFatal: EvmCoreErrorExitFatal;2218 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2219 }22202221 /** @name EvmCoreErrorExitSucceed (260) */2222 export interface EvmCoreErrorExitSucceed extends Enum {2223 readonly isStopped: boolean;2224 readonly isReturned: boolean;2225 readonly isSuicided: boolean;2226 readonly type: 'Stopped' | 'Returned' | 'Suicided';2227 }22282229 /** @name EvmCoreErrorExitError (261) */2230 export interface EvmCoreErrorExitError extends Enum {2231 readonly isStackUnderflow: boolean;2232 readonly isStackOverflow: boolean;2233 readonly isInvalidJump: boolean;2234 readonly isInvalidRange: boolean;2235 readonly isDesignatedInvalid: boolean;2236 readonly isCallTooDeep: boolean;2237 readonly isCreateCollision: boolean;2238 readonly isCreateContractLimit: boolean;2239 readonly isOutOfOffset: boolean;2240 readonly isOutOfGas: boolean;2241 readonly isOutOfFund: boolean;2242 readonly isPcUnderflow: boolean;2243 readonly isCreateEmpty: boolean;2244 readonly isOther: boolean;2245 readonly asOther: Text;2246 readonly isInvalidCode: boolean;2247 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';2248 }22492250 /** @name EvmCoreErrorExitRevert (264) */2251 export interface EvmCoreErrorExitRevert extends Enum {2252 readonly isReverted: boolean;2253 readonly type: 'Reverted';2254 }22552256 /** @name EvmCoreErrorExitFatal (265) */2257 export interface EvmCoreErrorExitFatal extends Enum {2258 readonly isNotSupported: boolean;2259 readonly isUnhandledInterrupt: boolean;2260 readonly isCallErrorAsFatal: boolean;2261 readonly asCallErrorAsFatal: EvmCoreErrorExitError;2262 readonly isOther: boolean;2263 readonly asOther: Text;2264 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2265 }22662267 /** @name FrameSystemPhase (266) */2268 export interface FrameSystemPhase extends Enum {2269 readonly isApplyExtrinsic: boolean;2270 readonly asApplyExtrinsic: u32;2271 readonly isFinalization: boolean;2272 readonly isInitialization: boolean;2273 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2274 }22752276 /** @name FrameSystemLastRuntimeUpgradeInfo (268) */2277 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2278 readonly specVersion: Compact<u32>;2279 readonly specName: Text;2280 }22812282 /** @name FrameSystemLimitsBlockWeights (269) */2283 export interface FrameSystemLimitsBlockWeights extends Struct {2284 readonly baseBlock: u64;2285 readonly maxBlock: u64;2286 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2287 }22882289 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (270) */2290 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2291 readonly normal: FrameSystemLimitsWeightsPerClass;2292 readonly operational: FrameSystemLimitsWeightsPerClass;2293 readonly mandatory: FrameSystemLimitsWeightsPerClass;2294 }22952296 /** @name FrameSystemLimitsWeightsPerClass (271) */2297 export interface FrameSystemLimitsWeightsPerClass extends Struct {2298 readonly baseExtrinsic: u64;2299 readonly maxExtrinsic: Option<u64>;2300 readonly maxTotal: Option<u64>;2301 readonly reserved: Option<u64>;2302 }23032304 /** @name FrameSystemLimitsBlockLength (273) */2305 export interface FrameSystemLimitsBlockLength extends Struct {2306 readonly max: FrameSupportWeightsPerDispatchClassU32;2307 }23082309 /** @name FrameSupportWeightsPerDispatchClassU32 (274) */2310 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2311 readonly normal: u32;2312 readonly operational: u32;2313 readonly mandatory: u32;2314 }23152316 /** @name FrameSupportWeightsRuntimeDbWeight (275) */2317 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2318 readonly read: u64;2319 readonly write: u64;2320 }23212322 /** @name SpVersionRuntimeVersion (276) */2323 export interface SpVersionRuntimeVersion extends Struct {2324 readonly specName: Text;2325 readonly implName: Text;2326 readonly authoringVersion: u32;2327 readonly specVersion: u32;2328 readonly implVersion: u32;2329 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2330 readonly transactionVersion: u32;2331 readonly stateVersion: u8;2332 }23332334 /** @name FrameSystemError (280) */2335 export interface FrameSystemError extends Enum {2336 readonly isInvalidSpecName: boolean;2337 readonly isSpecVersionNeedsToIncrease: boolean;2338 readonly isFailedToExtractRuntimeVersion: boolean;2339 readonly isNonDefaultComposite: boolean;2340 readonly isNonZeroRefCount: boolean;2341 readonly isCallFiltered: boolean;2342 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2343 }23442345 /** @name OrmlVestingModuleError (282) */2346 export interface OrmlVestingModuleError extends Enum {2347 readonly isZeroVestingPeriod: boolean;2348 readonly isZeroVestingPeriodCount: boolean;2349 readonly isInsufficientBalanceToLock: boolean;2350 readonly isTooManyVestingSchedules: boolean;2351 readonly isAmountLow: boolean;2352 readonly isMaxVestingSchedulesExceeded: boolean;2353 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2354 }23552356 /** @name CumulusPalletXcmpQueueInboundChannelDetails (284) */2357 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2358 readonly sender: u32;2359 readonly state: CumulusPalletXcmpQueueInboundState;2360 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2361 }23622363 /** @name CumulusPalletXcmpQueueInboundState (285) */2364 export interface CumulusPalletXcmpQueueInboundState extends Enum {2365 readonly isOk: boolean;2366 readonly isSuspended: boolean;2367 readonly type: 'Ok' | 'Suspended';2368 }23692370 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (288) */2371 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2372 readonly isConcatenatedVersionedXcm: boolean;2373 readonly isConcatenatedEncodedBlob: boolean;2374 readonly isSignals: boolean;2375 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2376 }23772378 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (291) */2379 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2380 readonly recipient: u32;2381 readonly state: CumulusPalletXcmpQueueOutboundState;2382 readonly signalsExist: bool;2383 readonly firstIndex: u16;2384 readonly lastIndex: u16;2385 }23862387 /** @name CumulusPalletXcmpQueueOutboundState (292) */2388 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2389 readonly isOk: boolean;2390 readonly isSuspended: boolean;2391 readonly type: 'Ok' | 'Suspended';2392 }23932394 /** @name CumulusPalletXcmpQueueQueueConfigData (294) */2395 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2396 readonly suspendThreshold: u32;2397 readonly dropThreshold: u32;2398 readonly resumeThreshold: u32;2399 readonly thresholdWeight: u64;2400 readonly weightRestrictDecay: u64;2401 readonly xcmpMaxIndividualWeight: u64;2402 }24032404 /** @name CumulusPalletXcmpQueueError (296) */2405 export interface CumulusPalletXcmpQueueError extends Enum {2406 readonly isFailedToSend: boolean;2407 readonly isBadXcmOrigin: boolean;2408 readonly isBadXcm: boolean;2409 readonly isBadOverweightIndex: boolean;2410 readonly isWeightOverLimit: boolean;2411 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2412 }24132414 /** @name PalletXcmError (297) */2415 export interface PalletXcmError extends Enum {2416 readonly isUnreachable: boolean;2417 readonly isSendFailure: boolean;2418 readonly isFiltered: boolean;2419 readonly isUnweighableMessage: boolean;2420 readonly isDestinationNotInvertible: boolean;2421 readonly isEmpty: boolean;2422 readonly isCannotReanchor: boolean;2423 readonly isTooManyAssets: boolean;2424 readonly isInvalidOrigin: boolean;2425 readonly isBadVersion: boolean;2426 readonly isBadLocation: boolean;2427 readonly isNoSubscription: boolean;2428 readonly isAlreadySubscribed: boolean;2429 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2430 }24312432 /** @name CumulusPalletXcmError (298) */2433 export type CumulusPalletXcmError = Null;24342435 /** @name CumulusPalletDmpQueueConfigData (299) */2436 export interface CumulusPalletDmpQueueConfigData extends Struct {2437 readonly maxIndividual: u64;2438 }24392440 /** @name CumulusPalletDmpQueuePageIndexData (300) */2441 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2442 readonly beginUsed: u32;2443 readonly endUsed: u32;2444 readonly overweightCount: u64;2445 }24462447 /** @name CumulusPalletDmpQueueError (303) */2448 export interface CumulusPalletDmpQueueError extends Enum {2449 readonly isUnknown: boolean;2450 readonly isOverLimit: boolean;2451 readonly type: 'Unknown' | 'OverLimit';2452 }24532454 /** @name PalletUniqueError (307) */2455 export interface PalletUniqueError extends Enum {2456 readonly isCollectionDecimalPointLimitExceeded: boolean;2457 readonly isConfirmUnsetSponsorFail: boolean;2458 readonly isEmptyArgument: boolean;2459 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';2460 }24612462 /** @name UpDataStructsCollection (308) */2463 export interface UpDataStructsCollection extends Struct {2464 readonly owner: AccountId32;2465 readonly mode: UpDataStructsCollectionMode;2466 readonly access: UpDataStructsAccessMode;2467 readonly name: Vec<u16>;2468 readonly description: Vec<u16>;2469 readonly tokenPrefix: Bytes;2470 readonly mintMode: bool;2471 readonly schemaVersion: UpDataStructsSchemaVersion;2472 readonly sponsorship: UpDataStructsSponsorshipState;2473 readonly limits: UpDataStructsCollectionLimits;2474 }24752476 /** @name UpDataStructsSponsorshipState (309) */2477 export interface UpDataStructsSponsorshipState extends Enum {2478 readonly isDisabled: boolean;2479 readonly isUnconfirmed: boolean;2480 readonly asUnconfirmed: AccountId32;2481 readonly isConfirmed: boolean;2482 readonly asConfirmed: AccountId32;2483 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2484 }24852486 /** @name UpDataStructsProperties (310) */2487 export interface UpDataStructsProperties extends Struct {2488 readonly map: UpDataStructsPropertiesMapBoundedVec;2489 readonly consumedSpace: u32;2490 readonly spaceLimit: u32;2491 }24922493 /** @name UpDataStructsPropertiesMapBoundedVec (311) */2494 export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}24952496 /** @name UpDataStructsPropertiesMapPropertyPermission (316) */2497 export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}24982499 /** @name UpDataStructsCollectionField (322) */2500 export interface UpDataStructsCollectionField extends Enum {2501 readonly isConstOnChainSchema: boolean;2502 readonly isOffchainSchema: boolean;2503 readonly type: 'ConstOnChainSchema' | 'OffchainSchema';2504 }25052506 /** @name UpDataStructsCollectionStats (325) */2507 export interface UpDataStructsCollectionStats extends Struct {2508 readonly created: u32;2509 readonly destroyed: u32;2510 readonly alive: u32;2511 }25122513 /** @name PhantomTypeUpDataStructsTokenData (326) */2514 export interface PhantomTypeUpDataStructsTokenData extends Vec<UpDataStructsTokenData> {}25152516 /** @name UpDataStructsTokenData (327) */2517 export interface UpDataStructsTokenData extends Struct {2518 readonly constData: Bytes;2519 readonly properties: Vec<UpDataStructsProperty>;2520 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2521 }25222523 /** @name PhantomTypeUpDataStructsRpcCollection (330) */2524 export interface PhantomTypeUpDataStructsRpcCollection extends Vec<UpDataStructsRpcCollection> {}25252526 /** @name UpDataStructsRpcCollection (331) */2527 export interface UpDataStructsRpcCollection extends Struct {2528 readonly owner: AccountId32;2529 readonly mode: UpDataStructsCollectionMode;2530 readonly access: UpDataStructsAccessMode;2531 readonly name: Vec<u16>;2532 readonly description: Vec<u16>;2533 readonly tokenPrefix: Bytes;2534 readonly mintMode: bool;2535 readonly offchainSchema: Bytes;2536 readonly schemaVersion: UpDataStructsSchemaVersion;2537 readonly sponsorship: UpDataStructsSponsorshipState;2538 readonly limits: UpDataStructsCollectionLimits;2539 readonly constOnChainSchema: Bytes;2540 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2541 readonly properties: Vec<UpDataStructsProperty>;2542 }25432544 /** @name PhantomTypeUpDataStructsCollectionInfo (333) */2545 export interface PhantomTypeUpDataStructsCollectionInfo extends Vec<RmrkTypesCollectionInfo> {}25462547 /** @name RmrkTypesCollectionInfo (334) */2548 export interface RmrkTypesCollectionInfo extends Struct {2549 readonly issuer: AccountId32;2550 readonly metadata: Bytes;2551 readonly max: Option<u32>;2552 readonly symbol: Bytes;2553 readonly nftsCount: u32;2554 }25552556 /** @name PhantomTypeUpDataStructsNftInfo (338) */2557 export interface PhantomTypeUpDataStructsNftInfo extends Vec<RmrkTypesNftInfo> {}25582559 /** @name RmrkTypesNftInfo (339) */2560 export interface RmrkTypesNftInfo extends Struct {2561 readonly owner: RmrkTypesAccountIdOrCollectionNftTuple;2562 readonly royalty: Option<RmrkTypesRoyaltyInfo>;2563 readonly metadata: Bytes;2564 readonly equipped: bool;2565 readonly pending: bool;2566 }25672568 /** @name RmrkTypesAccountIdOrCollectionNftTuple (340) */2569 export interface RmrkTypesAccountIdOrCollectionNftTuple extends Enum {2570 readonly isAccountId: boolean;2571 readonly asAccountId: AccountId32;2572 readonly isCollectionAndNftTuple: boolean;2573 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;2574 readonly type: 'AccountId' | 'CollectionAndNftTuple';2575 }25762577 /** @name RmrkTypesRoyaltyInfo (342) */2578 export interface RmrkTypesRoyaltyInfo extends Struct {2579 readonly recipient: AccountId32;2580 readonly amount: Permill;2581 }25822583 /** @name PhantomTypeUpDataStructsResourceInfo (344) */2584 export interface PhantomTypeUpDataStructsResourceInfo extends Vec<RmrkTypesResourceInfo> {}25852586 /** @name RmrkTypesResourceInfo (345) */2587 export interface RmrkTypesResourceInfo extends Struct {2588 readonly id: Bytes;2589 readonly pending: bool;2590 readonly pendingRemoval: bool;2591 readonly parts: Option<Vec<u32>>;2592 readonly base: Option<u32>;2593 readonly src: Option<Bytes>;2594 readonly metadata: Option<Bytes>;2595 readonly slot: Option<u32>;2596 readonly license: Option<Bytes>;2597 readonly thumb: Option<Bytes>;2598 }25992600 /** @name PhantomTypeUpDataStructsPropertyInfo (351) */2601 export interface PhantomTypeUpDataStructsPropertyInfo extends Vec<RmrkTypesPropertyInfo> {}26022603 /** @name RmrkTypesPropertyInfo (352) */2604 export interface RmrkTypesPropertyInfo extends Struct {2605 readonly key: Bytes;2606 readonly value: Bytes;2607 }26082609 /** @name PhantomTypeUpDataStructsBaseInfo (356) */2610 export interface PhantomTypeUpDataStructsBaseInfo extends Vec<RmrkTypesBaseInfo> {}26112612 /** @name RmrkTypesBaseInfo (357) */2613 export interface RmrkTypesBaseInfo extends Struct {2614 readonly issuer: AccountId32;2615 readonly baseType: Bytes;2616 readonly symbol: Bytes;2617 }26182619 /** @name PhantomTypeUpDataStructsPartType (359) */2620 export interface PhantomTypeUpDataStructsPartType extends Vec<RmrkTypesPartType> {}26212622 /** @name RmrkTypesPartType (360) */2623 export interface RmrkTypesPartType extends Enum {2624 readonly isFixedPart: boolean;2625 readonly asFixedPart: RmrkTypesFixedPart;2626 readonly isSlotPart: boolean;2627 readonly asSlotPart: RmrkTypesSlotPart;2628 readonly type: 'FixedPart' | 'SlotPart';2629 }26302631 /** @name RmrkTypesFixedPart (362) */2632 export interface RmrkTypesFixedPart extends Struct {2633 readonly id: u32;2634 readonly z: u32;2635 readonly src: Bytes;2636 }26372638 /** @name RmrkTypesSlotPart (363) */2639 export interface RmrkTypesSlotPart extends Struct {2640 readonly id: u32;2641 readonly equippable: RmrkTypesEquippableList;2642 readonly src: Bytes;2643 readonly z: u32;2644 }26452646 /** @name RmrkTypesEquippableList (364) */2647 export interface RmrkTypesEquippableList extends Enum {2648 readonly isAll: boolean;2649 readonly isEmpty: boolean;2650 readonly isCustom: boolean;2651 readonly asCustom: Vec<u32>;2652 readonly type: 'All' | 'Empty' | 'Custom';2653 }26542655 /** @name PhantomTypeUpDataStructsTheme (366) */2656 export interface PhantomTypeUpDataStructsTheme extends Vec<RmrkTypesTheme> {}26572658 /** @name RmrkTypesTheme (367) */2659 export interface RmrkTypesTheme extends Struct {2660 readonly name: Bytes;2661 readonly properties: Vec<RmrkTypesThemeProperty>;2662 readonly inherit: bool;2663 }26642665 /** @name RmrkTypesThemeProperty (369) */2666 export interface RmrkTypesThemeProperty extends Struct {2667 readonly key: Bytes;2668 readonly value: Bytes;2669 }26702671 /** @name PhantomTypeUpDataStructsNftChild (371) */2672 export interface PhantomTypeUpDataStructsNftChild extends Vec<RmrkTypesNftChild> {}26732674 /** @name RmrkTypesNftChild (372) */2675 export interface RmrkTypesNftChild extends Struct {2676 readonly collectionId: u32;2677 readonly nftId: u32;2678 }26792680 /** @name PalletCommonError (374) */2681 export interface PalletCommonError extends Enum {2682 readonly isCollectionNotFound: boolean;2683 readonly isMustBeTokenOwner: boolean;2684 readonly isNoPermission: boolean;2685 readonly isPublicMintingNotAllowed: boolean;2686 readonly isAddressNotInAllowlist: boolean;2687 readonly isCollectionNameLimitExceeded: boolean;2688 readonly isCollectionDescriptionLimitExceeded: boolean;2689 readonly isCollectionTokenPrefixLimitExceeded: boolean;2690 readonly isTotalCollectionsLimitExceeded: boolean;2691 readonly isCollectionAdminCountExceeded: boolean;2692 readonly isCollectionLimitBoundsExceeded: boolean;2693 readonly isOwnerPermissionsCantBeReverted: boolean;2694 readonly isTransferNotAllowed: boolean;2695 readonly isAccountTokenLimitExceeded: boolean;2696 readonly isCollectionTokenLimitExceeded: boolean;2697 readonly isMetadataFlagFrozen: boolean;2698 readonly isTokenNotFound: boolean;2699 readonly isTokenValueTooLow: boolean;2700 readonly isApprovedValueTooLow: boolean;2701 readonly isCantApproveMoreThanOwned: boolean;2702 readonly isAddressIsZero: boolean;2703 readonly isUnsupportedOperation: boolean;2704 readonly isNotSufficientFounds: boolean;2705 readonly isNestingIsDisabled: boolean;2706 readonly isOnlyOwnerAllowedToNest: boolean;2707 readonly isSourceCollectionIsNotAllowedToNest: boolean;2708 readonly isCollectionFieldSizeExceeded: boolean;2709 readonly isNoSpaceForProperty: boolean;2710 readonly isPropertyLimitReached: boolean;2711 readonly isPropertyKeyIsTooLong: boolean;2712 readonly isInvalidCharacterInPropertyKey: boolean;2713 readonly isEmptyPropertyKey: boolean;2714 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey';2715 }27162717 /** @name PalletFungibleError (376) */2718 export interface PalletFungibleError extends Enum {2719 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;2720 readonly isFungibleItemsHaveNoId: boolean;2721 readonly isFungibleItemsDontHaveData: boolean;2722 readonly isFungibleDisallowsNesting: boolean;2723 readonly isSettingPropertiesNotAllowed: boolean;2724 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2725 }27262727 /** @name PalletRefungibleItemData (377) */2728 export interface PalletRefungibleItemData extends Struct {2729 readonly constData: Bytes;2730 }27312732 /** @name PalletRefungibleError (381) */2733 export interface PalletRefungibleError extends Enum {2734 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;2735 readonly isWrongRefungiblePieces: boolean;2736 readonly isRefungibleDisallowsNesting: boolean;2737 readonly isSettingPropertiesNotAllowed: boolean;2738 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2739 }27402741 /** @name PalletNonfungibleItemData (382) */2742 export interface PalletNonfungibleItemData extends Struct {2743 readonly constData: Bytes;2744 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2745 }27462747 /** @name PalletNonfungibleError (383) */2748 export interface PalletNonfungibleError extends Enum {2749 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2750 readonly isNonfungibleItemsHaveNoAmount: boolean;2751 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';2752 }27532754 /** @name PalletStructureError (384) */2755 export interface PalletStructureError extends Enum {2756 readonly isOuroborosDetected: boolean;2757 readonly isDepthLimit: boolean;2758 readonly isTokenNotFound: boolean;2759 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';2760 }27612762 /** @name PalletEvmError (387) */2763 export interface PalletEvmError extends Enum {2764 readonly isBalanceLow: boolean;2765 readonly isFeeOverflow: boolean;2766 readonly isPaymentOverflow: boolean;2767 readonly isWithdrawFailed: boolean;2768 readonly isGasPriceTooLow: boolean;2769 readonly isInvalidNonce: boolean;2770 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';2771 }27722773 /** @name FpRpcTransactionStatus (390) */2774 export interface FpRpcTransactionStatus extends Struct {2775 readonly transactionHash: H256;2776 readonly transactionIndex: u32;2777 readonly from: H160;2778 readonly to: Option<H160>;2779 readonly contractAddress: Option<H160>;2780 readonly logs: Vec<EthereumLog>;2781 readonly logsBloom: EthbloomBloom;2782 }27832784 /** @name EthbloomBloom (392) */2785 export interface EthbloomBloom extends U8aFixed {}27862787 /** @name EthereumReceiptReceiptV3 (394) */2788 export interface EthereumReceiptReceiptV3 extends Enum {2789 readonly isLegacy: boolean;2790 readonly asLegacy: EthereumReceiptEip658ReceiptData;2791 readonly isEip2930: boolean;2792 readonly asEip2930: EthereumReceiptEip658ReceiptData;2793 readonly isEip1559: boolean;2794 readonly asEip1559: EthereumReceiptEip658ReceiptData;2795 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2796 }27972798 /** @name EthereumReceiptEip658ReceiptData (395) */2799 export interface EthereumReceiptEip658ReceiptData extends Struct {2800 readonly statusCode: u8;2801 readonly usedGas: U256;2802 readonly logsBloom: EthbloomBloom;2803 readonly logs: Vec<EthereumLog>;2804 }28052806 /** @name EthereumBlock (396) */2807 export interface EthereumBlock extends Struct {2808 readonly header: EthereumHeader;2809 readonly transactions: Vec<EthereumTransactionTransactionV2>;2810 readonly ommers: Vec<EthereumHeader>;2811 }28122813 /** @name EthereumHeader (397) */2814 export interface EthereumHeader extends Struct {2815 readonly parentHash: H256;2816 readonly ommersHash: H256;2817 readonly beneficiary: H160;2818 readonly stateRoot: H256;2819 readonly transactionsRoot: H256;2820 readonly receiptsRoot: H256;2821 readonly logsBloom: EthbloomBloom;2822 readonly difficulty: U256;2823 readonly number: U256;2824 readonly gasLimit: U256;2825 readonly gasUsed: U256;2826 readonly timestamp: u64;2827 readonly extraData: Bytes;2828 readonly mixHash: H256;2829 readonly nonce: EthereumTypesHashH64;2830 }28312832 /** @name EthereumTypesHashH64 (398) */2833 export interface EthereumTypesHashH64 extends U8aFixed {}28342835 /** @name PalletEthereumError (403) */2836 export interface PalletEthereumError extends Enum {2837 readonly isInvalidSignature: boolean;2838 readonly isPreLogExists: boolean;2839 readonly type: 'InvalidSignature' | 'PreLogExists';2840 }28412842 /** @name PalletEvmCoderSubstrateError (404) */2843 export interface PalletEvmCoderSubstrateError extends Enum {2844 readonly isOutOfGas: boolean;2845 readonly isOutOfFund: boolean;2846 readonly type: 'OutOfGas' | 'OutOfFund';2847 }28482849 /** @name PalletEvmContractHelpersSponsoringModeT (405) */2850 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {2851 readonly isDisabled: boolean;2852 readonly isAllowlisted: boolean;2853 readonly isGenerous: boolean;2854 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';2855 }28562857 /** @name PalletEvmContractHelpersError (407) */2858 export interface PalletEvmContractHelpersError extends Enum {2859 readonly isNoPermission: boolean;2860 readonly type: 'NoPermission';2861 }28622863 /** @name PalletEvmMigrationError (408) */2864 export interface PalletEvmMigrationError extends Enum {2865 readonly isAccountNotEmpty: boolean;2866 readonly isAccountIsNotMigrating: boolean;2867 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';2868 }28692870 /** @name SpRuntimeMultiSignature (410) */2871 export interface SpRuntimeMultiSignature extends Enum {2872 readonly isEd25519: boolean;2873 readonly asEd25519: SpCoreEd25519Signature;2874 readonly isSr25519: boolean;2875 readonly asSr25519: SpCoreSr25519Signature;2876 readonly isEcdsa: boolean;2877 readonly asEcdsa: SpCoreEcdsaSignature;2878 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2879 }28802881 /** @name SpCoreEd25519Signature (411) */2882 export interface SpCoreEd25519Signature extends U8aFixed {}28832884 /** @name SpCoreSr25519Signature (413) */2885 export interface SpCoreSr25519Signature extends U8aFixed {}28862887 /** @name SpCoreEcdsaSignature (414) */2888 export interface SpCoreEcdsaSignature extends U8aFixed {}28892890 /** @name FrameSystemExtensionsCheckSpecVersion (417) */2891 export type FrameSystemExtensionsCheckSpecVersion = Null;28922893 /** @name FrameSystemExtensionsCheckGenesis (418) */2894 export type FrameSystemExtensionsCheckGenesis = Null;28952896 /** @name FrameSystemExtensionsCheckNonce (421) */2897 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}28982899 /** @name FrameSystemExtensionsCheckWeight (422) */2900 export type FrameSystemExtensionsCheckWeight = Null;29012902 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (423) */2903 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}29042905 /** @name OpalRuntimeRuntime (424) */2906 export type OpalRuntimeRuntime = Null;29072908 /** @name PalletEthereumFakeTransactionFinalizer (425) */2909 export type PalletEthereumFakeTransactionFinalizer = Null;29102911} // declare module1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34declare module '@polkadot/types/lookup' {5 import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';6 import type { ITuple } from '@polkadot/types-codec/types';7 import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';8 import type { Event } from '@polkadot/types/interfaces/system';910 /** @name PolkadotPrimitivesV2PersistedValidationData (2) */11 export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {12 readonly parentHead: Bytes;13 readonly relayParentNumber: u32;14 readonly relayParentStorageRoot: H256;15 readonly maxPovSize: u32;16 }1718 /** @name PolkadotPrimitivesV2UpgradeRestriction (9) */19 export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {20 readonly isPresent: boolean;21 readonly type: 'Present';22 }2324 /** @name SpTrieStorageProof (10) */25 export interface SpTrieStorageProof extends Struct {26 readonly trieNodes: BTreeSet<Bytes>;27 }2829 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (13) */30 export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {31 readonly dmqMqcHead: H256;32 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;33 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;34 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;35 }3637 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (18) */38 export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {39 readonly maxCapacity: u32;40 readonly maxTotalSize: u32;41 readonly maxMessageSize: u32;42 readonly msgCount: u32;43 readonly totalSize: u32;44 readonly mqcHead: Option<H256>;45 }4647 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (20) */48 export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {49 readonly maxCodeSize: u32;50 readonly maxHeadDataSize: u32;51 readonly maxUpwardQueueCount: u32;52 readonly maxUpwardQueueSize: u32;53 readonly maxUpwardMessageSize: u32;54 readonly maxUpwardMessageNumPerCandidate: u32;55 readonly hrmpMaxMessageNumPerCandidate: u32;56 readonly validationUpgradeCooldown: u32;57 readonly validationUpgradeDelay: u32;58 }5960 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (26) */61 export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {62 readonly recipient: u32;63 readonly data: Bytes;64 }6566 /** @name CumulusPalletParachainSystemCall (28) */67 export interface CumulusPalletParachainSystemCall extends Enum {68 readonly isSetValidationData: boolean;69 readonly asSetValidationData: {70 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;71 } & Struct;72 readonly isSudoSendUpwardMessage: boolean;73 readonly asSudoSendUpwardMessage: {74 readonly message: Bytes;75 } & Struct;76 readonly isAuthorizeUpgrade: boolean;77 readonly asAuthorizeUpgrade: {78 readonly codeHash: H256;79 } & Struct;80 readonly isEnactAuthorizedUpgrade: boolean;81 readonly asEnactAuthorizedUpgrade: {82 readonly code: Bytes;83 } & Struct;84 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';85 }8687 /** @name CumulusPrimitivesParachainInherentParachainInherentData (29) */88 export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {89 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;90 readonly relayChainState: SpTrieStorageProof;91 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;92 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;93 }9495 /** @name PolkadotCorePrimitivesInboundDownwardMessage (31) */96 export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {97 readonly sentAt: u32;98 readonly msg: Bytes;99 }100101 /** @name PolkadotCorePrimitivesInboundHrmpMessage (34) */102 export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {103 readonly sentAt: u32;104 readonly data: Bytes;105 }106107 /** @name CumulusPalletParachainSystemEvent (37) */108 export interface CumulusPalletParachainSystemEvent extends Enum {109 readonly isValidationFunctionStored: boolean;110 readonly isValidationFunctionApplied: boolean;111 readonly asValidationFunctionApplied: u32;112 readonly isValidationFunctionDiscarded: boolean;113 readonly isUpgradeAuthorized: boolean;114 readonly asUpgradeAuthorized: H256;115 readonly isDownwardMessagesReceived: boolean;116 readonly asDownwardMessagesReceived: u32;117 readonly isDownwardMessagesProcessed: boolean;118 readonly asDownwardMessagesProcessed: ITuple<[u64, H256]>;119 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';120 }121122 /** @name CumulusPalletParachainSystemError (38) */123 export interface CumulusPalletParachainSystemError extends Enum {124 readonly isOverlappingUpgrades: boolean;125 readonly isProhibitedByPolkadot: boolean;126 readonly isTooBig: boolean;127 readonly isValidationDataNotAvailable: boolean;128 readonly isHostConfigurationNotAvailable: boolean;129 readonly isNotScheduled: boolean;130 readonly isNothingAuthorized: boolean;131 readonly isUnauthorized: boolean;132 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';133 }134135 /** @name PalletBalancesAccountData (41) */136 export interface PalletBalancesAccountData extends Struct {137 readonly free: u128;138 readonly reserved: u128;139 readonly miscFrozen: u128;140 readonly feeFrozen: u128;141 }142143 /** @name PalletBalancesBalanceLock (43) */144 export interface PalletBalancesBalanceLock extends Struct {145 readonly id: U8aFixed;146 readonly amount: u128;147 readonly reasons: PalletBalancesReasons;148 }149150 /** @name PalletBalancesReasons (45) */151 export interface PalletBalancesReasons extends Enum {152 readonly isFee: boolean;153 readonly isMisc: boolean;154 readonly isAll: boolean;155 readonly type: 'Fee' | 'Misc' | 'All';156 }157158 /** @name PalletBalancesReserveData (48) */159 export interface PalletBalancesReserveData extends Struct {160 readonly id: U8aFixed;161 readonly amount: u128;162 }163164 /** @name PalletBalancesReleases (50) */165 export interface PalletBalancesReleases extends Enum {166 readonly isV100: boolean;167 readonly isV200: boolean;168 readonly type: 'V100' | 'V200';169 }170171 /** @name PalletBalancesCall (51) */172 export interface PalletBalancesCall extends Enum {173 readonly isTransfer: boolean;174 readonly asTransfer: {175 readonly dest: MultiAddress;176 readonly value: Compact<u128>;177 } & Struct;178 readonly isSetBalance: boolean;179 readonly asSetBalance: {180 readonly who: MultiAddress;181 readonly newFree: Compact<u128>;182 readonly newReserved: Compact<u128>;183 } & Struct;184 readonly isForceTransfer: boolean;185 readonly asForceTransfer: {186 readonly source: MultiAddress;187 readonly dest: MultiAddress;188 readonly value: Compact<u128>;189 } & Struct;190 readonly isTransferKeepAlive: boolean;191 readonly asTransferKeepAlive: {192 readonly dest: MultiAddress;193 readonly value: Compact<u128>;194 } & Struct;195 readonly isTransferAll: boolean;196 readonly asTransferAll: {197 readonly dest: MultiAddress;198 readonly keepAlive: bool;199 } & Struct;200 readonly isForceUnreserve: boolean;201 readonly asForceUnreserve: {202 readonly who: MultiAddress;203 readonly amount: u128;204 } & Struct;205 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';206 }207208 /** @name PalletBalancesEvent (57) */209 export interface PalletBalancesEvent extends Enum {210 readonly isEndowed: boolean;211 readonly asEndowed: {212 readonly account: AccountId32;213 readonly freeBalance: u128;214 } & Struct;215 readonly isDustLost: boolean;216 readonly asDustLost: {217 readonly account: AccountId32;218 readonly amount: u128;219 } & Struct;220 readonly isTransfer: boolean;221 readonly asTransfer: {222 readonly from: AccountId32;223 readonly to: AccountId32;224 readonly amount: u128;225 } & Struct;226 readonly isBalanceSet: boolean;227 readonly asBalanceSet: {228 readonly who: AccountId32;229 readonly free: u128;230 readonly reserved: u128;231 } & Struct;232 readonly isReserved: boolean;233 readonly asReserved: {234 readonly who: AccountId32;235 readonly amount: u128;236 } & Struct;237 readonly isUnreserved: boolean;238 readonly asUnreserved: {239 readonly who: AccountId32;240 readonly amount: u128;241 } & Struct;242 readonly isReserveRepatriated: boolean;243 readonly asReserveRepatriated: {244 readonly from: AccountId32;245 readonly to: AccountId32;246 readonly amount: u128;247 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;248 } & Struct;249 readonly isDeposit: boolean;250 readonly asDeposit: {251 readonly who: AccountId32;252 readonly amount: u128;253 } & Struct;254 readonly isWithdraw: boolean;255 readonly asWithdraw: {256 readonly who: AccountId32;257 readonly amount: u128;258 } & Struct;259 readonly isSlashed: boolean;260 readonly asSlashed: {261 readonly who: AccountId32;262 readonly amount: u128;263 } & Struct;264 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';265 }266267 /** @name FrameSupportTokensMiscBalanceStatus (58) */268 export interface FrameSupportTokensMiscBalanceStatus extends Enum {269 readonly isFree: boolean;270 readonly isReserved: boolean;271 readonly type: 'Free' | 'Reserved';272 }273274 /** @name PalletBalancesError (59) */275 export interface PalletBalancesError extends Enum {276 readonly isVestingBalance: boolean;277 readonly isLiquidityRestrictions: boolean;278 readonly isInsufficientBalance: boolean;279 readonly isExistentialDeposit: boolean;280 readonly isKeepAlive: boolean;281 readonly isExistingVestingSchedule: boolean;282 readonly isDeadAccount: boolean;283 readonly isTooManyReserves: boolean;284 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';285 }286287 /** @name PalletTimestampCall (62) */288 export interface PalletTimestampCall extends Enum {289 readonly isSet: boolean;290 readonly asSet: {291 readonly now: Compact<u64>;292 } & Struct;293 readonly type: 'Set';294 }295296 /** @name PalletTransactionPaymentReleases (65) */297 export interface PalletTransactionPaymentReleases extends Enum {298 readonly isV1Ancient: boolean;299 readonly isV2: boolean;300 readonly type: 'V1Ancient' | 'V2';301 }302303 /** @name FrameSupportWeightsWeightToFeeCoefficient (67) */304 export interface FrameSupportWeightsWeightToFeeCoefficient extends Struct {305 readonly coeffInteger: u128;306 readonly coeffFrac: Perbill;307 readonly negative: bool;308 readonly degree: u8;309 }310311 /** @name PalletTreasuryProposal (69) */312 export interface PalletTreasuryProposal extends Struct {313 readonly proposer: AccountId32;314 readonly value: u128;315 readonly beneficiary: AccountId32;316 readonly bond: u128;317 }318319 /** @name PalletTreasuryCall (72) */320 export interface PalletTreasuryCall extends Enum {321 readonly isProposeSpend: boolean;322 readonly asProposeSpend: {323 readonly value: Compact<u128>;324 readonly beneficiary: MultiAddress;325 } & Struct;326 readonly isRejectProposal: boolean;327 readonly asRejectProposal: {328 readonly proposalId: Compact<u32>;329 } & Struct;330 readonly isApproveProposal: boolean;331 readonly asApproveProposal: {332 readonly proposalId: Compact<u32>;333 } & Struct;334 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal';335 }336337 /** @name PalletTreasuryEvent (74) */338 export interface PalletTreasuryEvent extends Enum {339 readonly isProposed: boolean;340 readonly asProposed: {341 readonly proposalIndex: u32;342 } & Struct;343 readonly isSpending: boolean;344 readonly asSpending: {345 readonly budgetRemaining: u128;346 } & Struct;347 readonly isAwarded: boolean;348 readonly asAwarded: {349 readonly proposalIndex: u32;350 readonly award: u128;351 readonly account: AccountId32;352 } & Struct;353 readonly isRejected: boolean;354 readonly asRejected: {355 readonly proposalIndex: u32;356 readonly slashed: u128;357 } & Struct;358 readonly isBurnt: boolean;359 readonly asBurnt: {360 readonly burntFunds: u128;361 } & Struct;362 readonly isRollover: boolean;363 readonly asRollover: {364 readonly rolloverBalance: u128;365 } & Struct;366 readonly isDeposit: boolean;367 readonly asDeposit: {368 readonly value: u128;369 } & Struct;370 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit';371 }372373 /** @name FrameSupportPalletId (77) */374 export interface FrameSupportPalletId extends U8aFixed {}375376 /** @name PalletTreasuryError (78) */377 export interface PalletTreasuryError extends Enum {378 readonly isInsufficientProposersBalance: boolean;379 readonly isInvalidIndex: boolean;380 readonly isTooManyApprovals: boolean;381 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals';382 }383384 /** @name PalletSudoCall (79) */385 export interface PalletSudoCall extends Enum {386 readonly isSudo: boolean;387 readonly asSudo: {388 readonly call: Call;389 } & Struct;390 readonly isSudoUncheckedWeight: boolean;391 readonly asSudoUncheckedWeight: {392 readonly call: Call;393 readonly weight: u64;394 } & Struct;395 readonly isSetKey: boolean;396 readonly asSetKey: {397 readonly new_: MultiAddress;398 } & Struct;399 readonly isSudoAs: boolean;400 readonly asSudoAs: {401 readonly who: MultiAddress;402 readonly call: Call;403 } & Struct;404 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';405 }406407 /** @name FrameSystemCall (81) */408 export interface FrameSystemCall extends Enum {409 readonly isFillBlock: boolean;410 readonly asFillBlock: {411 readonly ratio: Perbill;412 } & Struct;413 readonly isRemark: boolean;414 readonly asRemark: {415 readonly remark: Bytes;416 } & Struct;417 readonly isSetHeapPages: boolean;418 readonly asSetHeapPages: {419 readonly pages: u64;420 } & Struct;421 readonly isSetCode: boolean;422 readonly asSetCode: {423 readonly code: Bytes;424 } & Struct;425 readonly isSetCodeWithoutChecks: boolean;426 readonly asSetCodeWithoutChecks: {427 readonly code: Bytes;428 } & Struct;429 readonly isSetStorage: boolean;430 readonly asSetStorage: {431 readonly items: Vec<ITuple<[Bytes, Bytes]>>;432 } & Struct;433 readonly isKillStorage: boolean;434 readonly asKillStorage: {435 readonly keys_: Vec<Bytes>;436 } & Struct;437 readonly isKillPrefix: boolean;438 readonly asKillPrefix: {439 readonly prefix: Bytes;440 readonly subkeys: u32;441 } & Struct;442 readonly isRemarkWithEvent: boolean;443 readonly asRemarkWithEvent: {444 readonly remark: Bytes;445 } & Struct;446 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';447 }448449 /** @name OrmlVestingModuleCall (84) */450 export interface OrmlVestingModuleCall extends Enum {451 readonly isClaim: boolean;452 readonly isVestedTransfer: boolean;453 readonly asVestedTransfer: {454 readonly dest: MultiAddress;455 readonly schedule: OrmlVestingVestingSchedule;456 } & Struct;457 readonly isUpdateVestingSchedules: boolean;458 readonly asUpdateVestingSchedules: {459 readonly who: MultiAddress;460 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;461 } & Struct;462 readonly isClaimFor: boolean;463 readonly asClaimFor: {464 readonly dest: MultiAddress;465 } & Struct;466 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';467 }468469 /** @name OrmlVestingVestingSchedule (85) */470 export interface OrmlVestingVestingSchedule extends Struct {471 readonly start: u32;472 readonly period: u32;473 readonly periodCount: u32;474 readonly perPeriod: Compact<u128>;475 }476477 /** @name CumulusPalletXcmpQueueCall (87) */478 export interface CumulusPalletXcmpQueueCall extends Enum {479 readonly isServiceOverweight: boolean;480 readonly asServiceOverweight: {481 readonly index: u64;482 readonly weightLimit: u64;483 } & Struct;484 readonly isSuspendXcmExecution: boolean;485 readonly isResumeXcmExecution: boolean;486 readonly isUpdateSuspendThreshold: boolean;487 readonly asUpdateSuspendThreshold: {488 readonly new_: u32;489 } & Struct;490 readonly isUpdateDropThreshold: boolean;491 readonly asUpdateDropThreshold: {492 readonly new_: u32;493 } & Struct;494 readonly isUpdateResumeThreshold: boolean;495 readonly asUpdateResumeThreshold: {496 readonly new_: u32;497 } & Struct;498 readonly isUpdateThresholdWeight: boolean;499 readonly asUpdateThresholdWeight: {500 readonly new_: u64;501 } & Struct;502 readonly isUpdateWeightRestrictDecay: boolean;503 readonly asUpdateWeightRestrictDecay: {504 readonly new_: u64;505 } & Struct;506 readonly isUpdateXcmpMaxIndividualWeight: boolean;507 readonly asUpdateXcmpMaxIndividualWeight: {508 readonly new_: u64;509 } & Struct;510 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';511 }512513 /** @name PalletXcmCall (88) */514 export interface PalletXcmCall extends Enum {515 readonly isSend: boolean;516 readonly asSend: {517 readonly dest: XcmVersionedMultiLocation;518 readonly message: XcmVersionedXcm;519 } & Struct;520 readonly isTeleportAssets: boolean;521 readonly asTeleportAssets: {522 readonly dest: XcmVersionedMultiLocation;523 readonly beneficiary: XcmVersionedMultiLocation;524 readonly assets: XcmVersionedMultiAssets;525 readonly feeAssetItem: u32;526 } & Struct;527 readonly isReserveTransferAssets: boolean;528 readonly asReserveTransferAssets: {529 readonly dest: XcmVersionedMultiLocation;530 readonly beneficiary: XcmVersionedMultiLocation;531 readonly assets: XcmVersionedMultiAssets;532 readonly feeAssetItem: u32;533 } & Struct;534 readonly isExecute: boolean;535 readonly asExecute: {536 readonly message: XcmVersionedXcm;537 readonly maxWeight: u64;538 } & Struct;539 readonly isForceXcmVersion: boolean;540 readonly asForceXcmVersion: {541 readonly location: XcmV1MultiLocation;542 readonly xcmVersion: u32;543 } & Struct;544 readonly isForceDefaultXcmVersion: boolean;545 readonly asForceDefaultXcmVersion: {546 readonly maybeXcmVersion: Option<u32>;547 } & Struct;548 readonly isForceSubscribeVersionNotify: boolean;549 readonly asForceSubscribeVersionNotify: {550 readonly location: XcmVersionedMultiLocation;551 } & Struct;552 readonly isForceUnsubscribeVersionNotify: boolean;553 readonly asForceUnsubscribeVersionNotify: {554 readonly location: XcmVersionedMultiLocation;555 } & Struct;556 readonly isLimitedReserveTransferAssets: boolean;557 readonly asLimitedReserveTransferAssets: {558 readonly dest: XcmVersionedMultiLocation;559 readonly beneficiary: XcmVersionedMultiLocation;560 readonly assets: XcmVersionedMultiAssets;561 readonly feeAssetItem: u32;562 readonly weightLimit: XcmV2WeightLimit;563 } & Struct;564 readonly isLimitedTeleportAssets: boolean;565 readonly asLimitedTeleportAssets: {566 readonly dest: XcmVersionedMultiLocation;567 readonly beneficiary: XcmVersionedMultiLocation;568 readonly assets: XcmVersionedMultiAssets;569 readonly feeAssetItem: u32;570 readonly weightLimit: XcmV2WeightLimit;571 } & Struct;572 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';573 }574575 /** @name XcmVersionedMultiLocation (89) */576 export interface XcmVersionedMultiLocation extends Enum {577 readonly isV0: boolean;578 readonly asV0: XcmV0MultiLocation;579 readonly isV1: boolean;580 readonly asV1: XcmV1MultiLocation;581 readonly type: 'V0' | 'V1';582 }583584 /** @name XcmV0MultiLocation (90) */585 export interface XcmV0MultiLocation extends Enum {586 readonly isNull: boolean;587 readonly isX1: boolean;588 readonly asX1: XcmV0Junction;589 readonly isX2: boolean;590 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;591 readonly isX3: boolean;592 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;593 readonly isX4: boolean;594 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;595 readonly isX5: boolean;596 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;597 readonly isX6: boolean;598 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;599 readonly isX7: boolean;600 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;601 readonly isX8: boolean;602 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;603 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';604 }605606 /** @name XcmV0Junction (91) */607 export interface XcmV0Junction extends Enum {608 readonly isParent: boolean;609 readonly isParachain: boolean;610 readonly asParachain: Compact<u32>;611 readonly isAccountId32: boolean;612 readonly asAccountId32: {613 readonly network: XcmV0JunctionNetworkId;614 readonly id: U8aFixed;615 } & Struct;616 readonly isAccountIndex64: boolean;617 readonly asAccountIndex64: {618 readonly network: XcmV0JunctionNetworkId;619 readonly index: Compact<u64>;620 } & Struct;621 readonly isAccountKey20: boolean;622 readonly asAccountKey20: {623 readonly network: XcmV0JunctionNetworkId;624 readonly key: U8aFixed;625 } & Struct;626 readonly isPalletInstance: boolean;627 readonly asPalletInstance: u8;628 readonly isGeneralIndex: boolean;629 readonly asGeneralIndex: Compact<u128>;630 readonly isGeneralKey: boolean;631 readonly asGeneralKey: Bytes;632 readonly isOnlyChild: boolean;633 readonly isPlurality: boolean;634 readonly asPlurality: {635 readonly id: XcmV0JunctionBodyId;636 readonly part: XcmV0JunctionBodyPart;637 } & Struct;638 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';639 }640641 /** @name XcmV0JunctionNetworkId (92) */642 export interface XcmV0JunctionNetworkId extends Enum {643 readonly isAny: boolean;644 readonly isNamed: boolean;645 readonly asNamed: Bytes;646 readonly isPolkadot: boolean;647 readonly isKusama: boolean;648 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';649 }650651 /** @name XcmV0JunctionBodyId (93) */652 export interface XcmV0JunctionBodyId extends Enum {653 readonly isUnit: boolean;654 readonly isNamed: boolean;655 readonly asNamed: Bytes;656 readonly isIndex: boolean;657 readonly asIndex: Compact<u32>;658 readonly isExecutive: boolean;659 readonly isTechnical: boolean;660 readonly isLegislative: boolean;661 readonly isJudicial: boolean;662 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';663 }664665 /** @name XcmV0JunctionBodyPart (94) */666 export interface XcmV0JunctionBodyPart extends Enum {667 readonly isVoice: boolean;668 readonly isMembers: boolean;669 readonly asMembers: {670 readonly count: Compact<u32>;671 } & Struct;672 readonly isFraction: boolean;673 readonly asFraction: {674 readonly nom: Compact<u32>;675 readonly denom: Compact<u32>;676 } & Struct;677 readonly isAtLeastProportion: boolean;678 readonly asAtLeastProportion: {679 readonly nom: Compact<u32>;680 readonly denom: Compact<u32>;681 } & Struct;682 readonly isMoreThanProportion: boolean;683 readonly asMoreThanProportion: {684 readonly nom: Compact<u32>;685 readonly denom: Compact<u32>;686 } & Struct;687 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';688 }689690 /** @name XcmV1MultiLocation (95) */691 export interface XcmV1MultiLocation extends Struct {692 readonly parents: u8;693 readonly interior: XcmV1MultilocationJunctions;694 }695696 /** @name XcmV1MultilocationJunctions (96) */697 export interface XcmV1MultilocationJunctions extends Enum {698 readonly isHere: boolean;699 readonly isX1: boolean;700 readonly asX1: XcmV1Junction;701 readonly isX2: boolean;702 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;703 readonly isX3: boolean;704 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;705 readonly isX4: boolean;706 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;707 readonly isX5: boolean;708 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;709 readonly isX6: boolean;710 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;711 readonly isX7: boolean;712 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;713 readonly isX8: boolean;714 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;715 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';716 }717718 /** @name XcmV1Junction (97) */719 export interface XcmV1Junction extends Enum {720 readonly isParachain: boolean;721 readonly asParachain: Compact<u32>;722 readonly isAccountId32: boolean;723 readonly asAccountId32: {724 readonly network: XcmV0JunctionNetworkId;725 readonly id: U8aFixed;726 } & Struct;727 readonly isAccountIndex64: boolean;728 readonly asAccountIndex64: {729 readonly network: XcmV0JunctionNetworkId;730 readonly index: Compact<u64>;731 } & Struct;732 readonly isAccountKey20: boolean;733 readonly asAccountKey20: {734 readonly network: XcmV0JunctionNetworkId;735 readonly key: U8aFixed;736 } & Struct;737 readonly isPalletInstance: boolean;738 readonly asPalletInstance: u8;739 readonly isGeneralIndex: boolean;740 readonly asGeneralIndex: Compact<u128>;741 readonly isGeneralKey: boolean;742 readonly asGeneralKey: Bytes;743 readonly isOnlyChild: boolean;744 readonly isPlurality: boolean;745 readonly asPlurality: {746 readonly id: XcmV0JunctionBodyId;747 readonly part: XcmV0JunctionBodyPart;748 } & Struct;749 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';750 }751752 /** @name XcmVersionedXcm (98) */753 export interface XcmVersionedXcm extends Enum {754 readonly isV0: boolean;755 readonly asV0: XcmV0Xcm;756 readonly isV1: boolean;757 readonly asV1: XcmV1Xcm;758 readonly isV2: boolean;759 readonly asV2: XcmV2Xcm;760 readonly type: 'V0' | 'V1' | 'V2';761 }762763 /** @name XcmV0Xcm (99) */764 export interface XcmV0Xcm extends Enum {765 readonly isWithdrawAsset: boolean;766 readonly asWithdrawAsset: {767 readonly assets: Vec<XcmV0MultiAsset>;768 readonly effects: Vec<XcmV0Order>;769 } & Struct;770 readonly isReserveAssetDeposit: boolean;771 readonly asReserveAssetDeposit: {772 readonly assets: Vec<XcmV0MultiAsset>;773 readonly effects: Vec<XcmV0Order>;774 } & Struct;775 readonly isTeleportAsset: boolean;776 readonly asTeleportAsset: {777 readonly assets: Vec<XcmV0MultiAsset>;778 readonly effects: Vec<XcmV0Order>;779 } & Struct;780 readonly isQueryResponse: boolean;781 readonly asQueryResponse: {782 readonly queryId: Compact<u64>;783 readonly response: XcmV0Response;784 } & Struct;785 readonly isTransferAsset: boolean;786 readonly asTransferAsset: {787 readonly assets: Vec<XcmV0MultiAsset>;788 readonly dest: XcmV0MultiLocation;789 } & Struct;790 readonly isTransferReserveAsset: boolean;791 readonly asTransferReserveAsset: {792 readonly assets: Vec<XcmV0MultiAsset>;793 readonly dest: XcmV0MultiLocation;794 readonly effects: Vec<XcmV0Order>;795 } & Struct;796 readonly isTransact: boolean;797 readonly asTransact: {798 readonly originType: XcmV0OriginKind;799 readonly requireWeightAtMost: u64;800 readonly call: XcmDoubleEncoded;801 } & Struct;802 readonly isHrmpNewChannelOpenRequest: boolean;803 readonly asHrmpNewChannelOpenRequest: {804 readonly sender: Compact<u32>;805 readonly maxMessageSize: Compact<u32>;806 readonly maxCapacity: Compact<u32>;807 } & Struct;808 readonly isHrmpChannelAccepted: boolean;809 readonly asHrmpChannelAccepted: {810 readonly recipient: Compact<u32>;811 } & Struct;812 readonly isHrmpChannelClosing: boolean;813 readonly asHrmpChannelClosing: {814 readonly initiator: Compact<u32>;815 readonly sender: Compact<u32>;816 readonly recipient: Compact<u32>;817 } & Struct;818 readonly isRelayedFrom: boolean;819 readonly asRelayedFrom: {820 readonly who: XcmV0MultiLocation;821 readonly message: XcmV0Xcm;822 } & Struct;823 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';824 }825826 /** @name XcmV0MultiAsset (101) */827 export interface XcmV0MultiAsset extends Enum {828 readonly isNone: boolean;829 readonly isAll: boolean;830 readonly isAllFungible: boolean;831 readonly isAllNonFungible: boolean;832 readonly isAllAbstractFungible: boolean;833 readonly asAllAbstractFungible: {834 readonly id: Bytes;835 } & Struct;836 readonly isAllAbstractNonFungible: boolean;837 readonly asAllAbstractNonFungible: {838 readonly class: Bytes;839 } & Struct;840 readonly isAllConcreteFungible: boolean;841 readonly asAllConcreteFungible: {842 readonly id: XcmV0MultiLocation;843 } & Struct;844 readonly isAllConcreteNonFungible: boolean;845 readonly asAllConcreteNonFungible: {846 readonly class: XcmV0MultiLocation;847 } & Struct;848 readonly isAbstractFungible: boolean;849 readonly asAbstractFungible: {850 readonly id: Bytes;851 readonly amount: Compact<u128>;852 } & Struct;853 readonly isAbstractNonFungible: boolean;854 readonly asAbstractNonFungible: {855 readonly class: Bytes;856 readonly instance: XcmV1MultiassetAssetInstance;857 } & Struct;858 readonly isConcreteFungible: boolean;859 readonly asConcreteFungible: {860 readonly id: XcmV0MultiLocation;861 readonly amount: Compact<u128>;862 } & Struct;863 readonly isConcreteNonFungible: boolean;864 readonly asConcreteNonFungible: {865 readonly class: XcmV0MultiLocation;866 readonly instance: XcmV1MultiassetAssetInstance;867 } & Struct;868 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';869 }870871 /** @name XcmV1MultiassetAssetInstance (102) */872 export interface XcmV1MultiassetAssetInstance extends Enum {873 readonly isUndefined: boolean;874 readonly isIndex: boolean;875 readonly asIndex: Compact<u128>;876 readonly isArray4: boolean;877 readonly asArray4: U8aFixed;878 readonly isArray8: boolean;879 readonly asArray8: U8aFixed;880 readonly isArray16: boolean;881 readonly asArray16: U8aFixed;882 readonly isArray32: boolean;883 readonly asArray32: U8aFixed;884 readonly isBlob: boolean;885 readonly asBlob: Bytes;886 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';887 }888889 /** @name XcmV0Order (106) */890 export interface XcmV0Order extends Enum {891 readonly isNull: boolean;892 readonly isDepositAsset: boolean;893 readonly asDepositAsset: {894 readonly assets: Vec<XcmV0MultiAsset>;895 readonly dest: XcmV0MultiLocation;896 } & Struct;897 readonly isDepositReserveAsset: boolean;898 readonly asDepositReserveAsset: {899 readonly assets: Vec<XcmV0MultiAsset>;900 readonly dest: XcmV0MultiLocation;901 readonly effects: Vec<XcmV0Order>;902 } & Struct;903 readonly isExchangeAsset: boolean;904 readonly asExchangeAsset: {905 readonly give: Vec<XcmV0MultiAsset>;906 readonly receive: Vec<XcmV0MultiAsset>;907 } & Struct;908 readonly isInitiateReserveWithdraw: boolean;909 readonly asInitiateReserveWithdraw: {910 readonly assets: Vec<XcmV0MultiAsset>;911 readonly reserve: XcmV0MultiLocation;912 readonly effects: Vec<XcmV0Order>;913 } & Struct;914 readonly isInitiateTeleport: boolean;915 readonly asInitiateTeleport: {916 readonly assets: Vec<XcmV0MultiAsset>;917 readonly dest: XcmV0MultiLocation;918 readonly effects: Vec<XcmV0Order>;919 } & Struct;920 readonly isQueryHolding: boolean;921 readonly asQueryHolding: {922 readonly queryId: Compact<u64>;923 readonly dest: XcmV0MultiLocation;924 readonly assets: Vec<XcmV0MultiAsset>;925 } & Struct;926 readonly isBuyExecution: boolean;927 readonly asBuyExecution: {928 readonly fees: XcmV0MultiAsset;929 readonly weight: u64;930 readonly debt: u64;931 readonly haltOnError: bool;932 readonly xcm: Vec<XcmV0Xcm>;933 } & Struct;934 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';935 }936937 /** @name XcmV0Response (108) */938 export interface XcmV0Response extends Enum {939 readonly isAssets: boolean;940 readonly asAssets: Vec<XcmV0MultiAsset>;941 readonly type: 'Assets';942 }943944 /** @name XcmV0OriginKind (109) */945 export interface XcmV0OriginKind extends Enum {946 readonly isNative: boolean;947 readonly isSovereignAccount: boolean;948 readonly isSuperuser: boolean;949 readonly isXcm: boolean;950 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';951 }952953 /** @name XcmDoubleEncoded (110) */954 export interface XcmDoubleEncoded extends Struct {955 readonly encoded: Bytes;956 }957958 /** @name XcmV1Xcm (111) */959 export interface XcmV1Xcm extends Enum {960 readonly isWithdrawAsset: boolean;961 readonly asWithdrawAsset: {962 readonly assets: XcmV1MultiassetMultiAssets;963 readonly effects: Vec<XcmV1Order>;964 } & Struct;965 readonly isReserveAssetDeposited: boolean;966 readonly asReserveAssetDeposited: {967 readonly assets: XcmV1MultiassetMultiAssets;968 readonly effects: Vec<XcmV1Order>;969 } & Struct;970 readonly isReceiveTeleportedAsset: boolean;971 readonly asReceiveTeleportedAsset: {972 readonly assets: XcmV1MultiassetMultiAssets;973 readonly effects: Vec<XcmV1Order>;974 } & Struct;975 readonly isQueryResponse: boolean;976 readonly asQueryResponse: {977 readonly queryId: Compact<u64>;978 readonly response: XcmV1Response;979 } & Struct;980 readonly isTransferAsset: boolean;981 readonly asTransferAsset: {982 readonly assets: XcmV1MultiassetMultiAssets;983 readonly beneficiary: XcmV1MultiLocation;984 } & Struct;985 readonly isTransferReserveAsset: boolean;986 readonly asTransferReserveAsset: {987 readonly assets: XcmV1MultiassetMultiAssets;988 readonly dest: XcmV1MultiLocation;989 readonly effects: Vec<XcmV1Order>;990 } & Struct;991 readonly isTransact: boolean;992 readonly asTransact: {993 readonly originType: XcmV0OriginKind;994 readonly requireWeightAtMost: u64;995 readonly call: XcmDoubleEncoded;996 } & Struct;997 readonly isHrmpNewChannelOpenRequest: boolean;998 readonly asHrmpNewChannelOpenRequest: {999 readonly sender: Compact<u32>;1000 readonly maxMessageSize: Compact<u32>;1001 readonly maxCapacity: Compact<u32>;1002 } & Struct;1003 readonly isHrmpChannelAccepted: boolean;1004 readonly asHrmpChannelAccepted: {1005 readonly recipient: Compact<u32>;1006 } & Struct;1007 readonly isHrmpChannelClosing: boolean;1008 readonly asHrmpChannelClosing: {1009 readonly initiator: Compact<u32>;1010 readonly sender: Compact<u32>;1011 readonly recipient: Compact<u32>;1012 } & Struct;1013 readonly isRelayedFrom: boolean;1014 readonly asRelayedFrom: {1015 readonly who: XcmV1MultilocationJunctions;1016 readonly message: XcmV1Xcm;1017 } & Struct;1018 readonly isSubscribeVersion: boolean;1019 readonly asSubscribeVersion: {1020 readonly queryId: Compact<u64>;1021 readonly maxResponseWeight: Compact<u64>;1022 } & Struct;1023 readonly isUnsubscribeVersion: boolean;1024 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';1025 }10261027 /** @name XcmV1MultiassetMultiAssets (112) */1028 export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}10291030 /** @name XcmV1MultiAsset (114) */1031 export interface XcmV1MultiAsset extends Struct {1032 readonly id: XcmV1MultiassetAssetId;1033 readonly fun: XcmV1MultiassetFungibility;1034 }10351036 /** @name XcmV1MultiassetAssetId (115) */1037 export interface XcmV1MultiassetAssetId extends Enum {1038 readonly isConcrete: boolean;1039 readonly asConcrete: XcmV1MultiLocation;1040 readonly isAbstract: boolean;1041 readonly asAbstract: Bytes;1042 readonly type: 'Concrete' | 'Abstract';1043 }10441045 /** @name XcmV1MultiassetFungibility (116) */1046 export interface XcmV1MultiassetFungibility extends Enum {1047 readonly isFungible: boolean;1048 readonly asFungible: Compact<u128>;1049 readonly isNonFungible: boolean;1050 readonly asNonFungible: XcmV1MultiassetAssetInstance;1051 readonly type: 'Fungible' | 'NonFungible';1052 }10531054 /** @name XcmV1Order (118) */1055 export interface XcmV1Order extends Enum {1056 readonly isNoop: boolean;1057 readonly isDepositAsset: boolean;1058 readonly asDepositAsset: {1059 readonly assets: XcmV1MultiassetMultiAssetFilter;1060 readonly maxAssets: u32;1061 readonly beneficiary: XcmV1MultiLocation;1062 } & Struct;1063 readonly isDepositReserveAsset: boolean;1064 readonly asDepositReserveAsset: {1065 readonly assets: XcmV1MultiassetMultiAssetFilter;1066 readonly maxAssets: u32;1067 readonly dest: XcmV1MultiLocation;1068 readonly effects: Vec<XcmV1Order>;1069 } & Struct;1070 readonly isExchangeAsset: boolean;1071 readonly asExchangeAsset: {1072 readonly give: XcmV1MultiassetMultiAssetFilter;1073 readonly receive: XcmV1MultiassetMultiAssets;1074 } & Struct;1075 readonly isInitiateReserveWithdraw: boolean;1076 readonly asInitiateReserveWithdraw: {1077 readonly assets: XcmV1MultiassetMultiAssetFilter;1078 readonly reserve: XcmV1MultiLocation;1079 readonly effects: Vec<XcmV1Order>;1080 } & Struct;1081 readonly isInitiateTeleport: boolean;1082 readonly asInitiateTeleport: {1083 readonly assets: XcmV1MultiassetMultiAssetFilter;1084 readonly dest: XcmV1MultiLocation;1085 readonly effects: Vec<XcmV1Order>;1086 } & Struct;1087 readonly isQueryHolding: boolean;1088 readonly asQueryHolding: {1089 readonly queryId: Compact<u64>;1090 readonly dest: XcmV1MultiLocation;1091 readonly assets: XcmV1MultiassetMultiAssetFilter;1092 } & Struct;1093 readonly isBuyExecution: boolean;1094 readonly asBuyExecution: {1095 readonly fees: XcmV1MultiAsset;1096 readonly weight: u64;1097 readonly debt: u64;1098 readonly haltOnError: bool;1099 readonly instructions: Vec<XcmV1Xcm>;1100 } & Struct;1101 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';1102 }11031104 /** @name XcmV1MultiassetMultiAssetFilter (119) */1105 export interface XcmV1MultiassetMultiAssetFilter extends Enum {1106 readonly isDefinite: boolean;1107 readonly asDefinite: XcmV1MultiassetMultiAssets;1108 readonly isWild: boolean;1109 readonly asWild: XcmV1MultiassetWildMultiAsset;1110 readonly type: 'Definite' | 'Wild';1111 }11121113 /** @name XcmV1MultiassetWildMultiAsset (120) */1114 export interface XcmV1MultiassetWildMultiAsset extends Enum {1115 readonly isAll: boolean;1116 readonly isAllOf: boolean;1117 readonly asAllOf: {1118 readonly id: XcmV1MultiassetAssetId;1119 readonly fun: XcmV1MultiassetWildFungibility;1120 } & Struct;1121 readonly type: 'All' | 'AllOf';1122 }11231124 /** @name XcmV1MultiassetWildFungibility (121) */1125 export interface XcmV1MultiassetWildFungibility extends Enum {1126 readonly isFungible: boolean;1127 readonly isNonFungible: boolean;1128 readonly type: 'Fungible' | 'NonFungible';1129 }11301131 /** @name XcmV1Response (123) */1132 export interface XcmV1Response extends Enum {1133 readonly isAssets: boolean;1134 readonly asAssets: XcmV1MultiassetMultiAssets;1135 readonly isVersion: boolean;1136 readonly asVersion: u32;1137 readonly type: 'Assets' | 'Version';1138 }11391140 /** @name XcmV2Xcm (124) */1141 export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}11421143 /** @name XcmV2Instruction (126) */1144 export interface XcmV2Instruction extends Enum {1145 readonly isWithdrawAsset: boolean;1146 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;1147 readonly isReserveAssetDeposited: boolean;1148 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;1149 readonly isReceiveTeleportedAsset: boolean;1150 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;1151 readonly isQueryResponse: boolean;1152 readonly asQueryResponse: {1153 readonly queryId: Compact<u64>;1154 readonly response: XcmV2Response;1155 readonly maxWeight: Compact<u64>;1156 } & Struct;1157 readonly isTransferAsset: boolean;1158 readonly asTransferAsset: {1159 readonly assets: XcmV1MultiassetMultiAssets;1160 readonly beneficiary: XcmV1MultiLocation;1161 } & Struct;1162 readonly isTransferReserveAsset: boolean;1163 readonly asTransferReserveAsset: {1164 readonly assets: XcmV1MultiassetMultiAssets;1165 readonly dest: XcmV1MultiLocation;1166 readonly xcm: XcmV2Xcm;1167 } & Struct;1168 readonly isTransact: boolean;1169 readonly asTransact: {1170 readonly originType: XcmV0OriginKind;1171 readonly requireWeightAtMost: Compact<u64>;1172 readonly call: XcmDoubleEncoded;1173 } & Struct;1174 readonly isHrmpNewChannelOpenRequest: boolean;1175 readonly asHrmpNewChannelOpenRequest: {1176 readonly sender: Compact<u32>;1177 readonly maxMessageSize: Compact<u32>;1178 readonly maxCapacity: Compact<u32>;1179 } & Struct;1180 readonly isHrmpChannelAccepted: boolean;1181 readonly asHrmpChannelAccepted: {1182 readonly recipient: Compact<u32>;1183 } & Struct;1184 readonly isHrmpChannelClosing: boolean;1185 readonly asHrmpChannelClosing: {1186 readonly initiator: Compact<u32>;1187 readonly sender: Compact<u32>;1188 readonly recipient: Compact<u32>;1189 } & Struct;1190 readonly isClearOrigin: boolean;1191 readonly isDescendOrigin: boolean;1192 readonly asDescendOrigin: XcmV1MultilocationJunctions;1193 readonly isReportError: boolean;1194 readonly asReportError: {1195 readonly queryId: Compact<u64>;1196 readonly dest: XcmV1MultiLocation;1197 readonly maxResponseWeight: Compact<u64>;1198 } & Struct;1199 readonly isDepositAsset: boolean;1200 readonly asDepositAsset: {1201 readonly assets: XcmV1MultiassetMultiAssetFilter;1202 readonly maxAssets: Compact<u32>;1203 readonly beneficiary: XcmV1MultiLocation;1204 } & Struct;1205 readonly isDepositReserveAsset: boolean;1206 readonly asDepositReserveAsset: {1207 readonly assets: XcmV1MultiassetMultiAssetFilter;1208 readonly maxAssets: Compact<u32>;1209 readonly dest: XcmV1MultiLocation;1210 readonly xcm: XcmV2Xcm;1211 } & Struct;1212 readonly isExchangeAsset: boolean;1213 readonly asExchangeAsset: {1214 readonly give: XcmV1MultiassetMultiAssetFilter;1215 readonly receive: XcmV1MultiassetMultiAssets;1216 } & Struct;1217 readonly isInitiateReserveWithdraw: boolean;1218 readonly asInitiateReserveWithdraw: {1219 readonly assets: XcmV1MultiassetMultiAssetFilter;1220 readonly reserve: XcmV1MultiLocation;1221 readonly xcm: XcmV2Xcm;1222 } & Struct;1223 readonly isInitiateTeleport: boolean;1224 readonly asInitiateTeleport: {1225 readonly assets: XcmV1MultiassetMultiAssetFilter;1226 readonly dest: XcmV1MultiLocation;1227 readonly xcm: XcmV2Xcm;1228 } & Struct;1229 readonly isQueryHolding: boolean;1230 readonly asQueryHolding: {1231 readonly queryId: Compact<u64>;1232 readonly dest: XcmV1MultiLocation;1233 readonly assets: XcmV1MultiassetMultiAssetFilter;1234 readonly maxResponseWeight: Compact<u64>;1235 } & Struct;1236 readonly isBuyExecution: boolean;1237 readonly asBuyExecution: {1238 readonly fees: XcmV1MultiAsset;1239 readonly weightLimit: XcmV2WeightLimit;1240 } & Struct;1241 readonly isRefundSurplus: boolean;1242 readonly isSetErrorHandler: boolean;1243 readonly asSetErrorHandler: XcmV2Xcm;1244 readonly isSetAppendix: boolean;1245 readonly asSetAppendix: XcmV2Xcm;1246 readonly isClearError: boolean;1247 readonly isClaimAsset: boolean;1248 readonly asClaimAsset: {1249 readonly assets: XcmV1MultiassetMultiAssets;1250 readonly ticket: XcmV1MultiLocation;1251 } & Struct;1252 readonly isTrap: boolean;1253 readonly asTrap: Compact<u64>;1254 readonly isSubscribeVersion: boolean;1255 readonly asSubscribeVersion: {1256 readonly queryId: Compact<u64>;1257 readonly maxResponseWeight: Compact<u64>;1258 } & Struct;1259 readonly isUnsubscribeVersion: boolean;1260 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';1261 }12621263 /** @name XcmV2Response (127) */1264 export interface XcmV2Response extends Enum {1265 readonly isNull: boolean;1266 readonly isAssets: boolean;1267 readonly asAssets: XcmV1MultiassetMultiAssets;1268 readonly isExecutionResult: boolean;1269 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;1270 readonly isVersion: boolean;1271 readonly asVersion: u32;1272 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';1273 }12741275 /** @name XcmV2TraitsError (130) */1276 export interface XcmV2TraitsError extends Enum {1277 readonly isOverflow: boolean;1278 readonly isUnimplemented: boolean;1279 readonly isUntrustedReserveLocation: boolean;1280 readonly isUntrustedTeleportLocation: boolean;1281 readonly isMultiLocationFull: boolean;1282 readonly isMultiLocationNotInvertible: boolean;1283 readonly isBadOrigin: boolean;1284 readonly isInvalidLocation: boolean;1285 readonly isAssetNotFound: boolean;1286 readonly isFailedToTransactAsset: boolean;1287 readonly isNotWithdrawable: boolean;1288 readonly isLocationCannotHold: boolean;1289 readonly isExceedsMaxMessageSize: boolean;1290 readonly isDestinationUnsupported: boolean;1291 readonly isTransport: boolean;1292 readonly isUnroutable: boolean;1293 readonly isUnknownClaim: boolean;1294 readonly isFailedToDecode: boolean;1295 readonly isMaxWeightInvalid: boolean;1296 readonly isNotHoldingFees: boolean;1297 readonly isTooExpensive: boolean;1298 readonly isTrap: boolean;1299 readonly asTrap: u64;1300 readonly isUnhandledXcmVersion: boolean;1301 readonly isWeightLimitReached: boolean;1302 readonly asWeightLimitReached: u64;1303 readonly isBarrier: boolean;1304 readonly isWeightNotComputable: boolean;1305 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';1306 }13071308 /** @name XcmV2WeightLimit (131) */1309 export interface XcmV2WeightLimit extends Enum {1310 readonly isUnlimited: boolean;1311 readonly isLimited: boolean;1312 readonly asLimited: Compact<u64>;1313 readonly type: 'Unlimited' | 'Limited';1314 }13151316 /** @name XcmVersionedMultiAssets (132) */1317 export interface XcmVersionedMultiAssets extends Enum {1318 readonly isV0: boolean;1319 readonly asV0: Vec<XcmV0MultiAsset>;1320 readonly isV1: boolean;1321 readonly asV1: XcmV1MultiassetMultiAssets;1322 readonly type: 'V0' | 'V1';1323 }13241325 /** @name CumulusPalletXcmCall (147) */1326 export type CumulusPalletXcmCall = Null;13271328 /** @name CumulusPalletDmpQueueCall (148) */1329 export interface CumulusPalletDmpQueueCall extends Enum {1330 readonly isServiceOverweight: boolean;1331 readonly asServiceOverweight: {1332 readonly index: u64;1333 readonly weightLimit: u64;1334 } & Struct;1335 readonly type: 'ServiceOverweight';1336 }13371338 /** @name PalletInflationCall (149) */1339 export interface PalletInflationCall extends Enum {1340 readonly isStartInflation: boolean;1341 readonly asStartInflation: {1342 readonly inflationStartRelayBlock: u32;1343 } & Struct;1344 readonly type: 'StartInflation';1345 }13461347 /** @name PalletUniqueCall (150) */1348 export interface PalletUniqueCall extends Enum {1349 readonly isCreateCollection: boolean;1350 readonly asCreateCollection: {1351 readonly collectionName: Vec<u16>;1352 readonly collectionDescription: Vec<u16>;1353 readonly tokenPrefix: Bytes;1354 readonly mode: UpDataStructsCollectionMode;1355 } & Struct;1356 readonly isCreateCollectionEx: boolean;1357 readonly asCreateCollectionEx: {1358 readonly data: UpDataStructsCreateCollectionData;1359 } & Struct;1360 readonly isDestroyCollection: boolean;1361 readonly asDestroyCollection: {1362 readonly collectionId: u32;1363 } & Struct;1364 readonly isAddToAllowList: boolean;1365 readonly asAddToAllowList: {1366 readonly collectionId: u32;1367 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1368 } & Struct;1369 readonly isRemoveFromAllowList: boolean;1370 readonly asRemoveFromAllowList: {1371 readonly collectionId: u32;1372 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;1373 } & Struct;1374 readonly isSetPublicAccessMode: boolean;1375 readonly asSetPublicAccessMode: {1376 readonly collectionId: u32;1377 readonly mode: UpDataStructsAccessMode;1378 } & Struct;1379 readonly isSetMintPermission: boolean;1380 readonly asSetMintPermission: {1381 readonly collectionId: u32;1382 readonly mintPermission: bool;1383 } & Struct;1384 readonly isChangeCollectionOwner: boolean;1385 readonly asChangeCollectionOwner: {1386 readonly collectionId: u32;1387 readonly newOwner: AccountId32;1388 } & Struct;1389 readonly isAddCollectionAdmin: boolean;1390 readonly asAddCollectionAdmin: {1391 readonly collectionId: u32;1392 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;1393 } & Struct;1394 readonly isRemoveCollectionAdmin: boolean;1395 readonly asRemoveCollectionAdmin: {1396 readonly collectionId: u32;1397 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;1398 } & Struct;1399 readonly isSetCollectionSponsor: boolean;1400 readonly asSetCollectionSponsor: {1401 readonly collectionId: u32;1402 readonly newSponsor: AccountId32;1403 } & Struct;1404 readonly isConfirmSponsorship: boolean;1405 readonly asConfirmSponsorship: {1406 readonly collectionId: u32;1407 } & Struct;1408 readonly isRemoveCollectionSponsor: boolean;1409 readonly asRemoveCollectionSponsor: {1410 readonly collectionId: u32;1411 } & Struct;1412 readonly isCreateItem: boolean;1413 readonly asCreateItem: {1414 readonly collectionId: u32;1415 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1416 readonly data: UpDataStructsCreateItemData;1417 } & Struct;1418 readonly isCreateMultipleItems: boolean;1419 readonly asCreateMultipleItems: {1420 readonly collectionId: u32;1421 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1422 readonly itemsData: Vec<UpDataStructsCreateItemData>;1423 } & Struct;1424 readonly isSetCollectionProperties: boolean;1425 readonly asSetCollectionProperties: {1426 readonly collectionId: u32;1427 readonly properties: Vec<UpDataStructsProperty>;1428 } & Struct;1429 readonly isDeleteCollectionProperties: boolean;1430 readonly asDeleteCollectionProperties: {1431 readonly collectionId: u32;1432 readonly propertyKeys: Vec<Bytes>;1433 } & Struct;1434 readonly isSetTokenProperties: boolean;1435 readonly asSetTokenProperties: {1436 readonly collectionId: u32;1437 readonly tokenId: u32;1438 readonly properties: Vec<UpDataStructsProperty>;1439 } & Struct;1440 readonly isDeleteTokenProperties: boolean;1441 readonly asDeleteTokenProperties: {1442 readonly collectionId: u32;1443 readonly tokenId: u32;1444 readonly propertyKeys: Vec<Bytes>;1445 } & Struct;1446 readonly isSetPropertyPermissions: boolean;1447 readonly asSetPropertyPermissions: {1448 readonly collectionId: u32;1449 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1450 } & Struct;1451 readonly isCreateMultipleItemsEx: boolean;1452 readonly asCreateMultipleItemsEx: {1453 readonly collectionId: u32;1454 readonly data: UpDataStructsCreateItemExData;1455 } & Struct;1456 readonly isSetTransfersEnabledFlag: boolean;1457 readonly asSetTransfersEnabledFlag: {1458 readonly collectionId: u32;1459 readonly value: bool;1460 } & Struct;1461 readonly isBurnItem: boolean;1462 readonly asBurnItem: {1463 readonly collectionId: u32;1464 readonly itemId: u32;1465 readonly value: u128;1466 } & Struct;1467 readonly isBurnFrom: boolean;1468 readonly asBurnFrom: {1469 readonly collectionId: u32;1470 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1471 readonly itemId: u32;1472 readonly value: u128;1473 } & Struct;1474 readonly isTransfer: boolean;1475 readonly asTransfer: {1476 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1477 readonly collectionId: u32;1478 readonly itemId: u32;1479 readonly value: u128;1480 } & Struct;1481 readonly isApprove: boolean;1482 readonly asApprove: {1483 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;1484 readonly collectionId: u32;1485 readonly itemId: u32;1486 readonly amount: u128;1487 } & Struct;1488 readonly isTransferFrom: boolean;1489 readonly asTransferFrom: {1490 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;1491 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;1492 readonly collectionId: u32;1493 readonly itemId: u32;1494 readonly value: u128;1495 } & Struct;1496 readonly isSetSchemaVersion: boolean;1497 readonly asSetSchemaVersion: {1498 readonly collectionId: u32;1499 readonly version: UpDataStructsSchemaVersion;1500 } & Struct;1501 readonly isSetOffchainSchema: boolean;1502 readonly asSetOffchainSchema: {1503 readonly collectionId: u32;1504 readonly schema: Bytes;1505 } & Struct;1506 readonly isSetConstOnChainSchema: boolean;1507 readonly asSetConstOnChainSchema: {1508 readonly collectionId: u32;1509 readonly schema: Bytes;1510 } & Struct;1511 readonly isSetCollectionLimits: boolean;1512 readonly asSetCollectionLimits: {1513 readonly collectionId: u32;1514 readonly newLimit: UpDataStructsCollectionLimits;1515 } & Struct;1516 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'SetPublicAccessMode' | 'SetMintPermission' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetSchemaVersion' | 'SetOffchainSchema' | 'SetConstOnChainSchema' | 'SetCollectionLimits';1517 }15181519 /** @name UpDataStructsCollectionMode (156) */1520 export interface UpDataStructsCollectionMode extends Enum {1521 readonly isNft: boolean;1522 readonly isFungible: boolean;1523 readonly asFungible: u8;1524 readonly isReFungible: boolean;1525 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1526 }15271528 /** @name UpDataStructsCreateCollectionData (157) */1529 export interface UpDataStructsCreateCollectionData extends Struct {1530 readonly mode: UpDataStructsCollectionMode;1531 readonly access: Option<UpDataStructsAccessMode>;1532 readonly name: Vec<u16>;1533 readonly description: Vec<u16>;1534 readonly tokenPrefix: Bytes;1535 readonly offchainSchema: Bytes;1536 readonly schemaVersion: Option<UpDataStructsSchemaVersion>;1537 readonly pendingSponsor: Option<AccountId32>;1538 readonly limits: Option<UpDataStructsCollectionLimits>;1539 readonly constOnChainSchema: Bytes;1540 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;1541 readonly properties: Vec<UpDataStructsProperty>;1542 }15431544 /** @name UpDataStructsAccessMode (159) */1545 export interface UpDataStructsAccessMode extends Enum {1546 readonly isNormal: boolean;1547 readonly isAllowList: boolean;1548 readonly type: 'Normal' | 'AllowList';1549 }15501551 /** @name UpDataStructsSchemaVersion (162) */1552 export interface UpDataStructsSchemaVersion extends Enum {1553 readonly isImageURL: boolean;1554 readonly isUnique: boolean;1555 readonly type: 'ImageURL' | 'Unique';1556 }15571558 /** @name UpDataStructsCollectionLimits (165) */1559 export interface UpDataStructsCollectionLimits extends Struct {1560 readonly accountTokenOwnershipLimit: Option<u32>;1561 readonly sponsoredDataSize: Option<u32>;1562 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;1563 readonly tokenLimit: Option<u32>;1564 readonly sponsorTransferTimeout: Option<u32>;1565 readonly sponsorApproveTimeout: Option<u32>;1566 readonly ownerCanTransfer: Option<bool>;1567 readonly ownerCanDestroy: Option<bool>;1568 readonly transfersEnabled: Option<bool>;1569 readonly nestingRule: Option<UpDataStructsNestingRule>;1570 }15711572 /** @name UpDataStructsSponsoringRateLimit (167) */1573 export interface UpDataStructsSponsoringRateLimit extends Enum {1574 readonly isSponsoringDisabled: boolean;1575 readonly isBlocks: boolean;1576 readonly asBlocks: u32;1577 readonly type: 'SponsoringDisabled' | 'Blocks';1578 }15791580 /** @name UpDataStructsNestingRule (170) */1581 export interface UpDataStructsNestingRule extends Enum {1582 readonly isDisabled: boolean;1583 readonly isOwner: boolean;1584 readonly isOwnerRestricted: boolean;1585 readonly asOwnerRestricted: BTreeSet<u32>;1586 readonly type: 'Disabled' | 'Owner' | 'OwnerRestricted';1587 }15881589 /** @name UpDataStructsPropertyKeyPermission (177) */1590 export interface UpDataStructsPropertyKeyPermission extends Struct {1591 readonly key: Bytes;1592 readonly permission: UpDataStructsPropertyPermission;1593 }15941595 /** @name UpDataStructsPropertyPermission (179) */1596 export interface UpDataStructsPropertyPermission extends Struct {1597 readonly mutable: bool;1598 readonly collectionAdmin: bool;1599 readonly tokenOwner: bool;1600 }16011602 /** @name UpDataStructsProperty (182) */1603 export interface UpDataStructsProperty extends Struct {1604 readonly key: Bytes;1605 readonly value: Bytes;1606 }16071608 /** @name PalletEvmAccountBasicCrossAccountIdRepr (184) */1609 export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1610 readonly isSubstrate: boolean;1611 readonly asSubstrate: AccountId32;1612 readonly isEthereum: boolean;1613 readonly asEthereum: H160;1614 readonly type: 'Substrate' | 'Ethereum';1615 }16161617 /** @name UpDataStructsCreateItemData (186) */1618 export interface UpDataStructsCreateItemData extends Enum {1619 readonly isNft: boolean;1620 readonly asNft: UpDataStructsCreateNftData;1621 readonly isFungible: boolean;1622 readonly asFungible: UpDataStructsCreateFungibleData;1623 readonly isReFungible: boolean;1624 readonly asReFungible: UpDataStructsCreateReFungibleData;1625 readonly type: 'Nft' | 'Fungible' | 'ReFungible';1626 }16271628 /** @name UpDataStructsCreateNftData (187) */1629 export interface UpDataStructsCreateNftData extends Struct {1630 readonly constData: Bytes;1631 readonly properties: Vec<UpDataStructsProperty>;1632 }16331634 /** @name UpDataStructsCreateFungibleData (189) */1635 export interface UpDataStructsCreateFungibleData extends Struct {1636 readonly value: u128;1637 }16381639 /** @name UpDataStructsCreateReFungibleData (190) */1640 export interface UpDataStructsCreateReFungibleData extends Struct {1641 readonly constData: Bytes;1642 readonly pieces: u128;1643 }16441645 /** @name UpDataStructsCreateItemExData (194) */1646 export interface UpDataStructsCreateItemExData extends Enum {1647 readonly isNft: boolean;1648 readonly asNft: Vec<UpDataStructsCreateNftExData>;1649 readonly isFungible: boolean;1650 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1651 readonly isRefungibleMultipleItems: boolean;1652 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExData>;1653 readonly isRefungibleMultipleOwners: boolean;1654 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExData;1655 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';1656 }16571658 /** @name UpDataStructsCreateNftExData (196) */1659 export interface UpDataStructsCreateNftExData extends Struct {1660 readonly constData: Bytes;1661 readonly properties: Vec<UpDataStructsProperty>;1662 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1663 }16641665 /** @name UpDataStructsCreateRefungibleExData (203) */1666 export interface UpDataStructsCreateRefungibleExData extends Struct {1667 readonly constData: Bytes;1668 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;1669 }16701671 /** @name PalletTemplateTransactionPaymentCall (205) */1672 export type PalletTemplateTransactionPaymentCall = Null;16731674 /** @name PalletStructureCall (206) */1675 export type PalletStructureCall = Null;16761677 /** @name PalletRmrkCoreCall (207) */1678 export interface PalletRmrkCoreCall extends Enum {1679 readonly isCreateCollection: boolean;1680 readonly asCreateCollection: {1681 readonly metadata: Bytes;1682 readonly max: Option<u32>;1683 readonly symbol: Bytes;1684 } & Struct;1685 readonly isDestroyCollection: boolean;1686 readonly asDestroyCollection: {1687 readonly collectionId: u32;1688 } & Struct;1689 readonly isChangeCollectionIssuer: boolean;1690 readonly asChangeCollectionIssuer: {1691 readonly collectionId: u32;1692 readonly newIssuer: MultiAddress;1693 } & Struct;1694 readonly isLockCollection: boolean;1695 readonly asLockCollection: {1696 readonly collectionId: u32;1697 } & Struct;1698 readonly isMintNft: boolean;1699 readonly asMintNft: {1700 readonly owner: AccountId32;1701 readonly collectionId: u32;1702 readonly recipient: Option<AccountId32>;1703 readonly royaltyAmount: Option<Permill>;1704 readonly metadata: Bytes;1705 } & Struct;1706 readonly isBurnNft: boolean;1707 readonly asBurnNft: {1708 readonly collectionId: u32;1709 readonly nftId: u32;1710 } & Struct;1711 readonly isSetProperty: boolean;1712 readonly asSetProperty: {1713 readonly rmrkCollectionId: Compact<u32>;1714 readonly maybeNftId: Option<u32>;1715 readonly key: Bytes;1716 readonly value: Bytes;1717 } & Struct;1718 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'SetProperty';1719 }17201721 /** @name PalletRmrkEquipCall (213) */1722 export interface PalletRmrkEquipCall extends Enum {1723 readonly isCreateBase: boolean;1724 readonly asCreateBase: {1725 readonly baseType: Bytes;1726 readonly symbol: Bytes;1727 readonly parts: Vec<UpDataStructsRmrkPartType>;1728 } & Struct;1729 readonly isThemeAdd: boolean;1730 readonly asThemeAdd: {1731 readonly baseId: u32;1732 readonly theme: UpDataStructsRmrkTheme;1733 } & Struct;1734 readonly type: 'CreateBase' | 'ThemeAdd';1735 }17361737 /** @name UpDataStructsRmrkPartType (215) */1738 export interface UpDataStructsRmrkPartType extends Enum {1739 readonly isFixedPart: boolean;1740 readonly asFixedPart: UpDataStructsRmrkFixedPart;1741 readonly isSlotPart: boolean;1742 readonly asSlotPart: UpDataStructsRmrkSlotPart;1743 readonly type: 'FixedPart' | 'SlotPart';1744 }17451746 /** @name UpDataStructsRmrkFixedPart (217) */1747 export interface UpDataStructsRmrkFixedPart extends Struct {1748 readonly id: u32;1749 readonly z: u32;1750 readonly src: Bytes;1751 }17521753 /** @name UpDataStructsRmrkSlotPart (218) */1754 export interface UpDataStructsRmrkSlotPart extends Struct {1755 readonly id: u32;1756 readonly equippable: UpDataStructsRmrkEquippableList;1757 readonly src: Bytes;1758 readonly z: u32;1759 }17601761 /** @name UpDataStructsRmrkEquippableList (219) */1762 export interface UpDataStructsRmrkEquippableList extends Enum {1763 readonly isAll: boolean;1764 readonly isEmpty: boolean;1765 readonly isCustom: boolean;1766 readonly asCustom: Vec<u32>;1767 readonly type: 'All' | 'Empty' | 'Custom';1768 }17691770 /** @name UpDataStructsRmrkTheme (221) */1771 export interface UpDataStructsRmrkTheme extends Struct {1772 readonly name: Bytes;1773 readonly properties: Vec<UpDataStructsRmrkThemeProperty>;1774 readonly inherit: bool;1775 }17761777 /** @name UpDataStructsRmrkThemeProperty (223) */1778 export interface UpDataStructsRmrkThemeProperty extends Struct {1779 readonly key: Bytes;1780 readonly value: Bytes;1781 }17821783 /** @name PalletEvmCall (224) */1784 export interface PalletEvmCall extends Enum {1785 readonly isWithdraw: boolean;1786 readonly asWithdraw: {1787 readonly address: H160;1788 readonly value: u128;1789 } & Struct;1790 readonly isCall: boolean;1791 readonly asCall: {1792 readonly source: H160;1793 readonly target: H160;1794 readonly input: Bytes;1795 readonly value: U256;1796 readonly gasLimit: u64;1797 readonly maxFeePerGas: U256;1798 readonly maxPriorityFeePerGas: Option<U256>;1799 readonly nonce: Option<U256>;1800 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1801 } & Struct;1802 readonly isCreate: boolean;1803 readonly asCreate: {1804 readonly source: H160;1805 readonly init: Bytes;1806 readonly value: U256;1807 readonly gasLimit: u64;1808 readonly maxFeePerGas: U256;1809 readonly maxPriorityFeePerGas: Option<U256>;1810 readonly nonce: Option<U256>;1811 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1812 } & Struct;1813 readonly isCreate2: boolean;1814 readonly asCreate2: {1815 readonly source: H160;1816 readonly init: Bytes;1817 readonly salt: H256;1818 readonly value: U256;1819 readonly gasLimit: u64;1820 readonly maxFeePerGas: U256;1821 readonly maxPriorityFeePerGas: Option<U256>;1822 readonly nonce: Option<U256>;1823 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1824 } & Struct;1825 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1826 }18271828 /** @name PalletEthereumCall (230) */1829 export interface PalletEthereumCall extends Enum {1830 readonly isTransact: boolean;1831 readonly asTransact: {1832 readonly transaction: EthereumTransactionTransactionV2;1833 } & Struct;1834 readonly type: 'Transact';1835 }18361837 /** @name EthereumTransactionTransactionV2 (231) */1838 export interface EthereumTransactionTransactionV2 extends Enum {1839 readonly isLegacy: boolean;1840 readonly asLegacy: EthereumTransactionLegacyTransaction;1841 readonly isEip2930: boolean;1842 readonly asEip2930: EthereumTransactionEip2930Transaction;1843 readonly isEip1559: boolean;1844 readonly asEip1559: EthereumTransactionEip1559Transaction;1845 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';1846 }18471848 /** @name EthereumTransactionLegacyTransaction (232) */1849 export interface EthereumTransactionLegacyTransaction extends Struct {1850 readonly nonce: U256;1851 readonly gasPrice: U256;1852 readonly gasLimit: U256;1853 readonly action: EthereumTransactionTransactionAction;1854 readonly value: U256;1855 readonly input: Bytes;1856 readonly signature: EthereumTransactionTransactionSignature;1857 }18581859 /** @name EthereumTransactionTransactionAction (233) */1860 export interface EthereumTransactionTransactionAction extends Enum {1861 readonly isCall: boolean;1862 readonly asCall: H160;1863 readonly isCreate: boolean;1864 readonly type: 'Call' | 'Create';1865 }18661867 /** @name EthereumTransactionTransactionSignature (234) */1868 export interface EthereumTransactionTransactionSignature extends Struct {1869 readonly v: u64;1870 readonly r: H256;1871 readonly s: H256;1872 }18731874 /** @name EthereumTransactionEip2930Transaction (236) */1875 export interface EthereumTransactionEip2930Transaction extends Struct {1876 readonly chainId: u64;1877 readonly nonce: U256;1878 readonly gasPrice: U256;1879 readonly gasLimit: U256;1880 readonly action: EthereumTransactionTransactionAction;1881 readonly value: U256;1882 readonly input: Bytes;1883 readonly accessList: Vec<EthereumTransactionAccessListItem>;1884 readonly oddYParity: bool;1885 readonly r: H256;1886 readonly s: H256;1887 }18881889 /** @name EthereumTransactionAccessListItem (238) */1890 export interface EthereumTransactionAccessListItem extends Struct {1891 readonly address: H160;1892 readonly storageKeys: Vec<H256>;1893 }18941895 /** @name EthereumTransactionEip1559Transaction (239) */1896 export interface EthereumTransactionEip1559Transaction extends Struct {1897 readonly chainId: u64;1898 readonly nonce: U256;1899 readonly maxPriorityFeePerGas: U256;1900 readonly maxFeePerGas: U256;1901 readonly gasLimit: U256;1902 readonly action: EthereumTransactionTransactionAction;1903 readonly value: U256;1904 readonly input: Bytes;1905 readonly accessList: Vec<EthereumTransactionAccessListItem>;1906 readonly oddYParity: bool;1907 readonly r: H256;1908 readonly s: H256;1909 }19101911 /** @name PalletEvmMigrationCall (240) */1912 export interface PalletEvmMigrationCall extends Enum {1913 readonly isBegin: boolean;1914 readonly asBegin: {1915 readonly address: H160;1916 } & Struct;1917 readonly isSetData: boolean;1918 readonly asSetData: {1919 readonly address: H160;1920 readonly data: Vec<ITuple<[H256, H256]>>;1921 } & Struct;1922 readonly isFinish: boolean;1923 readonly asFinish: {1924 readonly address: H160;1925 readonly code: Bytes;1926 } & Struct;1927 readonly type: 'Begin' | 'SetData' | 'Finish';1928 }19291930 /** @name PalletSudoEvent (243) */1931 export interface PalletSudoEvent extends Enum {1932 readonly isSudid: boolean;1933 readonly asSudid: {1934 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1935 } & Struct;1936 readonly isKeyChanged: boolean;1937 readonly asKeyChanged: {1938 readonly oldSudoer: Option<AccountId32>;1939 } & Struct;1940 readonly isSudoAsDone: boolean;1941 readonly asSudoAsDone: {1942 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;1943 } & Struct;1944 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';1945 }19461947 /** @name SpRuntimeDispatchError (245) */1948 export interface SpRuntimeDispatchError extends Enum {1949 readonly isOther: boolean;1950 readonly isCannotLookup: boolean;1951 readonly isBadOrigin: boolean;1952 readonly isModule: boolean;1953 readonly asModule: SpRuntimeModuleError;1954 readonly isConsumerRemaining: boolean;1955 readonly isNoProviders: boolean;1956 readonly isTooManyConsumers: boolean;1957 readonly isToken: boolean;1958 readonly asToken: SpRuntimeTokenError;1959 readonly isArithmetic: boolean;1960 readonly asArithmetic: SpRuntimeArithmeticError;1961 readonly isTransactional: boolean;1962 readonly asTransactional: SpRuntimeTransactionalError;1963 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';1964 }19651966 /** @name SpRuntimeModuleError (246) */1967 export interface SpRuntimeModuleError extends Struct {1968 readonly index: u8;1969 readonly error: U8aFixed;1970 }19711972 /** @name SpRuntimeTokenError (247) */1973 export interface SpRuntimeTokenError extends Enum {1974 readonly isNoFunds: boolean;1975 readonly isWouldDie: boolean;1976 readonly isBelowMinimum: boolean;1977 readonly isCannotCreate: boolean;1978 readonly isUnknownAsset: boolean;1979 readonly isFrozen: boolean;1980 readonly isUnsupported: boolean;1981 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';1982 }19831984 /** @name SpRuntimeArithmeticError (248) */1985 export interface SpRuntimeArithmeticError extends Enum {1986 readonly isUnderflow: boolean;1987 readonly isOverflow: boolean;1988 readonly isDivisionByZero: boolean;1989 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';1990 }19911992 /** @name SpRuntimeTransactionalError (249) */1993 export interface SpRuntimeTransactionalError extends Enum {1994 readonly isLimitReached: boolean;1995 readonly isNoLayer: boolean;1996 readonly type: 'LimitReached' | 'NoLayer';1997 }19981999 /** @name PalletSudoError (250) */2000 export interface PalletSudoError extends Enum {2001 readonly isRequireSudo: boolean;2002 readonly type: 'RequireSudo';2003 }20042005 /** @name FrameSystemAccountInfo (251) */2006 export interface FrameSystemAccountInfo extends Struct {2007 readonly nonce: u32;2008 readonly consumers: u32;2009 readonly providers: u32;2010 readonly sufficients: u32;2011 readonly data: PalletBalancesAccountData;2012 }20132014 /** @name FrameSupportWeightsPerDispatchClassU64 (252) */2015 export interface FrameSupportWeightsPerDispatchClassU64 extends Struct {2016 readonly normal: u64;2017 readonly operational: u64;2018 readonly mandatory: u64;2019 }20202021 /** @name SpRuntimeDigest (253) */2022 export interface SpRuntimeDigest extends Struct {2023 readonly logs: Vec<SpRuntimeDigestDigestItem>;2024 }20252026 /** @name SpRuntimeDigestDigestItem (255) */2027 export interface SpRuntimeDigestDigestItem extends Enum {2028 readonly isOther: boolean;2029 readonly asOther: Bytes;2030 readonly isConsensus: boolean;2031 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;2032 readonly isSeal: boolean;2033 readonly asSeal: ITuple<[U8aFixed, Bytes]>;2034 readonly isPreRuntime: boolean;2035 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;2036 readonly isRuntimeEnvironmentUpdated: boolean;2037 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2038 }20392040 /** @name FrameSystemEventRecord (257) */2041 export interface FrameSystemEventRecord extends Struct {2042 readonly phase: FrameSystemPhase;2043 readonly event: Event;2044 readonly topics: Vec<H256>;2045 }20462047 /** @name FrameSystemEvent (259) */2048 export interface FrameSystemEvent extends Enum {2049 readonly isExtrinsicSuccess: boolean;2050 readonly asExtrinsicSuccess: {2051 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;2052 } & Struct;2053 readonly isExtrinsicFailed: boolean;2054 readonly asExtrinsicFailed: {2055 readonly dispatchError: SpRuntimeDispatchError;2056 readonly dispatchInfo: FrameSupportWeightsDispatchInfo;2057 } & Struct;2058 readonly isCodeUpdated: boolean;2059 readonly isNewAccount: boolean;2060 readonly asNewAccount: {2061 readonly account: AccountId32;2062 } & Struct;2063 readonly isKilledAccount: boolean;2064 readonly asKilledAccount: {2065 readonly account: AccountId32;2066 } & Struct;2067 readonly isRemarked: boolean;2068 readonly asRemarked: {2069 readonly sender: AccountId32;2070 readonly hash_: H256;2071 } & Struct;2072 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';2073 }20742075 /** @name FrameSupportWeightsDispatchInfo (260) */2076 export interface FrameSupportWeightsDispatchInfo extends Struct {2077 readonly weight: u64;2078 readonly class: FrameSupportWeightsDispatchClass;2079 readonly paysFee: FrameSupportWeightsPays;2080 }20812082 /** @name FrameSupportWeightsDispatchClass (261) */2083 export interface FrameSupportWeightsDispatchClass extends Enum {2084 readonly isNormal: boolean;2085 readonly isOperational: boolean;2086 readonly isMandatory: boolean;2087 readonly type: 'Normal' | 'Operational' | 'Mandatory';2088 }20892090 /** @name FrameSupportWeightsPays (262) */2091 export interface FrameSupportWeightsPays extends Enum {2092 readonly isYes: boolean;2093 readonly isNo: boolean;2094 readonly type: 'Yes' | 'No';2095 }20962097 /** @name OrmlVestingModuleEvent (263) */2098 export interface OrmlVestingModuleEvent extends Enum {2099 readonly isVestingScheduleAdded: boolean;2100 readonly asVestingScheduleAdded: {2101 readonly from: AccountId32;2102 readonly to: AccountId32;2103 readonly vestingSchedule: OrmlVestingVestingSchedule;2104 } & Struct;2105 readonly isClaimed: boolean;2106 readonly asClaimed: {2107 readonly who: AccountId32;2108 readonly amount: u128;2109 } & Struct;2110 readonly isVestingSchedulesUpdated: boolean;2111 readonly asVestingSchedulesUpdated: {2112 readonly who: AccountId32;2113 } & Struct;2114 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';2115 }21162117 /** @name CumulusPalletXcmpQueueEvent (264) */2118 export interface CumulusPalletXcmpQueueEvent extends Enum {2119 readonly isSuccess: boolean;2120 readonly asSuccess: Option<H256>;2121 readonly isFail: boolean;2122 readonly asFail: ITuple<[Option<H256>, XcmV2TraitsError]>;2123 readonly isBadVersion: boolean;2124 readonly asBadVersion: Option<H256>;2125 readonly isBadFormat: boolean;2126 readonly asBadFormat: Option<H256>;2127 readonly isUpwardMessageSent: boolean;2128 readonly asUpwardMessageSent: Option<H256>;2129 readonly isXcmpMessageSent: boolean;2130 readonly asXcmpMessageSent: Option<H256>;2131 readonly isOverweightEnqueued: boolean;2132 readonly asOverweightEnqueued: ITuple<[u32, u32, u64, u64]>;2133 readonly isOverweightServiced: boolean;2134 readonly asOverweightServiced: ITuple<[u64, u64]>;2135 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';2136 }21372138 /** @name PalletXcmEvent (265) */2139 export interface PalletXcmEvent extends Enum {2140 readonly isAttempted: boolean;2141 readonly asAttempted: XcmV2TraitsOutcome;2142 readonly isSent: boolean;2143 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;2144 readonly isUnexpectedResponse: boolean;2145 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;2146 readonly isResponseReady: boolean;2147 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;2148 readonly isNotified: boolean;2149 readonly asNotified: ITuple<[u64, u8, u8]>;2150 readonly isNotifyOverweight: boolean;2151 readonly asNotifyOverweight: ITuple<[u64, u8, u8, u64, u64]>;2152 readonly isNotifyDispatchError: boolean;2153 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2154 readonly isNotifyDecodeFailed: boolean;2155 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;2156 readonly isInvalidResponder: boolean;2157 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;2158 readonly isInvalidResponderVersion: boolean;2159 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;2160 readonly isResponseTaken: boolean;2161 readonly asResponseTaken: u64;2162 readonly isAssetsTrapped: boolean;2163 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2164 readonly isVersionChangeNotified: boolean;2165 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;2166 readonly isSupportedVersionChanged: boolean;2167 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;2168 readonly isNotifyTargetSendFail: boolean;2169 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;2170 readonly isNotifyTargetMigrationFail: boolean;2171 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2172 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';2173 }21742175 /** @name XcmV2TraitsOutcome (266) */2176 export interface XcmV2TraitsOutcome extends Enum {2177 readonly isComplete: boolean;2178 readonly asComplete: u64;2179 readonly isIncomplete: boolean;2180 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;2181 readonly isError: boolean;2182 readonly asError: XcmV2TraitsError;2183 readonly type: 'Complete' | 'Incomplete' | 'Error';2184 }21852186 /** @name CumulusPalletXcmEvent (268) */2187 export interface CumulusPalletXcmEvent extends Enum {2188 readonly isInvalidFormat: boolean;2189 readonly asInvalidFormat: U8aFixed;2190 readonly isUnsupportedVersion: boolean;2191 readonly asUnsupportedVersion: U8aFixed;2192 readonly isExecutedDownward: boolean;2193 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;2194 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';2195 }21962197 /** @name CumulusPalletDmpQueueEvent (269) */2198 export interface CumulusPalletDmpQueueEvent extends Enum {2199 readonly isInvalidFormat: boolean;2200 readonly asInvalidFormat: U8aFixed;2201 readonly isUnsupportedVersion: boolean;2202 readonly asUnsupportedVersion: U8aFixed;2203 readonly isExecutedDownward: boolean;2204 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;2205 readonly isWeightExhausted: boolean;2206 readonly asWeightExhausted: ITuple<[U8aFixed, u64, u64]>;2207 readonly isOverweightEnqueued: boolean;2208 readonly asOverweightEnqueued: ITuple<[U8aFixed, u64, u64]>;2209 readonly isOverweightServiced: boolean;2210 readonly asOverweightServiced: ITuple<[u64, u64]>;2211 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';2212 }22132214 /** @name PalletUniqueRawEvent (270) */2215 export interface PalletUniqueRawEvent extends Enum {2216 readonly isCollectionSponsorRemoved: boolean;2217 readonly asCollectionSponsorRemoved: u32;2218 readonly isCollectionAdminAdded: boolean;2219 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2220 readonly isCollectionOwnedChanged: boolean;2221 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;2222 readonly isCollectionSponsorSet: boolean;2223 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;2224 readonly isConstOnChainSchemaSet: boolean;2225 readonly asConstOnChainSchemaSet: u32;2226 readonly isSponsorshipConfirmed: boolean;2227 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;2228 readonly isCollectionAdminRemoved: boolean;2229 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2230 readonly isAllowListAddressRemoved: boolean;2231 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2232 readonly isAllowListAddressAdded: boolean;2233 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;2234 readonly isCollectionLimitSet: boolean;2235 readonly asCollectionLimitSet: u32;2236 readonly isMintPermissionSet: boolean;2237 readonly asMintPermissionSet: u32;2238 readonly isOffchainSchemaSet: boolean;2239 readonly asOffchainSchemaSet: u32;2240 readonly isPublicAccessModeSet: boolean;2241 readonly asPublicAccessModeSet: ITuple<[u32, UpDataStructsAccessMode]>;2242 readonly isSchemaVersionSet: boolean;2243 readonly asSchemaVersionSet: u32;2244 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'ConstOnChainSchemaSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'MintPermissionSet' | 'OffchainSchemaSet' | 'PublicAccessModeSet' | 'SchemaVersionSet';2245 }22462247 /** @name PalletCommonEvent (271) */2248 export interface PalletCommonEvent extends Enum {2249 readonly isCollectionCreated: boolean;2250 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;2251 readonly isCollectionDestroyed: boolean;2252 readonly asCollectionDestroyed: u32;2253 readonly isItemCreated: boolean;2254 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2255 readonly isItemDestroyed: boolean;2256 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2257 readonly isTransfer: boolean;2258 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2259 readonly isApproved: boolean;2260 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;2261 readonly isCollectionPropertySet: boolean;2262 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;2263 readonly isCollectionPropertyDeleted: boolean;2264 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;2265 readonly isTokenPropertySet: boolean;2266 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;2267 readonly isTokenPropertyDeleted: boolean;2268 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;2269 readonly isPropertyPermissionSet: boolean;2270 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;2271 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';2272 }22732274 /** @name PalletStructureEvent (272) */2275 export interface PalletStructureEvent extends Enum {2276 readonly isExecuted: boolean;2277 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2278 readonly type: 'Executed';2279 }22802281 /** @name PalletRmrkCoreEvent (273) */2282 export interface PalletRmrkCoreEvent extends Enum {2283 readonly isCollectionCreated: boolean;2284 readonly asCollectionCreated: {2285 readonly issuer: AccountId32;2286 readonly collectionId: u32;2287 } & Struct;2288 readonly isCollectionDestroyed: boolean;2289 readonly asCollectionDestroyed: {2290 readonly issuer: AccountId32;2291 readonly collectionId: u32;2292 } & Struct;2293 readonly isIssuerChanged: boolean;2294 readonly asIssuerChanged: {2295 readonly oldIssuer: AccountId32;2296 readonly newIssuer: AccountId32;2297 readonly collectionId: u32;2298 } & Struct;2299 readonly isCollectionLocked: boolean;2300 readonly asCollectionLocked: {2301 readonly issuer: AccountId32;2302 readonly collectionId: u32;2303 } & Struct;2304 readonly isNftMinted: boolean;2305 readonly asNftMinted: {2306 readonly owner: AccountId32;2307 readonly collectionId: u32;2308 readonly nftId: u32;2309 } & Struct;2310 readonly isNftBurned: boolean;2311 readonly asNftBurned: {2312 readonly owner: AccountId32;2313 readonly nftId: u32;2314 } & Struct;2315 readonly isPropertySet: boolean;2316 readonly asPropertySet: {2317 readonly collectionId: u32;2318 readonly maybeNftId: Option<u32>;2319 readonly key: Bytes;2320 readonly value: Bytes;2321 } & Struct;2322 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'PropertySet';2323 }23242325 /** @name PalletRmrkEquipEvent (274) */2326 export interface PalletRmrkEquipEvent extends Enum {2327 readonly isBaseCreated: boolean;2328 readonly asBaseCreated: {2329 readonly issuer: AccountId32;2330 readonly baseId: u32;2331 } & Struct;2332 readonly type: 'BaseCreated';2333 }23342335 /** @name PalletEvmEvent (275) */2336 export interface PalletEvmEvent extends Enum {2337 readonly isLog: boolean;2338 readonly asLog: EthereumLog;2339 readonly isCreated: boolean;2340 readonly asCreated: H160;2341 readonly isCreatedFailed: boolean;2342 readonly asCreatedFailed: H160;2343 readonly isExecuted: boolean;2344 readonly asExecuted: H160;2345 readonly isExecutedFailed: boolean;2346 readonly asExecutedFailed: H160;2347 readonly isBalanceDeposit: boolean;2348 readonly asBalanceDeposit: ITuple<[AccountId32, H160, U256]>;2349 readonly isBalanceWithdraw: boolean;2350 readonly asBalanceWithdraw: ITuple<[AccountId32, H160, U256]>;2351 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';2352 }23532354 /** @name EthereumLog (276) */2355 export interface EthereumLog extends Struct {2356 readonly address: H160;2357 readonly topics: Vec<H256>;2358 readonly data: Bytes;2359 }23602361 /** @name PalletEthereumEvent (277) */2362 export interface PalletEthereumEvent extends Enum {2363 readonly isExecuted: boolean;2364 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;2365 readonly type: 'Executed';2366 }23672368 /** @name EvmCoreErrorExitReason (278) */2369 export interface EvmCoreErrorExitReason extends Enum {2370 readonly isSucceed: boolean;2371 readonly asSucceed: EvmCoreErrorExitSucceed;2372 readonly isError: boolean;2373 readonly asError: EvmCoreErrorExitError;2374 readonly isRevert: boolean;2375 readonly asRevert: EvmCoreErrorExitRevert;2376 readonly isFatal: boolean;2377 readonly asFatal: EvmCoreErrorExitFatal;2378 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';2379 }23802381 /** @name EvmCoreErrorExitSucceed (279) */2382 export interface EvmCoreErrorExitSucceed extends Enum {2383 readonly isStopped: boolean;2384 readonly isReturned: boolean;2385 readonly isSuicided: boolean;2386 readonly type: 'Stopped' | 'Returned' | 'Suicided';2387 }23882389 /** @name EvmCoreErrorExitError (280) */2390 export interface EvmCoreErrorExitError extends Enum {2391 readonly isStackUnderflow: boolean;2392 readonly isStackOverflow: boolean;2393 readonly isInvalidJump: boolean;2394 readonly isInvalidRange: boolean;2395 readonly isDesignatedInvalid: boolean;2396 readonly isCallTooDeep: boolean;2397 readonly isCreateCollision: boolean;2398 readonly isCreateContractLimit: boolean;2399 readonly isOutOfOffset: boolean;2400 readonly isOutOfGas: boolean;2401 readonly isOutOfFund: boolean;2402 readonly isPcUnderflow: boolean;2403 readonly isCreateEmpty: boolean;2404 readonly isOther: boolean;2405 readonly asOther: Text;2406 readonly isInvalidCode: boolean;2407 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';2408 }24092410 /** @name EvmCoreErrorExitRevert (283) */2411 export interface EvmCoreErrorExitRevert extends Enum {2412 readonly isReverted: boolean;2413 readonly type: 'Reverted';2414 }24152416 /** @name EvmCoreErrorExitFatal (284) */2417 export interface EvmCoreErrorExitFatal extends Enum {2418 readonly isNotSupported: boolean;2419 readonly isUnhandledInterrupt: boolean;2420 readonly isCallErrorAsFatal: boolean;2421 readonly asCallErrorAsFatal: EvmCoreErrorExitError;2422 readonly isOther: boolean;2423 readonly asOther: Text;2424 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';2425 }24262427 /** @name FrameSystemPhase (285) */2428 export interface FrameSystemPhase extends Enum {2429 readonly isApplyExtrinsic: boolean;2430 readonly asApplyExtrinsic: u32;2431 readonly isFinalization: boolean;2432 readonly isInitialization: boolean;2433 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';2434 }24352436 /** @name FrameSystemLastRuntimeUpgradeInfo (287) */2437 export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {2438 readonly specVersion: Compact<u32>;2439 readonly specName: Text;2440 }24412442 /** @name FrameSystemLimitsBlockWeights (288) */2443 export interface FrameSystemLimitsBlockWeights extends Struct {2444 readonly baseBlock: u64;2445 readonly maxBlock: u64;2446 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;2447 }24482449 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (289) */2450 export interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {2451 readonly normal: FrameSystemLimitsWeightsPerClass;2452 readonly operational: FrameSystemLimitsWeightsPerClass;2453 readonly mandatory: FrameSystemLimitsWeightsPerClass;2454 }24552456 /** @name FrameSystemLimitsWeightsPerClass (290) */2457 export interface FrameSystemLimitsWeightsPerClass extends Struct {2458 readonly baseExtrinsic: u64;2459 readonly maxExtrinsic: Option<u64>;2460 readonly maxTotal: Option<u64>;2461 readonly reserved: Option<u64>;2462 }24632464 /** @name FrameSystemLimitsBlockLength (292) */2465 export interface FrameSystemLimitsBlockLength extends Struct {2466 readonly max: FrameSupportWeightsPerDispatchClassU32;2467 }24682469 /** @name FrameSupportWeightsPerDispatchClassU32 (293) */2470 export interface FrameSupportWeightsPerDispatchClassU32 extends Struct {2471 readonly normal: u32;2472 readonly operational: u32;2473 readonly mandatory: u32;2474 }24752476 /** @name FrameSupportWeightsRuntimeDbWeight (294) */2477 export interface FrameSupportWeightsRuntimeDbWeight extends Struct {2478 readonly read: u64;2479 readonly write: u64;2480 }24812482 /** @name SpVersionRuntimeVersion (295) */2483 export interface SpVersionRuntimeVersion extends Struct {2484 readonly specName: Text;2485 readonly implName: Text;2486 readonly authoringVersion: u32;2487 readonly specVersion: u32;2488 readonly implVersion: u32;2489 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2490 readonly transactionVersion: u32;2491 readonly stateVersion: u8;2492 }24932494 /** @name FrameSystemError (299) */2495 export interface FrameSystemError extends Enum {2496 readonly isInvalidSpecName: boolean;2497 readonly isSpecVersionNeedsToIncrease: boolean;2498 readonly isFailedToExtractRuntimeVersion: boolean;2499 readonly isNonDefaultComposite: boolean;2500 readonly isNonZeroRefCount: boolean;2501 readonly isCallFiltered: boolean;2502 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';2503 }25042505 /** @name OrmlVestingModuleError (301) */2506 export interface OrmlVestingModuleError extends Enum {2507 readonly isZeroVestingPeriod: boolean;2508 readonly isZeroVestingPeriodCount: boolean;2509 readonly isInsufficientBalanceToLock: boolean;2510 readonly isTooManyVestingSchedules: boolean;2511 readonly isAmountLow: boolean;2512 readonly isMaxVestingSchedulesExceeded: boolean;2513 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';2514 }25152516 /** @name CumulusPalletXcmpQueueInboundChannelDetails (303) */2517 export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {2518 readonly sender: u32;2519 readonly state: CumulusPalletXcmpQueueInboundState;2520 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;2521 }25222523 /** @name CumulusPalletXcmpQueueInboundState (304) */2524 export interface CumulusPalletXcmpQueueInboundState extends Enum {2525 readonly isOk: boolean;2526 readonly isSuspended: boolean;2527 readonly type: 'Ok' | 'Suspended';2528 }25292530 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (307) */2531 export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2532 readonly isConcatenatedVersionedXcm: boolean;2533 readonly isConcatenatedEncodedBlob: boolean;2534 readonly isSignals: boolean;2535 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2536 }25372538 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (310) */2539 export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {2540 readonly recipient: u32;2541 readonly state: CumulusPalletXcmpQueueOutboundState;2542 readonly signalsExist: bool;2543 readonly firstIndex: u16;2544 readonly lastIndex: u16;2545 }25462547 /** @name CumulusPalletXcmpQueueOutboundState (311) */2548 export interface CumulusPalletXcmpQueueOutboundState extends Enum {2549 readonly isOk: boolean;2550 readonly isSuspended: boolean;2551 readonly type: 'Ok' | 'Suspended';2552 }25532554 /** @name CumulusPalletXcmpQueueQueueConfigData (313) */2555 export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {2556 readonly suspendThreshold: u32;2557 readonly dropThreshold: u32;2558 readonly resumeThreshold: u32;2559 readonly thresholdWeight: u64;2560 readonly weightRestrictDecay: u64;2561 readonly xcmpMaxIndividualWeight: u64;2562 }25632564 /** @name CumulusPalletXcmpQueueError (315) */2565 export interface CumulusPalletXcmpQueueError extends Enum {2566 readonly isFailedToSend: boolean;2567 readonly isBadXcmOrigin: boolean;2568 readonly isBadXcm: boolean;2569 readonly isBadOverweightIndex: boolean;2570 readonly isWeightOverLimit: boolean;2571 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';2572 }25732574 /** @name PalletXcmError (316) */2575 export interface PalletXcmError extends Enum {2576 readonly isUnreachable: boolean;2577 readonly isSendFailure: boolean;2578 readonly isFiltered: boolean;2579 readonly isUnweighableMessage: boolean;2580 readonly isDestinationNotInvertible: boolean;2581 readonly isEmpty: boolean;2582 readonly isCannotReanchor: boolean;2583 readonly isTooManyAssets: boolean;2584 readonly isInvalidOrigin: boolean;2585 readonly isBadVersion: boolean;2586 readonly isBadLocation: boolean;2587 readonly isNoSubscription: boolean;2588 readonly isAlreadySubscribed: boolean;2589 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2590 }25912592 /** @name CumulusPalletXcmError (317) */2593 export type CumulusPalletXcmError = Null;25942595 /** @name CumulusPalletDmpQueueConfigData (318) */2596 export interface CumulusPalletDmpQueueConfigData extends Struct {2597 readonly maxIndividual: u64;2598 }25992600 /** @name CumulusPalletDmpQueuePageIndexData (319) */2601 export interface CumulusPalletDmpQueuePageIndexData extends Struct {2602 readonly beginUsed: u32;2603 readonly endUsed: u32;2604 readonly overweightCount: u64;2605 }26062607 /** @name CumulusPalletDmpQueueError (322) */2608 export interface CumulusPalletDmpQueueError extends Enum {2609 readonly isUnknown: boolean;2610 readonly isOverLimit: boolean;2611 readonly type: 'Unknown' | 'OverLimit';2612 }26132614 /** @name PalletUniqueError (326) */2615 export interface PalletUniqueError extends Enum {2616 readonly isCollectionDecimalPointLimitExceeded: boolean;2617 readonly isConfirmUnsetSponsorFail: boolean;2618 readonly isEmptyArgument: boolean;2619 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument';2620 }26212622 /** @name UpDataStructsCollection (327) */2623 export interface UpDataStructsCollection extends Struct {2624 readonly owner: AccountId32;2625 readonly mode: UpDataStructsCollectionMode;2626 readonly access: UpDataStructsAccessMode;2627 readonly name: Vec<u16>;2628 readonly description: Vec<u16>;2629 readonly tokenPrefix: Bytes;2630 readonly mintMode: bool;2631 readonly schemaVersion: UpDataStructsSchemaVersion;2632 readonly sponsorship: UpDataStructsSponsorshipState;2633 readonly limits: UpDataStructsCollectionLimits;2634 }26352636 /** @name UpDataStructsSponsorshipState (328) */2637 export interface UpDataStructsSponsorshipState extends Enum {2638 readonly isDisabled: boolean;2639 readonly isUnconfirmed: boolean;2640 readonly asUnconfirmed: AccountId32;2641 readonly isConfirmed: boolean;2642 readonly asConfirmed: AccountId32;2643 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';2644 }26452646 /** @name UpDataStructsProperties (329) */2647 export interface UpDataStructsProperties extends Struct {2648 readonly map: UpDataStructsPropertiesMapBoundedVec;2649 readonly consumedSpace: u32;2650 readonly spaceLimit: u32;2651 }26522653 /** @name UpDataStructsPropertiesMapBoundedVec (330) */2654 export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}26552656 /** @name UpDataStructsPropertiesMapPropertyPermission (335) */2657 export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}26582659 /** @name UpDataStructsCollectionField (341) */2660 export interface UpDataStructsCollectionField extends Enum {2661 readonly isConstOnChainSchema: boolean;2662 readonly isOffchainSchema: boolean;2663 readonly type: 'ConstOnChainSchema' | 'OffchainSchema';2664 }26652666 /** @name UpDataStructsCollectionStats (344) */2667 export interface UpDataStructsCollectionStats extends Struct {2668 readonly created: u32;2669 readonly destroyed: u32;2670 readonly alive: u32;2671 }26722673 /** @name PhantomTypeUpDataStructsTokenData (345) */2674 export interface PhantomTypeUpDataStructsTokenData extends Vec<UpDataStructsTokenData> {}26752676 /** @name UpDataStructsTokenData (346) */2677 export interface UpDataStructsTokenData extends Struct {2678 readonly constData: Bytes;2679 readonly properties: Vec<UpDataStructsProperty>;2680 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;2681 }26822683 /** @name PhantomTypeUpDataStructsRpcCollection (349) */2684 export interface PhantomTypeUpDataStructsRpcCollection extends Vec<UpDataStructsRpcCollection> {}26852686 /** @name UpDataStructsRpcCollection (350) */2687 export interface UpDataStructsRpcCollection extends Struct {2688 readonly owner: AccountId32;2689 readonly mode: UpDataStructsCollectionMode;2690 readonly access: UpDataStructsAccessMode;2691 readonly name: Vec<u16>;2692 readonly description: Vec<u16>;2693 readonly tokenPrefix: Bytes;2694 readonly mintMode: bool;2695 readonly offchainSchema: Bytes;2696 readonly schemaVersion: UpDataStructsSchemaVersion;2697 readonly sponsorship: UpDataStructsSponsorshipState;2698 readonly limits: UpDataStructsCollectionLimits;2699 readonly constOnChainSchema: Bytes;2700 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2701 readonly properties: Vec<UpDataStructsProperty>;2702 }27032704 /** @name PhantomTypeUpDataStructsCollectionInfo (352) */2705 export interface PhantomTypeUpDataStructsCollectionInfo extends Vec<UpDataStructsRmrkCollectionInfo> {}27062707 /** @name UpDataStructsRmrkCollectionInfo (353) */2708 export interface UpDataStructsRmrkCollectionInfo extends Struct {2709 readonly issuer: AccountId32;2710 readonly metadata: Bytes;2711 readonly max: Option<u32>;2712 readonly symbol: Bytes;2713 readonly nftsCount: u32;2714 }27152716 /** @name PhantomTypeUpDataStructsNftInfo (355) */2717 export interface PhantomTypeUpDataStructsNftInfo extends Vec<UpDataStructsRmrkNftInfo> {}27182719 /** @name UpDataStructsRmrkNftInfo (356) */2720 export interface UpDataStructsRmrkNftInfo extends Struct {2721 readonly owner: UpDataStructsRmrkAccountIdOrCollectionNftTuple;2722 readonly royalty: Option<UpDataStructsRmrkRoyaltyInfo>;2723 readonly metadata: Bytes;2724 readonly equipped: bool;2725 readonly pending: bool;2726 }27272728 /** @name UpDataStructsRmrkAccountIdOrCollectionNftTuple (357) */2729 export interface UpDataStructsRmrkAccountIdOrCollectionNftTuple extends Enum {2730 readonly isAccountId: boolean;2731 readonly asAccountId: AccountId32;2732 readonly isCollectionAndNftTuple: boolean;2733 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;2734 readonly type: 'AccountId' | 'CollectionAndNftTuple';2735 }27362737 /** @name UpDataStructsRmrkRoyaltyInfo (359) */2738 export interface UpDataStructsRmrkRoyaltyInfo extends Struct {2739 readonly recipient: AccountId32;2740 readonly amount: Permill;2741 }27422743 /** @name PhantomTypeUpDataStructsResourceInfo (361) */2744 export interface PhantomTypeUpDataStructsResourceInfo extends Vec<UpDataStructsRmrkResourceInfo> {}27452746 /** @name UpDataStructsRmrkResourceInfo (362) */2747 export interface UpDataStructsRmrkResourceInfo extends Struct {2748 readonly id: Bytes;2749 readonly resource: UpDataStructsRmrkResourceTypes;2750 readonly pending: bool;2751 readonly pendingRemoval: bool;2752 }27532754 /** @name UpDataStructsRmrkResourceTypes (365) */2755 export interface UpDataStructsRmrkResourceTypes extends Enum {2756 readonly isBasic: boolean;2757 readonly asBasic: UpDataStructsRmrkBasicResource;2758 readonly isComposable: boolean;2759 readonly asComposable: UpDataStructsRmrkComposableResource;2760 readonly isSlot: boolean;2761 readonly asSlot: UpDataStructsRmrkSlotResource;2762 readonly type: 'Basic' | 'Composable' | 'Slot';2763 }27642765 /** @name UpDataStructsRmrkBasicResource (366) */2766 export interface UpDataStructsRmrkBasicResource extends Struct {2767 readonly src: Option<Bytes>;2768 readonly metadata: Option<Bytes>;2769 readonly license: Option<Bytes>;2770 readonly thumb: Option<Bytes>;2771 }27722773 /** @name UpDataStructsRmrkComposableResource (368) */2774 export interface UpDataStructsRmrkComposableResource extends Struct {2775 readonly parts: Vec<u32>;2776 readonly base: u32;2777 readonly src: Option<Bytes>;2778 readonly metadata: Option<Bytes>;2779 readonly license: Option<Bytes>;2780 readonly thumb: Option<Bytes>;2781 }27822783 /** @name UpDataStructsRmrkSlotResource (369) */2784 export interface UpDataStructsRmrkSlotResource extends Struct {2785 readonly base: u32;2786 readonly src: Option<Bytes>;2787 readonly metadata: Option<Bytes>;2788 readonly slot: u32;2789 readonly license: Option<Bytes>;2790 readonly thumb: Option<Bytes>;2791 }27922793 /** @name PhantomTypeUpDataStructsPropertyInfo (371) */2794 export interface PhantomTypeUpDataStructsPropertyInfo extends Vec<UpDataStructsRmrkPropertyInfo> {}27952796 /** @name UpDataStructsRmrkPropertyInfo (372) */2797 export interface UpDataStructsRmrkPropertyInfo extends Struct {2798 readonly key: Bytes;2799 readonly value: Bytes;2800 }28012802 /** @name PhantomTypeUpDataStructsBaseInfo (374) */2803 export interface PhantomTypeUpDataStructsBaseInfo extends Vec<UpDataStructsRmrkBaseInfo> {}28042805 /** @name UpDataStructsRmrkBaseInfo (375) */2806 export interface UpDataStructsRmrkBaseInfo extends Struct {2807 readonly issuer: AccountId32;2808 readonly baseType: Bytes;2809 readonly symbol: Bytes;2810 }28112812 /** @name PhantomTypeUpDataStructsPartType (377) */2813 export interface PhantomTypeUpDataStructsPartType extends Vec<UpDataStructsRmrkPartType> {}28142815 /** @name PhantomTypeUpDataStructsTheme (379) */2816 export interface PhantomTypeUpDataStructsTheme extends Vec<UpDataStructsRmrkTheme> {}28172818 /** @name PhantomTypeUpDataStructsNftChild (381) */2819 export interface PhantomTypeUpDataStructsNftChild extends Vec<UpDataStructsRmrkNftChild> {}28202821 /** @name UpDataStructsRmrkNftChild (382) */2822 export interface UpDataStructsRmrkNftChild extends Struct {2823 readonly collectionId: u32;2824 readonly nftId: u32;2825 }28262827 /** @name PalletCommonError (384) */2828 export interface PalletCommonError extends Enum {2829 readonly isCollectionNotFound: boolean;2830 readonly isMustBeTokenOwner: boolean;2831 readonly isNoPermission: boolean;2832 readonly isPublicMintingNotAllowed: boolean;2833 readonly isAddressNotInAllowlist: boolean;2834 readonly isCollectionNameLimitExceeded: boolean;2835 readonly isCollectionDescriptionLimitExceeded: boolean;2836 readonly isCollectionTokenPrefixLimitExceeded: boolean;2837 readonly isTotalCollectionsLimitExceeded: boolean;2838 readonly isCollectionAdminCountExceeded: boolean;2839 readonly isCollectionLimitBoundsExceeded: boolean;2840 readonly isOwnerPermissionsCantBeReverted: boolean;2841 readonly isTransferNotAllowed: boolean;2842 readonly isAccountTokenLimitExceeded: boolean;2843 readonly isCollectionTokenLimitExceeded: boolean;2844 readonly isMetadataFlagFrozen: boolean;2845 readonly isTokenNotFound: boolean;2846 readonly isTokenValueTooLow: boolean;2847 readonly isApprovedValueTooLow: boolean;2848 readonly isCantApproveMoreThanOwned: boolean;2849 readonly isAddressIsZero: boolean;2850 readonly isUnsupportedOperation: boolean;2851 readonly isNotSufficientFounds: boolean;2852 readonly isNestingIsDisabled: boolean;2853 readonly isOnlyOwnerAllowedToNest: boolean;2854 readonly isSourceCollectionIsNotAllowedToNest: boolean;2855 readonly isCollectionFieldSizeExceeded: boolean;2856 readonly isNoSpaceForProperty: boolean;2857 readonly isPropertyLimitReached: boolean;2858 readonly isPropertyKeyIsTooLong: boolean;2859 readonly isInvalidCharacterInPropertyKey: boolean;2860 readonly isEmptyPropertyKey: boolean;2861 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'NestingIsDisabled' | 'OnlyOwnerAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey';2862 }28632864 /** @name PalletFungibleError (386) */2865 export interface PalletFungibleError extends Enum {2866 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;2867 readonly isFungibleItemsHaveNoId: boolean;2868 readonly isFungibleItemsDontHaveData: boolean;2869 readonly isFungibleDisallowsNesting: boolean;2870 readonly isSettingPropertiesNotAllowed: boolean;2871 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2872 }28732874 /** @name PalletRefungibleItemData (387) */2875 export interface PalletRefungibleItemData extends Struct {2876 readonly constData: Bytes;2877 }28782879 /** @name PalletRefungibleError (391) */2880 export interface PalletRefungibleError extends Enum {2881 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;2882 readonly isWrongRefungiblePieces: boolean;2883 readonly isRefungibleDisallowsNesting: boolean;2884 readonly isSettingPropertiesNotAllowed: boolean;2885 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2886 }28872888 /** @name PalletNonfungibleItemData (392) */2889 export interface PalletNonfungibleItemData extends Struct {2890 readonly constData: Bytes;2891 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2892 }28932894 /** @name PalletNonfungibleError (393) */2895 export interface PalletNonfungibleError extends Enum {2896 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2897 readonly isNonfungibleItemsHaveNoAmount: boolean;2898 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount';2899 }29002901 /** @name PalletStructureError (394) */2902 export interface PalletStructureError extends Enum {2903 readonly isOuroborosDetected: boolean;2904 readonly isDepthLimit: boolean;2905 readonly isTokenNotFound: boolean;2906 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'TokenNotFound';2907 }29082909 /** @name PalletRmrkCoreError (395) */2910 export interface PalletRmrkCoreError extends Enum {2911 readonly isCorruptedCollectionType: boolean;2912 readonly isNftTypeEncodeError: boolean;2913 readonly isRmrkPropertyKeyIsTooLong: boolean;2914 readonly isRmrkPropertyValueIsTooLong: boolean;2915 readonly isCollectionNotEmpty: boolean;2916 readonly isNoAvailableCollectionId: boolean;2917 readonly isNoAvailableNftId: boolean;2918 readonly isCollectionUnknown: boolean;2919 readonly isNoPermission: boolean;2920 readonly isCollectionFullOrLocked: boolean;2921 readonly type: 'CorruptedCollectionType' | 'NftTypeEncodeError' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'CollectionFullOrLocked';2922 }29232924 /** @name PalletRmrkEquipError (397) */2925 export interface PalletRmrkEquipError extends Enum {2926 readonly isPermissionError: boolean;2927 readonly isNoAvailableBaseId: boolean;2928 readonly isNoAvailablePartId: boolean;2929 readonly isBaseDoesntExist: boolean;2930 readonly isNeedsDefaultThemeFirst: boolean;2931 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst';2932 }29332934 /** @name PalletEvmError (400) */2935 export interface PalletEvmError extends Enum {2936 readonly isBalanceLow: boolean;2937 readonly isFeeOverflow: boolean;2938 readonly isPaymentOverflow: boolean;2939 readonly isWithdrawFailed: boolean;2940 readonly isGasPriceTooLow: boolean;2941 readonly isInvalidNonce: boolean;2942 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';2943 }29442945 /** @name FpRpcTransactionStatus (403) */2946 export interface FpRpcTransactionStatus extends Struct {2947 readonly transactionHash: H256;2948 readonly transactionIndex: u32;2949 readonly from: H160;2950 readonly to: Option<H160>;2951 readonly contractAddress: Option<H160>;2952 readonly logs: Vec<EthereumLog>;2953 readonly logsBloom: EthbloomBloom;2954 }29552956 /** @name EthbloomBloom (405) */2957 export interface EthbloomBloom extends U8aFixed {}29582959 /** @name EthereumReceiptReceiptV3 (407) */2960 export interface EthereumReceiptReceiptV3 extends Enum {2961 readonly isLegacy: boolean;2962 readonly asLegacy: EthereumReceiptEip658ReceiptData;2963 readonly isEip2930: boolean;2964 readonly asEip2930: EthereumReceiptEip658ReceiptData;2965 readonly isEip1559: boolean;2966 readonly asEip1559: EthereumReceiptEip658ReceiptData;2967 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';2968 }29692970 /** @name EthereumReceiptEip658ReceiptData (408) */2971 export interface EthereumReceiptEip658ReceiptData extends Struct {2972 readonly statusCode: u8;2973 readonly usedGas: U256;2974 readonly logsBloom: EthbloomBloom;2975 readonly logs: Vec<EthereumLog>;2976 }29772978 /** @name EthereumBlock (409) */2979 export interface EthereumBlock extends Struct {2980 readonly header: EthereumHeader;2981 readonly transactions: Vec<EthereumTransactionTransactionV2>;2982 readonly ommers: Vec<EthereumHeader>;2983 }29842985 /** @name EthereumHeader (410) */2986 export interface EthereumHeader extends Struct {2987 readonly parentHash: H256;2988 readonly ommersHash: H256;2989 readonly beneficiary: H160;2990 readonly stateRoot: H256;2991 readonly transactionsRoot: H256;2992 readonly receiptsRoot: H256;2993 readonly logsBloom: EthbloomBloom;2994 readonly difficulty: U256;2995 readonly number: U256;2996 readonly gasLimit: U256;2997 readonly gasUsed: U256;2998 readonly timestamp: u64;2999 readonly extraData: Bytes;3000 readonly mixHash: H256;3001 readonly nonce: EthereumTypesHashH64;3002 }30033004 /** @name EthereumTypesHashH64 (411) */3005 export interface EthereumTypesHashH64 extends U8aFixed {}30063007 /** @name PalletEthereumError (416) */3008 export interface PalletEthereumError extends Enum {3009 readonly isInvalidSignature: boolean;3010 readonly isPreLogExists: boolean;3011 readonly type: 'InvalidSignature' | 'PreLogExists';3012 }30133014 /** @name PalletEvmCoderSubstrateError (417) */3015 export interface PalletEvmCoderSubstrateError extends Enum {3016 readonly isOutOfGas: boolean;3017 readonly isOutOfFund: boolean;3018 readonly type: 'OutOfGas' | 'OutOfFund';3019 }30203021 /** @name PalletEvmContractHelpersSponsoringModeT (418) */3022 export interface PalletEvmContractHelpersSponsoringModeT extends Enum {3023 readonly isDisabled: boolean;3024 readonly isAllowlisted: boolean;3025 readonly isGenerous: boolean;3026 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3027 }30283029 /** @name PalletEvmContractHelpersError (420) */3030 export interface PalletEvmContractHelpersError extends Enum {3031 readonly isNoPermission: boolean;3032 readonly type: 'NoPermission';3033 }30343035 /** @name PalletEvmMigrationError (421) */3036 export interface PalletEvmMigrationError extends Enum {3037 readonly isAccountNotEmpty: boolean;3038 readonly isAccountIsNotMigrating: boolean;3039 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3040 }30413042 /** @name SpRuntimeMultiSignature (423) */3043 export interface SpRuntimeMultiSignature extends Enum {3044 readonly isEd25519: boolean;3045 readonly asEd25519: SpCoreEd25519Signature;3046 readonly isSr25519: boolean;3047 readonly asSr25519: SpCoreSr25519Signature;3048 readonly isEcdsa: boolean;3049 readonly asEcdsa: SpCoreEcdsaSignature;3050 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3051 }30523053 /** @name SpCoreEd25519Signature (424) */3054 export interface SpCoreEd25519Signature extends U8aFixed {}30553056 /** @name SpCoreSr25519Signature (426) */3057 export interface SpCoreSr25519Signature extends U8aFixed {}30583059 /** @name SpCoreEcdsaSignature (427) */3060 export interface SpCoreEcdsaSignature extends U8aFixed {}30613062 /** @name FrameSystemExtensionsCheckSpecVersion (430) */3063 export type FrameSystemExtensionsCheckSpecVersion = Null;30643065 /** @name FrameSystemExtensionsCheckGenesis (431) */3066 export type FrameSystemExtensionsCheckGenesis = Null;30673068 /** @name FrameSystemExtensionsCheckNonce (434) */3069 export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}30703071 /** @name FrameSystemExtensionsCheckWeight (435) */3072 export type FrameSystemExtensionsCheckWeight = Null;30733074 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (436) */3075 export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}30763077 /** @name OpalRuntimeRuntime (437) */3078 export type OpalRuntimeRuntime = Null;30793080 /** @name PalletEthereumFakeTransactionFinalizer (438) */3081 export type PalletEthereumFakeTransactionFinalizer = Null;30823083} // declare moduletests/src/interfaces/unique/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/unique/types.ts
+++ b/tests/src/interfaces/unique/types.ts
@@ -1128,6 +1128,145 @@
readonly constData: Bytes;
}
+/** @name PalletRmrkCoreCall */
+export interface PalletRmrkCoreCall extends Enum {
+ readonly isCreateCollection: boolean;
+ readonly asCreateCollection: {
+ readonly metadata: Bytes;
+ readonly max: Option<u32>;
+ readonly symbol: Bytes;
+ } & Struct;
+ readonly isDestroyCollection: boolean;
+ readonly asDestroyCollection: {
+ readonly collectionId: u32;
+ } & Struct;
+ readonly isChangeCollectionIssuer: boolean;
+ readonly asChangeCollectionIssuer: {
+ readonly collectionId: u32;
+ readonly newIssuer: MultiAddress;
+ } & Struct;
+ readonly isLockCollection: boolean;
+ readonly asLockCollection: {
+ readonly collectionId: u32;
+ } & Struct;
+ readonly isMintNft: boolean;
+ readonly asMintNft: {
+ readonly owner: AccountId32;
+ readonly collectionId: u32;
+ readonly recipient: Option<AccountId32>;
+ readonly royaltyAmount: Option<Permill>;
+ readonly metadata: Bytes;
+ } & Struct;
+ readonly isBurnNft: boolean;
+ readonly asBurnNft: {
+ readonly collectionId: u32;
+ readonly nftId: u32;
+ } & Struct;
+ readonly isSetProperty: boolean;
+ readonly asSetProperty: {
+ readonly rmrkCollectionId: Compact<u32>;
+ readonly maybeNftId: Option<u32>;
+ readonly key: Bytes;
+ readonly value: Bytes;
+ } & Struct;
+ readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'SetProperty';
+}
+
+/** @name PalletRmrkCoreError */
+export interface PalletRmrkCoreError extends Enum {
+ readonly isCorruptedCollectionType: boolean;
+ readonly isNftTypeEncodeError: boolean;
+ readonly isRmrkPropertyKeyIsTooLong: boolean;
+ readonly isRmrkPropertyValueIsTooLong: boolean;
+ readonly isCollectionNotEmpty: boolean;
+ readonly isNoAvailableCollectionId: boolean;
+ readonly isNoAvailableNftId: boolean;
+ readonly isCollectionUnknown: boolean;
+ readonly isNoPermission: boolean;
+ readonly isCollectionFullOrLocked: boolean;
+ readonly type: 'CorruptedCollectionType' | 'NftTypeEncodeError' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'CollectionFullOrLocked';
+}
+
+/** @name PalletRmrkCoreEvent */
+export interface PalletRmrkCoreEvent extends Enum {
+ readonly isCollectionCreated: boolean;
+ readonly asCollectionCreated: {
+ readonly issuer: AccountId32;
+ readonly collectionId: u32;
+ } & Struct;
+ readonly isCollectionDestroyed: boolean;
+ readonly asCollectionDestroyed: {
+ readonly issuer: AccountId32;
+ readonly collectionId: u32;
+ } & Struct;
+ readonly isIssuerChanged: boolean;
+ readonly asIssuerChanged: {
+ readonly oldIssuer: AccountId32;
+ readonly newIssuer: AccountId32;
+ readonly collectionId: u32;
+ } & Struct;
+ readonly isCollectionLocked: boolean;
+ readonly asCollectionLocked: {
+ readonly issuer: AccountId32;
+ readonly collectionId: u32;
+ } & Struct;
+ readonly isNftMinted: boolean;
+ readonly asNftMinted: {
+ readonly owner: AccountId32;
+ readonly collectionId: u32;
+ readonly nftId: u32;
+ } & Struct;
+ readonly isNftBurned: boolean;
+ readonly asNftBurned: {
+ readonly owner: AccountId32;
+ readonly nftId: u32;
+ } & Struct;
+ readonly isPropertySet: boolean;
+ readonly asPropertySet: {
+ readonly collectionId: u32;
+ readonly maybeNftId: Option<u32>;
+ readonly key: Bytes;
+ readonly value: Bytes;
+ } & Struct;
+ readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'PropertySet';
+}
+
+/** @name PalletRmrkEquipCall */
+export interface PalletRmrkEquipCall extends Enum {
+ readonly isCreateBase: boolean;
+ readonly asCreateBase: {
+ readonly baseType: Bytes;
+ readonly symbol: Bytes;
+ readonly parts: Vec<UpDataStructsRmrkPartType>;
+ } & Struct;
+ readonly isThemeAdd: boolean;
+ readonly asThemeAdd: {
+ readonly baseId: u32;
+ readonly theme: UpDataStructsRmrkTheme;
+ } & Struct;
+ readonly type: 'CreateBase' | 'ThemeAdd';
+}
+
+/** @name PalletRmrkEquipError */
+export interface PalletRmrkEquipError extends Enum {
+ readonly isPermissionError: boolean;
+ readonly isNoAvailableBaseId: boolean;
+ readonly isNoAvailablePartId: boolean;
+ readonly isBaseDoesntExist: boolean;
+ readonly isNeedsDefaultThemeFirst: boolean;
+ readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst';
+}
+
+/** @name PalletRmrkEquipEvent */
+export interface PalletRmrkEquipEvent extends Enum {
+ readonly isBaseCreated: boolean;
+ readonly asBaseCreated: {
+ readonly issuer: AccountId32;
+ readonly baseId: u32;
+ } & Struct;
+ readonly type: 'BaseCreated';
+}
+
/** @name PalletStructureCall */
export interface PalletStructureCall extends Null {}
@@ -1615,34 +1754,34 @@
}
/** @name PhantomTypeUpDataStructsBaseInfo */
-export interface PhantomTypeUpDataStructsBaseInfo extends Vec<Lookup357> {}
+export interface PhantomTypeUpDataStructsBaseInfo extends Vec<Lookup375> {}
/** @name PhantomTypeUpDataStructsCollectionInfo */
-export interface PhantomTypeUpDataStructsCollectionInfo extends Vec<Lookup334> {}
+export interface PhantomTypeUpDataStructsCollectionInfo extends Vec<Lookup353> {}
/** @name PhantomTypeUpDataStructsNftChild */
-export interface PhantomTypeUpDataStructsNftChild extends Vec<Lookup372> {}
+export interface PhantomTypeUpDataStructsNftChild extends Vec<Lookup382> {}
/** @name PhantomTypeUpDataStructsNftInfo */
-export interface PhantomTypeUpDataStructsNftInfo extends Vec<Lookup339> {}
+export interface PhantomTypeUpDataStructsNftInfo extends Vec<Lookup356> {}
/** @name PhantomTypeUpDataStructsPartType */
-export interface PhantomTypeUpDataStructsPartType extends Vec<Lookup360> {}
+export interface PhantomTypeUpDataStructsPartType extends Vec<Lookup215> {}
/** @name PhantomTypeUpDataStructsPropertyInfo */
-export interface PhantomTypeUpDataStructsPropertyInfo extends Vec<Lookup352> {}
+export interface PhantomTypeUpDataStructsPropertyInfo extends Vec<Lookup372> {}
/** @name PhantomTypeUpDataStructsResourceInfo */
-export interface PhantomTypeUpDataStructsResourceInfo extends Vec<Lookup345> {}
+export interface PhantomTypeUpDataStructsResourceInfo extends Vec<Lookup362> {}
/** @name PhantomTypeUpDataStructsRpcCollection */
-export interface PhantomTypeUpDataStructsRpcCollection extends Vec<Lookup331> {}
+export interface PhantomTypeUpDataStructsRpcCollection extends Vec<Lookup350> {}
/** @name PhantomTypeUpDataStructsTheme */
-export interface PhantomTypeUpDataStructsTheme extends Vec<Lookup367> {}
+export interface PhantomTypeUpDataStructsTheme extends Vec<Lookup221> {}
/** @name PhantomTypeUpDataStructsTokenData */
-export interface PhantomTypeUpDataStructsTokenData extends Vec<Lookup327> {}
+export interface PhantomTypeUpDataStructsTokenData extends Vec<Lookup346> {}
/** @name PolkadotCorePrimitivesInboundDownwardMessage */
export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
@@ -1705,120 +1844,8 @@
export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
readonly isPresent: boolean;
readonly type: 'Present';
-}
-
-/** @name RmrkTypesAccountIdOrCollectionNftTuple */
-export interface RmrkTypesAccountIdOrCollectionNftTuple extends Enum {
- readonly isAccountId: boolean;
- readonly asAccountId: AccountId32;
- readonly isCollectionAndNftTuple: boolean;
- readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;
- readonly type: 'AccountId' | 'CollectionAndNftTuple';
-}
-
-/** @name RmrkTypesBaseInfo */
-export interface RmrkTypesBaseInfo extends Struct {
- readonly issuer: AccountId32;
- readonly baseType: Bytes;
- readonly symbol: Bytes;
-}
-
-/** @name RmrkTypesCollectionInfo */
-export interface RmrkTypesCollectionInfo extends Struct {
- readonly issuer: AccountId32;
- readonly metadata: Bytes;
- readonly max: Option<u32>;
- readonly symbol: Bytes;
- readonly nftsCount: u32;
-}
-
-/** @name RmrkTypesEquippableList */
-export interface RmrkTypesEquippableList extends Enum {
- readonly isAll: boolean;
- readonly isEmpty: boolean;
- readonly isCustom: boolean;
- readonly asCustom: Vec<u32>;
- readonly type: 'All' | 'Empty' | 'Custom';
-}
-
-/** @name RmrkTypesFixedPart */
-export interface RmrkTypesFixedPart extends Struct {
- readonly id: u32;
- readonly z: u32;
- readonly src: Bytes;
-}
-
-/** @name RmrkTypesNftChild */
-export interface RmrkTypesNftChild extends Struct {
- readonly collectionId: u32;
- readonly nftId: u32;
-}
-
-/** @name RmrkTypesNftInfo */
-export interface RmrkTypesNftInfo extends Struct {
- readonly owner: RmrkTypesAccountIdOrCollectionNftTuple;
- readonly royalty: Option<RmrkTypesRoyaltyInfo>;
- readonly metadata: Bytes;
- readonly equipped: bool;
- readonly pending: bool;
-}
-
-/** @name RmrkTypesPartType */
-export interface RmrkTypesPartType extends Enum {
- readonly isFixedPart: boolean;
- readonly asFixedPart: RmrkTypesFixedPart;
- readonly isSlotPart: boolean;
- readonly asSlotPart: RmrkTypesSlotPart;
- readonly type: 'FixedPart' | 'SlotPart';
-}
-
-/** @name RmrkTypesPropertyInfo */
-export interface RmrkTypesPropertyInfo extends Struct {
- readonly key: Bytes;
- readonly value: Bytes;
-}
-
-/** @name RmrkTypesResourceInfo */
-export interface RmrkTypesResourceInfo extends Struct {
- readonly id: Bytes;
- readonly pending: bool;
- readonly pendingRemoval: bool;
- readonly parts: Option<Vec<u32>>;
- readonly base: Option<u32>;
- readonly src: Option<Bytes>;
- readonly metadata: Option<Bytes>;
- readonly slot: Option<u32>;
- readonly license: Option<Bytes>;
- readonly thumb: Option<Bytes>;
-}
-
-/** @name RmrkTypesRoyaltyInfo */
-export interface RmrkTypesRoyaltyInfo extends Struct {
- readonly recipient: AccountId32;
- readonly amount: Permill;
-}
-
-/** @name RmrkTypesSlotPart */
-export interface RmrkTypesSlotPart extends Struct {
- readonly id: u32;
- readonly equippable: RmrkTypesEquippableList;
- readonly src: Bytes;
- readonly z: u32;
-}
-
-/** @name RmrkTypesTheme */
-export interface RmrkTypesTheme extends Struct {
- readonly name: Bytes;
- readonly properties: Vec<RmrkTypesThemeProperty>;
- readonly inherit: bool;
}
-/** @name RmrkTypesThemeProperty */
-export interface RmrkTypesThemeProperty extends Struct {
- readonly key: Bytes;
- readonly value: Bytes;
-}
-
/** @name SpCoreEcdsaSignature */
export interface SpCoreEcdsaSignature extends U8aFixed {}
@@ -2096,6 +2123,151 @@
readonly tokenOwner: bool;
}
+/** @name UpDataStructsRmrkAccountIdOrCollectionNftTuple */
+export interface UpDataStructsRmrkAccountIdOrCollectionNftTuple extends Enum {
+ readonly isAccountId: boolean;
+ readonly asAccountId: AccountId32;
+ readonly isCollectionAndNftTuple: boolean;
+ readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;
+ readonly type: 'AccountId' | 'CollectionAndNftTuple';
+}
+
+/** @name UpDataStructsRmrkBaseInfo */
+export interface UpDataStructsRmrkBaseInfo extends Struct {
+ readonly issuer: AccountId32;
+ readonly baseType: Bytes;
+ readonly symbol: Bytes;
+}
+
+/** @name UpDataStructsRmrkBasicResource */
+export interface UpDataStructsRmrkBasicResource extends Struct {
+ readonly src: Option<Bytes>;
+ readonly metadata: Option<Bytes>;
+ readonly license: Option<Bytes>;
+ readonly thumb: Option<Bytes>;
+}
+
+/** @name UpDataStructsRmrkCollectionInfo */
+export interface UpDataStructsRmrkCollectionInfo extends Struct {
+ readonly issuer: AccountId32;
+ readonly metadata: Bytes;
+ readonly max: Option<u32>;
+ readonly symbol: Bytes;
+ readonly nftsCount: u32;
+}
+
+/** @name UpDataStructsRmrkComposableResource */
+export interface UpDataStructsRmrkComposableResource extends Struct {
+ readonly parts: Vec<u32>;
+ readonly base: u32;
+ readonly src: Option<Bytes>;
+ readonly metadata: Option<Bytes>;
+ readonly license: Option<Bytes>;
+ readonly thumb: Option<Bytes>;
+}
+
+/** @name UpDataStructsRmrkEquippableList */
+export interface UpDataStructsRmrkEquippableList extends Enum {
+ readonly isAll: boolean;
+ readonly isEmpty: boolean;
+ readonly isCustom: boolean;
+ readonly asCustom: Vec<u32>;
+ readonly type: 'All' | 'Empty' | 'Custom';
+}
+
+/** @name UpDataStructsRmrkFixedPart */
+export interface UpDataStructsRmrkFixedPart extends Struct {
+ readonly id: u32;
+ readonly z: u32;
+ readonly src: Bytes;
+}
+
+/** @name UpDataStructsRmrkNftChild */
+export interface UpDataStructsRmrkNftChild extends Struct {
+ readonly collectionId: u32;
+ readonly nftId: u32;
+}
+
+/** @name UpDataStructsRmrkNftInfo */
+export interface UpDataStructsRmrkNftInfo extends Struct {
+ readonly owner: UpDataStructsRmrkAccountIdOrCollectionNftTuple;
+ readonly royalty: Option<UpDataStructsRmrkRoyaltyInfo>;
+ readonly metadata: Bytes;
+ readonly equipped: bool;
+ readonly pending: bool;
+}
+
+/** @name UpDataStructsRmrkPartType */
+export interface UpDataStructsRmrkPartType extends Enum {
+ readonly isFixedPart: boolean;
+ readonly asFixedPart: UpDataStructsRmrkFixedPart;
+ readonly isSlotPart: boolean;
+ readonly asSlotPart: UpDataStructsRmrkSlotPart;
+ readonly type: 'FixedPart' | 'SlotPart';
+}
+
+/** @name UpDataStructsRmrkPropertyInfo */
+export interface UpDataStructsRmrkPropertyInfo extends Struct {
+ readonly key: Bytes;
+ readonly value: Bytes;
+}
+
+/** @name UpDataStructsRmrkResourceInfo */
+export interface UpDataStructsRmrkResourceInfo extends Struct {
+ readonly id: Bytes;
+ readonly resource: UpDataStructsRmrkResourceTypes;
+ readonly pending: bool;
+ readonly pendingRemoval: bool;
+}
+
+/** @name UpDataStructsRmrkResourceTypes */
+export interface UpDataStructsRmrkResourceTypes extends Enum {
+ readonly isBasic: boolean;
+ readonly asBasic: UpDataStructsRmrkBasicResource;
+ readonly isComposable: boolean;
+ readonly asComposable: UpDataStructsRmrkComposableResource;
+ readonly isSlot: boolean;
+ readonly asSlot: UpDataStructsRmrkSlotResource;
+ readonly type: 'Basic' | 'Composable' | 'Slot';
+}
+
+/** @name UpDataStructsRmrkRoyaltyInfo */
+export interface UpDataStructsRmrkRoyaltyInfo extends Struct {
+ readonly recipient: AccountId32;
+ readonly amount: Permill;
+}
+
+/** @name UpDataStructsRmrkSlotPart */
+export interface UpDataStructsRmrkSlotPart extends Struct {
+ readonly id: u32;
+ readonly equippable: UpDataStructsRmrkEquippableList;
+ readonly src: Bytes;
+ readonly z: u32;
+}
+
+/** @name UpDataStructsRmrkSlotResource */
+export interface UpDataStructsRmrkSlotResource extends Struct {
+ readonly base: u32;
+ readonly src: Option<Bytes>;
+ readonly metadata: Option<Bytes>;
+ readonly slot: u32;
+ readonly license: Option<Bytes>;
+ readonly thumb: Option<Bytes>;
+}
+
+/** @name UpDataStructsRmrkTheme */
+export interface UpDataStructsRmrkTheme extends Struct {
+ readonly name: Bytes;
+ readonly properties: Vec<UpDataStructsRmrkThemeProperty>;
+ readonly inherit: bool;
+}
+
+/** @name UpDataStructsRmrkThemeProperty */
+export interface UpDataStructsRmrkThemeProperty extends Struct {
+ readonly key: Bytes;
+ readonly value: Bytes;
+}
+
/** @name UpDataStructsRpcCollection */
export interface UpDataStructsRpcCollection extends Struct {
readonly owner: AccountId32;