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.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -1,7 +1,6 @@
// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
/* eslint-disable */
-import type { Data } from '@polkadot/types';
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';
@@ -693,17 +692,12 @@
/** @name OpalRuntimeRuntime */
export interface OpalRuntimeRuntime extends Null {}
-/** @name OpalRuntimeRuntimeCommonDataManagementFilterIdentity */
-export interface OpalRuntimeRuntimeCommonDataManagementFilterIdentity extends Null {}
+/** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls */
+export interface OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls extends Null {}
/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */
export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}
-/** @name OpalRuntimeRuntimeCommonSessionKeys */
-export interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
- readonly aura: SpConsensusAuraSr25519AppSr25519Public;
-}
-
/** @name OrmlTokensAccountData */
export interface OrmlTokensAccountData extends Struct {
readonly free: u128;
@@ -1061,36 +1055,6 @@
readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
}
-/** @name PalletAuthorshipCall */
-export interface PalletAuthorshipCall extends Enum {
- readonly isSetUncles: boolean;
- readonly asSetUncles: {
- readonly newUncles: Vec<SpRuntimeHeader>;
- } & Struct;
- readonly type: 'SetUncles';
-}
-
-/** @name PalletAuthorshipError */
-export 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 PalletAuthorshipUncleEntryItem */
-export interface PalletAuthorshipUncleEntryItem extends Enum {
- readonly isInclusionHeight: boolean;
- readonly asInclusionHeight: u32;
- readonly isUncle: boolean;
- readonly asUncle: ITuple<[H256, Option<AccountId32>]>;
- readonly type: 'InclusionHeight' | 'Uncle';
-}
-
/** @name PalletBalancesAccountData */
export interface PalletBalancesAccountData extends Struct {
readonly free: u128;
@@ -1227,78 +1191,8 @@
export interface PalletBalancesReserveData extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
-}
-
-/** @name PalletCollatorSelectionCall */
-export 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 */
-export 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 PalletCollatorSelectionEvent */
-export 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 PalletCommonError */
export interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
@@ -1741,237 +1635,8 @@
readonly isSettingAllowanceForAllNotAllowed: boolean;
readonly isFungibleTokensAreAlwaysValid: boolean;
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
-}
-
-/** @name PalletIdentityBitFlags */
-export interface PalletIdentityBitFlags extends Struct {
- readonly _bitLength: 64;
- readonly Display: 1;
- readonly Legal: 2;
- readonly Web: 4;
- readonly Riot: 8;
- readonly Email: 16;
- readonly PgpFingerprint: 32;
- readonly Image: 64;
- readonly Twitter: 128;
-}
-
-/** @name PalletIdentityCall */
-export 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 */
-export 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 PalletIdentityEvent */
-export 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 PalletIdentityIdentityField */
-export 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 PalletIdentityIdentityInfo */
-export 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 PalletIdentityJudgement */
-export 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 PalletIdentityRegistrarInfo */
-export interface PalletIdentityRegistrarInfo extends Struct {
- readonly account: AccountId32;
- readonly fee: u128;
- readonly fields: PalletIdentityBitFlags;
-}
-
-/** @name PalletIdentityRegistration */
-export interface PalletIdentityRegistration extends Struct {
- readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
- readonly deposit: u128;
- readonly info: PalletIdentityIdentityInfo;
-}
-
/** @name PalletInflationCall */
export interface PalletInflationCall extends Enum {
readonly isStartInflation: boolean;
@@ -2290,36 +1955,6 @@
readonly type: 'BaseCreated' | 'EquippablesUpdated';
}
-/** @name PalletSessionCall */
-export 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 */
-export 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 PalletSessionEvent */
-export interface PalletSessionEvent extends Enum {
- readonly isNewSession: boolean;
- readonly asNewSession: {
- readonly sessionIndex: u32;
- } & Struct;
- readonly type: 'NewSession';
-}
-
/** @name PalletStructureCall */
export interface PalletStructureCall extends Null {}
@@ -3050,21 +2685,12 @@
readonly key: Bytes;
readonly value: Bytes;
}
-
-/** @name SpConsensusAuraSr25519AppSr25519Public */
-export interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}
-/** @name SpCoreCryptoKeyTypeId */
-export interface SpCoreCryptoKeyTypeId extends U8aFixed {}
-
/** @name SpCoreEcdsaSignature */
export interface SpCoreEcdsaSignature extends U8aFixed {}
/** @name SpCoreEd25519Signature */
export interface SpCoreEd25519Signature extends U8aFixed {}
-
-/** @name SpCoreSr25519Public */
-export interface SpCoreSr25519Public extends U8aFixed {}
/** @name SpCoreSr25519Signature */
export interface SpCoreSr25519Signature extends U8aFixed {}
@@ -3077,9 +2703,6 @@
readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
}
-/** @name SpRuntimeBlakeTwo256 */
-export interface SpRuntimeBlakeTwo256 extends Null {}
-
/** @name SpRuntimeDigest */
export interface SpRuntimeDigest extends Struct {
readonly logs: Vec<SpRuntimeDigestDigestItem>;
@@ -3119,15 +2742,6 @@
readonly isCorruption: boolean;
readonly isUnavailable: boolean;
readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';
-}
-
-/** @name SpRuntimeHeader */
-export interface SpRuntimeHeader extends Struct {
- readonly parentHash: H256;
- readonly number: Compact<u32>;
- readonly stateRoot: H256;
- readonly extrinsicsRoot: H256;
- readonly digest: SpRuntimeDigest;
}
/** @name SpRuntimeModuleError */
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.tsdiffbeforeafterboth5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions6import '@polkadot/types/lookup';6import '@polkadot/types/lookup';778import type { Data } from '@polkadot/types';9import 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';8import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';10import type { ITuple } from '@polkadot/types-codec/types';9import type { ITuple } from '@polkadot/types-codec/types';11import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';12import type { Event } from '@polkadot/types/interfaces/system';11import type { Event } from '@polkadot/types/interfaces/system';197 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';196 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';198 }197 }199200 /** @name PalletCollatorSelectionEvent (30) */201 interface PalletCollatorSelectionEvent extends Enum {202 readonly isInvulnerableAdded: boolean;203 readonly asInvulnerableAdded: {204 readonly invulnerable: AccountId32;205 } & Struct;206 readonly isInvulnerableRemoved: boolean;207 readonly asInvulnerableRemoved: {208 readonly invulnerable: AccountId32;209 } & Struct;210 readonly isLicenseObtained: boolean;211 readonly asLicenseObtained: {212 readonly accountId: AccountId32;213 readonly deposit: u128;214 } & Struct;215 readonly isLicenseReleased: boolean;216 readonly asLicenseReleased: {217 readonly accountId: AccountId32;218 readonly depositReturned: u128;219 } & Struct;220 readonly isCandidateAdded: boolean;221 readonly asCandidateAdded: {222 readonly accountId: AccountId32;223 } & Struct;224 readonly isCandidateRemoved: boolean;225 readonly asCandidateRemoved: {226 readonly accountId: AccountId32;227 } & Struct;228 readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';229 }230231 /** @name PalletSessionEvent (31) */232 interface PalletSessionEvent extends Enum {233 readonly isNewSession: boolean;234 readonly asNewSession: {235 readonly sessionIndex: u32;236 } & Struct;237 readonly type: 'NewSession';238 }239240 /** @name PalletIdentityEvent (32) */241 interface PalletIdentityEvent extends Enum {242 readonly isIdentitySet: boolean;243 readonly asIdentitySet: {244 readonly who: AccountId32;245 } & Struct;246 readonly isIdentityCleared: boolean;247 readonly asIdentityCleared: {248 readonly who: AccountId32;249 readonly deposit: u128;250 } & Struct;251 readonly isIdentityKilled: boolean;252 readonly asIdentityKilled: {253 readonly who: AccountId32;254 readonly deposit: u128;255 } & Struct;256 readonly isIdentitiesInserted: boolean;257 readonly asIdentitiesInserted: {258 readonly amount: u32;259 } & Struct;260 readonly isIdentitiesRemoved: boolean;261 readonly asIdentitiesRemoved: {262 readonly amount: u32;263 } & Struct;264 readonly isJudgementRequested: boolean;265 readonly asJudgementRequested: {266 readonly who: AccountId32;267 readonly registrarIndex: u32;268 } & Struct;269 readonly isJudgementUnrequested: boolean;270 readonly asJudgementUnrequested: {271 readonly who: AccountId32;272 readonly registrarIndex: u32;273 } & Struct;274 readonly isJudgementGiven: boolean;275 readonly asJudgementGiven: {276 readonly target: AccountId32;277 readonly registrarIndex: u32;278 } & Struct;279 readonly isRegistrarAdded: boolean;280 readonly asRegistrarAdded: {281 readonly registrarIndex: u32;282 } & Struct;283 readonly isSubIdentityAdded: boolean;284 readonly asSubIdentityAdded: {285 readonly sub: AccountId32;286 readonly main: AccountId32;287 readonly deposit: u128;288 } & Struct;289 readonly isSubIdentityRemoved: boolean;290 readonly asSubIdentityRemoved: {291 readonly sub: AccountId32;292 readonly main: AccountId32;293 readonly deposit: u128;294 } & Struct;295 readonly isSubIdentityRevoked: boolean;296 readonly asSubIdentityRevoked: {297 readonly sub: AccountId32;298 readonly main: AccountId32;299 readonly deposit: u128;300 } & Struct;301 readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked';302 }303198304 /** @name PalletBalancesEvent (33) */199 /** @name PalletBalancesEvent (30) */305 interface PalletBalancesEvent extends Enum {200 interface PalletBalancesEvent extends Enum {306 readonly isEndowed: boolean;201 readonly isEndowed: boolean;307 readonly asEndowed: {202 readonly asEndowed: {360 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';255 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';361 }256 }362257363 /** @name FrameSupportTokensMiscBalanceStatus (34) */258 /** @name FrameSupportTokensMiscBalanceStatus (31) */364 interface FrameSupportTokensMiscBalanceStatus extends Enum {259 interface FrameSupportTokensMiscBalanceStatus extends Enum {365 readonly isFree: boolean;260 readonly isFree: boolean;366 readonly isReserved: boolean;261 readonly isReserved: boolean;367 readonly type: 'Free' | 'Reserved';262 readonly type: 'Free' | 'Reserved';368 }263 }369264370 /** @name PalletTransactionPaymentEvent (35) */265 /** @name PalletTransactionPaymentEvent (32) */371 interface PalletTransactionPaymentEvent extends Enum {266 interface PalletTransactionPaymentEvent extends Enum {372 readonly isTransactionFeePaid: boolean;267 readonly isTransactionFeePaid: boolean;373 readonly asTransactionFeePaid: {268 readonly asTransactionFeePaid: {378 readonly type: 'TransactionFeePaid';273 readonly type: 'TransactionFeePaid';379 }274 }380275381 /** @name PalletTreasuryEvent (36) */276 /** @name PalletTreasuryEvent (33) */382 interface PalletTreasuryEvent extends Enum {277 interface PalletTreasuryEvent extends Enum {383 readonly isProposed: boolean;278 readonly isProposed: boolean;384 readonly asProposed: {279 readonly asProposed: {420 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';315 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';421 }316 }422317423 /** @name PalletSudoEvent (37) */318 /** @name PalletSudoEvent (34) */424 interface PalletSudoEvent extends Enum {319 interface PalletSudoEvent extends Enum {425 readonly isSudid: boolean;320 readonly isSudid: boolean;426 readonly asSudid: {321 readonly asSudid: {437 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';332 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';438 }333 }439334440 /** @name OrmlVestingModuleEvent (41) */335 /** @name OrmlVestingModuleEvent (38) */441 interface OrmlVestingModuleEvent extends Enum {336 interface OrmlVestingModuleEvent extends Enum {442 readonly isVestingScheduleAdded: boolean;337 readonly isVestingScheduleAdded: boolean;443 readonly asVestingScheduleAdded: {338 readonly asVestingScheduleAdded: {457 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';352 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';458 }353 }459354460 /** @name OrmlVestingVestingSchedule (42) */355 /** @name OrmlVestingVestingSchedule (39) */461 interface OrmlVestingVestingSchedule extends Struct {356 interface OrmlVestingVestingSchedule extends Struct {462 readonly start: u32;357 readonly start: u32;463 readonly period: u32;358 readonly period: u32;464 readonly periodCount: u32;359 readonly periodCount: u32;465 readonly perPeriod: Compact<u128>;360 readonly perPeriod: Compact<u128>;466 }361 }467362468 /** @name OrmlXtokensModuleEvent (44) */363 /** @name OrmlXtokensModuleEvent (41) */469 interface OrmlXtokensModuleEvent extends Enum {364 interface OrmlXtokensModuleEvent extends Enum {470 readonly isTransferredMultiAssets: boolean;365 readonly isTransferredMultiAssets: boolean;471 readonly asTransferredMultiAssets: {366 readonly asTransferredMultiAssets: {477 readonly type: 'TransferredMultiAssets';372 readonly type: 'TransferredMultiAssets';478 }373 }479374480 /** @name XcmV1MultiassetMultiAssets (45) */375 /** @name XcmV1MultiassetMultiAssets (42) */481 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}376 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}482377483 /** @name XcmV1MultiAsset (47) */378 /** @name XcmV1MultiAsset (44) */484 interface XcmV1MultiAsset extends Struct {379 interface XcmV1MultiAsset extends Struct {485 readonly id: XcmV1MultiassetAssetId;380 readonly id: XcmV1MultiassetAssetId;486 readonly fun: XcmV1MultiassetFungibility;381 readonly fun: XcmV1MultiassetFungibility;487 }382 }488383489 /** @name XcmV1MultiassetAssetId (48) */384 /** @name XcmV1MultiassetAssetId (45) */490 interface XcmV1MultiassetAssetId extends Enum {385 interface XcmV1MultiassetAssetId extends Enum {491 readonly isConcrete: boolean;386 readonly isConcrete: boolean;492 readonly asConcrete: XcmV1MultiLocation;387 readonly asConcrete: XcmV1MultiLocation;495 readonly type: 'Concrete' | 'Abstract';390 readonly type: 'Concrete' | 'Abstract';496 }391 }497392498 /** @name XcmV1MultiLocation (49) */393 /** @name XcmV1MultiLocation (46) */499 interface XcmV1MultiLocation extends Struct {394 interface XcmV1MultiLocation extends Struct {500 readonly parents: u8;395 readonly parents: u8;501 readonly interior: XcmV1MultilocationJunctions;396 readonly interior: XcmV1MultilocationJunctions;502 }397 }503398504 /** @name XcmV1MultilocationJunctions (50) */399 /** @name XcmV1MultilocationJunctions (47) */505 interface XcmV1MultilocationJunctions extends Enum {400 interface XcmV1MultilocationJunctions extends Enum {506 readonly isHere: boolean;401 readonly isHere: boolean;507 readonly isX1: boolean;402 readonly isX1: boolean;523 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';418 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';524 }419 }525420526 /** @name XcmV1Junction (51) */421 /** @name XcmV1Junction (48) */527 interface XcmV1Junction extends Enum {422 interface XcmV1Junction extends Enum {528 readonly isParachain: boolean;423 readonly isParachain: boolean;529 readonly asParachain: Compact<u32>;424 readonly asParachain: Compact<u32>;557 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';452 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';558 }453 }559454560 /** @name XcmV0JunctionNetworkId (53) */455 /** @name XcmV0JunctionNetworkId (50) */561 interface XcmV0JunctionNetworkId extends Enum {456 interface XcmV0JunctionNetworkId extends Enum {562 readonly isAny: boolean;457 readonly isAny: boolean;563 readonly isNamed: boolean;458 readonly isNamed: boolean;567 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';462 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';568 }463 }569464570 /** @name XcmV0JunctionBodyId (56) */465 /** @name XcmV0JunctionBodyId (53) */571 interface XcmV0JunctionBodyId extends Enum {466 interface XcmV0JunctionBodyId extends Enum {572 readonly isUnit: boolean;467 readonly isUnit: boolean;573 readonly isNamed: boolean;468 readonly isNamed: boolean;581 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';476 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';582 }477 }583478584 /** @name XcmV0JunctionBodyPart (57) */479 /** @name XcmV0JunctionBodyPart (54) */585 interface XcmV0JunctionBodyPart extends Enum {480 interface XcmV0JunctionBodyPart extends Enum {586 readonly isVoice: boolean;481 readonly isVoice: boolean;587 readonly isMembers: boolean;482 readonly isMembers: boolean;606 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';501 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';607 }502 }608503609 /** @name XcmV1MultiassetFungibility (58) */504 /** @name XcmV1MultiassetFungibility (55) */610 interface XcmV1MultiassetFungibility extends Enum {505 interface XcmV1MultiassetFungibility extends Enum {611 readonly isFungible: boolean;506 readonly isFungible: boolean;612 readonly asFungible: Compact<u128>;507 readonly asFungible: Compact<u128>;615 readonly type: 'Fungible' | 'NonFungible';510 readonly type: 'Fungible' | 'NonFungible';616 }511 }617512618 /** @name XcmV1MultiassetAssetInstance (59) */513 /** @name XcmV1MultiassetAssetInstance (56) */619 interface XcmV1MultiassetAssetInstance extends Enum {514 interface XcmV1MultiassetAssetInstance extends Enum {620 readonly isUndefined: boolean;515 readonly isUndefined: boolean;621 readonly isIndex: boolean;516 readonly isIndex: boolean;633 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';528 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';634 }529 }635530636 /** @name OrmlTokensModuleEvent (62) */531 /** @name OrmlTokensModuleEvent (59) */637 interface OrmlTokensModuleEvent extends Enum {532 interface OrmlTokensModuleEvent extends Enum {638 readonly isEndowed: boolean;533 readonly isEndowed: boolean;639 readonly asEndowed: {534 readonly asEndowed: {721 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';616 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';722 }617 }723618724 /** @name PalletForeignAssetsAssetIds (63) */619 /** @name PalletForeignAssetsAssetIds (60) */725 interface PalletForeignAssetsAssetIds extends Enum {620 interface PalletForeignAssetsAssetIds extends Enum {726 readonly isForeignAssetId: boolean;621 readonly isForeignAssetId: boolean;727 readonly asForeignAssetId: u32;622 readonly asForeignAssetId: u32;730 readonly type: 'ForeignAssetId' | 'NativeAssetId';625 readonly type: 'ForeignAssetId' | 'NativeAssetId';731 }626 }732627733 /** @name PalletForeignAssetsNativeCurrency (64) */628 /** @name PalletForeignAssetsNativeCurrency (61) */734 interface PalletForeignAssetsNativeCurrency extends Enum {629 interface PalletForeignAssetsNativeCurrency extends Enum {735 readonly isHere: boolean;630 readonly isHere: boolean;736 readonly isParent: boolean;631 readonly isParent: boolean;737 readonly type: 'Here' | 'Parent';632 readonly type: 'Here' | 'Parent';738 }633 }739634740 /** @name CumulusPalletXcmpQueueEvent (65) */635 /** @name CumulusPalletXcmpQueueEvent (62) */741 interface CumulusPalletXcmpQueueEvent extends Enum {636 interface CumulusPalletXcmpQueueEvent extends Enum {742 readonly isSuccess: boolean;637 readonly isSuccess: boolean;743 readonly asSuccess: {638 readonly asSuccess: {781 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';676 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';782 }677 }783678784 /** @name XcmV2TraitsError (67) */679 /** @name XcmV2TraitsError (64) */785 interface XcmV2TraitsError extends Enum {680 interface XcmV2TraitsError extends Enum {786 readonly isOverflow: boolean;681 readonly isOverflow: boolean;787 readonly isUnimplemented: boolean;682 readonly isUnimplemented: boolean;814 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';709 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';815 }710 }816711817 /** @name PalletXcmEvent (69) */712 /** @name PalletXcmEvent (66) */818 interface PalletXcmEvent extends Enum {713 interface PalletXcmEvent extends Enum {819 readonly isAttempted: boolean;714 readonly isAttempted: boolean;820 readonly asAttempted: XcmV2TraitsOutcome;715 readonly asAttempted: XcmV2TraitsOutcome;853 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';748 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';854 }749 }855750856 /** @name XcmV2TraitsOutcome (70) */751 /** @name XcmV2TraitsOutcome (67) */857 interface XcmV2TraitsOutcome extends Enum {752 interface XcmV2TraitsOutcome extends Enum {858 readonly isComplete: boolean;753 readonly isComplete: boolean;859 readonly asComplete: u64;754 readonly asComplete: u64;864 readonly type: 'Complete' | 'Incomplete' | 'Error';759 readonly type: 'Complete' | 'Incomplete' | 'Error';865 }760 }866761867 /** @name XcmV2Xcm (71) */762 /** @name XcmV2Xcm (68) */868 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}763 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}869764870 /** @name XcmV2Instruction (73) */765 /** @name XcmV2Instruction (70) */871 interface XcmV2Instruction extends Enum {766 interface XcmV2Instruction extends Enum {872 readonly isWithdrawAsset: boolean;767 readonly isWithdrawAsset: boolean;873 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;768 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;987 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';882 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';988 }883 }989884990 /** @name XcmV2Response (74) */885 /** @name XcmV2Response (71) */991 interface XcmV2Response extends Enum {886 interface XcmV2Response extends Enum {992 readonly isNull: boolean;887 readonly isNull: boolean;993 readonly isAssets: boolean;888 readonly isAssets: boolean;999 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';894 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';1000 }895 }10018961002 /** @name XcmV0OriginKind (77) */897 /** @name XcmV0OriginKind (74) */1003 interface XcmV0OriginKind extends Enum {898 interface XcmV0OriginKind extends Enum {1004 readonly isNative: boolean;899 readonly isNative: boolean;1005 readonly isSovereignAccount: boolean;900 readonly isSovereignAccount: boolean;1008 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';903 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';1009 }904 }10109051011 /** @name XcmDoubleEncoded (78) */906 /** @name XcmDoubleEncoded (75) */1012 interface XcmDoubleEncoded extends Struct {907 interface XcmDoubleEncoded extends Struct {1013 readonly encoded: Bytes;908 readonly encoded: Bytes;1014 }909 }10159101016 /** @name XcmV1MultiassetMultiAssetFilter (79) */911 /** @name XcmV1MultiassetMultiAssetFilter (76) */1017 interface XcmV1MultiassetMultiAssetFilter extends Enum {912 interface XcmV1MultiassetMultiAssetFilter extends Enum {1018 readonly isDefinite: boolean;913 readonly isDefinite: boolean;1019 readonly asDefinite: XcmV1MultiassetMultiAssets;914 readonly asDefinite: XcmV1MultiassetMultiAssets;1022 readonly type: 'Definite' | 'Wild';917 readonly type: 'Definite' | 'Wild';1023 }918 }10249191025 /** @name XcmV1MultiassetWildMultiAsset (80) */920 /** @name XcmV1MultiassetWildMultiAsset (77) */1026 interface XcmV1MultiassetWildMultiAsset extends Enum {921 interface XcmV1MultiassetWildMultiAsset extends Enum {1027 readonly isAll: boolean;922 readonly isAll: boolean;1028 readonly isAllOf: boolean;923 readonly isAllOf: boolean;1033 readonly type: 'All' | 'AllOf';928 readonly type: 'All' | 'AllOf';1034 }929 }10359301036 /** @name XcmV1MultiassetWildFungibility (81) */931 /** @name XcmV1MultiassetWildFungibility (78) */1037 interface XcmV1MultiassetWildFungibility extends Enum {932 interface XcmV1MultiassetWildFungibility extends Enum {1038 readonly isFungible: boolean;933 readonly isFungible: boolean;1039 readonly isNonFungible: boolean;934 readonly isNonFungible: boolean;1040 readonly type: 'Fungible' | 'NonFungible';935 readonly type: 'Fungible' | 'NonFungible';1041 }936 }10429371043 /** @name XcmV2WeightLimit (82) */938 /** @name XcmV2WeightLimit (79) */1044 interface XcmV2WeightLimit extends Enum {939 interface XcmV2WeightLimit extends Enum {1045 readonly isUnlimited: boolean;940 readonly isUnlimited: boolean;1046 readonly isLimited: boolean;941 readonly isLimited: boolean;1047 readonly asLimited: Compact<u64>;942 readonly asLimited: Compact<u64>;1048 readonly type: 'Unlimited' | 'Limited';943 readonly type: 'Unlimited' | 'Limited';1049 }944 }10509451051 /** @name XcmVersionedMultiAssets (84) */946 /** @name XcmVersionedMultiAssets (81) */1052 interface XcmVersionedMultiAssets extends Enum {947 interface XcmVersionedMultiAssets extends Enum {1053 readonly isV0: boolean;948 readonly isV0: boolean;1054 readonly asV0: Vec<XcmV0MultiAsset>;949 readonly asV0: Vec<XcmV0MultiAsset>;1057 readonly type: 'V0' | 'V1';952 readonly type: 'V0' | 'V1';1058 }953 }10599541060 /** @name XcmV0MultiAsset (86) */955 /** @name XcmV0MultiAsset (83) */1061 interface XcmV0MultiAsset extends Enum {956 interface XcmV0MultiAsset extends Enum {1062 readonly isNone: boolean;957 readonly isNone: boolean;1063 readonly isAll: boolean;958 readonly isAll: boolean;1102 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';997 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';1103 }998 }11049991105 /** @name XcmV0MultiLocation (87) */1000 /** @name XcmV0MultiLocation (84) */1106 interface XcmV0MultiLocation extends Enum {1001 interface XcmV0MultiLocation extends Enum {1107 readonly isNull: boolean;1002 readonly isNull: boolean;1108 readonly isX1: boolean;1003 readonly isX1: boolean;1124 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1019 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1125 }1020 }112610211127 /** @name XcmV0Junction (88) */1022 /** @name XcmV0Junction (85) */1128 interface XcmV0Junction extends Enum {1023 interface XcmV0Junction extends Enum {1129 readonly isParent: boolean;1024 readonly isParent: boolean;1130 readonly isParachain: boolean;1025 readonly isParachain: boolean;1159 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1054 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1160 }1055 }116110561162 /** @name XcmVersionedMultiLocation (89) */1057 /** @name XcmVersionedMultiLocation (86) */1163 interface XcmVersionedMultiLocation extends Enum {1058 interface XcmVersionedMultiLocation extends Enum {1164 readonly isV0: boolean;1059 readonly isV0: boolean;1165 readonly asV0: XcmV0MultiLocation;1060 readonly asV0: XcmV0MultiLocation;1168 readonly type: 'V0' | 'V1';1063 readonly type: 'V0' | 'V1';1169 }1064 }117010651171 /** @name CumulusPalletXcmEvent (90) */1066 /** @name CumulusPalletXcmEvent (87) */1172 interface CumulusPalletXcmEvent extends Enum {1067 interface CumulusPalletXcmEvent extends Enum {1173 readonly isInvalidFormat: boolean;1068 readonly isInvalidFormat: boolean;1174 readonly asInvalidFormat: U8aFixed;1069 readonly asInvalidFormat: U8aFixed;1179 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1074 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1180 }1075 }118110761182 /** @name CumulusPalletDmpQueueEvent (91) */1077 /** @name CumulusPalletDmpQueueEvent (88) */1183 interface CumulusPalletDmpQueueEvent extends Enum {1078 interface CumulusPalletDmpQueueEvent extends Enum {1184 readonly isInvalidFormat: boolean;1079 readonly isInvalidFormat: boolean;1185 readonly asInvalidFormat: {1080 readonly asInvalidFormat: {1214 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1109 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1215 }1110 }121611111217 /** @name PalletConfigurationEvent (92) */1112 /** @name PalletConfigurationEvent (89) */1218 interface PalletConfigurationEvent extends Enum {1113 interface PalletConfigurationEvent extends Enum {1219 readonly isNewDesiredCollators: boolean;1114 readonly isNewDesiredCollators: boolean;1220 readonly asNewDesiredCollators: {1115 readonly asNewDesiredCollators: {1231 readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';1126 readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';1232 }1127 }123311281234 /** @name PalletCommonEvent (95) */1129 /** @name PalletCommonEvent (92) */1235 interface PalletCommonEvent extends Enum {1130 interface PalletCommonEvent extends Enum {1236 readonly isCollectionCreated: boolean;1131 readonly isCollectionCreated: boolean;1237 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1132 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1280 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1175 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1281 }1176 }128211771283 /** @name PalletEvmAccountBasicCrossAccountIdRepr (98) */1178 /** @name PalletEvmAccountBasicCrossAccountIdRepr (95) */1284 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1179 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1285 readonly isSubstrate: boolean;1180 readonly isSubstrate: boolean;1286 readonly asSubstrate: AccountId32;1181 readonly asSubstrate: AccountId32;1289 readonly type: 'Substrate' | 'Ethereum';1184 readonly type: 'Substrate' | 'Ethereum';1290 }1185 }129111861292 /** @name PalletStructureEvent (102) */1187 /** @name PalletStructureEvent (99) */1293 interface PalletStructureEvent extends Enum {1188 interface PalletStructureEvent extends Enum {1294 readonly isExecuted: boolean;1189 readonly isExecuted: boolean;1295 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1190 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1296 readonly type: 'Executed';1191 readonly type: 'Executed';1297 }1192 }129811931299 /** @name PalletRmrkCoreEvent (103) */1194 /** @name PalletRmrkCoreEvent (100) */1300 interface PalletRmrkCoreEvent extends Enum {1195 interface PalletRmrkCoreEvent extends Enum {1301 readonly isCollectionCreated: boolean;1196 readonly isCollectionCreated: boolean;1302 readonly asCollectionCreated: {1197 readonly asCollectionCreated: {1386 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1281 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1387 }1282 }138812831389 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (104) */1284 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */1390 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1285 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1391 readonly isAccountId: boolean;1286 readonly isAccountId: boolean;1392 readonly asAccountId: AccountId32;1287 readonly asAccountId: AccountId32;1395 readonly type: 'AccountId' | 'CollectionAndNftTuple';1290 readonly type: 'AccountId' | 'CollectionAndNftTuple';1396 }1291 }139712921398 /** @name PalletRmrkEquipEvent (107) */1293 /** @name PalletRmrkEquipEvent (104) */1399 interface PalletRmrkEquipEvent extends Enum {1294 interface PalletRmrkEquipEvent extends Enum {1400 readonly isBaseCreated: boolean;1295 readonly isBaseCreated: boolean;1401 readonly asBaseCreated: {1296 readonly asBaseCreated: {1410 readonly type: 'BaseCreated' | 'EquippablesUpdated';1305 readonly type: 'BaseCreated' | 'EquippablesUpdated';1411 }1306 }141213071413 /** @name PalletAppPromotionEvent (108) */1308 /** @name PalletAppPromotionEvent (105) */1414 interface PalletAppPromotionEvent extends Enum {1309 interface PalletAppPromotionEvent extends Enum {1415 readonly isStakingRecalculation: boolean;1310 readonly isStakingRecalculation: boolean;1416 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1311 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1423 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1318 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1424 }1319 }142513201426 /** @name PalletForeignAssetsModuleEvent (109) */1321 /** @name PalletForeignAssetsModuleEvent (106) */1427 interface PalletForeignAssetsModuleEvent extends Enum {1322 interface PalletForeignAssetsModuleEvent extends Enum {1428 readonly isForeignAssetRegistered: boolean;1323 readonly isForeignAssetRegistered: boolean;1429 readonly asForeignAssetRegistered: {1324 readonly asForeignAssetRegistered: {1450 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1345 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1451 }1346 }145213471453 /** @name PalletForeignAssetsModuleAssetMetadata (110) */1348 /** @name PalletForeignAssetsModuleAssetMetadata (107) */1454 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1349 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1455 readonly name: Bytes;1350 readonly name: Bytes;1456 readonly symbol: Bytes;1351 readonly symbol: Bytes;1457 readonly decimals: u8;1352 readonly decimals: u8;1458 readonly minimalBalance: u128;1353 readonly minimalBalance: u128;1459 }1354 }146013551461 /** @name PalletEvmEvent (111) */1356 /** @name PalletEvmEvent (108) */1462 interface PalletEvmEvent extends Enum {1357 interface PalletEvmEvent extends Enum {1463 readonly isLog: boolean;1358 readonly isLog: boolean;1464 readonly asLog: {1359 readonly asLog: {1483 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1378 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1484 }1379 }148513801486 /** @name EthereumLog (112) */1381 /** @name EthereumLog (109) */1487 interface EthereumLog extends Struct {1382 interface EthereumLog extends Struct {1488 readonly address: H160;1383 readonly address: H160;1489 readonly topics: Vec<H256>;1384 readonly topics: Vec<H256>;1490 readonly data: Bytes;1385 readonly data: Bytes;1491 }1386 }149213871493 /** @name PalletEthereumEvent (114) */1388 /** @name PalletEthereumEvent (111) */1494 interface PalletEthereumEvent extends Enum {1389 interface PalletEthereumEvent extends Enum {1495 readonly isExecuted: boolean;1390 readonly isExecuted: boolean;1496 readonly asExecuted: {1391 readonly asExecuted: {1502 readonly type: 'Executed';1397 readonly type: 'Executed';1503 }1398 }150413991505 /** @name EvmCoreErrorExitReason (115) */1400 /** @name EvmCoreErrorExitReason (112) */1506 interface EvmCoreErrorExitReason extends Enum {1401 interface EvmCoreErrorExitReason extends Enum {1507 readonly isSucceed: boolean;1402 readonly isSucceed: boolean;1508 readonly asSucceed: EvmCoreErrorExitSucceed;1403 readonly asSucceed: EvmCoreErrorExitSucceed;1515 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1410 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1516 }1411 }151714121518 /** @name EvmCoreErrorExitSucceed (116) */1413 /** @name EvmCoreErrorExitSucceed (113) */1519 interface EvmCoreErrorExitSucceed extends Enum {1414 interface EvmCoreErrorExitSucceed extends Enum {1520 readonly isStopped: boolean;1415 readonly isStopped: boolean;1521 readonly isReturned: boolean;1416 readonly isReturned: boolean;1522 readonly isSuicided: boolean;1417 readonly isSuicided: boolean;1523 readonly type: 'Stopped' | 'Returned' | 'Suicided';1418 readonly type: 'Stopped' | 'Returned' | 'Suicided';1524 }1419 }152514201526 /** @name EvmCoreErrorExitError (117) */1421 /** @name EvmCoreErrorExitError (114) */1527 interface EvmCoreErrorExitError extends Enum {1422 interface EvmCoreErrorExitError extends Enum {1528 readonly isStackUnderflow: boolean;1423 readonly isStackUnderflow: boolean;1529 readonly isStackOverflow: boolean;1424 readonly isStackOverflow: boolean;1544 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1439 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1545 }1440 }154614411547 /** @name EvmCoreErrorExitRevert (120) */1442 /** @name EvmCoreErrorExitRevert (117) */1548 interface EvmCoreErrorExitRevert extends Enum {1443 interface EvmCoreErrorExitRevert extends Enum {1549 readonly isReverted: boolean;1444 readonly isReverted: boolean;1550 readonly type: 'Reverted';1445 readonly type: 'Reverted';1551 }1446 }155214471553 /** @name EvmCoreErrorExitFatal (121) */1448 /** @name EvmCoreErrorExitFatal (118) */1554 interface EvmCoreErrorExitFatal extends Enum {1449 interface EvmCoreErrorExitFatal extends Enum {1555 readonly isNotSupported: boolean;1450 readonly isNotSupported: boolean;1556 readonly isUnhandledInterrupt: boolean;1451 readonly isUnhandledInterrupt: boolean;1561 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1456 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1562 }1457 }156314581564 /** @name PalletEvmContractHelpersEvent (122) */1459 /** @name PalletEvmContractHelpersEvent (119) */1565 interface PalletEvmContractHelpersEvent extends Enum {1460 interface PalletEvmContractHelpersEvent extends Enum {1566 readonly isContractSponsorSet: boolean;1461 readonly isContractSponsorSet: boolean;1567 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1462 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1572 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1467 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1573 }1468 }157414691575 /** @name PalletEvmMigrationEvent (123) */1470 /** @name PalletEvmMigrationEvent (120) */1576 interface PalletEvmMigrationEvent extends Enum {1471 interface PalletEvmMigrationEvent extends Enum {1577 readonly isTestEvent: boolean;1472 readonly isTestEvent: boolean;1578 readonly type: 'TestEvent';1473 readonly type: 'TestEvent';1579 }1474 }158014751581 /** @name PalletMaintenanceEvent (124) */1476 /** @name PalletMaintenanceEvent (121) */1582 interface PalletMaintenanceEvent extends Enum {1477 interface PalletMaintenanceEvent extends Enum {1583 readonly isMaintenanceEnabled: boolean;1478 readonly isMaintenanceEnabled: boolean;1584 readonly isMaintenanceDisabled: boolean;1479 readonly isMaintenanceDisabled: boolean;1585 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1480 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1586 }1481 }158714821588 /** @name PalletTestUtilsEvent (125) */1483 /** @name PalletTestUtilsEvent (122) */1589 interface PalletTestUtilsEvent extends Enum {1484 interface PalletTestUtilsEvent extends Enum {1590 readonly isValueIsSet: boolean;1485 readonly isValueIsSet: boolean;1591 readonly isShouldRollback: boolean;1486 readonly isShouldRollback: boolean;1592 readonly isBatchCompleted: boolean;1487 readonly isBatchCompleted: boolean;1593 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1488 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1594 }1489 }159514901596 /** @name FrameSystemPhase (126) */1491 /** @name FrameSystemPhase (123) */1597 interface FrameSystemPhase extends Enum {1492 interface FrameSystemPhase extends Enum {1598 readonly isApplyExtrinsic: boolean;1493 readonly isApplyExtrinsic: boolean;1599 readonly asApplyExtrinsic: u32;1494 readonly asApplyExtrinsic: u32;1602 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1497 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1603 }1498 }160414991605 /** @name FrameSystemLastRuntimeUpgradeInfo (129) */1500 /** @name FrameSystemLastRuntimeUpgradeInfo (126) */1606 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1501 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1607 readonly specVersion: Compact<u32>;1502 readonly specVersion: Compact<u32>;1608 readonly specName: Text;1503 readonly specName: Text;1609 }1504 }161015051611 /** @name FrameSystemCall (130) */1506 /** @name FrameSystemCall (127) */1612 interface FrameSystemCall extends Enum {1507 interface FrameSystemCall extends Enum {1613 readonly isRemark: boolean;1508 readonly isRemark: boolean;1614 readonly asRemark: {1509 readonly asRemark: {1646 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1541 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1647 }1542 }164815431649 /** @name FrameSystemLimitsBlockWeights (134) */1544 /** @name FrameSystemLimitsBlockWeights (131) */1650 interface FrameSystemLimitsBlockWeights extends Struct {1545 interface FrameSystemLimitsBlockWeights extends Struct {1651 readonly baseBlock: SpWeightsWeightV2Weight;1546 readonly baseBlock: SpWeightsWeightV2Weight;1652 readonly maxBlock: SpWeightsWeightV2Weight;1547 readonly maxBlock: SpWeightsWeightV2Weight;1653 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1548 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1654 }1549 }165515501656 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (135) */1551 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (132) */1657 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1552 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1658 readonly normal: FrameSystemLimitsWeightsPerClass;1553 readonly normal: FrameSystemLimitsWeightsPerClass;1659 readonly operational: FrameSystemLimitsWeightsPerClass;1554 readonly operational: FrameSystemLimitsWeightsPerClass;1660 readonly mandatory: FrameSystemLimitsWeightsPerClass;1555 readonly mandatory: FrameSystemLimitsWeightsPerClass;1661 }1556 }166215571663 /** @name FrameSystemLimitsWeightsPerClass (136) */1558 /** @name FrameSystemLimitsWeightsPerClass (133) */1664 interface FrameSystemLimitsWeightsPerClass extends Struct {1559 interface FrameSystemLimitsWeightsPerClass extends Struct {1665 readonly baseExtrinsic: SpWeightsWeightV2Weight;1560 readonly baseExtrinsic: SpWeightsWeightV2Weight;1666 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1561 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1667 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1562 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1668 readonly reserved: Option<SpWeightsWeightV2Weight>;1563 readonly reserved: Option<SpWeightsWeightV2Weight>;1669 }1564 }167015651671 /** @name FrameSystemLimitsBlockLength (138) */1566 /** @name FrameSystemLimitsBlockLength (135) */1672 interface FrameSystemLimitsBlockLength extends Struct {1567 interface FrameSystemLimitsBlockLength extends Struct {1673 readonly max: FrameSupportDispatchPerDispatchClassU32;1568 readonly max: FrameSupportDispatchPerDispatchClassU32;1674 }1569 }167515701676 /** @name FrameSupportDispatchPerDispatchClassU32 (139) */1571 /** @name FrameSupportDispatchPerDispatchClassU32 (136) */1677 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1572 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1678 readonly normal: u32;1573 readonly normal: u32;1679 readonly operational: u32;1574 readonly operational: u32;1680 readonly mandatory: u32;1575 readonly mandatory: u32;1681 }1576 }168215771683 /** @name SpWeightsRuntimeDbWeight (140) */1578 /** @name SpWeightsRuntimeDbWeight (137) */1684 interface SpWeightsRuntimeDbWeight extends Struct {1579 interface SpWeightsRuntimeDbWeight extends Struct {1685 readonly read: u64;1580 readonly read: u64;1686 readonly write: u64;1581 readonly write: u64;1687 }1582 }168815831689 /** @name SpVersionRuntimeVersion (141) */1584 /** @name SpVersionRuntimeVersion (138) */1690 interface SpVersionRuntimeVersion extends Struct {1585 interface SpVersionRuntimeVersion extends Struct {1691 readonly specName: Text;1586 readonly specName: Text;1692 readonly implName: Text;1587 readonly implName: Text;1698 readonly stateVersion: u8;1593 readonly stateVersion: u8;1699 }1594 }170015951701 /** @name FrameSystemError (146) */1596 /** @name FrameSystemError (143) */1702 interface FrameSystemError extends Enum {1597 interface FrameSystemError extends Enum {1703 readonly isInvalidSpecName: boolean;1598 readonly isInvalidSpecName: boolean;1704 readonly isSpecVersionNeedsToIncrease: boolean;1599 readonly isSpecVersionNeedsToIncrease: boolean;1709 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1604 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1710 }1605 }171116061712 /** @name PolkadotPrimitivesV2PersistedValidationData (147) */1607 /** @name PolkadotPrimitivesV2PersistedValidationData (144) */1713 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1608 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1714 readonly parentHead: Bytes;1609 readonly parentHead: Bytes;1715 readonly relayParentNumber: u32;1610 readonly relayParentNumber: u32;1716 readonly relayParentStorageRoot: H256;1611 readonly relayParentStorageRoot: H256;1717 readonly maxPovSize: u32;1612 readonly maxPovSize: u32;1718 }1613 }171916141720 /** @name PolkadotPrimitivesV2UpgradeRestriction (150) */1615 /** @name PolkadotPrimitivesV2UpgradeRestriction (147) */1721 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1616 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1722 readonly isPresent: boolean;1617 readonly isPresent: boolean;1723 readonly type: 'Present';1618 readonly type: 'Present';1724 }1619 }172516201726 /** @name SpTrieStorageProof (151) */1621 /** @name SpTrieStorageProof (148) */1727 interface SpTrieStorageProof extends Struct {1622 interface SpTrieStorageProof extends Struct {1728 readonly trieNodes: BTreeSet<Bytes>;1623 readonly trieNodes: BTreeSet<Bytes>;1729 }1624 }173016251731 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (153) */1626 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (150) */1732 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1627 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1733 readonly dmqMqcHead: H256;1628 readonly dmqMqcHead: H256;1734 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1629 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1735 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1630 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1736 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1631 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1737 }1632 }173816331739 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (156) */1634 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (153) */1740 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1635 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1741 readonly maxCapacity: u32;1636 readonly maxCapacity: u32;1742 readonly maxTotalSize: u32;1637 readonly maxTotalSize: u32;1746 readonly mqcHead: Option<H256>;1641 readonly mqcHead: Option<H256>;1747 }1642 }174816431749 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (157) */1644 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (154) */1750 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1645 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1751 readonly maxCodeSize: u32;1646 readonly maxCodeSize: u32;1752 readonly maxHeadDataSize: u32;1647 readonly maxHeadDataSize: u32;1759 readonly validationUpgradeDelay: u32;1654 readonly validationUpgradeDelay: u32;1760 }1655 }176116561762 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (163) */1657 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (160) */1763 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1658 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1764 readonly recipient: u32;1659 readonly recipient: u32;1765 readonly data: Bytes;1660 readonly data: Bytes;1766 }1661 }176716621768 /** @name CumulusPalletParachainSystemCall (164) */1663 /** @name CumulusPalletParachainSystemCall (161) */1769 interface CumulusPalletParachainSystemCall extends Enum {1664 interface CumulusPalletParachainSystemCall extends Enum {1770 readonly isSetValidationData: boolean;1665 readonly isSetValidationData: boolean;1771 readonly asSetValidationData: {1666 readonly asSetValidationData: {1786 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1681 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1787 }1682 }178816831789 /** @name CumulusPrimitivesParachainInherentParachainInherentData (165) */1684 /** @name CumulusPrimitivesParachainInherentParachainInherentData (162) */1790 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1685 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1791 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1686 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1792 readonly relayChainState: SpTrieStorageProof;1687 readonly relayChainState: SpTrieStorageProof;1793 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1688 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1794 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1689 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1795 }1690 }179616911797 /** @name PolkadotCorePrimitivesInboundDownwardMessage (167) */1692 /** @name PolkadotCorePrimitivesInboundDownwardMessage (164) */1798 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1693 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1799 readonly sentAt: u32;1694 readonly sentAt: u32;1800 readonly msg: Bytes;1695 readonly msg: Bytes;1801 }1696 }180216971803 /** @name PolkadotCorePrimitivesInboundHrmpMessage (170) */1698 /** @name PolkadotCorePrimitivesInboundHrmpMessage (167) */1804 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1699 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1805 readonly sentAt: u32;1700 readonly sentAt: u32;1806 readonly data: Bytes;1701 readonly data: Bytes;1807 }1702 }180817031809 /** @name CumulusPalletParachainSystemError (173) */1704 /** @name CumulusPalletParachainSystemError (170) */1810 interface CumulusPalletParachainSystemError extends Enum {1705 interface CumulusPalletParachainSystemError extends Enum {1811 readonly isOverlappingUpgrades: boolean;1706 readonly isOverlappingUpgrades: boolean;1812 readonly isProhibitedByPolkadot: boolean;1707 readonly isProhibitedByPolkadot: boolean;1819 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1714 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1820 }1715 }18211822 /** @name PalletAuthorshipUncleEntryItem (175) */1823 interface PalletAuthorshipUncleEntryItem extends Enum {1824 readonly isInclusionHeight: boolean;1825 readonly asInclusionHeight: u32;1826 readonly isUncle: boolean;1827 readonly asUncle: ITuple<[H256, Option<AccountId32>]>;1828 readonly type: 'InclusionHeight' | 'Uncle';1829 }18301831 /** @name PalletAuthorshipCall (177) */1832 interface PalletAuthorshipCall extends Enum {1833 readonly isSetUncles: boolean;1834 readonly asSetUncles: {1835 readonly newUncles: Vec<SpRuntimeHeader>;1836 } & Struct;1837 readonly type: 'SetUncles';1838 }18391840 /** @name SpRuntimeHeader (179) */1841 interface SpRuntimeHeader extends Struct {1842 readonly parentHash: H256;1843 readonly number: Compact<u32>;1844 readonly stateRoot: H256;1845 readonly extrinsicsRoot: H256;1846 readonly digest: SpRuntimeDigest;1847 }18481849 /** @name SpRuntimeBlakeTwo256 (180) */1850 type SpRuntimeBlakeTwo256 = Null;18511852 /** @name PalletAuthorshipError (181) */1853 interface PalletAuthorshipError extends Enum {1854 readonly isInvalidUncleParent: boolean;1855 readonly isUnclesAlreadySet: boolean;1856 readonly isTooManyUncles: boolean;1857 readonly isGenesisUncle: boolean;1858 readonly isTooHighUncle: boolean;1859 readonly isUncleAlreadyIncluded: boolean;1860 readonly isOldUncle: boolean;1861 readonly type: 'InvalidUncleParent' | 'UnclesAlreadySet' | 'TooManyUncles' | 'GenesisUncle' | 'TooHighUncle' | 'UncleAlreadyIncluded' | 'OldUncle';1862 }18631864 /** @name PalletCollatorSelectionCall (184) */1865 interface PalletCollatorSelectionCall extends Enum {1866 readonly isAddInvulnerable: boolean;1867 readonly asAddInvulnerable: {1868 readonly new_: AccountId32;1869 } & Struct;1870 readonly isRemoveInvulnerable: boolean;1871 readonly asRemoveInvulnerable: {1872 readonly who: AccountId32;1873 } & Struct;1874 readonly isGetLicense: boolean;1875 readonly isOnboard: boolean;1876 readonly isOffboard: boolean;1877 readonly isReleaseLicense: boolean;1878 readonly isForceReleaseLicense: boolean;1879 readonly asForceReleaseLicense: {1880 readonly who: AccountId32;1881 } & Struct;1882 readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';1883 }18841885 /** @name PalletCollatorSelectionError (185) */1886 interface PalletCollatorSelectionError extends Enum {1887 readonly isTooManyCandidates: boolean;1888 readonly isUnknown: boolean;1889 readonly isPermission: boolean;1890 readonly isAlreadyHoldingLicense: boolean;1891 readonly isNoLicense: boolean;1892 readonly isAlreadyCandidate: boolean;1893 readonly isNotCandidate: boolean;1894 readonly isTooManyInvulnerables: boolean;1895 readonly isTooFewInvulnerables: boolean;1896 readonly isAlreadyInvulnerable: boolean;1897 readonly isNotInvulnerable: boolean;1898 readonly isNoAssociatedValidatorId: boolean;1899 readonly isValidatorNotRegistered: boolean;1900 readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';1901 }19021903 /** @name OpalRuntimeRuntimeCommonSessionKeys (188) */1904 interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {1905 readonly aura: SpConsensusAuraSr25519AppSr25519Public;1906 }19071908 /** @name SpConsensusAuraSr25519AppSr25519Public (189) */1909 interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}19101911 /** @name SpCoreSr25519Public (190) */1912 interface SpCoreSr25519Public extends U8aFixed {}19131914 /** @name SpCoreCryptoKeyTypeId (193) */1915 interface SpCoreCryptoKeyTypeId extends U8aFixed {}19161917 /** @name PalletSessionCall (194) */1918 interface PalletSessionCall extends Enum {1919 readonly isSetKeys: boolean;1920 readonly asSetKeys: {1921 readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;1922 readonly proof: Bytes;1923 } & Struct;1924 readonly isPurgeKeys: boolean;1925 readonly type: 'SetKeys' | 'PurgeKeys';1926 }19271928 /** @name PalletSessionError (195) */1929 interface PalletSessionError extends Enum {1930 readonly isInvalidProof: boolean;1931 readonly isNoAssociatedValidatorId: boolean;1932 readonly isDuplicatedKey: boolean;1933 readonly isNoKeys: boolean;1934 readonly isNoAccount: boolean;1935 readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';1936 }19371938 /** @name PalletIdentityRegistration (196) */1939 interface PalletIdentityRegistration extends Struct {1940 readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;1941 readonly deposit: u128;1942 readonly info: PalletIdentityIdentityInfo;1943 }19441945 /** @name PalletIdentityJudgement (199) */1946 interface PalletIdentityJudgement extends Enum {1947 readonly isUnknown: boolean;1948 readonly isFeePaid: boolean;1949 readonly asFeePaid: u128;1950 readonly isReasonable: boolean;1951 readonly isKnownGood: boolean;1952 readonly isOutOfDate: boolean;1953 readonly isLowQuality: boolean;1954 readonly isErroneous: boolean;1955 readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';1956 }19571958 /** @name PalletIdentityIdentityInfo (201) */1959 interface PalletIdentityIdentityInfo extends Struct {1960 readonly additional: Vec<ITuple<[Data, Data]>>;1961 readonly display: Data;1962 readonly legal: Data;1963 readonly web: Data;1964 readonly riot: Data;1965 readonly email: Data;1966 readonly pgpFingerprint: Option<U8aFixed>;1967 readonly image: Data;1968 readonly twitter: Data;1969 }19701971 /** @name PalletIdentityRegistrarInfo (240) */1972 interface PalletIdentityRegistrarInfo extends Struct {1973 readonly account: AccountId32;1974 readonly fee: u128;1975 readonly fields: PalletIdentityBitFlags;1976 }19771978 /** @name PalletIdentityBitFlags (241) */1979 interface PalletIdentityBitFlags extends Set {1980 readonly isDisplay: boolean;1981 readonly isLegal: boolean;1982 readonly isWeb: boolean;1983 readonly isRiot: boolean;1984 readonly isEmail: boolean;1985 readonly isPgpFingerprint: boolean;1986 readonly isImage: boolean;1987 readonly isTwitter: boolean;1988 }19891990 /** @name PalletIdentityIdentityField (242) */1991 interface PalletIdentityIdentityField extends Enum {1992 readonly isDisplay: boolean;1993 readonly isLegal: boolean;1994 readonly isWeb: boolean;1995 readonly isRiot: boolean;1996 readonly isEmail: boolean;1997 readonly isPgpFingerprint: boolean;1998 readonly isImage: boolean;1999 readonly isTwitter: boolean;2000 readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';2001 }20022003 /** @name PalletIdentityCall (244) */2004 interface PalletIdentityCall extends Enum {2005 readonly isAddRegistrar: boolean;2006 readonly asAddRegistrar: {2007 readonly account: MultiAddress;2008 } & Struct;2009 readonly isSetIdentity: boolean;2010 readonly asSetIdentity: {2011 readonly info: PalletIdentityIdentityInfo;2012 } & Struct;2013 readonly isSetSubs: boolean;2014 readonly asSetSubs: {2015 readonly subs: Vec<ITuple<[AccountId32, Data]>>;2016 } & Struct;2017 readonly isClearIdentity: boolean;2018 readonly isRequestJudgement: boolean;2019 readonly asRequestJudgement: {2020 readonly regIndex: Compact<u32>;2021 readonly maxFee: Compact<u128>;2022 } & Struct;2023 readonly isCancelRequest: boolean;2024 readonly asCancelRequest: {2025 readonly regIndex: u32;2026 } & Struct;2027 readonly isSetFee: boolean;2028 readonly asSetFee: {2029 readonly index: Compact<u32>;2030 readonly fee: Compact<u128>;2031 } & Struct;2032 readonly isSetAccountId: boolean;2033 readonly asSetAccountId: {2034 readonly index: Compact<u32>;2035 readonly new_: MultiAddress;2036 } & Struct;2037 readonly isSetFields: boolean;2038 readonly asSetFields: {2039 readonly index: Compact<u32>;2040 readonly fields: PalletIdentityBitFlags;2041 } & Struct;2042 readonly isProvideJudgement: boolean;2043 readonly asProvideJudgement: {2044 readonly regIndex: Compact<u32>;2045 readonly target: MultiAddress;2046 readonly judgement: PalletIdentityJudgement;2047 readonly identity: H256;2048 } & Struct;2049 readonly isKillIdentity: boolean;2050 readonly asKillIdentity: {2051 readonly target: MultiAddress;2052 } & Struct;2053 readonly isAddSub: boolean;2054 readonly asAddSub: {2055 readonly sub: MultiAddress;2056 readonly data: Data;2057 } & Struct;2058 readonly isRenameSub: boolean;2059 readonly asRenameSub: {2060 readonly sub: MultiAddress;2061 readonly data: Data;2062 } & Struct;2063 readonly isRemoveSub: boolean;2064 readonly asRemoveSub: {2065 readonly sub: MultiAddress;2066 } & Struct;2067 readonly isQuitSub: boolean;2068 readonly isForceInsertIdentities: boolean;2069 readonly asForceInsertIdentities: {2070 readonly identities: Vec<ITuple<[AccountId32, PalletIdentityRegistration]>>;2071 } & Struct;2072 readonly isForceRemoveIdentities: boolean;2073 readonly asForceRemoveIdentities: {2074 readonly identities: Vec<AccountId32>;2075 } & Struct;2076 readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities';2077 }20782079 /** @name PalletIdentityError (250) */2080 interface PalletIdentityError extends Enum {2081 readonly isTooManySubAccounts: boolean;2082 readonly isNotFound: boolean;2083 readonly isNotNamed: boolean;2084 readonly isEmptyIndex: boolean;2085 readonly isFeeChanged: boolean;2086 readonly isNoIdentity: boolean;2087 readonly isStickyJudgement: boolean;2088 readonly isJudgementGiven: boolean;2089 readonly isInvalidJudgement: boolean;2090 readonly isInvalidIndex: boolean;2091 readonly isInvalidTarget: boolean;2092 readonly isTooManyFields: boolean;2093 readonly isTooManyRegistrars: boolean;2094 readonly isAlreadyClaimed: boolean;2095 readonly isNotSub: boolean;2096 readonly isNotOwned: boolean;2097 readonly isJudgementForDifferentIdentity: boolean;2098 readonly isJudgementPaymentFailed: boolean;2099 readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';2100 }210117162102 /** @name PalletBalancesBalanceLock (252) */1717 /** @name PalletBalancesBalanceLock (172) */2103 interface PalletBalancesBalanceLock extends Struct {1718 interface PalletBalancesBalanceLock extends Struct {2104 readonly id: U8aFixed;1719 readonly id: U8aFixed;2105 readonly amount: u128;1720 readonly amount: u128;2106 readonly reasons: PalletBalancesReasons;1721 readonly reasons: PalletBalancesReasons;2107 }1722 }210817232109 /** @name PalletBalancesReasons (253) */1724 /** @name PalletBalancesReasons (173) */2110 interface PalletBalancesReasons extends Enum {1725 interface PalletBalancesReasons extends Enum {2111 readonly isFee: boolean;1726 readonly isFee: boolean;2112 readonly isMisc: boolean;1727 readonly isMisc: boolean;2113 readonly isAll: boolean;1728 readonly isAll: boolean;2114 readonly type: 'Fee' | 'Misc' | 'All';1729 readonly type: 'Fee' | 'Misc' | 'All';2115 }1730 }211617312117 /** @name PalletBalancesReserveData (256) */1732 /** @name PalletBalancesReserveData (176) */2118 interface PalletBalancesReserveData extends Struct {1733 interface PalletBalancesReserveData extends Struct {2119 readonly id: U8aFixed;1734 readonly id: U8aFixed;2120 readonly amount: u128;1735 readonly amount: u128;2121 }1736 }212217372123 /** @name PalletBalancesCall (258) */1738 /** @name PalletBalancesCall (178) */2124 interface PalletBalancesCall extends Enum {1739 interface PalletBalancesCall extends Enum {2125 readonly isTransfer: boolean;1740 readonly isTransfer: boolean;2126 readonly asTransfer: {1741 readonly asTransfer: {2157 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1772 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';2158 }1773 }215917742160 /** @name PalletBalancesError (259) */1775 /** @name PalletBalancesError (181) */2161 interface PalletBalancesError extends Enum {1776 interface PalletBalancesError extends Enum {2162 readonly isVestingBalance: boolean;1777 readonly isVestingBalance: boolean;2163 readonly isLiquidityRestrictions: boolean;1778 readonly isLiquidityRestrictions: boolean;2170 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1785 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';2171 }1786 }217217872173 /** @name PalletTimestampCall (261) */1788 /** @name PalletTimestampCall (183) */2174 interface PalletTimestampCall extends Enum {1789 interface PalletTimestampCall extends Enum {2175 readonly isSet: boolean;1790 readonly isSet: boolean;2176 readonly asSet: {1791 readonly asSet: {2179 readonly type: 'Set';1794 readonly type: 'Set';2180 }1795 }218117962182 /** @name PalletTransactionPaymentReleases (263) */1797 /** @name PalletTransactionPaymentReleases (185) */2183 interface PalletTransactionPaymentReleases extends Enum {1798 interface PalletTransactionPaymentReleases extends Enum {2184 readonly isV1Ancient: boolean;1799 readonly isV1Ancient: boolean;2185 readonly isV2: boolean;1800 readonly isV2: boolean;2186 readonly type: 'V1Ancient' | 'V2';1801 readonly type: 'V1Ancient' | 'V2';2187 }1802 }218818032189 /** @name PalletTreasuryProposal (264) */1804 /** @name PalletTreasuryProposal (186) */2190 interface PalletTreasuryProposal extends Struct {1805 interface PalletTreasuryProposal extends Struct {2191 readonly proposer: AccountId32;1806 readonly proposer: AccountId32;2192 readonly value: u128;1807 readonly value: u128;2193 readonly beneficiary: AccountId32;1808 readonly beneficiary: AccountId32;2194 readonly bond: u128;1809 readonly bond: u128;2195 }1810 }219618112197 /** @name PalletTreasuryCall (266) */1812 /** @name PalletTreasuryCall (189) */2198 interface PalletTreasuryCall extends Enum {1813 interface PalletTreasuryCall extends Enum {2199 readonly isProposeSpend: boolean;1814 readonly isProposeSpend: boolean;2200 readonly asProposeSpend: {1815 readonly asProposeSpend: {2221 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1836 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';2222 }1837 }222318382224 /** @name FrameSupportPalletId (268) */1839 /** @name FrameSupportPalletId (191) */2225 interface FrameSupportPalletId extends U8aFixed {}1840 interface FrameSupportPalletId extends U8aFixed {}222618412227 /** @name PalletTreasuryError (269) */1842 /** @name PalletTreasuryError (192) */2228 interface PalletTreasuryError extends Enum {1843 interface PalletTreasuryError extends Enum {2229 readonly isInsufficientProposersBalance: boolean;1844 readonly isInsufficientProposersBalance: boolean;2230 readonly isInvalidIndex: boolean;1845 readonly isInvalidIndex: boolean;2234 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1849 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';2235 }1850 }223618512237 /** @name PalletSudoCall (270) */1852 /** @name PalletSudoCall (193) */2238 interface PalletSudoCall extends Enum {1853 interface PalletSudoCall extends Enum {2239 readonly isSudo: boolean;1854 readonly isSudo: boolean;2240 readonly asSudo: {1855 readonly asSudo: {2257 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1872 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';2258 }1873 }225918742260 /** @name OrmlVestingModuleCall (272) */1875 /** @name OrmlVestingModuleCall (195) */2261 interface OrmlVestingModuleCall extends Enum {1876 interface OrmlVestingModuleCall extends Enum {2262 readonly isClaim: boolean;1877 readonly isClaim: boolean;2263 readonly isVestedTransfer: boolean;1878 readonly isVestedTransfer: boolean;2277 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1892 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';2278 }1893 }227918942280 /** @name OrmlXtokensModuleCall (274) */1895 /** @name OrmlXtokensModuleCall (197) */2281 interface OrmlXtokensModuleCall extends Enum {1896 interface OrmlXtokensModuleCall extends Enum {2282 readonly isTransfer: boolean;1897 readonly isTransfer: boolean;2283 readonly asTransfer: {1898 readonly asTransfer: {2324 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1939 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';2325 }1940 }232619412327 /** @name XcmVersionedMultiAsset (275) */1942 /** @name XcmVersionedMultiAsset (198) */2328 interface XcmVersionedMultiAsset extends Enum {1943 interface XcmVersionedMultiAsset extends Enum {2329 readonly isV0: boolean;1944 readonly isV0: boolean;2330 readonly asV0: XcmV0MultiAsset;1945 readonly asV0: XcmV0MultiAsset;2333 readonly type: 'V0' | 'V1';1948 readonly type: 'V0' | 'V1';2334 }1949 }233519502336 /** @name OrmlTokensModuleCall (278) */1951 /** @name OrmlTokensModuleCall (201) */2337 interface OrmlTokensModuleCall extends Enum {1952 interface OrmlTokensModuleCall extends Enum {2338 readonly isTransfer: boolean;1953 readonly isTransfer: boolean;2339 readonly asTransfer: {1954 readonly asTransfer: {2370 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';1985 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';2371 }1986 }237219872373 /** @name CumulusPalletXcmpQueueCall (279) */1988 /** @name CumulusPalletXcmpQueueCall (202) */2374 interface CumulusPalletXcmpQueueCall extends Enum {1989 interface CumulusPalletXcmpQueueCall extends Enum {2375 readonly isServiceOverweight: boolean;1990 readonly isServiceOverweight: boolean;2376 readonly asServiceOverweight: {1991 readonly asServiceOverweight: {2406 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2021 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2407 }2022 }240820232409 /** @name PalletXcmCall (280) */2024 /** @name PalletXcmCall (203) */2410 interface PalletXcmCall extends Enum {2025 interface PalletXcmCall extends Enum {2411 readonly isSend: boolean;2026 readonly isSend: boolean;2412 readonly asSend: {2027 readonly asSend: {2468 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2083 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2469 }2084 }247020852471 /** @name XcmVersionedXcm (281) */2086 /** @name XcmVersionedXcm (204) */2472 interface XcmVersionedXcm extends Enum {2087 interface XcmVersionedXcm extends Enum {2473 readonly isV0: boolean;2088 readonly isV0: boolean;2474 readonly asV0: XcmV0Xcm;2089 readonly asV0: XcmV0Xcm;2479 readonly type: 'V0' | 'V1' | 'V2';2094 readonly type: 'V0' | 'V1' | 'V2';2480 }2095 }248120962482 /** @name XcmV0Xcm (282) */2097 /** @name XcmV0Xcm (205) */2483 interface XcmV0Xcm extends Enum {2098 interface XcmV0Xcm extends Enum {2484 readonly isWithdrawAsset: boolean;2099 readonly isWithdrawAsset: boolean;2485 readonly asWithdrawAsset: {2100 readonly asWithdrawAsset: {2542 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2157 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2543 }2158 }254421592545 /** @name XcmV0Order (284) */2160 /** @name XcmV0Order (207) */2546 interface XcmV0Order extends Enum {2161 interface XcmV0Order extends Enum {2547 readonly isNull: boolean;2162 readonly isNull: boolean;2548 readonly isDepositAsset: boolean;2163 readonly isDepositAsset: boolean;2590 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2205 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2591 }2206 }259222072593 /** @name XcmV0Response (286) */2208 /** @name XcmV0Response (209) */2594 interface XcmV0Response extends Enum {2209 interface XcmV0Response extends Enum {2595 readonly isAssets: boolean;2210 readonly isAssets: boolean;2596 readonly asAssets: Vec<XcmV0MultiAsset>;2211 readonly asAssets: Vec<XcmV0MultiAsset>;2597 readonly type: 'Assets';2212 readonly type: 'Assets';2598 }2213 }259922142600 /** @name XcmV1Xcm (287) */2215 /** @name XcmV1Xcm (210) */2601 interface XcmV1Xcm extends Enum {2216 interface XcmV1Xcm extends Enum {2602 readonly isWithdrawAsset: boolean;2217 readonly isWithdrawAsset: boolean;2603 readonly asWithdrawAsset: {2218 readonly asWithdrawAsset: {2666 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2281 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2667 }2282 }266822832669 /** @name XcmV1Order (289) */2284 /** @name XcmV1Order (212) */2670 interface XcmV1Order extends Enum {2285 interface XcmV1Order extends Enum {2671 readonly isNoop: boolean;2286 readonly isNoop: boolean;2672 readonly isDepositAsset: boolean;2287 readonly isDepositAsset: boolean;2716 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2331 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2717 }2332 }271823332719 /** @name XcmV1Response (291) */2334 /** @name XcmV1Response (214) */2720 interface XcmV1Response extends Enum {2335 interface XcmV1Response extends Enum {2721 readonly isAssets: boolean;2336 readonly isAssets: boolean;2722 readonly asAssets: XcmV1MultiassetMultiAssets;2337 readonly asAssets: XcmV1MultiassetMultiAssets;2725 readonly type: 'Assets' | 'Version';2340 readonly type: 'Assets' | 'Version';2726 }2341 }272723422728 /** @name CumulusPalletXcmCall (305) */2343 /** @name CumulusPalletXcmCall (228) */2729 type CumulusPalletXcmCall = Null;2344 type CumulusPalletXcmCall = Null;273023452731 /** @name CumulusPalletDmpQueueCall (306) */2346 /** @name CumulusPalletDmpQueueCall (229) */2732 interface CumulusPalletDmpQueueCall extends Enum {2347 interface CumulusPalletDmpQueueCall extends Enum {2733 readonly isServiceOverweight: boolean;2348 readonly isServiceOverweight: boolean;2734 readonly asServiceOverweight: {2349 readonly asServiceOverweight: {2738 readonly type: 'ServiceOverweight';2353 readonly type: 'ServiceOverweight';2739 }2354 }274023552741 /** @name PalletInflationCall (307) */2356 /** @name PalletInflationCall (230) */2742 interface PalletInflationCall extends Enum {2357 interface PalletInflationCall extends Enum {2743 readonly isStartInflation: boolean;2358 readonly isStartInflation: boolean;2744 readonly asStartInflation: {2359 readonly asStartInflation: {2747 readonly type: 'StartInflation';2362 readonly type: 'StartInflation';2748 }2363 }274923642750 /** @name PalletUniqueCall (308) */2365 /** @name PalletUniqueCall (231) */2751 interface PalletUniqueCall extends Enum {2366 interface PalletUniqueCall extends Enum {2752 readonly isCreateCollection: boolean;2367 readonly isCreateCollection: boolean;2753 readonly asCreateCollection: {2368 readonly asCreateCollection: {2920 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';2535 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';2921 }2536 }292225372923 /** @name UpDataStructsCollectionMode (313) */2538 /** @name UpDataStructsCollectionMode (236) */2924 interface UpDataStructsCollectionMode extends Enum {2539 interface UpDataStructsCollectionMode extends Enum {2925 readonly isNft: boolean;2540 readonly isNft: boolean;2926 readonly isFungible: boolean;2541 readonly isFungible: boolean;2929 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2544 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2930 }2545 }293125462932 /** @name UpDataStructsCreateCollectionData (314) */2547 /** @name UpDataStructsCreateCollectionData (237) */2933 interface UpDataStructsCreateCollectionData extends Struct {2548 interface UpDataStructsCreateCollectionData extends Struct {2934 readonly mode: UpDataStructsCollectionMode;2549 readonly mode: UpDataStructsCollectionMode;2935 readonly access: Option<UpDataStructsAccessMode>;2550 readonly access: Option<UpDataStructsAccessMode>;2943 readonly properties: Vec<UpDataStructsProperty>;2558 readonly properties: Vec<UpDataStructsProperty>;2944 }2559 }294525602946 /** @name UpDataStructsAccessMode (316) */2561 /** @name UpDataStructsAccessMode (239) */2947 interface UpDataStructsAccessMode extends Enum {2562 interface UpDataStructsAccessMode extends Enum {2948 readonly isNormal: boolean;2563 readonly isNormal: boolean;2949 readonly isAllowList: boolean;2564 readonly isAllowList: boolean;2950 readonly type: 'Normal' | 'AllowList';2565 readonly type: 'Normal' | 'AllowList';2951 }2566 }295225672953 /** @name UpDataStructsCollectionLimits (318) */2568 /** @name UpDataStructsCollectionLimits (241) */2954 interface UpDataStructsCollectionLimits extends Struct {2569 interface UpDataStructsCollectionLimits extends Struct {2955 readonly accountTokenOwnershipLimit: Option<u32>;2570 readonly accountTokenOwnershipLimit: Option<u32>;2956 readonly sponsoredDataSize: Option<u32>;2571 readonly sponsoredDataSize: Option<u32>;2963 readonly transfersEnabled: Option<bool>;2578 readonly transfersEnabled: Option<bool>;2964 }2579 }296525802966 /** @name UpDataStructsSponsoringRateLimit (320) */2581 /** @name UpDataStructsSponsoringRateLimit (243) */2967 interface UpDataStructsSponsoringRateLimit extends Enum {2582 interface UpDataStructsSponsoringRateLimit extends Enum {2968 readonly isSponsoringDisabled: boolean;2583 readonly isSponsoringDisabled: boolean;2969 readonly isBlocks: boolean;2584 readonly isBlocks: boolean;2970 readonly asBlocks: u32;2585 readonly asBlocks: u32;2971 readonly type: 'SponsoringDisabled' | 'Blocks';2586 readonly type: 'SponsoringDisabled' | 'Blocks';2972 }2587 }297325882974 /** @name UpDataStructsCollectionPermissions (323) */2589 /** @name UpDataStructsCollectionPermissions (246) */2975 interface UpDataStructsCollectionPermissions extends Struct {2590 interface UpDataStructsCollectionPermissions extends Struct {2976 readonly access: Option<UpDataStructsAccessMode>;2591 readonly access: Option<UpDataStructsAccessMode>;2977 readonly mintMode: Option<bool>;2592 readonly mintMode: Option<bool>;2978 readonly nesting: Option<UpDataStructsNestingPermissions>;2593 readonly nesting: Option<UpDataStructsNestingPermissions>;2979 }2594 }298025952981 /** @name UpDataStructsNestingPermissions (325) */2596 /** @name UpDataStructsNestingPermissions (248) */2982 interface UpDataStructsNestingPermissions extends Struct {2597 interface UpDataStructsNestingPermissions extends Struct {2983 readonly tokenOwner: bool;2598 readonly tokenOwner: bool;2984 readonly collectionAdmin: bool;2599 readonly collectionAdmin: bool;2985 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2600 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2986 }2601 }298726022988 /** @name UpDataStructsOwnerRestrictedSet (327) */2603 /** @name UpDataStructsOwnerRestrictedSet (250) */2989 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}2604 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}299026052991 /** @name UpDataStructsPropertyKeyPermission (332) */2606 /** @name UpDataStructsPropertyKeyPermission (255) */2992 interface UpDataStructsPropertyKeyPermission extends Struct {2607 interface UpDataStructsPropertyKeyPermission extends Struct {2993 readonly key: Bytes;2608 readonly key: Bytes;2994 readonly permission: UpDataStructsPropertyPermission;2609 readonly permission: UpDataStructsPropertyPermission;2995 }2610 }299626112997 /** @name UpDataStructsPropertyPermission (333) */2612 /** @name UpDataStructsPropertyPermission (256) */2998 interface UpDataStructsPropertyPermission extends Struct {2613 interface UpDataStructsPropertyPermission extends Struct {2999 readonly mutable: bool;2614 readonly mutable: bool;3000 readonly collectionAdmin: bool;2615 readonly collectionAdmin: bool;3001 readonly tokenOwner: bool;2616 readonly tokenOwner: bool;3002 }2617 }300326183004 /** @name UpDataStructsProperty (336) */2619 /** @name UpDataStructsProperty (259) */3005 interface UpDataStructsProperty extends Struct {2620 interface UpDataStructsProperty extends Struct {3006 readonly key: Bytes;2621 readonly key: Bytes;3007 readonly value: Bytes;2622 readonly value: Bytes;3008 }2623 }300926243010 /** @name UpDataStructsCreateItemData (339) */2625 /** @name UpDataStructsCreateItemData (262) */3011 interface UpDataStructsCreateItemData extends Enum {2626 interface UpDataStructsCreateItemData extends Enum {3012 readonly isNft: boolean;2627 readonly isNft: boolean;3013 readonly asNft: UpDataStructsCreateNftData;2628 readonly asNft: UpDataStructsCreateNftData;3018 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2633 readonly type: 'Nft' | 'Fungible' | 'ReFungible';3019 }2634 }302026353021 /** @name UpDataStructsCreateNftData (340) */2636 /** @name UpDataStructsCreateNftData (263) */3022 interface UpDataStructsCreateNftData extends Struct {2637 interface UpDataStructsCreateNftData extends Struct {3023 readonly properties: Vec<UpDataStructsProperty>;2638 readonly properties: Vec<UpDataStructsProperty>;3024 }2639 }302526403026 /** @name UpDataStructsCreateFungibleData (341) */2641 /** @name UpDataStructsCreateFungibleData (264) */3027 interface UpDataStructsCreateFungibleData extends Struct {2642 interface UpDataStructsCreateFungibleData extends Struct {3028 readonly value: u128;2643 readonly value: u128;3029 }2644 }303026453031 /** @name UpDataStructsCreateReFungibleData (342) */2646 /** @name UpDataStructsCreateReFungibleData (265) */3032 interface UpDataStructsCreateReFungibleData extends Struct {2647 interface UpDataStructsCreateReFungibleData extends Struct {3033 readonly pieces: u128;2648 readonly pieces: u128;3034 readonly properties: Vec<UpDataStructsProperty>;2649 readonly properties: Vec<UpDataStructsProperty>;3035 }2650 }303626513037 /** @name UpDataStructsCreateItemExData (345) */2652 /** @name UpDataStructsCreateItemExData (268) */3038 interface UpDataStructsCreateItemExData extends Enum {2653 interface UpDataStructsCreateItemExData extends Enum {3039 readonly isNft: boolean;2654 readonly isNft: boolean;3040 readonly asNft: Vec<UpDataStructsCreateNftExData>;2655 readonly asNft: Vec<UpDataStructsCreateNftExData>;3047 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2662 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';3048 }2663 }304926643050 /** @name UpDataStructsCreateNftExData (347) */2665 /** @name UpDataStructsCreateNftExData (270) */3051 interface UpDataStructsCreateNftExData extends Struct {2666 interface UpDataStructsCreateNftExData extends Struct {3052 readonly properties: Vec<UpDataStructsProperty>;2667 readonly properties: Vec<UpDataStructsProperty>;3053 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2668 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3054 }2669 }305526703056 /** @name UpDataStructsCreateRefungibleExSingleOwner (354) */2671 /** @name UpDataStructsCreateRefungibleExSingleOwner (277) */3057 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2672 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {3058 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2673 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;3059 readonly pieces: u128;2674 readonly pieces: u128;3060 readonly properties: Vec<UpDataStructsProperty>;2675 readonly properties: Vec<UpDataStructsProperty>;3061 }2676 }306226773063 /** @name UpDataStructsCreateRefungibleExMultipleOwners (356) */2678 /** @name UpDataStructsCreateRefungibleExMultipleOwners (279) */3064 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2679 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {3065 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2680 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;3066 readonly properties: Vec<UpDataStructsProperty>;2681 readonly properties: Vec<UpDataStructsProperty>;3067 }2682 }306826833069 /** @name PalletConfigurationCall (357) */2684 /** @name PalletConfigurationCall (280) */3070 interface PalletConfigurationCall extends Enum {2685 interface PalletConfigurationCall extends Enum {3071 readonly isSetWeightToFeeCoefficientOverride: boolean;2686 readonly isSetWeightToFeeCoefficientOverride: boolean;3072 readonly asSetWeightToFeeCoefficientOverride: {2687 readonly asSetWeightToFeeCoefficientOverride: {3099 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';2714 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';3100 }2715 }310127163102 /** @name PalletConfigurationAppPromotionConfiguration (362) */2717 /** @name PalletConfigurationAppPromotionConfiguration (285) */3103 interface PalletConfigurationAppPromotionConfiguration extends Struct {2718 interface PalletConfigurationAppPromotionConfiguration extends Struct {3104 readonly recalculationInterval: Option<u32>;2719 readonly recalculationInterval: Option<u32>;3105 readonly pendingInterval: Option<u32>;2720 readonly pendingInterval: Option<u32>;3106 readonly intervalIncome: Option<Perbill>;2721 readonly intervalIncome: Option<Perbill>;3107 readonly maxStakersPerCalculation: Option<u8>;2722 readonly maxStakersPerCalculation: Option<u8>;3108 }2723 }310927243110 /** @name PalletTemplateTransactionPaymentCall (366) */2725 /** @name PalletTemplateTransactionPaymentCall (289) */3111 type PalletTemplateTransactionPaymentCall = Null;2726 type PalletTemplateTransactionPaymentCall = Null;311227273113 /** @name PalletStructureCall (367) */2728 /** @name PalletStructureCall (290) */3114 type PalletStructureCall = Null;2729 type PalletStructureCall = Null;311527303116 /** @name PalletRmrkCoreCall (368) */2731 /** @name PalletRmrkCoreCall (291) */3117 interface PalletRmrkCoreCall extends Enum {2732 interface PalletRmrkCoreCall extends Enum {3118 readonly isCreateCollection: boolean;2733 readonly isCreateCollection: boolean;3119 readonly asCreateCollection: {2734 readonly asCreateCollection: {3219 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2834 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';3220 }2835 }322128363222 /** @name RmrkTraitsResourceResourceTypes (374) */2837 /** @name RmrkTraitsResourceResourceTypes (297) */3223 interface RmrkTraitsResourceResourceTypes extends Enum {2838 interface RmrkTraitsResourceResourceTypes extends Enum {3224 readonly isBasic: boolean;2839 readonly isBasic: boolean;3225 readonly asBasic: RmrkTraitsResourceBasicResource;2840 readonly asBasic: RmrkTraitsResourceBasicResource;3230 readonly type: 'Basic' | 'Composable' | 'Slot';2845 readonly type: 'Basic' | 'Composable' | 'Slot';3231 }2846 }323228473233 /** @name RmrkTraitsResourceBasicResource (376) */2848 /** @name RmrkTraitsResourceBasicResource (299) */3234 interface RmrkTraitsResourceBasicResource extends Struct {2849 interface RmrkTraitsResourceBasicResource extends Struct {3235 readonly src: Option<Bytes>;2850 readonly src: Option<Bytes>;3236 readonly metadata: Option<Bytes>;2851 readonly metadata: Option<Bytes>;3237 readonly license: Option<Bytes>;2852 readonly license: Option<Bytes>;3238 readonly thumb: Option<Bytes>;2853 readonly thumb: Option<Bytes>;3239 }2854 }324028553241 /** @name RmrkTraitsResourceComposableResource (378) */2856 /** @name RmrkTraitsResourceComposableResource (301) */3242 interface RmrkTraitsResourceComposableResource extends Struct {2857 interface RmrkTraitsResourceComposableResource extends Struct {3243 readonly parts: Vec<u32>;2858 readonly parts: Vec<u32>;3244 readonly base: u32;2859 readonly base: u32;3248 readonly thumb: Option<Bytes>;2863 readonly thumb: Option<Bytes>;3249 }2864 }325028653251 /** @name RmrkTraitsResourceSlotResource (379) */2866 /** @name RmrkTraitsResourceSlotResource (302) */3252 interface RmrkTraitsResourceSlotResource extends Struct {2867 interface RmrkTraitsResourceSlotResource extends Struct {3253 readonly base: u32;2868 readonly base: u32;3254 readonly src: Option<Bytes>;2869 readonly src: Option<Bytes>;3258 readonly thumb: Option<Bytes>;2873 readonly thumb: Option<Bytes>;3259 }2874 }326028753261 /** @name PalletRmrkEquipCall (382) */2876 /** @name PalletRmrkEquipCall (305) */3262 interface PalletRmrkEquipCall extends Enum {2877 interface PalletRmrkEquipCall extends Enum {3263 readonly isCreateBase: boolean;2878 readonly isCreateBase: boolean;3264 readonly asCreateBase: {2879 readonly asCreateBase: {3280 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2895 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';3281 }2896 }328228973283 /** @name RmrkTraitsPartPartType (385) */2898 /** @name RmrkTraitsPartPartType (308) */3284 interface RmrkTraitsPartPartType extends Enum {2899 interface RmrkTraitsPartPartType extends Enum {3285 readonly isFixedPart: boolean;2900 readonly isFixedPart: boolean;3286 readonly asFixedPart: RmrkTraitsPartFixedPart;2901 readonly asFixedPart: RmrkTraitsPartFixedPart;3289 readonly type: 'FixedPart' | 'SlotPart';2904 readonly type: 'FixedPart' | 'SlotPart';3290 }2905 }329129063292 /** @name RmrkTraitsPartFixedPart (387) */2907 /** @name RmrkTraitsPartFixedPart (310) */3293 interface RmrkTraitsPartFixedPart extends Struct {2908 interface RmrkTraitsPartFixedPart extends Struct {3294 readonly id: u32;2909 readonly id: u32;3295 readonly z: u32;2910 readonly z: u32;3296 readonly src: Bytes;2911 readonly src: Bytes;3297 }2912 }329829133299 /** @name RmrkTraitsPartSlotPart (388) */2914 /** @name RmrkTraitsPartSlotPart (311) */3300 interface RmrkTraitsPartSlotPart extends Struct {2915 interface RmrkTraitsPartSlotPart extends Struct {3301 readonly id: u32;2916 readonly id: u32;3302 readonly equippable: RmrkTraitsPartEquippableList;2917 readonly equippable: RmrkTraitsPartEquippableList;3303 readonly src: Bytes;2918 readonly src: Bytes;3304 readonly z: u32;2919 readonly z: u32;3305 }2920 }330629213307 /** @name RmrkTraitsPartEquippableList (389) */2922 /** @name RmrkTraitsPartEquippableList (312) */3308 interface RmrkTraitsPartEquippableList extends Enum {2923 interface RmrkTraitsPartEquippableList extends Enum {3309 readonly isAll: boolean;2924 readonly isAll: boolean;3310 readonly isEmpty: boolean;2925 readonly isEmpty: boolean;3313 readonly type: 'All' | 'Empty' | 'Custom';2928 readonly type: 'All' | 'Empty' | 'Custom';3314 }2929 }331529303316 /** @name RmrkTraitsTheme (391) */2931 /** @name RmrkTraitsTheme (314) */3317 interface RmrkTraitsTheme extends Struct {2932 interface RmrkTraitsTheme extends Struct {3318 readonly name: Bytes;2933 readonly name: Bytes;3319 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2934 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;3320 readonly inherit: bool;2935 readonly inherit: bool;3321 }2936 }332229373323 /** @name RmrkTraitsThemeThemeProperty (393) */2938 /** @name RmrkTraitsThemeThemeProperty (316) */3324 interface RmrkTraitsThemeThemeProperty extends Struct {2939 interface RmrkTraitsThemeThemeProperty extends Struct {3325 readonly key: Bytes;2940 readonly key: Bytes;3326 readonly value: Bytes;2941 readonly value: Bytes;3327 }2942 }332829433329 /** @name PalletAppPromotionCall (395) */2944 /** @name PalletAppPromotionCall (318) */3330 interface PalletAppPromotionCall extends Enum {2945 interface PalletAppPromotionCall extends Enum {3331 readonly isSetAdminAddress: boolean;2946 readonly isSetAdminAddress: boolean;3332 readonly asSetAdminAddress: {2947 readonly asSetAdminAddress: {3360 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2975 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';3361 }2976 }336229773363 /** @name PalletForeignAssetsModuleCall (396) */2978 /** @name PalletForeignAssetsModuleCall (319) */3364 interface PalletForeignAssetsModuleCall extends Enum {2979 interface PalletForeignAssetsModuleCall extends Enum {3365 readonly isRegisterForeignAsset: boolean;2980 readonly isRegisterForeignAsset: boolean;3366 readonly asRegisterForeignAsset: {2981 readonly asRegisterForeignAsset: {3377 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';2992 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3378 }2993 }337929943380 /** @name PalletEvmCall (397) */2995 /** @name PalletEvmCall (320) */3381 interface PalletEvmCall extends Enum {2996 interface PalletEvmCall extends Enum {3382 readonly isWithdraw: boolean;2997 readonly isWithdraw: boolean;3383 readonly asWithdraw: {2998 readonly asWithdraw: {3422 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3037 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3423 }3038 }342430393425 /** @name PalletEthereumCall (403) */3040 /** @name PalletEthereumCall (326) */3426 interface PalletEthereumCall extends Enum {3041 interface PalletEthereumCall extends Enum {3427 readonly isTransact: boolean;3042 readonly isTransact: boolean;3428 readonly asTransact: {3043 readonly asTransact: {3431 readonly type: 'Transact';3046 readonly type: 'Transact';3432 }3047 }343330483434 /** @name EthereumTransactionTransactionV2 (404) */3049 /** @name EthereumTransactionTransactionV2 (327) */3435 interface EthereumTransactionTransactionV2 extends Enum {3050 interface EthereumTransactionTransactionV2 extends Enum {3436 readonly isLegacy: boolean;3051 readonly isLegacy: boolean;3437 readonly asLegacy: EthereumTransactionLegacyTransaction;3052 readonly asLegacy: EthereumTransactionLegacyTransaction;3442 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3057 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3443 }3058 }344430593445 /** @name EthereumTransactionLegacyTransaction (405) */3060 /** @name EthereumTransactionLegacyTransaction (328) */3446 interface EthereumTransactionLegacyTransaction extends Struct {3061 interface EthereumTransactionLegacyTransaction extends Struct {3447 readonly nonce: U256;3062 readonly nonce: U256;3448 readonly gasPrice: U256;3063 readonly gasPrice: U256;3453 readonly signature: EthereumTransactionTransactionSignature;3068 readonly signature: EthereumTransactionTransactionSignature;3454 }3069 }345530703456 /** @name EthereumTransactionTransactionAction (406) */3071 /** @name EthereumTransactionTransactionAction (329) */3457 interface EthereumTransactionTransactionAction extends Enum {3072 interface EthereumTransactionTransactionAction extends Enum {3458 readonly isCall: boolean;3073 readonly isCall: boolean;3459 readonly asCall: H160;3074 readonly asCall: H160;3460 readonly isCreate: boolean;3075 readonly isCreate: boolean;3461 readonly type: 'Call' | 'Create';3076 readonly type: 'Call' | 'Create';3462 }3077 }346330783464 /** @name EthereumTransactionTransactionSignature (407) */3079 /** @name EthereumTransactionTransactionSignature (330) */3465 interface EthereumTransactionTransactionSignature extends Struct {3080 interface EthereumTransactionTransactionSignature extends Struct {3466 readonly v: u64;3081 readonly v: u64;3467 readonly r: H256;3082 readonly r: H256;3468 readonly s: H256;3083 readonly s: H256;3469 }3084 }347030853471 /** @name EthereumTransactionEip2930Transaction (409) */3086 /** @name EthereumTransactionEip2930Transaction (332) */3472 interface EthereumTransactionEip2930Transaction extends Struct {3087 interface EthereumTransactionEip2930Transaction extends Struct {3473 readonly chainId: u64;3088 readonly chainId: u64;3474 readonly nonce: U256;3089 readonly nonce: U256;3483 readonly s: H256;3098 readonly s: H256;3484 }3099 }348531003486 /** @name EthereumTransactionAccessListItem (411) */3101 /** @name EthereumTransactionAccessListItem (334) */3487 interface EthereumTransactionAccessListItem extends Struct {3102 interface EthereumTransactionAccessListItem extends Struct {3488 readonly address: H160;3103 readonly address: H160;3489 readonly storageKeys: Vec<H256>;3104 readonly storageKeys: Vec<H256>;3490 }3105 }349131063492 /** @name EthereumTransactionEip1559Transaction (412) */3107 /** @name EthereumTransactionEip1559Transaction (335) */3493 interface EthereumTransactionEip1559Transaction extends Struct {3108 interface EthereumTransactionEip1559Transaction extends Struct {3494 readonly chainId: u64;3109 readonly chainId: u64;3495 readonly nonce: U256;3110 readonly nonce: U256;3505 readonly s: H256;3120 readonly s: H256;3506 }3121 }350731223508 /** @name PalletEvmMigrationCall (413) */3123 /** @name PalletEvmMigrationCall (336) */3509 interface PalletEvmMigrationCall extends Enum {3124 interface PalletEvmMigrationCall extends Enum {3510 readonly isBegin: boolean;3125 readonly isBegin: boolean;3511 readonly asBegin: {3126 readonly asBegin: {3532 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3147 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3533 }3148 }353431493535 /** @name PalletMaintenanceCall (417) */3150 /** @name PalletMaintenanceCall (340) */3536 interface PalletMaintenanceCall extends Enum {3151 interface PalletMaintenanceCall extends Enum {3537 readonly isEnable: boolean;3152 readonly isEnable: boolean;3538 readonly isDisable: boolean;3153 readonly isDisable: boolean;3539 readonly type: 'Enable' | 'Disable';3154 readonly type: 'Enable' | 'Disable';3540 }3155 }354131563542 /** @name PalletTestUtilsCall (418) */3157 /** @name PalletTestUtilsCall (341) */3543 interface PalletTestUtilsCall extends Enum {3158 interface PalletTestUtilsCall extends Enum {3544 readonly isEnable: boolean;3159 readonly isEnable: boolean;3545 readonly isSetTestValue: boolean;3160 readonly isSetTestValue: boolean;3559 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';3174 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';3560 }3175 }356131763562 /** @name PalletSudoError (420) */3177 /** @name PalletSudoError (343) */3563 interface PalletSudoError extends Enum {3178 interface PalletSudoError extends Enum {3564 readonly isRequireSudo: boolean;3179 readonly isRequireSudo: boolean;3565 readonly type: 'RequireSudo';3180 readonly type: 'RequireSudo';3566 }3181 }356731823568 /** @name OrmlVestingModuleError (422) */3183 /** @name OrmlVestingModuleError (345) */3569 interface OrmlVestingModuleError extends Enum {3184 interface OrmlVestingModuleError extends Enum {3570 readonly isZeroVestingPeriod: boolean;3185 readonly isZeroVestingPeriod: boolean;3571 readonly isZeroVestingPeriodCount: boolean;3186 readonly isZeroVestingPeriodCount: boolean;3576 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3191 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3577 }3192 }357831933579 /** @name OrmlXtokensModuleError (423) */3194 /** @name OrmlXtokensModuleError (346) */3580 interface OrmlXtokensModuleError extends Enum {3195 interface OrmlXtokensModuleError extends Enum {3581 readonly isAssetHasNoReserve: boolean;3196 readonly isAssetHasNoReserve: boolean;3582 readonly isNotCrossChainTransfer: boolean;3197 readonly isNotCrossChainTransfer: boolean;3600 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3215 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3601 }3216 }360232173603 /** @name OrmlTokensBalanceLock (426) */3218 /** @name OrmlTokensBalanceLock (349) */3604 interface OrmlTokensBalanceLock extends Struct {3219 interface OrmlTokensBalanceLock extends Struct {3605 readonly id: U8aFixed;3220 readonly id: U8aFixed;3606 readonly amount: u128;3221 readonly amount: u128;3607 }3222 }360832233609 /** @name OrmlTokensAccountData (428) */3224 /** @name OrmlTokensAccountData (351) */3610 interface OrmlTokensAccountData extends Struct {3225 interface OrmlTokensAccountData extends Struct {3611 readonly free: u128;3226 readonly free: u128;3612 readonly reserved: u128;3227 readonly reserved: u128;3613 readonly frozen: u128;3228 readonly frozen: u128;3614 }3229 }361532303616 /** @name OrmlTokensReserveData (430) */3231 /** @name OrmlTokensReserveData (353) */3617 interface OrmlTokensReserveData extends Struct {3232 interface OrmlTokensReserveData extends Struct {3618 readonly id: Null;3233 readonly id: Null;3619 readonly amount: u128;3234 readonly amount: u128;3620 }3235 }362132363622 /** @name OrmlTokensModuleError (432) */3237 /** @name OrmlTokensModuleError (355) */3623 interface OrmlTokensModuleError extends Enum {3238 interface OrmlTokensModuleError extends Enum {3624 readonly isBalanceTooLow: boolean;3239 readonly isBalanceTooLow: boolean;3625 readonly isAmountIntoBalanceFailed: boolean;3240 readonly isAmountIntoBalanceFailed: boolean;3632 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3247 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3633 }3248 }363432493635 /** @name CumulusPalletXcmpQueueInboundChannelDetails (434) */3250 /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */3636 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3251 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3637 readonly sender: u32;3252 readonly sender: u32;3638 readonly state: CumulusPalletXcmpQueueInboundState;3253 readonly state: CumulusPalletXcmpQueueInboundState;3639 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3254 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3640 }3255 }364132563642 /** @name CumulusPalletXcmpQueueInboundState (435) */3257 /** @name CumulusPalletXcmpQueueInboundState (358) */3643 interface CumulusPalletXcmpQueueInboundState extends Enum {3258 interface CumulusPalletXcmpQueueInboundState extends Enum {3644 readonly isOk: boolean;3259 readonly isOk: boolean;3645 readonly isSuspended: boolean;3260 readonly isSuspended: boolean;3646 readonly type: 'Ok' | 'Suspended';3261 readonly type: 'Ok' | 'Suspended';3647 }3262 }364832633649 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (438) */3264 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */3650 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3265 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3651 readonly isConcatenatedVersionedXcm: boolean;3266 readonly isConcatenatedVersionedXcm: boolean;3652 readonly isConcatenatedEncodedBlob: boolean;3267 readonly isConcatenatedEncodedBlob: boolean;3653 readonly isSignals: boolean;3268 readonly isSignals: boolean;3654 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3269 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3655 }3270 }365632713657 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (441) */3272 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */3658 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3273 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3659 readonly recipient: u32;3274 readonly recipient: u32;3660 readonly state: CumulusPalletXcmpQueueOutboundState;3275 readonly state: CumulusPalletXcmpQueueOutboundState;3663 readonly lastIndex: u16;3278 readonly lastIndex: u16;3664 }3279 }366532803666 /** @name CumulusPalletXcmpQueueOutboundState (442) */3281 /** @name CumulusPalletXcmpQueueOutboundState (365) */3667 interface CumulusPalletXcmpQueueOutboundState extends Enum {3282 interface CumulusPalletXcmpQueueOutboundState extends Enum {3668 readonly isOk: boolean;3283 readonly isOk: boolean;3669 readonly isSuspended: boolean;3284 readonly isSuspended: boolean;3670 readonly type: 'Ok' | 'Suspended';3285 readonly type: 'Ok' | 'Suspended';3671 }3286 }367232873673 /** @name CumulusPalletXcmpQueueQueueConfigData (444) */3288 /** @name CumulusPalletXcmpQueueQueueConfigData (367) */3674 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3289 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3675 readonly suspendThreshold: u32;3290 readonly suspendThreshold: u32;3676 readonly dropThreshold: u32;3291 readonly dropThreshold: u32;3680 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3295 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3681 }3296 }368232973683 /** @name CumulusPalletXcmpQueueError (446) */3298 /** @name CumulusPalletXcmpQueueError (369) */3684 interface CumulusPalletXcmpQueueError extends Enum {3299 interface CumulusPalletXcmpQueueError extends Enum {3685 readonly isFailedToSend: boolean;3300 readonly isFailedToSend: boolean;3686 readonly isBadXcmOrigin: boolean;3301 readonly isBadXcmOrigin: boolean;3690 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3305 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3691 }3306 }369233073693 /** @name PalletXcmError (447) */3308 /** @name PalletXcmError (370) */3694 interface PalletXcmError extends Enum {3309 interface PalletXcmError extends Enum {3695 readonly isUnreachable: boolean;3310 readonly isUnreachable: boolean;3696 readonly isSendFailure: boolean;3311 readonly isSendFailure: boolean;3708 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3323 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3709 }3324 }371033253711 /** @name CumulusPalletXcmError (448) */3326 /** @name CumulusPalletXcmError (371) */3712 type CumulusPalletXcmError = Null;3327 type CumulusPalletXcmError = Null;371333283714 /** @name CumulusPalletDmpQueueConfigData (449) */3329 /** @name CumulusPalletDmpQueueConfigData (372) */3715 interface CumulusPalletDmpQueueConfigData extends Struct {3330 interface CumulusPalletDmpQueueConfigData extends Struct {3716 readonly maxIndividual: SpWeightsWeightV2Weight;3331 readonly maxIndividual: SpWeightsWeightV2Weight;3717 }3332 }371833333719 /** @name CumulusPalletDmpQueuePageIndexData (450) */3334 /** @name CumulusPalletDmpQueuePageIndexData (373) */3720 interface CumulusPalletDmpQueuePageIndexData extends Struct {3335 interface CumulusPalletDmpQueuePageIndexData extends Struct {3721 readonly beginUsed: u32;3336 readonly beginUsed: u32;3722 readonly endUsed: u32;3337 readonly endUsed: u32;3723 readonly overweightCount: u64;3338 readonly overweightCount: u64;3724 }3339 }372533403726 /** @name CumulusPalletDmpQueueError (453) */3341 /** @name CumulusPalletDmpQueueError (376) */3727 interface CumulusPalletDmpQueueError extends Enum {3342 interface CumulusPalletDmpQueueError extends Enum {3728 readonly isUnknown: boolean;3343 readonly isUnknown: boolean;3729 readonly isOverLimit: boolean;3344 readonly isOverLimit: boolean;3730 readonly type: 'Unknown' | 'OverLimit';3345 readonly type: 'Unknown' | 'OverLimit';3731 }3346 }373233473733 /** @name PalletUniqueError (457) */3348 /** @name PalletUniqueError (380) */3734 interface PalletUniqueError extends Enum {3349 interface PalletUniqueError extends Enum {3735 readonly isCollectionDecimalPointLimitExceeded: boolean;3350 readonly isCollectionDecimalPointLimitExceeded: boolean;3736 readonly isEmptyArgument: boolean;3351 readonly isEmptyArgument: boolean;3737 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3352 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3738 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3353 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3739 }3354 }374033553741 /** @name PalletConfigurationError (458) */3356 /** @name PalletConfigurationError (381) */3742 interface PalletConfigurationError extends Enum {3357 interface PalletConfigurationError extends Enum {3743 readonly isInconsistentConfiguration: boolean;3358 readonly isInconsistentConfiguration: boolean;3744 readonly type: 'InconsistentConfiguration';3359 readonly type: 'InconsistentConfiguration';3745 }3360 }374633613747 /** @name UpDataStructsCollection (459) */3362 /** @name UpDataStructsCollection (382) */3748 interface UpDataStructsCollection extends Struct {3363 interface UpDataStructsCollection extends Struct {3749 readonly owner: AccountId32;3364 readonly owner: AccountId32;3750 readonly mode: UpDataStructsCollectionMode;3365 readonly mode: UpDataStructsCollectionMode;3757 readonly flags: U8aFixed;3372 readonly flags: U8aFixed;3758 }3373 }375933743760 /** @name UpDataStructsSponsorshipStateAccountId32 (460) */3375 /** @name UpDataStructsSponsorshipStateAccountId32 (383) */3761 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3376 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3762 readonly isDisabled: boolean;3377 readonly isDisabled: boolean;3763 readonly isUnconfirmed: boolean;3378 readonly isUnconfirmed: boolean;3767 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3382 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3768 }3383 }376933843770 /** @name UpDataStructsProperties (461) */3385 /** @name UpDataStructsProperties (385) */3771 interface UpDataStructsProperties extends Struct {3386 interface UpDataStructsProperties extends Struct {3772 readonly map: UpDataStructsPropertiesMapBoundedVec;3387 readonly map: UpDataStructsPropertiesMapBoundedVec;3773 readonly consumedSpace: u32;3388 readonly consumedSpace: u32;3774 readonly spaceLimit: u32;3389 readonly spaceLimit: u32;3775 }3390 }377633913777 /** @name UpDataStructsPropertiesMapBoundedVec (462) */3392 /** @name UpDataStructsPropertiesMapBoundedVec (386) */3778 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3393 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}377933943780 /** @name UpDataStructsPropertiesMapPropertyPermission (467) */3395 /** @name UpDataStructsPropertiesMapPropertyPermission (391) */3781 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3396 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}378233973783 /** @name UpDataStructsCollectionStats (474) */3398 /** @name UpDataStructsCollectionStats (398) */3784 interface UpDataStructsCollectionStats extends Struct {3399 interface UpDataStructsCollectionStats extends Struct {3785 readonly created: u32;3400 readonly created: u32;3786 readonly destroyed: u32;3401 readonly destroyed: u32;3787 readonly alive: u32;3402 readonly alive: u32;3788 }3403 }378934043790 /** @name UpDataStructsTokenChild (475) */3405 /** @name UpDataStructsTokenChild (399) */3791 interface UpDataStructsTokenChild extends Struct {3406 interface UpDataStructsTokenChild extends Struct {3792 readonly token: u32;3407 readonly token: u32;3793 readonly collection: u32;3408 readonly collection: u32;3794 }3409 }379534103796 /** @name PhantomTypeUpDataStructs (476) */3411 /** @name PhantomTypeUpDataStructs (400) */3797 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild, UpPovEstimateRpcPovInfo]>> {}3412 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild, UpPovEstimateRpcPovInfo]>> {}379834133799 /** @name UpDataStructsTokenData (478) */3414 /** @name UpDataStructsTokenData (402) */3800 interface UpDataStructsTokenData extends Struct {3415 interface UpDataStructsTokenData extends Struct {3801 readonly properties: Vec<UpDataStructsProperty>;3416 readonly properties: Vec<UpDataStructsProperty>;3802 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3417 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3803 readonly pieces: u128;3418 readonly pieces: u128;3804 }3419 }380534203806 /** @name UpDataStructsRpcCollection (480) */3421 /** @name UpDataStructsRpcCollection (404) */3807 interface UpDataStructsRpcCollection extends Struct {3422 interface UpDataStructsRpcCollection extends Struct {3808 readonly owner: AccountId32;3423 readonly owner: AccountId32;3809 readonly mode: UpDataStructsCollectionMode;3424 readonly mode: UpDataStructsCollectionMode;3819 readonly flags: UpDataStructsRpcCollectionFlags;3434 readonly flags: UpDataStructsRpcCollectionFlags;3820 }3435 }382134363822 /** @name UpDataStructsRpcCollectionFlags (481) */3437 /** @name UpDataStructsRpcCollectionFlags (405) */3823 interface UpDataStructsRpcCollectionFlags extends Struct {3438 interface UpDataStructsRpcCollectionFlags extends Struct {3824 readonly foreign: bool;3439 readonly foreign: bool;3825 readonly erc721metadata: bool;3440 readonly erc721metadata: bool;3826 }3441 }382734423828 /** @name RmrkTraitsCollectionCollectionInfo (482) */3443 /** @name RmrkTraitsCollectionCollectionInfo (406) */3829 interface RmrkTraitsCollectionCollectionInfo extends Struct {3444 interface RmrkTraitsCollectionCollectionInfo extends Struct {3830 readonly issuer: AccountId32;3445 readonly issuer: AccountId32;3831 readonly metadata: Bytes;3446 readonly metadata: Bytes;3834 readonly nftsCount: u32;3449 readonly nftsCount: u32;3835 }3450 }383634513837 /** @name RmrkTraitsNftNftInfo (483) */3452 /** @name RmrkTraitsNftNftInfo (407) */3838 interface RmrkTraitsNftNftInfo extends Struct {3453 interface RmrkTraitsNftNftInfo extends Struct {3839 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3454 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3840 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3455 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3843 readonly pending: bool;3458 readonly pending: bool;3844 }3459 }384534603846 /** @name RmrkTraitsNftRoyaltyInfo (485) */3461 /** @name RmrkTraitsNftRoyaltyInfo (409) */3847 interface RmrkTraitsNftRoyaltyInfo extends Struct {3462 interface RmrkTraitsNftRoyaltyInfo extends Struct {3848 readonly recipient: AccountId32;3463 readonly recipient: AccountId32;3849 readonly amount: Permill;3464 readonly amount: Permill;3850 }3465 }385134663852 /** @name RmrkTraitsResourceResourceInfo (486) */3467 /** @name RmrkTraitsResourceResourceInfo (410) */3853 interface RmrkTraitsResourceResourceInfo extends Struct {3468 interface RmrkTraitsResourceResourceInfo extends Struct {3854 readonly id: u32;3469 readonly id: u32;3855 readonly resource: RmrkTraitsResourceResourceTypes;3470 readonly resource: RmrkTraitsResourceResourceTypes;3856 readonly pending: bool;3471 readonly pending: bool;3857 readonly pendingRemoval: bool;3472 readonly pendingRemoval: bool;3858 }3473 }385934743860 /** @name RmrkTraitsPropertyPropertyInfo (487) */3475 /** @name RmrkTraitsPropertyPropertyInfo (411) */3861 interface RmrkTraitsPropertyPropertyInfo extends Struct {3476 interface RmrkTraitsPropertyPropertyInfo extends Struct {3862 readonly key: Bytes;3477 readonly key: Bytes;3863 readonly value: Bytes;3478 readonly value: Bytes;3864 }3479 }386534803866 /** @name RmrkTraitsBaseBaseInfo (488) */3481 /** @name RmrkTraitsBaseBaseInfo (412) */3867 interface RmrkTraitsBaseBaseInfo extends Struct {3482 interface RmrkTraitsBaseBaseInfo extends Struct {3868 readonly issuer: AccountId32;3483 readonly issuer: AccountId32;3869 readonly baseType: Bytes;3484 readonly baseType: Bytes;3870 readonly symbol: Bytes;3485 readonly symbol: Bytes;3871 }3486 }387234873873 /** @name RmrkTraitsNftNftChild (489) */3488 /** @name RmrkTraitsNftNftChild (413) */3874 interface RmrkTraitsNftNftChild extends Struct {3489 interface RmrkTraitsNftNftChild extends Struct {3875 readonly collectionId: u32;3490 readonly collectionId: u32;3876 readonly nftId: u32;3491 readonly nftId: u32;3877 }3492 }387834933879 /** @name UpPovEstimateRpcPovInfo (490) */3494 /** @name UpPovEstimateRpcPovInfo (414) */3880 interface UpPovEstimateRpcPovInfo extends Struct {3495 interface UpPovEstimateRpcPovInfo extends Struct {3881 readonly proofSize: u64;3496 readonly proofSize: u64;3882 readonly compactProofSize: u64;3497 readonly compactProofSize: u64;3885 readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;3500 readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;3886 }3501 }388735023888 /** @name SpRuntimeTransactionValidityTransactionValidityError (493) */3503 /** @name SpRuntimeTransactionValidityTransactionValidityError (417) */3889 interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {3504 interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {3890 readonly isInvalid: boolean;3505 readonly isInvalid: boolean;3891 readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;3506 readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;3894 readonly type: 'Invalid' | 'Unknown';3509 readonly type: 'Invalid' | 'Unknown';3895 }3510 }389635113897 /** @name SpRuntimeTransactionValidityInvalidTransaction (494) */3512 /** @name SpRuntimeTransactionValidityInvalidTransaction (418) */3898 interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {3513 interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {3899 readonly isCall: boolean;3514 readonly isCall: boolean;3900 readonly isPayment: boolean;3515 readonly isPayment: boolean;3911 readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';3526 readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';3912 }3527 }391335283914 /** @name SpRuntimeTransactionValidityUnknownTransaction (495) */3529 /** @name SpRuntimeTransactionValidityUnknownTransaction (419) */3915 interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {3530 interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {3916 readonly isCannotLookup: boolean;3531 readonly isCannotLookup: boolean;3917 readonly isNoUnsignedValidator: boolean;3532 readonly isNoUnsignedValidator: boolean;3920 readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';3535 readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';3921 }3536 }392235373923 /** @name UpPovEstimateRpcTrieKeyValue (497) */3538 /** @name UpPovEstimateRpcTrieKeyValue (421) */3924 interface UpPovEstimateRpcTrieKeyValue extends Struct {3539 interface UpPovEstimateRpcTrieKeyValue extends Struct {3925 readonly key: Bytes;3540 readonly key: Bytes;3926 readonly value: Bytes;3541 readonly value: Bytes;3927 }3542 }392835433929 /** @name PalletCommonError (499) */3544 /** @name PalletCommonError (423) */3930 interface PalletCommonError extends Enum {3545 interface PalletCommonError extends Enum {3931 readonly isCollectionNotFound: boolean;3546 readonly isCollectionNotFound: boolean;3932 readonly isMustBeTokenOwner: boolean;3547 readonly isMustBeTokenOwner: boolean;3967 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';3582 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';3968 }3583 }396935843970 /** @name PalletFungibleError (501) */3585 /** @name PalletFungibleError (425) */3971 interface PalletFungibleError extends Enum {3586 interface PalletFungibleError extends Enum {3972 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3587 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3973 readonly isFungibleItemsHaveNoId: boolean;3588 readonly isFungibleItemsHaveNoId: boolean;3979 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';3594 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';3980 }3595 }398135963982 /** @name PalletRefungibleError (505) */3597 /** @name PalletRefungibleError (429) */3983 interface PalletRefungibleError extends Enum {3598 interface PalletRefungibleError extends Enum {3984 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3599 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3985 readonly isWrongRefungiblePieces: boolean;3600 readonly isWrongRefungiblePieces: boolean;3989 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3604 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3990 }3605 }399136063992 /** @name PalletNonfungibleItemData (506) */3607 /** @name PalletNonfungibleItemData (430) */3993 interface PalletNonfungibleItemData extends Struct {3608 interface PalletNonfungibleItemData extends Struct {3994 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3609 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3995 }3610 }399636113997 /** @name UpDataStructsPropertyScope (508) */3612 /** @name UpDataStructsPropertyScope (432) */3998 interface UpDataStructsPropertyScope extends Enum {3613 interface UpDataStructsPropertyScope extends Enum {3999 readonly isNone: boolean;3614 readonly isNone: boolean;4000 readonly isRmrk: boolean;3615 readonly isRmrk: boolean;4001 readonly type: 'None' | 'Rmrk';3616 readonly type: 'None' | 'Rmrk';4002 }3617 }400336184004 /** @name PalletNonfungibleError (511) */3619 /** @name PalletNonfungibleError (435) */4005 interface PalletNonfungibleError extends Enum {3620 interface PalletNonfungibleError extends Enum {4006 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3621 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;4007 readonly isNonfungibleItemsHaveNoAmount: boolean;3622 readonly isNonfungibleItemsHaveNoAmount: boolean;4008 readonly isCantBurnNftWithChildren: boolean;3623 readonly isCantBurnNftWithChildren: boolean;4009 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3624 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';4010 }3625 }401136264012 /** @name PalletStructureError (512) */3627 /** @name PalletStructureError (436) */4013 interface PalletStructureError extends Enum {3628 interface PalletStructureError extends Enum {4014 readonly isOuroborosDetected: boolean;3629 readonly isOuroborosDetected: boolean;4015 readonly isDepthLimit: boolean;3630 readonly isDepthLimit: boolean;4018 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3633 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';4019 }3634 }402036354021 /** @name PalletRmrkCoreError (513) */3636 /** @name PalletRmrkCoreError (437) */4022 interface PalletRmrkCoreError extends Enum {3637 interface PalletRmrkCoreError extends Enum {4023 readonly isCorruptedCollectionType: boolean;3638 readonly isCorruptedCollectionType: boolean;4024 readonly isRmrkPropertyKeyIsTooLong: boolean;3639 readonly isRmrkPropertyKeyIsTooLong: boolean;4042 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3657 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';4043 }3658 }404436594045 /** @name PalletRmrkEquipError (515) */3660 /** @name PalletRmrkEquipError (439) */4046 interface PalletRmrkEquipError extends Enum {3661 interface PalletRmrkEquipError extends Enum {4047 readonly isPermissionError: boolean;3662 readonly isPermissionError: boolean;4048 readonly isNoAvailableBaseId: boolean;3663 readonly isNoAvailableBaseId: boolean;4054 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3669 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';4055 }3670 }405636714057 /** @name PalletAppPromotionError (521) */3672 /** @name PalletAppPromotionError (445) */4058 interface PalletAppPromotionError extends Enum {3673 interface PalletAppPromotionError extends Enum {4059 readonly isAdminNotSet: boolean;3674 readonly isAdminNotSet: boolean;4060 readonly isNoPermission: boolean;3675 readonly isNoPermission: boolean;4065 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3680 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';4066 }3681 }406736824068 /** @name PalletForeignAssetsModuleError (522) */3683 /** @name PalletForeignAssetsModuleError (446) */4069 interface PalletForeignAssetsModuleError extends Enum {3684 interface PalletForeignAssetsModuleError extends Enum {4070 readonly isBadLocation: boolean;3685 readonly isBadLocation: boolean;4071 readonly isMultiLocationExisted: boolean;3686 readonly isMultiLocationExisted: boolean;4074 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3689 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';4075 }3690 }407636914077 /** @name PalletEvmError (524) */3692 /** @name PalletEvmError (448) */4078 interface PalletEvmError extends Enum {3693 interface PalletEvmError extends Enum {4079 readonly isBalanceLow: boolean;3694 readonly isBalanceLow: boolean;4080 readonly isFeeOverflow: boolean;3695 readonly isFeeOverflow: boolean;4090 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';3705 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';4091 }3706 }409237074093 /** @name FpRpcTransactionStatus (527) */3708 /** @name FpRpcTransactionStatus (451) */4094 interface FpRpcTransactionStatus extends Struct {3709 interface FpRpcTransactionStatus extends Struct {4095 readonly transactionHash: H256;3710 readonly transactionHash: H256;4096 readonly transactionIndex: u32;3711 readonly transactionIndex: u32;4101 readonly logsBloom: EthbloomBloom;3716 readonly logsBloom: EthbloomBloom;4102 }3717 }410337184104 /** @name EthbloomBloom (529) */3719 /** @name EthbloomBloom (453) */4105 interface EthbloomBloom extends U8aFixed {}3720 interface EthbloomBloom extends U8aFixed {}410637214107 /** @name EthereumReceiptReceiptV3 (531) */3722 /** @name EthereumReceiptReceiptV3 (455) */4108 interface EthereumReceiptReceiptV3 extends Enum {3723 interface EthereumReceiptReceiptV3 extends Enum {4109 readonly isLegacy: boolean;3724 readonly isLegacy: boolean;4110 readonly asLegacy: EthereumReceiptEip658ReceiptData;3725 readonly asLegacy: EthereumReceiptEip658ReceiptData;4115 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3730 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';4116 }3731 }411737324118 /** @name EthereumReceiptEip658ReceiptData (532) */3733 /** @name EthereumReceiptEip658ReceiptData (456) */4119 interface EthereumReceiptEip658ReceiptData extends Struct {3734 interface EthereumReceiptEip658ReceiptData extends Struct {4120 readonly statusCode: u8;3735 readonly statusCode: u8;4121 readonly usedGas: U256;3736 readonly usedGas: U256;4122 readonly logsBloom: EthbloomBloom;3737 readonly logsBloom: EthbloomBloom;4123 readonly logs: Vec<EthereumLog>;3738 readonly logs: Vec<EthereumLog>;4124 }3739 }412537404126 /** @name EthereumBlock (533) */3741 /** @name EthereumBlock (457) */4127 interface EthereumBlock extends Struct {3742 interface EthereumBlock extends Struct {4128 readonly header: EthereumHeader;3743 readonly header: EthereumHeader;4129 readonly transactions: Vec<EthereumTransactionTransactionV2>;3744 readonly transactions: Vec<EthereumTransactionTransactionV2>;4130 readonly ommers: Vec<EthereumHeader>;3745 readonly ommers: Vec<EthereumHeader>;4131 }3746 }413237474133 /** @name EthereumHeader (534) */3748 /** @name EthereumHeader (458) */4134 interface EthereumHeader extends Struct {3749 interface EthereumHeader extends Struct {4135 readonly parentHash: H256;3750 readonly parentHash: H256;4136 readonly ommersHash: H256;3751 readonly ommersHash: H256;4149 readonly nonce: EthereumTypesHashH64;3764 readonly nonce: EthereumTypesHashH64;4150 }3765 }415137664152 /** @name EthereumTypesHashH64 (535) */3767 /** @name EthereumTypesHashH64 (459) */4153 interface EthereumTypesHashH64 extends U8aFixed {}3768 interface EthereumTypesHashH64 extends U8aFixed {}415437694155 /** @name PalletEthereumError (540) */3770 /** @name PalletEthereumError (464) */4156 interface PalletEthereumError extends Enum {3771 interface PalletEthereumError extends Enum {4157 readonly isInvalidSignature: boolean;3772 readonly isInvalidSignature: boolean;4158 readonly isPreLogExists: boolean;3773 readonly isPreLogExists: boolean;4159 readonly type: 'InvalidSignature' | 'PreLogExists';3774 readonly type: 'InvalidSignature' | 'PreLogExists';4160 }3775 }416137764162 /** @name PalletEvmCoderSubstrateError (541) */3777 /** @name PalletEvmCoderSubstrateError (465) */4163 interface PalletEvmCoderSubstrateError extends Enum {3778 interface PalletEvmCoderSubstrateError extends Enum {4164 readonly isOutOfGas: boolean;3779 readonly isOutOfGas: boolean;4165 readonly isOutOfFund: boolean;3780 readonly isOutOfFund: boolean;4166 readonly type: 'OutOfGas' | 'OutOfFund';3781 readonly type: 'OutOfGas' | 'OutOfFund';4167 }3782 }416837834169 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (542) */3784 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (466) */4170 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3785 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {4171 readonly isDisabled: boolean;3786 readonly isDisabled: boolean;4172 readonly isUnconfirmed: boolean;3787 readonly isUnconfirmed: boolean;4176 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3791 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';4177 }3792 }417837934179 /** @name PalletEvmContractHelpersSponsoringModeT (543) */3794 /** @name PalletEvmContractHelpersSponsoringModeT (467) */4180 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3795 interface PalletEvmContractHelpersSponsoringModeT extends Enum {4181 readonly isDisabled: boolean;3796 readonly isDisabled: boolean;4182 readonly isAllowlisted: boolean;3797 readonly isAllowlisted: boolean;4183 readonly isGenerous: boolean;3798 readonly isGenerous: boolean;4184 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3799 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';4185 }3800 }418638014187 /** @name PalletEvmContractHelpersError (549) */3802 /** @name PalletEvmContractHelpersError (473) */4188 interface PalletEvmContractHelpersError extends Enum {3803 interface PalletEvmContractHelpersError extends Enum {4189 readonly isNoPermission: boolean;3804 readonly isNoPermission: boolean;4190 readonly isNoPendingSponsor: boolean;3805 readonly isNoPendingSponsor: boolean;4191 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3806 readonly isTooManyMethodsHaveSponsoredLimit: boolean;4192 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3807 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';4193 }3808 }419438094195 /** @name PalletEvmMigrationError (550) */3810 /** @name PalletEvmMigrationError (474) */4196 interface PalletEvmMigrationError extends Enum {3811 interface PalletEvmMigrationError extends Enum {4197 readonly isAccountNotEmpty: boolean;3812 readonly isAccountNotEmpty: boolean;4198 readonly isAccountIsNotMigrating: boolean;3813 readonly isAccountIsNotMigrating: boolean;4199 readonly isBadEvent: boolean;3814 readonly isBadEvent: boolean;4200 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3815 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';4201 }3816 }420238174203 /** @name PalletMaintenanceError (551) */3818 /** @name PalletMaintenanceError (475) */4204 type PalletMaintenanceError = Null;3819 type PalletMaintenanceError = Null;420538204206 /** @name PalletTestUtilsError (552) */3821 /** @name PalletTestUtilsError (476) */4207 interface PalletTestUtilsError extends Enum {3822 interface PalletTestUtilsError extends Enum {4208 readonly isTestPalletDisabled: boolean;3823 readonly isTestPalletDisabled: boolean;4209 readonly isTriggerRollback: boolean;3824 readonly isTriggerRollback: boolean;4210 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3825 readonly type: 'TestPalletDisabled' | 'TriggerRollback';4211 }3826 }421238274213 /** @name SpRuntimeMultiSignature (554) */3828 /** @name SpRuntimeMultiSignature (478) */4214 interface SpRuntimeMultiSignature extends Enum {3829 interface SpRuntimeMultiSignature extends Enum {4215 readonly isEd25519: boolean;3830 readonly isEd25519: boolean;4216 readonly asEd25519: SpCoreEd25519Signature;3831 readonly asEd25519: SpCoreEd25519Signature;4221 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3836 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';4222 }3837 }422338384224 /** @name SpCoreEd25519Signature (555) */3839 /** @name SpCoreEd25519Signature (479) */4225 interface SpCoreEd25519Signature extends U8aFixed {}3840 interface SpCoreEd25519Signature extends U8aFixed {}422638414227 /** @name SpCoreSr25519Signature (557) */3842 /** @name SpCoreSr25519Signature (481) */4228 interface SpCoreSr25519Signature extends U8aFixed {}3843 interface SpCoreSr25519Signature extends U8aFixed {}422938444230 /** @name SpCoreEcdsaSignature (558) */3845 /** @name SpCoreEcdsaSignature (482) */4231 interface SpCoreEcdsaSignature extends U8aFixed {}3846 interface SpCoreEcdsaSignature extends U8aFixed {}423238474233 /** @name FrameSystemExtensionsCheckSpecVersion (561) */3848 /** @name FrameSystemExtensionsCheckSpecVersion (485) */4234 type FrameSystemExtensionsCheckSpecVersion = Null;3849 type FrameSystemExtensionsCheckSpecVersion = Null;423538504236 /** @name FrameSystemExtensionsCheckTxVersion (562) */3851 /** @name FrameSystemExtensionsCheckTxVersion (486) */4237 type FrameSystemExtensionsCheckTxVersion = Null;3852 type FrameSystemExtensionsCheckTxVersion = Null;423838534239 /** @name FrameSystemExtensionsCheckGenesis (563) */3854 /** @name FrameSystemExtensionsCheckGenesis (487) */4240 type FrameSystemExtensionsCheckGenesis = Null;3855 type FrameSystemExtensionsCheckGenesis = Null;424138564242 /** @name FrameSystemExtensionsCheckNonce (566) */3857 /** @name FrameSystemExtensionsCheckNonce (490) */4243 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}3858 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}424438594245 /** @name FrameSystemExtensionsCheckWeight (567) */3860 /** @name FrameSystemExtensionsCheckWeight (491) */4246 type FrameSystemExtensionsCheckWeight = Null;3861 type FrameSystemExtensionsCheckWeight = Null;424738624248 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (568) */3863 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (492) */4249 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;3864 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;425038654251 /** @name OpalRuntimeRuntimeCommonDataManagementFilterIdentity (569) */3866 /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (493) */4252 type OpalRuntimeRuntimeCommonDataManagementFilterIdentity = Null;3867 type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;425338684254 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (570) */3869 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (494) */4255 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}3870 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}425638714257 /** @name OpalRuntimeRuntime (571) */3872 /** @name OpalRuntimeRuntime (495) */4258 type OpalRuntimeRuntime = Null;3873 type OpalRuntimeRuntime = Null;425938744260 /** @name PalletEthereumFakeTransactionFinalizer (572) */3875 /** @name PalletEthereumFakeTransactionFinalizer (496) */4261 type PalletEthereumFakeTransactionFinalizer = Null;3876 type PalletEthereumFakeTransactionFinalizer = Null;426238774263} // declare module3878} // declare module