difftreelog
chore generate types
in: master
10 files changed
tests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -41,18 +41,6 @@
**/
[key: string]: Codec;
};
- authorship: {
- /**
- * The number of blocks back we should accept uncles.
- * This means that we will deal with uncle-parents that are
- * `UncleGenerations + 1` before `now`.
- **/
- uncleGenerations: u32 & AugmentedConst<ApiType>;
- /**
- * Generic const
- **/
- [key: string]: Codec;
- };
balances: {
/**
* The minimum amount required to keep an account open.
@@ -109,40 +97,6 @@
* Address, under which magic contract will be available
**/
contractAddress: H160 & AugmentedConst<ApiType>;
- /**
- * Generic const
- **/
- [key: string]: Codec;
- };
- identity: {
- /**
- * The amount held on deposit for a registered identity
- **/
- basicDeposit: u128 & AugmentedConst<ApiType>;
- /**
- * The amount held on deposit per additional field for a registered identity.
- **/
- fieldDeposit: u128 & AugmentedConst<ApiType>;
- /**
- * Maximum number of additional fields that may be stored in an ID. Needed to bound the I/O
- * required to access an identity, but can be pretty high.
- **/
- maxAdditionalFields: u32 & AugmentedConst<ApiType>;
- /**
- * Maxmimum number of registrars allowed in the system. Needed to bound the complexity
- * of, e.g., updating judgements.
- **/
- maxRegistrars: u32 & AugmentedConst<ApiType>;
- /**
- * The maximum number of sub-accounts allowed per identified account.
- **/
- maxSubAccounts: u32 & AugmentedConst<ApiType>;
- /**
- * The amount held on deposit for a registered subaccount. This should account for the fact
- * that one storage item's value will increase by the size of an account ID, and there will
- * be another trie item whose value is the size of an account ID plus 32 bytes.
- **/
- subAccountDeposit: u128 & AugmentedConst<ApiType>;
/**
* Generic const
**/
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -41,40 +41,6 @@
**/
[key: string]: AugmentedError<ApiType>;
};
- authorship: {
- /**
- * The uncle is genesis.
- **/
- GenesisUncle: AugmentedError<ApiType>;
- /**
- * The uncle parent not in the chain.
- **/
- InvalidUncleParent: AugmentedError<ApiType>;
- /**
- * The uncle isn't recent enough to be included.
- **/
- OldUncle: AugmentedError<ApiType>;
- /**
- * The uncle is too high in chain.
- **/
- TooHighUncle: AugmentedError<ApiType>;
- /**
- * Too many uncles.
- **/
- TooManyUncles: AugmentedError<ApiType>;
- /**
- * The uncle is already included.
- **/
- UncleAlreadyIncluded: AugmentedError<ApiType>;
- /**
- * Uncles already set in the block.
- **/
- UnclesAlreadySet: AugmentedError<ApiType>;
- /**
- * Generic error
- **/
- [key: string]: AugmentedError<ApiType>;
- };
balances: {
/**
* Beneficiary account must pre-exist
@@ -108,65 +74,7 @@
* Vesting balance too high to send value
**/
VestingBalance: AugmentedError<ApiType>;
- /**
- * Generic error
- **/
- [key: string]: AugmentedError<ApiType>;
- };
- collatorSelection: {
- /**
- * User is already a candidate
- **/
- AlreadyCandidate: AugmentedError<ApiType>;
- /**
- * User already holds license to collate
- **/
- AlreadyHoldingLicense: AugmentedError<ApiType>;
- /**
- * User is already an Invulnerable
- **/
- AlreadyInvulnerable: AugmentedError<ApiType>;
- /**
- * Account has no associated validator ID
- **/
- NoAssociatedValidatorId: AugmentedError<ApiType>;
/**
- * User does not hold a license to collate
- **/
- NoLicense: AugmentedError<ApiType>;
- /**
- * User is not a candidate
- **/
- NotCandidate: AugmentedError<ApiType>;
- /**
- * User is not an Invulnerable
- **/
- NotInvulnerable: AugmentedError<ApiType>;
- /**
- * Permission issue
- **/
- Permission: AugmentedError<ApiType>;
- /**
- * Too few invulnerables
- **/
- TooFewInvulnerables: AugmentedError<ApiType>;
- /**
- * Too many candidates
- **/
- TooManyCandidates: AugmentedError<ApiType>;
- /**
- * Too many invulnerables
- **/
- TooManyInvulnerables: AugmentedError<ApiType>;
- /**
- * Unknown error
- **/
- Unknown: AugmentedError<ApiType>;
- /**
- * Validator ID is not yet registered
- **/
- ValidatorNotRegistered: AugmentedError<ApiType>;
- /**
* Generic error
**/
[key: string]: AugmentedError<ApiType>;
@@ -508,85 +416,7 @@
* Setting item properties is not allowed.
**/
SettingPropertiesNotAllowed: AugmentedError<ApiType>;
- /**
- * Generic error
- **/
- [key: string]: AugmentedError<ApiType>;
- };
- identity: {
/**
- * Account ID is already named.
- **/
- AlreadyClaimed: AugmentedError<ApiType>;
- /**
- * Empty index.
- **/
- EmptyIndex: AugmentedError<ApiType>;
- /**
- * Fee is changed.
- **/
- FeeChanged: AugmentedError<ApiType>;
- /**
- * The index is invalid.
- **/
- InvalidIndex: AugmentedError<ApiType>;
- /**
- * Invalid judgement.
- **/
- InvalidJudgement: AugmentedError<ApiType>;
- /**
- * The target is invalid.
- **/
- InvalidTarget: AugmentedError<ApiType>;
- /**
- * The provided judgement was for a different identity.
- **/
- JudgementForDifferentIdentity: AugmentedError<ApiType>;
- /**
- * Judgement given.
- **/
- JudgementGiven: AugmentedError<ApiType>;
- /**
- * Error that occurs when there is an issue paying for judgement.
- **/
- JudgementPaymentFailed: AugmentedError<ApiType>;
- /**
- * No identity found.
- **/
- NoIdentity: AugmentedError<ApiType>;
- /**
- * Account isn't found.
- **/
- NotFound: AugmentedError<ApiType>;
- /**
- * Account isn't named.
- **/
- NotNamed: AugmentedError<ApiType>;
- /**
- * Sub-account isn't owned by sender.
- **/
- NotOwned: AugmentedError<ApiType>;
- /**
- * Sender is not a sub-account.
- **/
- NotSub: AugmentedError<ApiType>;
- /**
- * Sticky judgement.
- **/
- StickyJudgement: AugmentedError<ApiType>;
- /**
- * Too many additional fields.
- **/
- TooManyFields: AugmentedError<ApiType>;
- /**
- * Maximum amount of registrars reached. Cannot add any more.
- **/
- TooManyRegistrars: AugmentedError<ApiType>;
- /**
- * Too many subs-accounts.
- **/
- TooManySubAccounts: AugmentedError<ApiType>;
- /**
* Generic error
**/
[key: string]: AugmentedError<ApiType>;
@@ -854,32 +684,6 @@
* No permission to perform action.
**/
PermissionError: AugmentedError<ApiType>;
- /**
- * Generic error
- **/
- [key: string]: AugmentedError<ApiType>;
- };
- session: {
- /**
- * Registered duplicate key.
- **/
- DuplicatedKey: AugmentedError<ApiType>;
- /**
- * Invalid ownership proof.
- **/
- InvalidProof: AugmentedError<ApiType>;
- /**
- * Key setting account is not live, so it's impossible to associate keys.
- **/
- NoAccount: AugmentedError<ApiType>;
- /**
- * No associated validator ID for account.
- **/
- NoAssociatedValidatorId: AugmentedError<ApiType>;
- /**
- * No keys are associated with this account.
- **/
- NoKeys: AugmentedError<ApiType>;
/**
* Generic error
**/
tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -100,18 +100,6 @@
**/
[key: string]: AugmentedEvent<ApiType>;
};
- collatorSelection: {
- CandidateAdded: AugmentedEvent<ApiType, [accountId: AccountId32], { accountId: AccountId32 }>;
- CandidateRemoved: AugmentedEvent<ApiType, [accountId: AccountId32], { accountId: AccountId32 }>;
- InvulnerableAdded: AugmentedEvent<ApiType, [invulnerable: AccountId32], { invulnerable: AccountId32 }>;
- InvulnerableRemoved: AugmentedEvent<ApiType, [invulnerable: AccountId32], { invulnerable: AccountId32 }>;
- LicenseObtained: AugmentedEvent<ApiType, [accountId: AccountId32, deposit: u128], { accountId: AccountId32, deposit: u128 }>;
- LicenseReleased: AugmentedEvent<ApiType, [accountId: AccountId32, depositReturned: u128], { accountId: AccountId32, depositReturned: u128 }>;
- /**
- * Generic event
- **/
- [key: string]: AugmentedEvent<ApiType>;
- };
common: {
/**
* Address was added to the allow list.
@@ -347,62 +335,7 @@
* The foreign asset updated.
**/
ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;
- /**
- * Generic event
- **/
- [key: string]: AugmentedEvent<ApiType>;
- };
- identity: {
- /**
- * A number of identities and associated info were forcibly inserted.
- **/
- IdentitiesInserted: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;
- /**
- * A number of identities and all associated info were forcibly removed.
- **/
- IdentitiesRemoved: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;
- /**
- * A name was cleared, and the given balance returned.
- **/
- IdentityCleared: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;
- /**
- * A name was removed and the given balance slashed.
- **/
- IdentityKilled: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;
- /**
- * A name was set or reset (which will remove all judgements).
- **/
- IdentitySet: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;
- /**
- * A judgement was given by a registrar.
- **/
- JudgementGiven: AugmentedEvent<ApiType, [target: AccountId32, registrarIndex: u32], { target: AccountId32, registrarIndex: u32 }>;
- /**
- * A judgement was asked from a registrar.
- **/
- JudgementRequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;
- /**
- * A judgement request was retracted.
- **/
- JudgementUnrequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;
- /**
- * A registrar was added.
- **/
- RegistrarAdded: AugmentedEvent<ApiType, [registrarIndex: u32], { registrarIndex: u32 }>;
/**
- * A sub-identity was added to an identity and the deposit paid.
- **/
- SubIdentityAdded: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;
- /**
- * A sub-identity was removed from an identity and the deposit freed.
- **/
- SubIdentityRemoved: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;
- /**
- * A sub-identity was cleared, and the given deposit repatriated from the
- * main identity account to the sub-identity account.
- **/
- SubIdentityRevoked: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;
- /**
* Generic event
**/
[key: string]: AugmentedEvent<ApiType>;
@@ -597,17 +530,6 @@
rmrkEquip: {
BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;
EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;
- /**
- * Generic event
- **/
- [key: string]: AugmentedEvent<ApiType>;
- };
- session: {
- /**
- * New session has happened. Note that the argument is the session index, not the
- * block number as the type might suggest.
- **/
- NewSession: AugmentedEvent<ApiType, [sessionIndex: u32], { sessionIndex: u32 }>;
/**
* Generic event
**/
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -6,11 +6,10 @@
import '@polkadot/api-base/types/storage';
import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';
-import type { Data } from '@polkadot/types';
import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -60,24 +59,6 @@
**/
[key: string]: QueryableStorageEntry<ApiType>;
};
- authorship: {
- /**
- * Author of current block.
- **/
- author: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
- /**
- * Whether uncles were already set in this block.
- **/
- didSetUncles: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;
- /**
- * Uncles
- **/
- uncles: AugmentedQuery<ApiType, () => Observable<Vec<PalletAuthorshipUncleEntryItem>>, []> & QueryableStorageEntry<ApiType, []>;
- /**
- * Generic query
- **/
- [key: string]: QueryableStorageEntry<ApiType>;
- };
balances: {
/**
* The Balances pallet example of storing the balance of an account.
@@ -129,29 +110,7 @@
[key: string]: QueryableStorageEntry<ApiType>;
};
charging: {
- /**
- * Generic query
- **/
- [key: string]: QueryableStorageEntry<ApiType>;
- };
- collatorSelection: {
- /**
- * The (community, limited) collation candidates.
- **/
- candidates: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
- /**
- * The invulnerable, fixed collators.
- **/
- invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
/**
- * Last block authored by collator.
- **/
- lastAuthoredBlock: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u32>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
- /**
- * The (community) collation license holders.
- **/
- licenseDepositOf: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u128>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
- /**
* Generic query
**/
[key: string]: QueryableStorageEntry<ApiType>;
@@ -407,38 +366,6 @@
**/
[key: string]: QueryableStorageEntry<ApiType>;
};
- identity: {
- /**
- * Information that is pertinent to identify the entity behind an account.
- *
- * TWOX-NOTE: OK ― `AccountId` is a secure hash.
- **/
- identityOf: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PalletIdentityRegistration>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
- /**
- * The set of registrars. Not expected to get very big as can only be added through a
- * special origin (likely a council motion).
- *
- * The index into this can be cast to `RegistrarIndex` to get a valid value.
- **/
- registrars: AugmentedQuery<ApiType, () => Observable<Vec<Option<PalletIdentityRegistrarInfo>>>, []> & QueryableStorageEntry<ApiType, []>;
- /**
- * Alternative "sub" identities of this account.
- *
- * The first item is the deposit, the second is a vector of the accounts.
- *
- * TWOX-NOTE: OK ― `AccountId` is a secure hash.
- **/
- subsOf: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<ITuple<[u128, Vec<AccountId32>]>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
- /**
- * The super-identity of an alternative "sub" identity together with its name, within that
- * context. If the account is not some other account's sub-identity, then just `None`.
- **/
- superOf: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<ITuple<[AccountId32, Data]>>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
- /**
- * Generic query
- **/
- [key: string]: QueryableStorageEntry<ApiType>;
- };
inflation: {
/**
* Current inflation for `InflationBlockInterval` number of blocks
@@ -752,46 +679,6 @@
* Map of a Base ID and a Part ID to an NFT in the Base collection serving as the Part.
**/
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>;
- };
- session: {
- /**
- * Current index of the session.
- **/
- currentIndex: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
- /**
- * Indices of disabled validators.
- *
- * The vec is always kept sorted so that we can find whether a given validator is
- * disabled using binary search. It gets cleared when `on_session_ending` returns
- * a new set of identities.
- **/
- disabledValidators: AugmentedQuery<ApiType, () => Observable<Vec<u32>>, []> & QueryableStorageEntry<ApiType, []>;
- /**
- * The owner of a key. The key is the `KeyTypeId` + the encoded key.
- **/
- keyOwner: AugmentedQuery<ApiType, (arg: ITuple<[SpCoreCryptoKeyTypeId, Bytes]> | [SpCoreCryptoKeyTypeId | string | Uint8Array, Bytes | string | Uint8Array]) => Observable<Option<AccountId32>>, [ITuple<[SpCoreCryptoKeyTypeId, Bytes]>]> & QueryableStorageEntry<ApiType, [ITuple<[SpCoreCryptoKeyTypeId, Bytes]>]>;
- /**
- * The next session keys for a validator.
- **/
- nextKeys: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<OpalRuntimeRuntimeCommonSessionKeys>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
- /**
- * True if the underlying economic identities or weighting behind the validators
- * has changed in the queued validator set.
- **/
- queuedChanged: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;
- /**
- * The queued keys for the next session. When the next session begins, these keys
- * will be used to determine the validator's session keys.
- **/
- queuedKeys: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[AccountId32, OpalRuntimeRuntimeCommonSessionKeys]>>>, []> & QueryableStorageEntry<ApiType, []>;
- /**
- * The current set of validators.
- **/
- validators: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
/**
* Generic query
**/
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -6,11 +6,10 @@
import '@polkadot/api-base/types/submittable';
import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';
-import type { Data } from '@polkadot/types';
import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, Call, H160, H256, MultiAddress, Permill } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OpalRuntimeRuntimeCommonSessionKeys, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistration, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, SpRuntimeHeader, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
@@ -115,16 +114,6 @@
* free for further use.
**/
unstake: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
- /**
- * Generic tx
- **/
- [key: string]: SubmittableExtrinsicFunction<ApiType>;
- };
- authorship: {
- /**
- * Provide a set of uncles.
- **/
- setUncles: AugmentedSubmittable<(newUncles: Vec<SpRuntimeHeader> | (SpRuntimeHeader | { parentHash?: any; number?: any; stateRoot?: any; extrinsicsRoot?: any; digest?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<SpRuntimeHeader>]>;
/**
* Generic tx
**/
@@ -225,54 +214,6 @@
**/
[key: string]: SubmittableExtrinsicFunction<ApiType>;
};
- collatorSelection: {
- /**
- * Add a collator to the list of invulnerable (fixed) collators.
- **/
- addInvulnerable: AugmentedSubmittable<(updated: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
- /**
- * Force deregister `origin` as a collator candidate as a governing authority, and revoke its license.
- * Note that the collator can only leave on session change.
- * The `LicenseBond` will be unreserved and returned immediately.
- *
- * This call is, of course, not applicable to `Invulnerable` collators.
- **/
- forceReleaseLicense: AugmentedSubmittable<(who: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
- /**
- * Purchase a license on block collation for this account.
- * It does not make it a collator candidate, use `onboard` afterward. The account must
- * (a) already have registered session keys and (b) be able to reserve the `LicenseBond`.
- *
- * This call is not available to `Invulnerable` collators.
- **/
- getLicense: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
- /**
- * Deregister `origin` as a collator candidate. Note that the collator can only leave on
- * session change. The license to `onboard` later at any other time will remain.
- **/
- offboard: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
- /**
- * Register this account as a candidate for collators for next sessions.
- * The account must already hold a license, and cannot offboard immediately during a session.
- *
- * This call is not available to `Invulnerable` collators.
- **/
- onboard: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
- /**
- * Forfeit `origin`'s own license. The `LicenseBond` will be unreserved immediately.
- *
- * This call is not available to `Invulnerable` collators.
- **/
- releaseLicense: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
- /**
- * Remove a collator from the list of invulnerable (fixed) collators.
- **/
- removeInvulnerable: AugmentedSubmittable<(who: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
- /**
- * Generic tx
- **/
- [key: string]: SubmittableExtrinsicFunction<ApiType>;
- };
configuration: {
setAppPromotionConfigurationOverride: AugmentedSubmittable<(configuration: PalletConfigurationAppPromotionConfiguration | { recalculationInterval?: any; pendingInterval?: any; intervalIncome?: any; maxStakersPerCalculation?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletConfigurationAppPromotionConfiguration]>;
setCollatorSelectionDesiredCollators: AugmentedSubmittable<(max: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;
@@ -384,290 +325,6 @@
**/
[key: string]: SubmittableExtrinsicFunction<ApiType>;
};
- identity: {
- /**
- * Add a registrar to the system.
- *
- * The dispatch origin for this call must be `T::RegistrarOrigin`.
- *
- * - `account`: the account of the registrar.
- *
- * Emits `RegistrarAdded` if successful.
- *
- * # <weight>
- * - `O(R)` where `R` registrar-count (governance-bounded and code-bounded).
- * - One storage mutation (codec `O(R)`).
- * - One event.
- * # </weight>
- **/
- addRegistrar: AugmentedSubmittable<(account: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
- /**
- * Add the given account to the sender's subs.
- *
- * Payment: Balance reserved by a previous `set_subs` call for one sub will be repatriated
- * to the sender.
- *
- * The dispatch origin for this call must be _Signed_ and the sender must have a registered
- * sub identity of `sub`.
- **/
- addSub: AugmentedSubmittable<(sub: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, data: Data | { None: any } | { Raw: any } | { BlakeTwo256: any } | { Sha256: any } | { Keccak256: any } | { ShaThree256: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Data]>;
- /**
- * Cancel a previous request.
- *
- * Payment: A previously reserved deposit is returned on success.
- *
- * The dispatch origin for this call must be _Signed_ and the sender must have a
- * registered identity.
- *
- * - `reg_index`: The index of the registrar whose judgement is no longer requested.
- *
- * Emits `JudgementUnrequested` if successful.
- *
- * # <weight>
- * - `O(R + X)`.
- * - One balance-reserve operation.
- * - One storage mutation `O(R + X)`.
- * - One event
- * # </weight>
- **/
- cancelRequest: AugmentedSubmittable<(regIndex: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
- /**
- * Clear an account's identity info and all sub-accounts and return all deposits.
- *
- * Payment: All reserved balances on the account are returned.
- *
- * The dispatch origin for this call must be _Signed_ and the sender must have a registered
- * identity.
- *
- * Emits `IdentityCleared` if successful.
- *
- * # <weight>
- * - `O(R + S + X)`
- * - where `R` registrar-count (governance-bounded).
- * - where `S` subs-count (hard- and deposit-bounded).
- * - where `X` additional-field-count (deposit-bounded and code-bounded).
- * - One balance-unreserve operation.
- * - `2` storage reads and `S + 2` storage deletions.
- * - One event.
- * # </weight>
- **/
- clearIdentity: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
- /**
- * Set identities to be associated with the provided accounts as force origin.
- *
- * This is not meant to operate in tandem with the identity pallet as is,
- * and be instead used to keep identities made and verified externally,
- * forbidden from interacting with an ordinary user, since it ignores any safety mechanism.
- **/
- forceInsertIdentities: AugmentedSubmittable<(identities: Vec<ITuple<[AccountId32, PalletIdentityRegistration]>> | ([AccountId32 | string | Uint8Array, PalletIdentityRegistration | { judgements?: any; deposit?: any; info?: any } | string | Uint8Array])[]) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[AccountId32, PalletIdentityRegistration]>>]>;
- /**
- * Remove identities associated with the provided accounts as force origin.
- *
- * This is not meant to operate in tandem with the identity pallet as is,
- * and be instead used to keep identities made and verified externally,
- * forbidden from interacting with an ordinary user, since it ignores any safety mechanism.
- **/
- forceRemoveIdentities: AugmentedSubmittable<(identities: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
- /**
- * Remove an account's identity and sub-account information and slash the deposits.
- *
- * Payment: Reserved balances from `set_subs` and `set_identity` are slashed and handled by
- * `Slash`. Verification request deposits are not returned; they should be cancelled
- * manually using `cancel_request`.
- *
- * The dispatch origin for this call must match `T::ForceOrigin`.
- *
- * - `target`: the account whose identity the judgement is upon. This must be an account
- * with a registered identity.
- *
- * Emits `IdentityKilled` if successful.
- *
- * # <weight>
- * - `O(R + S + X)`.
- * - One balance-reserve operation.
- * - `S + 2` storage mutations.
- * - One event.
- * # </weight>
- **/
- killIdentity: AugmentedSubmittable<(target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
- /**
- * Provide a judgement for an account's identity.
- *
- * The dispatch origin for this call must be _Signed_ and the sender must be the account
- * of the registrar whose index is `reg_index`.
- *
- * - `reg_index`: the index of the registrar whose judgement is being made.
- * - `target`: the account whose identity the judgement is upon. This must be an account
- * with a registered identity.
- * - `judgement`: the judgement of the registrar of index `reg_index` about `target`.
- * - `identity`: The hash of the [`IdentityInfo`] for that the judgement is provided.
- *
- * Emits `JudgementGiven` if successful.
- *
- * # <weight>
- * - `O(R + X)`.
- * - One balance-transfer operation.
- * - Up to one account-lookup operation.
- * - Storage: 1 read `O(R)`, 1 mutate `O(R + X)`.
- * - One event.
- * # </weight>
- **/
- provideJudgement: AugmentedSubmittable<(regIndex: Compact<u32> | AnyNumber | Uint8Array, target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, judgement: PalletIdentityJudgement | { Unknown: any } | { FeePaid: any } | { Reasonable: any } | { KnownGood: any } | { OutOfDate: any } | { LowQuality: any } | { Erroneous: any } | string | Uint8Array, identity: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, MultiAddress, PalletIdentityJudgement, H256]>;
- /**
- * Remove the sender as a sub-account.
- *
- * Payment: Balance reserved by a previous `set_subs` call for one sub will be repatriated
- * to the sender (*not* the original depositor).
- *
- * The dispatch origin for this call must be _Signed_ and the sender must have a registered
- * super-identity.
- *
- * NOTE: This should not normally be used, but is provided in the case that the non-
- * controller of an account is maliciously registered as a sub-account.
- **/
- quitSub: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
- /**
- * Remove the given account from the sender's subs.
- *
- * Payment: Balance reserved by a previous `set_subs` call for one sub will be repatriated
- * to the sender.
- *
- * The dispatch origin for this call must be _Signed_ and the sender must have a registered
- * sub identity of `sub`.
- **/
- removeSub: AugmentedSubmittable<(sub: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
- /**
- * Alter the associated name of the given sub-account.
- *
- * The dispatch origin for this call must be _Signed_ and the sender must have a registered
- * sub identity of `sub`.
- **/
- renameSub: AugmentedSubmittable<(sub: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, data: Data | { None: any } | { Raw: any } | { BlakeTwo256: any } | { Sha256: any } | { Keccak256: any } | { ShaThree256: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Data]>;
- /**
- * Request a judgement from a registrar.
- *
- * Payment: At most `max_fee` will be reserved for payment to the registrar if judgement
- * given.
- *
- * The dispatch origin for this call must be _Signed_ and the sender must have a
- * registered identity.
- *
- * - `reg_index`: The index of the registrar whose judgement is requested.
- * - `max_fee`: The maximum fee that may be paid. This should just be auto-populated as:
- *
- * ```nocompile
- * Self::registrars().get(reg_index).unwrap().fee
- * ```
- *
- * Emits `JudgementRequested` if successful.
- *
- * # <weight>
- * - `O(R + X)`.
- * - One balance-reserve operation.
- * - Storage: 1 read `O(R)`, 1 mutate `O(X + R)`.
- * - One event.
- * # </weight>
- **/
- requestJudgement: AugmentedSubmittable<(regIndex: Compact<u32> | AnyNumber | Uint8Array, maxFee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, Compact<u128>]>;
- /**
- * Change the account associated with a registrar.
- *
- * The dispatch origin for this call must be _Signed_ and the sender must be the account
- * of the registrar whose index is `index`.
- *
- * - `index`: the index of the registrar whose fee is to be set.
- * - `new`: the new account ID.
- *
- * # <weight>
- * - `O(R)`.
- * - One storage mutation `O(R)`.
- * - Benchmark: 8.823 + R * 0.32 µs (min squares analysis)
- * # </weight>
- **/
- setAccountId: AugmentedSubmittable<(index: Compact<u32> | AnyNumber | Uint8Array, updated: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, MultiAddress]>;
- /**
- * Set the fee required for a judgement to be requested from a registrar.
- *
- * The dispatch origin for this call must be _Signed_ and the sender must be the account
- * of the registrar whose index is `index`.
- *
- * - `index`: the index of the registrar whose fee is to be set.
- * - `fee`: the new fee.
- *
- * # <weight>
- * - `O(R)`.
- * - One storage mutation `O(R)`.
- * - Benchmark: 7.315 + R * 0.329 µs (min squares analysis)
- * # </weight>
- **/
- setFee: AugmentedSubmittable<(index: Compact<u32> | AnyNumber | Uint8Array, fee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, Compact<u128>]>;
- /**
- * Set the field information for a registrar.
- *
- * The dispatch origin for this call must be _Signed_ and the sender must be the account
- * of the registrar whose index is `index`.
- *
- * - `index`: the index of the registrar whose fee is to be set.
- * - `fields`: the fields that the registrar concerns themselves with.
- *
- * # <weight>
- * - `O(R)`.
- * - One storage mutation `O(R)`.
- * - Benchmark: 7.464 + R * 0.325 µs (min squares analysis)
- * # </weight>
- **/
- setFields: AugmentedSubmittable<(index: Compact<u32> | AnyNumber | Uint8Array, fields: PalletIdentityBitFlags) => SubmittableExtrinsic<ApiType>, [Compact<u32>, PalletIdentityBitFlags]>;
- /**
- * Set an account's identity information and reserve the appropriate deposit.
- *
- * If the account already has identity information, the deposit is taken as part payment
- * for the new deposit.
- *
- * The dispatch origin for this call must be _Signed_.
- *
- * - `info`: The identity information.
- *
- * Emits `IdentitySet` if successful.
- *
- * # <weight>
- * - `O(X + X' + R)`
- * - where `X` additional-field-count (deposit-bounded and code-bounded)
- * - where `R` judgements-count (registrar-count-bounded)
- * - One balance reserve operation.
- * - One storage mutation (codec-read `O(X' + R)`, codec-write `O(X + R)`).
- * - One event.
- * # </weight>
- **/
- setIdentity: AugmentedSubmittable<(info: PalletIdentityIdentityInfo | { additional?: any; display?: any; legal?: any; web?: any; riot?: any; email?: any; pgpFingerprint?: any; image?: any; twitter?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletIdentityIdentityInfo]>;
- /**
- * Set the sub-accounts of the sender.
- *
- * Payment: Any aggregate balance reserved by previous `set_subs` calls will be returned
- * and an amount `SubAccountDeposit` will be reserved for each item in `subs`.
- *
- * The dispatch origin for this call must be _Signed_ and the sender must have a registered
- * identity.
- *
- * - `subs`: The identity's (new) sub-accounts.
- *
- * # <weight>
- * - `O(P + S)`
- * - where `P` old-subs-count (hard- and deposit-bounded).
- * - where `S` subs-count (hard- and deposit-bounded).
- * - At most one balance operations.
- * - DB:
- * - `P + S` storage mutations (codec complexity `O(1)`)
- * - One storage read (codec complexity `O(P)`).
- * - One storage write (codec complexity `O(S)`).
- * - One storage-exists (`IdentityOf::contains_key`).
- * # </weight>
- **/
- setSubs: AugmentedSubmittable<(subs: Vec<ITuple<[AccountId32, Data]>> | ([AccountId32 | string | Uint8Array, Data | { None: any } | { Raw: any } | { BlakeTwo256: any } | { Sha256: any } | { Keccak256: any } | { ShaThree256: any } | string | Uint8Array])[]) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[AccountId32, Data]>>]>;
- /**
- * Generic tx
- **/
- [key: string]: SubmittableExtrinsicFunction<ApiType>;
- };
inflation: {
/**
* This method sets the inflation start date. Can be only called once.
@@ -1180,48 +837,6 @@
* - `inherit`: Optional bool.
**/
themeAdd: AugmentedSubmittable<(baseId: u32 | AnyNumber | Uint8Array, theme: RmrkTraitsTheme | { name?: any; properties?: any; inherit?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, RmrkTraitsTheme]>;
- /**
- * Generic tx
- **/
- [key: string]: SubmittableExtrinsicFunction<ApiType>;
- };
- session: {
- /**
- * Removes any session key(s) of the function caller.
- *
- * This doesn't take effect until the next session.
- *
- * The dispatch origin of this function must be Signed and the account must be either be
- * convertible to a validator ID using the chain's typical addressing system (this usually
- * means being a controller account) or directly convertible into a validator ID (which
- * usually means being a stash account).
- *
- * # <weight>
- * - Complexity: `O(1)` in number of key types. Actual cost depends on the number of length
- * of `T::Keys::key_ids()` which is fixed.
- * - DbReads: `T::ValidatorIdOf`, `NextKeys`, `origin account`
- * - DbWrites: `NextKeys`, `origin account`
- * - DbWrites per key id: `KeyOwner`
- * # </weight>
- **/
- purgeKeys: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
- /**
- * Sets the session key(s) of the function caller to `keys`.
- * Allows an account to set its session key prior to becoming a validator.
- * This doesn't take effect until the next session.
- *
- * The dispatch origin of this function must be signed.
- *
- * # <weight>
- * - Complexity: `O(1)`. Actual cost depends on the number of length of
- * `T::Keys::key_ids()` which is fixed.
- * - DbReads: `origin account`, `T::ValidatorIdOf`, `NextKeys`
- * - DbWrites: `origin account`, `NextKeys`
- * - DbReads per key id: `KeyOwner`
- * - DbWrites per key id: `KeyOwner`
- * # </weight>
- **/
- setKeys: AugmentedSubmittable<(keys: OpalRuntimeRuntimeCommonSessionKeys | { aura?: any } | string | Uint8Array, proof: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [OpalRuntimeRuntimeCommonSessionKeys, Bytes]>;
/**
* Generic tx
**/
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonDataManagementFilterIdentity, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, 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, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
+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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, 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, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
import type { Data, StorageKey } from '@polkadot/types';
import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, 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';
@@ -772,9 +772,8 @@
Offender: Offender;
OldV1SessionInfo: OldV1SessionInfo;
OpalRuntimeRuntime: OpalRuntimeRuntime;
- OpalRuntimeRuntimeCommonDataManagementFilterIdentity: OpalRuntimeRuntimeCommonDataManagementFilterIdentity;
+ OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
- OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
OpaqueCall: OpaqueCall;
OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;
OpaqueMetadata: OpaqueMetadata;
@@ -819,9 +818,6 @@
PalletAppPromotionCall: PalletAppPromotionCall;
PalletAppPromotionError: PalletAppPromotionError;
PalletAppPromotionEvent: PalletAppPromotionEvent;
- PalletAuthorshipCall: PalletAuthorshipCall;
- PalletAuthorshipError: PalletAuthorshipError;
- PalletAuthorshipUncleEntryItem: PalletAuthorshipUncleEntryItem;
PalletBalancesAccountData: PalletBalancesAccountData;
PalletBalancesBalanceLock: PalletBalancesBalanceLock;
PalletBalancesCall: PalletBalancesCall;
@@ -831,9 +827,6 @@
PalletBalancesReserveData: PalletBalancesReserveData;
PalletCallMetadataLatest: PalletCallMetadataLatest;
PalletCallMetadataV14: PalletCallMetadataV14;
- PalletCollatorSelectionCall: PalletCollatorSelectionCall;
- PalletCollatorSelectionError: PalletCollatorSelectionError;
- PalletCollatorSelectionEvent: PalletCollatorSelectionEvent;
PalletCommonError: PalletCommonError;
PalletCommonEvent: PalletCommonEvent;
PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;
@@ -869,15 +862,6 @@
PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;
PalletFungibleError: PalletFungibleError;
PalletId: PalletId;
- PalletIdentityBitFlags: PalletIdentityBitFlags;
- PalletIdentityCall: PalletIdentityCall;
- PalletIdentityError: PalletIdentityError;
- PalletIdentityEvent: PalletIdentityEvent;
- PalletIdentityIdentityField: PalletIdentityIdentityField;
- PalletIdentityIdentityInfo: PalletIdentityIdentityInfo;
- PalletIdentityJudgement: PalletIdentityJudgement;
- PalletIdentityRegistrarInfo: PalletIdentityRegistrarInfo;
- PalletIdentityRegistration: PalletIdentityRegistration;
PalletInflationCall: PalletInflationCall;
PalletMaintenanceCall: PalletMaintenanceCall;
PalletMaintenanceError: PalletMaintenanceError;
@@ -893,9 +877,6 @@
PalletRmrkEquipCall: PalletRmrkEquipCall;
PalletRmrkEquipError: PalletRmrkEquipError;
PalletRmrkEquipEvent: PalletRmrkEquipEvent;
- PalletSessionCall: PalletSessionCall;
- PalletSessionError: PalletSessionError;
- PalletSessionEvent: PalletSessionEvent;
PalletsOrigin: PalletsOrigin;
PalletStorageMetadataLatest: PalletStorageMetadataLatest;
PalletStorageMetadataV14: PalletStorageMetadataV14;
@@ -1195,19 +1176,14 @@
SolutionSupports: SolutionSupports;
SpanIndex: SpanIndex;
SpanRecord: SpanRecord;
- SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
- SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
SpCoreEd25519Signature: SpCoreEd25519Signature;
- SpCoreSr25519Public: SpCoreSr25519Public;
SpCoreSr25519Signature: SpCoreSr25519Signature;
SpecVersion: SpecVersion;
SpRuntimeArithmeticError: SpRuntimeArithmeticError;
- SpRuntimeBlakeTwo256: SpRuntimeBlakeTwo256;
SpRuntimeDigest: SpRuntimeDigest;
SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
SpRuntimeDispatchError: SpRuntimeDispatchError;
- SpRuntimeHeader: SpRuntimeHeader;
SpRuntimeModuleError: SpRuntimeModuleError;
SpRuntimeMultiSignature: SpRuntimeMultiSignature;
SpRuntimeTokenError: SpRuntimeTokenError;
tests/src/interfaces/default/types.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { Data } from '@polkadot/types';5import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';6import type { ITuple } from '@polkadot/types-codec/types';7import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';8import type { Event } from '@polkadot/types/interfaces/system';910/** @name CumulusPalletDmpQueueCall */11export interface CumulusPalletDmpQueueCall extends Enum {12 readonly isServiceOverweight: boolean;13 readonly asServiceOverweight: {14 readonly index: u64;15 readonly weightLimit: u64;16 } & Struct;17 readonly type: 'ServiceOverweight';18}1920/** @name CumulusPalletDmpQueueConfigData */21export interface CumulusPalletDmpQueueConfigData extends Struct {22 readonly maxIndividual: SpWeightsWeightV2Weight;23}2425/** @name CumulusPalletDmpQueueError */26export interface CumulusPalletDmpQueueError extends Enum {27 readonly isUnknown: boolean;28 readonly isOverLimit: boolean;29 readonly type: 'Unknown' | 'OverLimit';30}3132/** @name CumulusPalletDmpQueueEvent */33export interface CumulusPalletDmpQueueEvent extends Enum {34 readonly isInvalidFormat: boolean;35 readonly asInvalidFormat: {36 readonly messageId: U8aFixed;37 } & Struct;38 readonly isUnsupportedVersion: boolean;39 readonly asUnsupportedVersion: {40 readonly messageId: U8aFixed;41 } & Struct;42 readonly isExecutedDownward: boolean;43 readonly asExecutedDownward: {44 readonly messageId: U8aFixed;45 readonly outcome: XcmV2TraitsOutcome;46 } & Struct;47 readonly isWeightExhausted: boolean;48 readonly asWeightExhausted: {49 readonly messageId: U8aFixed;50 readonly remainingWeight: SpWeightsWeightV2Weight;51 readonly requiredWeight: SpWeightsWeightV2Weight;52 } & Struct;53 readonly isOverweightEnqueued: boolean;54 readonly asOverweightEnqueued: {55 readonly messageId: U8aFixed;56 readonly overweightIndex: u64;57 readonly requiredWeight: SpWeightsWeightV2Weight;58 } & Struct;59 readonly isOverweightServiced: boolean;60 readonly asOverweightServiced: {61 readonly overweightIndex: u64;62 readonly weightUsed: SpWeightsWeightV2Weight;63 } & Struct;64 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';65}6667/** @name CumulusPalletDmpQueuePageIndexData */68export interface CumulusPalletDmpQueuePageIndexData extends Struct {69 readonly beginUsed: u32;70 readonly endUsed: u32;71 readonly overweightCount: u64;72}7374/** @name CumulusPalletParachainSystemCall */75export interface CumulusPalletParachainSystemCall extends Enum {76 readonly isSetValidationData: boolean;77 readonly asSetValidationData: {78 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;79 } & Struct;80 readonly isSudoSendUpwardMessage: boolean;81 readonly asSudoSendUpwardMessage: {82 readonly message: Bytes;83 } & Struct;84 readonly isAuthorizeUpgrade: boolean;85 readonly asAuthorizeUpgrade: {86 readonly codeHash: H256;87 } & Struct;88 readonly isEnactAuthorizedUpgrade: boolean;89 readonly asEnactAuthorizedUpgrade: {90 readonly code: Bytes;91 } & Struct;92 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';93}9495/** @name CumulusPalletParachainSystemError */96export interface CumulusPalletParachainSystemError extends Enum {97 readonly isOverlappingUpgrades: boolean;98 readonly isProhibitedByPolkadot: boolean;99 readonly isTooBig: boolean;100 readonly isValidationDataNotAvailable: boolean;101 readonly isHostConfigurationNotAvailable: boolean;102 readonly isNotScheduled: boolean;103 readonly isNothingAuthorized: boolean;104 readonly isUnauthorized: boolean;105 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';106}107108/** @name CumulusPalletParachainSystemEvent */109export interface CumulusPalletParachainSystemEvent extends Enum {110 readonly isValidationFunctionStored: boolean;111 readonly isValidationFunctionApplied: boolean;112 readonly asValidationFunctionApplied: {113 readonly relayChainBlockNum: u32;114 } & Struct;115 readonly isValidationFunctionDiscarded: boolean;116 readonly isUpgradeAuthorized: boolean;117 readonly asUpgradeAuthorized: {118 readonly codeHash: H256;119 } & Struct;120 readonly isDownwardMessagesReceived: boolean;121 readonly asDownwardMessagesReceived: {122 readonly count: u32;123 } & Struct;124 readonly isDownwardMessagesProcessed: boolean;125 readonly asDownwardMessagesProcessed: {126 readonly weightUsed: SpWeightsWeightV2Weight;127 readonly dmqHead: H256;128 } & Struct;129 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';130}131132/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */133export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {134 readonly dmqMqcHead: H256;135 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;136 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;137 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;138}139140/** @name CumulusPalletXcmCall */141export interface CumulusPalletXcmCall extends Null {}142143/** @name CumulusPalletXcmError */144export interface CumulusPalletXcmError extends Null {}145146/** @name CumulusPalletXcmEvent */147export interface CumulusPalletXcmEvent extends Enum {148 readonly isInvalidFormat: boolean;149 readonly asInvalidFormat: U8aFixed;150 readonly isUnsupportedVersion: boolean;151 readonly asUnsupportedVersion: U8aFixed;152 readonly isExecutedDownward: boolean;153 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;154 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';155}156157/** @name CumulusPalletXcmpQueueCall */158export interface CumulusPalletXcmpQueueCall extends Enum {159 readonly isServiceOverweight: boolean;160 readonly asServiceOverweight: {161 readonly index: u64;162 readonly weightLimit: u64;163 } & Struct;164 readonly isSuspendXcmExecution: boolean;165 readonly isResumeXcmExecution: boolean;166 readonly isUpdateSuspendThreshold: boolean;167 readonly asUpdateSuspendThreshold: {168 readonly new_: u32;169 } & Struct;170 readonly isUpdateDropThreshold: boolean;171 readonly asUpdateDropThreshold: {172 readonly new_: u32;173 } & Struct;174 readonly isUpdateResumeThreshold: boolean;175 readonly asUpdateResumeThreshold: {176 readonly new_: u32;177 } & Struct;178 readonly isUpdateThresholdWeight: boolean;179 readonly asUpdateThresholdWeight: {180 readonly new_: u64;181 } & Struct;182 readonly isUpdateWeightRestrictDecay: boolean;183 readonly asUpdateWeightRestrictDecay: {184 readonly new_: u64;185 } & Struct;186 readonly isUpdateXcmpMaxIndividualWeight: boolean;187 readonly asUpdateXcmpMaxIndividualWeight: {188 readonly new_: u64;189 } & Struct;190 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';191}192193/** @name CumulusPalletXcmpQueueError */194export interface CumulusPalletXcmpQueueError extends Enum {195 readonly isFailedToSend: boolean;196 readonly isBadXcmOrigin: boolean;197 readonly isBadXcm: boolean;198 readonly isBadOverweightIndex: boolean;199 readonly isWeightOverLimit: boolean;200 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';201}202203/** @name CumulusPalletXcmpQueueEvent */204export interface CumulusPalletXcmpQueueEvent extends Enum {205 readonly isSuccess: boolean;206 readonly asSuccess: {207 readonly messageHash: Option<H256>;208 readonly weight: SpWeightsWeightV2Weight;209 } & Struct;210 readonly isFail: boolean;211 readonly asFail: {212 readonly messageHash: Option<H256>;213 readonly error: XcmV2TraitsError;214 readonly weight: SpWeightsWeightV2Weight;215 } & Struct;216 readonly isBadVersion: boolean;217 readonly asBadVersion: {218 readonly messageHash: Option<H256>;219 } & Struct;220 readonly isBadFormat: boolean;221 readonly asBadFormat: {222 readonly messageHash: Option<H256>;223 } & Struct;224 readonly isUpwardMessageSent: boolean;225 readonly asUpwardMessageSent: {226 readonly messageHash: Option<H256>;227 } & Struct;228 readonly isXcmpMessageSent: boolean;229 readonly asXcmpMessageSent: {230 readonly messageHash: Option<H256>;231 } & Struct;232 readonly isOverweightEnqueued: boolean;233 readonly asOverweightEnqueued: {234 readonly sender: u32;235 readonly sentAt: u32;236 readonly index: u64;237 readonly required: SpWeightsWeightV2Weight;238 } & Struct;239 readonly isOverweightServiced: boolean;240 readonly asOverweightServiced: {241 readonly index: u64;242 readonly used: SpWeightsWeightV2Weight;243 } & Struct;244 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';245}246247/** @name CumulusPalletXcmpQueueInboundChannelDetails */248export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {249 readonly sender: u32;250 readonly state: CumulusPalletXcmpQueueInboundState;251 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;252}253254/** @name CumulusPalletXcmpQueueInboundState */255export interface CumulusPalletXcmpQueueInboundState extends Enum {256 readonly isOk: boolean;257 readonly isSuspended: boolean;258 readonly type: 'Ok' | 'Suspended';259}260261/** @name CumulusPalletXcmpQueueOutboundChannelDetails */262export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {263 readonly recipient: u32;264 readonly state: CumulusPalletXcmpQueueOutboundState;265 readonly signalsExist: bool;266 readonly firstIndex: u16;267 readonly lastIndex: u16;268}269270/** @name CumulusPalletXcmpQueueOutboundState */271export interface CumulusPalletXcmpQueueOutboundState extends Enum {272 readonly isOk: boolean;273 readonly isSuspended: boolean;274 readonly type: 'Ok' | 'Suspended';275}276277/** @name CumulusPalletXcmpQueueQueueConfigData */278export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {279 readonly suspendThreshold: u32;280 readonly dropThreshold: u32;281 readonly resumeThreshold: u32;282 readonly thresholdWeight: SpWeightsWeightV2Weight;283 readonly weightRestrictDecay: SpWeightsWeightV2Weight;284 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;285}286287/** @name CumulusPrimitivesParachainInherentParachainInherentData */288export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {289 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;290 readonly relayChainState: SpTrieStorageProof;291 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;292 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;293}294295/** @name EthbloomBloom */296export interface EthbloomBloom extends U8aFixed {}297298/** @name EthereumBlock */299export interface EthereumBlock extends Struct {300 readonly header: EthereumHeader;301 readonly transactions: Vec<EthereumTransactionTransactionV2>;302 readonly ommers: Vec<EthereumHeader>;303}304305/** @name EthereumHeader */306export interface EthereumHeader extends Struct {307 readonly parentHash: H256;308 readonly ommersHash: H256;309 readonly beneficiary: H160;310 readonly stateRoot: H256;311 readonly transactionsRoot: H256;312 readonly receiptsRoot: H256;313 readonly logsBloom: EthbloomBloom;314 readonly difficulty: U256;315 readonly number: U256;316 readonly gasLimit: U256;317 readonly gasUsed: U256;318 readonly timestamp: u64;319 readonly extraData: Bytes;320 readonly mixHash: H256;321 readonly nonce: EthereumTypesHashH64;322}323324/** @name EthereumLog */325export interface EthereumLog extends Struct {326 readonly address: H160;327 readonly topics: Vec<H256>;328 readonly data: Bytes;329}330331/** @name EthereumReceiptEip658ReceiptData */332export interface EthereumReceiptEip658ReceiptData extends Struct {333 readonly statusCode: u8;334 readonly usedGas: U256;335 readonly logsBloom: EthbloomBloom;336 readonly logs: Vec<EthereumLog>;337}338339/** @name EthereumReceiptReceiptV3 */340export interface EthereumReceiptReceiptV3 extends Enum {341 readonly isLegacy: boolean;342 readonly asLegacy: EthereumReceiptEip658ReceiptData;343 readonly isEip2930: boolean;344 readonly asEip2930: EthereumReceiptEip658ReceiptData;345 readonly isEip1559: boolean;346 readonly asEip1559: EthereumReceiptEip658ReceiptData;347 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';348}349350/** @name EthereumTransactionAccessListItem */351export interface EthereumTransactionAccessListItem extends Struct {352 readonly address: H160;353 readonly storageKeys: Vec<H256>;354}355356/** @name EthereumTransactionEip1559Transaction */357export interface EthereumTransactionEip1559Transaction extends Struct {358 readonly chainId: u64;359 readonly nonce: U256;360 readonly maxPriorityFeePerGas: U256;361 readonly maxFeePerGas: U256;362 readonly gasLimit: U256;363 readonly action: EthereumTransactionTransactionAction;364 readonly value: U256;365 readonly input: Bytes;366 readonly accessList: Vec<EthereumTransactionAccessListItem>;367 readonly oddYParity: bool;368 readonly r: H256;369 readonly s: H256;370}371372/** @name EthereumTransactionEip2930Transaction */373export interface EthereumTransactionEip2930Transaction extends Struct {374 readonly chainId: u64;375 readonly nonce: U256;376 readonly gasPrice: U256;377 readonly gasLimit: U256;378 readonly action: EthereumTransactionTransactionAction;379 readonly value: U256;380 readonly input: Bytes;381 readonly accessList: Vec<EthereumTransactionAccessListItem>;382 readonly oddYParity: bool;383 readonly r: H256;384 readonly s: H256;385}386387/** @name EthereumTransactionLegacyTransaction */388export interface EthereumTransactionLegacyTransaction extends Struct {389 readonly nonce: U256;390 readonly gasPrice: U256;391 readonly gasLimit: U256;392 readonly action: EthereumTransactionTransactionAction;393 readonly value: U256;394 readonly input: Bytes;395 readonly signature: EthereumTransactionTransactionSignature;396}397398/** @name EthereumTransactionTransactionAction */399export interface EthereumTransactionTransactionAction extends Enum {400 readonly isCall: boolean;401 readonly asCall: H160;402 readonly isCreate: boolean;403 readonly type: 'Call' | 'Create';404}405406/** @name EthereumTransactionTransactionSignature */407export interface EthereumTransactionTransactionSignature extends Struct {408 readonly v: u64;409 readonly r: H256;410 readonly s: H256;411}412413/** @name EthereumTransactionTransactionV2 */414export interface EthereumTransactionTransactionV2 extends Enum {415 readonly isLegacy: boolean;416 readonly asLegacy: EthereumTransactionLegacyTransaction;417 readonly isEip2930: boolean;418 readonly asEip2930: EthereumTransactionEip2930Transaction;419 readonly isEip1559: boolean;420 readonly asEip1559: EthereumTransactionEip1559Transaction;421 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';422}423424/** @name EthereumTypesHashH64 */425export interface EthereumTypesHashH64 extends U8aFixed {}426427/** @name EvmCoreErrorExitError */428export interface EvmCoreErrorExitError extends Enum {429 readonly isStackUnderflow: boolean;430 readonly isStackOverflow: boolean;431 readonly isInvalidJump: boolean;432 readonly isInvalidRange: boolean;433 readonly isDesignatedInvalid: boolean;434 readonly isCallTooDeep: boolean;435 readonly isCreateCollision: boolean;436 readonly isCreateContractLimit: boolean;437 readonly isOutOfOffset: boolean;438 readonly isOutOfGas: boolean;439 readonly isOutOfFund: boolean;440 readonly isPcUnderflow: boolean;441 readonly isCreateEmpty: boolean;442 readonly isOther: boolean;443 readonly asOther: Text;444 readonly isInvalidCode: boolean;445 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';446}447448/** @name EvmCoreErrorExitFatal */449export interface EvmCoreErrorExitFatal extends Enum {450 readonly isNotSupported: boolean;451 readonly isUnhandledInterrupt: boolean;452 readonly isCallErrorAsFatal: boolean;453 readonly asCallErrorAsFatal: EvmCoreErrorExitError;454 readonly isOther: boolean;455 readonly asOther: Text;456 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';457}458459/** @name EvmCoreErrorExitReason */460export interface EvmCoreErrorExitReason extends Enum {461 readonly isSucceed: boolean;462 readonly asSucceed: EvmCoreErrorExitSucceed;463 readonly isError: boolean;464 readonly asError: EvmCoreErrorExitError;465 readonly isRevert: boolean;466 readonly asRevert: EvmCoreErrorExitRevert;467 readonly isFatal: boolean;468 readonly asFatal: EvmCoreErrorExitFatal;469 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';470}471472/** @name EvmCoreErrorExitRevert */473export interface EvmCoreErrorExitRevert extends Enum {474 readonly isReverted: boolean;475 readonly type: 'Reverted';476}477478/** @name EvmCoreErrorExitSucceed */479export interface EvmCoreErrorExitSucceed extends Enum {480 readonly isStopped: boolean;481 readonly isReturned: boolean;482 readonly isSuicided: boolean;483 readonly type: 'Stopped' | 'Returned' | 'Suicided';484}485486/** @name FpRpcTransactionStatus */487export interface FpRpcTransactionStatus extends Struct {488 readonly transactionHash: H256;489 readonly transactionIndex: u32;490 readonly from: H160;491 readonly to: Option<H160>;492 readonly contractAddress: Option<H160>;493 readonly logs: Vec<EthereumLog>;494 readonly logsBloom: EthbloomBloom;495}496497/** @name FrameSupportDispatchDispatchClass */498export interface FrameSupportDispatchDispatchClass extends Enum {499 readonly isNormal: boolean;500 readonly isOperational: boolean;501 readonly isMandatory: boolean;502 readonly type: 'Normal' | 'Operational' | 'Mandatory';503}504505/** @name FrameSupportDispatchDispatchInfo */506export interface FrameSupportDispatchDispatchInfo extends Struct {507 readonly weight: SpWeightsWeightV2Weight;508 readonly class: FrameSupportDispatchDispatchClass;509 readonly paysFee: FrameSupportDispatchPays;510}511512/** @name FrameSupportDispatchPays */513export interface FrameSupportDispatchPays extends Enum {514 readonly isYes: boolean;515 readonly isNo: boolean;516 readonly type: 'Yes' | 'No';517}518519/** @name FrameSupportDispatchPerDispatchClassU32 */520export interface FrameSupportDispatchPerDispatchClassU32 extends Struct {521 readonly normal: u32;522 readonly operational: u32;523 readonly mandatory: u32;524}525526/** @name FrameSupportDispatchPerDispatchClassWeight */527export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {528 readonly normal: SpWeightsWeightV2Weight;529 readonly operational: SpWeightsWeightV2Weight;530 readonly mandatory: SpWeightsWeightV2Weight;531}532533/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */534export interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {535 readonly normal: FrameSystemLimitsWeightsPerClass;536 readonly operational: FrameSystemLimitsWeightsPerClass;537 readonly mandatory: FrameSystemLimitsWeightsPerClass;538}539540/** @name FrameSupportPalletId */541export interface FrameSupportPalletId extends U8aFixed {}542543/** @name FrameSupportTokensMiscBalanceStatus */544export interface FrameSupportTokensMiscBalanceStatus extends Enum {545 readonly isFree: boolean;546 readonly isReserved: boolean;547 readonly type: 'Free' | 'Reserved';548}549550/** @name FrameSystemAccountInfo */551export interface FrameSystemAccountInfo extends Struct {552 readonly nonce: u32;553 readonly consumers: u32;554 readonly providers: u32;555 readonly sufficients: u32;556 readonly data: PalletBalancesAccountData;557}558559/** @name FrameSystemCall */560export interface FrameSystemCall extends Enum {561 readonly isRemark: boolean;562 readonly asRemark: {563 readonly remark: Bytes;564 } & Struct;565 readonly isSetHeapPages: boolean;566 readonly asSetHeapPages: {567 readonly pages: u64;568 } & Struct;569 readonly isSetCode: boolean;570 readonly asSetCode: {571 readonly code: Bytes;572 } & Struct;573 readonly isSetCodeWithoutChecks: boolean;574 readonly asSetCodeWithoutChecks: {575 readonly code: Bytes;576 } & Struct;577 readonly isSetStorage: boolean;578 readonly asSetStorage: {579 readonly items: Vec<ITuple<[Bytes, Bytes]>>;580 } & Struct;581 readonly isKillStorage: boolean;582 readonly asKillStorage: {583 readonly keys_: Vec<Bytes>;584 } & Struct;585 readonly isKillPrefix: boolean;586 readonly asKillPrefix: {587 readonly prefix: Bytes;588 readonly subkeys: u32;589 } & Struct;590 readonly isRemarkWithEvent: boolean;591 readonly asRemarkWithEvent: {592 readonly remark: Bytes;593 } & Struct;594 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';595}596597/** @name FrameSystemError */598export interface FrameSystemError extends Enum {599 readonly isInvalidSpecName: boolean;600 readonly isSpecVersionNeedsToIncrease: boolean;601 readonly isFailedToExtractRuntimeVersion: boolean;602 readonly isNonDefaultComposite: boolean;603 readonly isNonZeroRefCount: boolean;604 readonly isCallFiltered: boolean;605 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';606}607608/** @name FrameSystemEvent */609export interface FrameSystemEvent extends Enum {610 readonly isExtrinsicSuccess: boolean;611 readonly asExtrinsicSuccess: {612 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;613 } & Struct;614 readonly isExtrinsicFailed: boolean;615 readonly asExtrinsicFailed: {616 readonly dispatchError: SpRuntimeDispatchError;617 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;618 } & Struct;619 readonly isCodeUpdated: boolean;620 readonly isNewAccount: boolean;621 readonly asNewAccount: {622 readonly account: AccountId32;623 } & Struct;624 readonly isKilledAccount: boolean;625 readonly asKilledAccount: {626 readonly account: AccountId32;627 } & Struct;628 readonly isRemarked: boolean;629 readonly asRemarked: {630 readonly sender: AccountId32;631 readonly hash_: H256;632 } & Struct;633 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';634}635636/** @name FrameSystemEventRecord */637export interface FrameSystemEventRecord extends Struct {638 readonly phase: FrameSystemPhase;639 readonly event: Event;640 readonly topics: Vec<H256>;641}642643/** @name FrameSystemExtensionsCheckGenesis */644export interface FrameSystemExtensionsCheckGenesis extends Null {}645646/** @name FrameSystemExtensionsCheckNonce */647export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}648649/** @name FrameSystemExtensionsCheckSpecVersion */650export interface FrameSystemExtensionsCheckSpecVersion extends Null {}651652/** @name FrameSystemExtensionsCheckTxVersion */653export interface FrameSystemExtensionsCheckTxVersion extends Null {}654655/** @name FrameSystemExtensionsCheckWeight */656export interface FrameSystemExtensionsCheckWeight extends Null {}657658/** @name FrameSystemLastRuntimeUpgradeInfo */659export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {660 readonly specVersion: Compact<u32>;661 readonly specName: Text;662}663664/** @name FrameSystemLimitsBlockLength */665export interface FrameSystemLimitsBlockLength extends Struct {666 readonly max: FrameSupportDispatchPerDispatchClassU32;667}668669/** @name FrameSystemLimitsBlockWeights */670export interface FrameSystemLimitsBlockWeights extends Struct {671 readonly baseBlock: SpWeightsWeightV2Weight;672 readonly maxBlock: SpWeightsWeightV2Weight;673 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;674}675676/** @name FrameSystemLimitsWeightsPerClass */677export interface FrameSystemLimitsWeightsPerClass extends Struct {678 readonly baseExtrinsic: SpWeightsWeightV2Weight;679 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;680 readonly maxTotal: Option<SpWeightsWeightV2Weight>;681 readonly reserved: Option<SpWeightsWeightV2Weight>;682}683684/** @name FrameSystemPhase */685export interface FrameSystemPhase extends Enum {686 readonly isApplyExtrinsic: boolean;687 readonly asApplyExtrinsic: u32;688 readonly isFinalization: boolean;689 readonly isInitialization: boolean;690 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';691}692693/** @name OpalRuntimeRuntime */694export interface OpalRuntimeRuntime extends Null {}695696/** @name OpalRuntimeRuntimeCommonDataManagementFilterIdentity */697export interface OpalRuntimeRuntimeCommonDataManagementFilterIdentity extends Null {}698699/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */700export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}701702/** @name OpalRuntimeRuntimeCommonSessionKeys */703export interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {704 readonly aura: SpConsensusAuraSr25519AppSr25519Public;705}706707/** @name OrmlTokensAccountData */708export interface OrmlTokensAccountData extends Struct {709 readonly free: u128;710 readonly reserved: u128;711 readonly frozen: u128;712}713714/** @name OrmlTokensBalanceLock */715export interface OrmlTokensBalanceLock extends Struct {716 readonly id: U8aFixed;717 readonly amount: u128;718}719720/** @name OrmlTokensModuleCall */721export interface OrmlTokensModuleCall extends Enum {722 readonly isTransfer: boolean;723 readonly asTransfer: {724 readonly dest: MultiAddress;725 readonly currencyId: PalletForeignAssetsAssetIds;726 readonly amount: Compact<u128>;727 } & Struct;728 readonly isTransferAll: boolean;729 readonly asTransferAll: {730 readonly dest: MultiAddress;731 readonly currencyId: PalletForeignAssetsAssetIds;732 readonly keepAlive: bool;733 } & Struct;734 readonly isTransferKeepAlive: boolean;735 readonly asTransferKeepAlive: {736 readonly dest: MultiAddress;737 readonly currencyId: PalletForeignAssetsAssetIds;738 readonly amount: Compact<u128>;739 } & Struct;740 readonly isForceTransfer: boolean;741 readonly asForceTransfer: {742 readonly source: MultiAddress;743 readonly dest: MultiAddress;744 readonly currencyId: PalletForeignAssetsAssetIds;745 readonly amount: Compact<u128>;746 } & Struct;747 readonly isSetBalance: boolean;748 readonly asSetBalance: {749 readonly who: MultiAddress;750 readonly currencyId: PalletForeignAssetsAssetIds;751 readonly newFree: Compact<u128>;752 readonly newReserved: Compact<u128>;753 } & Struct;754 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';755}756757/** @name OrmlTokensModuleError */758export interface OrmlTokensModuleError extends Enum {759 readonly isBalanceTooLow: boolean;760 readonly isAmountIntoBalanceFailed: boolean;761 readonly isLiquidityRestrictions: boolean;762 readonly isMaxLocksExceeded: boolean;763 readonly isKeepAlive: boolean;764 readonly isExistentialDeposit: boolean;765 readonly isDeadAccount: boolean;766 readonly isTooManyReserves: boolean;767 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';768}769770/** @name OrmlTokensModuleEvent */771export interface OrmlTokensModuleEvent extends Enum {772 readonly isEndowed: boolean;773 readonly asEndowed: {774 readonly currencyId: PalletForeignAssetsAssetIds;775 readonly who: AccountId32;776 readonly amount: u128;777 } & Struct;778 readonly isDustLost: boolean;779 readonly asDustLost: {780 readonly currencyId: PalletForeignAssetsAssetIds;781 readonly who: AccountId32;782 readonly amount: u128;783 } & Struct;784 readonly isTransfer: boolean;785 readonly asTransfer: {786 readonly currencyId: PalletForeignAssetsAssetIds;787 readonly from: AccountId32;788 readonly to: AccountId32;789 readonly amount: u128;790 } & Struct;791 readonly isReserved: boolean;792 readonly asReserved: {793 readonly currencyId: PalletForeignAssetsAssetIds;794 readonly who: AccountId32;795 readonly amount: u128;796 } & Struct;797 readonly isUnreserved: boolean;798 readonly asUnreserved: {799 readonly currencyId: PalletForeignAssetsAssetIds;800 readonly who: AccountId32;801 readonly amount: u128;802 } & Struct;803 readonly isReserveRepatriated: boolean;804 readonly asReserveRepatriated: {805 readonly currencyId: PalletForeignAssetsAssetIds;806 readonly from: AccountId32;807 readonly to: AccountId32;808 readonly amount: u128;809 readonly status: FrameSupportTokensMiscBalanceStatus;810 } & Struct;811 readonly isBalanceSet: boolean;812 readonly asBalanceSet: {813 readonly currencyId: PalletForeignAssetsAssetIds;814 readonly who: AccountId32;815 readonly free: u128;816 readonly reserved: u128;817 } & Struct;818 readonly isTotalIssuanceSet: boolean;819 readonly asTotalIssuanceSet: {820 readonly currencyId: PalletForeignAssetsAssetIds;821 readonly amount: u128;822 } & Struct;823 readonly isWithdrawn: boolean;824 readonly asWithdrawn: {825 readonly currencyId: PalletForeignAssetsAssetIds;826 readonly who: AccountId32;827 readonly amount: u128;828 } & Struct;829 readonly isSlashed: boolean;830 readonly asSlashed: {831 readonly currencyId: PalletForeignAssetsAssetIds;832 readonly who: AccountId32;833 readonly freeAmount: u128;834 readonly reservedAmount: u128;835 } & Struct;836 readonly isDeposited: boolean;837 readonly asDeposited: {838 readonly currencyId: PalletForeignAssetsAssetIds;839 readonly who: AccountId32;840 readonly amount: u128;841 } & Struct;842 readonly isLockSet: boolean;843 readonly asLockSet: {844 readonly lockId: U8aFixed;845 readonly currencyId: PalletForeignAssetsAssetIds;846 readonly who: AccountId32;847 readonly amount: u128;848 } & Struct;849 readonly isLockRemoved: boolean;850 readonly asLockRemoved: {851 readonly lockId: U8aFixed;852 readonly currencyId: PalletForeignAssetsAssetIds;853 readonly who: AccountId32;854 } & Struct;855 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';856}857858/** @name OrmlTokensReserveData */859export interface OrmlTokensReserveData extends Struct {860 readonly id: Null;861 readonly amount: u128;862}863864/** @name OrmlVestingModuleCall */865export interface OrmlVestingModuleCall extends Enum {866 readonly isClaim: boolean;867 readonly isVestedTransfer: boolean;868 readonly asVestedTransfer: {869 readonly dest: MultiAddress;870 readonly schedule: OrmlVestingVestingSchedule;871 } & Struct;872 readonly isUpdateVestingSchedules: boolean;873 readonly asUpdateVestingSchedules: {874 readonly who: MultiAddress;875 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;876 } & Struct;877 readonly isClaimFor: boolean;878 readonly asClaimFor: {879 readonly dest: MultiAddress;880 } & Struct;881 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';882}883884/** @name OrmlVestingModuleError */885export interface OrmlVestingModuleError extends Enum {886 readonly isZeroVestingPeriod: boolean;887 readonly isZeroVestingPeriodCount: boolean;888 readonly isInsufficientBalanceToLock: boolean;889 readonly isTooManyVestingSchedules: boolean;890 readonly isAmountLow: boolean;891 readonly isMaxVestingSchedulesExceeded: boolean;892 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';893}894895/** @name OrmlVestingModuleEvent */896export interface OrmlVestingModuleEvent extends Enum {897 readonly isVestingScheduleAdded: boolean;898 readonly asVestingScheduleAdded: {899 readonly from: AccountId32;900 readonly to: AccountId32;901 readonly vestingSchedule: OrmlVestingVestingSchedule;902 } & Struct;903 readonly isClaimed: boolean;904 readonly asClaimed: {905 readonly who: AccountId32;906 readonly amount: u128;907 } & Struct;908 readonly isVestingSchedulesUpdated: boolean;909 readonly asVestingSchedulesUpdated: {910 readonly who: AccountId32;911 } & Struct;912 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';913}914915/** @name OrmlVestingVestingSchedule */916export interface OrmlVestingVestingSchedule extends Struct {917 readonly start: u32;918 readonly period: u32;919 readonly periodCount: u32;920 readonly perPeriod: Compact<u128>;921}922923/** @name OrmlXtokensModuleCall */924export interface OrmlXtokensModuleCall extends Enum {925 readonly isTransfer: boolean;926 readonly asTransfer: {927 readonly currencyId: PalletForeignAssetsAssetIds;928 readonly amount: u128;929 readonly dest: XcmVersionedMultiLocation;930 readonly destWeightLimit: XcmV2WeightLimit;931 } & Struct;932 readonly isTransferMultiasset: boolean;933 readonly asTransferMultiasset: {934 readonly asset: XcmVersionedMultiAsset;935 readonly dest: XcmVersionedMultiLocation;936 readonly destWeightLimit: XcmV2WeightLimit;937 } & Struct;938 readonly isTransferWithFee: boolean;939 readonly asTransferWithFee: {940 readonly currencyId: PalletForeignAssetsAssetIds;941 readonly amount: u128;942 readonly fee: u128;943 readonly dest: XcmVersionedMultiLocation;944 readonly destWeightLimit: XcmV2WeightLimit;945 } & Struct;946 readonly isTransferMultiassetWithFee: boolean;947 readonly asTransferMultiassetWithFee: {948 readonly asset: XcmVersionedMultiAsset;949 readonly fee: XcmVersionedMultiAsset;950 readonly dest: XcmVersionedMultiLocation;951 readonly destWeightLimit: XcmV2WeightLimit;952 } & Struct;953 readonly isTransferMulticurrencies: boolean;954 readonly asTransferMulticurrencies: {955 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;956 readonly feeItem: u32;957 readonly dest: XcmVersionedMultiLocation;958 readonly destWeightLimit: XcmV2WeightLimit;959 } & Struct;960 readonly isTransferMultiassets: boolean;961 readonly asTransferMultiassets: {962 readonly assets: XcmVersionedMultiAssets;963 readonly feeItem: u32;964 readonly dest: XcmVersionedMultiLocation;965 readonly destWeightLimit: XcmV2WeightLimit;966 } & Struct;967 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';968}969970/** @name OrmlXtokensModuleError */971export interface OrmlXtokensModuleError extends Enum {972 readonly isAssetHasNoReserve: boolean;973 readonly isNotCrossChainTransfer: boolean;974 readonly isInvalidDest: boolean;975 readonly isNotCrossChainTransferableCurrency: boolean;976 readonly isUnweighableMessage: boolean;977 readonly isXcmExecutionFailed: boolean;978 readonly isCannotReanchor: boolean;979 readonly isInvalidAncestry: boolean;980 readonly isInvalidAsset: boolean;981 readonly isDestinationNotInvertible: boolean;982 readonly isBadVersion: boolean;983 readonly isDistinctReserveForAssetAndFee: boolean;984 readonly isZeroFee: boolean;985 readonly isZeroAmount: boolean;986 readonly isTooManyAssetsBeingSent: boolean;987 readonly isAssetIndexNonExistent: boolean;988 readonly isFeeNotEnough: boolean;989 readonly isNotSupportedMultiLocation: boolean;990 readonly isMinXcmFeeNotDefined: boolean;991 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';992}993994/** @name OrmlXtokensModuleEvent */995export interface OrmlXtokensModuleEvent extends Enum {996 readonly isTransferredMultiAssets: boolean;997 readonly asTransferredMultiAssets: {998 readonly sender: AccountId32;999 readonly assets: XcmV1MultiassetMultiAssets;1000 readonly fee: XcmV1MultiAsset;1001 readonly dest: XcmV1MultiLocation;1002 } & Struct;1003 readonly type: 'TransferredMultiAssets';1004}10051006/** @name PalletAppPromotionCall */1007export interface PalletAppPromotionCall extends Enum {1008 readonly isSetAdminAddress: boolean;1009 readonly asSetAdminAddress: {1010 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;1011 } & Struct;1012 readonly isStake: boolean;1013 readonly asStake: {1014 readonly amount: u128;1015 } & Struct;1016 readonly isUnstake: boolean;1017 readonly isSponsorCollection: boolean;1018 readonly asSponsorCollection: {1019 readonly collectionId: u32;1020 } & Struct;1021 readonly isStopSponsoringCollection: boolean;1022 readonly asStopSponsoringCollection: {1023 readonly collectionId: u32;1024 } & Struct;1025 readonly isSponsorContract: boolean;1026 readonly asSponsorContract: {1027 readonly contractId: H160;1028 } & Struct;1029 readonly isStopSponsoringContract: boolean;1030 readonly asStopSponsoringContract: {1031 readonly contractId: H160;1032 } & Struct;1033 readonly isPayoutStakers: boolean;1034 readonly asPayoutStakers: {1035 readonly stakersNumber: Option<u8>;1036 } & Struct;1037 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';1038}10391040/** @name PalletAppPromotionError */1041export interface PalletAppPromotionError extends Enum {1042 readonly isAdminNotSet: boolean;1043 readonly isNoPermission: boolean;1044 readonly isNotSufficientFunds: boolean;1045 readonly isPendingForBlockOverflow: boolean;1046 readonly isSponsorNotSet: boolean;1047 readonly isIncorrectLockedBalanceOperation: boolean;1048 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';1049}10501051/** @name PalletAppPromotionEvent */1052export interface PalletAppPromotionEvent extends Enum {1053 readonly isStakingRecalculation: boolean;1054 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1055 readonly isStake: boolean;1056 readonly asStake: ITuple<[AccountId32, u128]>;1057 readonly isUnstake: boolean;1058 readonly asUnstake: ITuple<[AccountId32, u128]>;1059 readonly isSetAdmin: boolean;1060 readonly asSetAdmin: AccountId32;1061 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1062}10631064/** @name PalletAuthorshipCall */1065export interface PalletAuthorshipCall extends Enum {1066 readonly isSetUncles: boolean;1067 readonly asSetUncles: {1068 readonly newUncles: Vec<SpRuntimeHeader>;1069 } & Struct;1070 readonly type: 'SetUncles';1071}10721073/** @name PalletAuthorshipError */1074export interface PalletAuthorshipError extends Enum {1075 readonly isInvalidUncleParent: boolean;1076 readonly isUnclesAlreadySet: boolean;1077 readonly isTooManyUncles: boolean;1078 readonly isGenesisUncle: boolean;1079 readonly isTooHighUncle: boolean;1080 readonly isUncleAlreadyIncluded: boolean;1081 readonly isOldUncle: boolean;1082 readonly type: 'InvalidUncleParent' | 'UnclesAlreadySet' | 'TooManyUncles' | 'GenesisUncle' | 'TooHighUncle' | 'UncleAlreadyIncluded' | 'OldUncle';1083}10841085/** @name PalletAuthorshipUncleEntryItem */1086export interface PalletAuthorshipUncleEntryItem extends Enum {1087 readonly isInclusionHeight: boolean;1088 readonly asInclusionHeight: u32;1089 readonly isUncle: boolean;1090 readonly asUncle: ITuple<[H256, Option<AccountId32>]>;1091 readonly type: 'InclusionHeight' | 'Uncle';1092}10931094/** @name PalletBalancesAccountData */1095export interface PalletBalancesAccountData extends Struct {1096 readonly free: u128;1097 readonly reserved: u128;1098 readonly miscFrozen: u128;1099 readonly feeFrozen: u128;1100}11011102/** @name PalletBalancesBalanceLock */1103export interface PalletBalancesBalanceLock extends Struct {1104 readonly id: U8aFixed;1105 readonly amount: u128;1106 readonly reasons: PalletBalancesReasons;1107}11081109/** @name PalletBalancesCall */1110export interface PalletBalancesCall extends Enum {1111 readonly isTransfer: boolean;1112 readonly asTransfer: {1113 readonly dest: MultiAddress;1114 readonly value: Compact<u128>;1115 } & Struct;1116 readonly isSetBalance: boolean;1117 readonly asSetBalance: {1118 readonly who: MultiAddress;1119 readonly newFree: Compact<u128>;1120 readonly newReserved: Compact<u128>;1121 } & Struct;1122 readonly isForceTransfer: boolean;1123 readonly asForceTransfer: {1124 readonly source: MultiAddress;1125 readonly dest: MultiAddress;1126 readonly value: Compact<u128>;1127 } & Struct;1128 readonly isTransferKeepAlive: boolean;1129 readonly asTransferKeepAlive: {1130 readonly dest: MultiAddress;1131 readonly value: Compact<u128>;1132 } & Struct;1133 readonly isTransferAll: boolean;1134 readonly asTransferAll: {1135 readonly dest: MultiAddress;1136 readonly keepAlive: bool;1137 } & Struct;1138 readonly isForceUnreserve: boolean;1139 readonly asForceUnreserve: {1140 readonly who: MultiAddress;1141 readonly amount: u128;1142 } & Struct;1143 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1144}11451146/** @name PalletBalancesError */1147export interface PalletBalancesError extends Enum {1148 readonly isVestingBalance: boolean;1149 readonly isLiquidityRestrictions: boolean;1150 readonly isInsufficientBalance: boolean;1151 readonly isExistentialDeposit: boolean;1152 readonly isKeepAlive: boolean;1153 readonly isExistingVestingSchedule: boolean;1154 readonly isDeadAccount: boolean;1155 readonly isTooManyReserves: boolean;1156 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1157}11581159/** @name PalletBalancesEvent */1160export interface PalletBalancesEvent extends Enum {1161 readonly isEndowed: boolean;1162 readonly asEndowed: {1163 readonly account: AccountId32;1164 readonly freeBalance: u128;1165 } & Struct;1166 readonly isDustLost: boolean;1167 readonly asDustLost: {1168 readonly account: AccountId32;1169 readonly amount: u128;1170 } & Struct;1171 readonly isTransfer: boolean;1172 readonly asTransfer: {1173 readonly from: AccountId32;1174 readonly to: AccountId32;1175 readonly amount: u128;1176 } & Struct;1177 readonly isBalanceSet: boolean;1178 readonly asBalanceSet: {1179 readonly who: AccountId32;1180 readonly free: u128;1181 readonly reserved: u128;1182 } & Struct;1183 readonly isReserved: boolean;1184 readonly asReserved: {1185 readonly who: AccountId32;1186 readonly amount: u128;1187 } & Struct;1188 readonly isUnreserved: boolean;1189 readonly asUnreserved: {1190 readonly who: AccountId32;1191 readonly amount: u128;1192 } & Struct;1193 readonly isReserveRepatriated: boolean;1194 readonly asReserveRepatriated: {1195 readonly from: AccountId32;1196 readonly to: AccountId32;1197 readonly amount: u128;1198 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;1199 } & Struct;1200 readonly isDeposit: boolean;1201 readonly asDeposit: {1202 readonly who: AccountId32;1203 readonly amount: u128;1204 } & Struct;1205 readonly isWithdraw: boolean;1206 readonly asWithdraw: {1207 readonly who: AccountId32;1208 readonly amount: u128;1209 } & Struct;1210 readonly isSlashed: boolean;1211 readonly asSlashed: {1212 readonly who: AccountId32;1213 readonly amount: u128;1214 } & Struct;1215 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';1216}12171218/** @name PalletBalancesReasons */1219export interface PalletBalancesReasons extends Enum {1220 readonly isFee: boolean;1221 readonly isMisc: boolean;1222 readonly isAll: boolean;1223 readonly type: 'Fee' | 'Misc' | 'All';1224}12251226/** @name PalletBalancesReserveData */1227export interface PalletBalancesReserveData extends Struct {1228 readonly id: U8aFixed;1229 readonly amount: u128;1230}12311232/** @name PalletCollatorSelectionCall */1233export interface PalletCollatorSelectionCall extends Enum {1234 readonly isAddInvulnerable: boolean;1235 readonly asAddInvulnerable: {1236 readonly new_: AccountId32;1237 } & Struct;1238 readonly isRemoveInvulnerable: boolean;1239 readonly asRemoveInvulnerable: {1240 readonly who: AccountId32;1241 } & Struct;1242 readonly isGetLicense: boolean;1243 readonly isOnboard: boolean;1244 readonly isOffboard: boolean;1245 readonly isReleaseLicense: boolean;1246 readonly isForceReleaseLicense: boolean;1247 readonly asForceReleaseLicense: {1248 readonly who: AccountId32;1249 } & Struct;1250 readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';1251}12521253/** @name PalletCollatorSelectionError */1254export interface PalletCollatorSelectionError extends Enum {1255 readonly isTooManyCandidates: boolean;1256 readonly isUnknown: boolean;1257 readonly isPermission: boolean;1258 readonly isAlreadyHoldingLicense: boolean;1259 readonly isNoLicense: boolean;1260 readonly isAlreadyCandidate: boolean;1261 readonly isNotCandidate: boolean;1262 readonly isTooManyInvulnerables: boolean;1263 readonly isTooFewInvulnerables: boolean;1264 readonly isAlreadyInvulnerable: boolean;1265 readonly isNotInvulnerable: boolean;1266 readonly isNoAssociatedValidatorId: boolean;1267 readonly isValidatorNotRegistered: boolean;1268 readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';1269}12701271/** @name PalletCollatorSelectionEvent */1272export interface PalletCollatorSelectionEvent extends Enum {1273 readonly isInvulnerableAdded: boolean;1274 readonly asInvulnerableAdded: {1275 readonly invulnerable: AccountId32;1276 } & Struct;1277 readonly isInvulnerableRemoved: boolean;1278 readonly asInvulnerableRemoved: {1279 readonly invulnerable: AccountId32;1280 } & Struct;1281 readonly isLicenseObtained: boolean;1282 readonly asLicenseObtained: {1283 readonly accountId: AccountId32;1284 readonly deposit: u128;1285 } & Struct;1286 readonly isLicenseReleased: boolean;1287 readonly asLicenseReleased: {1288 readonly accountId: AccountId32;1289 readonly depositReturned: u128;1290 } & Struct;1291 readonly isCandidateAdded: boolean;1292 readonly asCandidateAdded: {1293 readonly accountId: AccountId32;1294 } & Struct;1295 readonly isCandidateRemoved: boolean;1296 readonly asCandidateRemoved: {1297 readonly accountId: AccountId32;1298 } & Struct;1299 readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';1300}13011302/** @name PalletCommonError */1303export interface PalletCommonError extends Enum {1304 readonly isCollectionNotFound: boolean;1305 readonly isMustBeTokenOwner: boolean;1306 readonly isNoPermission: boolean;1307 readonly isCantDestroyNotEmptyCollection: boolean;1308 readonly isPublicMintingNotAllowed: boolean;1309 readonly isAddressNotInAllowlist: boolean;1310 readonly isCollectionNameLimitExceeded: boolean;1311 readonly isCollectionDescriptionLimitExceeded: boolean;1312 readonly isCollectionTokenPrefixLimitExceeded: boolean;1313 readonly isTotalCollectionsLimitExceeded: boolean;1314 readonly isCollectionAdminCountExceeded: boolean;1315 readonly isCollectionLimitBoundsExceeded: boolean;1316 readonly isOwnerPermissionsCantBeReverted: boolean;1317 readonly isTransferNotAllowed: boolean;1318 readonly isAccountTokenLimitExceeded: boolean;1319 readonly isCollectionTokenLimitExceeded: boolean;1320 readonly isMetadataFlagFrozen: boolean;1321 readonly isTokenNotFound: boolean;1322 readonly isTokenValueTooLow: boolean;1323 readonly isApprovedValueTooLow: boolean;1324 readonly isCantApproveMoreThanOwned: boolean;1325 readonly isAddressIsZero: boolean;1326 readonly isUnsupportedOperation: boolean;1327 readonly isNotSufficientFounds: boolean;1328 readonly isUserIsNotAllowedToNest: boolean;1329 readonly isSourceCollectionIsNotAllowedToNest: boolean;1330 readonly isCollectionFieldSizeExceeded: boolean;1331 readonly isNoSpaceForProperty: boolean;1332 readonly isPropertyLimitReached: boolean;1333 readonly isPropertyKeyIsTooLong: boolean;1334 readonly isInvalidCharacterInPropertyKey: boolean;1335 readonly isEmptyPropertyKey: boolean;1336 readonly isCollectionIsExternal: boolean;1337 readonly isCollectionIsInternal: boolean;1338 readonly isConfirmSponsorshipFail: boolean;1339 readonly isUserIsNotCollectionAdmin: boolean;1340 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';1341}13421343/** @name PalletCommonEvent */1344export interface PalletCommonEvent extends Enum {1345 readonly isCollectionCreated: boolean;1346 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1347 readonly isCollectionDestroyed: boolean;1348 readonly asCollectionDestroyed: u32;1349 readonly isItemCreated: boolean;1350 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1351 readonly isItemDestroyed: boolean;1352 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1353 readonly isTransfer: boolean;1354 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1355 readonly isApproved: boolean;1356 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1357 readonly isApprovedForAll: boolean;1358 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1359 readonly isCollectionPropertySet: boolean;1360 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1361 readonly isCollectionPropertyDeleted: boolean;1362 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1363 readonly isTokenPropertySet: boolean;1364 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1365 readonly isTokenPropertyDeleted: boolean;1366 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1367 readonly isPropertyPermissionSet: boolean;1368 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1369 readonly isAllowListAddressAdded: boolean;1370 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1371 readonly isAllowListAddressRemoved: boolean;1372 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1373 readonly isCollectionAdminAdded: boolean;1374 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1375 readonly isCollectionAdminRemoved: boolean;1376 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1377 readonly isCollectionLimitSet: boolean;1378 readonly asCollectionLimitSet: u32;1379 readonly isCollectionOwnerChanged: boolean;1380 readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1381 readonly isCollectionPermissionSet: boolean;1382 readonly asCollectionPermissionSet: u32;1383 readonly isCollectionSponsorSet: boolean;1384 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1385 readonly isSponsorshipConfirmed: boolean;1386 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1387 readonly isCollectionSponsorRemoved: boolean;1388 readonly asCollectionSponsorRemoved: u32;1389 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1390}13911392/** @name PalletConfigurationAppPromotionConfiguration */1393export interface PalletConfigurationAppPromotionConfiguration extends Struct {1394 readonly recalculationInterval: Option<u32>;1395 readonly pendingInterval: Option<u32>;1396 readonly intervalIncome: Option<Perbill>;1397 readonly maxStakersPerCalculation: Option<u8>;1398}13991400/** @name PalletConfigurationCall */1401export interface PalletConfigurationCall extends Enum {1402 readonly isSetWeightToFeeCoefficientOverride: boolean;1403 readonly asSetWeightToFeeCoefficientOverride: {1404 readonly coeff: Option<u64>;1405 } & Struct;1406 readonly isSetMinGasPriceOverride: boolean;1407 readonly asSetMinGasPriceOverride: {1408 readonly coeff: Option<u64>;1409 } & Struct;1410 readonly isSetXcmAllowedLocations: boolean;1411 readonly asSetXcmAllowedLocations: {1412 readonly locations: Option<Vec<XcmV1MultiLocation>>;1413 } & Struct;1414 readonly isSetAppPromotionConfigurationOverride: boolean;1415 readonly asSetAppPromotionConfigurationOverride: {1416 readonly configuration: PalletConfigurationAppPromotionConfiguration;1417 } & Struct;1418 readonly isSetCollatorSelectionDesiredCollators: boolean;1419 readonly asSetCollatorSelectionDesiredCollators: {1420 readonly max: Option<u32>;1421 } & Struct;1422 readonly isSetCollatorSelectionLicenseBond: boolean;1423 readonly asSetCollatorSelectionLicenseBond: {1424 readonly amount: Option<u128>;1425 } & Struct;1426 readonly isSetCollatorSelectionKickThreshold: boolean;1427 readonly asSetCollatorSelectionKickThreshold: {1428 readonly threshold: Option<u32>;1429 } & Struct;1430 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';1431}14321433/** @name PalletConfigurationError */1434export interface PalletConfigurationError extends Enum {1435 readonly isInconsistentConfiguration: boolean;1436 readonly type: 'InconsistentConfiguration';1437}14381439/** @name PalletConfigurationEvent */1440export interface PalletConfigurationEvent extends Enum {1441 readonly isNewDesiredCollators: boolean;1442 readonly asNewDesiredCollators: {1443 readonly desiredCollators: Option<u32>;1444 } & Struct;1445 readonly isNewCollatorLicenseBond: boolean;1446 readonly asNewCollatorLicenseBond: {1447 readonly bondCost: Option<u128>;1448 } & Struct;1449 readonly isNewCollatorKickThreshold: boolean;1450 readonly asNewCollatorKickThreshold: {1451 readonly lengthInBlocks: Option<u32>;1452 } & Struct;1453 readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';1454}14551456/** @name PalletEthereumCall */1457export interface PalletEthereumCall extends Enum {1458 readonly isTransact: boolean;1459 readonly asTransact: {1460 readonly transaction: EthereumTransactionTransactionV2;1461 } & Struct;1462 readonly type: 'Transact';1463}14641465/** @name PalletEthereumError */1466export interface PalletEthereumError extends Enum {1467 readonly isInvalidSignature: boolean;1468 readonly isPreLogExists: boolean;1469 readonly type: 'InvalidSignature' | 'PreLogExists';1470}14711472/** @name PalletEthereumEvent */1473export interface PalletEthereumEvent extends Enum {1474 readonly isExecuted: boolean;1475 readonly asExecuted: {1476 readonly from: H160;1477 readonly to: H160;1478 readonly transactionHash: H256;1479 readonly exitReason: EvmCoreErrorExitReason;1480 } & Struct;1481 readonly type: 'Executed';1482}14831484/** @name PalletEthereumFakeTransactionFinalizer */1485export interface PalletEthereumFakeTransactionFinalizer extends Null {}14861487/** @name PalletEvmAccountBasicCrossAccountIdRepr */1488export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1489 readonly isSubstrate: boolean;1490 readonly asSubstrate: AccountId32;1491 readonly isEthereum: boolean;1492 readonly asEthereum: H160;1493 readonly type: 'Substrate' | 'Ethereum';1494}14951496/** @name PalletEvmCall */1497export interface PalletEvmCall extends Enum {1498 readonly isWithdraw: boolean;1499 readonly asWithdraw: {1500 readonly address: H160;1501 readonly value: u128;1502 } & Struct;1503 readonly isCall: boolean;1504 readonly asCall: {1505 readonly source: H160;1506 readonly target: H160;1507 readonly input: Bytes;1508 readonly value: U256;1509 readonly gasLimit: u64;1510 readonly maxFeePerGas: U256;1511 readonly maxPriorityFeePerGas: Option<U256>;1512 readonly nonce: Option<U256>;1513 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1514 } & Struct;1515 readonly isCreate: boolean;1516 readonly asCreate: {1517 readonly source: H160;1518 readonly init: Bytes;1519 readonly value: U256;1520 readonly gasLimit: u64;1521 readonly maxFeePerGas: U256;1522 readonly maxPriorityFeePerGas: Option<U256>;1523 readonly nonce: Option<U256>;1524 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1525 } & Struct;1526 readonly isCreate2: boolean;1527 readonly asCreate2: {1528 readonly source: H160;1529 readonly init: Bytes;1530 readonly salt: H256;1531 readonly value: U256;1532 readonly gasLimit: u64;1533 readonly maxFeePerGas: U256;1534 readonly maxPriorityFeePerGas: Option<U256>;1535 readonly nonce: Option<U256>;1536 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1537 } & Struct;1538 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1539}15401541/** @name PalletEvmCoderSubstrateError */1542export interface PalletEvmCoderSubstrateError extends Enum {1543 readonly isOutOfGas: boolean;1544 readonly isOutOfFund: boolean;1545 readonly type: 'OutOfGas' | 'OutOfFund';1546}15471548/** @name PalletEvmContractHelpersError */1549export interface PalletEvmContractHelpersError extends Enum {1550 readonly isNoPermission: boolean;1551 readonly isNoPendingSponsor: boolean;1552 readonly isTooManyMethodsHaveSponsoredLimit: boolean;1553 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';1554}15551556/** @name PalletEvmContractHelpersEvent */1557export interface PalletEvmContractHelpersEvent extends Enum {1558 readonly isContractSponsorSet: boolean;1559 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1560 readonly isContractSponsorshipConfirmed: boolean;1561 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1562 readonly isContractSponsorRemoved: boolean;1563 readonly asContractSponsorRemoved: H160;1564 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1565}15661567/** @name PalletEvmContractHelpersSponsoringModeT */1568export interface PalletEvmContractHelpersSponsoringModeT extends Enum {1569 readonly isDisabled: boolean;1570 readonly isAllowlisted: boolean;1571 readonly isGenerous: boolean;1572 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';1573}15741575/** @name PalletEvmError */1576export interface PalletEvmError extends Enum {1577 readonly isBalanceLow: boolean;1578 readonly isFeeOverflow: boolean;1579 readonly isPaymentOverflow: boolean;1580 readonly isWithdrawFailed: boolean;1581 readonly isGasPriceTooLow: boolean;1582 readonly isInvalidNonce: boolean;1583 readonly isGasLimitTooLow: boolean;1584 readonly isGasLimitTooHigh: boolean;1585 readonly isUndefined: boolean;1586 readonly isReentrancy: boolean;1587 readonly isTransactionMustComeFromEOA: boolean;1588 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';1589}15901591/** @name PalletEvmEvent */1592export interface PalletEvmEvent extends Enum {1593 readonly isLog: boolean;1594 readonly asLog: {1595 readonly log: EthereumLog;1596 } & Struct;1597 readonly isCreated: boolean;1598 readonly asCreated: {1599 readonly address: H160;1600 } & Struct;1601 readonly isCreatedFailed: boolean;1602 readonly asCreatedFailed: {1603 readonly address: H160;1604 } & Struct;1605 readonly isExecuted: boolean;1606 readonly asExecuted: {1607 readonly address: H160;1608 } & Struct;1609 readonly isExecutedFailed: boolean;1610 readonly asExecutedFailed: {1611 readonly address: H160;1612 } & Struct;1613 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1614}16151616/** @name PalletEvmMigrationCall */1617export interface PalletEvmMigrationCall extends Enum {1618 readonly isBegin: boolean;1619 readonly asBegin: {1620 readonly address: H160;1621 } & Struct;1622 readonly isSetData: boolean;1623 readonly asSetData: {1624 readonly address: H160;1625 readonly data: Vec<ITuple<[H256, H256]>>;1626 } & Struct;1627 readonly isFinish: boolean;1628 readonly asFinish: {1629 readonly address: H160;1630 readonly code: Bytes;1631 } & Struct;1632 readonly isInsertEthLogs: boolean;1633 readonly asInsertEthLogs: {1634 readonly logs: Vec<EthereumLog>;1635 } & Struct;1636 readonly isInsertEvents: boolean;1637 readonly asInsertEvents: {1638 readonly events: Vec<Bytes>;1639 } & Struct;1640 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';1641}16421643/** @name PalletEvmMigrationError */1644export interface PalletEvmMigrationError extends Enum {1645 readonly isAccountNotEmpty: boolean;1646 readonly isAccountIsNotMigrating: boolean;1647 readonly isBadEvent: boolean;1648 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';1649}16501651/** @name PalletEvmMigrationEvent */1652export interface PalletEvmMigrationEvent extends Enum {1653 readonly isTestEvent: boolean;1654 readonly type: 'TestEvent';1655}16561657/** @name PalletForeignAssetsAssetIds */1658export interface PalletForeignAssetsAssetIds extends Enum {1659 readonly isForeignAssetId: boolean;1660 readonly asForeignAssetId: u32;1661 readonly isNativeAssetId: boolean;1662 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;1663 readonly type: 'ForeignAssetId' | 'NativeAssetId';1664}16651666/** @name PalletForeignAssetsModuleAssetMetadata */1667export interface PalletForeignAssetsModuleAssetMetadata extends Struct {1668 readonly name: Bytes;1669 readonly symbol: Bytes;1670 readonly decimals: u8;1671 readonly minimalBalance: u128;1672}16731674/** @name PalletForeignAssetsModuleCall */1675export interface PalletForeignAssetsModuleCall extends Enum {1676 readonly isRegisterForeignAsset: boolean;1677 readonly asRegisterForeignAsset: {1678 readonly owner: AccountId32;1679 readonly location: XcmVersionedMultiLocation;1680 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1681 } & Struct;1682 readonly isUpdateForeignAsset: boolean;1683 readonly asUpdateForeignAsset: {1684 readonly foreignAssetId: u32;1685 readonly location: XcmVersionedMultiLocation;1686 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1687 } & Struct;1688 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';1689}16901691/** @name PalletForeignAssetsModuleError */1692export interface PalletForeignAssetsModuleError extends Enum {1693 readonly isBadLocation: boolean;1694 readonly isMultiLocationExisted: boolean;1695 readonly isAssetIdNotExists: boolean;1696 readonly isAssetIdExisted: boolean;1697 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';1698}16991700/** @name PalletForeignAssetsModuleEvent */1701export interface PalletForeignAssetsModuleEvent extends Enum {1702 readonly isForeignAssetRegistered: boolean;1703 readonly asForeignAssetRegistered: {1704 readonly assetId: u32;1705 readonly assetAddress: XcmV1MultiLocation;1706 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1707 } & Struct;1708 readonly isForeignAssetUpdated: boolean;1709 readonly asForeignAssetUpdated: {1710 readonly assetId: u32;1711 readonly assetAddress: XcmV1MultiLocation;1712 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1713 } & Struct;1714 readonly isAssetRegistered: boolean;1715 readonly asAssetRegistered: {1716 readonly assetId: PalletForeignAssetsAssetIds;1717 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1718 } & Struct;1719 readonly isAssetUpdated: boolean;1720 readonly asAssetUpdated: {1721 readonly assetId: PalletForeignAssetsAssetIds;1722 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1723 } & Struct;1724 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1725}17261727/** @name PalletForeignAssetsNativeCurrency */1728export interface PalletForeignAssetsNativeCurrency extends Enum {1729 readonly isHere: boolean;1730 readonly isParent: boolean;1731 readonly type: 'Here' | 'Parent';1732}17331734/** @name PalletFungibleError */1735export interface PalletFungibleError extends Enum {1736 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;1737 readonly isFungibleItemsHaveNoId: boolean;1738 readonly isFungibleItemsDontHaveData: boolean;1739 readonly isFungibleDisallowsNesting: boolean;1740 readonly isSettingPropertiesNotAllowed: boolean;1741 readonly isSettingAllowanceForAllNotAllowed: boolean;1742 readonly isFungibleTokensAreAlwaysValid: boolean;1743 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';1744}17451746/** @name PalletIdentityBitFlags */1747export interface PalletIdentityBitFlags extends Struct {1748 readonly _bitLength: 64;1749 readonly Display: 1;1750 readonly Legal: 2;1751 readonly Web: 4;1752 readonly Riot: 8;1753 readonly Email: 16;1754 readonly PgpFingerprint: 32;1755 readonly Image: 64;1756 readonly Twitter: 128;1757}17581759/** @name PalletIdentityCall */1760export interface PalletIdentityCall extends Enum {1761 readonly isAddRegistrar: boolean;1762 readonly asAddRegistrar: {1763 readonly account: MultiAddress;1764 } & Struct;1765 readonly isSetIdentity: boolean;1766 readonly asSetIdentity: {1767 readonly info: PalletIdentityIdentityInfo;1768 } & Struct;1769 readonly isSetSubs: boolean;1770 readonly asSetSubs: {1771 readonly subs: Vec<ITuple<[AccountId32, Data]>>;1772 } & Struct;1773 readonly isClearIdentity: boolean;1774 readonly isRequestJudgement: boolean;1775 readonly asRequestJudgement: {1776 readonly regIndex: Compact<u32>;1777 readonly maxFee: Compact<u128>;1778 } & Struct;1779 readonly isCancelRequest: boolean;1780 readonly asCancelRequest: {1781 readonly regIndex: u32;1782 } & Struct;1783 readonly isSetFee: boolean;1784 readonly asSetFee: {1785 readonly index: Compact<u32>;1786 readonly fee: Compact<u128>;1787 } & Struct;1788 readonly isSetAccountId: boolean;1789 readonly asSetAccountId: {1790 readonly index: Compact<u32>;1791 readonly new_: MultiAddress;1792 } & Struct;1793 readonly isSetFields: boolean;1794 readonly asSetFields: {1795 readonly index: Compact<u32>;1796 readonly fields: PalletIdentityBitFlags;1797 } & Struct;1798 readonly isProvideJudgement: boolean;1799 readonly asProvideJudgement: {1800 readonly regIndex: Compact<u32>;1801 readonly target: MultiAddress;1802 readonly judgement: PalletIdentityJudgement;1803 readonly identity: H256;1804 } & Struct;1805 readonly isKillIdentity: boolean;1806 readonly asKillIdentity: {1807 readonly target: MultiAddress;1808 } & Struct;1809 readonly isAddSub: boolean;1810 readonly asAddSub: {1811 readonly sub: MultiAddress;1812 readonly data: Data;1813 } & Struct;1814 readonly isRenameSub: boolean;1815 readonly asRenameSub: {1816 readonly sub: MultiAddress;1817 readonly data: Data;1818 } & Struct;1819 readonly isRemoveSub: boolean;1820 readonly asRemoveSub: {1821 readonly sub: MultiAddress;1822 } & Struct;1823 readonly isQuitSub: boolean;1824 readonly isForceInsertIdentities: boolean;1825 readonly asForceInsertIdentities: {1826 readonly identities: Vec<ITuple<[AccountId32, PalletIdentityRegistration]>>;1827 } & Struct;1828 readonly isForceRemoveIdentities: boolean;1829 readonly asForceRemoveIdentities: {1830 readonly identities: Vec<AccountId32>;1831 } & Struct;1832 readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities';1833}18341835/** @name PalletIdentityError */1836export interface PalletIdentityError extends Enum {1837 readonly isTooManySubAccounts: boolean;1838 readonly isNotFound: boolean;1839 readonly isNotNamed: boolean;1840 readonly isEmptyIndex: boolean;1841 readonly isFeeChanged: boolean;1842 readonly isNoIdentity: boolean;1843 readonly isStickyJudgement: boolean;1844 readonly isJudgementGiven: boolean;1845 readonly isInvalidJudgement: boolean;1846 readonly isInvalidIndex: boolean;1847 readonly isInvalidTarget: boolean;1848 readonly isTooManyFields: boolean;1849 readonly isTooManyRegistrars: boolean;1850 readonly isAlreadyClaimed: boolean;1851 readonly isNotSub: boolean;1852 readonly isNotOwned: boolean;1853 readonly isJudgementForDifferentIdentity: boolean;1854 readonly isJudgementPaymentFailed: boolean;1855 readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';1856}18571858/** @name PalletIdentityEvent */1859export interface PalletIdentityEvent extends Enum {1860 readonly isIdentitySet: boolean;1861 readonly asIdentitySet: {1862 readonly who: AccountId32;1863 } & Struct;1864 readonly isIdentityCleared: boolean;1865 readonly asIdentityCleared: {1866 readonly who: AccountId32;1867 readonly deposit: u128;1868 } & Struct;1869 readonly isIdentityKilled: boolean;1870 readonly asIdentityKilled: {1871 readonly who: AccountId32;1872 readonly deposit: u128;1873 } & Struct;1874 readonly isIdentitiesInserted: boolean;1875 readonly asIdentitiesInserted: {1876 readonly amount: u32;1877 } & Struct;1878 readonly isIdentitiesRemoved: boolean;1879 readonly asIdentitiesRemoved: {1880 readonly amount: u32;1881 } & Struct;1882 readonly isJudgementRequested: boolean;1883 readonly asJudgementRequested: {1884 readonly who: AccountId32;1885 readonly registrarIndex: u32;1886 } & Struct;1887 readonly isJudgementUnrequested: boolean;1888 readonly asJudgementUnrequested: {1889 readonly who: AccountId32;1890 readonly registrarIndex: u32;1891 } & Struct;1892 readonly isJudgementGiven: boolean;1893 readonly asJudgementGiven: {1894 readonly target: AccountId32;1895 readonly registrarIndex: u32;1896 } & Struct;1897 readonly isRegistrarAdded: boolean;1898 readonly asRegistrarAdded: {1899 readonly registrarIndex: u32;1900 } & Struct;1901 readonly isSubIdentityAdded: boolean;1902 readonly asSubIdentityAdded: {1903 readonly sub: AccountId32;1904 readonly main: AccountId32;1905 readonly deposit: u128;1906 } & Struct;1907 readonly isSubIdentityRemoved: boolean;1908 readonly asSubIdentityRemoved: {1909 readonly sub: AccountId32;1910 readonly main: AccountId32;1911 readonly deposit: u128;1912 } & Struct;1913 readonly isSubIdentityRevoked: boolean;1914 readonly asSubIdentityRevoked: {1915 readonly sub: AccountId32;1916 readonly main: AccountId32;1917 readonly deposit: u128;1918 } & Struct;1919 readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked';1920}19211922/** @name PalletIdentityIdentityField */1923export interface PalletIdentityIdentityField extends Enum {1924 readonly isDisplay: boolean;1925 readonly isLegal: boolean;1926 readonly isWeb: boolean;1927 readonly isRiot: boolean;1928 readonly isEmail: boolean;1929 readonly isPgpFingerprint: boolean;1930 readonly isImage: boolean;1931 readonly isTwitter: boolean;1932 readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';1933}19341935/** @name PalletIdentityIdentityInfo */1936export interface PalletIdentityIdentityInfo extends Struct {1937 readonly additional: Vec<ITuple<[Data, Data]>>;1938 readonly display: Data;1939 readonly legal: Data;1940 readonly web: Data;1941 readonly riot: Data;1942 readonly email: Data;1943 readonly pgpFingerprint: Option<U8aFixed>;1944 readonly image: Data;1945 readonly twitter: Data;1946}19471948/** @name PalletIdentityJudgement */1949export interface PalletIdentityJudgement extends Enum {1950 readonly isUnknown: boolean;1951 readonly isFeePaid: boolean;1952 readonly asFeePaid: u128;1953 readonly isReasonable: boolean;1954 readonly isKnownGood: boolean;1955 readonly isOutOfDate: boolean;1956 readonly isLowQuality: boolean;1957 readonly isErroneous: boolean;1958 readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';1959}19601961/** @name PalletIdentityRegistrarInfo */1962export interface PalletIdentityRegistrarInfo extends Struct {1963 readonly account: AccountId32;1964 readonly fee: u128;1965 readonly fields: PalletIdentityBitFlags;1966}19671968/** @name PalletIdentityRegistration */1969export interface PalletIdentityRegistration extends Struct {1970 readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;1971 readonly deposit: u128;1972 readonly info: PalletIdentityIdentityInfo;1973}19741975/** @name PalletInflationCall */1976export interface PalletInflationCall extends Enum {1977 readonly isStartInflation: boolean;1978 readonly asStartInflation: {1979 readonly inflationStartRelayBlock: u32;1980 } & Struct;1981 readonly type: 'StartInflation';1982}19831984/** @name PalletMaintenanceCall */1985export interface PalletMaintenanceCall extends Enum {1986 readonly isEnable: boolean;1987 readonly isDisable: boolean;1988 readonly type: 'Enable' | 'Disable';1989}19901991/** @name PalletMaintenanceError */1992export interface PalletMaintenanceError extends Null {}19931994/** @name PalletMaintenanceEvent */1995export interface PalletMaintenanceEvent extends Enum {1996 readonly isMaintenanceEnabled: boolean;1997 readonly isMaintenanceDisabled: boolean;1998 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1999}20002001/** @name PalletNonfungibleError */2002export interface PalletNonfungibleError extends Enum {2003 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2004 readonly isNonfungibleItemsHaveNoAmount: boolean;2005 readonly isCantBurnNftWithChildren: boolean;2006 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';2007}20082009/** @name PalletNonfungibleItemData */2010export interface PalletNonfungibleItemData extends Struct {2011 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2012}20132014/** @name PalletRefungibleError */2015export interface PalletRefungibleError extends Enum {2016 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;2017 readonly isWrongRefungiblePieces: boolean;2018 readonly isRepartitionWhileNotOwningAllPieces: boolean;2019 readonly isRefungibleDisallowsNesting: boolean;2020 readonly isSettingPropertiesNotAllowed: boolean;2021 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2022}20232024/** @name PalletRmrkCoreCall */2025export interface PalletRmrkCoreCall extends Enum {2026 readonly isCreateCollection: boolean;2027 readonly asCreateCollection: {2028 readonly metadata: Bytes;2029 readonly max: Option<u32>;2030 readonly symbol: Bytes;2031 } & Struct;2032 readonly isDestroyCollection: boolean;2033 readonly asDestroyCollection: {2034 readonly collectionId: u32;2035 } & Struct;2036 readonly isChangeCollectionIssuer: boolean;2037 readonly asChangeCollectionIssuer: {2038 readonly collectionId: u32;2039 readonly newIssuer: MultiAddress;2040 } & Struct;2041 readonly isLockCollection: boolean;2042 readonly asLockCollection: {2043 readonly collectionId: u32;2044 } & Struct;2045 readonly isMintNft: boolean;2046 readonly asMintNft: {2047 readonly owner: Option<AccountId32>;2048 readonly collectionId: u32;2049 readonly recipient: Option<AccountId32>;2050 readonly royaltyAmount: Option<Permill>;2051 readonly metadata: Bytes;2052 readonly transferable: bool;2053 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;2054 } & Struct;2055 readonly isBurnNft: boolean;2056 readonly asBurnNft: {2057 readonly collectionId: u32;2058 readonly nftId: u32;2059 readonly maxBurns: u32;2060 } & Struct;2061 readonly isSend: boolean;2062 readonly asSend: {2063 readonly rmrkCollectionId: u32;2064 readonly rmrkNftId: u32;2065 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2066 } & Struct;2067 readonly isAcceptNft: boolean;2068 readonly asAcceptNft: {2069 readonly rmrkCollectionId: u32;2070 readonly rmrkNftId: u32;2071 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2072 } & Struct;2073 readonly isRejectNft: boolean;2074 readonly asRejectNft: {2075 readonly rmrkCollectionId: u32;2076 readonly rmrkNftId: u32;2077 } & Struct;2078 readonly isAcceptResource: boolean;2079 readonly asAcceptResource: {2080 readonly rmrkCollectionId: u32;2081 readonly rmrkNftId: u32;2082 readonly resourceId: u32;2083 } & Struct;2084 readonly isAcceptResourceRemoval: boolean;2085 readonly asAcceptResourceRemoval: {2086 readonly rmrkCollectionId: u32;2087 readonly rmrkNftId: u32;2088 readonly resourceId: u32;2089 } & Struct;2090 readonly isSetProperty: boolean;2091 readonly asSetProperty: {2092 readonly rmrkCollectionId: Compact<u32>;2093 readonly maybeNftId: Option<u32>;2094 readonly key: Bytes;2095 readonly value: Bytes;2096 } & Struct;2097 readonly isSetPriority: boolean;2098 readonly asSetPriority: {2099 readonly rmrkCollectionId: u32;2100 readonly rmrkNftId: u32;2101 readonly priorities: Vec<u32>;2102 } & Struct;2103 readonly isAddBasicResource: boolean;2104 readonly asAddBasicResource: {2105 readonly rmrkCollectionId: u32;2106 readonly nftId: u32;2107 readonly resource: RmrkTraitsResourceBasicResource;2108 } & Struct;2109 readonly isAddComposableResource: boolean;2110 readonly asAddComposableResource: {2111 readonly rmrkCollectionId: u32;2112 readonly nftId: u32;2113 readonly resource: RmrkTraitsResourceComposableResource;2114 } & Struct;2115 readonly isAddSlotResource: boolean;2116 readonly asAddSlotResource: {2117 readonly rmrkCollectionId: u32;2118 readonly nftId: u32;2119 readonly resource: RmrkTraitsResourceSlotResource;2120 } & Struct;2121 readonly isRemoveResource: boolean;2122 readonly asRemoveResource: {2123 readonly rmrkCollectionId: u32;2124 readonly nftId: u32;2125 readonly resourceId: u32;2126 } & Struct;2127 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2128}21292130/** @name PalletRmrkCoreError */2131export interface PalletRmrkCoreError extends Enum {2132 readonly isCorruptedCollectionType: boolean;2133 readonly isRmrkPropertyKeyIsTooLong: boolean;2134 readonly isRmrkPropertyValueIsTooLong: boolean;2135 readonly isRmrkPropertyIsNotFound: boolean;2136 readonly isUnableToDecodeRmrkData: boolean;2137 readonly isCollectionNotEmpty: boolean;2138 readonly isNoAvailableCollectionId: boolean;2139 readonly isNoAvailableNftId: boolean;2140 readonly isCollectionUnknown: boolean;2141 readonly isNoPermission: boolean;2142 readonly isNonTransferable: boolean;2143 readonly isCollectionFullOrLocked: boolean;2144 readonly isResourceDoesntExist: boolean;2145 readonly isCannotSendToDescendentOrSelf: boolean;2146 readonly isCannotAcceptNonOwnedNft: boolean;2147 readonly isCannotRejectNonOwnedNft: boolean;2148 readonly isCannotRejectNonPendingNft: boolean;2149 readonly isResourceNotPending: boolean;2150 readonly isNoAvailableResourceId: boolean;2151 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';2152}21532154/** @name PalletRmrkCoreEvent */2155export interface PalletRmrkCoreEvent extends Enum {2156 readonly isCollectionCreated: boolean;2157 readonly asCollectionCreated: {2158 readonly issuer: AccountId32;2159 readonly collectionId: u32;2160 } & Struct;2161 readonly isCollectionDestroyed: boolean;2162 readonly asCollectionDestroyed: {2163 readonly issuer: AccountId32;2164 readonly collectionId: u32;2165 } & Struct;2166 readonly isIssuerChanged: boolean;2167 readonly asIssuerChanged: {2168 readonly oldIssuer: AccountId32;2169 readonly newIssuer: AccountId32;2170 readonly collectionId: u32;2171 } & Struct;2172 readonly isCollectionLocked: boolean;2173 readonly asCollectionLocked: {2174 readonly issuer: AccountId32;2175 readonly collectionId: u32;2176 } & Struct;2177 readonly isNftMinted: boolean;2178 readonly asNftMinted: {2179 readonly owner: AccountId32;2180 readonly collectionId: u32;2181 readonly nftId: u32;2182 } & Struct;2183 readonly isNftBurned: boolean;2184 readonly asNftBurned: {2185 readonly owner: AccountId32;2186 readonly nftId: u32;2187 } & Struct;2188 readonly isNftSent: boolean;2189 readonly asNftSent: {2190 readonly sender: AccountId32;2191 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;2192 readonly collectionId: u32;2193 readonly nftId: u32;2194 readonly approvalRequired: bool;2195 } & Struct;2196 readonly isNftAccepted: boolean;2197 readonly asNftAccepted: {2198 readonly sender: AccountId32;2199 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;2200 readonly collectionId: u32;2201 readonly nftId: u32;2202 } & Struct;2203 readonly isNftRejected: boolean;2204 readonly asNftRejected: {2205 readonly sender: AccountId32;2206 readonly collectionId: u32;2207 readonly nftId: u32;2208 } & Struct;2209 readonly isPropertySet: boolean;2210 readonly asPropertySet: {2211 readonly collectionId: u32;2212 readonly maybeNftId: Option<u32>;2213 readonly key: Bytes;2214 readonly value: Bytes;2215 } & Struct;2216 readonly isResourceAdded: boolean;2217 readonly asResourceAdded: {2218 readonly nftId: u32;2219 readonly resourceId: u32;2220 } & Struct;2221 readonly isResourceRemoval: boolean;2222 readonly asResourceRemoval: {2223 readonly nftId: u32;2224 readonly resourceId: u32;2225 } & Struct;2226 readonly isResourceAccepted: boolean;2227 readonly asResourceAccepted: {2228 readonly nftId: u32;2229 readonly resourceId: u32;2230 } & Struct;2231 readonly isResourceRemovalAccepted: boolean;2232 readonly asResourceRemovalAccepted: {2233 readonly nftId: u32;2234 readonly resourceId: u32;2235 } & Struct;2236 readonly isPrioritySet: boolean;2237 readonly asPrioritySet: {2238 readonly collectionId: u32;2239 readonly nftId: u32;2240 } & Struct;2241 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';2242}22432244/** @name PalletRmrkEquipCall */2245export interface PalletRmrkEquipCall extends Enum {2246 readonly isCreateBase: boolean;2247 readonly asCreateBase: {2248 readonly baseType: Bytes;2249 readonly symbol: Bytes;2250 readonly parts: Vec<RmrkTraitsPartPartType>;2251 } & Struct;2252 readonly isThemeAdd: boolean;2253 readonly asThemeAdd: {2254 readonly baseId: u32;2255 readonly theme: RmrkTraitsTheme;2256 } & Struct;2257 readonly isEquippable: boolean;2258 readonly asEquippable: {2259 readonly baseId: u32;2260 readonly slotId: u32;2261 readonly equippables: RmrkTraitsPartEquippableList;2262 } & Struct;2263 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2264}22652266/** @name PalletRmrkEquipError */2267export interface PalletRmrkEquipError extends Enum {2268 readonly isPermissionError: boolean;2269 readonly isNoAvailableBaseId: boolean;2270 readonly isNoAvailablePartId: boolean;2271 readonly isBaseDoesntExist: boolean;2272 readonly isNeedsDefaultThemeFirst: boolean;2273 readonly isPartDoesntExist: boolean;2274 readonly isNoEquippableOnFixedPart: boolean;2275 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';2276}22772278/** @name PalletRmrkEquipEvent */2279export interface PalletRmrkEquipEvent extends Enum {2280 readonly isBaseCreated: boolean;2281 readonly asBaseCreated: {2282 readonly issuer: AccountId32;2283 readonly baseId: u32;2284 } & Struct;2285 readonly isEquippablesUpdated: boolean;2286 readonly asEquippablesUpdated: {2287 readonly baseId: u32;2288 readonly slotId: u32;2289 } & Struct;2290 readonly type: 'BaseCreated' | 'EquippablesUpdated';2291}22922293/** @name PalletSessionCall */2294export interface PalletSessionCall extends Enum {2295 readonly isSetKeys: boolean;2296 readonly asSetKeys: {2297 readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;2298 readonly proof: Bytes;2299 } & Struct;2300 readonly isPurgeKeys: boolean;2301 readonly type: 'SetKeys' | 'PurgeKeys';2302}23032304/** @name PalletSessionError */2305export interface PalletSessionError extends Enum {2306 readonly isInvalidProof: boolean;2307 readonly isNoAssociatedValidatorId: boolean;2308 readonly isDuplicatedKey: boolean;2309 readonly isNoKeys: boolean;2310 readonly isNoAccount: boolean;2311 readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';2312}23132314/** @name PalletSessionEvent */2315export interface PalletSessionEvent extends Enum {2316 readonly isNewSession: boolean;2317 readonly asNewSession: {2318 readonly sessionIndex: u32;2319 } & Struct;2320 readonly type: 'NewSession';2321}23222323/** @name PalletStructureCall */2324export interface PalletStructureCall extends Null {}23252326/** @name PalletStructureError */2327export interface PalletStructureError extends Enum {2328 readonly isOuroborosDetected: boolean;2329 readonly isDepthLimit: boolean;2330 readonly isBreadthLimit: boolean;2331 readonly isTokenNotFound: boolean;2332 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';2333}23342335/** @name PalletStructureEvent */2336export interface PalletStructureEvent extends Enum {2337 readonly isExecuted: boolean;2338 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2339 readonly type: 'Executed';2340}23412342/** @name PalletSudoCall */2343export interface PalletSudoCall extends Enum {2344 readonly isSudo: boolean;2345 readonly asSudo: {2346 readonly call: Call;2347 } & Struct;2348 readonly isSudoUncheckedWeight: boolean;2349 readonly asSudoUncheckedWeight: {2350 readonly call: Call;2351 readonly weight: SpWeightsWeightV2Weight;2352 } & Struct;2353 readonly isSetKey: boolean;2354 readonly asSetKey: {2355 readonly new_: MultiAddress;2356 } & Struct;2357 readonly isSudoAs: boolean;2358 readonly asSudoAs: {2359 readonly who: MultiAddress;2360 readonly call: Call;2361 } & Struct;2362 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';2363}23642365/** @name PalletSudoError */2366export interface PalletSudoError extends Enum {2367 readonly isRequireSudo: boolean;2368 readonly type: 'RequireSudo';2369}23702371/** @name PalletSudoEvent */2372export interface PalletSudoEvent extends Enum {2373 readonly isSudid: boolean;2374 readonly asSudid: {2375 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;2376 } & Struct;2377 readonly isKeyChanged: boolean;2378 readonly asKeyChanged: {2379 readonly oldSudoer: Option<AccountId32>;2380 } & Struct;2381 readonly isSudoAsDone: boolean;2382 readonly asSudoAsDone: {2383 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;2384 } & Struct;2385 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';2386}23872388/** @name PalletTemplateTransactionPaymentCall */2389export interface PalletTemplateTransactionPaymentCall extends Null {}23902391/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */2392export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}23932394/** @name PalletTestUtilsCall */2395export interface PalletTestUtilsCall extends Enum {2396 readonly isEnable: boolean;2397 readonly isSetTestValue: boolean;2398 readonly asSetTestValue: {2399 readonly value: u32;2400 } & Struct;2401 readonly isSetTestValueAndRollback: boolean;2402 readonly asSetTestValueAndRollback: {2403 readonly value: u32;2404 } & Struct;2405 readonly isIncTestValue: boolean;2406 readonly isJustTakeFee: boolean;2407 readonly isBatchAll: boolean;2408 readonly asBatchAll: {2409 readonly calls: Vec<Call>;2410 } & Struct;2411 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';2412}24132414/** @name PalletTestUtilsError */2415export interface PalletTestUtilsError extends Enum {2416 readonly isTestPalletDisabled: boolean;2417 readonly isTriggerRollback: boolean;2418 readonly type: 'TestPalletDisabled' | 'TriggerRollback';2419}24202421/** @name PalletTestUtilsEvent */2422export interface PalletTestUtilsEvent extends Enum {2423 readonly isValueIsSet: boolean;2424 readonly isShouldRollback: boolean;2425 readonly isBatchCompleted: boolean;2426 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';2427}24282429/** @name PalletTimestampCall */2430export interface PalletTimestampCall extends Enum {2431 readonly isSet: boolean;2432 readonly asSet: {2433 readonly now: Compact<u64>;2434 } & Struct;2435 readonly type: 'Set';2436}24372438/** @name PalletTransactionPaymentEvent */2439export interface PalletTransactionPaymentEvent extends Enum {2440 readonly isTransactionFeePaid: boolean;2441 readonly asTransactionFeePaid: {2442 readonly who: AccountId32;2443 readonly actualFee: u128;2444 readonly tip: u128;2445 } & Struct;2446 readonly type: 'TransactionFeePaid';2447}24482449/** @name PalletTransactionPaymentReleases */2450export interface PalletTransactionPaymentReleases extends Enum {2451 readonly isV1Ancient: boolean;2452 readonly isV2: boolean;2453 readonly type: 'V1Ancient' | 'V2';2454}24552456/** @name PalletTreasuryCall */2457export interface PalletTreasuryCall extends Enum {2458 readonly isProposeSpend: boolean;2459 readonly asProposeSpend: {2460 readonly value: Compact<u128>;2461 readonly beneficiary: MultiAddress;2462 } & Struct;2463 readonly isRejectProposal: boolean;2464 readonly asRejectProposal: {2465 readonly proposalId: Compact<u32>;2466 } & Struct;2467 readonly isApproveProposal: boolean;2468 readonly asApproveProposal: {2469 readonly proposalId: Compact<u32>;2470 } & Struct;2471 readonly isSpend: boolean;2472 readonly asSpend: {2473 readonly amount: Compact<u128>;2474 readonly beneficiary: MultiAddress;2475 } & Struct;2476 readonly isRemoveApproval: boolean;2477 readonly asRemoveApproval: {2478 readonly proposalId: Compact<u32>;2479 } & Struct;2480 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';2481}24822483/** @name PalletTreasuryError */2484export interface PalletTreasuryError extends Enum {2485 readonly isInsufficientProposersBalance: boolean;2486 readonly isInvalidIndex: boolean;2487 readonly isTooManyApprovals: boolean;2488 readonly isInsufficientPermission: boolean;2489 readonly isProposalNotApproved: boolean;2490 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';2491}24922493/** @name PalletTreasuryEvent */2494export interface PalletTreasuryEvent extends Enum {2495 readonly isProposed: boolean;2496 readonly asProposed: {2497 readonly proposalIndex: u32;2498 } & Struct;2499 readonly isSpending: boolean;2500 readonly asSpending: {2501 readonly budgetRemaining: u128;2502 } & Struct;2503 readonly isAwarded: boolean;2504 readonly asAwarded: {2505 readonly proposalIndex: u32;2506 readonly award: u128;2507 readonly account: AccountId32;2508 } & Struct;2509 readonly isRejected: boolean;2510 readonly asRejected: {2511 readonly proposalIndex: u32;2512 readonly slashed: u128;2513 } & Struct;2514 readonly isBurnt: boolean;2515 readonly asBurnt: {2516 readonly burntFunds: u128;2517 } & Struct;2518 readonly isRollover: boolean;2519 readonly asRollover: {2520 readonly rolloverBalance: u128;2521 } & Struct;2522 readonly isDeposit: boolean;2523 readonly asDeposit: {2524 readonly value: u128;2525 } & Struct;2526 readonly isSpendApproved: boolean;2527 readonly asSpendApproved: {2528 readonly proposalIndex: u32;2529 readonly amount: u128;2530 readonly beneficiary: AccountId32;2531 } & Struct;2532 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';2533}25342535/** @name PalletTreasuryProposal */2536export interface PalletTreasuryProposal extends Struct {2537 readonly proposer: AccountId32;2538 readonly value: u128;2539 readonly beneficiary: AccountId32;2540 readonly bond: u128;2541}25422543/** @name PalletUniqueCall */2544export interface PalletUniqueCall extends Enum {2545 readonly isCreateCollection: boolean;2546 readonly asCreateCollection: {2547 readonly collectionName: Vec<u16>;2548 readonly collectionDescription: Vec<u16>;2549 readonly tokenPrefix: Bytes;2550 readonly mode: UpDataStructsCollectionMode;2551 } & Struct;2552 readonly isCreateCollectionEx: boolean;2553 readonly asCreateCollectionEx: {2554 readonly data: UpDataStructsCreateCollectionData;2555 } & Struct;2556 readonly isDestroyCollection: boolean;2557 readonly asDestroyCollection: {2558 readonly collectionId: u32;2559 } & Struct;2560 readonly isAddToAllowList: boolean;2561 readonly asAddToAllowList: {2562 readonly collectionId: u32;2563 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2564 } & Struct;2565 readonly isRemoveFromAllowList: boolean;2566 readonly asRemoveFromAllowList: {2567 readonly collectionId: u32;2568 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2569 } & Struct;2570 readonly isChangeCollectionOwner: boolean;2571 readonly asChangeCollectionOwner: {2572 readonly collectionId: u32;2573 readonly newOwner: AccountId32;2574 } & Struct;2575 readonly isAddCollectionAdmin: boolean;2576 readonly asAddCollectionAdmin: {2577 readonly collectionId: u32;2578 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2579 } & Struct;2580 readonly isRemoveCollectionAdmin: boolean;2581 readonly asRemoveCollectionAdmin: {2582 readonly collectionId: u32;2583 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2584 } & Struct;2585 readonly isSetCollectionSponsor: boolean;2586 readonly asSetCollectionSponsor: {2587 readonly collectionId: u32;2588 readonly newSponsor: AccountId32;2589 } & Struct;2590 readonly isConfirmSponsorship: boolean;2591 readonly asConfirmSponsorship: {2592 readonly collectionId: u32;2593 } & Struct;2594 readonly isRemoveCollectionSponsor: boolean;2595 readonly asRemoveCollectionSponsor: {2596 readonly collectionId: u32;2597 } & Struct;2598 readonly isCreateItem: boolean;2599 readonly asCreateItem: {2600 readonly collectionId: u32;2601 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2602 readonly data: UpDataStructsCreateItemData;2603 } & Struct;2604 readonly isCreateMultipleItems: boolean;2605 readonly asCreateMultipleItems: {2606 readonly collectionId: u32;2607 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2608 readonly itemsData: Vec<UpDataStructsCreateItemData>;2609 } & Struct;2610 readonly isSetCollectionProperties: boolean;2611 readonly asSetCollectionProperties: {2612 readonly collectionId: u32;2613 readonly properties: Vec<UpDataStructsProperty>;2614 } & Struct;2615 readonly isDeleteCollectionProperties: boolean;2616 readonly asDeleteCollectionProperties: {2617 readonly collectionId: u32;2618 readonly propertyKeys: Vec<Bytes>;2619 } & Struct;2620 readonly isSetTokenProperties: boolean;2621 readonly asSetTokenProperties: {2622 readonly collectionId: u32;2623 readonly tokenId: u32;2624 readonly properties: Vec<UpDataStructsProperty>;2625 } & Struct;2626 readonly isDeleteTokenProperties: boolean;2627 readonly asDeleteTokenProperties: {2628 readonly collectionId: u32;2629 readonly tokenId: u32;2630 readonly propertyKeys: Vec<Bytes>;2631 } & Struct;2632 readonly isSetTokenPropertyPermissions: boolean;2633 readonly asSetTokenPropertyPermissions: {2634 readonly collectionId: u32;2635 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2636 } & Struct;2637 readonly isCreateMultipleItemsEx: boolean;2638 readonly asCreateMultipleItemsEx: {2639 readonly collectionId: u32;2640 readonly data: UpDataStructsCreateItemExData;2641 } & Struct;2642 readonly isSetTransfersEnabledFlag: boolean;2643 readonly asSetTransfersEnabledFlag: {2644 readonly collectionId: u32;2645 readonly value: bool;2646 } & Struct;2647 readonly isBurnItem: boolean;2648 readonly asBurnItem: {2649 readonly collectionId: u32;2650 readonly itemId: u32;2651 readonly value: u128;2652 } & Struct;2653 readonly isBurnFrom: boolean;2654 readonly asBurnFrom: {2655 readonly collectionId: u32;2656 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2657 readonly itemId: u32;2658 readonly value: u128;2659 } & Struct;2660 readonly isTransfer: boolean;2661 readonly asTransfer: {2662 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2663 readonly collectionId: u32;2664 readonly itemId: u32;2665 readonly value: u128;2666 } & Struct;2667 readonly isApprove: boolean;2668 readonly asApprove: {2669 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2670 readonly collectionId: u32;2671 readonly itemId: u32;2672 readonly amount: u128;2673 } & Struct;2674 readonly isTransferFrom: boolean;2675 readonly asTransferFrom: {2676 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2677 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2678 readonly collectionId: u32;2679 readonly itemId: u32;2680 readonly value: u128;2681 } & Struct;2682 readonly isSetCollectionLimits: boolean;2683 readonly asSetCollectionLimits: {2684 readonly collectionId: u32;2685 readonly newLimit: UpDataStructsCollectionLimits;2686 } & Struct;2687 readonly isSetCollectionPermissions: boolean;2688 readonly asSetCollectionPermissions: {2689 readonly collectionId: u32;2690 readonly newPermission: UpDataStructsCollectionPermissions;2691 } & Struct;2692 readonly isRepartition: boolean;2693 readonly asRepartition: {2694 readonly collectionId: u32;2695 readonly tokenId: u32;2696 readonly amount: u128;2697 } & Struct;2698 readonly isSetAllowanceForAll: boolean;2699 readonly asSetAllowanceForAll: {2700 readonly collectionId: u32;2701 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2702 readonly approve: bool;2703 } & Struct;2704 readonly isForceRepairCollection: boolean;2705 readonly asForceRepairCollection: {2706 readonly collectionId: u32;2707 } & Struct;2708 readonly isForceRepairItem: boolean;2709 readonly asForceRepairItem: {2710 readonly collectionId: u32;2711 readonly itemId: u32;2712 } & Struct;2713 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';2714}27152716/** @name PalletUniqueError */2717export interface PalletUniqueError extends Enum {2718 readonly isCollectionDecimalPointLimitExceeded: boolean;2719 readonly isEmptyArgument: boolean;2720 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;2721 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';2722}27232724/** @name PalletXcmCall */2725export interface PalletXcmCall extends Enum {2726 readonly isSend: boolean;2727 readonly asSend: {2728 readonly dest: XcmVersionedMultiLocation;2729 readonly message: XcmVersionedXcm;2730 } & Struct;2731 readonly isTeleportAssets: boolean;2732 readonly asTeleportAssets: {2733 readonly dest: XcmVersionedMultiLocation;2734 readonly beneficiary: XcmVersionedMultiLocation;2735 readonly assets: XcmVersionedMultiAssets;2736 readonly feeAssetItem: u32;2737 } & Struct;2738 readonly isReserveTransferAssets: boolean;2739 readonly asReserveTransferAssets: {2740 readonly dest: XcmVersionedMultiLocation;2741 readonly beneficiary: XcmVersionedMultiLocation;2742 readonly assets: XcmVersionedMultiAssets;2743 readonly feeAssetItem: u32;2744 } & Struct;2745 readonly isExecute: boolean;2746 readonly asExecute: {2747 readonly message: XcmVersionedXcm;2748 readonly maxWeight: u64;2749 } & Struct;2750 readonly isForceXcmVersion: boolean;2751 readonly asForceXcmVersion: {2752 readonly location: XcmV1MultiLocation;2753 readonly xcmVersion: u32;2754 } & Struct;2755 readonly isForceDefaultXcmVersion: boolean;2756 readonly asForceDefaultXcmVersion: {2757 readonly maybeXcmVersion: Option<u32>;2758 } & Struct;2759 readonly isForceSubscribeVersionNotify: boolean;2760 readonly asForceSubscribeVersionNotify: {2761 readonly location: XcmVersionedMultiLocation;2762 } & Struct;2763 readonly isForceUnsubscribeVersionNotify: boolean;2764 readonly asForceUnsubscribeVersionNotify: {2765 readonly location: XcmVersionedMultiLocation;2766 } & Struct;2767 readonly isLimitedReserveTransferAssets: boolean;2768 readonly asLimitedReserveTransferAssets: {2769 readonly dest: XcmVersionedMultiLocation;2770 readonly beneficiary: XcmVersionedMultiLocation;2771 readonly assets: XcmVersionedMultiAssets;2772 readonly feeAssetItem: u32;2773 readonly weightLimit: XcmV2WeightLimit;2774 } & Struct;2775 readonly isLimitedTeleportAssets: boolean;2776 readonly asLimitedTeleportAssets: {2777 readonly dest: XcmVersionedMultiLocation;2778 readonly beneficiary: XcmVersionedMultiLocation;2779 readonly assets: XcmVersionedMultiAssets;2780 readonly feeAssetItem: u32;2781 readonly weightLimit: XcmV2WeightLimit;2782 } & Struct;2783 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2784}27852786/** @name PalletXcmError */2787export interface PalletXcmError extends Enum {2788 readonly isUnreachable: boolean;2789 readonly isSendFailure: boolean;2790 readonly isFiltered: boolean;2791 readonly isUnweighableMessage: boolean;2792 readonly isDestinationNotInvertible: boolean;2793 readonly isEmpty: boolean;2794 readonly isCannotReanchor: boolean;2795 readonly isTooManyAssets: boolean;2796 readonly isInvalidOrigin: boolean;2797 readonly isBadVersion: boolean;2798 readonly isBadLocation: boolean;2799 readonly isNoSubscription: boolean;2800 readonly isAlreadySubscribed: boolean;2801 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2802}28032804/** @name PalletXcmEvent */2805export interface PalletXcmEvent extends Enum {2806 readonly isAttempted: boolean;2807 readonly asAttempted: XcmV2TraitsOutcome;2808 readonly isSent: boolean;2809 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;2810 readonly isUnexpectedResponse: boolean;2811 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;2812 readonly isResponseReady: boolean;2813 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;2814 readonly isNotified: boolean;2815 readonly asNotified: ITuple<[u64, u8, u8]>;2816 readonly isNotifyOverweight: boolean;2817 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;2818 readonly isNotifyDispatchError: boolean;2819 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2820 readonly isNotifyDecodeFailed: boolean;2821 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;2822 readonly isInvalidResponder: boolean;2823 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;2824 readonly isInvalidResponderVersion: boolean;2825 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;2826 readonly isResponseTaken: boolean;2827 readonly asResponseTaken: u64;2828 readonly isAssetsTrapped: boolean;2829 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2830 readonly isVersionChangeNotified: boolean;2831 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;2832 readonly isSupportedVersionChanged: boolean;2833 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;2834 readonly isNotifyTargetSendFail: boolean;2835 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;2836 readonly isNotifyTargetMigrationFail: boolean;2837 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2838 readonly isAssetsClaimed: boolean;2839 readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2840 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';2841}28422843/** @name PhantomTypeUpDataStructs */2844export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild, UpPovEstimateRpcPovInfo]>> {}28452846/** @name PolkadotCorePrimitivesInboundDownwardMessage */2847export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {2848 readonly sentAt: u32;2849 readonly msg: Bytes;2850}28512852/** @name PolkadotCorePrimitivesInboundHrmpMessage */2853export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {2854 readonly sentAt: u32;2855 readonly data: Bytes;2856}28572858/** @name PolkadotCorePrimitivesOutboundHrmpMessage */2859export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {2860 readonly recipient: u32;2861 readonly data: Bytes;2862}28632864/** @name PolkadotParachainPrimitivesXcmpMessageFormat */2865export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2866 readonly isConcatenatedVersionedXcm: boolean;2867 readonly isConcatenatedEncodedBlob: boolean;2868 readonly isSignals: boolean;2869 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2870}28712872/** @name PolkadotPrimitivesV2AbridgedHostConfiguration */2873export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {2874 readonly maxCodeSize: u32;2875 readonly maxHeadDataSize: u32;2876 readonly maxUpwardQueueCount: u32;2877 readonly maxUpwardQueueSize: u32;2878 readonly maxUpwardMessageSize: u32;2879 readonly maxUpwardMessageNumPerCandidate: u32;2880 readonly hrmpMaxMessageNumPerCandidate: u32;2881 readonly validationUpgradeCooldown: u32;2882 readonly validationUpgradeDelay: u32;2883}28842885/** @name PolkadotPrimitivesV2AbridgedHrmpChannel */2886export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {2887 readonly maxCapacity: u32;2888 readonly maxTotalSize: u32;2889 readonly maxMessageSize: u32;2890 readonly msgCount: u32;2891 readonly totalSize: u32;2892 readonly mqcHead: Option<H256>;2893}28942895/** @name PolkadotPrimitivesV2PersistedValidationData */2896export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {2897 readonly parentHead: Bytes;2898 readonly relayParentNumber: u32;2899 readonly relayParentStorageRoot: H256;2900 readonly maxPovSize: u32;2901}29022903/** @name PolkadotPrimitivesV2UpgradeRestriction */2904export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {2905 readonly isPresent: boolean;2906 readonly type: 'Present';2907}29082909/** @name RmrkTraitsBaseBaseInfo */2910export interface RmrkTraitsBaseBaseInfo extends Struct {2911 readonly issuer: AccountId32;2912 readonly baseType: Bytes;2913 readonly symbol: Bytes;2914}29152916/** @name RmrkTraitsCollectionCollectionInfo */2917export interface RmrkTraitsCollectionCollectionInfo extends Struct {2918 readonly issuer: AccountId32;2919 readonly metadata: Bytes;2920 readonly max: Option<u32>;2921 readonly symbol: Bytes;2922 readonly nftsCount: u32;2923}29242925/** @name RmrkTraitsNftAccountIdOrCollectionNftTuple */2926export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {2927 readonly isAccountId: boolean;2928 readonly asAccountId: AccountId32;2929 readonly isCollectionAndNftTuple: boolean;2930 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;2931 readonly type: 'AccountId' | 'CollectionAndNftTuple';2932}29332934/** @name RmrkTraitsNftNftChild */2935export interface RmrkTraitsNftNftChild extends Struct {2936 readonly collectionId: u32;2937 readonly nftId: u32;2938}29392940/** @name RmrkTraitsNftNftInfo */2941export interface RmrkTraitsNftNftInfo extends Struct {2942 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2943 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;2944 readonly metadata: Bytes;2945 readonly equipped: bool;2946 readonly pending: bool;2947}29482949/** @name RmrkTraitsNftRoyaltyInfo */2950export interface RmrkTraitsNftRoyaltyInfo extends Struct {2951 readonly recipient: AccountId32;2952 readonly amount: Permill;2953}29542955/** @name RmrkTraitsPartEquippableList */2956export interface RmrkTraitsPartEquippableList extends Enum {2957 readonly isAll: boolean;2958 readonly isEmpty: boolean;2959 readonly isCustom: boolean;2960 readonly asCustom: Vec<u32>;2961 readonly type: 'All' | 'Empty' | 'Custom';2962}29632964/** @name RmrkTraitsPartFixedPart */2965export interface RmrkTraitsPartFixedPart extends Struct {2966 readonly id: u32;2967 readonly z: u32;2968 readonly src: Bytes;2969}29702971/** @name RmrkTraitsPartPartType */2972export interface RmrkTraitsPartPartType extends Enum {2973 readonly isFixedPart: boolean;2974 readonly asFixedPart: RmrkTraitsPartFixedPart;2975 readonly isSlotPart: boolean;2976 readonly asSlotPart: RmrkTraitsPartSlotPart;2977 readonly type: 'FixedPart' | 'SlotPart';2978}29792980/** @name RmrkTraitsPartSlotPart */2981export interface RmrkTraitsPartSlotPart extends Struct {2982 readonly id: u32;2983 readonly equippable: RmrkTraitsPartEquippableList;2984 readonly src: Bytes;2985 readonly z: u32;2986}29872988/** @name RmrkTraitsPropertyPropertyInfo */2989export interface RmrkTraitsPropertyPropertyInfo extends Struct {2990 readonly key: Bytes;2991 readonly value: Bytes;2992}29932994/** @name RmrkTraitsResourceBasicResource */2995export interface RmrkTraitsResourceBasicResource extends Struct {2996 readonly src: Option<Bytes>;2997 readonly metadata: Option<Bytes>;2998 readonly license: Option<Bytes>;2999 readonly thumb: Option<Bytes>;3000}30013002/** @name RmrkTraitsResourceComposableResource */3003export interface RmrkTraitsResourceComposableResource extends Struct {3004 readonly parts: Vec<u32>;3005 readonly base: u32;3006 readonly src: Option<Bytes>;3007 readonly metadata: Option<Bytes>;3008 readonly license: Option<Bytes>;3009 readonly thumb: Option<Bytes>;3010}30113012/** @name RmrkTraitsResourceResourceInfo */3013export interface RmrkTraitsResourceResourceInfo extends Struct {3014 readonly id: u32;3015 readonly resource: RmrkTraitsResourceResourceTypes;3016 readonly pending: bool;3017 readonly pendingRemoval: bool;3018}30193020/** @name RmrkTraitsResourceResourceTypes */3021export interface RmrkTraitsResourceResourceTypes extends Enum {3022 readonly isBasic: boolean;3023 readonly asBasic: RmrkTraitsResourceBasicResource;3024 readonly isComposable: boolean;3025 readonly asComposable: RmrkTraitsResourceComposableResource;3026 readonly isSlot: boolean;3027 readonly asSlot: RmrkTraitsResourceSlotResource;3028 readonly type: 'Basic' | 'Composable' | 'Slot';3029}30303031/** @name RmrkTraitsResourceSlotResource */3032export interface RmrkTraitsResourceSlotResource extends Struct {3033 readonly base: u32;3034 readonly src: Option<Bytes>;3035 readonly metadata: Option<Bytes>;3036 readonly slot: u32;3037 readonly license: Option<Bytes>;3038 readonly thumb: Option<Bytes>;3039}30403041/** @name RmrkTraitsTheme */3042export interface RmrkTraitsTheme extends Struct {3043 readonly name: Bytes;3044 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;3045 readonly inherit: bool;3046}30473048/** @name RmrkTraitsThemeThemeProperty */3049export interface RmrkTraitsThemeThemeProperty extends Struct {3050 readonly key: Bytes;3051 readonly value: Bytes;3052}30533054/** @name SpConsensusAuraSr25519AppSr25519Public */3055export interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}30563057/** @name SpCoreCryptoKeyTypeId */3058export interface SpCoreCryptoKeyTypeId extends U8aFixed {}30593060/** @name SpCoreEcdsaSignature */3061export interface SpCoreEcdsaSignature extends U8aFixed {}30623063/** @name SpCoreEd25519Signature */3064export interface SpCoreEd25519Signature extends U8aFixed {}30653066/** @name SpCoreSr25519Public */3067export interface SpCoreSr25519Public extends U8aFixed {}30683069/** @name SpCoreSr25519Signature */3070export interface SpCoreSr25519Signature extends U8aFixed {}30713072/** @name SpRuntimeArithmeticError */3073export interface SpRuntimeArithmeticError extends Enum {3074 readonly isUnderflow: boolean;3075 readonly isOverflow: boolean;3076 readonly isDivisionByZero: boolean;3077 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';3078}30793080/** @name SpRuntimeBlakeTwo256 */3081export interface SpRuntimeBlakeTwo256 extends Null {}30823083/** @name SpRuntimeDigest */3084export interface SpRuntimeDigest extends Struct {3085 readonly logs: Vec<SpRuntimeDigestDigestItem>;3086}30873088/** @name SpRuntimeDigestDigestItem */3089export interface SpRuntimeDigestDigestItem extends Enum {3090 readonly isOther: boolean;3091 readonly asOther: Bytes;3092 readonly isConsensus: boolean;3093 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;3094 readonly isSeal: boolean;3095 readonly asSeal: ITuple<[U8aFixed, Bytes]>;3096 readonly isPreRuntime: boolean;3097 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;3098 readonly isRuntimeEnvironmentUpdated: boolean;3099 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';3100}31013102/** @name SpRuntimeDispatchError */3103export interface SpRuntimeDispatchError extends Enum {3104 readonly isOther: boolean;3105 readonly isCannotLookup: boolean;3106 readonly isBadOrigin: boolean;3107 readonly isModule: boolean;3108 readonly asModule: SpRuntimeModuleError;3109 readonly isConsumerRemaining: boolean;3110 readonly isNoProviders: boolean;3111 readonly isTooManyConsumers: boolean;3112 readonly isToken: boolean;3113 readonly asToken: SpRuntimeTokenError;3114 readonly isArithmetic: boolean;3115 readonly asArithmetic: SpRuntimeArithmeticError;3116 readonly isTransactional: boolean;3117 readonly asTransactional: SpRuntimeTransactionalError;3118 readonly isExhausted: boolean;3119 readonly isCorruption: boolean;3120 readonly isUnavailable: boolean;3121 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';3122}31233124/** @name SpRuntimeHeader */3125export interface SpRuntimeHeader extends Struct {3126 readonly parentHash: H256;3127 readonly number: Compact<u32>;3128 readonly stateRoot: H256;3129 readonly extrinsicsRoot: H256;3130 readonly digest: SpRuntimeDigest;3131}31323133/** @name SpRuntimeModuleError */3134export interface SpRuntimeModuleError extends Struct {3135 readonly index: u8;3136 readonly error: U8aFixed;3137}31383139/** @name SpRuntimeMultiSignature */3140export interface SpRuntimeMultiSignature extends Enum {3141 readonly isEd25519: boolean;3142 readonly asEd25519: SpCoreEd25519Signature;3143 readonly isSr25519: boolean;3144 readonly asSr25519: SpCoreSr25519Signature;3145 readonly isEcdsa: boolean;3146 readonly asEcdsa: SpCoreEcdsaSignature;3147 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3148}31493150/** @name SpRuntimeTokenError */3151export interface SpRuntimeTokenError extends Enum {3152 readonly isNoFunds: boolean;3153 readonly isWouldDie: boolean;3154 readonly isBelowMinimum: boolean;3155 readonly isCannotCreate: boolean;3156 readonly isUnknownAsset: boolean;3157 readonly isFrozen: boolean;3158 readonly isUnsupported: boolean;3159 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';3160}31613162/** @name SpRuntimeTransactionalError */3163export interface SpRuntimeTransactionalError extends Enum {3164 readonly isLimitReached: boolean;3165 readonly isNoLayer: boolean;3166 readonly type: 'LimitReached' | 'NoLayer';3167}31683169/** @name SpRuntimeTransactionValidityInvalidTransaction */3170export interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {3171 readonly isCall: boolean;3172 readonly isPayment: boolean;3173 readonly isFuture: boolean;3174 readonly isStale: boolean;3175 readonly isBadProof: boolean;3176 readonly isAncientBirthBlock: boolean;3177 readonly isExhaustsResources: boolean;3178 readonly isCustom: boolean;3179 readonly asCustom: u8;3180 readonly isBadMandatory: boolean;3181 readonly isMandatoryValidation: boolean;3182 readonly isBadSigner: boolean;3183 readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';3184}31853186/** @name SpRuntimeTransactionValidityTransactionValidityError */3187export interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {3188 readonly isInvalid: boolean;3189 readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;3190 readonly isUnknown: boolean;3191 readonly asUnknown: SpRuntimeTransactionValidityUnknownTransaction;3192 readonly type: 'Invalid' | 'Unknown';3193}31943195/** @name SpRuntimeTransactionValidityUnknownTransaction */3196export interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {3197 readonly isCannotLookup: boolean;3198 readonly isNoUnsignedValidator: boolean;3199 readonly isCustom: boolean;3200 readonly asCustom: u8;3201 readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';3202}32033204/** @name SpTrieStorageProof */3205export interface SpTrieStorageProof extends Struct {3206 readonly trieNodes: BTreeSet<Bytes>;3207}32083209/** @name SpVersionRuntimeVersion */3210export interface SpVersionRuntimeVersion extends Struct {3211 readonly specName: Text;3212 readonly implName: Text;3213 readonly authoringVersion: u32;3214 readonly specVersion: u32;3215 readonly implVersion: u32;3216 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;3217 readonly transactionVersion: u32;3218 readonly stateVersion: u8;3219}32203221/** @name SpWeightsRuntimeDbWeight */3222export interface SpWeightsRuntimeDbWeight extends Struct {3223 readonly read: u64;3224 readonly write: u64;3225}32263227/** @name SpWeightsWeightV2Weight */3228export interface SpWeightsWeightV2Weight extends Struct {3229 readonly refTime: Compact<u64>;3230 readonly proofSize: Compact<u64>;3231}32323233/** @name UpDataStructsAccessMode */3234export interface UpDataStructsAccessMode extends Enum {3235 readonly isNormal: boolean;3236 readonly isAllowList: boolean;3237 readonly type: 'Normal' | 'AllowList';3238}32393240/** @name UpDataStructsCollection */3241export interface UpDataStructsCollection extends Struct {3242 readonly owner: AccountId32;3243 readonly mode: UpDataStructsCollectionMode;3244 readonly name: Vec<u16>;3245 readonly description: Vec<u16>;3246 readonly tokenPrefix: Bytes;3247 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3248 readonly limits: UpDataStructsCollectionLimits;3249 readonly permissions: UpDataStructsCollectionPermissions;3250 readonly flags: U8aFixed;3251}32523253/** @name UpDataStructsCollectionLimits */3254export interface UpDataStructsCollectionLimits extends Struct {3255 readonly accountTokenOwnershipLimit: Option<u32>;3256 readonly sponsoredDataSize: Option<u32>;3257 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;3258 readonly tokenLimit: Option<u32>;3259 readonly sponsorTransferTimeout: Option<u32>;3260 readonly sponsorApproveTimeout: Option<u32>;3261 readonly ownerCanTransfer: Option<bool>;3262 readonly ownerCanDestroy: Option<bool>;3263 readonly transfersEnabled: Option<bool>;3264}32653266/** @name UpDataStructsCollectionMode */3267export interface UpDataStructsCollectionMode extends Enum {3268 readonly isNft: boolean;3269 readonly isFungible: boolean;3270 readonly asFungible: u8;3271 readonly isReFungible: boolean;3272 readonly type: 'Nft' | 'Fungible' | 'ReFungible';3273}32743275/** @name UpDataStructsCollectionPermissions */3276export interface UpDataStructsCollectionPermissions extends Struct {3277 readonly access: Option<UpDataStructsAccessMode>;3278 readonly mintMode: Option<bool>;3279 readonly nesting: Option<UpDataStructsNestingPermissions>;3280}32813282/** @name UpDataStructsCollectionStats */3283export interface UpDataStructsCollectionStats extends Struct {3284 readonly created: u32;3285 readonly destroyed: u32;3286 readonly alive: u32;3287}32883289/** @name UpDataStructsCreateCollectionData */3290export interface UpDataStructsCreateCollectionData extends Struct {3291 readonly mode: UpDataStructsCollectionMode;3292 readonly access: Option<UpDataStructsAccessMode>;3293 readonly name: Vec<u16>;3294 readonly description: Vec<u16>;3295 readonly tokenPrefix: Bytes;3296 readonly pendingSponsor: Option<AccountId32>;3297 readonly limits: Option<UpDataStructsCollectionLimits>;3298 readonly permissions: Option<UpDataStructsCollectionPermissions>;3299 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3300 readonly properties: Vec<UpDataStructsProperty>;3301}33023303/** @name UpDataStructsCreateFungibleData */3304export interface UpDataStructsCreateFungibleData extends Struct {3305 readonly value: u128;3306}33073308/** @name UpDataStructsCreateItemData */3309export interface UpDataStructsCreateItemData extends Enum {3310 readonly isNft: boolean;3311 readonly asNft: UpDataStructsCreateNftData;3312 readonly isFungible: boolean;3313 readonly asFungible: UpDataStructsCreateFungibleData;3314 readonly isReFungible: boolean;3315 readonly asReFungible: UpDataStructsCreateReFungibleData;3316 readonly type: 'Nft' | 'Fungible' | 'ReFungible';3317}33183319/** @name UpDataStructsCreateItemExData */3320export interface UpDataStructsCreateItemExData extends Enum {3321 readonly isNft: boolean;3322 readonly asNft: Vec<UpDataStructsCreateNftExData>;3323 readonly isFungible: boolean;3324 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr,u128>;3325 readonly isRefungibleMultipleItems: boolean;3326 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;3327 readonly isRefungibleMultipleOwners: boolean;3328 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;3329 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';3330}33313332/** @name UpDataStructsCreateNftData */3333export interface UpDataStructsCreateNftData extends Struct {3334 readonly properties: Vec<UpDataStructsProperty>;3335}33363337/** @name UpDataStructsCreateNftExData */3338export interface UpDataStructsCreateNftExData extends Struct {3339 readonly properties: Vec<UpDataStructsProperty>;3340 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3341}33423343/** @name UpDataStructsCreateReFungibleData */3344export interface UpDataStructsCreateReFungibleData extends Struct {3345 readonly pieces: u128;3346 readonly properties: Vec<UpDataStructsProperty>;3347}33483349/** @name UpDataStructsCreateRefungibleExMultipleOwners */3350export interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {3351 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;3352 readonly properties: Vec<UpDataStructsProperty>;3353}33543355/** @name UpDataStructsCreateRefungibleExSingleOwner */3356export interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {3357 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;3358 readonly pieces: u128;3359 readonly properties: Vec<UpDataStructsProperty>;3360}33613362/** @name UpDataStructsNestingPermissions */3363export interface UpDataStructsNestingPermissions extends Struct {3364 readonly tokenOwner: bool;3365 readonly collectionAdmin: bool;3366 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;3367}33683369/** @name UpDataStructsOwnerRestrictedSet */3370export interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}33713372/** @name UpDataStructsProperties */3373export interface UpDataStructsProperties extends Struct {3374 readonly map: UpDataStructsPropertiesMapBoundedVec;3375 readonly consumedSpace: u32;3376 readonly spaceLimit: u32;3377}33783379/** @name UpDataStructsPropertiesMapBoundedVec */3380export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}33813382/** @name UpDataStructsPropertiesMapPropertyPermission */3383export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}33843385/** @name UpDataStructsProperty */3386export interface UpDataStructsProperty extends Struct {3387 readonly key: Bytes;3388 readonly value: Bytes;3389}33903391/** @name UpDataStructsPropertyKeyPermission */3392export interface UpDataStructsPropertyKeyPermission extends Struct {3393 readonly key: Bytes;3394 readonly permission: UpDataStructsPropertyPermission;3395}33963397/** @name UpDataStructsPropertyPermission */3398export interface UpDataStructsPropertyPermission extends Struct {3399 readonly mutable: bool;3400 readonly collectionAdmin: bool;3401 readonly tokenOwner: bool;3402}34033404/** @name UpDataStructsPropertyScope */3405export interface UpDataStructsPropertyScope extends Enum {3406 readonly isNone: boolean;3407 readonly isRmrk: boolean;3408 readonly type: 'None' | 'Rmrk';3409}34103411/** @name UpDataStructsRpcCollection */3412export interface UpDataStructsRpcCollection extends Struct {3413 readonly owner: AccountId32;3414 readonly mode: UpDataStructsCollectionMode;3415 readonly name: Vec<u16>;3416 readonly description: Vec<u16>;3417 readonly tokenPrefix: Bytes;3418 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3419 readonly limits: UpDataStructsCollectionLimits;3420 readonly permissions: UpDataStructsCollectionPermissions;3421 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3422 readonly properties: Vec<UpDataStructsProperty>;3423 readonly readOnly: bool;3424 readonly flags: UpDataStructsRpcCollectionFlags;3425}34263427/** @name UpDataStructsRpcCollectionFlags */3428export interface UpDataStructsRpcCollectionFlags extends Struct {3429 readonly foreign: bool;3430 readonly erc721metadata: bool;3431}34323433/** @name UpDataStructsSponsoringRateLimit */3434export interface UpDataStructsSponsoringRateLimit extends Enum {3435 readonly isSponsoringDisabled: boolean;3436 readonly isBlocks: boolean;3437 readonly asBlocks: u32;3438 readonly type: 'SponsoringDisabled' | 'Blocks';3439}34403441/** @name UpDataStructsSponsorshipStateAccountId32 */3442export interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3443 readonly isDisabled: boolean;3444 readonly isUnconfirmed: boolean;3445 readonly asUnconfirmed: AccountId32;3446 readonly isConfirmed: boolean;3447 readonly asConfirmed: AccountId32;3448 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3449}34503451/** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr */3452export interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3453 readonly isDisabled: boolean;3454 readonly isUnconfirmed: boolean;3455 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3456 readonly isConfirmed: boolean;3457 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3458 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3459}34603461/** @name UpDataStructsTokenChild */3462export interface UpDataStructsTokenChild extends Struct {3463 readonly token: u32;3464 readonly collection: u32;3465}34663467/** @name UpDataStructsTokenData */3468export interface UpDataStructsTokenData extends Struct {3469 readonly properties: Vec<UpDataStructsProperty>;3470 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3471 readonly pieces: u128;3472}34733474/** @name UpPovEstimateRpcPovInfo */3475export interface UpPovEstimateRpcPovInfo extends Struct {3476 readonly proofSize: u64;3477 readonly compactProofSize: u64;3478 readonly compressedProofSize: u64;3479 readonly results: Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>;3480 readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;3481}34823483/** @name UpPovEstimateRpcTrieKeyValue */3484export interface UpPovEstimateRpcTrieKeyValue extends Struct {3485 readonly key: Bytes;3486 readonly value: Bytes;3487}34883489/** @name XcmDoubleEncoded */3490export interface XcmDoubleEncoded extends Struct {3491 readonly encoded: Bytes;3492}34933494/** @name XcmV0Junction */3495export interface XcmV0Junction extends Enum {3496 readonly isParent: boolean;3497 readonly isParachain: boolean;3498 readonly asParachain: Compact<u32>;3499 readonly isAccountId32: boolean;3500 readonly asAccountId32: {3501 readonly network: XcmV0JunctionNetworkId;3502 readonly id: U8aFixed;3503 } & Struct;3504 readonly isAccountIndex64: boolean;3505 readonly asAccountIndex64: {3506 readonly network: XcmV0JunctionNetworkId;3507 readonly index: Compact<u64>;3508 } & Struct;3509 readonly isAccountKey20: boolean;3510 readonly asAccountKey20: {3511 readonly network: XcmV0JunctionNetworkId;3512 readonly key: U8aFixed;3513 } & Struct;3514 readonly isPalletInstance: boolean;3515 readonly asPalletInstance: u8;3516 readonly isGeneralIndex: boolean;3517 readonly asGeneralIndex: Compact<u128>;3518 readonly isGeneralKey: boolean;3519 readonly asGeneralKey: Bytes;3520 readonly isOnlyChild: boolean;3521 readonly isPlurality: boolean;3522 readonly asPlurality: {3523 readonly id: XcmV0JunctionBodyId;3524 readonly part: XcmV0JunctionBodyPart;3525 } & Struct;3526 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';3527}35283529/** @name XcmV0JunctionBodyId */3530export interface XcmV0JunctionBodyId extends Enum {3531 readonly isUnit: boolean;3532 readonly isNamed: boolean;3533 readonly asNamed: Bytes;3534 readonly isIndex: boolean;3535 readonly asIndex: Compact<u32>;3536 readonly isExecutive: boolean;3537 readonly isTechnical: boolean;3538 readonly isLegislative: boolean;3539 readonly isJudicial: boolean;3540 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';3541}35423543/** @name XcmV0JunctionBodyPart */3544export interface XcmV0JunctionBodyPart extends Enum {3545 readonly isVoice: boolean;3546 readonly isMembers: boolean;3547 readonly asMembers: {3548 readonly count: Compact<u32>;3549 } & Struct;3550 readonly isFraction: boolean;3551 readonly asFraction: {3552 readonly nom: Compact<u32>;3553 readonly denom: Compact<u32>;3554 } & Struct;3555 readonly isAtLeastProportion: boolean;3556 readonly asAtLeastProportion: {3557 readonly nom: Compact<u32>;3558 readonly denom: Compact<u32>;3559 } & Struct;3560 readonly isMoreThanProportion: boolean;3561 readonly asMoreThanProportion: {3562 readonly nom: Compact<u32>;3563 readonly denom: Compact<u32>;3564 } & Struct;3565 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';3566}35673568/** @name XcmV0JunctionNetworkId */3569export interface XcmV0JunctionNetworkId extends Enum {3570 readonly isAny: boolean;3571 readonly isNamed: boolean;3572 readonly asNamed: Bytes;3573 readonly isPolkadot: boolean;3574 readonly isKusama: boolean;3575 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';3576}35773578/** @name XcmV0MultiAsset */3579export interface XcmV0MultiAsset extends Enum {3580 readonly isNone: boolean;3581 readonly isAll: boolean;3582 readonly isAllFungible: boolean;3583 readonly isAllNonFungible: boolean;3584 readonly isAllAbstractFungible: boolean;3585 readonly asAllAbstractFungible: {3586 readonly id: Bytes;3587 } & Struct;3588 readonly isAllAbstractNonFungible: boolean;3589 readonly asAllAbstractNonFungible: {3590 readonly class: Bytes;3591 } & Struct;3592 readonly isAllConcreteFungible: boolean;3593 readonly asAllConcreteFungible: {3594 readonly id: XcmV0MultiLocation;3595 } & Struct;3596 readonly isAllConcreteNonFungible: boolean;3597 readonly asAllConcreteNonFungible: {3598 readonly class: XcmV0MultiLocation;3599 } & Struct;3600 readonly isAbstractFungible: boolean;3601 readonly asAbstractFungible: {3602 readonly id: Bytes;3603 readonly amount: Compact<u128>;3604 } & Struct;3605 readonly isAbstractNonFungible: boolean;3606 readonly asAbstractNonFungible: {3607 readonly class: Bytes;3608 readonly instance: XcmV1MultiassetAssetInstance;3609 } & Struct;3610 readonly isConcreteFungible: boolean;3611 readonly asConcreteFungible: {3612 readonly id: XcmV0MultiLocation;3613 readonly amount: Compact<u128>;3614 } & Struct;3615 readonly isConcreteNonFungible: boolean;3616 readonly asConcreteNonFungible: {3617 readonly class: XcmV0MultiLocation;3618 readonly instance: XcmV1MultiassetAssetInstance;3619 } & Struct;3620 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';3621}36223623/** @name XcmV0MultiLocation */3624export interface XcmV0MultiLocation extends Enum {3625 readonly isNull: boolean;3626 readonly isX1: boolean;3627 readonly asX1: XcmV0Junction;3628 readonly isX2: boolean;3629 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;3630 readonly isX3: boolean;3631 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3632 readonly isX4: boolean;3633 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3634 readonly isX5: boolean;3635 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3636 readonly isX6: boolean;3637 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3638 readonly isX7: boolean;3639 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3640 readonly isX8: boolean;3641 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3642 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3643}36443645/** @name XcmV0Order */3646export interface XcmV0Order extends Enum {3647 readonly isNull: boolean;3648 readonly isDepositAsset: boolean;3649 readonly asDepositAsset: {3650 readonly assets: Vec<XcmV0MultiAsset>;3651 readonly dest: XcmV0MultiLocation;3652 } & Struct;3653 readonly isDepositReserveAsset: boolean;3654 readonly asDepositReserveAsset: {3655 readonly assets: Vec<XcmV0MultiAsset>;3656 readonly dest: XcmV0MultiLocation;3657 readonly effects: Vec<XcmV0Order>;3658 } & Struct;3659 readonly isExchangeAsset: boolean;3660 readonly asExchangeAsset: {3661 readonly give: Vec<XcmV0MultiAsset>;3662 readonly receive: Vec<XcmV0MultiAsset>;3663 } & Struct;3664 readonly isInitiateReserveWithdraw: boolean;3665 readonly asInitiateReserveWithdraw: {3666 readonly assets: Vec<XcmV0MultiAsset>;3667 readonly reserve: XcmV0MultiLocation;3668 readonly effects: Vec<XcmV0Order>;3669 } & Struct;3670 readonly isInitiateTeleport: boolean;3671 readonly asInitiateTeleport: {3672 readonly assets: Vec<XcmV0MultiAsset>;3673 readonly dest: XcmV0MultiLocation;3674 readonly effects: Vec<XcmV0Order>;3675 } & Struct;3676 readonly isQueryHolding: boolean;3677 readonly asQueryHolding: {3678 readonly queryId: Compact<u64>;3679 readonly dest: XcmV0MultiLocation;3680 readonly assets: Vec<XcmV0MultiAsset>;3681 } & Struct;3682 readonly isBuyExecution: boolean;3683 readonly asBuyExecution: {3684 readonly fees: XcmV0MultiAsset;3685 readonly weight: u64;3686 readonly debt: u64;3687 readonly haltOnError: bool;3688 readonly xcm: Vec<XcmV0Xcm>;3689 } & Struct;3690 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';3691}36923693/** @name XcmV0OriginKind */3694export interface XcmV0OriginKind extends Enum {3695 readonly isNative: boolean;3696 readonly isSovereignAccount: boolean;3697 readonly isSuperuser: boolean;3698 readonly isXcm: boolean;3699 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';3700}37013702/** @name XcmV0Response */3703export interface XcmV0Response extends Enum {3704 readonly isAssets: boolean;3705 readonly asAssets: Vec<XcmV0MultiAsset>;3706 readonly type: 'Assets';3707}37083709/** @name XcmV0Xcm */3710export interface XcmV0Xcm extends Enum {3711 readonly isWithdrawAsset: boolean;3712 readonly asWithdrawAsset: {3713 readonly assets: Vec<XcmV0MultiAsset>;3714 readonly effects: Vec<XcmV0Order>;3715 } & Struct;3716 readonly isReserveAssetDeposit: boolean;3717 readonly asReserveAssetDeposit: {3718 readonly assets: Vec<XcmV0MultiAsset>;3719 readonly effects: Vec<XcmV0Order>;3720 } & Struct;3721 readonly isTeleportAsset: boolean;3722 readonly asTeleportAsset: {3723 readonly assets: Vec<XcmV0MultiAsset>;3724 readonly effects: Vec<XcmV0Order>;3725 } & Struct;3726 readonly isQueryResponse: boolean;3727 readonly asQueryResponse: {3728 readonly queryId: Compact<u64>;3729 readonly response: XcmV0Response;3730 } & Struct;3731 readonly isTransferAsset: boolean;3732 readonly asTransferAsset: {3733 readonly assets: Vec<XcmV0MultiAsset>;3734 readonly dest: XcmV0MultiLocation;3735 } & Struct;3736 readonly isTransferReserveAsset: boolean;3737 readonly asTransferReserveAsset: {3738 readonly assets: Vec<XcmV0MultiAsset>;3739 readonly dest: XcmV0MultiLocation;3740 readonly effects: Vec<XcmV0Order>;3741 } & Struct;3742 readonly isTransact: boolean;3743 readonly asTransact: {3744 readonly originType: XcmV0OriginKind;3745 readonly requireWeightAtMost: u64;3746 readonly call: XcmDoubleEncoded;3747 } & Struct;3748 readonly isHrmpNewChannelOpenRequest: boolean;3749 readonly asHrmpNewChannelOpenRequest: {3750 readonly sender: Compact<u32>;3751 readonly maxMessageSize: Compact<u32>;3752 readonly maxCapacity: Compact<u32>;3753 } & Struct;3754 readonly isHrmpChannelAccepted: boolean;3755 readonly asHrmpChannelAccepted: {3756 readonly recipient: Compact<u32>;3757 } & Struct;3758 readonly isHrmpChannelClosing: boolean;3759 readonly asHrmpChannelClosing: {3760 readonly initiator: Compact<u32>;3761 readonly sender: Compact<u32>;3762 readonly recipient: Compact<u32>;3763 } & Struct;3764 readonly isRelayedFrom: boolean;3765 readonly asRelayedFrom: {3766 readonly who: XcmV0MultiLocation;3767 readonly message: XcmV0Xcm;3768 } & Struct;3769 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';3770}37713772/** @name XcmV1Junction */3773export interface XcmV1Junction extends Enum {3774 readonly isParachain: boolean;3775 readonly asParachain: Compact<u32>;3776 readonly isAccountId32: boolean;3777 readonly asAccountId32: {3778 readonly network: XcmV0JunctionNetworkId;3779 readonly id: U8aFixed;3780 } & Struct;3781 readonly isAccountIndex64: boolean;3782 readonly asAccountIndex64: {3783 readonly network: XcmV0JunctionNetworkId;3784 readonly index: Compact<u64>;3785 } & Struct;3786 readonly isAccountKey20: boolean;3787 readonly asAccountKey20: {3788 readonly network: XcmV0JunctionNetworkId;3789 readonly key: U8aFixed;3790 } & Struct;3791 readonly isPalletInstance: boolean;3792 readonly asPalletInstance: u8;3793 readonly isGeneralIndex: boolean;3794 readonly asGeneralIndex: Compact<u128>;3795 readonly isGeneralKey: boolean;3796 readonly asGeneralKey: Bytes;3797 readonly isOnlyChild: boolean;3798 readonly isPlurality: boolean;3799 readonly asPlurality: {3800 readonly id: XcmV0JunctionBodyId;3801 readonly part: XcmV0JunctionBodyPart;3802 } & Struct;3803 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';3804}38053806/** @name XcmV1MultiAsset */3807export interface XcmV1MultiAsset extends Struct {3808 readonly id: XcmV1MultiassetAssetId;3809 readonly fun: XcmV1MultiassetFungibility;3810}38113812/** @name XcmV1MultiassetAssetId */3813export interface XcmV1MultiassetAssetId extends Enum {3814 readonly isConcrete: boolean;3815 readonly asConcrete: XcmV1MultiLocation;3816 readonly isAbstract: boolean;3817 readonly asAbstract: Bytes;3818 readonly type: 'Concrete' | 'Abstract';3819}38203821/** @name XcmV1MultiassetAssetInstance */3822export interface XcmV1MultiassetAssetInstance extends Enum {3823 readonly isUndefined: boolean;3824 readonly isIndex: boolean;3825 readonly asIndex: Compact<u128>;3826 readonly isArray4: boolean;3827 readonly asArray4: U8aFixed;3828 readonly isArray8: boolean;3829 readonly asArray8: U8aFixed;3830 readonly isArray16: boolean;3831 readonly asArray16: U8aFixed;3832 readonly isArray32: boolean;3833 readonly asArray32: U8aFixed;3834 readonly isBlob: boolean;3835 readonly asBlob: Bytes;3836 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';3837}38383839/** @name XcmV1MultiassetFungibility */3840export interface XcmV1MultiassetFungibility extends Enum {3841 readonly isFungible: boolean;3842 readonly asFungible: Compact<u128>;3843 readonly isNonFungible: boolean;3844 readonly asNonFungible: XcmV1MultiassetAssetInstance;3845 readonly type: 'Fungible' | 'NonFungible';3846}38473848/** @name XcmV1MultiassetMultiAssetFilter */3849export interface XcmV1MultiassetMultiAssetFilter extends Enum {3850 readonly isDefinite: boolean;3851 readonly asDefinite: XcmV1MultiassetMultiAssets;3852 readonly isWild: boolean;3853 readonly asWild: XcmV1MultiassetWildMultiAsset;3854 readonly type: 'Definite' | 'Wild';3855}38563857/** @name XcmV1MultiassetMultiAssets */3858export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}38593860/** @name XcmV1MultiassetWildFungibility */3861export interface XcmV1MultiassetWildFungibility extends Enum {3862 readonly isFungible: boolean;3863 readonly isNonFungible: boolean;3864 readonly type: 'Fungible' | 'NonFungible';3865}38663867/** @name XcmV1MultiassetWildMultiAsset */3868export interface XcmV1MultiassetWildMultiAsset extends Enum {3869 readonly isAll: boolean;3870 readonly isAllOf: boolean;3871 readonly asAllOf: {3872 readonly id: XcmV1MultiassetAssetId;3873 readonly fun: XcmV1MultiassetWildFungibility;3874 } & Struct;3875 readonly type: 'All' | 'AllOf';3876}38773878/** @name XcmV1MultiLocation */3879export interface XcmV1MultiLocation extends Struct {3880 readonly parents: u8;3881 readonly interior: XcmV1MultilocationJunctions;3882}38833884/** @name XcmV1MultilocationJunctions */3885export interface XcmV1MultilocationJunctions extends Enum {3886 readonly isHere: boolean;3887 readonly isX1: boolean;3888 readonly asX1: XcmV1Junction;3889 readonly isX2: boolean;3890 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;3891 readonly isX3: boolean;3892 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3893 readonly isX4: boolean;3894 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3895 readonly isX5: boolean;3896 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3897 readonly isX6: boolean;3898 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3899 readonly isX7: boolean;3900 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3901 readonly isX8: boolean;3902 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3903 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3904}39053906/** @name XcmV1Order */3907export interface XcmV1Order extends Enum {3908 readonly isNoop: boolean;3909 readonly isDepositAsset: boolean;3910 readonly asDepositAsset: {3911 readonly assets: XcmV1MultiassetMultiAssetFilter;3912 readonly maxAssets: u32;3913 readonly beneficiary: XcmV1MultiLocation;3914 } & Struct;3915 readonly isDepositReserveAsset: boolean;3916 readonly asDepositReserveAsset: {3917 readonly assets: XcmV1MultiassetMultiAssetFilter;3918 readonly maxAssets: u32;3919 readonly dest: XcmV1MultiLocation;3920 readonly effects: Vec<XcmV1Order>;3921 } & Struct;3922 readonly isExchangeAsset: boolean;3923 readonly asExchangeAsset: {3924 readonly give: XcmV1MultiassetMultiAssetFilter;3925 readonly receive: XcmV1MultiassetMultiAssets;3926 } & Struct;3927 readonly isInitiateReserveWithdraw: boolean;3928 readonly asInitiateReserveWithdraw: {3929 readonly assets: XcmV1MultiassetMultiAssetFilter;3930 readonly reserve: XcmV1MultiLocation;3931 readonly effects: Vec<XcmV1Order>;3932 } & Struct;3933 readonly isInitiateTeleport: boolean;3934 readonly asInitiateTeleport: {3935 readonly assets: XcmV1MultiassetMultiAssetFilter;3936 readonly dest: XcmV1MultiLocation;3937 readonly effects: Vec<XcmV1Order>;3938 } & Struct;3939 readonly isQueryHolding: boolean;3940 readonly asQueryHolding: {3941 readonly queryId: Compact<u64>;3942 readonly dest: XcmV1MultiLocation;3943 readonly assets: XcmV1MultiassetMultiAssetFilter;3944 } & Struct;3945 readonly isBuyExecution: boolean;3946 readonly asBuyExecution: {3947 readonly fees: XcmV1MultiAsset;3948 readonly weight: u64;3949 readonly debt: u64;3950 readonly haltOnError: bool;3951 readonly instructions: Vec<XcmV1Xcm>;3952 } & Struct;3953 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';3954}39553956/** @name XcmV1Response */3957export interface XcmV1Response extends Enum {3958 readonly isAssets: boolean;3959 readonly asAssets: XcmV1MultiassetMultiAssets;3960 readonly isVersion: boolean;3961 readonly asVersion: u32;3962 readonly type: 'Assets' | 'Version';3963}39643965/** @name XcmV1Xcm */3966export interface XcmV1Xcm extends Enum {3967 readonly isWithdrawAsset: boolean;3968 readonly asWithdrawAsset: {3969 readonly assets: XcmV1MultiassetMultiAssets;3970 readonly effects: Vec<XcmV1Order>;3971 } & Struct;3972 readonly isReserveAssetDeposited: boolean;3973 readonly asReserveAssetDeposited: {3974 readonly assets: XcmV1MultiassetMultiAssets;3975 readonly effects: Vec<XcmV1Order>;3976 } & Struct;3977 readonly isReceiveTeleportedAsset: boolean;3978 readonly asReceiveTeleportedAsset: {3979 readonly assets: XcmV1MultiassetMultiAssets;3980 readonly effects: Vec<XcmV1Order>;3981 } & Struct;3982 readonly isQueryResponse: boolean;3983 readonly asQueryResponse: {3984 readonly queryId: Compact<u64>;3985 readonly response: XcmV1Response;3986 } & Struct;3987 readonly isTransferAsset: boolean;3988 readonly asTransferAsset: {3989 readonly assets: XcmV1MultiassetMultiAssets;3990 readonly beneficiary: XcmV1MultiLocation;3991 } & Struct;3992 readonly isTransferReserveAsset: boolean;3993 readonly asTransferReserveAsset: {3994 readonly assets: XcmV1MultiassetMultiAssets;3995 readonly dest: XcmV1MultiLocation;3996 readonly effects: Vec<XcmV1Order>;3997 } & Struct;3998 readonly isTransact: boolean;3999 readonly asTransact: {4000 readonly originType: XcmV0OriginKind;4001 readonly requireWeightAtMost: u64;4002 readonly call: XcmDoubleEncoded;4003 } & Struct;4004 readonly isHrmpNewChannelOpenRequest: boolean;4005 readonly asHrmpNewChannelOpenRequest: {4006 readonly sender: Compact<u32>;4007 readonly maxMessageSize: Compact<u32>;4008 readonly maxCapacity: Compact<u32>;4009 } & Struct;4010 readonly isHrmpChannelAccepted: boolean;4011 readonly asHrmpChannelAccepted: {4012 readonly recipient: Compact<u32>;4013 } & Struct;4014 readonly isHrmpChannelClosing: boolean;4015 readonly asHrmpChannelClosing: {4016 readonly initiator: Compact<u32>;4017 readonly sender: Compact<u32>;4018 readonly recipient: Compact<u32>;4019 } & Struct;4020 readonly isRelayedFrom: boolean;4021 readonly asRelayedFrom: {4022 readonly who: XcmV1MultilocationJunctions;4023 readonly message: XcmV1Xcm;4024 } & Struct;4025 readonly isSubscribeVersion: boolean;4026 readonly asSubscribeVersion: {4027 readonly queryId: Compact<u64>;4028 readonly maxResponseWeight: Compact<u64>;4029 } & Struct;4030 readonly isUnsubscribeVersion: boolean;4031 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';4032}40334034/** @name XcmV2Instruction */4035export interface XcmV2Instruction extends Enum {4036 readonly isWithdrawAsset: boolean;4037 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;4038 readonly isReserveAssetDeposited: boolean;4039 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;4040 readonly isReceiveTeleportedAsset: boolean;4041 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;4042 readonly isQueryResponse: boolean;4043 readonly asQueryResponse: {4044 readonly queryId: Compact<u64>;4045 readonly response: XcmV2Response;4046 readonly maxWeight: Compact<u64>;4047 } & Struct;4048 readonly isTransferAsset: boolean;4049 readonly asTransferAsset: {4050 readonly assets: XcmV1MultiassetMultiAssets;4051 readonly beneficiary: XcmV1MultiLocation;4052 } & Struct;4053 readonly isTransferReserveAsset: boolean;4054 readonly asTransferReserveAsset: {4055 readonly assets: XcmV1MultiassetMultiAssets;4056 readonly dest: XcmV1MultiLocation;4057 readonly xcm: XcmV2Xcm;4058 } & Struct;4059 readonly isTransact: boolean;4060 readonly asTransact: {4061 readonly originType: XcmV0OriginKind;4062 readonly requireWeightAtMost: Compact<u64>;4063 readonly call: XcmDoubleEncoded;4064 } & Struct;4065 readonly isHrmpNewChannelOpenRequest: boolean;4066 readonly asHrmpNewChannelOpenRequest: {4067 readonly sender: Compact<u32>;4068 readonly maxMessageSize: Compact<u32>;4069 readonly maxCapacity: Compact<u32>;4070 } & Struct;4071 readonly isHrmpChannelAccepted: boolean;4072 readonly asHrmpChannelAccepted: {4073 readonly recipient: Compact<u32>;4074 } & Struct;4075 readonly isHrmpChannelClosing: boolean;4076 readonly asHrmpChannelClosing: {4077 readonly initiator: Compact<u32>;4078 readonly sender: Compact<u32>;4079 readonly recipient: Compact<u32>;4080 } & Struct;4081 readonly isClearOrigin: boolean;4082 readonly isDescendOrigin: boolean;4083 readonly asDescendOrigin: XcmV1MultilocationJunctions;4084 readonly isReportError: boolean;4085 readonly asReportError: {4086 readonly queryId: Compact<u64>;4087 readonly dest: XcmV1MultiLocation;4088 readonly maxResponseWeight: Compact<u64>;4089 } & Struct;4090 readonly isDepositAsset: boolean;4091 readonly asDepositAsset: {4092 readonly assets: XcmV1MultiassetMultiAssetFilter;4093 readonly maxAssets: Compact<u32>;4094 readonly beneficiary: XcmV1MultiLocation;4095 } & Struct;4096 readonly isDepositReserveAsset: boolean;4097 readonly asDepositReserveAsset: {4098 readonly assets: XcmV1MultiassetMultiAssetFilter;4099 readonly maxAssets: Compact<u32>;4100 readonly dest: XcmV1MultiLocation;4101 readonly xcm: XcmV2Xcm;4102 } & Struct;4103 readonly isExchangeAsset: boolean;4104 readonly asExchangeAsset: {4105 readonly give: XcmV1MultiassetMultiAssetFilter;4106 readonly receive: XcmV1MultiassetMultiAssets;4107 } & Struct;4108 readonly isInitiateReserveWithdraw: boolean;4109 readonly asInitiateReserveWithdraw: {4110 readonly assets: XcmV1MultiassetMultiAssetFilter;4111 readonly reserve: XcmV1MultiLocation;4112 readonly xcm: XcmV2Xcm;4113 } & Struct;4114 readonly isInitiateTeleport: boolean;4115 readonly asInitiateTeleport: {4116 readonly assets: XcmV1MultiassetMultiAssetFilter;4117 readonly dest: XcmV1MultiLocation;4118 readonly xcm: XcmV2Xcm;4119 } & Struct;4120 readonly isQueryHolding: boolean;4121 readonly asQueryHolding: {4122 readonly queryId: Compact<u64>;4123 readonly dest: XcmV1MultiLocation;4124 readonly assets: XcmV1MultiassetMultiAssetFilter;4125 readonly maxResponseWeight: Compact<u64>;4126 } & Struct;4127 readonly isBuyExecution: boolean;4128 readonly asBuyExecution: {4129 readonly fees: XcmV1MultiAsset;4130 readonly weightLimit: XcmV2WeightLimit;4131 } & Struct;4132 readonly isRefundSurplus: boolean;4133 readonly isSetErrorHandler: boolean;4134 readonly asSetErrorHandler: XcmV2Xcm;4135 readonly isSetAppendix: boolean;4136 readonly asSetAppendix: XcmV2Xcm;4137 readonly isClearError: boolean;4138 readonly isClaimAsset: boolean;4139 readonly asClaimAsset: {4140 readonly assets: XcmV1MultiassetMultiAssets;4141 readonly ticket: XcmV1MultiLocation;4142 } & Struct;4143 readonly isTrap: boolean;4144 readonly asTrap: Compact<u64>;4145 readonly isSubscribeVersion: boolean;4146 readonly asSubscribeVersion: {4147 readonly queryId: Compact<u64>;4148 readonly maxResponseWeight: Compact<u64>;4149 } & Struct;4150 readonly isUnsubscribeVersion: boolean;4151 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';4152}41534154/** @name XcmV2Response */4155export interface XcmV2Response extends Enum {4156 readonly isNull: boolean;4157 readonly isAssets: boolean;4158 readonly asAssets: XcmV1MultiassetMultiAssets;4159 readonly isExecutionResult: boolean;4160 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;4161 readonly isVersion: boolean;4162 readonly asVersion: u32;4163 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';4164}41654166/** @name XcmV2TraitsError */4167export interface XcmV2TraitsError extends Enum {4168 readonly isOverflow: boolean;4169 readonly isUnimplemented: boolean;4170 readonly isUntrustedReserveLocation: boolean;4171 readonly isUntrustedTeleportLocation: boolean;4172 readonly isMultiLocationFull: boolean;4173 readonly isMultiLocationNotInvertible: boolean;4174 readonly isBadOrigin: boolean;4175 readonly isInvalidLocation: boolean;4176 readonly isAssetNotFound: boolean;4177 readonly isFailedToTransactAsset: boolean;4178 readonly isNotWithdrawable: boolean;4179 readonly isLocationCannotHold: boolean;4180 readonly isExceedsMaxMessageSize: boolean;4181 readonly isDestinationUnsupported: boolean;4182 readonly isTransport: boolean;4183 readonly isUnroutable: boolean;4184 readonly isUnknownClaim: boolean;4185 readonly isFailedToDecode: boolean;4186 readonly isMaxWeightInvalid: boolean;4187 readonly isNotHoldingFees: boolean;4188 readonly isTooExpensive: boolean;4189 readonly isTrap: boolean;4190 readonly asTrap: u64;4191 readonly isUnhandledXcmVersion: boolean;4192 readonly isWeightLimitReached: boolean;4193 readonly asWeightLimitReached: u64;4194 readonly isBarrier: boolean;4195 readonly isWeightNotComputable: boolean;4196 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';4197}41984199/** @name XcmV2TraitsOutcome */4200export interface XcmV2TraitsOutcome extends Enum {4201 readonly isComplete: boolean;4202 readonly asComplete: u64;4203 readonly isIncomplete: boolean;4204 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;4205 readonly isError: boolean;4206 readonly asError: XcmV2TraitsError;4207 readonly type: 'Complete' | 'Incomplete' | 'Error';4208}42094210/** @name XcmV2WeightLimit */4211export interface XcmV2WeightLimit extends Enum {4212 readonly isUnlimited: boolean;4213 readonly isLimited: boolean;4214 readonly asLimited: Compact<u64>;4215 readonly type: 'Unlimited' | 'Limited';4216}42174218/** @name XcmV2Xcm */4219export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}42204221/** @name XcmVersionedMultiAsset */4222export interface XcmVersionedMultiAsset extends Enum {4223 readonly isV0: boolean;4224 readonly asV0: XcmV0MultiAsset;4225 readonly isV1: boolean;4226 readonly asV1: XcmV1MultiAsset;4227 readonly type: 'V0' | 'V1';4228}42294230/** @name XcmVersionedMultiAssets */4231export interface XcmVersionedMultiAssets extends Enum {4232 readonly isV0: boolean;4233 readonly asV0: Vec<XcmV0MultiAsset>;4234 readonly isV1: boolean;4235 readonly asV1: XcmV1MultiassetMultiAssets;4236 readonly type: 'V0' | 'V1';4237}42384239/** @name XcmVersionedMultiLocation */4240export interface XcmVersionedMultiLocation extends Enum {4241 readonly isV0: boolean;4242 readonly asV0: XcmV0MultiLocation;4243 readonly isV1: boolean;4244 readonly asV1: XcmV1MultiLocation;4245 readonly type: 'V0' | 'V1';4246}42474248/** @name XcmVersionedXcm */4249export interface XcmVersionedXcm extends Enum {4250 readonly isV0: boolean;4251 readonly asV0: XcmV0Xcm;4252 readonly isV1: boolean;4253 readonly asV1: XcmV1Xcm;4254 readonly isV2: boolean;4255 readonly asV2: XcmV2Xcm;4256 readonly type: 'V0' | 'V1' | 'V2';4257}42584259export type PHANTOM_DEFAULT = 'default';1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';5import type { ITuple } from '@polkadot/types-codec/types';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';7import type { Event } from '@polkadot/types/interfaces/system';89/** @name CumulusPalletDmpQueueCall */10export interface CumulusPalletDmpQueueCall extends Enum {11 readonly isServiceOverweight: boolean;12 readonly asServiceOverweight: {13 readonly index: u64;14 readonly weightLimit: u64;15 } & Struct;16 readonly type: 'ServiceOverweight';17}1819/** @name CumulusPalletDmpQueueConfigData */20export interface CumulusPalletDmpQueueConfigData extends Struct {21 readonly maxIndividual: SpWeightsWeightV2Weight;22}2324/** @name CumulusPalletDmpQueueError */25export interface CumulusPalletDmpQueueError extends Enum {26 readonly isUnknown: boolean;27 readonly isOverLimit: boolean;28 readonly type: 'Unknown' | 'OverLimit';29}3031/** @name CumulusPalletDmpQueueEvent */32export interface CumulusPalletDmpQueueEvent extends Enum {33 readonly isInvalidFormat: boolean;34 readonly asInvalidFormat: {35 readonly messageId: U8aFixed;36 } & Struct;37 readonly isUnsupportedVersion: boolean;38 readonly asUnsupportedVersion: {39 readonly messageId: U8aFixed;40 } & Struct;41 readonly isExecutedDownward: boolean;42 readonly asExecutedDownward: {43 readonly messageId: U8aFixed;44 readonly outcome: XcmV2TraitsOutcome;45 } & Struct;46 readonly isWeightExhausted: boolean;47 readonly asWeightExhausted: {48 readonly messageId: U8aFixed;49 readonly remainingWeight: SpWeightsWeightV2Weight;50 readonly requiredWeight: SpWeightsWeightV2Weight;51 } & Struct;52 readonly isOverweightEnqueued: boolean;53 readonly asOverweightEnqueued: {54 readonly messageId: U8aFixed;55 readonly overweightIndex: u64;56 readonly requiredWeight: SpWeightsWeightV2Weight;57 } & Struct;58 readonly isOverweightServiced: boolean;59 readonly asOverweightServiced: {60 readonly overweightIndex: u64;61 readonly weightUsed: SpWeightsWeightV2Weight;62 } & Struct;63 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';64}6566/** @name CumulusPalletDmpQueuePageIndexData */67export interface CumulusPalletDmpQueuePageIndexData extends Struct {68 readonly beginUsed: u32;69 readonly endUsed: u32;70 readonly overweightCount: u64;71}7273/** @name CumulusPalletParachainSystemCall */74export interface CumulusPalletParachainSystemCall extends Enum {75 readonly isSetValidationData: boolean;76 readonly asSetValidationData: {77 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;78 } & Struct;79 readonly isSudoSendUpwardMessage: boolean;80 readonly asSudoSendUpwardMessage: {81 readonly message: Bytes;82 } & Struct;83 readonly isAuthorizeUpgrade: boolean;84 readonly asAuthorizeUpgrade: {85 readonly codeHash: H256;86 } & Struct;87 readonly isEnactAuthorizedUpgrade: boolean;88 readonly asEnactAuthorizedUpgrade: {89 readonly code: Bytes;90 } & Struct;91 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';92}9394/** @name CumulusPalletParachainSystemError */95export interface CumulusPalletParachainSystemError extends Enum {96 readonly isOverlappingUpgrades: boolean;97 readonly isProhibitedByPolkadot: boolean;98 readonly isTooBig: boolean;99 readonly isValidationDataNotAvailable: boolean;100 readonly isHostConfigurationNotAvailable: boolean;101 readonly isNotScheduled: boolean;102 readonly isNothingAuthorized: boolean;103 readonly isUnauthorized: boolean;104 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';105}106107/** @name CumulusPalletParachainSystemEvent */108export interface CumulusPalletParachainSystemEvent extends Enum {109 readonly isValidationFunctionStored: boolean;110 readonly isValidationFunctionApplied: boolean;111 readonly asValidationFunctionApplied: {112 readonly relayChainBlockNum: u32;113 } & Struct;114 readonly isValidationFunctionDiscarded: boolean;115 readonly isUpgradeAuthorized: boolean;116 readonly asUpgradeAuthorized: {117 readonly codeHash: H256;118 } & Struct;119 readonly isDownwardMessagesReceived: boolean;120 readonly asDownwardMessagesReceived: {121 readonly count: u32;122 } & Struct;123 readonly isDownwardMessagesProcessed: boolean;124 readonly asDownwardMessagesProcessed: {125 readonly weightUsed: SpWeightsWeightV2Weight;126 readonly dmqHead: H256;127 } & Struct;128 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';129}130131/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */132export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {133 readonly dmqMqcHead: H256;134 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;135 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;136 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;137}138139/** @name CumulusPalletXcmCall */140export interface CumulusPalletXcmCall extends Null {}141142/** @name CumulusPalletXcmError */143export interface CumulusPalletXcmError extends Null {}144145/** @name CumulusPalletXcmEvent */146export interface CumulusPalletXcmEvent extends Enum {147 readonly isInvalidFormat: boolean;148 readonly asInvalidFormat: U8aFixed;149 readonly isUnsupportedVersion: boolean;150 readonly asUnsupportedVersion: U8aFixed;151 readonly isExecutedDownward: boolean;152 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;153 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';154}155156/** @name CumulusPalletXcmpQueueCall */157export interface CumulusPalletXcmpQueueCall extends Enum {158 readonly isServiceOverweight: boolean;159 readonly asServiceOverweight: {160 readonly index: u64;161 readonly weightLimit: u64;162 } & Struct;163 readonly isSuspendXcmExecution: boolean;164 readonly isResumeXcmExecution: boolean;165 readonly isUpdateSuspendThreshold: boolean;166 readonly asUpdateSuspendThreshold: {167 readonly new_: u32;168 } & Struct;169 readonly isUpdateDropThreshold: boolean;170 readonly asUpdateDropThreshold: {171 readonly new_: u32;172 } & Struct;173 readonly isUpdateResumeThreshold: boolean;174 readonly asUpdateResumeThreshold: {175 readonly new_: u32;176 } & Struct;177 readonly isUpdateThresholdWeight: boolean;178 readonly asUpdateThresholdWeight: {179 readonly new_: u64;180 } & Struct;181 readonly isUpdateWeightRestrictDecay: boolean;182 readonly asUpdateWeightRestrictDecay: {183 readonly new_: u64;184 } & Struct;185 readonly isUpdateXcmpMaxIndividualWeight: boolean;186 readonly asUpdateXcmpMaxIndividualWeight: {187 readonly new_: u64;188 } & Struct;189 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';190}191192/** @name CumulusPalletXcmpQueueError */193export interface CumulusPalletXcmpQueueError extends Enum {194 readonly isFailedToSend: boolean;195 readonly isBadXcmOrigin: boolean;196 readonly isBadXcm: boolean;197 readonly isBadOverweightIndex: boolean;198 readonly isWeightOverLimit: boolean;199 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';200}201202/** @name CumulusPalletXcmpQueueEvent */203export interface CumulusPalletXcmpQueueEvent extends Enum {204 readonly isSuccess: boolean;205 readonly asSuccess: {206 readonly messageHash: Option<H256>;207 readonly weight: SpWeightsWeightV2Weight;208 } & Struct;209 readonly isFail: boolean;210 readonly asFail: {211 readonly messageHash: Option<H256>;212 readonly error: XcmV2TraitsError;213 readonly weight: SpWeightsWeightV2Weight;214 } & Struct;215 readonly isBadVersion: boolean;216 readonly asBadVersion: {217 readonly messageHash: Option<H256>;218 } & Struct;219 readonly isBadFormat: boolean;220 readonly asBadFormat: {221 readonly messageHash: Option<H256>;222 } & Struct;223 readonly isUpwardMessageSent: boolean;224 readonly asUpwardMessageSent: {225 readonly messageHash: Option<H256>;226 } & Struct;227 readonly isXcmpMessageSent: boolean;228 readonly asXcmpMessageSent: {229 readonly messageHash: Option<H256>;230 } & Struct;231 readonly isOverweightEnqueued: boolean;232 readonly asOverweightEnqueued: {233 readonly sender: u32;234 readonly sentAt: u32;235 readonly index: u64;236 readonly required: SpWeightsWeightV2Weight;237 } & Struct;238 readonly isOverweightServiced: boolean;239 readonly asOverweightServiced: {240 readonly index: u64;241 readonly used: SpWeightsWeightV2Weight;242 } & Struct;243 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';244}245246/** @name CumulusPalletXcmpQueueInboundChannelDetails */247export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {248 readonly sender: u32;249 readonly state: CumulusPalletXcmpQueueInboundState;250 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;251}252253/** @name CumulusPalletXcmpQueueInboundState */254export interface CumulusPalletXcmpQueueInboundState extends Enum {255 readonly isOk: boolean;256 readonly isSuspended: boolean;257 readonly type: 'Ok' | 'Suspended';258}259260/** @name CumulusPalletXcmpQueueOutboundChannelDetails */261export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {262 readonly recipient: u32;263 readonly state: CumulusPalletXcmpQueueOutboundState;264 readonly signalsExist: bool;265 readonly firstIndex: u16;266 readonly lastIndex: u16;267}268269/** @name CumulusPalletXcmpQueueOutboundState */270export interface CumulusPalletXcmpQueueOutboundState extends Enum {271 readonly isOk: boolean;272 readonly isSuspended: boolean;273 readonly type: 'Ok' | 'Suspended';274}275276/** @name CumulusPalletXcmpQueueQueueConfigData */277export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {278 readonly suspendThreshold: u32;279 readonly dropThreshold: u32;280 readonly resumeThreshold: u32;281 readonly thresholdWeight: SpWeightsWeightV2Weight;282 readonly weightRestrictDecay: SpWeightsWeightV2Weight;283 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;284}285286/** @name CumulusPrimitivesParachainInherentParachainInherentData */287export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {288 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;289 readonly relayChainState: SpTrieStorageProof;290 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;291 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;292}293294/** @name EthbloomBloom */295export interface EthbloomBloom extends U8aFixed {}296297/** @name EthereumBlock */298export interface EthereumBlock extends Struct {299 readonly header: EthereumHeader;300 readonly transactions: Vec<EthereumTransactionTransactionV2>;301 readonly ommers: Vec<EthereumHeader>;302}303304/** @name EthereumHeader */305export interface EthereumHeader extends Struct {306 readonly parentHash: H256;307 readonly ommersHash: H256;308 readonly beneficiary: H160;309 readonly stateRoot: H256;310 readonly transactionsRoot: H256;311 readonly receiptsRoot: H256;312 readonly logsBloom: EthbloomBloom;313 readonly difficulty: U256;314 readonly number: U256;315 readonly gasLimit: U256;316 readonly gasUsed: U256;317 readonly timestamp: u64;318 readonly extraData: Bytes;319 readonly mixHash: H256;320 readonly nonce: EthereumTypesHashH64;321}322323/** @name EthereumLog */324export interface EthereumLog extends Struct {325 readonly address: H160;326 readonly topics: Vec<H256>;327 readonly data: Bytes;328}329330/** @name EthereumReceiptEip658ReceiptData */331export interface EthereumReceiptEip658ReceiptData extends Struct {332 readonly statusCode: u8;333 readonly usedGas: U256;334 readonly logsBloom: EthbloomBloom;335 readonly logs: Vec<EthereumLog>;336}337338/** @name EthereumReceiptReceiptV3 */339export interface EthereumReceiptReceiptV3 extends Enum {340 readonly isLegacy: boolean;341 readonly asLegacy: EthereumReceiptEip658ReceiptData;342 readonly isEip2930: boolean;343 readonly asEip2930: EthereumReceiptEip658ReceiptData;344 readonly isEip1559: boolean;345 readonly asEip1559: EthereumReceiptEip658ReceiptData;346 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';347}348349/** @name EthereumTransactionAccessListItem */350export interface EthereumTransactionAccessListItem extends Struct {351 readonly address: H160;352 readonly storageKeys: Vec<H256>;353}354355/** @name EthereumTransactionEip1559Transaction */356export interface EthereumTransactionEip1559Transaction extends Struct {357 readonly chainId: u64;358 readonly nonce: U256;359 readonly maxPriorityFeePerGas: U256;360 readonly maxFeePerGas: U256;361 readonly gasLimit: U256;362 readonly action: EthereumTransactionTransactionAction;363 readonly value: U256;364 readonly input: Bytes;365 readonly accessList: Vec<EthereumTransactionAccessListItem>;366 readonly oddYParity: bool;367 readonly r: H256;368 readonly s: H256;369}370371/** @name EthereumTransactionEip2930Transaction */372export interface EthereumTransactionEip2930Transaction extends Struct {373 readonly chainId: u64;374 readonly nonce: U256;375 readonly gasPrice: U256;376 readonly gasLimit: U256;377 readonly action: EthereumTransactionTransactionAction;378 readonly value: U256;379 readonly input: Bytes;380 readonly accessList: Vec<EthereumTransactionAccessListItem>;381 readonly oddYParity: bool;382 readonly r: H256;383 readonly s: H256;384}385386/** @name EthereumTransactionLegacyTransaction */387export interface EthereumTransactionLegacyTransaction extends Struct {388 readonly nonce: U256;389 readonly gasPrice: U256;390 readonly gasLimit: U256;391 readonly action: EthereumTransactionTransactionAction;392 readonly value: U256;393 readonly input: Bytes;394 readonly signature: EthereumTransactionTransactionSignature;395}396397/** @name EthereumTransactionTransactionAction */398export interface EthereumTransactionTransactionAction extends Enum {399 readonly isCall: boolean;400 readonly asCall: H160;401 readonly isCreate: boolean;402 readonly type: 'Call' | 'Create';403}404405/** @name EthereumTransactionTransactionSignature */406export interface EthereumTransactionTransactionSignature extends Struct {407 readonly v: u64;408 readonly r: H256;409 readonly s: H256;410}411412/** @name EthereumTransactionTransactionV2 */413export interface EthereumTransactionTransactionV2 extends Enum {414 readonly isLegacy: boolean;415 readonly asLegacy: EthereumTransactionLegacyTransaction;416 readonly isEip2930: boolean;417 readonly asEip2930: EthereumTransactionEip2930Transaction;418 readonly isEip1559: boolean;419 readonly asEip1559: EthereumTransactionEip1559Transaction;420 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';421}422423/** @name EthereumTypesHashH64 */424export interface EthereumTypesHashH64 extends U8aFixed {}425426/** @name EvmCoreErrorExitError */427export interface EvmCoreErrorExitError extends Enum {428 readonly isStackUnderflow: boolean;429 readonly isStackOverflow: boolean;430 readonly isInvalidJump: boolean;431 readonly isInvalidRange: boolean;432 readonly isDesignatedInvalid: boolean;433 readonly isCallTooDeep: boolean;434 readonly isCreateCollision: boolean;435 readonly isCreateContractLimit: boolean;436 readonly isOutOfOffset: boolean;437 readonly isOutOfGas: boolean;438 readonly isOutOfFund: boolean;439 readonly isPcUnderflow: boolean;440 readonly isCreateEmpty: boolean;441 readonly isOther: boolean;442 readonly asOther: Text;443 readonly isInvalidCode: boolean;444 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';445}446447/** @name EvmCoreErrorExitFatal */448export interface EvmCoreErrorExitFatal extends Enum {449 readonly isNotSupported: boolean;450 readonly isUnhandledInterrupt: boolean;451 readonly isCallErrorAsFatal: boolean;452 readonly asCallErrorAsFatal: EvmCoreErrorExitError;453 readonly isOther: boolean;454 readonly asOther: Text;455 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';456}457458/** @name EvmCoreErrorExitReason */459export interface EvmCoreErrorExitReason extends Enum {460 readonly isSucceed: boolean;461 readonly asSucceed: EvmCoreErrorExitSucceed;462 readonly isError: boolean;463 readonly asError: EvmCoreErrorExitError;464 readonly isRevert: boolean;465 readonly asRevert: EvmCoreErrorExitRevert;466 readonly isFatal: boolean;467 readonly asFatal: EvmCoreErrorExitFatal;468 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';469}470471/** @name EvmCoreErrorExitRevert */472export interface EvmCoreErrorExitRevert extends Enum {473 readonly isReverted: boolean;474 readonly type: 'Reverted';475}476477/** @name EvmCoreErrorExitSucceed */478export interface EvmCoreErrorExitSucceed extends Enum {479 readonly isStopped: boolean;480 readonly isReturned: boolean;481 readonly isSuicided: boolean;482 readonly type: 'Stopped' | 'Returned' | 'Suicided';483}484485/** @name FpRpcTransactionStatus */486export interface FpRpcTransactionStatus extends Struct {487 readonly transactionHash: H256;488 readonly transactionIndex: u32;489 readonly from: H160;490 readonly to: Option<H160>;491 readonly contractAddress: Option<H160>;492 readonly logs: Vec<EthereumLog>;493 readonly logsBloom: EthbloomBloom;494}495496/** @name FrameSupportDispatchDispatchClass */497export interface FrameSupportDispatchDispatchClass extends Enum {498 readonly isNormal: boolean;499 readonly isOperational: boolean;500 readonly isMandatory: boolean;501 readonly type: 'Normal' | 'Operational' | 'Mandatory';502}503504/** @name FrameSupportDispatchDispatchInfo */505export interface FrameSupportDispatchDispatchInfo extends Struct {506 readonly weight: SpWeightsWeightV2Weight;507 readonly class: FrameSupportDispatchDispatchClass;508 readonly paysFee: FrameSupportDispatchPays;509}510511/** @name FrameSupportDispatchPays */512export interface FrameSupportDispatchPays extends Enum {513 readonly isYes: boolean;514 readonly isNo: boolean;515 readonly type: 'Yes' | 'No';516}517518/** @name FrameSupportDispatchPerDispatchClassU32 */519export interface FrameSupportDispatchPerDispatchClassU32 extends Struct {520 readonly normal: u32;521 readonly operational: u32;522 readonly mandatory: u32;523}524525/** @name FrameSupportDispatchPerDispatchClassWeight */526export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {527 readonly normal: SpWeightsWeightV2Weight;528 readonly operational: SpWeightsWeightV2Weight;529 readonly mandatory: SpWeightsWeightV2Weight;530}531532/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */533export interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {534 readonly normal: FrameSystemLimitsWeightsPerClass;535 readonly operational: FrameSystemLimitsWeightsPerClass;536 readonly mandatory: FrameSystemLimitsWeightsPerClass;537}538539/** @name FrameSupportPalletId */540export interface FrameSupportPalletId extends U8aFixed {}541542/** @name FrameSupportTokensMiscBalanceStatus */543export interface FrameSupportTokensMiscBalanceStatus extends Enum {544 readonly isFree: boolean;545 readonly isReserved: boolean;546 readonly type: 'Free' | 'Reserved';547}548549/** @name FrameSystemAccountInfo */550export interface FrameSystemAccountInfo extends Struct {551 readonly nonce: u32;552 readonly consumers: u32;553 readonly providers: u32;554 readonly sufficients: u32;555 readonly data: PalletBalancesAccountData;556}557558/** @name FrameSystemCall */559export interface FrameSystemCall extends Enum {560 readonly isRemark: boolean;561 readonly asRemark: {562 readonly remark: Bytes;563 } & Struct;564 readonly isSetHeapPages: boolean;565 readonly asSetHeapPages: {566 readonly pages: u64;567 } & Struct;568 readonly isSetCode: boolean;569 readonly asSetCode: {570 readonly code: Bytes;571 } & Struct;572 readonly isSetCodeWithoutChecks: boolean;573 readonly asSetCodeWithoutChecks: {574 readonly code: Bytes;575 } & Struct;576 readonly isSetStorage: boolean;577 readonly asSetStorage: {578 readonly items: Vec<ITuple<[Bytes, Bytes]>>;579 } & Struct;580 readonly isKillStorage: boolean;581 readonly asKillStorage: {582 readonly keys_: Vec<Bytes>;583 } & Struct;584 readonly isKillPrefix: boolean;585 readonly asKillPrefix: {586 readonly prefix: Bytes;587 readonly subkeys: u32;588 } & Struct;589 readonly isRemarkWithEvent: boolean;590 readonly asRemarkWithEvent: {591 readonly remark: Bytes;592 } & Struct;593 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';594}595596/** @name FrameSystemError */597export interface FrameSystemError extends Enum {598 readonly isInvalidSpecName: boolean;599 readonly isSpecVersionNeedsToIncrease: boolean;600 readonly isFailedToExtractRuntimeVersion: boolean;601 readonly isNonDefaultComposite: boolean;602 readonly isNonZeroRefCount: boolean;603 readonly isCallFiltered: boolean;604 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';605}606607/** @name FrameSystemEvent */608export interface FrameSystemEvent extends Enum {609 readonly isExtrinsicSuccess: boolean;610 readonly asExtrinsicSuccess: {611 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;612 } & Struct;613 readonly isExtrinsicFailed: boolean;614 readonly asExtrinsicFailed: {615 readonly dispatchError: SpRuntimeDispatchError;616 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;617 } & Struct;618 readonly isCodeUpdated: boolean;619 readonly isNewAccount: boolean;620 readonly asNewAccount: {621 readonly account: AccountId32;622 } & Struct;623 readonly isKilledAccount: boolean;624 readonly asKilledAccount: {625 readonly account: AccountId32;626 } & Struct;627 readonly isRemarked: boolean;628 readonly asRemarked: {629 readonly sender: AccountId32;630 readonly hash_: H256;631 } & Struct;632 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';633}634635/** @name FrameSystemEventRecord */636export interface FrameSystemEventRecord extends Struct {637 readonly phase: FrameSystemPhase;638 readonly event: Event;639 readonly topics: Vec<H256>;640}641642/** @name FrameSystemExtensionsCheckGenesis */643export interface FrameSystemExtensionsCheckGenesis extends Null {}644645/** @name FrameSystemExtensionsCheckNonce */646export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}647648/** @name FrameSystemExtensionsCheckSpecVersion */649export interface FrameSystemExtensionsCheckSpecVersion extends Null {}650651/** @name FrameSystemExtensionsCheckTxVersion */652export interface FrameSystemExtensionsCheckTxVersion extends Null {}653654/** @name FrameSystemExtensionsCheckWeight */655export interface FrameSystemExtensionsCheckWeight extends Null {}656657/** @name FrameSystemLastRuntimeUpgradeInfo */658export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {659 readonly specVersion: Compact<u32>;660 readonly specName: Text;661}662663/** @name FrameSystemLimitsBlockLength */664export interface FrameSystemLimitsBlockLength extends Struct {665 readonly max: FrameSupportDispatchPerDispatchClassU32;666}667668/** @name FrameSystemLimitsBlockWeights */669export interface FrameSystemLimitsBlockWeights extends Struct {670 readonly baseBlock: SpWeightsWeightV2Weight;671 readonly maxBlock: SpWeightsWeightV2Weight;672 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;673}674675/** @name FrameSystemLimitsWeightsPerClass */676export interface FrameSystemLimitsWeightsPerClass extends Struct {677 readonly baseExtrinsic: SpWeightsWeightV2Weight;678 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;679 readonly maxTotal: Option<SpWeightsWeightV2Weight>;680 readonly reserved: Option<SpWeightsWeightV2Weight>;681}682683/** @name FrameSystemPhase */684export interface FrameSystemPhase extends Enum {685 readonly isApplyExtrinsic: boolean;686 readonly asApplyExtrinsic: u32;687 readonly isFinalization: boolean;688 readonly isInitialization: boolean;689 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';690}691692/** @name OpalRuntimeRuntime */693export interface OpalRuntimeRuntime extends Null {}694695/** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls */696export interface OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls extends Null {}697698/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */699export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}700701/** @name OrmlTokensAccountData */702export interface OrmlTokensAccountData extends Struct {703 readonly free: u128;704 readonly reserved: u128;705 readonly frozen: u128;706}707708/** @name OrmlTokensBalanceLock */709export interface OrmlTokensBalanceLock extends Struct {710 readonly id: U8aFixed;711 readonly amount: u128;712}713714/** @name OrmlTokensModuleCall */715export interface OrmlTokensModuleCall extends Enum {716 readonly isTransfer: boolean;717 readonly asTransfer: {718 readonly dest: MultiAddress;719 readonly currencyId: PalletForeignAssetsAssetIds;720 readonly amount: Compact<u128>;721 } & Struct;722 readonly isTransferAll: boolean;723 readonly asTransferAll: {724 readonly dest: MultiAddress;725 readonly currencyId: PalletForeignAssetsAssetIds;726 readonly keepAlive: bool;727 } & Struct;728 readonly isTransferKeepAlive: boolean;729 readonly asTransferKeepAlive: {730 readonly dest: MultiAddress;731 readonly currencyId: PalletForeignAssetsAssetIds;732 readonly amount: Compact<u128>;733 } & Struct;734 readonly isForceTransfer: boolean;735 readonly asForceTransfer: {736 readonly source: MultiAddress;737 readonly dest: MultiAddress;738 readonly currencyId: PalletForeignAssetsAssetIds;739 readonly amount: Compact<u128>;740 } & Struct;741 readonly isSetBalance: boolean;742 readonly asSetBalance: {743 readonly who: MultiAddress;744 readonly currencyId: PalletForeignAssetsAssetIds;745 readonly newFree: Compact<u128>;746 readonly newReserved: Compact<u128>;747 } & Struct;748 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';749}750751/** @name OrmlTokensModuleError */752export interface OrmlTokensModuleError extends Enum {753 readonly isBalanceTooLow: boolean;754 readonly isAmountIntoBalanceFailed: boolean;755 readonly isLiquidityRestrictions: boolean;756 readonly isMaxLocksExceeded: boolean;757 readonly isKeepAlive: boolean;758 readonly isExistentialDeposit: boolean;759 readonly isDeadAccount: boolean;760 readonly isTooManyReserves: boolean;761 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';762}763764/** @name OrmlTokensModuleEvent */765export interface OrmlTokensModuleEvent extends Enum {766 readonly isEndowed: boolean;767 readonly asEndowed: {768 readonly currencyId: PalletForeignAssetsAssetIds;769 readonly who: AccountId32;770 readonly amount: u128;771 } & Struct;772 readonly isDustLost: boolean;773 readonly asDustLost: {774 readonly currencyId: PalletForeignAssetsAssetIds;775 readonly who: AccountId32;776 readonly amount: u128;777 } & Struct;778 readonly isTransfer: boolean;779 readonly asTransfer: {780 readonly currencyId: PalletForeignAssetsAssetIds;781 readonly from: AccountId32;782 readonly to: AccountId32;783 readonly amount: u128;784 } & Struct;785 readonly isReserved: boolean;786 readonly asReserved: {787 readonly currencyId: PalletForeignAssetsAssetIds;788 readonly who: AccountId32;789 readonly amount: u128;790 } & Struct;791 readonly isUnreserved: boolean;792 readonly asUnreserved: {793 readonly currencyId: PalletForeignAssetsAssetIds;794 readonly who: AccountId32;795 readonly amount: u128;796 } & Struct;797 readonly isReserveRepatriated: boolean;798 readonly asReserveRepatriated: {799 readonly currencyId: PalletForeignAssetsAssetIds;800 readonly from: AccountId32;801 readonly to: AccountId32;802 readonly amount: u128;803 readonly status: FrameSupportTokensMiscBalanceStatus;804 } & Struct;805 readonly isBalanceSet: boolean;806 readonly asBalanceSet: {807 readonly currencyId: PalletForeignAssetsAssetIds;808 readonly who: AccountId32;809 readonly free: u128;810 readonly reserved: u128;811 } & Struct;812 readonly isTotalIssuanceSet: boolean;813 readonly asTotalIssuanceSet: {814 readonly currencyId: PalletForeignAssetsAssetIds;815 readonly amount: u128;816 } & Struct;817 readonly isWithdrawn: boolean;818 readonly asWithdrawn: {819 readonly currencyId: PalletForeignAssetsAssetIds;820 readonly who: AccountId32;821 readonly amount: u128;822 } & Struct;823 readonly isSlashed: boolean;824 readonly asSlashed: {825 readonly currencyId: PalletForeignAssetsAssetIds;826 readonly who: AccountId32;827 readonly freeAmount: u128;828 readonly reservedAmount: u128;829 } & Struct;830 readonly isDeposited: boolean;831 readonly asDeposited: {832 readonly currencyId: PalletForeignAssetsAssetIds;833 readonly who: AccountId32;834 readonly amount: u128;835 } & Struct;836 readonly isLockSet: boolean;837 readonly asLockSet: {838 readonly lockId: U8aFixed;839 readonly currencyId: PalletForeignAssetsAssetIds;840 readonly who: AccountId32;841 readonly amount: u128;842 } & Struct;843 readonly isLockRemoved: boolean;844 readonly asLockRemoved: {845 readonly lockId: U8aFixed;846 readonly currencyId: PalletForeignAssetsAssetIds;847 readonly who: AccountId32;848 } & Struct;849 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';850}851852/** @name OrmlTokensReserveData */853export interface OrmlTokensReserveData extends Struct {854 readonly id: Null;855 readonly amount: u128;856}857858/** @name OrmlVestingModuleCall */859export interface OrmlVestingModuleCall extends Enum {860 readonly isClaim: boolean;861 readonly isVestedTransfer: boolean;862 readonly asVestedTransfer: {863 readonly dest: MultiAddress;864 readonly schedule: OrmlVestingVestingSchedule;865 } & Struct;866 readonly isUpdateVestingSchedules: boolean;867 readonly asUpdateVestingSchedules: {868 readonly who: MultiAddress;869 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;870 } & Struct;871 readonly isClaimFor: boolean;872 readonly asClaimFor: {873 readonly dest: MultiAddress;874 } & Struct;875 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';876}877878/** @name OrmlVestingModuleError */879export interface OrmlVestingModuleError extends Enum {880 readonly isZeroVestingPeriod: boolean;881 readonly isZeroVestingPeriodCount: boolean;882 readonly isInsufficientBalanceToLock: boolean;883 readonly isTooManyVestingSchedules: boolean;884 readonly isAmountLow: boolean;885 readonly isMaxVestingSchedulesExceeded: boolean;886 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';887}888889/** @name OrmlVestingModuleEvent */890export interface OrmlVestingModuleEvent extends Enum {891 readonly isVestingScheduleAdded: boolean;892 readonly asVestingScheduleAdded: {893 readonly from: AccountId32;894 readonly to: AccountId32;895 readonly vestingSchedule: OrmlVestingVestingSchedule;896 } & Struct;897 readonly isClaimed: boolean;898 readonly asClaimed: {899 readonly who: AccountId32;900 readonly amount: u128;901 } & Struct;902 readonly isVestingSchedulesUpdated: boolean;903 readonly asVestingSchedulesUpdated: {904 readonly who: AccountId32;905 } & Struct;906 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';907}908909/** @name OrmlVestingVestingSchedule */910export interface OrmlVestingVestingSchedule extends Struct {911 readonly start: u32;912 readonly period: u32;913 readonly periodCount: u32;914 readonly perPeriod: Compact<u128>;915}916917/** @name OrmlXtokensModuleCall */918export interface OrmlXtokensModuleCall extends Enum {919 readonly isTransfer: boolean;920 readonly asTransfer: {921 readonly currencyId: PalletForeignAssetsAssetIds;922 readonly amount: u128;923 readonly dest: XcmVersionedMultiLocation;924 readonly destWeightLimit: XcmV2WeightLimit;925 } & Struct;926 readonly isTransferMultiasset: boolean;927 readonly asTransferMultiasset: {928 readonly asset: XcmVersionedMultiAsset;929 readonly dest: XcmVersionedMultiLocation;930 readonly destWeightLimit: XcmV2WeightLimit;931 } & Struct;932 readonly isTransferWithFee: boolean;933 readonly asTransferWithFee: {934 readonly currencyId: PalletForeignAssetsAssetIds;935 readonly amount: u128;936 readonly fee: u128;937 readonly dest: XcmVersionedMultiLocation;938 readonly destWeightLimit: XcmV2WeightLimit;939 } & Struct;940 readonly isTransferMultiassetWithFee: boolean;941 readonly asTransferMultiassetWithFee: {942 readonly asset: XcmVersionedMultiAsset;943 readonly fee: XcmVersionedMultiAsset;944 readonly dest: XcmVersionedMultiLocation;945 readonly destWeightLimit: XcmV2WeightLimit;946 } & Struct;947 readonly isTransferMulticurrencies: boolean;948 readonly asTransferMulticurrencies: {949 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;950 readonly feeItem: u32;951 readonly dest: XcmVersionedMultiLocation;952 readonly destWeightLimit: XcmV2WeightLimit;953 } & Struct;954 readonly isTransferMultiassets: boolean;955 readonly asTransferMultiassets: {956 readonly assets: XcmVersionedMultiAssets;957 readonly feeItem: u32;958 readonly dest: XcmVersionedMultiLocation;959 readonly destWeightLimit: XcmV2WeightLimit;960 } & Struct;961 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';962}963964/** @name OrmlXtokensModuleError */965export interface OrmlXtokensModuleError extends Enum {966 readonly isAssetHasNoReserve: boolean;967 readonly isNotCrossChainTransfer: boolean;968 readonly isInvalidDest: boolean;969 readonly isNotCrossChainTransferableCurrency: boolean;970 readonly isUnweighableMessage: boolean;971 readonly isXcmExecutionFailed: boolean;972 readonly isCannotReanchor: boolean;973 readonly isInvalidAncestry: boolean;974 readonly isInvalidAsset: boolean;975 readonly isDestinationNotInvertible: boolean;976 readonly isBadVersion: boolean;977 readonly isDistinctReserveForAssetAndFee: boolean;978 readonly isZeroFee: boolean;979 readonly isZeroAmount: boolean;980 readonly isTooManyAssetsBeingSent: boolean;981 readonly isAssetIndexNonExistent: boolean;982 readonly isFeeNotEnough: boolean;983 readonly isNotSupportedMultiLocation: boolean;984 readonly isMinXcmFeeNotDefined: boolean;985 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';986}987988/** @name OrmlXtokensModuleEvent */989export interface OrmlXtokensModuleEvent extends Enum {990 readonly isTransferredMultiAssets: boolean;991 readonly asTransferredMultiAssets: {992 readonly sender: AccountId32;993 readonly assets: XcmV1MultiassetMultiAssets;994 readonly fee: XcmV1MultiAsset;995 readonly dest: XcmV1MultiLocation;996 } & Struct;997 readonly type: 'TransferredMultiAssets';998}9991000/** @name PalletAppPromotionCall */1001export interface PalletAppPromotionCall extends Enum {1002 readonly isSetAdminAddress: boolean;1003 readonly asSetAdminAddress: {1004 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;1005 } & Struct;1006 readonly isStake: boolean;1007 readonly asStake: {1008 readonly amount: u128;1009 } & Struct;1010 readonly isUnstake: boolean;1011 readonly isSponsorCollection: boolean;1012 readonly asSponsorCollection: {1013 readonly collectionId: u32;1014 } & Struct;1015 readonly isStopSponsoringCollection: boolean;1016 readonly asStopSponsoringCollection: {1017 readonly collectionId: u32;1018 } & Struct;1019 readonly isSponsorContract: boolean;1020 readonly asSponsorContract: {1021 readonly contractId: H160;1022 } & Struct;1023 readonly isStopSponsoringContract: boolean;1024 readonly asStopSponsoringContract: {1025 readonly contractId: H160;1026 } & Struct;1027 readonly isPayoutStakers: boolean;1028 readonly asPayoutStakers: {1029 readonly stakersNumber: Option<u8>;1030 } & Struct;1031 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';1032}10331034/** @name PalletAppPromotionError */1035export interface PalletAppPromotionError extends Enum {1036 readonly isAdminNotSet: boolean;1037 readonly isNoPermission: boolean;1038 readonly isNotSufficientFunds: boolean;1039 readonly isPendingForBlockOverflow: boolean;1040 readonly isSponsorNotSet: boolean;1041 readonly isIncorrectLockedBalanceOperation: boolean;1042 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';1043}10441045/** @name PalletAppPromotionEvent */1046export interface PalletAppPromotionEvent extends Enum {1047 readonly isStakingRecalculation: boolean;1048 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1049 readonly isStake: boolean;1050 readonly asStake: ITuple<[AccountId32, u128]>;1051 readonly isUnstake: boolean;1052 readonly asUnstake: ITuple<[AccountId32, u128]>;1053 readonly isSetAdmin: boolean;1054 readonly asSetAdmin: AccountId32;1055 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1056}10571058/** @name PalletBalancesAccountData */1059export interface PalletBalancesAccountData extends Struct {1060 readonly free: u128;1061 readonly reserved: u128;1062 readonly miscFrozen: u128;1063 readonly feeFrozen: u128;1064}10651066/** @name PalletBalancesBalanceLock */1067export interface PalletBalancesBalanceLock extends Struct {1068 readonly id: U8aFixed;1069 readonly amount: u128;1070 readonly reasons: PalletBalancesReasons;1071}10721073/** @name PalletBalancesCall */1074export interface PalletBalancesCall extends Enum {1075 readonly isTransfer: boolean;1076 readonly asTransfer: {1077 readonly dest: MultiAddress;1078 readonly value: Compact<u128>;1079 } & Struct;1080 readonly isSetBalance: boolean;1081 readonly asSetBalance: {1082 readonly who: MultiAddress;1083 readonly newFree: Compact<u128>;1084 readonly newReserved: Compact<u128>;1085 } & Struct;1086 readonly isForceTransfer: boolean;1087 readonly asForceTransfer: {1088 readonly source: MultiAddress;1089 readonly dest: MultiAddress;1090 readonly value: Compact<u128>;1091 } & Struct;1092 readonly isTransferKeepAlive: boolean;1093 readonly asTransferKeepAlive: {1094 readonly dest: MultiAddress;1095 readonly value: Compact<u128>;1096 } & Struct;1097 readonly isTransferAll: boolean;1098 readonly asTransferAll: {1099 readonly dest: MultiAddress;1100 readonly keepAlive: bool;1101 } & Struct;1102 readonly isForceUnreserve: boolean;1103 readonly asForceUnreserve: {1104 readonly who: MultiAddress;1105 readonly amount: u128;1106 } & Struct;1107 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1108}11091110/** @name PalletBalancesError */1111export interface PalletBalancesError extends Enum {1112 readonly isVestingBalance: boolean;1113 readonly isLiquidityRestrictions: boolean;1114 readonly isInsufficientBalance: boolean;1115 readonly isExistentialDeposit: boolean;1116 readonly isKeepAlive: boolean;1117 readonly isExistingVestingSchedule: boolean;1118 readonly isDeadAccount: boolean;1119 readonly isTooManyReserves: boolean;1120 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1121}11221123/** @name PalletBalancesEvent */1124export interface PalletBalancesEvent extends Enum {1125 readonly isEndowed: boolean;1126 readonly asEndowed: {1127 readonly account: AccountId32;1128 readonly freeBalance: u128;1129 } & Struct;1130 readonly isDustLost: boolean;1131 readonly asDustLost: {1132 readonly account: AccountId32;1133 readonly amount: u128;1134 } & Struct;1135 readonly isTransfer: boolean;1136 readonly asTransfer: {1137 readonly from: AccountId32;1138 readonly to: AccountId32;1139 readonly amount: u128;1140 } & Struct;1141 readonly isBalanceSet: boolean;1142 readonly asBalanceSet: {1143 readonly who: AccountId32;1144 readonly free: u128;1145 readonly reserved: u128;1146 } & Struct;1147 readonly isReserved: boolean;1148 readonly asReserved: {1149 readonly who: AccountId32;1150 readonly amount: u128;1151 } & Struct;1152 readonly isUnreserved: boolean;1153 readonly asUnreserved: {1154 readonly who: AccountId32;1155 readonly amount: u128;1156 } & Struct;1157 readonly isReserveRepatriated: boolean;1158 readonly asReserveRepatriated: {1159 readonly from: AccountId32;1160 readonly to: AccountId32;1161 readonly amount: u128;1162 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;1163 } & Struct;1164 readonly isDeposit: boolean;1165 readonly asDeposit: {1166 readonly who: AccountId32;1167 readonly amount: u128;1168 } & Struct;1169 readonly isWithdraw: boolean;1170 readonly asWithdraw: {1171 readonly who: AccountId32;1172 readonly amount: u128;1173 } & Struct;1174 readonly isSlashed: boolean;1175 readonly asSlashed: {1176 readonly who: AccountId32;1177 readonly amount: u128;1178 } & Struct;1179 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';1180}11811182/** @name PalletBalancesReasons */1183export interface PalletBalancesReasons extends Enum {1184 readonly isFee: boolean;1185 readonly isMisc: boolean;1186 readonly isAll: boolean;1187 readonly type: 'Fee' | 'Misc' | 'All';1188}11891190/** @name PalletBalancesReserveData */1191export interface PalletBalancesReserveData extends Struct {1192 readonly id: U8aFixed;1193 readonly amount: u128;1194}11951196/** @name PalletCommonError */1197export interface PalletCommonError extends Enum {1198 readonly isCollectionNotFound: boolean;1199 readonly isMustBeTokenOwner: boolean;1200 readonly isNoPermission: boolean;1201 readonly isCantDestroyNotEmptyCollection: boolean;1202 readonly isPublicMintingNotAllowed: boolean;1203 readonly isAddressNotInAllowlist: boolean;1204 readonly isCollectionNameLimitExceeded: boolean;1205 readonly isCollectionDescriptionLimitExceeded: boolean;1206 readonly isCollectionTokenPrefixLimitExceeded: boolean;1207 readonly isTotalCollectionsLimitExceeded: boolean;1208 readonly isCollectionAdminCountExceeded: boolean;1209 readonly isCollectionLimitBoundsExceeded: boolean;1210 readonly isOwnerPermissionsCantBeReverted: boolean;1211 readonly isTransferNotAllowed: boolean;1212 readonly isAccountTokenLimitExceeded: boolean;1213 readonly isCollectionTokenLimitExceeded: boolean;1214 readonly isMetadataFlagFrozen: boolean;1215 readonly isTokenNotFound: boolean;1216 readonly isTokenValueTooLow: boolean;1217 readonly isApprovedValueTooLow: boolean;1218 readonly isCantApproveMoreThanOwned: boolean;1219 readonly isAddressIsZero: boolean;1220 readonly isUnsupportedOperation: boolean;1221 readonly isNotSufficientFounds: boolean;1222 readonly isUserIsNotAllowedToNest: boolean;1223 readonly isSourceCollectionIsNotAllowedToNest: boolean;1224 readonly isCollectionFieldSizeExceeded: boolean;1225 readonly isNoSpaceForProperty: boolean;1226 readonly isPropertyLimitReached: boolean;1227 readonly isPropertyKeyIsTooLong: boolean;1228 readonly isInvalidCharacterInPropertyKey: boolean;1229 readonly isEmptyPropertyKey: boolean;1230 readonly isCollectionIsExternal: boolean;1231 readonly isCollectionIsInternal: boolean;1232 readonly isConfirmSponsorshipFail: boolean;1233 readonly isUserIsNotCollectionAdmin: boolean;1234 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';1235}12361237/** @name PalletCommonEvent */1238export interface PalletCommonEvent extends Enum {1239 readonly isCollectionCreated: boolean;1240 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1241 readonly isCollectionDestroyed: boolean;1242 readonly asCollectionDestroyed: u32;1243 readonly isItemCreated: boolean;1244 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1245 readonly isItemDestroyed: boolean;1246 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1247 readonly isTransfer: boolean;1248 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1249 readonly isApproved: boolean;1250 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1251 readonly isApprovedForAll: boolean;1252 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1253 readonly isCollectionPropertySet: boolean;1254 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1255 readonly isCollectionPropertyDeleted: boolean;1256 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1257 readonly isTokenPropertySet: boolean;1258 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1259 readonly isTokenPropertyDeleted: boolean;1260 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1261 readonly isPropertyPermissionSet: boolean;1262 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1263 readonly isAllowListAddressAdded: boolean;1264 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1265 readonly isAllowListAddressRemoved: boolean;1266 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1267 readonly isCollectionAdminAdded: boolean;1268 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1269 readonly isCollectionAdminRemoved: boolean;1270 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1271 readonly isCollectionLimitSet: boolean;1272 readonly asCollectionLimitSet: u32;1273 readonly isCollectionOwnerChanged: boolean;1274 readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1275 readonly isCollectionPermissionSet: boolean;1276 readonly asCollectionPermissionSet: u32;1277 readonly isCollectionSponsorSet: boolean;1278 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1279 readonly isSponsorshipConfirmed: boolean;1280 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1281 readonly isCollectionSponsorRemoved: boolean;1282 readonly asCollectionSponsorRemoved: u32;1283 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1284}12851286/** @name PalletConfigurationAppPromotionConfiguration */1287export interface PalletConfigurationAppPromotionConfiguration extends Struct {1288 readonly recalculationInterval: Option<u32>;1289 readonly pendingInterval: Option<u32>;1290 readonly intervalIncome: Option<Perbill>;1291 readonly maxStakersPerCalculation: Option<u8>;1292}12931294/** @name PalletConfigurationCall */1295export interface PalletConfigurationCall extends Enum {1296 readonly isSetWeightToFeeCoefficientOverride: boolean;1297 readonly asSetWeightToFeeCoefficientOverride: {1298 readonly coeff: Option<u64>;1299 } & Struct;1300 readonly isSetMinGasPriceOverride: boolean;1301 readonly asSetMinGasPriceOverride: {1302 readonly coeff: Option<u64>;1303 } & Struct;1304 readonly isSetXcmAllowedLocations: boolean;1305 readonly asSetXcmAllowedLocations: {1306 readonly locations: Option<Vec<XcmV1MultiLocation>>;1307 } & Struct;1308 readonly isSetAppPromotionConfigurationOverride: boolean;1309 readonly asSetAppPromotionConfigurationOverride: {1310 readonly configuration: PalletConfigurationAppPromotionConfiguration;1311 } & Struct;1312 readonly isSetCollatorSelectionDesiredCollators: boolean;1313 readonly asSetCollatorSelectionDesiredCollators: {1314 readonly max: Option<u32>;1315 } & Struct;1316 readonly isSetCollatorSelectionLicenseBond: boolean;1317 readonly asSetCollatorSelectionLicenseBond: {1318 readonly amount: Option<u128>;1319 } & Struct;1320 readonly isSetCollatorSelectionKickThreshold: boolean;1321 readonly asSetCollatorSelectionKickThreshold: {1322 readonly threshold: Option<u32>;1323 } & Struct;1324 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';1325}13261327/** @name PalletConfigurationError */1328export interface PalletConfigurationError extends Enum {1329 readonly isInconsistentConfiguration: boolean;1330 readonly type: 'InconsistentConfiguration';1331}13321333/** @name PalletConfigurationEvent */1334export interface PalletConfigurationEvent extends Enum {1335 readonly isNewDesiredCollators: boolean;1336 readonly asNewDesiredCollators: {1337 readonly desiredCollators: Option<u32>;1338 } & Struct;1339 readonly isNewCollatorLicenseBond: boolean;1340 readonly asNewCollatorLicenseBond: {1341 readonly bondCost: Option<u128>;1342 } & Struct;1343 readonly isNewCollatorKickThreshold: boolean;1344 readonly asNewCollatorKickThreshold: {1345 readonly lengthInBlocks: Option<u32>;1346 } & Struct;1347 readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';1348}13491350/** @name PalletEthereumCall */1351export interface PalletEthereumCall extends Enum {1352 readonly isTransact: boolean;1353 readonly asTransact: {1354 readonly transaction: EthereumTransactionTransactionV2;1355 } & Struct;1356 readonly type: 'Transact';1357}13581359/** @name PalletEthereumError */1360export interface PalletEthereumError extends Enum {1361 readonly isInvalidSignature: boolean;1362 readonly isPreLogExists: boolean;1363 readonly type: 'InvalidSignature' | 'PreLogExists';1364}13651366/** @name PalletEthereumEvent */1367export interface PalletEthereumEvent extends Enum {1368 readonly isExecuted: boolean;1369 readonly asExecuted: {1370 readonly from: H160;1371 readonly to: H160;1372 readonly transactionHash: H256;1373 readonly exitReason: EvmCoreErrorExitReason;1374 } & Struct;1375 readonly type: 'Executed';1376}13771378/** @name PalletEthereumFakeTransactionFinalizer */1379export interface PalletEthereumFakeTransactionFinalizer extends Null {}13801381/** @name PalletEvmAccountBasicCrossAccountIdRepr */1382export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1383 readonly isSubstrate: boolean;1384 readonly asSubstrate: AccountId32;1385 readonly isEthereum: boolean;1386 readonly asEthereum: H160;1387 readonly type: 'Substrate' | 'Ethereum';1388}13891390/** @name PalletEvmCall */1391export interface PalletEvmCall extends Enum {1392 readonly isWithdraw: boolean;1393 readonly asWithdraw: {1394 readonly address: H160;1395 readonly value: u128;1396 } & Struct;1397 readonly isCall: boolean;1398 readonly asCall: {1399 readonly source: H160;1400 readonly target: H160;1401 readonly input: Bytes;1402 readonly value: U256;1403 readonly gasLimit: u64;1404 readonly maxFeePerGas: U256;1405 readonly maxPriorityFeePerGas: Option<U256>;1406 readonly nonce: Option<U256>;1407 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1408 } & Struct;1409 readonly isCreate: boolean;1410 readonly asCreate: {1411 readonly source: H160;1412 readonly init: Bytes;1413 readonly value: U256;1414 readonly gasLimit: u64;1415 readonly maxFeePerGas: U256;1416 readonly maxPriorityFeePerGas: Option<U256>;1417 readonly nonce: Option<U256>;1418 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1419 } & Struct;1420 readonly isCreate2: boolean;1421 readonly asCreate2: {1422 readonly source: H160;1423 readonly init: Bytes;1424 readonly salt: H256;1425 readonly value: U256;1426 readonly gasLimit: u64;1427 readonly maxFeePerGas: U256;1428 readonly maxPriorityFeePerGas: Option<U256>;1429 readonly nonce: Option<U256>;1430 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1431 } & Struct;1432 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1433}14341435/** @name PalletEvmCoderSubstrateError */1436export interface PalletEvmCoderSubstrateError extends Enum {1437 readonly isOutOfGas: boolean;1438 readonly isOutOfFund: boolean;1439 readonly type: 'OutOfGas' | 'OutOfFund';1440}14411442/** @name PalletEvmContractHelpersError */1443export interface PalletEvmContractHelpersError extends Enum {1444 readonly isNoPermission: boolean;1445 readonly isNoPendingSponsor: boolean;1446 readonly isTooManyMethodsHaveSponsoredLimit: boolean;1447 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';1448}14491450/** @name PalletEvmContractHelpersEvent */1451export interface PalletEvmContractHelpersEvent extends Enum {1452 readonly isContractSponsorSet: boolean;1453 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1454 readonly isContractSponsorshipConfirmed: boolean;1455 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1456 readonly isContractSponsorRemoved: boolean;1457 readonly asContractSponsorRemoved: H160;1458 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1459}14601461/** @name PalletEvmContractHelpersSponsoringModeT */1462export interface PalletEvmContractHelpersSponsoringModeT extends Enum {1463 readonly isDisabled: boolean;1464 readonly isAllowlisted: boolean;1465 readonly isGenerous: boolean;1466 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';1467}14681469/** @name PalletEvmError */1470export interface PalletEvmError extends Enum {1471 readonly isBalanceLow: boolean;1472 readonly isFeeOverflow: boolean;1473 readonly isPaymentOverflow: boolean;1474 readonly isWithdrawFailed: boolean;1475 readonly isGasPriceTooLow: boolean;1476 readonly isInvalidNonce: boolean;1477 readonly isGasLimitTooLow: boolean;1478 readonly isGasLimitTooHigh: boolean;1479 readonly isUndefined: boolean;1480 readonly isReentrancy: boolean;1481 readonly isTransactionMustComeFromEOA: boolean;1482 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';1483}14841485/** @name PalletEvmEvent */1486export interface PalletEvmEvent extends Enum {1487 readonly isLog: boolean;1488 readonly asLog: {1489 readonly log: EthereumLog;1490 } & Struct;1491 readonly isCreated: boolean;1492 readonly asCreated: {1493 readonly address: H160;1494 } & Struct;1495 readonly isCreatedFailed: boolean;1496 readonly asCreatedFailed: {1497 readonly address: H160;1498 } & Struct;1499 readonly isExecuted: boolean;1500 readonly asExecuted: {1501 readonly address: H160;1502 } & Struct;1503 readonly isExecutedFailed: boolean;1504 readonly asExecutedFailed: {1505 readonly address: H160;1506 } & Struct;1507 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1508}15091510/** @name PalletEvmMigrationCall */1511export interface PalletEvmMigrationCall extends Enum {1512 readonly isBegin: boolean;1513 readonly asBegin: {1514 readonly address: H160;1515 } & Struct;1516 readonly isSetData: boolean;1517 readonly asSetData: {1518 readonly address: H160;1519 readonly data: Vec<ITuple<[H256, H256]>>;1520 } & Struct;1521 readonly isFinish: boolean;1522 readonly asFinish: {1523 readonly address: H160;1524 readonly code: Bytes;1525 } & Struct;1526 readonly isInsertEthLogs: boolean;1527 readonly asInsertEthLogs: {1528 readonly logs: Vec<EthereumLog>;1529 } & Struct;1530 readonly isInsertEvents: boolean;1531 readonly asInsertEvents: {1532 readonly events: Vec<Bytes>;1533 } & Struct;1534 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';1535}15361537/** @name PalletEvmMigrationError */1538export interface PalletEvmMigrationError extends Enum {1539 readonly isAccountNotEmpty: boolean;1540 readonly isAccountIsNotMigrating: boolean;1541 readonly isBadEvent: boolean;1542 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';1543}15441545/** @name PalletEvmMigrationEvent */1546export interface PalletEvmMigrationEvent extends Enum {1547 readonly isTestEvent: boolean;1548 readonly type: 'TestEvent';1549}15501551/** @name PalletForeignAssetsAssetIds */1552export interface PalletForeignAssetsAssetIds extends Enum {1553 readonly isForeignAssetId: boolean;1554 readonly asForeignAssetId: u32;1555 readonly isNativeAssetId: boolean;1556 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;1557 readonly type: 'ForeignAssetId' | 'NativeAssetId';1558}15591560/** @name PalletForeignAssetsModuleAssetMetadata */1561export interface PalletForeignAssetsModuleAssetMetadata extends Struct {1562 readonly name: Bytes;1563 readonly symbol: Bytes;1564 readonly decimals: u8;1565 readonly minimalBalance: u128;1566}15671568/** @name PalletForeignAssetsModuleCall */1569export interface PalletForeignAssetsModuleCall extends Enum {1570 readonly isRegisterForeignAsset: boolean;1571 readonly asRegisterForeignAsset: {1572 readonly owner: AccountId32;1573 readonly location: XcmVersionedMultiLocation;1574 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1575 } & Struct;1576 readonly isUpdateForeignAsset: boolean;1577 readonly asUpdateForeignAsset: {1578 readonly foreignAssetId: u32;1579 readonly location: XcmVersionedMultiLocation;1580 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1581 } & Struct;1582 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';1583}15841585/** @name PalletForeignAssetsModuleError */1586export interface PalletForeignAssetsModuleError extends Enum {1587 readonly isBadLocation: boolean;1588 readonly isMultiLocationExisted: boolean;1589 readonly isAssetIdNotExists: boolean;1590 readonly isAssetIdExisted: boolean;1591 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';1592}15931594/** @name PalletForeignAssetsModuleEvent */1595export interface PalletForeignAssetsModuleEvent extends Enum {1596 readonly isForeignAssetRegistered: boolean;1597 readonly asForeignAssetRegistered: {1598 readonly assetId: u32;1599 readonly assetAddress: XcmV1MultiLocation;1600 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1601 } & Struct;1602 readonly isForeignAssetUpdated: boolean;1603 readonly asForeignAssetUpdated: {1604 readonly assetId: u32;1605 readonly assetAddress: XcmV1MultiLocation;1606 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1607 } & Struct;1608 readonly isAssetRegistered: boolean;1609 readonly asAssetRegistered: {1610 readonly assetId: PalletForeignAssetsAssetIds;1611 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1612 } & Struct;1613 readonly isAssetUpdated: boolean;1614 readonly asAssetUpdated: {1615 readonly assetId: PalletForeignAssetsAssetIds;1616 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1617 } & Struct;1618 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1619}16201621/** @name PalletForeignAssetsNativeCurrency */1622export interface PalletForeignAssetsNativeCurrency extends Enum {1623 readonly isHere: boolean;1624 readonly isParent: boolean;1625 readonly type: 'Here' | 'Parent';1626}16271628/** @name PalletFungibleError */1629export interface PalletFungibleError extends Enum {1630 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;1631 readonly isFungibleItemsHaveNoId: boolean;1632 readonly isFungibleItemsDontHaveData: boolean;1633 readonly isFungibleDisallowsNesting: boolean;1634 readonly isSettingPropertiesNotAllowed: boolean;1635 readonly isSettingAllowanceForAllNotAllowed: boolean;1636 readonly isFungibleTokensAreAlwaysValid: boolean;1637 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';1638}16391640/** @name PalletInflationCall */1641export interface PalletInflationCall extends Enum {1642 readonly isStartInflation: boolean;1643 readonly asStartInflation: {1644 readonly inflationStartRelayBlock: u32;1645 } & Struct;1646 readonly type: 'StartInflation';1647}16481649/** @name PalletMaintenanceCall */1650export interface PalletMaintenanceCall extends Enum {1651 readonly isEnable: boolean;1652 readonly isDisable: boolean;1653 readonly type: 'Enable' | 'Disable';1654}16551656/** @name PalletMaintenanceError */1657export interface PalletMaintenanceError extends Null {}16581659/** @name PalletMaintenanceEvent */1660export interface PalletMaintenanceEvent extends Enum {1661 readonly isMaintenanceEnabled: boolean;1662 readonly isMaintenanceDisabled: boolean;1663 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1664}16651666/** @name PalletNonfungibleError */1667export interface PalletNonfungibleError extends Enum {1668 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;1669 readonly isNonfungibleItemsHaveNoAmount: boolean;1670 readonly isCantBurnNftWithChildren: boolean;1671 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';1672}16731674/** @name PalletNonfungibleItemData */1675export interface PalletNonfungibleItemData extends Struct {1676 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;1677}16781679/** @name PalletRefungibleError */1680export interface PalletRefungibleError extends Enum {1681 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;1682 readonly isWrongRefungiblePieces: boolean;1683 readonly isRepartitionWhileNotOwningAllPieces: boolean;1684 readonly isRefungibleDisallowsNesting: boolean;1685 readonly isSettingPropertiesNotAllowed: boolean;1686 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';1687}16881689/** @name PalletRmrkCoreCall */1690export interface PalletRmrkCoreCall extends Enum {1691 readonly isCreateCollection: boolean;1692 readonly asCreateCollection: {1693 readonly metadata: Bytes;1694 readonly max: Option<u32>;1695 readonly symbol: Bytes;1696 } & Struct;1697 readonly isDestroyCollection: boolean;1698 readonly asDestroyCollection: {1699 readonly collectionId: u32;1700 } & Struct;1701 readonly isChangeCollectionIssuer: boolean;1702 readonly asChangeCollectionIssuer: {1703 readonly collectionId: u32;1704 readonly newIssuer: MultiAddress;1705 } & Struct;1706 readonly isLockCollection: boolean;1707 readonly asLockCollection: {1708 readonly collectionId: u32;1709 } & Struct;1710 readonly isMintNft: boolean;1711 readonly asMintNft: {1712 readonly owner: Option<AccountId32>;1713 readonly collectionId: u32;1714 readonly recipient: Option<AccountId32>;1715 readonly royaltyAmount: Option<Permill>;1716 readonly metadata: Bytes;1717 readonly transferable: bool;1718 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;1719 } & Struct;1720 readonly isBurnNft: boolean;1721 readonly asBurnNft: {1722 readonly collectionId: u32;1723 readonly nftId: u32;1724 readonly maxBurns: u32;1725 } & Struct;1726 readonly isSend: boolean;1727 readonly asSend: {1728 readonly rmrkCollectionId: u32;1729 readonly rmrkNftId: u32;1730 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1731 } & Struct;1732 readonly isAcceptNft: boolean;1733 readonly asAcceptNft: {1734 readonly rmrkCollectionId: u32;1735 readonly rmrkNftId: u32;1736 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;1737 } & Struct;1738 readonly isRejectNft: boolean;1739 readonly asRejectNft: {1740 readonly rmrkCollectionId: u32;1741 readonly rmrkNftId: u32;1742 } & Struct;1743 readonly isAcceptResource: boolean;1744 readonly asAcceptResource: {1745 readonly rmrkCollectionId: u32;1746 readonly rmrkNftId: u32;1747 readonly resourceId: u32;1748 } & Struct;1749 readonly isAcceptResourceRemoval: boolean;1750 readonly asAcceptResourceRemoval: {1751 readonly rmrkCollectionId: u32;1752 readonly rmrkNftId: u32;1753 readonly resourceId: u32;1754 } & Struct;1755 readonly isSetProperty: boolean;1756 readonly asSetProperty: {1757 readonly rmrkCollectionId: Compact<u32>;1758 readonly maybeNftId: Option<u32>;1759 readonly key: Bytes;1760 readonly value: Bytes;1761 } & Struct;1762 readonly isSetPriority: boolean;1763 readonly asSetPriority: {1764 readonly rmrkCollectionId: u32;1765 readonly rmrkNftId: u32;1766 readonly priorities: Vec<u32>;1767 } & Struct;1768 readonly isAddBasicResource: boolean;1769 readonly asAddBasicResource: {1770 readonly rmrkCollectionId: u32;1771 readonly nftId: u32;1772 readonly resource: RmrkTraitsResourceBasicResource;1773 } & Struct;1774 readonly isAddComposableResource: boolean;1775 readonly asAddComposableResource: {1776 readonly rmrkCollectionId: u32;1777 readonly nftId: u32;1778 readonly resource: RmrkTraitsResourceComposableResource;1779 } & Struct;1780 readonly isAddSlotResource: boolean;1781 readonly asAddSlotResource: {1782 readonly rmrkCollectionId: u32;1783 readonly nftId: u32;1784 readonly resource: RmrkTraitsResourceSlotResource;1785 } & Struct;1786 readonly isRemoveResource: boolean;1787 readonly asRemoveResource: {1788 readonly rmrkCollectionId: u32;1789 readonly nftId: u32;1790 readonly resourceId: u32;1791 } & Struct;1792 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';1793}17941795/** @name PalletRmrkCoreError */1796export interface PalletRmrkCoreError extends Enum {1797 readonly isCorruptedCollectionType: boolean;1798 readonly isRmrkPropertyKeyIsTooLong: boolean;1799 readonly isRmrkPropertyValueIsTooLong: boolean;1800 readonly isRmrkPropertyIsNotFound: boolean;1801 readonly isUnableToDecodeRmrkData: boolean;1802 readonly isCollectionNotEmpty: boolean;1803 readonly isNoAvailableCollectionId: boolean;1804 readonly isNoAvailableNftId: boolean;1805 readonly isCollectionUnknown: boolean;1806 readonly isNoPermission: boolean;1807 readonly isNonTransferable: boolean;1808 readonly isCollectionFullOrLocked: boolean;1809 readonly isResourceDoesntExist: boolean;1810 readonly isCannotSendToDescendentOrSelf: boolean;1811 readonly isCannotAcceptNonOwnedNft: boolean;1812 readonly isCannotRejectNonOwnedNft: boolean;1813 readonly isCannotRejectNonPendingNft: boolean;1814 readonly isResourceNotPending: boolean;1815 readonly isNoAvailableResourceId: boolean;1816 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';1817}18181819/** @name PalletRmrkCoreEvent */1820export interface PalletRmrkCoreEvent extends Enum {1821 readonly isCollectionCreated: boolean;1822 readonly asCollectionCreated: {1823 readonly issuer: AccountId32;1824 readonly collectionId: u32;1825 } & Struct;1826 readonly isCollectionDestroyed: boolean;1827 readonly asCollectionDestroyed: {1828 readonly issuer: AccountId32;1829 readonly collectionId: u32;1830 } & Struct;1831 readonly isIssuerChanged: boolean;1832 readonly asIssuerChanged: {1833 readonly oldIssuer: AccountId32;1834 readonly newIssuer: AccountId32;1835 readonly collectionId: u32;1836 } & Struct;1837 readonly isCollectionLocked: boolean;1838 readonly asCollectionLocked: {1839 readonly issuer: AccountId32;1840 readonly collectionId: u32;1841 } & Struct;1842 readonly isNftMinted: boolean;1843 readonly asNftMinted: {1844 readonly owner: AccountId32;1845 readonly collectionId: u32;1846 readonly nftId: u32;1847 } & Struct;1848 readonly isNftBurned: boolean;1849 readonly asNftBurned: {1850 readonly owner: AccountId32;1851 readonly nftId: u32;1852 } & Struct;1853 readonly isNftSent: boolean;1854 readonly asNftSent: {1855 readonly sender: AccountId32;1856 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1857 readonly collectionId: u32;1858 readonly nftId: u32;1859 readonly approvalRequired: bool;1860 } & Struct;1861 readonly isNftAccepted: boolean;1862 readonly asNftAccepted: {1863 readonly sender: AccountId32;1864 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1865 readonly collectionId: u32;1866 readonly nftId: u32;1867 } & Struct;1868 readonly isNftRejected: boolean;1869 readonly asNftRejected: {1870 readonly sender: AccountId32;1871 readonly collectionId: u32;1872 readonly nftId: u32;1873 } & Struct;1874 readonly isPropertySet: boolean;1875 readonly asPropertySet: {1876 readonly collectionId: u32;1877 readonly maybeNftId: Option<u32>;1878 readonly key: Bytes;1879 readonly value: Bytes;1880 } & Struct;1881 readonly isResourceAdded: boolean;1882 readonly asResourceAdded: {1883 readonly nftId: u32;1884 readonly resourceId: u32;1885 } & Struct;1886 readonly isResourceRemoval: boolean;1887 readonly asResourceRemoval: {1888 readonly nftId: u32;1889 readonly resourceId: u32;1890 } & Struct;1891 readonly isResourceAccepted: boolean;1892 readonly asResourceAccepted: {1893 readonly nftId: u32;1894 readonly resourceId: u32;1895 } & Struct;1896 readonly isResourceRemovalAccepted: boolean;1897 readonly asResourceRemovalAccepted: {1898 readonly nftId: u32;1899 readonly resourceId: u32;1900 } & Struct;1901 readonly isPrioritySet: boolean;1902 readonly asPrioritySet: {1903 readonly collectionId: u32;1904 readonly nftId: u32;1905 } & Struct;1906 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1907}19081909/** @name PalletRmrkEquipCall */1910export interface PalletRmrkEquipCall extends Enum {1911 readonly isCreateBase: boolean;1912 readonly asCreateBase: {1913 readonly baseType: Bytes;1914 readonly symbol: Bytes;1915 readonly parts: Vec<RmrkTraitsPartPartType>;1916 } & Struct;1917 readonly isThemeAdd: boolean;1918 readonly asThemeAdd: {1919 readonly baseId: u32;1920 readonly theme: RmrkTraitsTheme;1921 } & Struct;1922 readonly isEquippable: boolean;1923 readonly asEquippable: {1924 readonly baseId: u32;1925 readonly slotId: u32;1926 readonly equippables: RmrkTraitsPartEquippableList;1927 } & Struct;1928 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';1929}19301931/** @name PalletRmrkEquipError */1932export interface PalletRmrkEquipError extends Enum {1933 readonly isPermissionError: boolean;1934 readonly isNoAvailableBaseId: boolean;1935 readonly isNoAvailablePartId: boolean;1936 readonly isBaseDoesntExist: boolean;1937 readonly isNeedsDefaultThemeFirst: boolean;1938 readonly isPartDoesntExist: boolean;1939 readonly isNoEquippableOnFixedPart: boolean;1940 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';1941}19421943/** @name PalletRmrkEquipEvent */1944export interface PalletRmrkEquipEvent extends Enum {1945 readonly isBaseCreated: boolean;1946 readonly asBaseCreated: {1947 readonly issuer: AccountId32;1948 readonly baseId: u32;1949 } & Struct;1950 readonly isEquippablesUpdated: boolean;1951 readonly asEquippablesUpdated: {1952 readonly baseId: u32;1953 readonly slotId: u32;1954 } & Struct;1955 readonly type: 'BaseCreated' | 'EquippablesUpdated';1956}19571958/** @name PalletStructureCall */1959export interface PalletStructureCall extends Null {}19601961/** @name PalletStructureError */1962export interface PalletStructureError extends Enum {1963 readonly isOuroborosDetected: boolean;1964 readonly isDepthLimit: boolean;1965 readonly isBreadthLimit: boolean;1966 readonly isTokenNotFound: boolean;1967 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';1968}19691970/** @name PalletStructureEvent */1971export interface PalletStructureEvent extends Enum {1972 readonly isExecuted: boolean;1973 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1974 readonly type: 'Executed';1975}19761977/** @name PalletSudoCall */1978export interface PalletSudoCall extends Enum {1979 readonly isSudo: boolean;1980 readonly asSudo: {1981 readonly call: Call;1982 } & Struct;1983 readonly isSudoUncheckedWeight: boolean;1984 readonly asSudoUncheckedWeight: {1985 readonly call: Call;1986 readonly weight: SpWeightsWeightV2Weight;1987 } & Struct;1988 readonly isSetKey: boolean;1989 readonly asSetKey: {1990 readonly new_: MultiAddress;1991 } & Struct;1992 readonly isSudoAs: boolean;1993 readonly asSudoAs: {1994 readonly who: MultiAddress;1995 readonly call: Call;1996 } & Struct;1997 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1998}19992000/** @name PalletSudoError */2001export interface PalletSudoError extends Enum {2002 readonly isRequireSudo: boolean;2003 readonly type: 'RequireSudo';2004}20052006/** @name PalletSudoEvent */2007export interface PalletSudoEvent extends Enum {2008 readonly isSudid: boolean;2009 readonly asSudid: {2010 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;2011 } & Struct;2012 readonly isKeyChanged: boolean;2013 readonly asKeyChanged: {2014 readonly oldSudoer: Option<AccountId32>;2015 } & Struct;2016 readonly isSudoAsDone: boolean;2017 readonly asSudoAsDone: {2018 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;2019 } & Struct;2020 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';2021}20222023/** @name PalletTemplateTransactionPaymentCall */2024export interface PalletTemplateTransactionPaymentCall extends Null {}20252026/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */2027export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}20282029/** @name PalletTestUtilsCall */2030export interface PalletTestUtilsCall extends Enum {2031 readonly isEnable: boolean;2032 readonly isSetTestValue: boolean;2033 readonly asSetTestValue: {2034 readonly value: u32;2035 } & Struct;2036 readonly isSetTestValueAndRollback: boolean;2037 readonly asSetTestValueAndRollback: {2038 readonly value: u32;2039 } & Struct;2040 readonly isIncTestValue: boolean;2041 readonly isJustTakeFee: boolean;2042 readonly isBatchAll: boolean;2043 readonly asBatchAll: {2044 readonly calls: Vec<Call>;2045 } & Struct;2046 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';2047}20482049/** @name PalletTestUtilsError */2050export interface PalletTestUtilsError extends Enum {2051 readonly isTestPalletDisabled: boolean;2052 readonly isTriggerRollback: boolean;2053 readonly type: 'TestPalletDisabled' | 'TriggerRollback';2054}20552056/** @name PalletTestUtilsEvent */2057export interface PalletTestUtilsEvent extends Enum {2058 readonly isValueIsSet: boolean;2059 readonly isShouldRollback: boolean;2060 readonly isBatchCompleted: boolean;2061 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';2062}20632064/** @name PalletTimestampCall */2065export interface PalletTimestampCall extends Enum {2066 readonly isSet: boolean;2067 readonly asSet: {2068 readonly now: Compact<u64>;2069 } & Struct;2070 readonly type: 'Set';2071}20722073/** @name PalletTransactionPaymentEvent */2074export interface PalletTransactionPaymentEvent extends Enum {2075 readonly isTransactionFeePaid: boolean;2076 readonly asTransactionFeePaid: {2077 readonly who: AccountId32;2078 readonly actualFee: u128;2079 readonly tip: u128;2080 } & Struct;2081 readonly type: 'TransactionFeePaid';2082}20832084/** @name PalletTransactionPaymentReleases */2085export interface PalletTransactionPaymentReleases extends Enum {2086 readonly isV1Ancient: boolean;2087 readonly isV2: boolean;2088 readonly type: 'V1Ancient' | 'V2';2089}20902091/** @name PalletTreasuryCall */2092export interface PalletTreasuryCall extends Enum {2093 readonly isProposeSpend: boolean;2094 readonly asProposeSpend: {2095 readonly value: Compact<u128>;2096 readonly beneficiary: MultiAddress;2097 } & Struct;2098 readonly isRejectProposal: boolean;2099 readonly asRejectProposal: {2100 readonly proposalId: Compact<u32>;2101 } & Struct;2102 readonly isApproveProposal: boolean;2103 readonly asApproveProposal: {2104 readonly proposalId: Compact<u32>;2105 } & Struct;2106 readonly isSpend: boolean;2107 readonly asSpend: {2108 readonly amount: Compact<u128>;2109 readonly beneficiary: MultiAddress;2110 } & Struct;2111 readonly isRemoveApproval: boolean;2112 readonly asRemoveApproval: {2113 readonly proposalId: Compact<u32>;2114 } & Struct;2115 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';2116}21172118/** @name PalletTreasuryError */2119export interface PalletTreasuryError extends Enum {2120 readonly isInsufficientProposersBalance: boolean;2121 readonly isInvalidIndex: boolean;2122 readonly isTooManyApprovals: boolean;2123 readonly isInsufficientPermission: boolean;2124 readonly isProposalNotApproved: boolean;2125 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';2126}21272128/** @name PalletTreasuryEvent */2129export interface PalletTreasuryEvent extends Enum {2130 readonly isProposed: boolean;2131 readonly asProposed: {2132 readonly proposalIndex: u32;2133 } & Struct;2134 readonly isSpending: boolean;2135 readonly asSpending: {2136 readonly budgetRemaining: u128;2137 } & Struct;2138 readonly isAwarded: boolean;2139 readonly asAwarded: {2140 readonly proposalIndex: u32;2141 readonly award: u128;2142 readonly account: AccountId32;2143 } & Struct;2144 readonly isRejected: boolean;2145 readonly asRejected: {2146 readonly proposalIndex: u32;2147 readonly slashed: u128;2148 } & Struct;2149 readonly isBurnt: boolean;2150 readonly asBurnt: {2151 readonly burntFunds: u128;2152 } & Struct;2153 readonly isRollover: boolean;2154 readonly asRollover: {2155 readonly rolloverBalance: u128;2156 } & Struct;2157 readonly isDeposit: boolean;2158 readonly asDeposit: {2159 readonly value: u128;2160 } & Struct;2161 readonly isSpendApproved: boolean;2162 readonly asSpendApproved: {2163 readonly proposalIndex: u32;2164 readonly amount: u128;2165 readonly beneficiary: AccountId32;2166 } & Struct;2167 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';2168}21692170/** @name PalletTreasuryProposal */2171export interface PalletTreasuryProposal extends Struct {2172 readonly proposer: AccountId32;2173 readonly value: u128;2174 readonly beneficiary: AccountId32;2175 readonly bond: u128;2176}21772178/** @name PalletUniqueCall */2179export interface PalletUniqueCall extends Enum {2180 readonly isCreateCollection: boolean;2181 readonly asCreateCollection: {2182 readonly collectionName: Vec<u16>;2183 readonly collectionDescription: Vec<u16>;2184 readonly tokenPrefix: Bytes;2185 readonly mode: UpDataStructsCollectionMode;2186 } & Struct;2187 readonly isCreateCollectionEx: boolean;2188 readonly asCreateCollectionEx: {2189 readonly data: UpDataStructsCreateCollectionData;2190 } & Struct;2191 readonly isDestroyCollection: boolean;2192 readonly asDestroyCollection: {2193 readonly collectionId: u32;2194 } & Struct;2195 readonly isAddToAllowList: boolean;2196 readonly asAddToAllowList: {2197 readonly collectionId: u32;2198 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2199 } & Struct;2200 readonly isRemoveFromAllowList: boolean;2201 readonly asRemoveFromAllowList: {2202 readonly collectionId: u32;2203 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2204 } & Struct;2205 readonly isChangeCollectionOwner: boolean;2206 readonly asChangeCollectionOwner: {2207 readonly collectionId: u32;2208 readonly newOwner: AccountId32;2209 } & Struct;2210 readonly isAddCollectionAdmin: boolean;2211 readonly asAddCollectionAdmin: {2212 readonly collectionId: u32;2213 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2214 } & Struct;2215 readonly isRemoveCollectionAdmin: boolean;2216 readonly asRemoveCollectionAdmin: {2217 readonly collectionId: u32;2218 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2219 } & Struct;2220 readonly isSetCollectionSponsor: boolean;2221 readonly asSetCollectionSponsor: {2222 readonly collectionId: u32;2223 readonly newSponsor: AccountId32;2224 } & Struct;2225 readonly isConfirmSponsorship: boolean;2226 readonly asConfirmSponsorship: {2227 readonly collectionId: u32;2228 } & Struct;2229 readonly isRemoveCollectionSponsor: boolean;2230 readonly asRemoveCollectionSponsor: {2231 readonly collectionId: u32;2232 } & Struct;2233 readonly isCreateItem: boolean;2234 readonly asCreateItem: {2235 readonly collectionId: u32;2236 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2237 readonly data: UpDataStructsCreateItemData;2238 } & Struct;2239 readonly isCreateMultipleItems: boolean;2240 readonly asCreateMultipleItems: {2241 readonly collectionId: u32;2242 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2243 readonly itemsData: Vec<UpDataStructsCreateItemData>;2244 } & Struct;2245 readonly isSetCollectionProperties: boolean;2246 readonly asSetCollectionProperties: {2247 readonly collectionId: u32;2248 readonly properties: Vec<UpDataStructsProperty>;2249 } & Struct;2250 readonly isDeleteCollectionProperties: boolean;2251 readonly asDeleteCollectionProperties: {2252 readonly collectionId: u32;2253 readonly propertyKeys: Vec<Bytes>;2254 } & Struct;2255 readonly isSetTokenProperties: boolean;2256 readonly asSetTokenProperties: {2257 readonly collectionId: u32;2258 readonly tokenId: u32;2259 readonly properties: Vec<UpDataStructsProperty>;2260 } & Struct;2261 readonly isDeleteTokenProperties: boolean;2262 readonly asDeleteTokenProperties: {2263 readonly collectionId: u32;2264 readonly tokenId: u32;2265 readonly propertyKeys: Vec<Bytes>;2266 } & Struct;2267 readonly isSetTokenPropertyPermissions: boolean;2268 readonly asSetTokenPropertyPermissions: {2269 readonly collectionId: u32;2270 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2271 } & Struct;2272 readonly isCreateMultipleItemsEx: boolean;2273 readonly asCreateMultipleItemsEx: {2274 readonly collectionId: u32;2275 readonly data: UpDataStructsCreateItemExData;2276 } & Struct;2277 readonly isSetTransfersEnabledFlag: boolean;2278 readonly asSetTransfersEnabledFlag: {2279 readonly collectionId: u32;2280 readonly value: bool;2281 } & Struct;2282 readonly isBurnItem: boolean;2283 readonly asBurnItem: {2284 readonly collectionId: u32;2285 readonly itemId: u32;2286 readonly value: u128;2287 } & Struct;2288 readonly isBurnFrom: boolean;2289 readonly asBurnFrom: {2290 readonly collectionId: u32;2291 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2292 readonly itemId: u32;2293 readonly value: u128;2294 } & Struct;2295 readonly isTransfer: boolean;2296 readonly asTransfer: {2297 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2298 readonly collectionId: u32;2299 readonly itemId: u32;2300 readonly value: u128;2301 } & Struct;2302 readonly isApprove: boolean;2303 readonly asApprove: {2304 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2305 readonly collectionId: u32;2306 readonly itemId: u32;2307 readonly amount: u128;2308 } & Struct;2309 readonly isTransferFrom: boolean;2310 readonly asTransferFrom: {2311 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2312 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2313 readonly collectionId: u32;2314 readonly itemId: u32;2315 readonly value: u128;2316 } & Struct;2317 readonly isSetCollectionLimits: boolean;2318 readonly asSetCollectionLimits: {2319 readonly collectionId: u32;2320 readonly newLimit: UpDataStructsCollectionLimits;2321 } & Struct;2322 readonly isSetCollectionPermissions: boolean;2323 readonly asSetCollectionPermissions: {2324 readonly collectionId: u32;2325 readonly newPermission: UpDataStructsCollectionPermissions;2326 } & Struct;2327 readonly isRepartition: boolean;2328 readonly asRepartition: {2329 readonly collectionId: u32;2330 readonly tokenId: u32;2331 readonly amount: u128;2332 } & Struct;2333 readonly isSetAllowanceForAll: boolean;2334 readonly asSetAllowanceForAll: {2335 readonly collectionId: u32;2336 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2337 readonly approve: bool;2338 } & Struct;2339 readonly isForceRepairCollection: boolean;2340 readonly asForceRepairCollection: {2341 readonly collectionId: u32;2342 } & Struct;2343 readonly isForceRepairItem: boolean;2344 readonly asForceRepairItem: {2345 readonly collectionId: u32;2346 readonly itemId: u32;2347 } & Struct;2348 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';2349}23502351/** @name PalletUniqueError */2352export interface PalletUniqueError extends Enum {2353 readonly isCollectionDecimalPointLimitExceeded: boolean;2354 readonly isEmptyArgument: boolean;2355 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;2356 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';2357}23582359/** @name PalletXcmCall */2360export interface PalletXcmCall extends Enum {2361 readonly isSend: boolean;2362 readonly asSend: {2363 readonly dest: XcmVersionedMultiLocation;2364 readonly message: XcmVersionedXcm;2365 } & Struct;2366 readonly isTeleportAssets: boolean;2367 readonly asTeleportAssets: {2368 readonly dest: XcmVersionedMultiLocation;2369 readonly beneficiary: XcmVersionedMultiLocation;2370 readonly assets: XcmVersionedMultiAssets;2371 readonly feeAssetItem: u32;2372 } & Struct;2373 readonly isReserveTransferAssets: boolean;2374 readonly asReserveTransferAssets: {2375 readonly dest: XcmVersionedMultiLocation;2376 readonly beneficiary: XcmVersionedMultiLocation;2377 readonly assets: XcmVersionedMultiAssets;2378 readonly feeAssetItem: u32;2379 } & Struct;2380 readonly isExecute: boolean;2381 readonly asExecute: {2382 readonly message: XcmVersionedXcm;2383 readonly maxWeight: u64;2384 } & Struct;2385 readonly isForceXcmVersion: boolean;2386 readonly asForceXcmVersion: {2387 readonly location: XcmV1MultiLocation;2388 readonly xcmVersion: u32;2389 } & Struct;2390 readonly isForceDefaultXcmVersion: boolean;2391 readonly asForceDefaultXcmVersion: {2392 readonly maybeXcmVersion: Option<u32>;2393 } & Struct;2394 readonly isForceSubscribeVersionNotify: boolean;2395 readonly asForceSubscribeVersionNotify: {2396 readonly location: XcmVersionedMultiLocation;2397 } & Struct;2398 readonly isForceUnsubscribeVersionNotify: boolean;2399 readonly asForceUnsubscribeVersionNotify: {2400 readonly location: XcmVersionedMultiLocation;2401 } & Struct;2402 readonly isLimitedReserveTransferAssets: boolean;2403 readonly asLimitedReserveTransferAssets: {2404 readonly dest: XcmVersionedMultiLocation;2405 readonly beneficiary: XcmVersionedMultiLocation;2406 readonly assets: XcmVersionedMultiAssets;2407 readonly feeAssetItem: u32;2408 readonly weightLimit: XcmV2WeightLimit;2409 } & Struct;2410 readonly isLimitedTeleportAssets: boolean;2411 readonly asLimitedTeleportAssets: {2412 readonly dest: XcmVersionedMultiLocation;2413 readonly beneficiary: XcmVersionedMultiLocation;2414 readonly assets: XcmVersionedMultiAssets;2415 readonly feeAssetItem: u32;2416 readonly weightLimit: XcmV2WeightLimit;2417 } & Struct;2418 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2419}24202421/** @name PalletXcmError */2422export interface PalletXcmError extends Enum {2423 readonly isUnreachable: boolean;2424 readonly isSendFailure: boolean;2425 readonly isFiltered: boolean;2426 readonly isUnweighableMessage: boolean;2427 readonly isDestinationNotInvertible: boolean;2428 readonly isEmpty: boolean;2429 readonly isCannotReanchor: boolean;2430 readonly isTooManyAssets: boolean;2431 readonly isInvalidOrigin: boolean;2432 readonly isBadVersion: boolean;2433 readonly isBadLocation: boolean;2434 readonly isNoSubscription: boolean;2435 readonly isAlreadySubscribed: boolean;2436 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';2437}24382439/** @name PalletXcmEvent */2440export interface PalletXcmEvent extends Enum {2441 readonly isAttempted: boolean;2442 readonly asAttempted: XcmV2TraitsOutcome;2443 readonly isSent: boolean;2444 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;2445 readonly isUnexpectedResponse: boolean;2446 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;2447 readonly isResponseReady: boolean;2448 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;2449 readonly isNotified: boolean;2450 readonly asNotified: ITuple<[u64, u8, u8]>;2451 readonly isNotifyOverweight: boolean;2452 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;2453 readonly isNotifyDispatchError: boolean;2454 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2455 readonly isNotifyDecodeFailed: boolean;2456 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;2457 readonly isInvalidResponder: boolean;2458 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;2459 readonly isInvalidResponderVersion: boolean;2460 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;2461 readonly isResponseTaken: boolean;2462 readonly asResponseTaken: u64;2463 readonly isAssetsTrapped: boolean;2464 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2465 readonly isVersionChangeNotified: boolean;2466 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;2467 readonly isSupportedVersionChanged: boolean;2468 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;2469 readonly isNotifyTargetSendFail: boolean;2470 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;2471 readonly isNotifyTargetMigrationFail: boolean;2472 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2473 readonly isAssetsClaimed: boolean;2474 readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;2475 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';2476}24772478/** @name PhantomTypeUpDataStructs */2479export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild, UpPovEstimateRpcPovInfo]>> {}24802481/** @name PolkadotCorePrimitivesInboundDownwardMessage */2482export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {2483 readonly sentAt: u32;2484 readonly msg: Bytes;2485}24862487/** @name PolkadotCorePrimitivesInboundHrmpMessage */2488export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {2489 readonly sentAt: u32;2490 readonly data: Bytes;2491}24922493/** @name PolkadotCorePrimitivesOutboundHrmpMessage */2494export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {2495 readonly recipient: u32;2496 readonly data: Bytes;2497}24982499/** @name PolkadotParachainPrimitivesXcmpMessageFormat */2500export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2501 readonly isConcatenatedVersionedXcm: boolean;2502 readonly isConcatenatedEncodedBlob: boolean;2503 readonly isSignals: boolean;2504 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2505}25062507/** @name PolkadotPrimitivesV2AbridgedHostConfiguration */2508export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {2509 readonly maxCodeSize: u32;2510 readonly maxHeadDataSize: u32;2511 readonly maxUpwardQueueCount: u32;2512 readonly maxUpwardQueueSize: u32;2513 readonly maxUpwardMessageSize: u32;2514 readonly maxUpwardMessageNumPerCandidate: u32;2515 readonly hrmpMaxMessageNumPerCandidate: u32;2516 readonly validationUpgradeCooldown: u32;2517 readonly validationUpgradeDelay: u32;2518}25192520/** @name PolkadotPrimitivesV2AbridgedHrmpChannel */2521export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {2522 readonly maxCapacity: u32;2523 readonly maxTotalSize: u32;2524 readonly maxMessageSize: u32;2525 readonly msgCount: u32;2526 readonly totalSize: u32;2527 readonly mqcHead: Option<H256>;2528}25292530/** @name PolkadotPrimitivesV2PersistedValidationData */2531export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {2532 readonly parentHead: Bytes;2533 readonly relayParentNumber: u32;2534 readonly relayParentStorageRoot: H256;2535 readonly maxPovSize: u32;2536}25372538/** @name PolkadotPrimitivesV2UpgradeRestriction */2539export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {2540 readonly isPresent: boolean;2541 readonly type: 'Present';2542}25432544/** @name RmrkTraitsBaseBaseInfo */2545export interface RmrkTraitsBaseBaseInfo extends Struct {2546 readonly issuer: AccountId32;2547 readonly baseType: Bytes;2548 readonly symbol: Bytes;2549}25502551/** @name RmrkTraitsCollectionCollectionInfo */2552export interface RmrkTraitsCollectionCollectionInfo extends Struct {2553 readonly issuer: AccountId32;2554 readonly metadata: Bytes;2555 readonly max: Option<u32>;2556 readonly symbol: Bytes;2557 readonly nftsCount: u32;2558}25592560/** @name RmrkTraitsNftAccountIdOrCollectionNftTuple */2561export interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {2562 readonly isAccountId: boolean;2563 readonly asAccountId: AccountId32;2564 readonly isCollectionAndNftTuple: boolean;2565 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;2566 readonly type: 'AccountId' | 'CollectionAndNftTuple';2567}25682569/** @name RmrkTraitsNftNftChild */2570export interface RmrkTraitsNftNftChild extends Struct {2571 readonly collectionId: u32;2572 readonly nftId: u32;2573}25742575/** @name RmrkTraitsNftNftInfo */2576export interface RmrkTraitsNftNftInfo extends Struct {2577 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2578 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;2579 readonly metadata: Bytes;2580 readonly equipped: bool;2581 readonly pending: bool;2582}25832584/** @name RmrkTraitsNftRoyaltyInfo */2585export interface RmrkTraitsNftRoyaltyInfo extends Struct {2586 readonly recipient: AccountId32;2587 readonly amount: Permill;2588}25892590/** @name RmrkTraitsPartEquippableList */2591export interface RmrkTraitsPartEquippableList extends Enum {2592 readonly isAll: boolean;2593 readonly isEmpty: boolean;2594 readonly isCustom: boolean;2595 readonly asCustom: Vec<u32>;2596 readonly type: 'All' | 'Empty' | 'Custom';2597}25982599/** @name RmrkTraitsPartFixedPart */2600export interface RmrkTraitsPartFixedPart extends Struct {2601 readonly id: u32;2602 readonly z: u32;2603 readonly src: Bytes;2604}26052606/** @name RmrkTraitsPartPartType */2607export interface RmrkTraitsPartPartType extends Enum {2608 readonly isFixedPart: boolean;2609 readonly asFixedPart: RmrkTraitsPartFixedPart;2610 readonly isSlotPart: boolean;2611 readonly asSlotPart: RmrkTraitsPartSlotPart;2612 readonly type: 'FixedPart' | 'SlotPart';2613}26142615/** @name RmrkTraitsPartSlotPart */2616export interface RmrkTraitsPartSlotPart extends Struct {2617 readonly id: u32;2618 readonly equippable: RmrkTraitsPartEquippableList;2619 readonly src: Bytes;2620 readonly z: u32;2621}26222623/** @name RmrkTraitsPropertyPropertyInfo */2624export interface RmrkTraitsPropertyPropertyInfo extends Struct {2625 readonly key: Bytes;2626 readonly value: Bytes;2627}26282629/** @name RmrkTraitsResourceBasicResource */2630export interface RmrkTraitsResourceBasicResource extends Struct {2631 readonly src: Option<Bytes>;2632 readonly metadata: Option<Bytes>;2633 readonly license: Option<Bytes>;2634 readonly thumb: Option<Bytes>;2635}26362637/** @name RmrkTraitsResourceComposableResource */2638export interface RmrkTraitsResourceComposableResource extends Struct {2639 readonly parts: Vec<u32>;2640 readonly base: u32;2641 readonly src: Option<Bytes>;2642 readonly metadata: Option<Bytes>;2643 readonly license: Option<Bytes>;2644 readonly thumb: Option<Bytes>;2645}26462647/** @name RmrkTraitsResourceResourceInfo */2648export interface RmrkTraitsResourceResourceInfo extends Struct {2649 readonly id: u32;2650 readonly resource: RmrkTraitsResourceResourceTypes;2651 readonly pending: bool;2652 readonly pendingRemoval: bool;2653}26542655/** @name RmrkTraitsResourceResourceTypes */2656export interface RmrkTraitsResourceResourceTypes extends Enum {2657 readonly isBasic: boolean;2658 readonly asBasic: RmrkTraitsResourceBasicResource;2659 readonly isComposable: boolean;2660 readonly asComposable: RmrkTraitsResourceComposableResource;2661 readonly isSlot: boolean;2662 readonly asSlot: RmrkTraitsResourceSlotResource;2663 readonly type: 'Basic' | 'Composable' | 'Slot';2664}26652666/** @name RmrkTraitsResourceSlotResource */2667export interface RmrkTraitsResourceSlotResource extends Struct {2668 readonly base: u32;2669 readonly src: Option<Bytes>;2670 readonly metadata: Option<Bytes>;2671 readonly slot: u32;2672 readonly license: Option<Bytes>;2673 readonly thumb: Option<Bytes>;2674}26752676/** @name RmrkTraitsTheme */2677export interface RmrkTraitsTheme extends Struct {2678 readonly name: Bytes;2679 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2680 readonly inherit: bool;2681}26822683/** @name RmrkTraitsThemeThemeProperty */2684export interface RmrkTraitsThemeThemeProperty extends Struct {2685 readonly key: Bytes;2686 readonly value: Bytes;2687}26882689/** @name SpCoreEcdsaSignature */2690export interface SpCoreEcdsaSignature extends U8aFixed {}26912692/** @name SpCoreEd25519Signature */2693export interface SpCoreEd25519Signature extends U8aFixed {}26942695/** @name SpCoreSr25519Signature */2696export interface SpCoreSr25519Signature extends U8aFixed {}26972698/** @name SpRuntimeArithmeticError */2699export interface SpRuntimeArithmeticError extends Enum {2700 readonly isUnderflow: boolean;2701 readonly isOverflow: boolean;2702 readonly isDivisionByZero: boolean;2703 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2704}27052706/** @name SpRuntimeDigest */2707export interface SpRuntimeDigest extends Struct {2708 readonly logs: Vec<SpRuntimeDigestDigestItem>;2709}27102711/** @name SpRuntimeDigestDigestItem */2712export interface SpRuntimeDigestDigestItem extends Enum {2713 readonly isOther: boolean;2714 readonly asOther: Bytes;2715 readonly isConsensus: boolean;2716 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;2717 readonly isSeal: boolean;2718 readonly asSeal: ITuple<[U8aFixed, Bytes]>;2719 readonly isPreRuntime: boolean;2720 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;2721 readonly isRuntimeEnvironmentUpdated: boolean;2722 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2723}27242725/** @name SpRuntimeDispatchError */2726export interface SpRuntimeDispatchError extends Enum {2727 readonly isOther: boolean;2728 readonly isCannotLookup: boolean;2729 readonly isBadOrigin: boolean;2730 readonly isModule: boolean;2731 readonly asModule: SpRuntimeModuleError;2732 readonly isConsumerRemaining: boolean;2733 readonly isNoProviders: boolean;2734 readonly isTooManyConsumers: boolean;2735 readonly isToken: boolean;2736 readonly asToken: SpRuntimeTokenError;2737 readonly isArithmetic: boolean;2738 readonly asArithmetic: SpRuntimeArithmeticError;2739 readonly isTransactional: boolean;2740 readonly asTransactional: SpRuntimeTransactionalError;2741 readonly isExhausted: boolean;2742 readonly isCorruption: boolean;2743 readonly isUnavailable: boolean;2744 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';2745}27462747/** @name SpRuntimeModuleError */2748export interface SpRuntimeModuleError extends Struct {2749 readonly index: u8;2750 readonly error: U8aFixed;2751}27522753/** @name SpRuntimeMultiSignature */2754export interface SpRuntimeMultiSignature extends Enum {2755 readonly isEd25519: boolean;2756 readonly asEd25519: SpCoreEd25519Signature;2757 readonly isSr25519: boolean;2758 readonly asSr25519: SpCoreSr25519Signature;2759 readonly isEcdsa: boolean;2760 readonly asEcdsa: SpCoreEcdsaSignature;2761 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2762}27632764/** @name SpRuntimeTokenError */2765export interface SpRuntimeTokenError extends Enum {2766 readonly isNoFunds: boolean;2767 readonly isWouldDie: boolean;2768 readonly isBelowMinimum: boolean;2769 readonly isCannotCreate: boolean;2770 readonly isUnknownAsset: boolean;2771 readonly isFrozen: boolean;2772 readonly isUnsupported: boolean;2773 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2774}27752776/** @name SpRuntimeTransactionalError */2777export interface SpRuntimeTransactionalError extends Enum {2778 readonly isLimitReached: boolean;2779 readonly isNoLayer: boolean;2780 readonly type: 'LimitReached' | 'NoLayer';2781}27822783/** @name SpRuntimeTransactionValidityInvalidTransaction */2784export interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {2785 readonly isCall: boolean;2786 readonly isPayment: boolean;2787 readonly isFuture: boolean;2788 readonly isStale: boolean;2789 readonly isBadProof: boolean;2790 readonly isAncientBirthBlock: boolean;2791 readonly isExhaustsResources: boolean;2792 readonly isCustom: boolean;2793 readonly asCustom: u8;2794 readonly isBadMandatory: boolean;2795 readonly isMandatoryValidation: boolean;2796 readonly isBadSigner: boolean;2797 readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';2798}27992800/** @name SpRuntimeTransactionValidityTransactionValidityError */2801export interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {2802 readonly isInvalid: boolean;2803 readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;2804 readonly isUnknown: boolean;2805 readonly asUnknown: SpRuntimeTransactionValidityUnknownTransaction;2806 readonly type: 'Invalid' | 'Unknown';2807}28082809/** @name SpRuntimeTransactionValidityUnknownTransaction */2810export interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {2811 readonly isCannotLookup: boolean;2812 readonly isNoUnsignedValidator: boolean;2813 readonly isCustom: boolean;2814 readonly asCustom: u8;2815 readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';2816}28172818/** @name SpTrieStorageProof */2819export interface SpTrieStorageProof extends Struct {2820 readonly trieNodes: BTreeSet<Bytes>;2821}28222823/** @name SpVersionRuntimeVersion */2824export interface SpVersionRuntimeVersion extends Struct {2825 readonly specName: Text;2826 readonly implName: Text;2827 readonly authoringVersion: u32;2828 readonly specVersion: u32;2829 readonly implVersion: u32;2830 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2831 readonly transactionVersion: u32;2832 readonly stateVersion: u8;2833}28342835/** @name SpWeightsRuntimeDbWeight */2836export interface SpWeightsRuntimeDbWeight extends Struct {2837 readonly read: u64;2838 readonly write: u64;2839}28402841/** @name SpWeightsWeightV2Weight */2842export interface SpWeightsWeightV2Weight extends Struct {2843 readonly refTime: Compact<u64>;2844 readonly proofSize: Compact<u64>;2845}28462847/** @name UpDataStructsAccessMode */2848export interface UpDataStructsAccessMode extends Enum {2849 readonly isNormal: boolean;2850 readonly isAllowList: boolean;2851 readonly type: 'Normal' | 'AllowList';2852}28532854/** @name UpDataStructsCollection */2855export interface UpDataStructsCollection extends Struct {2856 readonly owner: AccountId32;2857 readonly mode: UpDataStructsCollectionMode;2858 readonly name: Vec<u16>;2859 readonly description: Vec<u16>;2860 readonly tokenPrefix: Bytes;2861 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;2862 readonly limits: UpDataStructsCollectionLimits;2863 readonly permissions: UpDataStructsCollectionPermissions;2864 readonly flags: U8aFixed;2865}28662867/** @name UpDataStructsCollectionLimits */2868export interface UpDataStructsCollectionLimits extends Struct {2869 readonly accountTokenOwnershipLimit: Option<u32>;2870 readonly sponsoredDataSize: Option<u32>;2871 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2872 readonly tokenLimit: Option<u32>;2873 readonly sponsorTransferTimeout: Option<u32>;2874 readonly sponsorApproveTimeout: Option<u32>;2875 readonly ownerCanTransfer: Option<bool>;2876 readonly ownerCanDestroy: Option<bool>;2877 readonly transfersEnabled: Option<bool>;2878}28792880/** @name UpDataStructsCollectionMode */2881export interface UpDataStructsCollectionMode extends Enum {2882 readonly isNft: boolean;2883 readonly isFungible: boolean;2884 readonly asFungible: u8;2885 readonly isReFungible: boolean;2886 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2887}28882889/** @name UpDataStructsCollectionPermissions */2890export interface UpDataStructsCollectionPermissions extends Struct {2891 readonly access: Option<UpDataStructsAccessMode>;2892 readonly mintMode: Option<bool>;2893 readonly nesting: Option<UpDataStructsNestingPermissions>;2894}28952896/** @name UpDataStructsCollectionStats */2897export interface UpDataStructsCollectionStats extends Struct {2898 readonly created: u32;2899 readonly destroyed: u32;2900 readonly alive: u32;2901}29022903/** @name UpDataStructsCreateCollectionData */2904export interface UpDataStructsCreateCollectionData extends Struct {2905 readonly mode: UpDataStructsCollectionMode;2906 readonly access: Option<UpDataStructsAccessMode>;2907 readonly name: Vec<u16>;2908 readonly description: Vec<u16>;2909 readonly tokenPrefix: Bytes;2910 readonly pendingSponsor: Option<AccountId32>;2911 readonly limits: Option<UpDataStructsCollectionLimits>;2912 readonly permissions: Option<UpDataStructsCollectionPermissions>;2913 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2914 readonly properties: Vec<UpDataStructsProperty>;2915}29162917/** @name UpDataStructsCreateFungibleData */2918export interface UpDataStructsCreateFungibleData extends Struct {2919 readonly value: u128;2920}29212922/** @name UpDataStructsCreateItemData */2923export interface UpDataStructsCreateItemData extends Enum {2924 readonly isNft: boolean;2925 readonly asNft: UpDataStructsCreateNftData;2926 readonly isFungible: boolean;2927 readonly asFungible: UpDataStructsCreateFungibleData;2928 readonly isReFungible: boolean;2929 readonly asReFungible: UpDataStructsCreateReFungibleData;2930 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2931}29322933/** @name UpDataStructsCreateItemExData */2934export interface UpDataStructsCreateItemExData extends Enum {2935 readonly isNft: boolean;2936 readonly asNft: Vec<UpDataStructsCreateNftExData>;2937 readonly isFungible: boolean;2938 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr,u128>;2939 readonly isRefungibleMultipleItems: boolean;2940 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2941 readonly isRefungibleMultipleOwners: boolean;2942 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2943 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2944}29452946/** @name UpDataStructsCreateNftData */2947export interface UpDataStructsCreateNftData extends Struct {2948 readonly properties: Vec<UpDataStructsProperty>;2949}29502951/** @name UpDataStructsCreateNftExData */2952export interface UpDataStructsCreateNftExData extends Struct {2953 readonly properties: Vec<UpDataStructsProperty>;2954 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2955}29562957/** @name UpDataStructsCreateReFungibleData */2958export interface UpDataStructsCreateReFungibleData extends Struct {2959 readonly pieces: u128;2960 readonly properties: Vec<UpDataStructsProperty>;2961}29622963/** @name UpDataStructsCreateRefungibleExMultipleOwners */2964export interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2965 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2966 readonly properties: Vec<UpDataStructsProperty>;2967}29682969/** @name UpDataStructsCreateRefungibleExSingleOwner */2970export interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2971 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2972 readonly pieces: u128;2973 readonly properties: Vec<UpDataStructsProperty>;2974}29752976/** @name UpDataStructsNestingPermissions */2977export interface UpDataStructsNestingPermissions extends Struct {2978 readonly tokenOwner: bool;2979 readonly collectionAdmin: bool;2980 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2981}29822983/** @name UpDataStructsOwnerRestrictedSet */2984export interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}29852986/** @name UpDataStructsProperties */2987export interface UpDataStructsProperties extends Struct {2988 readonly map: UpDataStructsPropertiesMapBoundedVec;2989 readonly consumedSpace: u32;2990 readonly spaceLimit: u32;2991}29922993/** @name UpDataStructsPropertiesMapBoundedVec */2994export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}29952996/** @name UpDataStructsPropertiesMapPropertyPermission */2997export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}29982999/** @name UpDataStructsProperty */3000export interface UpDataStructsProperty extends Struct {3001 readonly key: Bytes;3002 readonly value: Bytes;3003}30043005/** @name UpDataStructsPropertyKeyPermission */3006export interface UpDataStructsPropertyKeyPermission extends Struct {3007 readonly key: Bytes;3008 readonly permission: UpDataStructsPropertyPermission;3009}30103011/** @name UpDataStructsPropertyPermission */3012export interface UpDataStructsPropertyPermission extends Struct {3013 readonly mutable: bool;3014 readonly collectionAdmin: bool;3015 readonly tokenOwner: bool;3016}30173018/** @name UpDataStructsPropertyScope */3019export interface UpDataStructsPropertyScope extends Enum {3020 readonly isNone: boolean;3021 readonly isRmrk: boolean;3022 readonly type: 'None' | 'Rmrk';3023}30243025/** @name UpDataStructsRpcCollection */3026export interface UpDataStructsRpcCollection extends Struct {3027 readonly owner: AccountId32;3028 readonly mode: UpDataStructsCollectionMode;3029 readonly name: Vec<u16>;3030 readonly description: Vec<u16>;3031 readonly tokenPrefix: Bytes;3032 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3033 readonly limits: UpDataStructsCollectionLimits;3034 readonly permissions: UpDataStructsCollectionPermissions;3035 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3036 readonly properties: Vec<UpDataStructsProperty>;3037 readonly readOnly: bool;3038 readonly flags: UpDataStructsRpcCollectionFlags;3039}30403041/** @name UpDataStructsRpcCollectionFlags */3042export interface UpDataStructsRpcCollectionFlags extends Struct {3043 readonly foreign: bool;3044 readonly erc721metadata: bool;3045}30463047/** @name UpDataStructsSponsoringRateLimit */3048export interface UpDataStructsSponsoringRateLimit extends Enum {3049 readonly isSponsoringDisabled: boolean;3050 readonly isBlocks: boolean;3051 readonly asBlocks: u32;3052 readonly type: 'SponsoringDisabled' | 'Blocks';3053}30543055/** @name UpDataStructsSponsorshipStateAccountId32 */3056export interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3057 readonly isDisabled: boolean;3058 readonly isUnconfirmed: boolean;3059 readonly asUnconfirmed: AccountId32;3060 readonly isConfirmed: boolean;3061 readonly asConfirmed: AccountId32;3062 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3063}30643065/** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr */3066export interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3067 readonly isDisabled: boolean;3068 readonly isUnconfirmed: boolean;3069 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3070 readonly isConfirmed: boolean;3071 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3072 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3073}30743075/** @name UpDataStructsTokenChild */3076export interface UpDataStructsTokenChild extends Struct {3077 readonly token: u32;3078 readonly collection: u32;3079}30803081/** @name UpDataStructsTokenData */3082export interface UpDataStructsTokenData extends Struct {3083 readonly properties: Vec<UpDataStructsProperty>;3084 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3085 readonly pieces: u128;3086}30873088/** @name UpPovEstimateRpcPovInfo */3089export interface UpPovEstimateRpcPovInfo extends Struct {3090 readonly proofSize: u64;3091 readonly compactProofSize: u64;3092 readonly compressedProofSize: u64;3093 readonly results: Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>;3094 readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;3095}30963097/** @name UpPovEstimateRpcTrieKeyValue */3098export interface UpPovEstimateRpcTrieKeyValue extends Struct {3099 readonly key: Bytes;3100 readonly value: Bytes;3101}31023103/** @name XcmDoubleEncoded */3104export interface XcmDoubleEncoded extends Struct {3105 readonly encoded: Bytes;3106}31073108/** @name XcmV0Junction */3109export interface XcmV0Junction extends Enum {3110 readonly isParent: boolean;3111 readonly isParachain: boolean;3112 readonly asParachain: Compact<u32>;3113 readonly isAccountId32: boolean;3114 readonly asAccountId32: {3115 readonly network: XcmV0JunctionNetworkId;3116 readonly id: U8aFixed;3117 } & Struct;3118 readonly isAccountIndex64: boolean;3119 readonly asAccountIndex64: {3120 readonly network: XcmV0JunctionNetworkId;3121 readonly index: Compact<u64>;3122 } & Struct;3123 readonly isAccountKey20: boolean;3124 readonly asAccountKey20: {3125 readonly network: XcmV0JunctionNetworkId;3126 readonly key: U8aFixed;3127 } & Struct;3128 readonly isPalletInstance: boolean;3129 readonly asPalletInstance: u8;3130 readonly isGeneralIndex: boolean;3131 readonly asGeneralIndex: Compact<u128>;3132 readonly isGeneralKey: boolean;3133 readonly asGeneralKey: Bytes;3134 readonly isOnlyChild: boolean;3135 readonly isPlurality: boolean;3136 readonly asPlurality: {3137 readonly id: XcmV0JunctionBodyId;3138 readonly part: XcmV0JunctionBodyPart;3139 } & Struct;3140 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';3141}31423143/** @name XcmV0JunctionBodyId */3144export interface XcmV0JunctionBodyId extends Enum {3145 readonly isUnit: boolean;3146 readonly isNamed: boolean;3147 readonly asNamed: Bytes;3148 readonly isIndex: boolean;3149 readonly asIndex: Compact<u32>;3150 readonly isExecutive: boolean;3151 readonly isTechnical: boolean;3152 readonly isLegislative: boolean;3153 readonly isJudicial: boolean;3154 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';3155}31563157/** @name XcmV0JunctionBodyPart */3158export interface XcmV0JunctionBodyPart extends Enum {3159 readonly isVoice: boolean;3160 readonly isMembers: boolean;3161 readonly asMembers: {3162 readonly count: Compact<u32>;3163 } & Struct;3164 readonly isFraction: boolean;3165 readonly asFraction: {3166 readonly nom: Compact<u32>;3167 readonly denom: Compact<u32>;3168 } & Struct;3169 readonly isAtLeastProportion: boolean;3170 readonly asAtLeastProportion: {3171 readonly nom: Compact<u32>;3172 readonly denom: Compact<u32>;3173 } & Struct;3174 readonly isMoreThanProportion: boolean;3175 readonly asMoreThanProportion: {3176 readonly nom: Compact<u32>;3177 readonly denom: Compact<u32>;3178 } & Struct;3179 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';3180}31813182/** @name XcmV0JunctionNetworkId */3183export interface XcmV0JunctionNetworkId extends Enum {3184 readonly isAny: boolean;3185 readonly isNamed: boolean;3186 readonly asNamed: Bytes;3187 readonly isPolkadot: boolean;3188 readonly isKusama: boolean;3189 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';3190}31913192/** @name XcmV0MultiAsset */3193export interface XcmV0MultiAsset extends Enum {3194 readonly isNone: boolean;3195 readonly isAll: boolean;3196 readonly isAllFungible: boolean;3197 readonly isAllNonFungible: boolean;3198 readonly isAllAbstractFungible: boolean;3199 readonly asAllAbstractFungible: {3200 readonly id: Bytes;3201 } & Struct;3202 readonly isAllAbstractNonFungible: boolean;3203 readonly asAllAbstractNonFungible: {3204 readonly class: Bytes;3205 } & Struct;3206 readonly isAllConcreteFungible: boolean;3207 readonly asAllConcreteFungible: {3208 readonly id: XcmV0MultiLocation;3209 } & Struct;3210 readonly isAllConcreteNonFungible: boolean;3211 readonly asAllConcreteNonFungible: {3212 readonly class: XcmV0MultiLocation;3213 } & Struct;3214 readonly isAbstractFungible: boolean;3215 readonly asAbstractFungible: {3216 readonly id: Bytes;3217 readonly amount: Compact<u128>;3218 } & Struct;3219 readonly isAbstractNonFungible: boolean;3220 readonly asAbstractNonFungible: {3221 readonly class: Bytes;3222 readonly instance: XcmV1MultiassetAssetInstance;3223 } & Struct;3224 readonly isConcreteFungible: boolean;3225 readonly asConcreteFungible: {3226 readonly id: XcmV0MultiLocation;3227 readonly amount: Compact<u128>;3228 } & Struct;3229 readonly isConcreteNonFungible: boolean;3230 readonly asConcreteNonFungible: {3231 readonly class: XcmV0MultiLocation;3232 readonly instance: XcmV1MultiassetAssetInstance;3233 } & Struct;3234 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';3235}32363237/** @name XcmV0MultiLocation */3238export interface XcmV0MultiLocation extends Enum {3239 readonly isNull: boolean;3240 readonly isX1: boolean;3241 readonly asX1: XcmV0Junction;3242 readonly isX2: boolean;3243 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;3244 readonly isX3: boolean;3245 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3246 readonly isX4: boolean;3247 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3248 readonly isX5: boolean;3249 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3250 readonly isX6: boolean;3251 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3252 readonly isX7: boolean;3253 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3254 readonly isX8: boolean;3255 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;3256 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3257}32583259/** @name XcmV0Order */3260export interface XcmV0Order extends Enum {3261 readonly isNull: boolean;3262 readonly isDepositAsset: boolean;3263 readonly asDepositAsset: {3264 readonly assets: Vec<XcmV0MultiAsset>;3265 readonly dest: XcmV0MultiLocation;3266 } & Struct;3267 readonly isDepositReserveAsset: boolean;3268 readonly asDepositReserveAsset: {3269 readonly assets: Vec<XcmV0MultiAsset>;3270 readonly dest: XcmV0MultiLocation;3271 readonly effects: Vec<XcmV0Order>;3272 } & Struct;3273 readonly isExchangeAsset: boolean;3274 readonly asExchangeAsset: {3275 readonly give: Vec<XcmV0MultiAsset>;3276 readonly receive: Vec<XcmV0MultiAsset>;3277 } & Struct;3278 readonly isInitiateReserveWithdraw: boolean;3279 readonly asInitiateReserveWithdraw: {3280 readonly assets: Vec<XcmV0MultiAsset>;3281 readonly reserve: XcmV0MultiLocation;3282 readonly effects: Vec<XcmV0Order>;3283 } & Struct;3284 readonly isInitiateTeleport: boolean;3285 readonly asInitiateTeleport: {3286 readonly assets: Vec<XcmV0MultiAsset>;3287 readonly dest: XcmV0MultiLocation;3288 readonly effects: Vec<XcmV0Order>;3289 } & Struct;3290 readonly isQueryHolding: boolean;3291 readonly asQueryHolding: {3292 readonly queryId: Compact<u64>;3293 readonly dest: XcmV0MultiLocation;3294 readonly assets: Vec<XcmV0MultiAsset>;3295 } & Struct;3296 readonly isBuyExecution: boolean;3297 readonly asBuyExecution: {3298 readonly fees: XcmV0MultiAsset;3299 readonly weight: u64;3300 readonly debt: u64;3301 readonly haltOnError: bool;3302 readonly xcm: Vec<XcmV0Xcm>;3303 } & Struct;3304 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';3305}33063307/** @name XcmV0OriginKind */3308export interface XcmV0OriginKind extends Enum {3309 readonly isNative: boolean;3310 readonly isSovereignAccount: boolean;3311 readonly isSuperuser: boolean;3312 readonly isXcm: boolean;3313 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';3314}33153316/** @name XcmV0Response */3317export interface XcmV0Response extends Enum {3318 readonly isAssets: boolean;3319 readonly asAssets: Vec<XcmV0MultiAsset>;3320 readonly type: 'Assets';3321}33223323/** @name XcmV0Xcm */3324export interface XcmV0Xcm extends Enum {3325 readonly isWithdrawAsset: boolean;3326 readonly asWithdrawAsset: {3327 readonly assets: Vec<XcmV0MultiAsset>;3328 readonly effects: Vec<XcmV0Order>;3329 } & Struct;3330 readonly isReserveAssetDeposit: boolean;3331 readonly asReserveAssetDeposit: {3332 readonly assets: Vec<XcmV0MultiAsset>;3333 readonly effects: Vec<XcmV0Order>;3334 } & Struct;3335 readonly isTeleportAsset: boolean;3336 readonly asTeleportAsset: {3337 readonly assets: Vec<XcmV0MultiAsset>;3338 readonly effects: Vec<XcmV0Order>;3339 } & Struct;3340 readonly isQueryResponse: boolean;3341 readonly asQueryResponse: {3342 readonly queryId: Compact<u64>;3343 readonly response: XcmV0Response;3344 } & Struct;3345 readonly isTransferAsset: boolean;3346 readonly asTransferAsset: {3347 readonly assets: Vec<XcmV0MultiAsset>;3348 readonly dest: XcmV0MultiLocation;3349 } & Struct;3350 readonly isTransferReserveAsset: boolean;3351 readonly asTransferReserveAsset: {3352 readonly assets: Vec<XcmV0MultiAsset>;3353 readonly dest: XcmV0MultiLocation;3354 readonly effects: Vec<XcmV0Order>;3355 } & Struct;3356 readonly isTransact: boolean;3357 readonly asTransact: {3358 readonly originType: XcmV0OriginKind;3359 readonly requireWeightAtMost: u64;3360 readonly call: XcmDoubleEncoded;3361 } & Struct;3362 readonly isHrmpNewChannelOpenRequest: boolean;3363 readonly asHrmpNewChannelOpenRequest: {3364 readonly sender: Compact<u32>;3365 readonly maxMessageSize: Compact<u32>;3366 readonly maxCapacity: Compact<u32>;3367 } & Struct;3368 readonly isHrmpChannelAccepted: boolean;3369 readonly asHrmpChannelAccepted: {3370 readonly recipient: Compact<u32>;3371 } & Struct;3372 readonly isHrmpChannelClosing: boolean;3373 readonly asHrmpChannelClosing: {3374 readonly initiator: Compact<u32>;3375 readonly sender: Compact<u32>;3376 readonly recipient: Compact<u32>;3377 } & Struct;3378 readonly isRelayedFrom: boolean;3379 readonly asRelayedFrom: {3380 readonly who: XcmV0MultiLocation;3381 readonly message: XcmV0Xcm;3382 } & Struct;3383 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';3384}33853386/** @name XcmV1Junction */3387export interface XcmV1Junction extends Enum {3388 readonly isParachain: boolean;3389 readonly asParachain: Compact<u32>;3390 readonly isAccountId32: boolean;3391 readonly asAccountId32: {3392 readonly network: XcmV0JunctionNetworkId;3393 readonly id: U8aFixed;3394 } & Struct;3395 readonly isAccountIndex64: boolean;3396 readonly asAccountIndex64: {3397 readonly network: XcmV0JunctionNetworkId;3398 readonly index: Compact<u64>;3399 } & Struct;3400 readonly isAccountKey20: boolean;3401 readonly asAccountKey20: {3402 readonly network: XcmV0JunctionNetworkId;3403 readonly key: U8aFixed;3404 } & Struct;3405 readonly isPalletInstance: boolean;3406 readonly asPalletInstance: u8;3407 readonly isGeneralIndex: boolean;3408 readonly asGeneralIndex: Compact<u128>;3409 readonly isGeneralKey: boolean;3410 readonly asGeneralKey: Bytes;3411 readonly isOnlyChild: boolean;3412 readonly isPlurality: boolean;3413 readonly asPlurality: {3414 readonly id: XcmV0JunctionBodyId;3415 readonly part: XcmV0JunctionBodyPart;3416 } & Struct;3417 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';3418}34193420/** @name XcmV1MultiAsset */3421export interface XcmV1MultiAsset extends Struct {3422 readonly id: XcmV1MultiassetAssetId;3423 readonly fun: XcmV1MultiassetFungibility;3424}34253426/** @name XcmV1MultiassetAssetId */3427export interface XcmV1MultiassetAssetId extends Enum {3428 readonly isConcrete: boolean;3429 readonly asConcrete: XcmV1MultiLocation;3430 readonly isAbstract: boolean;3431 readonly asAbstract: Bytes;3432 readonly type: 'Concrete' | 'Abstract';3433}34343435/** @name XcmV1MultiassetAssetInstance */3436export interface XcmV1MultiassetAssetInstance extends Enum {3437 readonly isUndefined: boolean;3438 readonly isIndex: boolean;3439 readonly asIndex: Compact<u128>;3440 readonly isArray4: boolean;3441 readonly asArray4: U8aFixed;3442 readonly isArray8: boolean;3443 readonly asArray8: U8aFixed;3444 readonly isArray16: boolean;3445 readonly asArray16: U8aFixed;3446 readonly isArray32: boolean;3447 readonly asArray32: U8aFixed;3448 readonly isBlob: boolean;3449 readonly asBlob: Bytes;3450 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';3451}34523453/** @name XcmV1MultiassetFungibility */3454export interface XcmV1MultiassetFungibility extends Enum {3455 readonly isFungible: boolean;3456 readonly asFungible: Compact<u128>;3457 readonly isNonFungible: boolean;3458 readonly asNonFungible: XcmV1MultiassetAssetInstance;3459 readonly type: 'Fungible' | 'NonFungible';3460}34613462/** @name XcmV1MultiassetMultiAssetFilter */3463export interface XcmV1MultiassetMultiAssetFilter extends Enum {3464 readonly isDefinite: boolean;3465 readonly asDefinite: XcmV1MultiassetMultiAssets;3466 readonly isWild: boolean;3467 readonly asWild: XcmV1MultiassetWildMultiAsset;3468 readonly type: 'Definite' | 'Wild';3469}34703471/** @name XcmV1MultiassetMultiAssets */3472export interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}34733474/** @name XcmV1MultiassetWildFungibility */3475export interface XcmV1MultiassetWildFungibility extends Enum {3476 readonly isFungible: boolean;3477 readonly isNonFungible: boolean;3478 readonly type: 'Fungible' | 'NonFungible';3479}34803481/** @name XcmV1MultiassetWildMultiAsset */3482export interface XcmV1MultiassetWildMultiAsset extends Enum {3483 readonly isAll: boolean;3484 readonly isAllOf: boolean;3485 readonly asAllOf: {3486 readonly id: XcmV1MultiassetAssetId;3487 readonly fun: XcmV1MultiassetWildFungibility;3488 } & Struct;3489 readonly type: 'All' | 'AllOf';3490}34913492/** @name XcmV1MultiLocation */3493export interface XcmV1MultiLocation extends Struct {3494 readonly parents: u8;3495 readonly interior: XcmV1MultilocationJunctions;3496}34973498/** @name XcmV1MultilocationJunctions */3499export interface XcmV1MultilocationJunctions extends Enum {3500 readonly isHere: boolean;3501 readonly isX1: boolean;3502 readonly asX1: XcmV1Junction;3503 readonly isX2: boolean;3504 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;3505 readonly isX3: boolean;3506 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3507 readonly isX4: boolean;3508 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3509 readonly isX5: boolean;3510 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3511 readonly isX6: boolean;3512 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3513 readonly isX7: boolean;3514 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3515 readonly isX8: boolean;3516 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;3517 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3518}35193520/** @name XcmV1Order */3521export interface XcmV1Order extends Enum {3522 readonly isNoop: boolean;3523 readonly isDepositAsset: boolean;3524 readonly asDepositAsset: {3525 readonly assets: XcmV1MultiassetMultiAssetFilter;3526 readonly maxAssets: u32;3527 readonly beneficiary: XcmV1MultiLocation;3528 } & Struct;3529 readonly isDepositReserveAsset: boolean;3530 readonly asDepositReserveAsset: {3531 readonly assets: XcmV1MultiassetMultiAssetFilter;3532 readonly maxAssets: u32;3533 readonly dest: XcmV1MultiLocation;3534 readonly effects: Vec<XcmV1Order>;3535 } & Struct;3536 readonly isExchangeAsset: boolean;3537 readonly asExchangeAsset: {3538 readonly give: XcmV1MultiassetMultiAssetFilter;3539 readonly receive: XcmV1MultiassetMultiAssets;3540 } & Struct;3541 readonly isInitiateReserveWithdraw: boolean;3542 readonly asInitiateReserveWithdraw: {3543 readonly assets: XcmV1MultiassetMultiAssetFilter;3544 readonly reserve: XcmV1MultiLocation;3545 readonly effects: Vec<XcmV1Order>;3546 } & Struct;3547 readonly isInitiateTeleport: boolean;3548 readonly asInitiateTeleport: {3549 readonly assets: XcmV1MultiassetMultiAssetFilter;3550 readonly dest: XcmV1MultiLocation;3551 readonly effects: Vec<XcmV1Order>;3552 } & Struct;3553 readonly isQueryHolding: boolean;3554 readonly asQueryHolding: {3555 readonly queryId: Compact<u64>;3556 readonly dest: XcmV1MultiLocation;3557 readonly assets: XcmV1MultiassetMultiAssetFilter;3558 } & Struct;3559 readonly isBuyExecution: boolean;3560 readonly asBuyExecution: {3561 readonly fees: XcmV1MultiAsset;3562 readonly weight: u64;3563 readonly debt: u64;3564 readonly haltOnError: bool;3565 readonly instructions: Vec<XcmV1Xcm>;3566 } & Struct;3567 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';3568}35693570/** @name XcmV1Response */3571export interface XcmV1Response extends Enum {3572 readonly isAssets: boolean;3573 readonly asAssets: XcmV1MultiassetMultiAssets;3574 readonly isVersion: boolean;3575 readonly asVersion: u32;3576 readonly type: 'Assets' | 'Version';3577}35783579/** @name XcmV1Xcm */3580export interface XcmV1Xcm extends Enum {3581 readonly isWithdrawAsset: boolean;3582 readonly asWithdrawAsset: {3583 readonly assets: XcmV1MultiassetMultiAssets;3584 readonly effects: Vec<XcmV1Order>;3585 } & Struct;3586 readonly isReserveAssetDeposited: boolean;3587 readonly asReserveAssetDeposited: {3588 readonly assets: XcmV1MultiassetMultiAssets;3589 readonly effects: Vec<XcmV1Order>;3590 } & Struct;3591 readonly isReceiveTeleportedAsset: boolean;3592 readonly asReceiveTeleportedAsset: {3593 readonly assets: XcmV1MultiassetMultiAssets;3594 readonly effects: Vec<XcmV1Order>;3595 } & Struct;3596 readonly isQueryResponse: boolean;3597 readonly asQueryResponse: {3598 readonly queryId: Compact<u64>;3599 readonly response: XcmV1Response;3600 } & Struct;3601 readonly isTransferAsset: boolean;3602 readonly asTransferAsset: {3603 readonly assets: XcmV1MultiassetMultiAssets;3604 readonly beneficiary: XcmV1MultiLocation;3605 } & Struct;3606 readonly isTransferReserveAsset: boolean;3607 readonly asTransferReserveAsset: {3608 readonly assets: XcmV1MultiassetMultiAssets;3609 readonly dest: XcmV1MultiLocation;3610 readonly effects: Vec<XcmV1Order>;3611 } & Struct;3612 readonly isTransact: boolean;3613 readonly asTransact: {3614 readonly originType: XcmV0OriginKind;3615 readonly requireWeightAtMost: u64;3616 readonly call: XcmDoubleEncoded;3617 } & Struct;3618 readonly isHrmpNewChannelOpenRequest: boolean;3619 readonly asHrmpNewChannelOpenRequest: {3620 readonly sender: Compact<u32>;3621 readonly maxMessageSize: Compact<u32>;3622 readonly maxCapacity: Compact<u32>;3623 } & Struct;3624 readonly isHrmpChannelAccepted: boolean;3625 readonly asHrmpChannelAccepted: {3626 readonly recipient: Compact<u32>;3627 } & Struct;3628 readonly isHrmpChannelClosing: boolean;3629 readonly asHrmpChannelClosing: {3630 readonly initiator: Compact<u32>;3631 readonly sender: Compact<u32>;3632 readonly recipient: Compact<u32>;3633 } & Struct;3634 readonly isRelayedFrom: boolean;3635 readonly asRelayedFrom: {3636 readonly who: XcmV1MultilocationJunctions;3637 readonly message: XcmV1Xcm;3638 } & Struct;3639 readonly isSubscribeVersion: boolean;3640 readonly asSubscribeVersion: {3641 readonly queryId: Compact<u64>;3642 readonly maxResponseWeight: Compact<u64>;3643 } & Struct;3644 readonly isUnsubscribeVersion: boolean;3645 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';3646}36473648/** @name XcmV2Instruction */3649export interface XcmV2Instruction extends Enum {3650 readonly isWithdrawAsset: boolean;3651 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;3652 readonly isReserveAssetDeposited: boolean;3653 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;3654 readonly isReceiveTeleportedAsset: boolean;3655 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;3656 readonly isQueryResponse: boolean;3657 readonly asQueryResponse: {3658 readonly queryId: Compact<u64>;3659 readonly response: XcmV2Response;3660 readonly maxWeight: Compact<u64>;3661 } & Struct;3662 readonly isTransferAsset: boolean;3663 readonly asTransferAsset: {3664 readonly assets: XcmV1MultiassetMultiAssets;3665 readonly beneficiary: XcmV1MultiLocation;3666 } & Struct;3667 readonly isTransferReserveAsset: boolean;3668 readonly asTransferReserveAsset: {3669 readonly assets: XcmV1MultiassetMultiAssets;3670 readonly dest: XcmV1MultiLocation;3671 readonly xcm: XcmV2Xcm;3672 } & Struct;3673 readonly isTransact: boolean;3674 readonly asTransact: {3675 readonly originType: XcmV0OriginKind;3676 readonly requireWeightAtMost: Compact<u64>;3677 readonly call: XcmDoubleEncoded;3678 } & Struct;3679 readonly isHrmpNewChannelOpenRequest: boolean;3680 readonly asHrmpNewChannelOpenRequest: {3681 readonly sender: Compact<u32>;3682 readonly maxMessageSize: Compact<u32>;3683 readonly maxCapacity: Compact<u32>;3684 } & Struct;3685 readonly isHrmpChannelAccepted: boolean;3686 readonly asHrmpChannelAccepted: {3687 readonly recipient: Compact<u32>;3688 } & Struct;3689 readonly isHrmpChannelClosing: boolean;3690 readonly asHrmpChannelClosing: {3691 readonly initiator: Compact<u32>;3692 readonly sender: Compact<u32>;3693 readonly recipient: Compact<u32>;3694 } & Struct;3695 readonly isClearOrigin: boolean;3696 readonly isDescendOrigin: boolean;3697 readonly asDescendOrigin: XcmV1MultilocationJunctions;3698 readonly isReportError: boolean;3699 readonly asReportError: {3700 readonly queryId: Compact<u64>;3701 readonly dest: XcmV1MultiLocation;3702 readonly maxResponseWeight: Compact<u64>;3703 } & Struct;3704 readonly isDepositAsset: boolean;3705 readonly asDepositAsset: {3706 readonly assets: XcmV1MultiassetMultiAssetFilter;3707 readonly maxAssets: Compact<u32>;3708 readonly beneficiary: XcmV1MultiLocation;3709 } & Struct;3710 readonly isDepositReserveAsset: boolean;3711 readonly asDepositReserveAsset: {3712 readonly assets: XcmV1MultiassetMultiAssetFilter;3713 readonly maxAssets: Compact<u32>;3714 readonly dest: XcmV1MultiLocation;3715 readonly xcm: XcmV2Xcm;3716 } & Struct;3717 readonly isExchangeAsset: boolean;3718 readonly asExchangeAsset: {3719 readonly give: XcmV1MultiassetMultiAssetFilter;3720 readonly receive: XcmV1MultiassetMultiAssets;3721 } & Struct;3722 readonly isInitiateReserveWithdraw: boolean;3723 readonly asInitiateReserveWithdraw: {3724 readonly assets: XcmV1MultiassetMultiAssetFilter;3725 readonly reserve: XcmV1MultiLocation;3726 readonly xcm: XcmV2Xcm;3727 } & Struct;3728 readonly isInitiateTeleport: boolean;3729 readonly asInitiateTeleport: {3730 readonly assets: XcmV1MultiassetMultiAssetFilter;3731 readonly dest: XcmV1MultiLocation;3732 readonly xcm: XcmV2Xcm;3733 } & Struct;3734 readonly isQueryHolding: boolean;3735 readonly asQueryHolding: {3736 readonly queryId: Compact<u64>;3737 readonly dest: XcmV1MultiLocation;3738 readonly assets: XcmV1MultiassetMultiAssetFilter;3739 readonly maxResponseWeight: Compact<u64>;3740 } & Struct;3741 readonly isBuyExecution: boolean;3742 readonly asBuyExecution: {3743 readonly fees: XcmV1MultiAsset;3744 readonly weightLimit: XcmV2WeightLimit;3745 } & Struct;3746 readonly isRefundSurplus: boolean;3747 readonly isSetErrorHandler: boolean;3748 readonly asSetErrorHandler: XcmV2Xcm;3749 readonly isSetAppendix: boolean;3750 readonly asSetAppendix: XcmV2Xcm;3751 readonly isClearError: boolean;3752 readonly isClaimAsset: boolean;3753 readonly asClaimAsset: {3754 readonly assets: XcmV1MultiassetMultiAssets;3755 readonly ticket: XcmV1MultiLocation;3756 } & Struct;3757 readonly isTrap: boolean;3758 readonly asTrap: Compact<u64>;3759 readonly isSubscribeVersion: boolean;3760 readonly asSubscribeVersion: {3761 readonly queryId: Compact<u64>;3762 readonly maxResponseWeight: Compact<u64>;3763 } & Struct;3764 readonly isUnsubscribeVersion: boolean;3765 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';3766}37673768/** @name XcmV2Response */3769export interface XcmV2Response extends Enum {3770 readonly isNull: boolean;3771 readonly isAssets: boolean;3772 readonly asAssets: XcmV1MultiassetMultiAssets;3773 readonly isExecutionResult: boolean;3774 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;3775 readonly isVersion: boolean;3776 readonly asVersion: u32;3777 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';3778}37793780/** @name XcmV2TraitsError */3781export interface XcmV2TraitsError extends Enum {3782 readonly isOverflow: boolean;3783 readonly isUnimplemented: boolean;3784 readonly isUntrustedReserveLocation: boolean;3785 readonly isUntrustedTeleportLocation: boolean;3786 readonly isMultiLocationFull: boolean;3787 readonly isMultiLocationNotInvertible: boolean;3788 readonly isBadOrigin: boolean;3789 readonly isInvalidLocation: boolean;3790 readonly isAssetNotFound: boolean;3791 readonly isFailedToTransactAsset: boolean;3792 readonly isNotWithdrawable: boolean;3793 readonly isLocationCannotHold: boolean;3794 readonly isExceedsMaxMessageSize: boolean;3795 readonly isDestinationUnsupported: boolean;3796 readonly isTransport: boolean;3797 readonly isUnroutable: boolean;3798 readonly isUnknownClaim: boolean;3799 readonly isFailedToDecode: boolean;3800 readonly isMaxWeightInvalid: boolean;3801 readonly isNotHoldingFees: boolean;3802 readonly isTooExpensive: boolean;3803 readonly isTrap: boolean;3804 readonly asTrap: u64;3805 readonly isUnhandledXcmVersion: boolean;3806 readonly isWeightLimitReached: boolean;3807 readonly asWeightLimitReached: u64;3808 readonly isBarrier: boolean;3809 readonly isWeightNotComputable: boolean;3810 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';3811}38123813/** @name XcmV2TraitsOutcome */3814export interface XcmV2TraitsOutcome extends Enum {3815 readonly isComplete: boolean;3816 readonly asComplete: u64;3817 readonly isIncomplete: boolean;3818 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;3819 readonly isError: boolean;3820 readonly asError: XcmV2TraitsError;3821 readonly type: 'Complete' | 'Incomplete' | 'Error';3822}38233824/** @name XcmV2WeightLimit */3825export interface XcmV2WeightLimit extends Enum {3826 readonly isUnlimited: boolean;3827 readonly isLimited: boolean;3828 readonly asLimited: Compact<u64>;3829 readonly type: 'Unlimited' | 'Limited';3830}38313832/** @name XcmV2Xcm */3833export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}38343835/** @name XcmVersionedMultiAsset */3836export interface XcmVersionedMultiAsset extends Enum {3837 readonly isV0: boolean;3838 readonly asV0: XcmV0MultiAsset;3839 readonly isV1: boolean;3840 readonly asV1: XcmV1MultiAsset;3841 readonly type: 'V0' | 'V1';3842}38433844/** @name XcmVersionedMultiAssets */3845export interface XcmVersionedMultiAssets extends Enum {3846 readonly isV0: boolean;3847 readonly asV0: Vec<XcmV0MultiAsset>;3848 readonly isV1: boolean;3849 readonly asV1: XcmV1MultiassetMultiAssets;3850 readonly type: 'V0' | 'V1';3851}38523853/** @name XcmVersionedMultiLocation */3854export interface XcmVersionedMultiLocation extends Enum {3855 readonly isV0: boolean;3856 readonly asV0: XcmV0MultiLocation;3857 readonly isV1: boolean;3858 readonly asV1: XcmV1MultiLocation;3859 readonly type: 'V0' | 'V1';3860}38613862/** @name XcmVersionedXcm */3863export interface XcmVersionedXcm extends Enum {3864 readonly isV0: boolean;3865 readonly asV0: XcmV0Xcm;3866 readonly isV1: boolean;3867 readonly asV1: XcmV1Xcm;3868 readonly isV2: boolean;3869 readonly asV2: XcmV2Xcm;3870 readonly type: 'V0' | 'V1' | 'V2';3871}38723873export type PHANTOM_DEFAULT = 'default';tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -184,98 +184,7 @@
}
},
/**
- * Lookup30: pallet_collator_selection::pallet::Event<T>
- **/
- PalletCollatorSelectionEvent: {
- _enum: {
- InvulnerableAdded: {
- invulnerable: 'AccountId32',
- },
- InvulnerableRemoved: {
- invulnerable: 'AccountId32',
- },
- LicenseObtained: {
- accountId: 'AccountId32',
- deposit: 'u128',
- },
- LicenseReleased: {
- accountId: 'AccountId32',
- depositReturned: 'u128',
- },
- CandidateAdded: {
- accountId: 'AccountId32',
- },
- CandidateRemoved: {
- accountId: 'AccountId32'
- }
- }
- },
- /**
- * Lookup31: pallet_session::pallet::Event
- **/
- PalletSessionEvent: {
- _enum: {
- NewSession: {
- sessionIndex: 'u32'
- }
- }
- },
- /**
- * Lookup32: pallet_identity::pallet::Event<T>
- **/
- PalletIdentityEvent: {
- _enum: {
- IdentitySet: {
- who: 'AccountId32',
- },
- IdentityCleared: {
- who: 'AccountId32',
- deposit: 'u128',
- },
- IdentityKilled: {
- who: 'AccountId32',
- deposit: 'u128',
- },
- IdentitiesInserted: {
- amount: 'u32',
- },
- IdentitiesRemoved: {
- amount: 'u32',
- },
- JudgementRequested: {
- who: 'AccountId32',
- registrarIndex: 'u32',
- },
- JudgementUnrequested: {
- who: 'AccountId32',
- registrarIndex: 'u32',
- },
- JudgementGiven: {
- target: 'AccountId32',
- registrarIndex: 'u32',
- },
- RegistrarAdded: {
- registrarIndex: 'u32',
- },
- SubIdentityAdded: {
- sub: 'AccountId32',
- main: 'AccountId32',
- deposit: 'u128',
- },
- SubIdentityRemoved: {
- sub: 'AccountId32',
- main: 'AccountId32',
- deposit: 'u128',
- },
- SubIdentityRevoked: {
- sub: 'AccountId32',
- main: 'AccountId32',
- deposit: 'u128'
- }
- }
- },
- /**
- * Lookup33: pallet_balances::pallet::Event<T, I>
+ * Lookup30: pallet_balances::pallet::Event<T, I>
**/
PalletBalancesEvent: {
_enum: {
@@ -326,13 +235,13 @@
}
},
/**
- * Lookup34: frame_support::traits::tokens::misc::BalanceStatus
+ * Lookup31: frame_support::traits::tokens::misc::BalanceStatus
**/
FrameSupportTokensMiscBalanceStatus: {
_enum: ['Free', 'Reserved']
},
/**
- * Lookup35: pallet_transaction_payment::pallet::Event<T>
+ * Lookup32: pallet_transaction_payment::pallet::Event<T>
**/
PalletTransactionPaymentEvent: {
_enum: {
@@ -344,7 +253,7 @@
}
},
/**
- * Lookup36: pallet_treasury::pallet::Event<T, I>
+ * Lookup33: pallet_treasury::pallet::Event<T, I>
**/
PalletTreasuryEvent: {
_enum: {
@@ -380,7 +289,7 @@
}
},
/**
- * Lookup37: pallet_sudo::pallet::Event<T>
+ * Lookup34: pallet_sudo::pallet::Event<T>
**/
PalletSudoEvent: {
_enum: {
@@ -396,7 +305,7 @@
}
},
/**
- * Lookup41: orml_vesting::module::Event<T>
+ * Lookup38: orml_vesting::module::Event<T>
**/
OrmlVestingModuleEvent: {
_enum: {
@@ -415,7 +324,7 @@
}
},
/**
- * Lookup42: orml_vesting::VestingSchedule<BlockNumber, Balance>
+ * Lookup39: orml_vesting::VestingSchedule<BlockNumber, Balance>
**/
OrmlVestingVestingSchedule: {
start: 'u32',
@@ -424,7 +333,7 @@
perPeriod: 'Compact<u128>'
},
/**
- * Lookup44: orml_xtokens::module::Event<T>
+ * Lookup41: orml_xtokens::module::Event<T>
**/
OrmlXtokensModuleEvent: {
_enum: {
@@ -437,18 +346,18 @@
}
},
/**
- * Lookup45: xcm::v1::multiasset::MultiAssets
+ * Lookup42: xcm::v1::multiasset::MultiAssets
**/
XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',
/**
- * Lookup47: xcm::v1::multiasset::MultiAsset
+ * Lookup44: xcm::v1::multiasset::MultiAsset
**/
XcmV1MultiAsset: {
id: 'XcmV1MultiassetAssetId',
fun: 'XcmV1MultiassetFungibility'
},
/**
- * Lookup48: xcm::v1::multiasset::AssetId
+ * Lookup45: xcm::v1::multiasset::AssetId
**/
XcmV1MultiassetAssetId: {
_enum: {
@@ -457,14 +366,14 @@
}
},
/**
- * Lookup49: xcm::v1::multilocation::MultiLocation
+ * Lookup46: xcm::v1::multilocation::MultiLocation
**/
XcmV1MultiLocation: {
parents: 'u8',
interior: 'XcmV1MultilocationJunctions'
},
/**
- * Lookup50: xcm::v1::multilocation::Junctions
+ * Lookup47: xcm::v1::multilocation::Junctions
**/
XcmV1MultilocationJunctions: {
_enum: {
@@ -480,7 +389,7 @@
}
},
/**
- * Lookup51: xcm::v1::junction::Junction
+ * Lookup48: xcm::v1::junction::Junction
**/
XcmV1Junction: {
_enum: {
@@ -508,7 +417,7 @@
}
},
/**
- * Lookup53: xcm::v0::junction::NetworkId
+ * Lookup50: xcm::v0::junction::NetworkId
**/
XcmV0JunctionNetworkId: {
_enum: {
@@ -519,7 +428,7 @@
}
},
/**
- * Lookup56: xcm::v0::junction::BodyId
+ * Lookup53: xcm::v0::junction::BodyId
**/
XcmV0JunctionBodyId: {
_enum: {
@@ -533,7 +442,7 @@
}
},
/**
- * Lookup57: xcm::v0::junction::BodyPart
+ * Lookup54: xcm::v0::junction::BodyPart
**/
XcmV0JunctionBodyPart: {
_enum: {
@@ -556,7 +465,7 @@
}
},
/**
- * Lookup58: xcm::v1::multiasset::Fungibility
+ * Lookup55: xcm::v1::multiasset::Fungibility
**/
XcmV1MultiassetFungibility: {
_enum: {
@@ -565,7 +474,7 @@
}
},
/**
- * Lookup59: xcm::v1::multiasset::AssetInstance
+ * Lookup56: xcm::v1::multiasset::AssetInstance
**/
XcmV1MultiassetAssetInstance: {
_enum: {
@@ -579,7 +488,7 @@
}
},
/**
- * Lookup62: orml_tokens::module::Event<T>
+ * Lookup59: orml_tokens::module::Event<T>
**/
OrmlTokensModuleEvent: {
_enum: {
@@ -656,7 +565,7 @@
}
},
/**
- * Lookup63: pallet_foreign_assets::AssetIds
+ * Lookup60: pallet_foreign_assets::AssetIds
**/
PalletForeignAssetsAssetIds: {
_enum: {
@@ -665,13 +574,13 @@
}
},
/**
- * Lookup64: pallet_foreign_assets::NativeCurrency
+ * Lookup61: pallet_foreign_assets::NativeCurrency
**/
PalletForeignAssetsNativeCurrency: {
_enum: ['Here', 'Parent']
},
/**
- * Lookup65: cumulus_pallet_xcmp_queue::pallet::Event<T>
+ * Lookup62: cumulus_pallet_xcmp_queue::pallet::Event<T>
**/
CumulusPalletXcmpQueueEvent: {
_enum: {
@@ -709,7 +618,7 @@
}
},
/**
- * Lookup67: xcm::v2::traits::Error
+ * Lookup64: xcm::v2::traits::Error
**/
XcmV2TraitsError: {
_enum: {
@@ -742,7 +651,7 @@
}
},
/**
- * Lookup69: pallet_xcm::pallet::Event<T>
+ * Lookup66: pallet_xcm::pallet::Event<T>
**/
PalletXcmEvent: {
_enum: {
@@ -766,7 +675,7 @@
}
},
/**
- * Lookup70: xcm::v2::traits::Outcome
+ * Lookup67: xcm::v2::traits::Outcome
**/
XcmV2TraitsOutcome: {
_enum: {
@@ -776,11 +685,11 @@
}
},
/**
- * Lookup71: xcm::v2::Xcm<RuntimeCall>
+ * Lookup68: xcm::v2::Xcm<RuntimeCall>
**/
XcmV2Xcm: 'Vec<XcmV2Instruction>',
/**
- * Lookup73: xcm::v2::Instruction<RuntimeCall>
+ * Lookup70: xcm::v2::Instruction<RuntimeCall>
**/
XcmV2Instruction: {
_enum: {
@@ -878,7 +787,7 @@
}
},
/**
- * Lookup74: xcm::v2::Response
+ * Lookup71: xcm::v2::Response
**/
XcmV2Response: {
_enum: {
@@ -889,19 +798,19 @@
}
},
/**
- * Lookup77: xcm::v0::OriginKind
+ * Lookup74: xcm::v0::OriginKind
**/
XcmV0OriginKind: {
_enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']
},
/**
- * Lookup78: xcm::double_encoded::DoubleEncoded<T>
+ * Lookup75: xcm::double_encoded::DoubleEncoded<T>
**/
XcmDoubleEncoded: {
encoded: 'Bytes'
},
/**
- * Lookup79: xcm::v1::multiasset::MultiAssetFilter
+ * Lookup76: xcm::v1::multiasset::MultiAssetFilter
**/
XcmV1MultiassetMultiAssetFilter: {
_enum: {
@@ -910,7 +819,7 @@
}
},
/**
- * Lookup80: xcm::v1::multiasset::WildMultiAsset
+ * Lookup77: xcm::v1::multiasset::WildMultiAsset
**/
XcmV1MultiassetWildMultiAsset: {
_enum: {
@@ -922,13 +831,13 @@
}
},
/**
- * Lookup81: xcm::v1::multiasset::WildFungibility
+ * Lookup78: xcm::v1::multiasset::WildFungibility
**/
XcmV1MultiassetWildFungibility: {
_enum: ['Fungible', 'NonFungible']
},
/**
- * Lookup82: xcm::v2::WeightLimit
+ * Lookup79: xcm::v2::WeightLimit
**/
XcmV2WeightLimit: {
_enum: {
@@ -937,7 +846,7 @@
}
},
/**
- * Lookup84: xcm::VersionedMultiAssets
+ * Lookup81: xcm::VersionedMultiAssets
**/
XcmVersionedMultiAssets: {
_enum: {
@@ -946,7 +855,7 @@
}
},
/**
- * Lookup86: xcm::v0::multi_asset::MultiAsset
+ * Lookup83: xcm::v0::multi_asset::MultiAsset
**/
XcmV0MultiAsset: {
_enum: {
@@ -985,7 +894,7 @@
}
},
/**
- * Lookup87: xcm::v0::multi_location::MultiLocation
+ * Lookup84: xcm::v0::multi_location::MultiLocation
**/
XcmV0MultiLocation: {
_enum: {
@@ -1001,7 +910,7 @@
}
},
/**
- * Lookup88: xcm::v0::junction::Junction
+ * Lookup85: xcm::v0::junction::Junction
**/
XcmV0Junction: {
_enum: {
@@ -1030,7 +939,7 @@
}
},
/**
- * Lookup89: xcm::VersionedMultiLocation
+ * Lookup86: xcm::VersionedMultiLocation
**/
XcmVersionedMultiLocation: {
_enum: {
@@ -1039,7 +948,7 @@
}
},
/**
- * Lookup90: cumulus_pallet_xcm::pallet::Event<T>
+ * Lookup87: cumulus_pallet_xcm::pallet::Event<T>
**/
CumulusPalletXcmEvent: {
_enum: {
@@ -1049,7 +958,7 @@
}
},
/**
- * Lookup91: cumulus_pallet_dmp_queue::pallet::Event<T>
+ * Lookup88: cumulus_pallet_dmp_queue::pallet::Event<T>
**/
CumulusPalletDmpQueueEvent: {
_enum: {
@@ -1080,7 +989,7 @@
}
},
/**
- * Lookup92: pallet_configuration::pallet::Event<T>
+ * Lookup89: pallet_configuration::pallet::Event<T>
**/
PalletConfigurationEvent: {
_enum: {
@@ -1096,7 +1005,7 @@
}
},
/**
- * Lookup95: pallet_common::pallet::Event<T>
+ * Lookup92: pallet_common::pallet::Event<T>
**/
PalletCommonEvent: {
_enum: {
@@ -1125,7 +1034,7 @@
}
},
/**
- * Lookup98: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
+ * Lookup95: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
**/
PalletEvmAccountBasicCrossAccountIdRepr: {
_enum: {
@@ -1134,7 +1043,7 @@
}
},
/**
- * Lookup102: pallet_structure::pallet::Event<T>
+ * Lookup99: pallet_structure::pallet::Event<T>
**/
PalletStructureEvent: {
_enum: {
@@ -1142,7 +1051,7 @@
}
},
/**
- * Lookup103: pallet_rmrk_core::pallet::Event<T>
+ * Lookup100: pallet_rmrk_core::pallet::Event<T>
**/
PalletRmrkCoreEvent: {
_enum: {
@@ -1219,7 +1128,7 @@
}
},
/**
- * Lookup104: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
+ * Lookup101: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
**/
RmrkTraitsNftAccountIdOrCollectionNftTuple: {
_enum: {
@@ -1228,7 +1137,7 @@
}
},
/**
- * Lookup107: pallet_rmrk_equip::pallet::Event<T>
+ * Lookup104: pallet_rmrk_equip::pallet::Event<T>
**/
PalletRmrkEquipEvent: {
_enum: {
@@ -1243,7 +1152,7 @@
}
},
/**
- * Lookup108: pallet_app_promotion::pallet::Event<T>
+ * Lookup105: pallet_app_promotion::pallet::Event<T>
**/
PalletAppPromotionEvent: {
_enum: {
@@ -1254,7 +1163,7 @@
}
},
/**
- * Lookup109: pallet_foreign_assets::module::Event<T>
+ * Lookup106: pallet_foreign_assets::module::Event<T>
**/
PalletForeignAssetsModuleEvent: {
_enum: {
@@ -1279,7 +1188,7 @@
}
},
/**
- * Lookup110: pallet_foreign_assets::module::AssetMetadata<Balance>
+ * Lookup107: pallet_foreign_assets::module::AssetMetadata<Balance>
**/
PalletForeignAssetsModuleAssetMetadata: {
name: 'Bytes',
@@ -1288,7 +1197,7 @@
minimalBalance: 'u128'
},
/**
- * Lookup111: pallet_evm::pallet::Event<T>
+ * Lookup108: pallet_evm::pallet::Event<T>
**/
PalletEvmEvent: {
_enum: {
@@ -1310,7 +1219,7 @@
}
},
/**
- * Lookup112: ethereum::log::Log
+ * Lookup109: ethereum::log::Log
**/
EthereumLog: {
address: 'H160',
@@ -1318,7 +1227,7 @@
data: 'Bytes'
},
/**
- * Lookup114: pallet_ethereum::pallet::Event
+ * Lookup111: pallet_ethereum::pallet::Event
**/
PalletEthereumEvent: {
_enum: {
@@ -1331,7 +1240,7 @@
}
},
/**
- * Lookup115: evm_core::error::ExitReason
+ * Lookup112: evm_core::error::ExitReason
**/
EvmCoreErrorExitReason: {
_enum: {
@@ -1342,13 +1251,13 @@
}
},
/**
- * Lookup116: evm_core::error::ExitSucceed
+ * Lookup113: evm_core::error::ExitSucceed
**/
EvmCoreErrorExitSucceed: {
_enum: ['Stopped', 'Returned', 'Suicided']
},
/**
- * Lookup117: evm_core::error::ExitError
+ * Lookup114: evm_core::error::ExitError
**/
EvmCoreErrorExitError: {
_enum: {
@@ -1370,13 +1279,13 @@
}
},
/**
- * Lookup120: evm_core::error::ExitRevert
+ * Lookup117: evm_core::error::ExitRevert
**/
EvmCoreErrorExitRevert: {
_enum: ['Reverted']
},
/**
- * Lookup121: evm_core::error::ExitFatal
+ * Lookup118: evm_core::error::ExitFatal
**/
EvmCoreErrorExitFatal: {
_enum: {
@@ -1387,7 +1296,7 @@
}
},
/**
- * Lookup122: pallet_evm_contract_helpers::pallet::Event<T>
+ * Lookup119: pallet_evm_contract_helpers::pallet::Event<T>
**/
PalletEvmContractHelpersEvent: {
_enum: {
@@ -1397,25 +1306,25 @@
}
},
/**
- * Lookup123: pallet_evm_migration::pallet::Event<T>
+ * Lookup120: pallet_evm_migration::pallet::Event<T>
**/
PalletEvmMigrationEvent: {
_enum: ['TestEvent']
},
/**
- * Lookup124: pallet_maintenance::pallet::Event<T>
+ * Lookup121: pallet_maintenance::pallet::Event<T>
**/
PalletMaintenanceEvent: {
_enum: ['MaintenanceEnabled', 'MaintenanceDisabled']
},
/**
- * Lookup125: pallet_test_utils::pallet::Event<T>
+ * Lookup122: pallet_test_utils::pallet::Event<T>
**/
PalletTestUtilsEvent: {
_enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']
},
/**
- * Lookup126: frame_system::Phase
+ * Lookup123: frame_system::Phase
**/
FrameSystemPhase: {
_enum: {
@@ -1425,14 +1334,14 @@
}
},
/**
- * Lookup129: frame_system::LastRuntimeUpgradeInfo
+ * Lookup126: frame_system::LastRuntimeUpgradeInfo
**/
FrameSystemLastRuntimeUpgradeInfo: {
specVersion: 'Compact<u32>',
specName: 'Text'
},
/**
- * Lookup130: frame_system::pallet::Call<T>
+ * Lookup127: frame_system::pallet::Call<T>
**/
FrameSystemCall: {
_enum: {
@@ -1467,7 +1376,7 @@
}
},
/**
- * Lookup134: frame_system::limits::BlockWeights
+ * Lookup131: frame_system::limits::BlockWeights
**/
FrameSystemLimitsBlockWeights: {
baseBlock: 'SpWeightsWeightV2Weight',
@@ -1475,7 +1384,7 @@
perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
},
/**
- * Lookup135: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
+ * Lookup132: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
**/
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
normal: 'FrameSystemLimitsWeightsPerClass',
@@ -1483,7 +1392,7 @@
mandatory: 'FrameSystemLimitsWeightsPerClass'
},
/**
- * Lookup136: frame_system::limits::WeightsPerClass
+ * Lookup133: frame_system::limits::WeightsPerClass
**/
FrameSystemLimitsWeightsPerClass: {
baseExtrinsic: 'SpWeightsWeightV2Weight',
@@ -1492,13 +1401,13 @@
reserved: 'Option<SpWeightsWeightV2Weight>'
},
/**
- * Lookup138: frame_system::limits::BlockLength
+ * Lookup135: frame_system::limits::BlockLength
**/
FrameSystemLimitsBlockLength: {
max: 'FrameSupportDispatchPerDispatchClassU32'
},
/**
- * Lookup139: frame_support::dispatch::PerDispatchClass<T>
+ * Lookup136: frame_support::dispatch::PerDispatchClass<T>
**/
FrameSupportDispatchPerDispatchClassU32: {
normal: 'u32',
@@ -1506,14 +1415,14 @@
mandatory: 'u32'
},
/**
- * Lookup140: sp_weights::RuntimeDbWeight
+ * Lookup137: sp_weights::RuntimeDbWeight
**/
SpWeightsRuntimeDbWeight: {
read: 'u64',
write: 'u64'
},
/**
- * Lookup141: sp_version::RuntimeVersion
+ * Lookup138: sp_version::RuntimeVersion
**/
SpVersionRuntimeVersion: {
specName: 'Text',
@@ -1526,13 +1435,13 @@
stateVersion: 'u8'
},
/**
- * Lookup146: frame_system::pallet::Error<T>
+ * Lookup143: frame_system::pallet::Error<T>
**/
FrameSystemError: {
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
},
/**
- * Lookup147: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
+ * Lookup144: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
**/
PolkadotPrimitivesV2PersistedValidationData: {
parentHead: 'Bytes',
@@ -1541,19 +1450,19 @@
maxPovSize: 'u32'
},
/**
- * Lookup150: polkadot_primitives::v2::UpgradeRestriction
+ * Lookup147: polkadot_primitives::v2::UpgradeRestriction
**/
PolkadotPrimitivesV2UpgradeRestriction: {
_enum: ['Present']
},
/**
- * Lookup151: sp_trie::storage_proof::StorageProof
+ * Lookup148: sp_trie::storage_proof::StorageProof
**/
SpTrieStorageProof: {
trieNodes: 'BTreeSet<Bytes>'
},
/**
- * Lookup153: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
+ * Lookup150: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
**/
CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
dmqMqcHead: 'H256',
@@ -1562,7 +1471,7 @@
egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
},
/**
- * Lookup156: polkadot_primitives::v2::AbridgedHrmpChannel
+ * Lookup153: polkadot_primitives::v2::AbridgedHrmpChannel
**/
PolkadotPrimitivesV2AbridgedHrmpChannel: {
maxCapacity: 'u32',
@@ -1573,7 +1482,7 @@
mqcHead: 'Option<H256>'
},
/**
- * Lookup157: polkadot_primitives::v2::AbridgedHostConfiguration
+ * Lookup154: polkadot_primitives::v2::AbridgedHostConfiguration
**/
PolkadotPrimitivesV2AbridgedHostConfiguration: {
maxCodeSize: 'u32',
@@ -1587,14 +1496,14 @@
validationUpgradeDelay: 'u32'
},
/**
- * Lookup163: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
+ * Lookup160: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
**/
PolkadotCorePrimitivesOutboundHrmpMessage: {
recipient: 'u32',
data: 'Bytes'
},
/**
- * Lookup164: cumulus_pallet_parachain_system::pallet::Call<T>
+ * Lookup161: cumulus_pallet_parachain_system::pallet::Call<T>
**/
CumulusPalletParachainSystemCall: {
_enum: {
@@ -1613,7 +1522,7 @@
}
},
/**
- * Lookup165: cumulus_primitives_parachain_inherent::ParachainInherentData
+ * Lookup162: cumulus_primitives_parachain_inherent::ParachainInherentData
**/
CumulusPrimitivesParachainInherentParachainInherentData: {
validationData: 'PolkadotPrimitivesV2PersistedValidationData',
@@ -1622,291 +1531,48 @@
horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
},
/**
- * Lookup167: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
+ * Lookup164: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundDownwardMessage: {
sentAt: 'u32',
msg: 'Bytes'
},
/**
- * Lookup170: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
+ * Lookup167: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundHrmpMessage: {
sentAt: 'u32',
data: 'Bytes'
},
/**
- * Lookup173: cumulus_pallet_parachain_system::pallet::Error<T>
+ * Lookup170: cumulus_pallet_parachain_system::pallet::Error<T>
**/
CumulusPalletParachainSystemError: {
_enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
- },
- /**
- * Lookup175: pallet_authorship::UncleEntryItem<BlockNumber, primitive_types::H256, sp_core::crypto::AccountId32>
- **/
- PalletAuthorshipUncleEntryItem: {
- _enum: {
- InclusionHeight: 'u32',
- Uncle: '(H256,Option<AccountId32>)'
- }
- },
- /**
- * Lookup177: pallet_authorship::pallet::Call<T>
- **/
- PalletAuthorshipCall: {
- _enum: {
- set_uncles: {
- newUncles: 'Vec<SpRuntimeHeader>'
- }
- }
- },
- /**
- * Lookup179: sp_runtime::generic::header::Header<Number, sp_runtime::traits::BlakeTwo256>
- **/
- SpRuntimeHeader: {
- parentHash: 'H256',
- number: 'Compact<u32>',
- stateRoot: 'H256',
- extrinsicsRoot: 'H256',
- digest: 'SpRuntimeDigest'
- },
- /**
- * Lookup180: sp_runtime::traits::BlakeTwo256
- **/
- SpRuntimeBlakeTwo256: 'Null',
- /**
- * Lookup181: pallet_authorship::pallet::Error<T>
- **/
- PalletAuthorshipError: {
- _enum: ['InvalidUncleParent', 'UnclesAlreadySet', 'TooManyUncles', 'GenesisUncle', 'TooHighUncle', 'UncleAlreadyIncluded', 'OldUncle']
},
/**
- * Lookup184: pallet_collator_selection::pallet::Call<T>
- **/
- PalletCollatorSelectionCall: {
- _enum: {
- add_invulnerable: {
- _alias: {
- new_: 'new',
- },
- new_: 'AccountId32',
- },
- remove_invulnerable: {
- who: 'AccountId32',
- },
- get_license: 'Null',
- onboard: 'Null',
- offboard: 'Null',
- release_license: 'Null',
- force_release_license: {
- who: 'AccountId32'
- }
- }
- },
- /**
- * Lookup185: pallet_collator_selection::pallet::Error<T>
- **/
- PalletCollatorSelectionError: {
- _enum: ['TooManyCandidates', 'Unknown', 'Permission', 'AlreadyHoldingLicense', 'NoLicense', 'AlreadyCandidate', 'NotCandidate', 'TooManyInvulnerables', 'TooFewInvulnerables', 'AlreadyInvulnerable', 'NotInvulnerable', 'NoAssociatedValidatorId', 'ValidatorNotRegistered']
- },
- /**
- * Lookup188: opal_runtime::runtime_common::SessionKeys
- **/
- OpalRuntimeRuntimeCommonSessionKeys: {
- aura: 'SpConsensusAuraSr25519AppSr25519Public'
- },
- /**
- * Lookup189: sp_consensus_aura::sr25519::app_sr25519::Public
- **/
- SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',
- /**
- * Lookup190: sp_core::sr25519::Public
- **/
- SpCoreSr25519Public: '[u8;32]',
- /**
- * Lookup193: sp_core::crypto::KeyTypeId
- **/
- SpCoreCryptoKeyTypeId: '[u8;4]',
- /**
- * Lookup194: pallet_session::pallet::Call<T>
- **/
- PalletSessionCall: {
- _enum: {
- set_keys: {
- _alias: {
- keys_: 'keys',
- },
- keys_: 'OpalRuntimeRuntimeCommonSessionKeys',
- proof: 'Bytes',
- },
- purge_keys: 'Null'
- }
- },
- /**
- * Lookup195: pallet_session::pallet::Error<T>
- **/
- PalletSessionError: {
- _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']
- },
- /**
- * Lookup196: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>
- **/
- PalletIdentityRegistration: {
- judgements: 'Vec<(u32,PalletIdentityJudgement)>',
- deposit: 'u128',
- info: 'PalletIdentityIdentityInfo'
- },
- /**
- * Lookup199: pallet_identity::types::Judgement<Balance>
- **/
- PalletIdentityJudgement: {
- _enum: {
- Unknown: 'Null',
- FeePaid: 'u128',
- Reasonable: 'Null',
- KnownGood: 'Null',
- OutOfDate: 'Null',
- LowQuality: 'Null',
- Erroneous: 'Null'
- }
- },
- /**
- * Lookup201: pallet_identity::types::IdentityInfo<FieldLimit>
- **/
- PalletIdentityIdentityInfo: {
- additional: 'Vec<(Data,Data)>',
- display: 'Data',
- legal: 'Data',
- web: 'Data',
- riot: 'Data',
- email: 'Data',
- pgpFingerprint: 'Option<[u8;20]>',
- image: 'Data',
- twitter: 'Data'
- },
- /**
- * Lookup240: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>
- **/
- PalletIdentityRegistrarInfo: {
- account: 'AccountId32',
- fee: 'u128',
- fields: 'PalletIdentityBitFlags'
- },
- /**
- * Lookup241: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>
+ * Lookup172: pallet_balances::BalanceLock<Balance>
**/
- PalletIdentityBitFlags: {
- _bitLength: 64,
- Display: 1,
- Legal: 2,
- Web: 4,
- Riot: 8,
- Email: 16,
- PgpFingerprint: 32,
- Image: 64,
- Twitter: 128
- },
- /**
- * Lookup242: pallet_identity::types::IdentityField
- **/
- PalletIdentityIdentityField: {
- _enum: ['__Unused0', 'Display', 'Legal', '__Unused3', 'Web', '__Unused5', '__Unused6', '__Unused7', 'Riot', '__Unused9', '__Unused10', '__Unused11', '__Unused12', '__Unused13', '__Unused14', '__Unused15', 'Email', '__Unused17', '__Unused18', '__Unused19', '__Unused20', '__Unused21', '__Unused22', '__Unused23', '__Unused24', '__Unused25', '__Unused26', '__Unused27', '__Unused28', '__Unused29', '__Unused30', '__Unused31', 'PgpFingerprint', '__Unused33', '__Unused34', '__Unused35', '__Unused36', '__Unused37', '__Unused38', '__Unused39', '__Unused40', '__Unused41', '__Unused42', '__Unused43', '__Unused44', '__Unused45', '__Unused46', '__Unused47', '__Unused48', '__Unused49', '__Unused50', '__Unused51', '__Unused52', '__Unused53', '__Unused54', '__Unused55', '__Unused56', '__Unused57', '__Unused58', '__Unused59', '__Unused60', '__Unused61', '__Unused62', '__Unused63', 'Image', '__Unused65', '__Unused66', '__Unused67', '__Unused68', '__Unused69', '__Unused70', '__Unused71', '__Unused72', '__Unused73', '__Unused74', '__Unused75', '__Unused76', '__Unused77', '__Unused78', '__Unused79', '__Unused80', '__Unused81', '__Unused82', '__Unused83', '__Unused84', '__Unused85', '__Unused86', '__Unused87', '__Unused88', '__Unused89', '__Unused90', '__Unused91', '__Unused92', '__Unused93', '__Unused94', '__Unused95', '__Unused96', '__Unused97', '__Unused98', '__Unused99', '__Unused100', '__Unused101', '__Unused102', '__Unused103', '__Unused104', '__Unused105', '__Unused106', '__Unused107', '__Unused108', '__Unused109', '__Unused110', '__Unused111', '__Unused112', '__Unused113', '__Unused114', '__Unused115', '__Unused116', '__Unused117', '__Unused118', '__Unused119', '__Unused120', '__Unused121', '__Unused122', '__Unused123', '__Unused124', '__Unused125', '__Unused126', '__Unused127', 'Twitter']
- },
- /**
- * Lookup244: pallet_identity::pallet::Call<T>
- **/
- PalletIdentityCall: {
- _enum: {
- add_registrar: {
- account: 'MultiAddress',
- },
- set_identity: {
- info: 'PalletIdentityIdentityInfo',
- },
- set_subs: {
- subs: 'Vec<(AccountId32,Data)>',
- },
- clear_identity: 'Null',
- request_judgement: {
- regIndex: 'Compact<u32>',
- maxFee: 'Compact<u128>',
- },
- cancel_request: {
- regIndex: 'u32',
- },
- set_fee: {
- index: 'Compact<u32>',
- fee: 'Compact<u128>',
- },
- set_account_id: {
- _alias: {
- new_: 'new',
- },
- index: 'Compact<u32>',
- new_: 'MultiAddress',
- },
- set_fields: {
- index: 'Compact<u32>',
- fields: 'PalletIdentityBitFlags',
- },
- provide_judgement: {
- regIndex: 'Compact<u32>',
- target: 'MultiAddress',
- judgement: 'PalletIdentityJudgement',
- identity: 'H256',
- },
- kill_identity: {
- target: 'MultiAddress',
- },
- add_sub: {
- sub: 'MultiAddress',
- data: 'Data',
- },
- rename_sub: {
- sub: 'MultiAddress',
- data: 'Data',
- },
- remove_sub: {
- sub: 'MultiAddress',
- },
- quit_sub: 'Null',
- force_insert_identities: {
- identities: 'Vec<(AccountId32,PalletIdentityRegistration)>',
- },
- force_remove_identities: {
- identities: 'Vec<AccountId32>'
- }
- }
- },
- /**
- * Lookup250: pallet_identity::pallet::Error<T>
- **/
- PalletIdentityError: {
- _enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyFields', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed']
- },
- /**
- * Lookup252: pallet_balances::BalanceLock<Balance>
- **/
PalletBalancesBalanceLock: {
id: '[u8;8]',
amount: 'u128',
reasons: 'PalletBalancesReasons'
},
/**
- * Lookup253: pallet_balances::Reasons
+ * Lookup173: pallet_balances::Reasons
**/
PalletBalancesReasons: {
_enum: ['Fee', 'Misc', 'All']
},
/**
- * Lookup256: pallet_balances::ReserveData<ReserveIdentifier, Balance>
+ * Lookup176: pallet_balances::ReserveData<ReserveIdentifier, Balance>
**/
PalletBalancesReserveData: {
id: '[u8;16]',
amount: 'u128'
},
/**
- * Lookup258: pallet_balances::pallet::Call<T, I>
+ * Lookup178: pallet_balances::pallet::Call<T, I>
**/
PalletBalancesCall: {
_enum: {
@@ -1939,13 +1605,13 @@
}
},
/**
- * Lookup259: pallet_balances::pallet::Error<T, I>
+ * Lookup181: pallet_balances::pallet::Error<T, I>
**/
PalletBalancesError: {
_enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup261: pallet_timestamp::pallet::Call<T>
+ * Lookup183: pallet_timestamp::pallet::Call<T>
**/
PalletTimestampCall: {
_enum: {
@@ -1955,13 +1621,13 @@
}
},
/**
- * Lookup263: pallet_transaction_payment::Releases
+ * Lookup185: pallet_transaction_payment::Releases
**/
PalletTransactionPaymentReleases: {
_enum: ['V1Ancient', 'V2']
},
/**
- * Lookup264: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
+ * Lookup186: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
**/
PalletTreasuryProposal: {
proposer: 'AccountId32',
@@ -1970,7 +1636,7 @@
bond: 'u128'
},
/**
- * Lookup266: pallet_treasury::pallet::Call<T, I>
+ * Lookup189: pallet_treasury::pallet::Call<T, I>
**/
PalletTreasuryCall: {
_enum: {
@@ -1994,17 +1660,17 @@
}
},
/**
- * Lookup268: frame_support::PalletId
+ * Lookup191: frame_support::PalletId
**/
FrameSupportPalletId: '[u8;8]',
/**
- * Lookup269: pallet_treasury::pallet::Error<T, I>
+ * Lookup192: pallet_treasury::pallet::Error<T, I>
**/
PalletTreasuryError: {
_enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
},
/**
- * Lookup270: pallet_sudo::pallet::Call<T>
+ * Lookup193: pallet_sudo::pallet::Call<T>
**/
PalletSudoCall: {
_enum: {
@@ -2028,7 +1694,7 @@
}
},
/**
- * Lookup272: orml_vesting::module::Call<T>
+ * Lookup195: orml_vesting::module::Call<T>
**/
OrmlVestingModuleCall: {
_enum: {
@@ -2047,7 +1713,7 @@
}
},
/**
- * Lookup274: orml_xtokens::module::Call<T>
+ * Lookup197: orml_xtokens::module::Call<T>
**/
OrmlXtokensModuleCall: {
_enum: {
@@ -2090,7 +1756,7 @@
}
},
/**
- * Lookup275: xcm::VersionedMultiAsset
+ * Lookup198: xcm::VersionedMultiAsset
**/
XcmVersionedMultiAsset: {
_enum: {
@@ -2099,7 +1765,7 @@
}
},
/**
- * Lookup278: orml_tokens::module::Call<T>
+ * Lookup201: orml_tokens::module::Call<T>
**/
OrmlTokensModuleCall: {
_enum: {
@@ -2133,7 +1799,7 @@
}
},
/**
- * Lookup279: cumulus_pallet_xcmp_queue::pallet::Call<T>
+ * Lookup202: cumulus_pallet_xcmp_queue::pallet::Call<T>
**/
CumulusPalletXcmpQueueCall: {
_enum: {
@@ -2182,7 +1848,7 @@
}
},
/**
- * Lookup280: pallet_xcm::pallet::Call<T>
+ * Lookup203: pallet_xcm::pallet::Call<T>
**/
PalletXcmCall: {
_enum: {
@@ -2236,7 +1902,7 @@
}
},
/**
- * Lookup281: xcm::VersionedXcm<RuntimeCall>
+ * Lookup204: xcm::VersionedXcm<RuntimeCall>
**/
XcmVersionedXcm: {
_enum: {
@@ -2246,7 +1912,7 @@
}
},
/**
- * Lookup282: xcm::v0::Xcm<RuntimeCall>
+ * Lookup205: xcm::v0::Xcm<RuntimeCall>
**/
XcmV0Xcm: {
_enum: {
@@ -2300,7 +1966,7 @@
}
},
/**
- * Lookup284: xcm::v0::order::Order<RuntimeCall>
+ * Lookup207: xcm::v0::order::Order<RuntimeCall>
**/
XcmV0Order: {
_enum: {
@@ -2343,7 +2009,7 @@
}
},
/**
- * Lookup286: xcm::v0::Response
+ * Lookup209: xcm::v0::Response
**/
XcmV0Response: {
_enum: {
@@ -2351,7 +2017,7 @@
}
},
/**
- * Lookup287: xcm::v1::Xcm<RuntimeCall>
+ * Lookup210: xcm::v1::Xcm<RuntimeCall>
**/
XcmV1Xcm: {
_enum: {
@@ -2410,7 +2076,7 @@
}
},
/**
- * Lookup289: xcm::v1::order::Order<RuntimeCall>
+ * Lookup212: xcm::v1::order::Order<RuntimeCall>
**/
XcmV1Order: {
_enum: {
@@ -2455,7 +2121,7 @@
}
},
/**
- * Lookup291: xcm::v1::Response
+ * Lookup214: xcm::v1::Response
**/
XcmV1Response: {
_enum: {
@@ -2464,11 +2130,11 @@
}
},
/**
- * Lookup305: cumulus_pallet_xcm::pallet::Call<T>
+ * Lookup228: cumulus_pallet_xcm::pallet::Call<T>
**/
CumulusPalletXcmCall: 'Null',
/**
- * Lookup306: cumulus_pallet_dmp_queue::pallet::Call<T>
+ * Lookup229: cumulus_pallet_dmp_queue::pallet::Call<T>
**/
CumulusPalletDmpQueueCall: {
_enum: {
@@ -2479,7 +2145,7 @@
}
},
/**
- * Lookup307: pallet_inflation::pallet::Call<T>
+ * Lookup230: pallet_inflation::pallet::Call<T>
**/
PalletInflationCall: {
_enum: {
@@ -2489,7 +2155,7 @@
}
},
/**
- * Lookup308: pallet_unique::Call<T>
+ * Lookup231: pallet_unique::Call<T>
**/
PalletUniqueCall: {
_enum: {
@@ -2633,7 +2299,7 @@
}
},
/**
- * Lookup313: up_data_structs::CollectionMode
+ * Lookup236: up_data_structs::CollectionMode
**/
UpDataStructsCollectionMode: {
_enum: {
@@ -2643,7 +2309,7 @@
}
},
/**
- * Lookup314: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
+ * Lookup237: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
**/
UpDataStructsCreateCollectionData: {
mode: 'UpDataStructsCollectionMode',
@@ -2658,13 +2324,13 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup316: up_data_structs::AccessMode
+ * Lookup239: up_data_structs::AccessMode
**/
UpDataStructsAccessMode: {
_enum: ['Normal', 'AllowList']
},
/**
- * Lookup318: up_data_structs::CollectionLimits
+ * Lookup241: up_data_structs::CollectionLimits
**/
UpDataStructsCollectionLimits: {
accountTokenOwnershipLimit: 'Option<u32>',
@@ -2678,7 +2344,7 @@
transfersEnabled: 'Option<bool>'
},
/**
- * Lookup320: up_data_structs::SponsoringRateLimit
+ * Lookup243: up_data_structs::SponsoringRateLimit
**/
UpDataStructsSponsoringRateLimit: {
_enum: {
@@ -2687,7 +2353,7 @@
}
},
/**
- * Lookup323: up_data_structs::CollectionPermissions
+ * Lookup246: up_data_structs::CollectionPermissions
**/
UpDataStructsCollectionPermissions: {
access: 'Option<UpDataStructsAccessMode>',
@@ -2695,7 +2361,7 @@
nesting: 'Option<UpDataStructsNestingPermissions>'
},
/**
- * Lookup325: up_data_structs::NestingPermissions
+ * Lookup248: up_data_structs::NestingPermissions
**/
UpDataStructsNestingPermissions: {
tokenOwner: 'bool',
@@ -2703,18 +2369,18 @@
restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
},
/**
- * Lookup327: up_data_structs::OwnerRestrictedSet
+ * Lookup250: up_data_structs::OwnerRestrictedSet
**/
UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
/**
- * Lookup332: up_data_structs::PropertyKeyPermission
+ * Lookup255: up_data_structs::PropertyKeyPermission
**/
UpDataStructsPropertyKeyPermission: {
key: 'Bytes',
permission: 'UpDataStructsPropertyPermission'
},
/**
- * Lookup333: up_data_structs::PropertyPermission
+ * Lookup256: up_data_structs::PropertyPermission
**/
UpDataStructsPropertyPermission: {
mutable: 'bool',
@@ -2722,14 +2388,14 @@
tokenOwner: 'bool'
},
/**
- * Lookup336: up_data_structs::Property
+ * Lookup259: up_data_structs::Property
**/
UpDataStructsProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup339: up_data_structs::CreateItemData
+ * Lookup262: up_data_structs::CreateItemData
**/
UpDataStructsCreateItemData: {
_enum: {
@@ -2739,26 +2405,26 @@
}
},
/**
- * Lookup340: up_data_structs::CreateNftData
+ * Lookup263: up_data_structs::CreateNftData
**/
UpDataStructsCreateNftData: {
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup341: up_data_structs::CreateFungibleData
+ * Lookup264: up_data_structs::CreateFungibleData
**/
UpDataStructsCreateFungibleData: {
value: 'u128'
},
/**
- * Lookup342: up_data_structs::CreateReFungibleData
+ * Lookup265: up_data_structs::CreateReFungibleData
**/
UpDataStructsCreateReFungibleData: {
pieces: 'u128',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup345: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup268: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateItemExData: {
_enum: {
@@ -2769,14 +2435,14 @@
}
},
/**
- * Lookup347: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup270: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateNftExData: {
properties: 'Vec<UpDataStructsProperty>',
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup354: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup277: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateRefungibleExSingleOwner: {
user: 'PalletEvmAccountBasicCrossAccountIdRepr',
@@ -2784,14 +2450,14 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup356: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup279: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateRefungibleExMultipleOwners: {
users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup357: pallet_configuration::pallet::Call<T>
+ * Lookup280: pallet_configuration::pallet::Call<T>
**/
PalletConfigurationCall: {
_enum: {
@@ -2819,7 +2485,7 @@
}
},
/**
- * Lookup362: pallet_configuration::AppPromotionConfiguration<BlockNumber>
+ * Lookup285: pallet_configuration::AppPromotionConfiguration<BlockNumber>
**/
PalletConfigurationAppPromotionConfiguration: {
recalculationInterval: 'Option<u32>',
@@ -2828,15 +2494,15 @@
maxStakersPerCalculation: 'Option<u8>'
},
/**
- * Lookup366: pallet_template_transaction_payment::Call<T>
+ * Lookup289: pallet_template_transaction_payment::Call<T>
**/
PalletTemplateTransactionPaymentCall: 'Null',
/**
- * Lookup367: pallet_structure::pallet::Call<T>
+ * Lookup290: pallet_structure::pallet::Call<T>
**/
PalletStructureCall: 'Null',
/**
- * Lookup368: pallet_rmrk_core::pallet::Call<T>
+ * Lookup291: pallet_rmrk_core::pallet::Call<T>
**/
PalletRmrkCoreCall: {
_enum: {
@@ -2927,7 +2593,7 @@
}
},
/**
- * Lookup374: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup297: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceTypes: {
_enum: {
@@ -2937,7 +2603,7 @@
}
},
/**
- * Lookup376: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup299: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceBasicResource: {
src: 'Option<Bytes>',
@@ -2946,7 +2612,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup378: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup301: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceComposableResource: {
parts: 'Vec<u32>',
@@ -2957,7 +2623,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup379: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup302: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceSlotResource: {
base: 'u32',
@@ -2968,7 +2634,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup382: pallet_rmrk_equip::pallet::Call<T>
+ * Lookup305: pallet_rmrk_equip::pallet::Call<T>
**/
PalletRmrkEquipCall: {
_enum: {
@@ -2989,7 +2655,7 @@
}
},
/**
- * Lookup385: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup308: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartPartType: {
_enum: {
@@ -2998,7 +2664,7 @@
}
},
/**
- * Lookup387: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup310: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartFixedPart: {
id: 'u32',
@@ -3006,7 +2672,7 @@
src: 'Bytes'
},
/**
- * Lookup388: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup311: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartSlotPart: {
id: 'u32',
@@ -3015,7 +2681,7 @@
z: 'u32'
},
/**
- * Lookup389: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup312: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartEquippableList: {
_enum: {
@@ -3025,7 +2691,7 @@
}
},
/**
- * Lookup391: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
+ * Lookup314: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
**/
RmrkTraitsTheme: {
name: 'Bytes',
@@ -3033,14 +2699,14 @@
inherit: 'bool'
},
/**
- * Lookup393: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup316: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsThemeThemeProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup395: pallet_app_promotion::pallet::Call<T>
+ * Lookup318: pallet_app_promotion::pallet::Call<T>
**/
PalletAppPromotionCall: {
_enum: {
@@ -3069,7 +2735,7 @@
}
},
/**
- * Lookup396: pallet_foreign_assets::module::Call<T>
+ * Lookup319: pallet_foreign_assets::module::Call<T>
**/
PalletForeignAssetsModuleCall: {
_enum: {
@@ -3086,7 +2752,7 @@
}
},
/**
- * Lookup397: pallet_evm::pallet::Call<T>
+ * Lookup320: pallet_evm::pallet::Call<T>
**/
PalletEvmCall: {
_enum: {
@@ -3129,7 +2795,7 @@
}
},
/**
- * Lookup403: pallet_ethereum::pallet::Call<T>
+ * Lookup326: pallet_ethereum::pallet::Call<T>
**/
PalletEthereumCall: {
_enum: {
@@ -3139,7 +2805,7 @@
}
},
/**
- * Lookup404: ethereum::transaction::TransactionV2
+ * Lookup327: ethereum::transaction::TransactionV2
**/
EthereumTransactionTransactionV2: {
_enum: {
@@ -3149,7 +2815,7 @@
}
},
/**
- * Lookup405: ethereum::transaction::LegacyTransaction
+ * Lookup328: ethereum::transaction::LegacyTransaction
**/
EthereumTransactionLegacyTransaction: {
nonce: 'U256',
@@ -3161,7 +2827,7 @@
signature: 'EthereumTransactionTransactionSignature'
},
/**
- * Lookup406: ethereum::transaction::TransactionAction
+ * Lookup329: ethereum::transaction::TransactionAction
**/
EthereumTransactionTransactionAction: {
_enum: {
@@ -3170,7 +2836,7 @@
}
},
/**
- * Lookup407: ethereum::transaction::TransactionSignature
+ * Lookup330: ethereum::transaction::TransactionSignature
**/
EthereumTransactionTransactionSignature: {
v: 'u64',
@@ -3178,7 +2844,7 @@
s: 'H256'
},
/**
- * Lookup409: ethereum::transaction::EIP2930Transaction
+ * Lookup332: ethereum::transaction::EIP2930Transaction
**/
EthereumTransactionEip2930Transaction: {
chainId: 'u64',
@@ -3194,14 +2860,14 @@
s: 'H256'
},
/**
- * Lookup411: ethereum::transaction::AccessListItem
+ * Lookup334: ethereum::transaction::AccessListItem
**/
EthereumTransactionAccessListItem: {
address: 'H160',
storageKeys: 'Vec<H256>'
},
/**
- * Lookup412: ethereum::transaction::EIP1559Transaction
+ * Lookup335: ethereum::transaction::EIP1559Transaction
**/
EthereumTransactionEip1559Transaction: {
chainId: 'u64',
@@ -3218,7 +2884,7 @@
s: 'H256'
},
/**
- * Lookup413: pallet_evm_migration::pallet::Call<T>
+ * Lookup336: pallet_evm_migration::pallet::Call<T>
**/
PalletEvmMigrationCall: {
_enum: {
@@ -3242,13 +2908,13 @@
}
},
/**
- * Lookup417: pallet_maintenance::pallet::Call<T>
+ * Lookup340: pallet_maintenance::pallet::Call<T>
**/
PalletMaintenanceCall: {
_enum: ['enable', 'disable']
},
/**
- * Lookup418: pallet_test_utils::pallet::Call<T>
+ * Lookup341: pallet_test_utils::pallet::Call<T>
**/
PalletTestUtilsCall: {
_enum: {
@@ -3267,32 +2933,32 @@
}
},
/**
- * Lookup420: pallet_sudo::pallet::Error<T>
+ * Lookup343: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup422: orml_vesting::module::Error<T>
+ * Lookup345: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup423: orml_xtokens::module::Error<T>
+ * Lookup346: orml_xtokens::module::Error<T>
**/
OrmlXtokensModuleError: {
_enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
},
/**
- * Lookup426: orml_tokens::BalanceLock<Balance>
+ * Lookup349: orml_tokens::BalanceLock<Balance>
**/
OrmlTokensBalanceLock: {
id: '[u8;8]',
amount: 'u128'
},
/**
- * Lookup428: orml_tokens::AccountData<Balance>
+ * Lookup351: orml_tokens::AccountData<Balance>
**/
OrmlTokensAccountData: {
free: 'u128',
@@ -3300,20 +2966,20 @@
frozen: 'u128'
},
/**
- * Lookup430: orml_tokens::ReserveData<ReserveIdentifier, Balance>
+ * Lookup353: orml_tokens::ReserveData<ReserveIdentifier, Balance>
**/
OrmlTokensReserveData: {
id: 'Null',
amount: 'u128'
},
/**
- * Lookup432: orml_tokens::module::Error<T>
+ * Lookup355: orml_tokens::module::Error<T>
**/
OrmlTokensModuleError: {
_enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup434: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup357: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -3321,19 +2987,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup435: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup358: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup438: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup361: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup441: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup364: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -3343,13 +3009,13 @@
lastIndex: 'u16'
},
/**
- * Lookup442: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup365: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup444: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup367: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
@@ -3360,29 +3026,29 @@
xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
},
/**
- * Lookup446: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup369: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup447: pallet_xcm::pallet::Error<T>
+ * Lookup370: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
},
/**
- * Lookup448: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup371: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup449: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup372: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
maxIndividual: 'SpWeightsWeightV2Weight'
},
/**
- * Lookup450: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup373: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -3390,25 +3056,25 @@
overweightCount: 'u64'
},
/**
- * Lookup453: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup376: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup457: pallet_unique::Error<T>
+ * Lookup380: pallet_unique::Error<T>
**/
PalletUniqueError: {
_enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
},
/**
- * Lookup458: pallet_configuration::pallet::Error<T>
+ * Lookup381: pallet_configuration::pallet::Error<T>
**/
PalletConfigurationError: {
_enum: ['InconsistentConfiguration']
},
/**
- * Lookup459: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ * Lookup382: up_data_structs::Collection<sp_core::crypto::AccountId32>
**/
UpDataStructsCollection: {
owner: 'AccountId32',
@@ -3422,7 +3088,7 @@
flags: '[u8;1]'
},
/**
- * Lookup460: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup383: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipStateAccountId32: {
_enum: {
@@ -3432,7 +3098,7 @@
}
},
/**
- * Lookup461: up_data_structs::Properties
+ * Lookup385: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -3440,15 +3106,15 @@
spaceLimit: 'u32'
},
/**
- * Lookup462: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup386: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
/**
- * Lookup467: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ * Lookup391: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
**/
UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
/**
- * Lookup474: up_data_structs::CollectionStats
+ * Lookup398: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -3456,18 +3122,18 @@
alive: 'u32'
},
/**
- * Lookup475: up_data_structs::TokenChild
+ * Lookup399: up_data_structs::TokenChild
**/
UpDataStructsTokenChild: {
token: 'u32',
collection: 'u32'
},
/**
- * Lookup476: PhantomType::up_data_structs<T>
+ * Lookup400: PhantomType::up_data_structs<T>
**/
PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild,UpPovEstimateRpcPovInfo);0]',
/**
- * Lookup478: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup402: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
properties: 'Vec<UpDataStructsProperty>',
@@ -3475,7 +3141,7 @@
pieces: 'u128'
},
/**
- * Lookup480: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup404: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -3492,14 +3158,14 @@
flags: 'UpDataStructsRpcCollectionFlags'
},
/**
- * Lookup481: up_data_structs::RpcCollectionFlags
+ * Lookup405: up_data_structs::RpcCollectionFlags
**/
UpDataStructsRpcCollectionFlags: {
foreign: 'bool',
erc721metadata: 'bool'
},
/**
- * Lookup482: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
+ * Lookup406: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
**/
RmrkTraitsCollectionCollectionInfo: {
issuer: 'AccountId32',
@@ -3509,7 +3175,7 @@
nftsCount: 'u32'
},
/**
- * Lookup483: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup407: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsNftNftInfo: {
owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -3519,14 +3185,14 @@
pending: 'bool'
},
/**
- * Lookup485: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+ * Lookup409: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
**/
RmrkTraitsNftRoyaltyInfo: {
recipient: 'AccountId32',
amount: 'Permill'
},
/**
- * Lookup486: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup410: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceInfo: {
id: 'u32',
@@ -3535,14 +3201,14 @@
pendingRemoval: 'bool'
},
/**
- * Lookup487: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup411: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPropertyPropertyInfo: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup488: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup412: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsBaseBaseInfo: {
issuer: 'AccountId32',
@@ -3550,14 +3216,14 @@
symbol: 'Bytes'
},
/**
- * Lookup489: rmrk_traits::nft::NftChild
+ * Lookup413: rmrk_traits::nft::NftChild
**/
RmrkTraitsNftNftChild: {
collectionId: 'u32',
nftId: 'u32'
},
/**
- * Lookup490: up_pov_estimate_rpc::PovInfo
+ * Lookup414: up_pov_estimate_rpc::PovInfo
**/
UpPovEstimateRpcPovInfo: {
proofSize: 'u64',
@@ -3567,7 +3233,7 @@
keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'
},
/**
- * Lookup493: sp_runtime::transaction_validity::TransactionValidityError
+ * Lookup417: sp_runtime::transaction_validity::TransactionValidityError
**/
SpRuntimeTransactionValidityTransactionValidityError: {
_enum: {
@@ -3576,7 +3242,7 @@
}
},
/**
- * Lookup494: sp_runtime::transaction_validity::InvalidTransaction
+ * Lookup418: sp_runtime::transaction_validity::InvalidTransaction
**/
SpRuntimeTransactionValidityInvalidTransaction: {
_enum: {
@@ -3594,7 +3260,7 @@
}
},
/**
- * Lookup495: sp_runtime::transaction_validity::UnknownTransaction
+ * Lookup419: sp_runtime::transaction_validity::UnknownTransaction
**/
SpRuntimeTransactionValidityUnknownTransaction: {
_enum: {
@@ -3604,86 +3270,86 @@
}
},
/**
- * Lookup497: up_pov_estimate_rpc::TrieKeyValue
+ * Lookup421: up_pov_estimate_rpc::TrieKeyValue
**/
UpPovEstimateRpcTrieKeyValue: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup499: pallet_common::pallet::Error<T>
+ * Lookup423: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
_enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']
},
/**
- * Lookup501: pallet_fungible::pallet::Error<T>
+ * Lookup425: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']
},
/**
- * Lookup505: pallet_refungible::pallet::Error<T>
+ * Lookup429: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup506: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup430: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup508: up_data_structs::PropertyScope
+ * Lookup432: up_data_structs::PropertyScope
**/
UpDataStructsPropertyScope: {
_enum: ['None', 'Rmrk']
},
/**
- * Lookup511: pallet_nonfungible::pallet::Error<T>
+ * Lookup435: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup512: pallet_structure::pallet::Error<T>
+ * Lookup436: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
},
/**
- * Lookup513: pallet_rmrk_core::pallet::Error<T>
+ * Lookup437: pallet_rmrk_core::pallet::Error<T>
**/
PalletRmrkCoreError: {
_enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
},
/**
- * Lookup515: pallet_rmrk_equip::pallet::Error<T>
+ * Lookup439: pallet_rmrk_equip::pallet::Error<T>
**/
PalletRmrkEquipError: {
_enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
},
/**
- * Lookup521: pallet_app_promotion::pallet::Error<T>
+ * Lookup445: pallet_app_promotion::pallet::Error<T>
**/
PalletAppPromotionError: {
_enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
},
/**
- * Lookup522: pallet_foreign_assets::module::Error<T>
+ * Lookup446: pallet_foreign_assets::module::Error<T>
**/
PalletForeignAssetsModuleError: {
_enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
},
/**
- * Lookup524: pallet_evm::pallet::Error<T>
+ * Lookup448: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']
},
/**
- * Lookup527: fp_rpc::TransactionStatus
+ * Lookup451: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -3695,11 +3361,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup529: ethbloom::Bloom
+ * Lookup453: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup531: ethereum::receipt::ReceiptV3
+ * Lookup455: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -3709,7 +3375,7 @@
}
},
/**
- * Lookup532: ethereum::receipt::EIP658ReceiptData
+ * Lookup456: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -3718,7 +3384,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup533: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup457: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -3726,7 +3392,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup534: ethereum::header::Header
+ * Lookup458: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -3746,23 +3412,23 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup535: ethereum_types::hash::H64
+ * Lookup459: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup540: pallet_ethereum::pallet::Error<T>
+ * Lookup464: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup541: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup465: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup542: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup466: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
_enum: {
@@ -3772,35 +3438,35 @@
}
},
/**
- * Lookup543: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup467: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup549: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup473: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
},
/**
- * Lookup550: pallet_evm_migration::pallet::Error<T>
+ * Lookup474: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
},
/**
- * Lookup551: pallet_maintenance::pallet::Error<T>
+ * Lookup475: pallet_maintenance::pallet::Error<T>
**/
PalletMaintenanceError: 'Null',
/**
- * Lookup552: pallet_test_utils::pallet::Error<T>
+ * Lookup476: pallet_test_utils::pallet::Error<T>
**/
PalletTestUtilsError: {
_enum: ['TestPalletDisabled', 'TriggerRollback']
},
/**
- * Lookup554: sp_runtime::MultiSignature
+ * Lookup478: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -3810,55 +3476,55 @@
}
},
/**
- * Lookup555: sp_core::ed25519::Signature
+ * Lookup479: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup557: sp_core::sr25519::Signature
+ * Lookup481: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup558: sp_core::ecdsa::Signature
+ * Lookup482: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup561: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup485: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup562: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+ * Lookup486: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: 'Null',
/**
- * Lookup563: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup487: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup566: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup490: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup567: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup491: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup568: opal_runtime::runtime_common::maintenance::CheckMaintenance
+ * Lookup492: opal_runtime::runtime_common::maintenance::CheckMaintenance
**/
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
/**
- * Lookup569: opal_runtime::runtime_common::data_management::FilterIdentity
+ * Lookup493: opal_runtime::runtime_common::identity::DisableIdentityCalls
**/
- OpalRuntimeRuntimeCommonDataManagementFilterIdentity: 'Null',
+ OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',
/**
- * Lookup570: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup494: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup571: opal_runtime::Runtime
+ * Lookup495: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup572: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup496: 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
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonDataManagementFilterIdentity, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, 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, XcmVersionedMultiAsset, 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, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, 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, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -74,9 +74,8 @@
FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
FrameSystemPhase: FrameSystemPhase;
OpalRuntimeRuntime: OpalRuntimeRuntime;
- OpalRuntimeRuntimeCommonDataManagementFilterIdentity: OpalRuntimeRuntimeCommonDataManagementFilterIdentity;
+ OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
- OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
OrmlTokensAccountData: OrmlTokensAccountData;
OrmlTokensBalanceLock: OrmlTokensBalanceLock;
OrmlTokensModuleCall: OrmlTokensModuleCall;
@@ -93,9 +92,6 @@
PalletAppPromotionCall: PalletAppPromotionCall;
PalletAppPromotionError: PalletAppPromotionError;
PalletAppPromotionEvent: PalletAppPromotionEvent;
- PalletAuthorshipCall: PalletAuthorshipCall;
- PalletAuthorshipError: PalletAuthorshipError;
- PalletAuthorshipUncleEntryItem: PalletAuthorshipUncleEntryItem;
PalletBalancesAccountData: PalletBalancesAccountData;
PalletBalancesBalanceLock: PalletBalancesBalanceLock;
PalletBalancesCall: PalletBalancesCall;
@@ -103,9 +99,6 @@
PalletBalancesEvent: PalletBalancesEvent;
PalletBalancesReasons: PalletBalancesReasons;
PalletBalancesReserveData: PalletBalancesReserveData;
- PalletCollatorSelectionCall: PalletCollatorSelectionCall;
- PalletCollatorSelectionError: PalletCollatorSelectionError;
- PalletCollatorSelectionEvent: PalletCollatorSelectionEvent;
PalletCommonError: PalletCommonError;
PalletCommonEvent: PalletCommonEvent;
PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;
@@ -134,15 +127,6 @@
PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;
PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;
PalletFungibleError: PalletFungibleError;
- PalletIdentityBitFlags: PalletIdentityBitFlags;
- PalletIdentityCall: PalletIdentityCall;
- PalletIdentityError: PalletIdentityError;
- PalletIdentityEvent: PalletIdentityEvent;
- PalletIdentityIdentityField: PalletIdentityIdentityField;
- PalletIdentityIdentityInfo: PalletIdentityIdentityInfo;
- PalletIdentityJudgement: PalletIdentityJudgement;
- PalletIdentityRegistrarInfo: PalletIdentityRegistrarInfo;
- PalletIdentityRegistration: PalletIdentityRegistration;
PalletInflationCall: PalletInflationCall;
PalletMaintenanceCall: PalletMaintenanceCall;
PalletMaintenanceError: PalletMaintenanceError;
@@ -156,9 +140,6 @@
PalletRmrkEquipCall: PalletRmrkEquipCall;
PalletRmrkEquipError: PalletRmrkEquipError;
PalletRmrkEquipEvent: PalletRmrkEquipEvent;
- PalletSessionCall: PalletSessionCall;
- PalletSessionError: PalletSessionError;
- PalletSessionEvent: PalletSessionEvent;
PalletStructureCall: PalletStructureCall;
PalletStructureError: PalletStructureError;
PalletStructureEvent: PalletStructureEvent;
@@ -209,18 +190,13 @@
RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;
RmrkTraitsTheme: RmrkTraitsTheme;
RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;
- SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
- SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
SpCoreEd25519Signature: SpCoreEd25519Signature;
- SpCoreSr25519Public: SpCoreSr25519Public;
SpCoreSr25519Signature: SpCoreSr25519Signature;
SpRuntimeArithmeticError: SpRuntimeArithmeticError;
- SpRuntimeBlakeTwo256: SpRuntimeBlakeTwo256;
SpRuntimeDigest: SpRuntimeDigest;
SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
SpRuntimeDispatchError: SpRuntimeDispatchError;
- SpRuntimeHeader: SpRuntimeHeader;
SpRuntimeModuleError: SpRuntimeModuleError;
SpRuntimeMultiSignature: SpRuntimeMultiSignature;
SpRuntimeTokenError: SpRuntimeTokenError;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -5,8 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/lookup';
-import type { Data } from '@polkadot/types';
-import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Set, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
+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';
import type { ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
import type { Event } from '@polkadot/types/interfaces/system';
@@ -197,111 +196,7 @@
readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';
}
- /** @name PalletCollatorSelectionEvent (30) */
- interface PalletCollatorSelectionEvent extends Enum {
- readonly isInvulnerableAdded: boolean;
- readonly asInvulnerableAdded: {
- readonly invulnerable: AccountId32;
- } & Struct;
- readonly isInvulnerableRemoved: boolean;
- readonly asInvulnerableRemoved: {
- readonly invulnerable: AccountId32;
- } & Struct;
- readonly isLicenseObtained: boolean;
- readonly asLicenseObtained: {
- readonly accountId: AccountId32;
- readonly deposit: u128;
- } & Struct;
- readonly isLicenseReleased: boolean;
- readonly asLicenseReleased: {
- readonly accountId: AccountId32;
- readonly depositReturned: u128;
- } & Struct;
- readonly isCandidateAdded: boolean;
- readonly asCandidateAdded: {
- readonly accountId: AccountId32;
- } & Struct;
- readonly isCandidateRemoved: boolean;
- readonly asCandidateRemoved: {
- readonly accountId: AccountId32;
- } & Struct;
- readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';
- }
-
- /** @name PalletSessionEvent (31) */
- interface PalletSessionEvent extends Enum {
- readonly isNewSession: boolean;
- readonly asNewSession: {
- readonly sessionIndex: u32;
- } & Struct;
- readonly type: 'NewSession';
- }
-
- /** @name PalletIdentityEvent (32) */
- interface PalletIdentityEvent extends Enum {
- readonly isIdentitySet: boolean;
- readonly asIdentitySet: {
- readonly who: AccountId32;
- } & Struct;
- readonly isIdentityCleared: boolean;
- readonly asIdentityCleared: {
- readonly who: AccountId32;
- readonly deposit: u128;
- } & Struct;
- readonly isIdentityKilled: boolean;
- readonly asIdentityKilled: {
- readonly who: AccountId32;
- readonly deposit: u128;
- } & Struct;
- readonly isIdentitiesInserted: boolean;
- readonly asIdentitiesInserted: {
- readonly amount: u32;
- } & Struct;
- readonly isIdentitiesRemoved: boolean;
- readonly asIdentitiesRemoved: {
- readonly amount: u32;
- } & Struct;
- readonly isJudgementRequested: boolean;
- readonly asJudgementRequested: {
- readonly who: AccountId32;
- readonly registrarIndex: u32;
- } & Struct;
- readonly isJudgementUnrequested: boolean;
- readonly asJudgementUnrequested: {
- readonly who: AccountId32;
- readonly registrarIndex: u32;
- } & Struct;
- readonly isJudgementGiven: boolean;
- readonly asJudgementGiven: {
- readonly target: AccountId32;
- readonly registrarIndex: u32;
- } & Struct;
- readonly isRegistrarAdded: boolean;
- readonly asRegistrarAdded: {
- readonly registrarIndex: u32;
- } & Struct;
- readonly isSubIdentityAdded: boolean;
- readonly asSubIdentityAdded: {
- readonly sub: AccountId32;
- readonly main: AccountId32;
- readonly deposit: u128;
- } & Struct;
- readonly isSubIdentityRemoved: boolean;
- readonly asSubIdentityRemoved: {
- readonly sub: AccountId32;
- readonly main: AccountId32;
- readonly deposit: u128;
- } & Struct;
- readonly isSubIdentityRevoked: boolean;
- readonly asSubIdentityRevoked: {
- readonly sub: AccountId32;
- readonly main: AccountId32;
- readonly deposit: u128;
- } & Struct;
- readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked';
- }
-
- /** @name PalletBalancesEvent (33) */
+ /** @name PalletBalancesEvent (30) */
interface PalletBalancesEvent extends Enum {
readonly isEndowed: boolean;
readonly asEndowed: {
@@ -360,14 +255,14 @@
readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';
}
- /** @name FrameSupportTokensMiscBalanceStatus (34) */
+ /** @name FrameSupportTokensMiscBalanceStatus (31) */
interface FrameSupportTokensMiscBalanceStatus extends Enum {
readonly isFree: boolean;
readonly isReserved: boolean;
readonly type: 'Free' | 'Reserved';
}
- /** @name PalletTransactionPaymentEvent (35) */
+ /** @name PalletTransactionPaymentEvent (32) */
interface PalletTransactionPaymentEvent extends Enum {
readonly isTransactionFeePaid: boolean;
readonly asTransactionFeePaid: {
@@ -378,7 +273,7 @@
readonly type: 'TransactionFeePaid';
}
- /** @name PalletTreasuryEvent (36) */
+ /** @name PalletTreasuryEvent (33) */
interface PalletTreasuryEvent extends Enum {
readonly isProposed: boolean;
readonly asProposed: {
@@ -420,7 +315,7 @@
readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';
}
- /** @name PalletSudoEvent (37) */
+ /** @name PalletSudoEvent (34) */
interface PalletSudoEvent extends Enum {
readonly isSudid: boolean;
readonly asSudid: {
@@ -437,7 +332,7 @@
readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
}
- /** @name OrmlVestingModuleEvent (41) */
+ /** @name OrmlVestingModuleEvent (38) */
interface OrmlVestingModuleEvent extends Enum {
readonly isVestingScheduleAdded: boolean;
readonly asVestingScheduleAdded: {
@@ -457,7 +352,7 @@
readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
}
- /** @name OrmlVestingVestingSchedule (42) */
+ /** @name OrmlVestingVestingSchedule (39) */
interface OrmlVestingVestingSchedule extends Struct {
readonly start: u32;
readonly period: u32;
@@ -465,7 +360,7 @@
readonly perPeriod: Compact<u128>;
}
- /** @name OrmlXtokensModuleEvent (44) */
+ /** @name OrmlXtokensModuleEvent (41) */
interface OrmlXtokensModuleEvent extends Enum {
readonly isTransferredMultiAssets: boolean;
readonly asTransferredMultiAssets: {
@@ -477,16 +372,16 @@
readonly type: 'TransferredMultiAssets';
}
- /** @name XcmV1MultiassetMultiAssets (45) */
+ /** @name XcmV1MultiassetMultiAssets (42) */
interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}
- /** @name XcmV1MultiAsset (47) */
+ /** @name XcmV1MultiAsset (44) */
interface XcmV1MultiAsset extends Struct {
readonly id: XcmV1MultiassetAssetId;
readonly fun: XcmV1MultiassetFungibility;
}
- /** @name XcmV1MultiassetAssetId (48) */
+ /** @name XcmV1MultiassetAssetId (45) */
interface XcmV1MultiassetAssetId extends Enum {
readonly isConcrete: boolean;
readonly asConcrete: XcmV1MultiLocation;
@@ -495,13 +390,13 @@
readonly type: 'Concrete' | 'Abstract';
}
- /** @name XcmV1MultiLocation (49) */
+ /** @name XcmV1MultiLocation (46) */
interface XcmV1MultiLocation extends Struct {
readonly parents: u8;
readonly interior: XcmV1MultilocationJunctions;
}
- /** @name XcmV1MultilocationJunctions (50) */
+ /** @name XcmV1MultilocationJunctions (47) */
interface XcmV1MultilocationJunctions extends Enum {
readonly isHere: boolean;
readonly isX1: boolean;
@@ -523,7 +418,7 @@
readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
}
- /** @name XcmV1Junction (51) */
+ /** @name XcmV1Junction (48) */
interface XcmV1Junction extends Enum {
readonly isParachain: boolean;
readonly asParachain: Compact<u32>;
@@ -557,7 +452,7 @@
readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
}
- /** @name XcmV0JunctionNetworkId (53) */
+ /** @name XcmV0JunctionNetworkId (50) */
interface XcmV0JunctionNetworkId extends Enum {
readonly isAny: boolean;
readonly isNamed: boolean;
@@ -567,7 +462,7 @@
readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';
}
- /** @name XcmV0JunctionBodyId (56) */
+ /** @name XcmV0JunctionBodyId (53) */
interface XcmV0JunctionBodyId extends Enum {
readonly isUnit: boolean;
readonly isNamed: boolean;
@@ -581,7 +476,7 @@
readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';
}
- /** @name XcmV0JunctionBodyPart (57) */
+ /** @name XcmV0JunctionBodyPart (54) */
interface XcmV0JunctionBodyPart extends Enum {
readonly isVoice: boolean;
readonly isMembers: boolean;
@@ -606,7 +501,7 @@
readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
}
- /** @name XcmV1MultiassetFungibility (58) */
+ /** @name XcmV1MultiassetFungibility (55) */
interface XcmV1MultiassetFungibility extends Enum {
readonly isFungible: boolean;
readonly asFungible: Compact<u128>;
@@ -615,7 +510,7 @@
readonly type: 'Fungible' | 'NonFungible';
}
- /** @name XcmV1MultiassetAssetInstance (59) */
+ /** @name XcmV1MultiassetAssetInstance (56) */
interface XcmV1MultiassetAssetInstance extends Enum {
readonly isUndefined: boolean;
readonly isIndex: boolean;
@@ -633,7 +528,7 @@
readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';
}
- /** @name OrmlTokensModuleEvent (62) */
+ /** @name OrmlTokensModuleEvent (59) */
interface OrmlTokensModuleEvent extends Enum {
readonly isEndowed: boolean;
readonly asEndowed: {
@@ -721,7 +616,7 @@
readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';
}
- /** @name PalletForeignAssetsAssetIds (63) */
+ /** @name PalletForeignAssetsAssetIds (60) */
interface PalletForeignAssetsAssetIds extends Enum {
readonly isForeignAssetId: boolean;
readonly asForeignAssetId: u32;
@@ -730,14 +625,14 @@
readonly type: 'ForeignAssetId' | 'NativeAssetId';
}
- /** @name PalletForeignAssetsNativeCurrency (64) */
+ /** @name PalletForeignAssetsNativeCurrency (61) */
interface PalletForeignAssetsNativeCurrency extends Enum {
readonly isHere: boolean;
readonly isParent: boolean;
readonly type: 'Here' | 'Parent';
}
- /** @name CumulusPalletXcmpQueueEvent (65) */
+ /** @name CumulusPalletXcmpQueueEvent (62) */
interface CumulusPalletXcmpQueueEvent extends Enum {
readonly isSuccess: boolean;
readonly asSuccess: {
@@ -781,7 +676,7 @@
readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
}
- /** @name XcmV2TraitsError (67) */
+ /** @name XcmV2TraitsError (64) */
interface XcmV2TraitsError extends Enum {
readonly isOverflow: boolean;
readonly isUnimplemented: boolean;
@@ -814,7 +709,7 @@
readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';
}
- /** @name PalletXcmEvent (69) */
+ /** @name PalletXcmEvent (66) */
interface PalletXcmEvent extends Enum {
readonly isAttempted: boolean;
readonly asAttempted: XcmV2TraitsOutcome;
@@ -853,7 +748,7 @@
readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';
}
- /** @name XcmV2TraitsOutcome (70) */
+ /** @name XcmV2TraitsOutcome (67) */
interface XcmV2TraitsOutcome extends Enum {
readonly isComplete: boolean;
readonly asComplete: u64;
@@ -864,10 +759,10 @@
readonly type: 'Complete' | 'Incomplete' | 'Error';
}
- /** @name XcmV2Xcm (71) */
+ /** @name XcmV2Xcm (68) */
interface XcmV2Xcm extends Vec<XcmV2Instruction> {}
- /** @name XcmV2Instruction (73) */
+ /** @name XcmV2Instruction (70) */
interface XcmV2Instruction extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;
@@ -987,7 +882,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';
}
- /** @name XcmV2Response (74) */
+ /** @name XcmV2Response (71) */
interface XcmV2Response extends Enum {
readonly isNull: boolean;
readonly isAssets: boolean;
@@ -999,7 +894,7 @@
readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';
}
- /** @name XcmV0OriginKind (77) */
+ /** @name XcmV0OriginKind (74) */
interface XcmV0OriginKind extends Enum {
readonly isNative: boolean;
readonly isSovereignAccount: boolean;
@@ -1008,12 +903,12 @@
readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';
}
- /** @name XcmDoubleEncoded (78) */
+ /** @name XcmDoubleEncoded (75) */
interface XcmDoubleEncoded extends Struct {
readonly encoded: Bytes;
}
- /** @name XcmV1MultiassetMultiAssetFilter (79) */
+ /** @name XcmV1MultiassetMultiAssetFilter (76) */
interface XcmV1MultiassetMultiAssetFilter extends Enum {
readonly isDefinite: boolean;
readonly asDefinite: XcmV1MultiassetMultiAssets;
@@ -1022,7 +917,7 @@
readonly type: 'Definite' | 'Wild';
}
- /** @name XcmV1MultiassetWildMultiAsset (80) */
+ /** @name XcmV1MultiassetWildMultiAsset (77) */
interface XcmV1MultiassetWildMultiAsset extends Enum {
readonly isAll: boolean;
readonly isAllOf: boolean;
@@ -1033,14 +928,14 @@
readonly type: 'All' | 'AllOf';
}
- /** @name XcmV1MultiassetWildFungibility (81) */
+ /** @name XcmV1MultiassetWildFungibility (78) */
interface XcmV1MultiassetWildFungibility extends Enum {
readonly isFungible: boolean;
readonly isNonFungible: boolean;
readonly type: 'Fungible' | 'NonFungible';
}
- /** @name XcmV2WeightLimit (82) */
+ /** @name XcmV2WeightLimit (79) */
interface XcmV2WeightLimit extends Enum {
readonly isUnlimited: boolean;
readonly isLimited: boolean;
@@ -1048,7 +943,7 @@
readonly type: 'Unlimited' | 'Limited';
}
- /** @name XcmVersionedMultiAssets (84) */
+ /** @name XcmVersionedMultiAssets (81) */
interface XcmVersionedMultiAssets extends Enum {
readonly isV0: boolean;
readonly asV0: Vec<XcmV0MultiAsset>;
@@ -1057,7 +952,7 @@
readonly type: 'V0' | 'V1';
}
- /** @name XcmV0MultiAsset (86) */
+ /** @name XcmV0MultiAsset (83) */
interface XcmV0MultiAsset extends Enum {
readonly isNone: boolean;
readonly isAll: boolean;
@@ -1102,7 +997,7 @@
readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';
}
- /** @name XcmV0MultiLocation (87) */
+ /** @name XcmV0MultiLocation (84) */
interface XcmV0MultiLocation extends Enum {
readonly isNull: boolean;
readonly isX1: boolean;
@@ -1124,7 +1019,7 @@
readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
}
- /** @name XcmV0Junction (88) */
+ /** @name XcmV0Junction (85) */
interface XcmV0Junction extends Enum {
readonly isParent: boolean;
readonly isParachain: boolean;
@@ -1159,7 +1054,7 @@
readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
}
- /** @name XcmVersionedMultiLocation (89) */
+ /** @name XcmVersionedMultiLocation (86) */
interface XcmVersionedMultiLocation extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0MultiLocation;
@@ -1168,7 +1063,7 @@
readonly type: 'V0' | 'V1';
}
- /** @name CumulusPalletXcmEvent (90) */
+ /** @name CumulusPalletXcmEvent (87) */
interface CumulusPalletXcmEvent extends Enum {
readonly isInvalidFormat: boolean;
readonly asInvalidFormat: U8aFixed;
@@ -1179,7 +1074,7 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
}
- /** @name CumulusPalletDmpQueueEvent (91) */
+ /** @name CumulusPalletDmpQueueEvent (88) */
interface CumulusPalletDmpQueueEvent extends Enum {
readonly isInvalidFormat: boolean;
readonly asInvalidFormat: {
@@ -1214,7 +1109,7 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
}
- /** @name PalletConfigurationEvent (92) */
+ /** @name PalletConfigurationEvent (89) */
interface PalletConfigurationEvent extends Enum {
readonly isNewDesiredCollators: boolean;
readonly asNewDesiredCollators: {
@@ -1231,7 +1126,7 @@
readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';
}
- /** @name PalletCommonEvent (95) */
+ /** @name PalletCommonEvent (92) */
interface PalletCommonEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -1280,7 +1175,7 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';
}
- /** @name PalletEvmAccountBasicCrossAccountIdRepr (98) */
+ /** @name PalletEvmAccountBasicCrossAccountIdRepr (95) */
interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
readonly isSubstrate: boolean;
readonly asSubstrate: AccountId32;
@@ -1289,14 +1184,14 @@
readonly type: 'Substrate' | 'Ethereum';
}
- /** @name PalletStructureEvent (102) */
+ /** @name PalletStructureEvent (99) */
interface PalletStructureEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
readonly type: 'Executed';
}
- /** @name PalletRmrkCoreEvent (103) */
+ /** @name PalletRmrkCoreEvent (100) */
interface PalletRmrkCoreEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: {
@@ -1386,7 +1281,7 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
}
- /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (104) */
+ /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */
interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
readonly isAccountId: boolean;
readonly asAccountId: AccountId32;
@@ -1395,7 +1290,7 @@
readonly type: 'AccountId' | 'CollectionAndNftTuple';
}
- /** @name PalletRmrkEquipEvent (107) */
+ /** @name PalletRmrkEquipEvent (104) */
interface PalletRmrkEquipEvent extends Enum {
readonly isBaseCreated: boolean;
readonly asBaseCreated: {
@@ -1410,7 +1305,7 @@
readonly type: 'BaseCreated' | 'EquippablesUpdated';
}
- /** @name PalletAppPromotionEvent (108) */
+ /** @name PalletAppPromotionEvent (105) */
interface PalletAppPromotionEvent extends Enum {
readonly isStakingRecalculation: boolean;
readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
@@ -1423,7 +1318,7 @@
readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
}
- /** @name PalletForeignAssetsModuleEvent (109) */
+ /** @name PalletForeignAssetsModuleEvent (106) */
interface PalletForeignAssetsModuleEvent extends Enum {
readonly isForeignAssetRegistered: boolean;
readonly asForeignAssetRegistered: {
@@ -1450,7 +1345,7 @@
readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
}
- /** @name PalletForeignAssetsModuleAssetMetadata (110) */
+ /** @name PalletForeignAssetsModuleAssetMetadata (107) */
interface PalletForeignAssetsModuleAssetMetadata extends Struct {
readonly name: Bytes;
readonly symbol: Bytes;
@@ -1458,7 +1353,7 @@
readonly minimalBalance: u128;
}
- /** @name PalletEvmEvent (111) */
+ /** @name PalletEvmEvent (108) */
interface PalletEvmEvent extends Enum {
readonly isLog: boolean;
readonly asLog: {
@@ -1483,14 +1378,14 @@
readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
}
- /** @name EthereumLog (112) */
+ /** @name EthereumLog (109) */
interface EthereumLog extends Struct {
readonly address: H160;
readonly topics: Vec<H256>;
readonly data: Bytes;
}
- /** @name PalletEthereumEvent (114) */
+ /** @name PalletEthereumEvent (111) */
interface PalletEthereumEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: {
@@ -1502,7 +1397,7 @@
readonly type: 'Executed';
}
- /** @name EvmCoreErrorExitReason (115) */
+ /** @name EvmCoreErrorExitReason (112) */
interface EvmCoreErrorExitReason extends Enum {
readonly isSucceed: boolean;
readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -1515,7 +1410,7 @@
readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
}
- /** @name EvmCoreErrorExitSucceed (116) */
+ /** @name EvmCoreErrorExitSucceed (113) */
interface EvmCoreErrorExitSucceed extends Enum {
readonly isStopped: boolean;
readonly isReturned: boolean;
@@ -1523,7 +1418,7 @@
readonly type: 'Stopped' | 'Returned' | 'Suicided';
}
- /** @name EvmCoreErrorExitError (117) */
+ /** @name EvmCoreErrorExitError (114) */
interface EvmCoreErrorExitError extends Enum {
readonly isStackUnderflow: boolean;
readonly isStackOverflow: boolean;
@@ -1544,13 +1439,13 @@
readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
}
- /** @name EvmCoreErrorExitRevert (120) */
+ /** @name EvmCoreErrorExitRevert (117) */
interface EvmCoreErrorExitRevert extends Enum {
readonly isReverted: boolean;
readonly type: 'Reverted';
}
- /** @name EvmCoreErrorExitFatal (121) */
+ /** @name EvmCoreErrorExitFatal (118) */
interface EvmCoreErrorExitFatal extends Enum {
readonly isNotSupported: boolean;
readonly isUnhandledInterrupt: boolean;
@@ -1561,7 +1456,7 @@
readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
}
- /** @name PalletEvmContractHelpersEvent (122) */
+ /** @name PalletEvmContractHelpersEvent (119) */
interface PalletEvmContractHelpersEvent extends Enum {
readonly isContractSponsorSet: boolean;
readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
@@ -1572,20 +1467,20 @@
readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
}
- /** @name PalletEvmMigrationEvent (123) */
+ /** @name PalletEvmMigrationEvent (120) */
interface PalletEvmMigrationEvent extends Enum {
readonly isTestEvent: boolean;
readonly type: 'TestEvent';
}
- /** @name PalletMaintenanceEvent (124) */
+ /** @name PalletMaintenanceEvent (121) */
interface PalletMaintenanceEvent extends Enum {
readonly isMaintenanceEnabled: boolean;
readonly isMaintenanceDisabled: boolean;
readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';
}
- /** @name PalletTestUtilsEvent (125) */
+ /** @name PalletTestUtilsEvent (122) */
interface PalletTestUtilsEvent extends Enum {
readonly isValueIsSet: boolean;
readonly isShouldRollback: boolean;
@@ -1593,7 +1488,7 @@
readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';
}
- /** @name FrameSystemPhase (126) */
+ /** @name FrameSystemPhase (123) */
interface FrameSystemPhase extends Enum {
readonly isApplyExtrinsic: boolean;
readonly asApplyExtrinsic: u32;
@@ -1602,13 +1497,13 @@
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
}
- /** @name FrameSystemLastRuntimeUpgradeInfo (129) */
+ /** @name FrameSystemLastRuntimeUpgradeInfo (126) */
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
readonly specVersion: Compact<u32>;
readonly specName: Text;
}
- /** @name FrameSystemCall (130) */
+ /** @name FrameSystemCall (127) */
interface FrameSystemCall extends Enum {
readonly isRemark: boolean;
readonly asRemark: {
@@ -1646,21 +1541,21 @@
readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
}
- /** @name FrameSystemLimitsBlockWeights (134) */
+ /** @name FrameSystemLimitsBlockWeights (131) */
interface FrameSystemLimitsBlockWeights extends Struct {
readonly baseBlock: SpWeightsWeightV2Weight;
readonly maxBlock: SpWeightsWeightV2Weight;
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
}
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (135) */
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (132) */
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
readonly normal: FrameSystemLimitsWeightsPerClass;
readonly operational: FrameSystemLimitsWeightsPerClass;
readonly mandatory: FrameSystemLimitsWeightsPerClass;
}
- /** @name FrameSystemLimitsWeightsPerClass (136) */
+ /** @name FrameSystemLimitsWeightsPerClass (133) */
interface FrameSystemLimitsWeightsPerClass extends Struct {
readonly baseExtrinsic: SpWeightsWeightV2Weight;
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
@@ -1668,25 +1563,25 @@
readonly reserved: Option<SpWeightsWeightV2Weight>;
}
- /** @name FrameSystemLimitsBlockLength (138) */
+ /** @name FrameSystemLimitsBlockLength (135) */
interface FrameSystemLimitsBlockLength extends Struct {
readonly max: FrameSupportDispatchPerDispatchClassU32;
}
- /** @name FrameSupportDispatchPerDispatchClassU32 (139) */
+ /** @name FrameSupportDispatchPerDispatchClassU32 (136) */
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
readonly normal: u32;
readonly operational: u32;
readonly mandatory: u32;
}
- /** @name SpWeightsRuntimeDbWeight (140) */
+ /** @name SpWeightsRuntimeDbWeight (137) */
interface SpWeightsRuntimeDbWeight extends Struct {
readonly read: u64;
readonly write: u64;
}
- /** @name SpVersionRuntimeVersion (141) */
+ /** @name SpVersionRuntimeVersion (138) */
interface SpVersionRuntimeVersion extends Struct {
readonly specName: Text;
readonly implName: Text;
@@ -1698,7 +1593,7 @@
readonly stateVersion: u8;
}
- /** @name FrameSystemError (146) */
+ /** @name FrameSystemError (143) */
interface FrameSystemError extends Enum {
readonly isInvalidSpecName: boolean;
readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1709,7 +1604,7 @@
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
}
- /** @name PolkadotPrimitivesV2PersistedValidationData (147) */
+ /** @name PolkadotPrimitivesV2PersistedValidationData (144) */
interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
readonly parentHead: Bytes;
readonly relayParentNumber: u32;
@@ -1717,18 +1612,18 @@
readonly maxPovSize: u32;
}
- /** @name PolkadotPrimitivesV2UpgradeRestriction (150) */
+ /** @name PolkadotPrimitivesV2UpgradeRestriction (147) */
interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
readonly isPresent: boolean;
readonly type: 'Present';
}
- /** @name SpTrieStorageProof (151) */
+ /** @name SpTrieStorageProof (148) */
interface SpTrieStorageProof extends Struct {
readonly trieNodes: BTreeSet<Bytes>;
}
- /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (153) */
+ /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (150) */
interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
readonly dmqMqcHead: H256;
readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
@@ -1736,7 +1631,7 @@
readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
}
- /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (156) */
+ /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (153) */
interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
readonly maxCapacity: u32;
readonly maxTotalSize: u32;
@@ -1746,7 +1641,7 @@
readonly mqcHead: Option<H256>;
}
- /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (157) */
+ /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (154) */
interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
readonly maxCodeSize: u32;
readonly maxHeadDataSize: u32;
@@ -1759,13 +1654,13 @@
readonly validationUpgradeDelay: u32;
}
- /** @name PolkadotCorePrimitivesOutboundHrmpMessage (163) */
+ /** @name PolkadotCorePrimitivesOutboundHrmpMessage (160) */
interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
readonly recipient: u32;
readonly data: Bytes;
}
- /** @name CumulusPalletParachainSystemCall (164) */
+ /** @name CumulusPalletParachainSystemCall (161) */
interface CumulusPalletParachainSystemCall extends Enum {
readonly isSetValidationData: boolean;
readonly asSetValidationData: {
@@ -1786,7 +1681,7 @@
readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
}
- /** @name CumulusPrimitivesParachainInherentParachainInherentData (165) */
+ /** @name CumulusPrimitivesParachainInherentParachainInherentData (162) */
interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
readonly relayChainState: SpTrieStorageProof;
@@ -1794,19 +1689,19 @@
readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
}
- /** @name PolkadotCorePrimitivesInboundDownwardMessage (167) */
+ /** @name PolkadotCorePrimitivesInboundDownwardMessage (164) */
interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
readonly sentAt: u32;
readonly msg: Bytes;
}
- /** @name PolkadotCorePrimitivesInboundHrmpMessage (170) */
+ /** @name PolkadotCorePrimitivesInboundHrmpMessage (167) */
interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
readonly sentAt: u32;
readonly data: Bytes;
}
- /** @name CumulusPalletParachainSystemError (173) */
+ /** @name CumulusPalletParachainSystemError (170) */
interface CumulusPalletParachainSystemError extends Enum {
readonly isOverlappingUpgrades: boolean;
readonly isProhibitedByPolkadot: boolean;
@@ -1817,296 +1712,16 @@
readonly isNothingAuthorized: boolean;
readonly isUnauthorized: boolean;
readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
- }
-
- /** @name PalletAuthorshipUncleEntryItem (175) */
- interface PalletAuthorshipUncleEntryItem extends Enum {
- readonly isInclusionHeight: boolean;
- readonly asInclusionHeight: u32;
- readonly isUncle: boolean;
- readonly asUncle: ITuple<[H256, Option<AccountId32>]>;
- readonly type: 'InclusionHeight' | 'Uncle';
- }
-
- /** @name PalletAuthorshipCall (177) */
- interface PalletAuthorshipCall extends Enum {
- readonly isSetUncles: boolean;
- readonly asSetUncles: {
- readonly newUncles: Vec<SpRuntimeHeader>;
- } & Struct;
- readonly type: 'SetUncles';
- }
-
- /** @name SpRuntimeHeader (179) */
- interface SpRuntimeHeader extends Struct {
- readonly parentHash: H256;
- readonly number: Compact<u32>;
- readonly stateRoot: H256;
- readonly extrinsicsRoot: H256;
- readonly digest: SpRuntimeDigest;
- }
-
- /** @name SpRuntimeBlakeTwo256 (180) */
- type SpRuntimeBlakeTwo256 = Null;
-
- /** @name PalletAuthorshipError (181) */
- interface PalletAuthorshipError extends Enum {
- readonly isInvalidUncleParent: boolean;
- readonly isUnclesAlreadySet: boolean;
- readonly isTooManyUncles: boolean;
- readonly isGenesisUncle: boolean;
- readonly isTooHighUncle: boolean;
- readonly isUncleAlreadyIncluded: boolean;
- readonly isOldUncle: boolean;
- readonly type: 'InvalidUncleParent' | 'UnclesAlreadySet' | 'TooManyUncles' | 'GenesisUncle' | 'TooHighUncle' | 'UncleAlreadyIncluded' | 'OldUncle';
- }
-
- /** @name PalletCollatorSelectionCall (184) */
- interface PalletCollatorSelectionCall extends Enum {
- readonly isAddInvulnerable: boolean;
- readonly asAddInvulnerable: {
- readonly new_: AccountId32;
- } & Struct;
- readonly isRemoveInvulnerable: boolean;
- readonly asRemoveInvulnerable: {
- readonly who: AccountId32;
- } & Struct;
- readonly isGetLicense: boolean;
- readonly isOnboard: boolean;
- readonly isOffboard: boolean;
- readonly isReleaseLicense: boolean;
- readonly isForceReleaseLicense: boolean;
- readonly asForceReleaseLicense: {
- readonly who: AccountId32;
- } & Struct;
- readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';
- }
-
- /** @name PalletCollatorSelectionError (185) */
- interface PalletCollatorSelectionError extends Enum {
- readonly isTooManyCandidates: boolean;
- readonly isUnknown: boolean;
- readonly isPermission: boolean;
- readonly isAlreadyHoldingLicense: boolean;
- readonly isNoLicense: boolean;
- readonly isAlreadyCandidate: boolean;
- readonly isNotCandidate: boolean;
- readonly isTooManyInvulnerables: boolean;
- readonly isTooFewInvulnerables: boolean;
- readonly isAlreadyInvulnerable: boolean;
- readonly isNotInvulnerable: boolean;
- readonly isNoAssociatedValidatorId: boolean;
- readonly isValidatorNotRegistered: boolean;
- readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';
}
- /** @name OpalRuntimeRuntimeCommonSessionKeys (188) */
- interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
- readonly aura: SpConsensusAuraSr25519AppSr25519Public;
- }
-
- /** @name SpConsensusAuraSr25519AppSr25519Public (189) */
- interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}
-
- /** @name SpCoreSr25519Public (190) */
- interface SpCoreSr25519Public extends U8aFixed {}
-
- /** @name SpCoreCryptoKeyTypeId (193) */
- interface SpCoreCryptoKeyTypeId extends U8aFixed {}
-
- /** @name PalletSessionCall (194) */
- interface PalletSessionCall extends Enum {
- readonly isSetKeys: boolean;
- readonly asSetKeys: {
- readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;
- readonly proof: Bytes;
- } & Struct;
- readonly isPurgeKeys: boolean;
- readonly type: 'SetKeys' | 'PurgeKeys';
- }
-
- /** @name PalletSessionError (195) */
- interface PalletSessionError extends Enum {
- readonly isInvalidProof: boolean;
- readonly isNoAssociatedValidatorId: boolean;
- readonly isDuplicatedKey: boolean;
- readonly isNoKeys: boolean;
- readonly isNoAccount: boolean;
- readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
- }
-
- /** @name PalletIdentityRegistration (196) */
- interface PalletIdentityRegistration extends Struct {
- readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
- readonly deposit: u128;
- readonly info: PalletIdentityIdentityInfo;
- }
-
- /** @name PalletIdentityJudgement (199) */
- interface PalletIdentityJudgement extends Enum {
- readonly isUnknown: boolean;
- readonly isFeePaid: boolean;
- readonly asFeePaid: u128;
- readonly isReasonable: boolean;
- readonly isKnownGood: boolean;
- readonly isOutOfDate: boolean;
- readonly isLowQuality: boolean;
- readonly isErroneous: boolean;
- readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';
- }
-
- /** @name PalletIdentityIdentityInfo (201) */
- interface PalletIdentityIdentityInfo extends Struct {
- readonly additional: Vec<ITuple<[Data, Data]>>;
- readonly display: Data;
- readonly legal: Data;
- readonly web: Data;
- readonly riot: Data;
- readonly email: Data;
- readonly pgpFingerprint: Option<U8aFixed>;
- readonly image: Data;
- readonly twitter: Data;
- }
-
- /** @name PalletIdentityRegistrarInfo (240) */
- interface PalletIdentityRegistrarInfo extends Struct {
- readonly account: AccountId32;
- readonly fee: u128;
- readonly fields: PalletIdentityBitFlags;
- }
-
- /** @name PalletIdentityBitFlags (241) */
- interface PalletIdentityBitFlags extends Set {
- readonly isDisplay: boolean;
- readonly isLegal: boolean;
- readonly isWeb: boolean;
- readonly isRiot: boolean;
- readonly isEmail: boolean;
- readonly isPgpFingerprint: boolean;
- readonly isImage: boolean;
- readonly isTwitter: boolean;
- }
-
- /** @name PalletIdentityIdentityField (242) */
- interface PalletIdentityIdentityField extends Enum {
- readonly isDisplay: boolean;
- readonly isLegal: boolean;
- readonly isWeb: boolean;
- readonly isRiot: boolean;
- readonly isEmail: boolean;
- readonly isPgpFingerprint: boolean;
- readonly isImage: boolean;
- readonly isTwitter: boolean;
- readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';
- }
-
- /** @name PalletIdentityCall (244) */
- interface PalletIdentityCall extends Enum {
- readonly isAddRegistrar: boolean;
- readonly asAddRegistrar: {
- readonly account: MultiAddress;
- } & Struct;
- readonly isSetIdentity: boolean;
- readonly asSetIdentity: {
- readonly info: PalletIdentityIdentityInfo;
- } & Struct;
- readonly isSetSubs: boolean;
- readonly asSetSubs: {
- readonly subs: Vec<ITuple<[AccountId32, Data]>>;
- } & Struct;
- readonly isClearIdentity: boolean;
- readonly isRequestJudgement: boolean;
- readonly asRequestJudgement: {
- readonly regIndex: Compact<u32>;
- readonly maxFee: Compact<u128>;
- } & Struct;
- readonly isCancelRequest: boolean;
- readonly asCancelRequest: {
- readonly regIndex: u32;
- } & Struct;
- readonly isSetFee: boolean;
- readonly asSetFee: {
- readonly index: Compact<u32>;
- readonly fee: Compact<u128>;
- } & Struct;
- readonly isSetAccountId: boolean;
- readonly asSetAccountId: {
- readonly index: Compact<u32>;
- readonly new_: MultiAddress;
- } & Struct;
- readonly isSetFields: boolean;
- readonly asSetFields: {
- readonly index: Compact<u32>;
- readonly fields: PalletIdentityBitFlags;
- } & Struct;
- readonly isProvideJudgement: boolean;
- readonly asProvideJudgement: {
- readonly regIndex: Compact<u32>;
- readonly target: MultiAddress;
- readonly judgement: PalletIdentityJudgement;
- readonly identity: H256;
- } & Struct;
- readonly isKillIdentity: boolean;
- readonly asKillIdentity: {
- readonly target: MultiAddress;
- } & Struct;
- readonly isAddSub: boolean;
- readonly asAddSub: {
- readonly sub: MultiAddress;
- readonly data: Data;
- } & Struct;
- readonly isRenameSub: boolean;
- readonly asRenameSub: {
- readonly sub: MultiAddress;
- readonly data: Data;
- } & Struct;
- readonly isRemoveSub: boolean;
- readonly asRemoveSub: {
- readonly sub: MultiAddress;
- } & Struct;
- readonly isQuitSub: boolean;
- readonly isForceInsertIdentities: boolean;
- readonly asForceInsertIdentities: {
- readonly identities: Vec<ITuple<[AccountId32, PalletIdentityRegistration]>>;
- } & Struct;
- readonly isForceRemoveIdentities: boolean;
- readonly asForceRemoveIdentities: {
- readonly identities: Vec<AccountId32>;
- } & Struct;
- readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities';
- }
-
- /** @name PalletIdentityError (250) */
- interface PalletIdentityError extends Enum {
- readonly isTooManySubAccounts: boolean;
- readonly isNotFound: boolean;
- readonly isNotNamed: boolean;
- readonly isEmptyIndex: boolean;
- readonly isFeeChanged: boolean;
- readonly isNoIdentity: boolean;
- readonly isStickyJudgement: boolean;
- readonly isJudgementGiven: boolean;
- readonly isInvalidJudgement: boolean;
- readonly isInvalidIndex: boolean;
- readonly isInvalidTarget: boolean;
- readonly isTooManyFields: boolean;
- readonly isTooManyRegistrars: boolean;
- readonly isAlreadyClaimed: boolean;
- readonly isNotSub: boolean;
- readonly isNotOwned: boolean;
- readonly isJudgementForDifferentIdentity: boolean;
- readonly isJudgementPaymentFailed: boolean;
- readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';
- }
-
- /** @name PalletBalancesBalanceLock (252) */
+ /** @name PalletBalancesBalanceLock (172) */
interface PalletBalancesBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
readonly reasons: PalletBalancesReasons;
}
- /** @name PalletBalancesReasons (253) */
+ /** @name PalletBalancesReasons (173) */
interface PalletBalancesReasons extends Enum {
readonly isFee: boolean;
readonly isMisc: boolean;
@@ -2114,13 +1729,13 @@
readonly type: 'Fee' | 'Misc' | 'All';
}
- /** @name PalletBalancesReserveData (256) */
+ /** @name PalletBalancesReserveData (176) */
interface PalletBalancesReserveData extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name PalletBalancesCall (258) */
+ /** @name PalletBalancesCall (178) */
interface PalletBalancesCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -2157,7 +1772,7 @@
readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
}
- /** @name PalletBalancesError (259) */
+ /** @name PalletBalancesError (181) */
interface PalletBalancesError extends Enum {
readonly isVestingBalance: boolean;
readonly isLiquidityRestrictions: boolean;
@@ -2170,7 +1785,7 @@
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name PalletTimestampCall (261) */
+ /** @name PalletTimestampCall (183) */
interface PalletTimestampCall extends Enum {
readonly isSet: boolean;
readonly asSet: {
@@ -2179,14 +1794,14 @@
readonly type: 'Set';
}
- /** @name PalletTransactionPaymentReleases (263) */
+ /** @name PalletTransactionPaymentReleases (185) */
interface PalletTransactionPaymentReleases extends Enum {
readonly isV1Ancient: boolean;
readonly isV2: boolean;
readonly type: 'V1Ancient' | 'V2';
}
- /** @name PalletTreasuryProposal (264) */
+ /** @name PalletTreasuryProposal (186) */
interface PalletTreasuryProposal extends Struct {
readonly proposer: AccountId32;
readonly value: u128;
@@ -2194,7 +1809,7 @@
readonly bond: u128;
}
- /** @name PalletTreasuryCall (266) */
+ /** @name PalletTreasuryCall (189) */
interface PalletTreasuryCall extends Enum {
readonly isProposeSpend: boolean;
readonly asProposeSpend: {
@@ -2221,10 +1836,10 @@
readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
}
- /** @name FrameSupportPalletId (268) */
+ /** @name FrameSupportPalletId (191) */
interface FrameSupportPalletId extends U8aFixed {}
- /** @name PalletTreasuryError (269) */
+ /** @name PalletTreasuryError (192) */
interface PalletTreasuryError extends Enum {
readonly isInsufficientProposersBalance: boolean;
readonly isInvalidIndex: boolean;
@@ -2234,7 +1849,7 @@
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
}
- /** @name PalletSudoCall (270) */
+ /** @name PalletSudoCall (193) */
interface PalletSudoCall extends Enum {
readonly isSudo: boolean;
readonly asSudo: {
@@ -2257,7 +1872,7 @@
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
}
- /** @name OrmlVestingModuleCall (272) */
+ /** @name OrmlVestingModuleCall (195) */
interface OrmlVestingModuleCall extends Enum {
readonly isClaim: boolean;
readonly isVestedTransfer: boolean;
@@ -2277,7 +1892,7 @@
readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
}
- /** @name OrmlXtokensModuleCall (274) */
+ /** @name OrmlXtokensModuleCall (197) */
interface OrmlXtokensModuleCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -2324,7 +1939,7 @@
readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
}
- /** @name XcmVersionedMultiAsset (275) */
+ /** @name XcmVersionedMultiAsset (198) */
interface XcmVersionedMultiAsset extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0MultiAsset;
@@ -2333,7 +1948,7 @@
readonly type: 'V0' | 'V1';
}
- /** @name OrmlTokensModuleCall (278) */
+ /** @name OrmlTokensModuleCall (201) */
interface OrmlTokensModuleCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -2370,7 +1985,7 @@
readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
}
- /** @name CumulusPalletXcmpQueueCall (279) */
+ /** @name CumulusPalletXcmpQueueCall (202) */
interface CumulusPalletXcmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -2406,7 +2021,7 @@
readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
}
- /** @name PalletXcmCall (280) */
+ /** @name PalletXcmCall (203) */
interface PalletXcmCall extends Enum {
readonly isSend: boolean;
readonly asSend: {
@@ -2468,7 +2083,7 @@
readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
}
- /** @name XcmVersionedXcm (281) */
+ /** @name XcmVersionedXcm (204) */
interface XcmVersionedXcm extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0Xcm;
@@ -2479,7 +2094,7 @@
readonly type: 'V0' | 'V1' | 'V2';
}
- /** @name XcmV0Xcm (282) */
+ /** @name XcmV0Xcm (205) */
interface XcmV0Xcm extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: {
@@ -2542,7 +2157,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
}
- /** @name XcmV0Order (284) */
+ /** @name XcmV0Order (207) */
interface XcmV0Order extends Enum {
readonly isNull: boolean;
readonly isDepositAsset: boolean;
@@ -2590,14 +2205,14 @@
readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
}
- /** @name XcmV0Response (286) */
+ /** @name XcmV0Response (209) */
interface XcmV0Response extends Enum {
readonly isAssets: boolean;
readonly asAssets: Vec<XcmV0MultiAsset>;
readonly type: 'Assets';
}
- /** @name XcmV1Xcm (287) */
+ /** @name XcmV1Xcm (210) */
interface XcmV1Xcm extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: {
@@ -2666,7 +2281,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
}
- /** @name XcmV1Order (289) */
+ /** @name XcmV1Order (212) */
interface XcmV1Order extends Enum {
readonly isNoop: boolean;
readonly isDepositAsset: boolean;
@@ -2716,7 +2331,7 @@
readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
}
- /** @name XcmV1Response (291) */
+ /** @name XcmV1Response (214) */
interface XcmV1Response extends Enum {
readonly isAssets: boolean;
readonly asAssets: XcmV1MultiassetMultiAssets;
@@ -2725,10 +2340,10 @@
readonly type: 'Assets' | 'Version';
}
- /** @name CumulusPalletXcmCall (305) */
+ /** @name CumulusPalletXcmCall (228) */
type CumulusPalletXcmCall = Null;
- /** @name CumulusPalletDmpQueueCall (306) */
+ /** @name CumulusPalletDmpQueueCall (229) */
interface CumulusPalletDmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -2738,7 +2353,7 @@
readonly type: 'ServiceOverweight';
}
- /** @name PalletInflationCall (307) */
+ /** @name PalletInflationCall (230) */
interface PalletInflationCall extends Enum {
readonly isStartInflation: boolean;
readonly asStartInflation: {
@@ -2747,7 +2362,7 @@
readonly type: 'StartInflation';
}
- /** @name PalletUniqueCall (308) */
+ /** @name PalletUniqueCall (231) */
interface PalletUniqueCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -2920,7 +2535,7 @@
readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';
}
- /** @name UpDataStructsCollectionMode (313) */
+ /** @name UpDataStructsCollectionMode (236) */
interface UpDataStructsCollectionMode extends Enum {
readonly isNft: boolean;
readonly isFungible: boolean;
@@ -2929,7 +2544,7 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateCollectionData (314) */
+ /** @name UpDataStructsCreateCollectionData (237) */
interface UpDataStructsCreateCollectionData extends Struct {
readonly mode: UpDataStructsCollectionMode;
readonly access: Option<UpDataStructsAccessMode>;
@@ -2943,14 +2558,14 @@
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsAccessMode (316) */
+ /** @name UpDataStructsAccessMode (239) */
interface UpDataStructsAccessMode extends Enum {
readonly isNormal: boolean;
readonly isAllowList: boolean;
readonly type: 'Normal' | 'AllowList';
}
- /** @name UpDataStructsCollectionLimits (318) */
+ /** @name UpDataStructsCollectionLimits (241) */
interface UpDataStructsCollectionLimits extends Struct {
readonly accountTokenOwnershipLimit: Option<u32>;
readonly sponsoredDataSize: Option<u32>;
@@ -2963,7 +2578,7 @@
readonly transfersEnabled: Option<bool>;
}
- /** @name UpDataStructsSponsoringRateLimit (320) */
+ /** @name UpDataStructsSponsoringRateLimit (243) */
interface UpDataStructsSponsoringRateLimit extends Enum {
readonly isSponsoringDisabled: boolean;
readonly isBlocks: boolean;
@@ -2971,43 +2586,43 @@
readonly type: 'SponsoringDisabled' | 'Blocks';
}
- /** @name UpDataStructsCollectionPermissions (323) */
+ /** @name UpDataStructsCollectionPermissions (246) */
interface UpDataStructsCollectionPermissions extends Struct {
readonly access: Option<UpDataStructsAccessMode>;
readonly mintMode: Option<bool>;
readonly nesting: Option<UpDataStructsNestingPermissions>;
}
- /** @name UpDataStructsNestingPermissions (325) */
+ /** @name UpDataStructsNestingPermissions (248) */
interface UpDataStructsNestingPermissions extends Struct {
readonly tokenOwner: bool;
readonly collectionAdmin: bool;
readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
}
- /** @name UpDataStructsOwnerRestrictedSet (327) */
+ /** @name UpDataStructsOwnerRestrictedSet (250) */
interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
- /** @name UpDataStructsPropertyKeyPermission (332) */
+ /** @name UpDataStructsPropertyKeyPermission (255) */
interface UpDataStructsPropertyKeyPermission extends Struct {
readonly key: Bytes;
readonly permission: UpDataStructsPropertyPermission;
}
- /** @name UpDataStructsPropertyPermission (333) */
+ /** @name UpDataStructsPropertyPermission (256) */
interface UpDataStructsPropertyPermission extends Struct {
readonly mutable: bool;
readonly collectionAdmin: bool;
readonly tokenOwner: bool;
}
- /** @name UpDataStructsProperty (336) */
+ /** @name UpDataStructsProperty (259) */
interface UpDataStructsProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name UpDataStructsCreateItemData (339) */
+ /** @name UpDataStructsCreateItemData (262) */
interface UpDataStructsCreateItemData extends Enum {
readonly isNft: boolean;
readonly asNft: UpDataStructsCreateNftData;
@@ -3018,23 +2633,23 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateNftData (340) */
+ /** @name UpDataStructsCreateNftData (263) */
interface UpDataStructsCreateNftData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateFungibleData (341) */
+ /** @name UpDataStructsCreateFungibleData (264) */
interface UpDataStructsCreateFungibleData extends Struct {
readonly value: u128;
}
- /** @name UpDataStructsCreateReFungibleData (342) */
+ /** @name UpDataStructsCreateReFungibleData (265) */
interface UpDataStructsCreateReFungibleData extends Struct {
readonly pieces: u128;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateItemExData (345) */
+ /** @name UpDataStructsCreateItemExData (268) */
interface UpDataStructsCreateItemExData extends Enum {
readonly isNft: boolean;
readonly asNft: Vec<UpDataStructsCreateNftExData>;
@@ -3047,26 +2662,26 @@
readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
}
- /** @name UpDataStructsCreateNftExData (347) */
+ /** @name UpDataStructsCreateNftExData (270) */
interface UpDataStructsCreateNftExData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsCreateRefungibleExSingleOwner (354) */
+ /** @name UpDataStructsCreateRefungibleExSingleOwner (277) */
interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
readonly pieces: u128;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateRefungibleExMultipleOwners (356) */
+ /** @name UpDataStructsCreateRefungibleExMultipleOwners (279) */
interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name PalletConfigurationCall (357) */
+ /** @name PalletConfigurationCall (280) */
interface PalletConfigurationCall extends Enum {
readonly isSetWeightToFeeCoefficientOverride: boolean;
readonly asSetWeightToFeeCoefficientOverride: {
@@ -3099,7 +2714,7 @@
readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';
}
- /** @name PalletConfigurationAppPromotionConfiguration (362) */
+ /** @name PalletConfigurationAppPromotionConfiguration (285) */
interface PalletConfigurationAppPromotionConfiguration extends Struct {
readonly recalculationInterval: Option<u32>;
readonly pendingInterval: Option<u32>;
@@ -3107,13 +2722,13 @@
readonly maxStakersPerCalculation: Option<u8>;
}
- /** @name PalletTemplateTransactionPaymentCall (366) */
+ /** @name PalletTemplateTransactionPaymentCall (289) */
type PalletTemplateTransactionPaymentCall = Null;
- /** @name PalletStructureCall (367) */
+ /** @name PalletStructureCall (290) */
type PalletStructureCall = Null;
- /** @name PalletRmrkCoreCall (368) */
+ /** @name PalletRmrkCoreCall (291) */
interface PalletRmrkCoreCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -3219,7 +2834,7 @@
readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
}
- /** @name RmrkTraitsResourceResourceTypes (374) */
+ /** @name RmrkTraitsResourceResourceTypes (297) */
interface RmrkTraitsResourceResourceTypes extends Enum {
readonly isBasic: boolean;
readonly asBasic: RmrkTraitsResourceBasicResource;
@@ -3230,7 +2845,7 @@
readonly type: 'Basic' | 'Composable' | 'Slot';
}
- /** @name RmrkTraitsResourceBasicResource (376) */
+ /** @name RmrkTraitsResourceBasicResource (299) */
interface RmrkTraitsResourceBasicResource extends Struct {
readonly src: Option<Bytes>;
readonly metadata: Option<Bytes>;
@@ -3238,7 +2853,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceComposableResource (378) */
+ /** @name RmrkTraitsResourceComposableResource (301) */
interface RmrkTraitsResourceComposableResource extends Struct {
readonly parts: Vec<u32>;
readonly base: u32;
@@ -3248,7 +2863,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceSlotResource (379) */
+ /** @name RmrkTraitsResourceSlotResource (302) */
interface RmrkTraitsResourceSlotResource extends Struct {
readonly base: u32;
readonly src: Option<Bytes>;
@@ -3258,7 +2873,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name PalletRmrkEquipCall (382) */
+ /** @name PalletRmrkEquipCall (305) */
interface PalletRmrkEquipCall extends Enum {
readonly isCreateBase: boolean;
readonly asCreateBase: {
@@ -3280,7 +2895,7 @@
readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
}
- /** @name RmrkTraitsPartPartType (385) */
+ /** @name RmrkTraitsPartPartType (308) */
interface RmrkTraitsPartPartType extends Enum {
readonly isFixedPart: boolean;
readonly asFixedPart: RmrkTraitsPartFixedPart;
@@ -3289,14 +2904,14 @@
readonly type: 'FixedPart' | 'SlotPart';
}
- /** @name RmrkTraitsPartFixedPart (387) */
+ /** @name RmrkTraitsPartFixedPart (310) */
interface RmrkTraitsPartFixedPart extends Struct {
readonly id: u32;
readonly z: u32;
readonly src: Bytes;
}
- /** @name RmrkTraitsPartSlotPart (388) */
+ /** @name RmrkTraitsPartSlotPart (311) */
interface RmrkTraitsPartSlotPart extends Struct {
readonly id: u32;
readonly equippable: RmrkTraitsPartEquippableList;
@@ -3304,7 +2919,7 @@
readonly z: u32;
}
- /** @name RmrkTraitsPartEquippableList (389) */
+ /** @name RmrkTraitsPartEquippableList (312) */
interface RmrkTraitsPartEquippableList extends Enum {
readonly isAll: boolean;
readonly isEmpty: boolean;
@@ -3313,20 +2928,20 @@
readonly type: 'All' | 'Empty' | 'Custom';
}
- /** @name RmrkTraitsTheme (391) */
+ /** @name RmrkTraitsTheme (314) */
interface RmrkTraitsTheme extends Struct {
readonly name: Bytes;
readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
readonly inherit: bool;
}
- /** @name RmrkTraitsThemeThemeProperty (393) */
+ /** @name RmrkTraitsThemeThemeProperty (316) */
interface RmrkTraitsThemeThemeProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name PalletAppPromotionCall (395) */
+ /** @name PalletAppPromotionCall (318) */
interface PalletAppPromotionCall extends Enum {
readonly isSetAdminAddress: boolean;
readonly asSetAdminAddress: {
@@ -3360,7 +2975,7 @@
readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
}
- /** @name PalletForeignAssetsModuleCall (396) */
+ /** @name PalletForeignAssetsModuleCall (319) */
interface PalletForeignAssetsModuleCall extends Enum {
readonly isRegisterForeignAsset: boolean;
readonly asRegisterForeignAsset: {
@@ -3377,7 +2992,7 @@
readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
}
- /** @name PalletEvmCall (397) */
+ /** @name PalletEvmCall (320) */
interface PalletEvmCall extends Enum {
readonly isWithdraw: boolean;
readonly asWithdraw: {
@@ -3422,7 +3037,7 @@
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
}
- /** @name PalletEthereumCall (403) */
+ /** @name PalletEthereumCall (326) */
interface PalletEthereumCall extends Enum {
readonly isTransact: boolean;
readonly asTransact: {
@@ -3431,7 +3046,7 @@
readonly type: 'Transact';
}
- /** @name EthereumTransactionTransactionV2 (404) */
+ /** @name EthereumTransactionTransactionV2 (327) */
interface EthereumTransactionTransactionV2 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -3442,7 +3057,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumTransactionLegacyTransaction (405) */
+ /** @name EthereumTransactionLegacyTransaction (328) */
interface EthereumTransactionLegacyTransaction extends Struct {
readonly nonce: U256;
readonly gasPrice: U256;
@@ -3453,7 +3068,7 @@
readonly signature: EthereumTransactionTransactionSignature;
}
- /** @name EthereumTransactionTransactionAction (406) */
+ /** @name EthereumTransactionTransactionAction (329) */
interface EthereumTransactionTransactionAction extends Enum {
readonly isCall: boolean;
readonly asCall: H160;
@@ -3461,14 +3076,14 @@
readonly type: 'Call' | 'Create';
}
- /** @name EthereumTransactionTransactionSignature (407) */
+ /** @name EthereumTransactionTransactionSignature (330) */
interface EthereumTransactionTransactionSignature extends Struct {
readonly v: u64;
readonly r: H256;
readonly s: H256;
}
- /** @name EthereumTransactionEip2930Transaction (409) */
+ /** @name EthereumTransactionEip2930Transaction (332) */
interface EthereumTransactionEip2930Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3483,13 +3098,13 @@
readonly s: H256;
}
- /** @name EthereumTransactionAccessListItem (411) */
+ /** @name EthereumTransactionAccessListItem (334) */
interface EthereumTransactionAccessListItem extends Struct {
readonly address: H160;
readonly storageKeys: Vec<H256>;
}
- /** @name EthereumTransactionEip1559Transaction (412) */
+ /** @name EthereumTransactionEip1559Transaction (335) */
interface EthereumTransactionEip1559Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3505,7 +3120,7 @@
readonly s: H256;
}
- /** @name PalletEvmMigrationCall (413) */
+ /** @name PalletEvmMigrationCall (336) */
interface PalletEvmMigrationCall extends Enum {
readonly isBegin: boolean;
readonly asBegin: {
@@ -3532,14 +3147,14 @@
readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';
}
- /** @name PalletMaintenanceCall (417) */
+ /** @name PalletMaintenanceCall (340) */
interface PalletMaintenanceCall extends Enum {
readonly isEnable: boolean;
readonly isDisable: boolean;
readonly type: 'Enable' | 'Disable';
}
- /** @name PalletTestUtilsCall (418) */
+ /** @name PalletTestUtilsCall (341) */
interface PalletTestUtilsCall extends Enum {
readonly isEnable: boolean;
readonly isSetTestValue: boolean;
@@ -3559,13 +3174,13 @@
readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';
}
- /** @name PalletSudoError (420) */
+ /** @name PalletSudoError (343) */
interface PalletSudoError extends Enum {
readonly isRequireSudo: boolean;
readonly type: 'RequireSudo';
}
- /** @name OrmlVestingModuleError (422) */
+ /** @name OrmlVestingModuleError (345) */
interface OrmlVestingModuleError extends Enum {
readonly isZeroVestingPeriod: boolean;
readonly isZeroVestingPeriodCount: boolean;
@@ -3576,7 +3191,7 @@
readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
}
- /** @name OrmlXtokensModuleError (423) */
+ /** @name OrmlXtokensModuleError (346) */
interface OrmlXtokensModuleError extends Enum {
readonly isAssetHasNoReserve: boolean;
readonly isNotCrossChainTransfer: boolean;
@@ -3600,26 +3215,26 @@
readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
}
- /** @name OrmlTokensBalanceLock (426) */
+ /** @name OrmlTokensBalanceLock (349) */
interface OrmlTokensBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name OrmlTokensAccountData (428) */
+ /** @name OrmlTokensAccountData (351) */
interface OrmlTokensAccountData extends Struct {
readonly free: u128;
readonly reserved: u128;
readonly frozen: u128;
}
- /** @name OrmlTokensReserveData (430) */
+ /** @name OrmlTokensReserveData (353) */
interface OrmlTokensReserveData extends Struct {
readonly id: Null;
readonly amount: u128;
}
- /** @name OrmlTokensModuleError (432) */
+ /** @name OrmlTokensModuleError (355) */
interface OrmlTokensModuleError extends Enum {
readonly isBalanceTooLow: boolean;
readonly isAmountIntoBalanceFailed: boolean;
@@ -3632,21 +3247,21 @@
readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name CumulusPalletXcmpQueueInboundChannelDetails (434) */
+ /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */
interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
readonly sender: u32;
readonly state: CumulusPalletXcmpQueueInboundState;
readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
}
- /** @name CumulusPalletXcmpQueueInboundState (435) */
+ /** @name CumulusPalletXcmpQueueInboundState (358) */
interface CumulusPalletXcmpQueueInboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name PolkadotParachainPrimitivesXcmpMessageFormat (438) */
+ /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */
interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
readonly isConcatenatedVersionedXcm: boolean;
readonly isConcatenatedEncodedBlob: boolean;
@@ -3654,7 +3269,7 @@
readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
}
- /** @name CumulusPalletXcmpQueueOutboundChannelDetails (441) */
+ /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */
interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
readonly recipient: u32;
readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -3663,14 +3278,14 @@
readonly lastIndex: u16;
}
- /** @name CumulusPalletXcmpQueueOutboundState (442) */
+ /** @name CumulusPalletXcmpQueueOutboundState (365) */
interface CumulusPalletXcmpQueueOutboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name CumulusPalletXcmpQueueQueueConfigData (444) */
+ /** @name CumulusPalletXcmpQueueQueueConfigData (367) */
interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
readonly suspendThreshold: u32;
readonly dropThreshold: u32;
@@ -3680,7 +3295,7 @@
readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
}
- /** @name CumulusPalletXcmpQueueError (446) */
+ /** @name CumulusPalletXcmpQueueError (369) */
interface CumulusPalletXcmpQueueError extends Enum {
readonly isFailedToSend: boolean;
readonly isBadXcmOrigin: boolean;
@@ -3690,7 +3305,7 @@
readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
}
- /** @name PalletXcmError (447) */
+ /** @name PalletXcmError (370) */
interface PalletXcmError extends Enum {
readonly isUnreachable: boolean;
readonly isSendFailure: boolean;
@@ -3708,29 +3323,29 @@
readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
}
- /** @name CumulusPalletXcmError (448) */
+ /** @name CumulusPalletXcmError (371) */
type CumulusPalletXcmError = Null;
- /** @name CumulusPalletDmpQueueConfigData (449) */
+ /** @name CumulusPalletDmpQueueConfigData (372) */
interface CumulusPalletDmpQueueConfigData extends Struct {
readonly maxIndividual: SpWeightsWeightV2Weight;
}
- /** @name CumulusPalletDmpQueuePageIndexData (450) */
+ /** @name CumulusPalletDmpQueuePageIndexData (373) */
interface CumulusPalletDmpQueuePageIndexData extends Struct {
readonly beginUsed: u32;
readonly endUsed: u32;
readonly overweightCount: u64;
}
- /** @name CumulusPalletDmpQueueError (453) */
+ /** @name CumulusPalletDmpQueueError (376) */
interface CumulusPalletDmpQueueError extends Enum {
readonly isUnknown: boolean;
readonly isOverLimit: boolean;
readonly type: 'Unknown' | 'OverLimit';
}
- /** @name PalletUniqueError (457) */
+ /** @name PalletUniqueError (380) */
interface PalletUniqueError extends Enum {
readonly isCollectionDecimalPointLimitExceeded: boolean;
readonly isEmptyArgument: boolean;
@@ -3738,13 +3353,13 @@
readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
}
- /** @name PalletConfigurationError (458) */
+ /** @name PalletConfigurationError (381) */
interface PalletConfigurationError extends Enum {
readonly isInconsistentConfiguration: boolean;
readonly type: 'InconsistentConfiguration';
}
- /** @name UpDataStructsCollection (459) */
+ /** @name UpDataStructsCollection (382) */
interface UpDataStructsCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3757,7 +3372,7 @@
readonly flags: U8aFixed;
}
- /** @name UpDataStructsSponsorshipStateAccountId32 (460) */
+ /** @name UpDataStructsSponsorshipStateAccountId32 (383) */
interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3767,43 +3382,43 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name UpDataStructsProperties (461) */
+ /** @name UpDataStructsProperties (385) */
interface UpDataStructsProperties extends Struct {
readonly map: UpDataStructsPropertiesMapBoundedVec;
readonly consumedSpace: u32;
readonly spaceLimit: u32;
}
- /** @name UpDataStructsPropertiesMapBoundedVec (462) */
+ /** @name UpDataStructsPropertiesMapBoundedVec (386) */
interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
- /** @name UpDataStructsPropertiesMapPropertyPermission (467) */
+ /** @name UpDataStructsPropertiesMapPropertyPermission (391) */
interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
- /** @name UpDataStructsCollectionStats (474) */
+ /** @name UpDataStructsCollectionStats (398) */
interface UpDataStructsCollectionStats extends Struct {
readonly created: u32;
readonly destroyed: u32;
readonly alive: u32;
}
- /** @name UpDataStructsTokenChild (475) */
+ /** @name UpDataStructsTokenChild (399) */
interface UpDataStructsTokenChild extends Struct {
readonly token: u32;
readonly collection: u32;
}
- /** @name PhantomTypeUpDataStructs (476) */
+ /** @name PhantomTypeUpDataStructs (400) */
interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild, UpPovEstimateRpcPovInfo]>> {}
- /** @name UpDataStructsTokenData (478) */
+ /** @name UpDataStructsTokenData (402) */
interface UpDataStructsTokenData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
readonly pieces: u128;
}
- /** @name UpDataStructsRpcCollection (480) */
+ /** @name UpDataStructsRpcCollection (404) */
interface UpDataStructsRpcCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3819,13 +3434,13 @@
readonly flags: UpDataStructsRpcCollectionFlags;
}
- /** @name UpDataStructsRpcCollectionFlags (481) */
+ /** @name UpDataStructsRpcCollectionFlags (405) */
interface UpDataStructsRpcCollectionFlags extends Struct {
readonly foreign: bool;
readonly erc721metadata: bool;
}
- /** @name RmrkTraitsCollectionCollectionInfo (482) */
+ /** @name RmrkTraitsCollectionCollectionInfo (406) */
interface RmrkTraitsCollectionCollectionInfo extends Struct {
readonly issuer: AccountId32;
readonly metadata: Bytes;
@@ -3834,7 +3449,7 @@
readonly nftsCount: u32;
}
- /** @name RmrkTraitsNftNftInfo (483) */
+ /** @name RmrkTraitsNftNftInfo (407) */
interface RmrkTraitsNftNftInfo extends Struct {
readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
@@ -3843,13 +3458,13 @@
readonly pending: bool;
}
- /** @name RmrkTraitsNftRoyaltyInfo (485) */
+ /** @name RmrkTraitsNftRoyaltyInfo (409) */
interface RmrkTraitsNftRoyaltyInfo extends Struct {
readonly recipient: AccountId32;
readonly amount: Permill;
}
- /** @name RmrkTraitsResourceResourceInfo (486) */
+ /** @name RmrkTraitsResourceResourceInfo (410) */
interface RmrkTraitsResourceResourceInfo extends Struct {
readonly id: u32;
readonly resource: RmrkTraitsResourceResourceTypes;
@@ -3857,26 +3472,26 @@
readonly pendingRemoval: bool;
}
- /** @name RmrkTraitsPropertyPropertyInfo (487) */
+ /** @name RmrkTraitsPropertyPropertyInfo (411) */
interface RmrkTraitsPropertyPropertyInfo extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name RmrkTraitsBaseBaseInfo (488) */
+ /** @name RmrkTraitsBaseBaseInfo (412) */
interface RmrkTraitsBaseBaseInfo extends Struct {
readonly issuer: AccountId32;
readonly baseType: Bytes;
readonly symbol: Bytes;
}
- /** @name RmrkTraitsNftNftChild (489) */
+ /** @name RmrkTraitsNftNftChild (413) */
interface RmrkTraitsNftNftChild extends Struct {
readonly collectionId: u32;
readonly nftId: u32;
}
- /** @name UpPovEstimateRpcPovInfo (490) */
+ /** @name UpPovEstimateRpcPovInfo (414) */
interface UpPovEstimateRpcPovInfo extends Struct {
readonly proofSize: u64;
readonly compactProofSize: u64;
@@ -3885,7 +3500,7 @@
readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;
}
- /** @name SpRuntimeTransactionValidityTransactionValidityError (493) */
+ /** @name SpRuntimeTransactionValidityTransactionValidityError (417) */
interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {
readonly isInvalid: boolean;
readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;
@@ -3894,7 +3509,7 @@
readonly type: 'Invalid' | 'Unknown';
}
- /** @name SpRuntimeTransactionValidityInvalidTransaction (494) */
+ /** @name SpRuntimeTransactionValidityInvalidTransaction (418) */
interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {
readonly isCall: boolean;
readonly isPayment: boolean;
@@ -3911,7 +3526,7 @@
readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';
}
- /** @name SpRuntimeTransactionValidityUnknownTransaction (495) */
+ /** @name SpRuntimeTransactionValidityUnknownTransaction (419) */
interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {
readonly isCannotLookup: boolean;
readonly isNoUnsignedValidator: boolean;
@@ -3920,13 +3535,13 @@
readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';
}
- /** @name UpPovEstimateRpcTrieKeyValue (497) */
+ /** @name UpPovEstimateRpcTrieKeyValue (421) */
interface UpPovEstimateRpcTrieKeyValue extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name PalletCommonError (499) */
+ /** @name PalletCommonError (423) */
interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -3967,7 +3582,7 @@
readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
}
- /** @name PalletFungibleError (501) */
+ /** @name PalletFungibleError (425) */
interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -3979,7 +3594,7 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
}
- /** @name PalletRefungibleError (505) */
+ /** @name PalletRefungibleError (429) */
interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -3989,19 +3604,19 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (506) */
+ /** @name PalletNonfungibleItemData (430) */
interface PalletNonfungibleItemData extends Struct {
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsPropertyScope (508) */
+ /** @name UpDataStructsPropertyScope (432) */
interface UpDataStructsPropertyScope extends Enum {
readonly isNone: boolean;
readonly isRmrk: boolean;
readonly type: 'None' | 'Rmrk';
}
- /** @name PalletNonfungibleError (511) */
+ /** @name PalletNonfungibleError (435) */
interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -4009,7 +3624,7 @@
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
}
- /** @name PalletStructureError (512) */
+ /** @name PalletStructureError (436) */
interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -4018,7 +3633,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
}
- /** @name PalletRmrkCoreError (513) */
+ /** @name PalletRmrkCoreError (437) */
interface PalletRmrkCoreError extends Enum {
readonly isCorruptedCollectionType: boolean;
readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -4042,7 +3657,7 @@
readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
}
- /** @name PalletRmrkEquipError (515) */
+ /** @name PalletRmrkEquipError (439) */
interface PalletRmrkEquipError extends Enum {
readonly isPermissionError: boolean;
readonly isNoAvailableBaseId: boolean;
@@ -4054,7 +3669,7 @@
readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
}
- /** @name PalletAppPromotionError (521) */
+ /** @name PalletAppPromotionError (445) */
interface PalletAppPromotionError extends Enum {
readonly isAdminNotSet: boolean;
readonly isNoPermission: boolean;
@@ -4065,7 +3680,7 @@
readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
}
- /** @name PalletForeignAssetsModuleError (522) */
+ /** @name PalletForeignAssetsModuleError (446) */
interface PalletForeignAssetsModuleError extends Enum {
readonly isBadLocation: boolean;
readonly isMultiLocationExisted: boolean;
@@ -4074,7 +3689,7 @@
readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
}
- /** @name PalletEvmError (524) */
+ /** @name PalletEvmError (448) */
interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -4090,7 +3705,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';
}
- /** @name FpRpcTransactionStatus (527) */
+ /** @name FpRpcTransactionStatus (451) */
interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -4101,10 +3716,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (529) */
+ /** @name EthbloomBloom (453) */
interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (531) */
+ /** @name EthereumReceiptReceiptV3 (455) */
interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -4115,7 +3730,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (532) */
+ /** @name EthereumReceiptEip658ReceiptData (456) */
interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -4123,14 +3738,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (533) */
+ /** @name EthereumBlock (457) */
interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (534) */
+ /** @name EthereumHeader (458) */
interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -4149,24 +3764,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (535) */
+ /** @name EthereumTypesHashH64 (459) */
interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (540) */
+ /** @name PalletEthereumError (464) */
interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (541) */
+ /** @name PalletEvmCoderSubstrateError (465) */
interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (542) */
+ /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (466) */
interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -4176,7 +3791,7 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (543) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (467) */
interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -4184,7 +3799,7 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (549) */
+ /** @name PalletEvmContractHelpersError (473) */
interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly isNoPendingSponsor: boolean;
@@ -4192,7 +3807,7 @@
readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
}
- /** @name PalletEvmMigrationError (550) */
+ /** @name PalletEvmMigrationError (474) */
interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
@@ -4200,17 +3815,17 @@
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
}
- /** @name PalletMaintenanceError (551) */
+ /** @name PalletMaintenanceError (475) */
type PalletMaintenanceError = Null;
- /** @name PalletTestUtilsError (552) */
+ /** @name PalletTestUtilsError (476) */
interface PalletTestUtilsError extends Enum {
readonly isTestPalletDisabled: boolean;
readonly isTriggerRollback: boolean;
readonly type: 'TestPalletDisabled' | 'TriggerRollback';
}
- /** @name SpRuntimeMultiSignature (554) */
+ /** @name SpRuntimeMultiSignature (478) */
interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -4221,43 +3836,43 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (555) */
+ /** @name SpCoreEd25519Signature (479) */
interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (557) */
+ /** @name SpCoreSr25519Signature (481) */
interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (558) */
+ /** @name SpCoreEcdsaSignature (482) */
interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (561) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (485) */
type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckTxVersion (562) */
+ /** @name FrameSystemExtensionsCheckTxVersion (486) */
type FrameSystemExtensionsCheckTxVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (563) */
+ /** @name FrameSystemExtensionsCheckGenesis (487) */
type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (566) */
+ /** @name FrameSystemExtensionsCheckNonce (490) */
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (567) */
+ /** @name FrameSystemExtensionsCheckWeight (491) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (568) */
+ /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (492) */
type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
- /** @name OpalRuntimeRuntimeCommonDataManagementFilterIdentity (569) */
- type OpalRuntimeRuntimeCommonDataManagementFilterIdentity = Null;
+ /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (493) */
+ type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (570) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (494) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (571) */
+ /** @name OpalRuntimeRuntime (495) */
type OpalRuntimeRuntime = Null;
- /** @name PalletEthereumFakeTransactionFinalizer (572) */
+ /** @name PalletEthereumFakeTransactionFinalizer (496) */
type PalletEthereumFakeTransactionFinalizer = Null;
} // declare module