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.tsdiffbeforeafterboth183 }183 }184 }184 }185 },185 },186 /**187 * Lookup30: pallet_collator_selection::pallet::Event<T>188 **/189 PalletCollatorSelectionEvent: {190 _enum: {191 InvulnerableAdded: {192 invulnerable: 'AccountId32',193 },194 InvulnerableRemoved: {195 invulnerable: 'AccountId32',196 },197 LicenseObtained: {198 accountId: 'AccountId32',199 deposit: 'u128',200 },201 LicenseReleased: {202 accountId: 'AccountId32',203 depositReturned: 'u128',204 },205 CandidateAdded: {206 accountId: 'AccountId32',207 },208 CandidateRemoved: {209 accountId: 'AccountId32'210 }211 }212 },213 /**214 * Lookup31: pallet_session::pallet::Event215 **/216 PalletSessionEvent: {217 _enum: {218 NewSession: {219 sessionIndex: 'u32'220 }221 }222 },223 /**224 * Lookup32: pallet_identity::pallet::Event<T>225 **/226 PalletIdentityEvent: {227 _enum: {228 IdentitySet: {229 who: 'AccountId32',230 },231 IdentityCleared: {232 who: 'AccountId32',233 deposit: 'u128',234 },235 IdentityKilled: {236 who: 'AccountId32',237 deposit: 'u128',238 },239 IdentitiesInserted: {240 amount: 'u32',241 },242 IdentitiesRemoved: {243 amount: 'u32',244 },245 JudgementRequested: {246 who: 'AccountId32',247 registrarIndex: 'u32',248 },249 JudgementUnrequested: {250 who: 'AccountId32',251 registrarIndex: 'u32',252 },253 JudgementGiven: {254 target: 'AccountId32',255 registrarIndex: 'u32',256 },257 RegistrarAdded: {258 registrarIndex: 'u32',259 },260 SubIdentityAdded: {261 sub: 'AccountId32',262 main: 'AccountId32',263 deposit: 'u128',264 },265 SubIdentityRemoved: {266 sub: 'AccountId32',267 main: 'AccountId32',268 deposit: 'u128',269 },270 SubIdentityRevoked: {271 sub: 'AccountId32',272 main: 'AccountId32',273 deposit: 'u128'274 }275 }276 },277 /**186 /**278 * Lookup33: pallet_balances::pallet::Event<T, I>187 * Lookup30: pallet_balances::pallet::Event<T, I>279 **/188 **/280 PalletBalancesEvent: {189 PalletBalancesEvent: {281 _enum: {190 _enum: {282 Endowed: {191 Endowed: {325 }234 }326 }235 }327 },236 },328 /**237 /**329 * Lookup34: frame_support::traits::tokens::misc::BalanceStatus238 * Lookup31: frame_support::traits::tokens::misc::BalanceStatus330 **/239 **/331 FrameSupportTokensMiscBalanceStatus: {240 FrameSupportTokensMiscBalanceStatus: {332 _enum: ['Free', 'Reserved']241 _enum: ['Free', 'Reserved']333 },242 },334 /**243 /**335 * Lookup35: pallet_transaction_payment::pallet::Event<T>244 * Lookup32: pallet_transaction_payment::pallet::Event<T>336 **/245 **/337 PalletTransactionPaymentEvent: {246 PalletTransactionPaymentEvent: {338 _enum: {247 _enum: {339 TransactionFeePaid: {248 TransactionFeePaid: {343 }252 }344 }253 }345 },254 },346 /**255 /**347 * Lookup36: pallet_treasury::pallet::Event<T, I>256 * Lookup33: pallet_treasury::pallet::Event<T, I>348 **/257 **/349 PalletTreasuryEvent: {258 PalletTreasuryEvent: {350 _enum: {259 _enum: {351 Proposed: {260 Proposed: {379 }288 }380 }289 }381 },290 },382 /**291 /**383 * Lookup37: pallet_sudo::pallet::Event<T>292 * Lookup34: pallet_sudo::pallet::Event<T>384 **/293 **/385 PalletSudoEvent: {294 PalletSudoEvent: {386 _enum: {295 _enum: {387 Sudid: {296 Sudid: {395 }304 }396 }305 }397 },306 },398 /**307 /**399 * Lookup41: orml_vesting::module::Event<T>308 * Lookup38: orml_vesting::module::Event<T>400 **/309 **/401 OrmlVestingModuleEvent: {310 OrmlVestingModuleEvent: {402 _enum: {311 _enum: {403 VestingScheduleAdded: {312 VestingScheduleAdded: {414 }323 }415 }324 }416 },325 },417 /**326 /**418 * Lookup42: orml_vesting::VestingSchedule<BlockNumber, Balance>327 * Lookup39: orml_vesting::VestingSchedule<BlockNumber, Balance>419 **/328 **/420 OrmlVestingVestingSchedule: {329 OrmlVestingVestingSchedule: {421 start: 'u32',330 start: 'u32',422 period: 'u32',331 period: 'u32',423 periodCount: 'u32',332 periodCount: 'u32',424 perPeriod: 'Compact<u128>'333 perPeriod: 'Compact<u128>'425 },334 },426 /**335 /**427 * Lookup44: orml_xtokens::module::Event<T>336 * Lookup41: orml_xtokens::module::Event<T>428 **/337 **/429 OrmlXtokensModuleEvent: {338 OrmlXtokensModuleEvent: {430 _enum: {339 _enum: {431 TransferredMultiAssets: {340 TransferredMultiAssets: {436 }345 }437 }346 }438 },347 },439 /**348 /**440 * Lookup45: xcm::v1::multiasset::MultiAssets349 * Lookup42: xcm::v1::multiasset::MultiAssets441 **/350 **/442 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',351 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',443 /**352 /**444 * Lookup47: xcm::v1::multiasset::MultiAsset353 * Lookup44: xcm::v1::multiasset::MultiAsset445 **/354 **/446 XcmV1MultiAsset: {355 XcmV1MultiAsset: {447 id: 'XcmV1MultiassetAssetId',356 id: 'XcmV1MultiassetAssetId',448 fun: 'XcmV1MultiassetFungibility'357 fun: 'XcmV1MultiassetFungibility'449 },358 },450 /**359 /**451 * Lookup48: xcm::v1::multiasset::AssetId360 * Lookup45: xcm::v1::multiasset::AssetId452 **/361 **/453 XcmV1MultiassetAssetId: {362 XcmV1MultiassetAssetId: {454 _enum: {363 _enum: {455 Concrete: 'XcmV1MultiLocation',364 Concrete: 'XcmV1MultiLocation',456 Abstract: 'Bytes'365 Abstract: 'Bytes'457 }366 }458 },367 },459 /**368 /**460 * Lookup49: xcm::v1::multilocation::MultiLocation369 * Lookup46: xcm::v1::multilocation::MultiLocation461 **/370 **/462 XcmV1MultiLocation: {371 XcmV1MultiLocation: {463 parents: 'u8',372 parents: 'u8',464 interior: 'XcmV1MultilocationJunctions'373 interior: 'XcmV1MultilocationJunctions'465 },374 },466 /**375 /**467 * Lookup50: xcm::v1::multilocation::Junctions376 * Lookup47: xcm::v1::multilocation::Junctions468 **/377 **/469 XcmV1MultilocationJunctions: {378 XcmV1MultilocationJunctions: {470 _enum: {379 _enum: {471 Here: 'Null',380 Here: 'Null',479 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'388 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'480 }389 }481 },390 },482 /**391 /**483 * Lookup51: xcm::v1::junction::Junction392 * Lookup48: xcm::v1::junction::Junction484 **/393 **/485 XcmV1Junction: {394 XcmV1Junction: {486 _enum: {395 _enum: {487 Parachain: 'Compact<u32>',396 Parachain: 'Compact<u32>',507 }416 }508 }417 }509 },418 },510 /**419 /**511 * Lookup53: xcm::v0::junction::NetworkId420 * Lookup50: xcm::v0::junction::NetworkId512 **/421 **/513 XcmV0JunctionNetworkId: {422 XcmV0JunctionNetworkId: {514 _enum: {423 _enum: {515 Any: 'Null',424 Any: 'Null',518 Kusama: 'Null'427 Kusama: 'Null'519 }428 }520 },429 },521 /**430 /**522 * Lookup56: xcm::v0::junction::BodyId431 * Lookup53: xcm::v0::junction::BodyId523 **/432 **/524 XcmV0JunctionBodyId: {433 XcmV0JunctionBodyId: {525 _enum: {434 _enum: {526 Unit: 'Null',435 Unit: 'Null',532 Judicial: 'Null'441 Judicial: 'Null'533 }442 }534 },443 },535 /**444 /**536 * Lookup57: xcm::v0::junction::BodyPart445 * Lookup54: xcm::v0::junction::BodyPart537 **/446 **/538 XcmV0JunctionBodyPart: {447 XcmV0JunctionBodyPart: {539 _enum: {448 _enum: {540 Voice: 'Null',449 Voice: 'Null',555 }464 }556 }465 }557 },466 },558 /**467 /**559 * Lookup58: xcm::v1::multiasset::Fungibility468 * Lookup55: xcm::v1::multiasset::Fungibility560 **/469 **/561 XcmV1MultiassetFungibility: {470 XcmV1MultiassetFungibility: {562 _enum: {471 _enum: {563 Fungible: 'Compact<u128>',472 Fungible: 'Compact<u128>',564 NonFungible: 'XcmV1MultiassetAssetInstance'473 NonFungible: 'XcmV1MultiassetAssetInstance'565 }474 }566 },475 },567 /**476 /**568 * Lookup59: xcm::v1::multiasset::AssetInstance477 * Lookup56: xcm::v1::multiasset::AssetInstance569 **/478 **/570 XcmV1MultiassetAssetInstance: {479 XcmV1MultiassetAssetInstance: {571 _enum: {480 _enum: {572 Undefined: 'Null',481 Undefined: 'Null',578 Blob: 'Bytes'487 Blob: 'Bytes'579 }488 }580 },489 },581 /**490 /**582 * Lookup62: orml_tokens::module::Event<T>491 * Lookup59: orml_tokens::module::Event<T>583 **/492 **/584 OrmlTokensModuleEvent: {493 OrmlTokensModuleEvent: {585 _enum: {494 _enum: {586 Endowed: {495 Endowed: {655 }564 }656 }565 }657 },566 },658 /**567 /**659 * Lookup63: pallet_foreign_assets::AssetIds568 * Lookup60: pallet_foreign_assets::AssetIds660 **/569 **/661 PalletForeignAssetsAssetIds: {570 PalletForeignAssetsAssetIds: {662 _enum: {571 _enum: {663 ForeignAssetId: 'u32',572 ForeignAssetId: 'u32',664 NativeAssetId: 'PalletForeignAssetsNativeCurrency'573 NativeAssetId: 'PalletForeignAssetsNativeCurrency'665 }574 }666 },575 },667 /**576 /**668 * Lookup64: pallet_foreign_assets::NativeCurrency577 * Lookup61: pallet_foreign_assets::NativeCurrency669 **/578 **/670 PalletForeignAssetsNativeCurrency: {579 PalletForeignAssetsNativeCurrency: {671 _enum: ['Here', 'Parent']580 _enum: ['Here', 'Parent']672 },581 },673 /**582 /**674 * Lookup65: cumulus_pallet_xcmp_queue::pallet::Event<T>583 * Lookup62: cumulus_pallet_xcmp_queue::pallet::Event<T>675 **/584 **/676 CumulusPalletXcmpQueueEvent: {585 CumulusPalletXcmpQueueEvent: {677 _enum: {586 _enum: {678 Success: {587 Success: {708 }617 }709 }618 }710 },619 },711 /**620 /**712 * Lookup67: xcm::v2::traits::Error621 * Lookup64: xcm::v2::traits::Error713 **/622 **/714 XcmV2TraitsError: {623 XcmV2TraitsError: {715 _enum: {624 _enum: {716 Overflow: 'Null',625 Overflow: 'Null',741 WeightNotComputable: 'Null'650 WeightNotComputable: 'Null'742 }651 }743 },652 },744 /**653 /**745 * Lookup69: pallet_xcm::pallet::Event<T>654 * Lookup66: pallet_xcm::pallet::Event<T>746 **/655 **/747 PalletXcmEvent: {656 PalletXcmEvent: {748 _enum: {657 _enum: {749 Attempted: 'XcmV2TraitsOutcome',658 Attempted: 'XcmV2TraitsOutcome',765 AssetsClaimed: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)'674 AssetsClaimed: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)'766 }675 }767 },676 },768 /**677 /**769 * Lookup70: xcm::v2::traits::Outcome678 * Lookup67: xcm::v2::traits::Outcome770 **/679 **/771 XcmV2TraitsOutcome: {680 XcmV2TraitsOutcome: {772 _enum: {681 _enum: {773 Complete: 'u64',682 Complete: 'u64',774 Incomplete: '(u64,XcmV2TraitsError)',683 Incomplete: '(u64,XcmV2TraitsError)',775 Error: 'XcmV2TraitsError'684 Error: 'XcmV2TraitsError'776 }685 }777 },686 },778 /**687 /**779 * Lookup71: xcm::v2::Xcm<RuntimeCall>688 * Lookup68: xcm::v2::Xcm<RuntimeCall>780 **/689 **/781 XcmV2Xcm: 'Vec<XcmV2Instruction>',690 XcmV2Xcm: 'Vec<XcmV2Instruction>',782 /**691 /**783 * Lookup73: xcm::v2::Instruction<RuntimeCall>692 * Lookup70: xcm::v2::Instruction<RuntimeCall>784 **/693 **/785 XcmV2Instruction: {694 XcmV2Instruction: {786 _enum: {695 _enum: {787 WithdrawAsset: 'XcmV1MultiassetMultiAssets',696 WithdrawAsset: 'XcmV1MultiassetMultiAssets',877 UnsubscribeVersion: 'Null'786 UnsubscribeVersion: 'Null'878 }787 }879 },788 },880 /**789 /**881 * Lookup74: xcm::v2::Response790 * Lookup71: xcm::v2::Response882 **/791 **/883 XcmV2Response: {792 XcmV2Response: {884 _enum: {793 _enum: {885 Null: 'Null',794 Null: 'Null',888 Version: 'u32'797 Version: 'u32'889 }798 }890 },799 },891 /**800 /**892 * Lookup77: xcm::v0::OriginKind801 * Lookup74: xcm::v0::OriginKind893 **/802 **/894 XcmV0OriginKind: {803 XcmV0OriginKind: {895 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']804 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']896 },805 },897 /**806 /**898 * Lookup78: xcm::double_encoded::DoubleEncoded<T>807 * Lookup75: xcm::double_encoded::DoubleEncoded<T>899 **/808 **/900 XcmDoubleEncoded: {809 XcmDoubleEncoded: {901 encoded: 'Bytes'810 encoded: 'Bytes'902 },811 },903 /**812 /**904 * Lookup79: xcm::v1::multiasset::MultiAssetFilter813 * Lookup76: xcm::v1::multiasset::MultiAssetFilter905 **/814 **/906 XcmV1MultiassetMultiAssetFilter: {815 XcmV1MultiassetMultiAssetFilter: {907 _enum: {816 _enum: {908 Definite: 'XcmV1MultiassetMultiAssets',817 Definite: 'XcmV1MultiassetMultiAssets',909 Wild: 'XcmV1MultiassetWildMultiAsset'818 Wild: 'XcmV1MultiassetWildMultiAsset'910 }819 }911 },820 },912 /**821 /**913 * Lookup80: xcm::v1::multiasset::WildMultiAsset822 * Lookup77: xcm::v1::multiasset::WildMultiAsset914 **/823 **/915 XcmV1MultiassetWildMultiAsset: {824 XcmV1MultiassetWildMultiAsset: {916 _enum: {825 _enum: {917 All: 'Null',826 All: 'Null',921 }830 }922 }831 }923 },832 },924 /**833 /**925 * Lookup81: xcm::v1::multiasset::WildFungibility834 * Lookup78: xcm::v1::multiasset::WildFungibility926 **/835 **/927 XcmV1MultiassetWildFungibility: {836 XcmV1MultiassetWildFungibility: {928 _enum: ['Fungible', 'NonFungible']837 _enum: ['Fungible', 'NonFungible']929 },838 },930 /**839 /**931 * Lookup82: xcm::v2::WeightLimit840 * Lookup79: xcm::v2::WeightLimit932 **/841 **/933 XcmV2WeightLimit: {842 XcmV2WeightLimit: {934 _enum: {843 _enum: {935 Unlimited: 'Null',844 Unlimited: 'Null',936 Limited: 'Compact<u64>'845 Limited: 'Compact<u64>'937 }846 }938 },847 },939 /**848 /**940 * Lookup84: xcm::VersionedMultiAssets849 * Lookup81: xcm::VersionedMultiAssets941 **/850 **/942 XcmVersionedMultiAssets: {851 XcmVersionedMultiAssets: {943 _enum: {852 _enum: {944 V0: 'Vec<XcmV0MultiAsset>',853 V0: 'Vec<XcmV0MultiAsset>',945 V1: 'XcmV1MultiassetMultiAssets'854 V1: 'XcmV1MultiassetMultiAssets'946 }855 }947 },856 },948 /**857 /**949 * Lookup86: xcm::v0::multi_asset::MultiAsset858 * Lookup83: xcm::v0::multi_asset::MultiAsset950 **/859 **/951 XcmV0MultiAsset: {860 XcmV0MultiAsset: {952 _enum: {861 _enum: {953 None: 'Null',862 None: 'Null',984 }893 }985 }894 }986 },895 },987 /**896 /**988 * Lookup87: xcm::v0::multi_location::MultiLocation897 * Lookup84: xcm::v0::multi_location::MultiLocation989 **/898 **/990 XcmV0MultiLocation: {899 XcmV0MultiLocation: {991 _enum: {900 _enum: {992 Null: 'Null',901 Null: 'Null',1000 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'909 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'1001 }910 }1002 },911 },1003 /**912 /**1004 * Lookup88: xcm::v0::junction::Junction913 * Lookup85: xcm::v0::junction::Junction1005 **/914 **/1006 XcmV0Junction: {915 XcmV0Junction: {1007 _enum: {916 _enum: {1008 Parent: 'Null',917 Parent: 'Null',1029 }938 }1030 }939 }1031 },940 },1032 /**941 /**1033 * Lookup89: xcm::VersionedMultiLocation942 * Lookup86: xcm::VersionedMultiLocation1034 **/943 **/1035 XcmVersionedMultiLocation: {944 XcmVersionedMultiLocation: {1036 _enum: {945 _enum: {1037 V0: 'XcmV0MultiLocation',946 V0: 'XcmV0MultiLocation',1038 V1: 'XcmV1MultiLocation'947 V1: 'XcmV1MultiLocation'1039 }948 }1040 },949 },1041 /**950 /**1042 * Lookup90: cumulus_pallet_xcm::pallet::Event<T>951 * Lookup87: cumulus_pallet_xcm::pallet::Event<T>1043 **/952 **/1044 CumulusPalletXcmEvent: {953 CumulusPalletXcmEvent: {1045 _enum: {954 _enum: {1046 InvalidFormat: '[u8;8]',955 InvalidFormat: '[u8;8]',1047 UnsupportedVersion: '[u8;8]',956 UnsupportedVersion: '[u8;8]',1048 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'957 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'1049 }958 }1050 },959 },1051 /**960 /**1052 * Lookup91: cumulus_pallet_dmp_queue::pallet::Event<T>961 * Lookup88: cumulus_pallet_dmp_queue::pallet::Event<T>1053 **/962 **/1054 CumulusPalletDmpQueueEvent: {963 CumulusPalletDmpQueueEvent: {1055 _enum: {964 _enum: {1056 InvalidFormat: {965 InvalidFormat: {1079 }988 }1080 }989 }1081 },990 },1082 /**991 /**1083 * Lookup92: pallet_configuration::pallet::Event<T>992 * Lookup89: pallet_configuration::pallet::Event<T>1084 **/993 **/1085 PalletConfigurationEvent: {994 PalletConfigurationEvent: {1086 _enum: {995 _enum: {1087 NewDesiredCollators: {996 NewDesiredCollators: {1095 }1004 }1096 }1005 }1097 },1006 },1098 /**1007 /**1099 * Lookup95: pallet_common::pallet::Event<T>1008 * Lookup92: pallet_common::pallet::Event<T>1100 **/1009 **/1101 PalletCommonEvent: {1010 PalletCommonEvent: {1102 _enum: {1011 _enum: {1103 CollectionCreated: '(u32,u8,AccountId32)',1012 CollectionCreated: '(u32,u8,AccountId32)',1124 CollectionSponsorRemoved: 'u32'1033 CollectionSponsorRemoved: 'u32'1125 }1034 }1126 },1035 },1127 /**1036 /**1128 * Lookup98: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1037 * Lookup95: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1129 **/1038 **/1130 PalletEvmAccountBasicCrossAccountIdRepr: {1039 PalletEvmAccountBasicCrossAccountIdRepr: {1131 _enum: {1040 _enum: {1132 Substrate: 'AccountId32',1041 Substrate: 'AccountId32',1133 Ethereum: 'H160'1042 Ethereum: 'H160'1134 }1043 }1135 },1044 },1136 /**1045 /**1137 * Lookup102: pallet_structure::pallet::Event<T>1046 * Lookup99: pallet_structure::pallet::Event<T>1138 **/1047 **/1139 PalletStructureEvent: {1048 PalletStructureEvent: {1140 _enum: {1049 _enum: {1141 Executed: 'Result<Null, SpRuntimeDispatchError>'1050 Executed: 'Result<Null, SpRuntimeDispatchError>'1142 }1051 }1143 },1052 },1144 /**1053 /**1145 * Lookup103: pallet_rmrk_core::pallet::Event<T>1054 * Lookup100: pallet_rmrk_core::pallet::Event<T>1146 **/1055 **/1147 PalletRmrkCoreEvent: {1056 PalletRmrkCoreEvent: {1148 _enum: {1057 _enum: {1149 CollectionCreated: {1058 CollectionCreated: {1218 }1127 }1219 }1128 }1220 },1129 },1221 /**1130 /**1222 * Lookup104: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1131 * Lookup101: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1223 **/1132 **/1224 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1133 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1225 _enum: {1134 _enum: {1226 AccountId: 'AccountId32',1135 AccountId: 'AccountId32',1227 CollectionAndNftTuple: '(u32,u32)'1136 CollectionAndNftTuple: '(u32,u32)'1228 }1137 }1229 },1138 },1230 /**1139 /**1231 * Lookup107: pallet_rmrk_equip::pallet::Event<T>1140 * Lookup104: pallet_rmrk_equip::pallet::Event<T>1232 **/1141 **/1233 PalletRmrkEquipEvent: {1142 PalletRmrkEquipEvent: {1234 _enum: {1143 _enum: {1235 BaseCreated: {1144 BaseCreated: {1242 }1151 }1243 }1152 }1244 },1153 },1245 /**1154 /**1246 * Lookup108: pallet_app_promotion::pallet::Event<T>1155 * Lookup105: pallet_app_promotion::pallet::Event<T>1247 **/1156 **/1248 PalletAppPromotionEvent: {1157 PalletAppPromotionEvent: {1249 _enum: {1158 _enum: {1250 StakingRecalculation: '(AccountId32,u128,u128)',1159 StakingRecalculation: '(AccountId32,u128,u128)',1253 SetAdmin: 'AccountId32'1162 SetAdmin: 'AccountId32'1254 }1163 }1255 },1164 },1256 /**1165 /**1257 * Lookup109: pallet_foreign_assets::module::Event<T>1166 * Lookup106: pallet_foreign_assets::module::Event<T>1258 **/1167 **/1259 PalletForeignAssetsModuleEvent: {1168 PalletForeignAssetsModuleEvent: {1260 _enum: {1169 _enum: {1261 ForeignAssetRegistered: {1170 ForeignAssetRegistered: {1278 }1187 }1279 }1188 }1280 },1189 },1281 /**1190 /**1282 * Lookup110: pallet_foreign_assets::module::AssetMetadata<Balance>1191 * Lookup107: pallet_foreign_assets::module::AssetMetadata<Balance>1283 **/1192 **/1284 PalletForeignAssetsModuleAssetMetadata: {1193 PalletForeignAssetsModuleAssetMetadata: {1285 name: 'Bytes',1194 name: 'Bytes',1286 symbol: 'Bytes',1195 symbol: 'Bytes',1287 decimals: 'u8',1196 decimals: 'u8',1288 minimalBalance: 'u128'1197 minimalBalance: 'u128'1289 },1198 },1290 /**1199 /**1291 * Lookup111: pallet_evm::pallet::Event<T>1200 * Lookup108: pallet_evm::pallet::Event<T>1292 **/1201 **/1293 PalletEvmEvent: {1202 PalletEvmEvent: {1294 _enum: {1203 _enum: {1295 Log: {1204 Log: {1309 }1218 }1310 }1219 }1311 },1220 },1312 /**1221 /**1313 * Lookup112: ethereum::log::Log1222 * Lookup109: ethereum::log::Log1314 **/1223 **/1315 EthereumLog: {1224 EthereumLog: {1316 address: 'H160',1225 address: 'H160',1317 topics: 'Vec<H256>',1226 topics: 'Vec<H256>',1318 data: 'Bytes'1227 data: 'Bytes'1319 },1228 },1320 /**1229 /**1321 * Lookup114: pallet_ethereum::pallet::Event1230 * Lookup111: pallet_ethereum::pallet::Event1322 **/1231 **/1323 PalletEthereumEvent: {1232 PalletEthereumEvent: {1324 _enum: {1233 _enum: {1325 Executed: {1234 Executed: {1330 }1239 }1331 }1240 }1332 },1241 },1333 /**1242 /**1334 * Lookup115: evm_core::error::ExitReason1243 * Lookup112: evm_core::error::ExitReason1335 **/1244 **/1336 EvmCoreErrorExitReason: {1245 EvmCoreErrorExitReason: {1337 _enum: {1246 _enum: {1338 Succeed: 'EvmCoreErrorExitSucceed',1247 Succeed: 'EvmCoreErrorExitSucceed',1341 Fatal: 'EvmCoreErrorExitFatal'1250 Fatal: 'EvmCoreErrorExitFatal'1342 }1251 }1343 },1252 },1344 /**1253 /**1345 * Lookup116: evm_core::error::ExitSucceed1254 * Lookup113: evm_core::error::ExitSucceed1346 **/1255 **/1347 EvmCoreErrorExitSucceed: {1256 EvmCoreErrorExitSucceed: {1348 _enum: ['Stopped', 'Returned', 'Suicided']1257 _enum: ['Stopped', 'Returned', 'Suicided']1349 },1258 },1350 /**1259 /**1351 * Lookup117: evm_core::error::ExitError1260 * Lookup114: evm_core::error::ExitError1352 **/1261 **/1353 EvmCoreErrorExitError: {1262 EvmCoreErrorExitError: {1354 _enum: {1263 _enum: {1355 StackUnderflow: 'Null',1264 StackUnderflow: 'Null',1369 InvalidCode: 'Null'1278 InvalidCode: 'Null'1370 }1279 }1371 },1280 },1372 /**1281 /**1373 * Lookup120: evm_core::error::ExitRevert1282 * Lookup117: evm_core::error::ExitRevert1374 **/1283 **/1375 EvmCoreErrorExitRevert: {1284 EvmCoreErrorExitRevert: {1376 _enum: ['Reverted']1285 _enum: ['Reverted']1377 },1286 },1378 /**1287 /**1379 * Lookup121: evm_core::error::ExitFatal1288 * Lookup118: evm_core::error::ExitFatal1380 **/1289 **/1381 EvmCoreErrorExitFatal: {1290 EvmCoreErrorExitFatal: {1382 _enum: {1291 _enum: {1383 NotSupported: 'Null',1292 NotSupported: 'Null',1386 Other: 'Text'1295 Other: 'Text'1387 }1296 }1388 },1297 },1389 /**1298 /**1390 * Lookup122: pallet_evm_contract_helpers::pallet::Event<T>1299 * Lookup119: pallet_evm_contract_helpers::pallet::Event<T>1391 **/1300 **/1392 PalletEvmContractHelpersEvent: {1301 PalletEvmContractHelpersEvent: {1393 _enum: {1302 _enum: {1394 ContractSponsorSet: '(H160,AccountId32)',1303 ContractSponsorSet: '(H160,AccountId32)',1395 ContractSponsorshipConfirmed: '(H160,AccountId32)',1304 ContractSponsorshipConfirmed: '(H160,AccountId32)',1396 ContractSponsorRemoved: 'H160'1305 ContractSponsorRemoved: 'H160'1397 }1306 }1398 },1307 },1399 /**1308 /**1400 * Lookup123: pallet_evm_migration::pallet::Event<T>1309 * Lookup120: pallet_evm_migration::pallet::Event<T>1401 **/1310 **/1402 PalletEvmMigrationEvent: {1311 PalletEvmMigrationEvent: {1403 _enum: ['TestEvent']1312 _enum: ['TestEvent']1404 },1313 },1405 /**1314 /**1406 * Lookup124: pallet_maintenance::pallet::Event<T>1315 * Lookup121: pallet_maintenance::pallet::Event<T>1407 **/1316 **/1408 PalletMaintenanceEvent: {1317 PalletMaintenanceEvent: {1409 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1318 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1410 },1319 },1411 /**1320 /**1412 * Lookup125: pallet_test_utils::pallet::Event<T>1321 * Lookup122: pallet_test_utils::pallet::Event<T>1413 **/1322 **/1414 PalletTestUtilsEvent: {1323 PalletTestUtilsEvent: {1415 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1324 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1416 },1325 },1417 /**1326 /**1418 * Lookup126: frame_system::Phase1327 * Lookup123: frame_system::Phase1419 **/1328 **/1420 FrameSystemPhase: {1329 FrameSystemPhase: {1421 _enum: {1330 _enum: {1422 ApplyExtrinsic: 'u32',1331 ApplyExtrinsic: 'u32',1423 Finalization: 'Null',1332 Finalization: 'Null',1424 Initialization: 'Null'1333 Initialization: 'Null'1425 }1334 }1426 },1335 },1427 /**1336 /**1428 * Lookup129: frame_system::LastRuntimeUpgradeInfo1337 * Lookup126: frame_system::LastRuntimeUpgradeInfo1429 **/1338 **/1430 FrameSystemLastRuntimeUpgradeInfo: {1339 FrameSystemLastRuntimeUpgradeInfo: {1431 specVersion: 'Compact<u32>',1340 specVersion: 'Compact<u32>',1432 specName: 'Text'1341 specName: 'Text'1433 },1342 },1434 /**1343 /**1435 * Lookup130: frame_system::pallet::Call<T>1344 * Lookup127: frame_system::pallet::Call<T>1436 **/1345 **/1437 FrameSystemCall: {1346 FrameSystemCall: {1438 _enum: {1347 _enum: {1439 remark: {1348 remark: {1466 }1375 }1467 }1376 }1468 },1377 },1469 /**1378 /**1470 * Lookup134: frame_system::limits::BlockWeights1379 * Lookup131: frame_system::limits::BlockWeights1471 **/1380 **/1472 FrameSystemLimitsBlockWeights: {1381 FrameSystemLimitsBlockWeights: {1473 baseBlock: 'SpWeightsWeightV2Weight',1382 baseBlock: 'SpWeightsWeightV2Weight',1474 maxBlock: 'SpWeightsWeightV2Weight',1383 maxBlock: 'SpWeightsWeightV2Weight',1475 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1384 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1476 },1385 },1477 /**1386 /**1478 * Lookup135: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1387 * Lookup132: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1479 **/1388 **/1480 FrameSupportDispatchPerDispatchClassWeightsPerClass: {1389 FrameSupportDispatchPerDispatchClassWeightsPerClass: {1481 normal: 'FrameSystemLimitsWeightsPerClass',1390 normal: 'FrameSystemLimitsWeightsPerClass',1482 operational: 'FrameSystemLimitsWeightsPerClass',1391 operational: 'FrameSystemLimitsWeightsPerClass',1483 mandatory: 'FrameSystemLimitsWeightsPerClass'1392 mandatory: 'FrameSystemLimitsWeightsPerClass'1484 },1393 },1485 /**1394 /**1486 * Lookup136: frame_system::limits::WeightsPerClass1395 * Lookup133: frame_system::limits::WeightsPerClass1487 **/1396 **/1488 FrameSystemLimitsWeightsPerClass: {1397 FrameSystemLimitsWeightsPerClass: {1489 baseExtrinsic: 'SpWeightsWeightV2Weight',1398 baseExtrinsic: 'SpWeightsWeightV2Weight',1490 maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1399 maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1491 maxTotal: 'Option<SpWeightsWeightV2Weight>',1400 maxTotal: 'Option<SpWeightsWeightV2Weight>',1492 reserved: 'Option<SpWeightsWeightV2Weight>'1401 reserved: 'Option<SpWeightsWeightV2Weight>'1493 },1402 },1494 /**1403 /**1495 * Lookup138: frame_system::limits::BlockLength1404 * Lookup135: frame_system::limits::BlockLength1496 **/1405 **/1497 FrameSystemLimitsBlockLength: {1406 FrameSystemLimitsBlockLength: {1498 max: 'FrameSupportDispatchPerDispatchClassU32'1407 max: 'FrameSupportDispatchPerDispatchClassU32'1499 },1408 },1500 /**1409 /**1501 * Lookup139: frame_support::dispatch::PerDispatchClass<T>1410 * Lookup136: frame_support::dispatch::PerDispatchClass<T>1502 **/1411 **/1503 FrameSupportDispatchPerDispatchClassU32: {1412 FrameSupportDispatchPerDispatchClassU32: {1504 normal: 'u32',1413 normal: 'u32',1505 operational: 'u32',1414 operational: 'u32',1506 mandatory: 'u32'1415 mandatory: 'u32'1507 },1416 },1508 /**1417 /**1509 * Lookup140: sp_weights::RuntimeDbWeight1418 * Lookup137: sp_weights::RuntimeDbWeight1510 **/1419 **/1511 SpWeightsRuntimeDbWeight: {1420 SpWeightsRuntimeDbWeight: {1512 read: 'u64',1421 read: 'u64',1513 write: 'u64'1422 write: 'u64'1514 },1423 },1515 /**1424 /**1516 * Lookup141: sp_version::RuntimeVersion1425 * Lookup138: sp_version::RuntimeVersion1517 **/1426 **/1518 SpVersionRuntimeVersion: {1427 SpVersionRuntimeVersion: {1519 specName: 'Text',1428 specName: 'Text',1520 implName: 'Text',1429 implName: 'Text',1525 transactionVersion: 'u32',1434 transactionVersion: 'u32',1526 stateVersion: 'u8'1435 stateVersion: 'u8'1527 },1436 },1528 /**1437 /**1529 * Lookup146: frame_system::pallet::Error<T>1438 * Lookup143: frame_system::pallet::Error<T>1530 **/1439 **/1531 FrameSystemError: {1440 FrameSystemError: {1532 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1441 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1533 },1442 },1534 /**1443 /**1535 * Lookup147: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1444 * Lookup144: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1536 **/1445 **/1537 PolkadotPrimitivesV2PersistedValidationData: {1446 PolkadotPrimitivesV2PersistedValidationData: {1538 parentHead: 'Bytes',1447 parentHead: 'Bytes',1539 relayParentNumber: 'u32',1448 relayParentNumber: 'u32',1540 relayParentStorageRoot: 'H256',1449 relayParentStorageRoot: 'H256',1541 maxPovSize: 'u32'1450 maxPovSize: 'u32'1542 },1451 },1543 /**1452 /**1544 * Lookup150: polkadot_primitives::v2::UpgradeRestriction1453 * Lookup147: polkadot_primitives::v2::UpgradeRestriction1545 **/1454 **/1546 PolkadotPrimitivesV2UpgradeRestriction: {1455 PolkadotPrimitivesV2UpgradeRestriction: {1547 _enum: ['Present']1456 _enum: ['Present']1548 },1457 },1549 /**1458 /**1550 * Lookup151: sp_trie::storage_proof::StorageProof1459 * Lookup148: sp_trie::storage_proof::StorageProof1551 **/1460 **/1552 SpTrieStorageProof: {1461 SpTrieStorageProof: {1553 trieNodes: 'BTreeSet<Bytes>'1462 trieNodes: 'BTreeSet<Bytes>'1554 },1463 },1555 /**1464 /**1556 * Lookup153: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1465 * Lookup150: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1557 **/1466 **/1558 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1467 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1559 dmqMqcHead: 'H256',1468 dmqMqcHead: 'H256',1560 relayDispatchQueueSize: '(u32,u32)',1469 relayDispatchQueueSize: '(u32,u32)',1561 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1470 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1562 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1471 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1563 },1472 },1564 /**1473 /**1565 * Lookup156: polkadot_primitives::v2::AbridgedHrmpChannel1474 * Lookup153: polkadot_primitives::v2::AbridgedHrmpChannel1566 **/1475 **/1567 PolkadotPrimitivesV2AbridgedHrmpChannel: {1476 PolkadotPrimitivesV2AbridgedHrmpChannel: {1568 maxCapacity: 'u32',1477 maxCapacity: 'u32',1569 maxTotalSize: 'u32',1478 maxTotalSize: 'u32',1572 totalSize: 'u32',1481 totalSize: 'u32',1573 mqcHead: 'Option<H256>'1482 mqcHead: 'Option<H256>'1574 },1483 },1575 /**1484 /**1576 * Lookup157: polkadot_primitives::v2::AbridgedHostConfiguration1485 * Lookup154: polkadot_primitives::v2::AbridgedHostConfiguration1577 **/1486 **/1578 PolkadotPrimitivesV2AbridgedHostConfiguration: {1487 PolkadotPrimitivesV2AbridgedHostConfiguration: {1579 maxCodeSize: 'u32',1488 maxCodeSize: 'u32',1580 maxHeadDataSize: 'u32',1489 maxHeadDataSize: 'u32',1586 validationUpgradeCooldown: 'u32',1495 validationUpgradeCooldown: 'u32',1587 validationUpgradeDelay: 'u32'1496 validationUpgradeDelay: 'u32'1588 },1497 },1589 /**1498 /**1590 * Lookup163: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1499 * Lookup160: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1591 **/1500 **/1592 PolkadotCorePrimitivesOutboundHrmpMessage: {1501 PolkadotCorePrimitivesOutboundHrmpMessage: {1593 recipient: 'u32',1502 recipient: 'u32',1594 data: 'Bytes'1503 data: 'Bytes'1595 },1504 },1596 /**1505 /**1597 * Lookup164: cumulus_pallet_parachain_system::pallet::Call<T>1506 * Lookup161: cumulus_pallet_parachain_system::pallet::Call<T>1598 **/1507 **/1599 CumulusPalletParachainSystemCall: {1508 CumulusPalletParachainSystemCall: {1600 _enum: {1509 _enum: {1601 set_validation_data: {1510 set_validation_data: {1612 }1521 }1613 }1522 }1614 },1523 },1615 /**1524 /**1616 * Lookup165: cumulus_primitives_parachain_inherent::ParachainInherentData1525 * Lookup162: cumulus_primitives_parachain_inherent::ParachainInherentData1617 **/1526 **/1618 CumulusPrimitivesParachainInherentParachainInherentData: {1527 CumulusPrimitivesParachainInherentParachainInherentData: {1619 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1528 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1620 relayChainState: 'SpTrieStorageProof',1529 relayChainState: 'SpTrieStorageProof',1621 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1530 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1622 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1531 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1623 },1532 },1624 /**1533 /**1625 * Lookup167: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1534 * Lookup164: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1626 **/1535 **/1627 PolkadotCorePrimitivesInboundDownwardMessage: {1536 PolkadotCorePrimitivesInboundDownwardMessage: {1628 sentAt: 'u32',1537 sentAt: 'u32',1629 msg: 'Bytes'1538 msg: 'Bytes'1630 },1539 },1631 /**1540 /**1632 * Lookup170: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1541 * Lookup167: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1633 **/1542 **/1634 PolkadotCorePrimitivesInboundHrmpMessage: {1543 PolkadotCorePrimitivesInboundHrmpMessage: {1635 sentAt: 'u32',1544 sentAt: 'u32',1636 data: 'Bytes'1545 data: 'Bytes'1637 },1546 },1638 /**1547 /**1639 * Lookup173: cumulus_pallet_parachain_system::pallet::Error<T>1548 * Lookup170: cumulus_pallet_parachain_system::pallet::Error<T>1640 **/1549 **/1641 CumulusPalletParachainSystemError: {1550 CumulusPalletParachainSystemError: {1642 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1551 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1643 },1552 },1644 /**1645 * Lookup175: pallet_authorship::UncleEntryItem<BlockNumber, primitive_types::H256, sp_core::crypto::AccountId32>1646 **/1647 PalletAuthorshipUncleEntryItem: {1648 _enum: {1649 InclusionHeight: 'u32',1650 Uncle: '(H256,Option<AccountId32>)'1651 }1652 },1653 /**1654 * Lookup177: pallet_authorship::pallet::Call<T>1655 **/1656 PalletAuthorshipCall: {1657 _enum: {1658 set_uncles: {1659 newUncles: 'Vec<SpRuntimeHeader>'1660 }1661 }1662 },1663 /**1664 * Lookup179: sp_runtime::generic::header::Header<Number, sp_runtime::traits::BlakeTwo256>1665 **/1666 SpRuntimeHeader: {1667 parentHash: 'H256',1668 number: 'Compact<u32>',1669 stateRoot: 'H256',1670 extrinsicsRoot: 'H256',1671 digest: 'SpRuntimeDigest'1672 },1673 /**1674 * Lookup180: sp_runtime::traits::BlakeTwo2561675 **/1676 SpRuntimeBlakeTwo256: 'Null',1677 /**1678 * Lookup181: pallet_authorship::pallet::Error<T>1679 **/1680 PalletAuthorshipError: {1681 _enum: ['InvalidUncleParent', 'UnclesAlreadySet', 'TooManyUncles', 'GenesisUncle', 'TooHighUncle', 'UncleAlreadyIncluded', 'OldUncle']1682 },1683 /**1684 * Lookup184: pallet_collator_selection::pallet::Call<T>1685 **/1686 PalletCollatorSelectionCall: {1687 _enum: {1688 add_invulnerable: {1689 _alias: {1690 new_: 'new',1691 },1692 new_: 'AccountId32',1693 },1694 remove_invulnerable: {1695 who: 'AccountId32',1696 },1697 get_license: 'Null',1698 onboard: 'Null',1699 offboard: 'Null',1700 release_license: 'Null',1701 force_release_license: {1702 who: 'AccountId32'1703 }1704 }1705 },1706 /**1707 * Lookup185: pallet_collator_selection::pallet::Error<T>1708 **/1709 PalletCollatorSelectionError: {1710 _enum: ['TooManyCandidates', 'Unknown', 'Permission', 'AlreadyHoldingLicense', 'NoLicense', 'AlreadyCandidate', 'NotCandidate', 'TooManyInvulnerables', 'TooFewInvulnerables', 'AlreadyInvulnerable', 'NotInvulnerable', 'NoAssociatedValidatorId', 'ValidatorNotRegistered']1711 },1712 /**1713 * Lookup188: opal_runtime::runtime_common::SessionKeys1714 **/1715 OpalRuntimeRuntimeCommonSessionKeys: {1716 aura: 'SpConsensusAuraSr25519AppSr25519Public'1717 },1718 /**1719 * Lookup189: sp_consensus_aura::sr25519::app_sr25519::Public1720 **/1721 SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',1722 /**1723 * Lookup190: sp_core::sr25519::Public1724 **/1725 SpCoreSr25519Public: '[u8;32]',1726 /**1727 * Lookup193: sp_core::crypto::KeyTypeId1728 **/1729 SpCoreCryptoKeyTypeId: '[u8;4]',1730 /**1731 * Lookup194: pallet_session::pallet::Call<T>1732 **/1733 PalletSessionCall: {1734 _enum: {1735 set_keys: {1736 _alias: {1737 keys_: 'keys',1738 },1739 keys_: 'OpalRuntimeRuntimeCommonSessionKeys',1740 proof: 'Bytes',1741 },1742 purge_keys: 'Null'1743 }1744 },1745 /**1746 * Lookup195: pallet_session::pallet::Error<T>1747 **/1748 PalletSessionError: {1749 _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']1750 },1751 /**1752 * Lookup196: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>1753 **/1754 PalletIdentityRegistration: {1755 judgements: 'Vec<(u32,PalletIdentityJudgement)>',1756 deposit: 'u128',1757 info: 'PalletIdentityIdentityInfo'1758 },1759 /**1760 * Lookup199: pallet_identity::types::Judgement<Balance>1761 **/1762 PalletIdentityJudgement: {1763 _enum: {1764 Unknown: 'Null',1765 FeePaid: 'u128',1766 Reasonable: 'Null',1767 KnownGood: 'Null',1768 OutOfDate: 'Null',1769 LowQuality: 'Null',1770 Erroneous: 'Null'1771 }1772 },1773 /**1774 * Lookup201: pallet_identity::types::IdentityInfo<FieldLimit>1775 **/1776 PalletIdentityIdentityInfo: {1777 additional: 'Vec<(Data,Data)>',1778 display: 'Data',1779 legal: 'Data',1780 web: 'Data',1781 riot: 'Data',1782 email: 'Data',1783 pgpFingerprint: 'Option<[u8;20]>',1784 image: 'Data',1785 twitter: 'Data'1786 },1787 /**1788 * Lookup240: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>1789 **/1790 PalletIdentityRegistrarInfo: {1791 account: 'AccountId32',1792 fee: 'u128',1793 fields: 'PalletIdentityBitFlags'1794 },1795 /**1796 * Lookup241: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>1797 **/1798 PalletIdentityBitFlags: {1799 _bitLength: 64,1800 Display: 1,1801 Legal: 2,1802 Web: 4,1803 Riot: 8,1804 Email: 16,1805 PgpFingerprint: 32,1806 Image: 64,1807 Twitter: 1281808 },1809 /**1810 * Lookup242: pallet_identity::types::IdentityField1811 **/1812 PalletIdentityIdentityField: {1813 _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']1814 },1815 /**1816 * Lookup244: pallet_identity::pallet::Call<T>1817 **/1818 PalletIdentityCall: {1819 _enum: {1820 add_registrar: {1821 account: 'MultiAddress',1822 },1823 set_identity: {1824 info: 'PalletIdentityIdentityInfo',1825 },1826 set_subs: {1827 subs: 'Vec<(AccountId32,Data)>',1828 },1829 clear_identity: 'Null',1830 request_judgement: {1831 regIndex: 'Compact<u32>',1832 maxFee: 'Compact<u128>',1833 },1834 cancel_request: {1835 regIndex: 'u32',1836 },1837 set_fee: {1838 index: 'Compact<u32>',1839 fee: 'Compact<u128>',1840 },1841 set_account_id: {1842 _alias: {1843 new_: 'new',1844 },1845 index: 'Compact<u32>',1846 new_: 'MultiAddress',1847 },1848 set_fields: {1849 index: 'Compact<u32>',1850 fields: 'PalletIdentityBitFlags',1851 },1852 provide_judgement: {1853 regIndex: 'Compact<u32>',1854 target: 'MultiAddress',1855 judgement: 'PalletIdentityJudgement',1856 identity: 'H256',1857 },1858 kill_identity: {1859 target: 'MultiAddress',1860 },1861 add_sub: {1862 sub: 'MultiAddress',1863 data: 'Data',1864 },1865 rename_sub: {1866 sub: 'MultiAddress',1867 data: 'Data',1868 },1869 remove_sub: {1870 sub: 'MultiAddress',1871 },1872 quit_sub: 'Null',1873 force_insert_identities: {1874 identities: 'Vec<(AccountId32,PalletIdentityRegistration)>',1875 },1876 force_remove_identities: {1877 identities: 'Vec<AccountId32>'1878 }1879 }1880 },1881 /**1882 * Lookup250: pallet_identity::pallet::Error<T>1883 **/1884 PalletIdentityError: {1885 _enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyFields', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed']1886 },1887 /**1553 /**1888 * Lookup252: pallet_balances::BalanceLock<Balance>1554 * Lookup172: pallet_balances::BalanceLock<Balance>1889 **/1555 **/1890 PalletBalancesBalanceLock: {1556 PalletBalancesBalanceLock: {1891 id: '[u8;8]',1557 id: '[u8;8]',1892 amount: 'u128',1558 amount: 'u128',1893 reasons: 'PalletBalancesReasons'1559 reasons: 'PalletBalancesReasons'1894 },1560 },1895 /**1561 /**1896 * Lookup253: pallet_balances::Reasons1562 * Lookup173: pallet_balances::Reasons1897 **/1563 **/1898 PalletBalancesReasons: {1564 PalletBalancesReasons: {1899 _enum: ['Fee', 'Misc', 'All']1565 _enum: ['Fee', 'Misc', 'All']1900 },1566 },1901 /**1567 /**1902 * Lookup256: pallet_balances::ReserveData<ReserveIdentifier, Balance>1568 * Lookup176: pallet_balances::ReserveData<ReserveIdentifier, Balance>1903 **/1569 **/1904 PalletBalancesReserveData: {1570 PalletBalancesReserveData: {1905 id: '[u8;16]',1571 id: '[u8;16]',1906 amount: 'u128'1572 amount: 'u128'1907 },1573 },1908 /**1574 /**1909 * Lookup258: pallet_balances::pallet::Call<T, I>1575 * Lookup178: pallet_balances::pallet::Call<T, I>1910 **/1576 **/1911 PalletBalancesCall: {1577 PalletBalancesCall: {1912 _enum: {1578 _enum: {1913 transfer: {1579 transfer: {1938 }1604 }1939 }1605 }1940 },1606 },1941 /**1607 /**1942 * Lookup259: pallet_balances::pallet::Error<T, I>1608 * Lookup181: pallet_balances::pallet::Error<T, I>1943 **/1609 **/1944 PalletBalancesError: {1610 PalletBalancesError: {1945 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1611 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1946 },1612 },1947 /**1613 /**1948 * Lookup261: pallet_timestamp::pallet::Call<T>1614 * Lookup183: pallet_timestamp::pallet::Call<T>1949 **/1615 **/1950 PalletTimestampCall: {1616 PalletTimestampCall: {1951 _enum: {1617 _enum: {1952 set: {1618 set: {1953 now: 'Compact<u64>'1619 now: 'Compact<u64>'1954 }1620 }1955 }1621 }1956 },1622 },1957 /**1623 /**1958 * Lookup263: pallet_transaction_payment::Releases1624 * Lookup185: pallet_transaction_payment::Releases1959 **/1625 **/1960 PalletTransactionPaymentReleases: {1626 PalletTransactionPaymentReleases: {1961 _enum: ['V1Ancient', 'V2']1627 _enum: ['V1Ancient', 'V2']1962 },1628 },1963 /**1629 /**1964 * Lookup264: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1630 * Lookup186: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1965 **/1631 **/1966 PalletTreasuryProposal: {1632 PalletTreasuryProposal: {1967 proposer: 'AccountId32',1633 proposer: 'AccountId32',1968 value: 'u128',1634 value: 'u128',1969 beneficiary: 'AccountId32',1635 beneficiary: 'AccountId32',1970 bond: 'u128'1636 bond: 'u128'1971 },1637 },1972 /**1638 /**1973 * Lookup266: pallet_treasury::pallet::Call<T, I>1639 * Lookup189: pallet_treasury::pallet::Call<T, I>1974 **/1640 **/1975 PalletTreasuryCall: {1641 PalletTreasuryCall: {1976 _enum: {1642 _enum: {1977 propose_spend: {1643 propose_spend: {1993 }1659 }1994 }1660 }1995 },1661 },1996 /**1662 /**1997 * Lookup268: frame_support::PalletId1663 * Lookup191: frame_support::PalletId1998 **/1664 **/1999 FrameSupportPalletId: '[u8;8]',1665 FrameSupportPalletId: '[u8;8]',2000 /**1666 /**2001 * Lookup269: pallet_treasury::pallet::Error<T, I>1667 * Lookup192: pallet_treasury::pallet::Error<T, I>2002 **/1668 **/2003 PalletTreasuryError: {1669 PalletTreasuryError: {2004 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1670 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']2005 },1671 },2006 /**1672 /**2007 * Lookup270: pallet_sudo::pallet::Call<T>1673 * Lookup193: pallet_sudo::pallet::Call<T>2008 **/1674 **/2009 PalletSudoCall: {1675 PalletSudoCall: {2010 _enum: {1676 _enum: {2011 sudo: {1677 sudo: {2027 }1693 }2028 }1694 }2029 },1695 },2030 /**1696 /**2031 * Lookup272: orml_vesting::module::Call<T>1697 * Lookup195: orml_vesting::module::Call<T>2032 **/1698 **/2033 OrmlVestingModuleCall: {1699 OrmlVestingModuleCall: {2034 _enum: {1700 _enum: {2035 claim: 'Null',1701 claim: 'Null',2046 }1712 }2047 }1713 }2048 },1714 },2049 /**1715 /**2050 * Lookup274: orml_xtokens::module::Call<T>1716 * Lookup197: orml_xtokens::module::Call<T>2051 **/1717 **/2052 OrmlXtokensModuleCall: {1718 OrmlXtokensModuleCall: {2053 _enum: {1719 _enum: {2054 transfer: {1720 transfer: {2089 }1755 }2090 }1756 }2091 },1757 },2092 /**1758 /**2093 * Lookup275: xcm::VersionedMultiAsset1759 * Lookup198: xcm::VersionedMultiAsset2094 **/1760 **/2095 XcmVersionedMultiAsset: {1761 XcmVersionedMultiAsset: {2096 _enum: {1762 _enum: {2097 V0: 'XcmV0MultiAsset',1763 V0: 'XcmV0MultiAsset',2098 V1: 'XcmV1MultiAsset'1764 V1: 'XcmV1MultiAsset'2099 }1765 }2100 },1766 },2101 /**1767 /**2102 * Lookup278: orml_tokens::module::Call<T>1768 * Lookup201: orml_tokens::module::Call<T>2103 **/1769 **/2104 OrmlTokensModuleCall: {1770 OrmlTokensModuleCall: {2105 _enum: {1771 _enum: {2106 transfer: {1772 transfer: {2132 }1798 }2133 }1799 }2134 },1800 },2135 /**1801 /**2136 * Lookup279: cumulus_pallet_xcmp_queue::pallet::Call<T>1802 * Lookup202: cumulus_pallet_xcmp_queue::pallet::Call<T>2137 **/1803 **/2138 CumulusPalletXcmpQueueCall: {1804 CumulusPalletXcmpQueueCall: {2139 _enum: {1805 _enum: {2140 service_overweight: {1806 service_overweight: {2181 }1847 }2182 }1848 }2183 },1849 },2184 /**1850 /**2185 * Lookup280: pallet_xcm::pallet::Call<T>1851 * Lookup203: pallet_xcm::pallet::Call<T>2186 **/1852 **/2187 PalletXcmCall: {1853 PalletXcmCall: {2188 _enum: {1854 _enum: {2189 send: {1855 send: {2235 }1901 }2236 }1902 }2237 },1903 },2238 /**1904 /**2239 * Lookup281: xcm::VersionedXcm<RuntimeCall>1905 * Lookup204: xcm::VersionedXcm<RuntimeCall>2240 **/1906 **/2241 XcmVersionedXcm: {1907 XcmVersionedXcm: {2242 _enum: {1908 _enum: {2243 V0: 'XcmV0Xcm',1909 V0: 'XcmV0Xcm',2244 V1: 'XcmV1Xcm',1910 V1: 'XcmV1Xcm',2245 V2: 'XcmV2Xcm'1911 V2: 'XcmV2Xcm'2246 }1912 }2247 },1913 },2248 /**1914 /**2249 * Lookup282: xcm::v0::Xcm<RuntimeCall>1915 * Lookup205: xcm::v0::Xcm<RuntimeCall>2250 **/1916 **/2251 XcmV0Xcm: {1917 XcmV0Xcm: {2252 _enum: {1918 _enum: {2253 WithdrawAsset: {1919 WithdrawAsset: {2299 }1965 }2300 }1966 }2301 },1967 },2302 /**1968 /**2303 * Lookup284: xcm::v0::order::Order<RuntimeCall>1969 * Lookup207: xcm::v0::order::Order<RuntimeCall>2304 **/1970 **/2305 XcmV0Order: {1971 XcmV0Order: {2306 _enum: {1972 _enum: {2307 Null: 'Null',1973 Null: 'Null',2342 }2008 }2343 }2009 }2344 },2010 },2345 /**2011 /**2346 * Lookup286: xcm::v0::Response2012 * Lookup209: xcm::v0::Response2347 **/2013 **/2348 XcmV0Response: {2014 XcmV0Response: {2349 _enum: {2015 _enum: {2350 Assets: 'Vec<XcmV0MultiAsset>'2016 Assets: 'Vec<XcmV0MultiAsset>'2351 }2017 }2352 },2018 },2353 /**2019 /**2354 * Lookup287: xcm::v1::Xcm<RuntimeCall>2020 * Lookup210: xcm::v1::Xcm<RuntimeCall>2355 **/2021 **/2356 XcmV1Xcm: {2022 XcmV1Xcm: {2357 _enum: {2023 _enum: {2358 WithdrawAsset: {2024 WithdrawAsset: {2409 UnsubscribeVersion: 'Null'2075 UnsubscribeVersion: 'Null'2410 }2076 }2411 },2077 },2412 /**2078 /**2413 * Lookup289: xcm::v1::order::Order<RuntimeCall>2079 * Lookup212: xcm::v1::order::Order<RuntimeCall>2414 **/2080 **/2415 XcmV1Order: {2081 XcmV1Order: {2416 _enum: {2082 _enum: {2417 Noop: 'Null',2083 Noop: 'Null',2454 }2120 }2455 }2121 }2456 },2122 },2457 /**2123 /**2458 * Lookup291: xcm::v1::Response2124 * Lookup214: xcm::v1::Response2459 **/2125 **/2460 XcmV1Response: {2126 XcmV1Response: {2461 _enum: {2127 _enum: {2462 Assets: 'XcmV1MultiassetMultiAssets',2128 Assets: 'XcmV1MultiassetMultiAssets',2463 Version: 'u32'2129 Version: 'u32'2464 }2130 }2465 },2131 },2466 /**2132 /**2467 * Lookup305: cumulus_pallet_xcm::pallet::Call<T>2133 * Lookup228: cumulus_pallet_xcm::pallet::Call<T>2468 **/2134 **/2469 CumulusPalletXcmCall: 'Null',2135 CumulusPalletXcmCall: 'Null',2470 /**2136 /**2471 * Lookup306: cumulus_pallet_dmp_queue::pallet::Call<T>2137 * Lookup229: cumulus_pallet_dmp_queue::pallet::Call<T>2472 **/2138 **/2473 CumulusPalletDmpQueueCall: {2139 CumulusPalletDmpQueueCall: {2474 _enum: {2140 _enum: {2475 service_overweight: {2141 service_overweight: {2478 }2144 }2479 }2145 }2480 },2146 },2481 /**2147 /**2482 * Lookup307: pallet_inflation::pallet::Call<T>2148 * Lookup230: pallet_inflation::pallet::Call<T>2483 **/2149 **/2484 PalletInflationCall: {2150 PalletInflationCall: {2485 _enum: {2151 _enum: {2486 start_inflation: {2152 start_inflation: {2487 inflationStartRelayBlock: 'u32'2153 inflationStartRelayBlock: 'u32'2488 }2154 }2489 }2155 }2490 },2156 },2491 /**2157 /**2492 * Lookup308: pallet_unique::Call<T>2158 * Lookup231: pallet_unique::Call<T>2493 **/2159 **/2494 PalletUniqueCall: {2160 PalletUniqueCall: {2495 _enum: {2161 _enum: {2496 create_collection: {2162 create_collection: {2632 }2298 }2633 }2299 }2634 },2300 },2635 /**2301 /**2636 * Lookup313: up_data_structs::CollectionMode2302 * Lookup236: up_data_structs::CollectionMode2637 **/2303 **/2638 UpDataStructsCollectionMode: {2304 UpDataStructsCollectionMode: {2639 _enum: {2305 _enum: {2640 NFT: 'Null',2306 NFT: 'Null',2641 Fungible: 'u8',2307 Fungible: 'u8',2642 ReFungible: 'Null'2308 ReFungible: 'Null'2643 }2309 }2644 },2310 },2645 /**2311 /**2646 * Lookup314: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2312 * Lookup237: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2647 **/2313 **/2648 UpDataStructsCreateCollectionData: {2314 UpDataStructsCreateCollectionData: {2649 mode: 'UpDataStructsCollectionMode',2315 mode: 'UpDataStructsCollectionMode',2650 access: 'Option<UpDataStructsAccessMode>',2316 access: 'Option<UpDataStructsAccessMode>',2657 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2323 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2658 properties: 'Vec<UpDataStructsProperty>'2324 properties: 'Vec<UpDataStructsProperty>'2659 },2325 },2660 /**2326 /**2661 * Lookup316: up_data_structs::AccessMode2327 * Lookup239: up_data_structs::AccessMode2662 **/2328 **/2663 UpDataStructsAccessMode: {2329 UpDataStructsAccessMode: {2664 _enum: ['Normal', 'AllowList']2330 _enum: ['Normal', 'AllowList']2665 },2331 },2666 /**2332 /**2667 * Lookup318: up_data_structs::CollectionLimits2333 * Lookup241: up_data_structs::CollectionLimits2668 **/2334 **/2669 UpDataStructsCollectionLimits: {2335 UpDataStructsCollectionLimits: {2670 accountTokenOwnershipLimit: 'Option<u32>',2336 accountTokenOwnershipLimit: 'Option<u32>',2671 sponsoredDataSize: 'Option<u32>',2337 sponsoredDataSize: 'Option<u32>',2677 ownerCanDestroy: 'Option<bool>',2343 ownerCanDestroy: 'Option<bool>',2678 transfersEnabled: 'Option<bool>'2344 transfersEnabled: 'Option<bool>'2679 },2345 },2680 /**2346 /**2681 * Lookup320: up_data_structs::SponsoringRateLimit2347 * Lookup243: up_data_structs::SponsoringRateLimit2682 **/2348 **/2683 UpDataStructsSponsoringRateLimit: {2349 UpDataStructsSponsoringRateLimit: {2684 _enum: {2350 _enum: {2685 SponsoringDisabled: 'Null',2351 SponsoringDisabled: 'Null',2686 Blocks: 'u32'2352 Blocks: 'u32'2687 }2353 }2688 },2354 },2689 /**2355 /**2690 * Lookup323: up_data_structs::CollectionPermissions2356 * Lookup246: up_data_structs::CollectionPermissions2691 **/2357 **/2692 UpDataStructsCollectionPermissions: {2358 UpDataStructsCollectionPermissions: {2693 access: 'Option<UpDataStructsAccessMode>',2359 access: 'Option<UpDataStructsAccessMode>',2694 mintMode: 'Option<bool>',2360 mintMode: 'Option<bool>',2695 nesting: 'Option<UpDataStructsNestingPermissions>'2361 nesting: 'Option<UpDataStructsNestingPermissions>'2696 },2362 },2697 /**2363 /**2698 * Lookup325: up_data_structs::NestingPermissions2364 * Lookup248: up_data_structs::NestingPermissions2699 **/2365 **/2700 UpDataStructsNestingPermissions: {2366 UpDataStructsNestingPermissions: {2701 tokenOwner: 'bool',2367 tokenOwner: 'bool',2702 collectionAdmin: 'bool',2368 collectionAdmin: 'bool',2703 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2369 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2704 },2370 },2705 /**2371 /**2706 * Lookup327: up_data_structs::OwnerRestrictedSet2372 * Lookup250: up_data_structs::OwnerRestrictedSet2707 **/2373 **/2708 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2374 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2709 /**2375 /**2710 * Lookup332: up_data_structs::PropertyKeyPermission2376 * Lookup255: up_data_structs::PropertyKeyPermission2711 **/2377 **/2712 UpDataStructsPropertyKeyPermission: {2378 UpDataStructsPropertyKeyPermission: {2713 key: 'Bytes',2379 key: 'Bytes',2714 permission: 'UpDataStructsPropertyPermission'2380 permission: 'UpDataStructsPropertyPermission'2715 },2381 },2716 /**2382 /**2717 * Lookup333: up_data_structs::PropertyPermission2383 * Lookup256: up_data_structs::PropertyPermission2718 **/2384 **/2719 UpDataStructsPropertyPermission: {2385 UpDataStructsPropertyPermission: {2720 mutable: 'bool',2386 mutable: 'bool',2721 collectionAdmin: 'bool',2387 collectionAdmin: 'bool',2722 tokenOwner: 'bool'2388 tokenOwner: 'bool'2723 },2389 },2724 /**2390 /**2725 * Lookup336: up_data_structs::Property2391 * Lookup259: up_data_structs::Property2726 **/2392 **/2727 UpDataStructsProperty: {2393 UpDataStructsProperty: {2728 key: 'Bytes',2394 key: 'Bytes',2729 value: 'Bytes'2395 value: 'Bytes'2730 },2396 },2731 /**2397 /**2732 * Lookup339: up_data_structs::CreateItemData2398 * Lookup262: up_data_structs::CreateItemData2733 **/2399 **/2734 UpDataStructsCreateItemData: {2400 UpDataStructsCreateItemData: {2735 _enum: {2401 _enum: {2736 NFT: 'UpDataStructsCreateNftData',2402 NFT: 'UpDataStructsCreateNftData',2737 Fungible: 'UpDataStructsCreateFungibleData',2403 Fungible: 'UpDataStructsCreateFungibleData',2738 ReFungible: 'UpDataStructsCreateReFungibleData'2404 ReFungible: 'UpDataStructsCreateReFungibleData'2739 }2405 }2740 },2406 },2741 /**2407 /**2742 * Lookup340: up_data_structs::CreateNftData2408 * Lookup263: up_data_structs::CreateNftData2743 **/2409 **/2744 UpDataStructsCreateNftData: {2410 UpDataStructsCreateNftData: {2745 properties: 'Vec<UpDataStructsProperty>'2411 properties: 'Vec<UpDataStructsProperty>'2746 },2412 },2747 /**2413 /**2748 * Lookup341: up_data_structs::CreateFungibleData2414 * Lookup264: up_data_structs::CreateFungibleData2749 **/2415 **/2750 UpDataStructsCreateFungibleData: {2416 UpDataStructsCreateFungibleData: {2751 value: 'u128'2417 value: 'u128'2752 },2418 },2753 /**2419 /**2754 * Lookup342: up_data_structs::CreateReFungibleData2420 * Lookup265: up_data_structs::CreateReFungibleData2755 **/2421 **/2756 UpDataStructsCreateReFungibleData: {2422 UpDataStructsCreateReFungibleData: {2757 pieces: 'u128',2423 pieces: 'u128',2758 properties: 'Vec<UpDataStructsProperty>'2424 properties: 'Vec<UpDataStructsProperty>'2759 },2425 },2760 /**2426 /**2761 * Lookup345: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2427 * Lookup268: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2762 **/2428 **/2763 UpDataStructsCreateItemExData: {2429 UpDataStructsCreateItemExData: {2764 _enum: {2430 _enum: {2765 NFT: 'Vec<UpDataStructsCreateNftExData>',2431 NFT: 'Vec<UpDataStructsCreateNftExData>',2768 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2434 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2769 }2435 }2770 },2436 },2771 /**2437 /**2772 * Lookup347: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2438 * Lookup270: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2773 **/2439 **/2774 UpDataStructsCreateNftExData: {2440 UpDataStructsCreateNftExData: {2775 properties: 'Vec<UpDataStructsProperty>',2441 properties: 'Vec<UpDataStructsProperty>',2776 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2442 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2777 },2443 },2778 /**2444 /**2779 * Lookup354: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2445 * Lookup277: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2780 **/2446 **/2781 UpDataStructsCreateRefungibleExSingleOwner: {2447 UpDataStructsCreateRefungibleExSingleOwner: {2782 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2448 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2783 pieces: 'u128',2449 pieces: 'u128',2784 properties: 'Vec<UpDataStructsProperty>'2450 properties: 'Vec<UpDataStructsProperty>'2785 },2451 },2786 /**2452 /**2787 * Lookup356: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2453 * Lookup279: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2788 **/2454 **/2789 UpDataStructsCreateRefungibleExMultipleOwners: {2455 UpDataStructsCreateRefungibleExMultipleOwners: {2790 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2456 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2791 properties: 'Vec<UpDataStructsProperty>'2457 properties: 'Vec<UpDataStructsProperty>'2792 },2458 },2793 /**2459 /**2794 * Lookup357: pallet_configuration::pallet::Call<T>2460 * Lookup280: pallet_configuration::pallet::Call<T>2795 **/2461 **/2796 PalletConfigurationCall: {2462 PalletConfigurationCall: {2797 _enum: {2463 _enum: {2798 set_weight_to_fee_coefficient_override: {2464 set_weight_to_fee_coefficient_override: {2818 }2484 }2819 }2485 }2820 },2486 },2821 /**2487 /**2822 * Lookup362: pallet_configuration::AppPromotionConfiguration<BlockNumber>2488 * Lookup285: pallet_configuration::AppPromotionConfiguration<BlockNumber>2823 **/2489 **/2824 PalletConfigurationAppPromotionConfiguration: {2490 PalletConfigurationAppPromotionConfiguration: {2825 recalculationInterval: 'Option<u32>',2491 recalculationInterval: 'Option<u32>',2826 pendingInterval: 'Option<u32>',2492 pendingInterval: 'Option<u32>',2827 intervalIncome: 'Option<Perbill>',2493 intervalIncome: 'Option<Perbill>',2828 maxStakersPerCalculation: 'Option<u8>'2494 maxStakersPerCalculation: 'Option<u8>'2829 },2495 },2830 /**2496 /**2831 * Lookup366: pallet_template_transaction_payment::Call<T>2497 * Lookup289: pallet_template_transaction_payment::Call<T>2832 **/2498 **/2833 PalletTemplateTransactionPaymentCall: 'Null',2499 PalletTemplateTransactionPaymentCall: 'Null',2834 /**2500 /**2835 * Lookup367: pallet_structure::pallet::Call<T>2501 * Lookup290: pallet_structure::pallet::Call<T>2836 **/2502 **/2837 PalletStructureCall: 'Null',2503 PalletStructureCall: 'Null',2838 /**2504 /**2839 * Lookup368: pallet_rmrk_core::pallet::Call<T>2505 * Lookup291: pallet_rmrk_core::pallet::Call<T>2840 **/2506 **/2841 PalletRmrkCoreCall: {2507 PalletRmrkCoreCall: {2842 _enum: {2508 _enum: {2843 create_collection: {2509 create_collection: {2926 }2592 }2927 }2593 }2928 },2594 },2929 /**2595 /**2930 * Lookup374: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2596 * Lookup297: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2931 **/2597 **/2932 RmrkTraitsResourceResourceTypes: {2598 RmrkTraitsResourceResourceTypes: {2933 _enum: {2599 _enum: {2934 Basic: 'RmrkTraitsResourceBasicResource',2600 Basic: 'RmrkTraitsResourceBasicResource',2935 Composable: 'RmrkTraitsResourceComposableResource',2601 Composable: 'RmrkTraitsResourceComposableResource',2936 Slot: 'RmrkTraitsResourceSlotResource'2602 Slot: 'RmrkTraitsResourceSlotResource'2937 }2603 }2938 },2604 },2939 /**2605 /**2940 * Lookup376: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2606 * Lookup299: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2941 **/2607 **/2942 RmrkTraitsResourceBasicResource: {2608 RmrkTraitsResourceBasicResource: {2943 src: 'Option<Bytes>',2609 src: 'Option<Bytes>',2944 metadata: 'Option<Bytes>',2610 metadata: 'Option<Bytes>',2945 license: 'Option<Bytes>',2611 license: 'Option<Bytes>',2946 thumb: 'Option<Bytes>'2612 thumb: 'Option<Bytes>'2947 },2613 },2948 /**2614 /**2949 * Lookup378: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2615 * Lookup301: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2950 **/2616 **/2951 RmrkTraitsResourceComposableResource: {2617 RmrkTraitsResourceComposableResource: {2952 parts: 'Vec<u32>',2618 parts: 'Vec<u32>',2953 base: 'u32',2619 base: 'u32',2956 license: 'Option<Bytes>',2622 license: 'Option<Bytes>',2957 thumb: 'Option<Bytes>'2623 thumb: 'Option<Bytes>'2958 },2624 },2959 /**2625 /**2960 * Lookup379: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2626 * Lookup302: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2961 **/2627 **/2962 RmrkTraitsResourceSlotResource: {2628 RmrkTraitsResourceSlotResource: {2963 base: 'u32',2629 base: 'u32',2964 src: 'Option<Bytes>',2630 src: 'Option<Bytes>',2967 license: 'Option<Bytes>',2633 license: 'Option<Bytes>',2968 thumb: 'Option<Bytes>'2634 thumb: 'Option<Bytes>'2969 },2635 },2970 /**2636 /**2971 * Lookup382: pallet_rmrk_equip::pallet::Call<T>2637 * Lookup305: pallet_rmrk_equip::pallet::Call<T>2972 **/2638 **/2973 PalletRmrkEquipCall: {2639 PalletRmrkEquipCall: {2974 _enum: {2640 _enum: {2975 create_base: {2641 create_base: {2988 }2654 }2989 }2655 }2990 },2656 },2991 /**2657 /**2992 * Lookup385: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2658 * Lookup308: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2993 **/2659 **/2994 RmrkTraitsPartPartType: {2660 RmrkTraitsPartPartType: {2995 _enum: {2661 _enum: {2996 FixedPart: 'RmrkTraitsPartFixedPart',2662 FixedPart: 'RmrkTraitsPartFixedPart',2997 SlotPart: 'RmrkTraitsPartSlotPart'2663 SlotPart: 'RmrkTraitsPartSlotPart'2998 }2664 }2999 },2665 },3000 /**2666 /**3001 * Lookup387: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2667 * Lookup310: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3002 **/2668 **/3003 RmrkTraitsPartFixedPart: {2669 RmrkTraitsPartFixedPart: {3004 id: 'u32',2670 id: 'u32',3005 z: 'u32',2671 z: 'u32',3006 src: 'Bytes'2672 src: 'Bytes'3007 },2673 },3008 /**2674 /**3009 * Lookup388: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2675 * Lookup311: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3010 **/2676 **/3011 RmrkTraitsPartSlotPart: {2677 RmrkTraitsPartSlotPart: {3012 id: 'u32',2678 id: 'u32',3013 equippable: 'RmrkTraitsPartEquippableList',2679 equippable: 'RmrkTraitsPartEquippableList',3014 src: 'Bytes',2680 src: 'Bytes',3015 z: 'u32'2681 z: 'u32'3016 },2682 },3017 /**2683 /**3018 * Lookup389: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2684 * Lookup312: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3019 **/2685 **/3020 RmrkTraitsPartEquippableList: {2686 RmrkTraitsPartEquippableList: {3021 _enum: {2687 _enum: {3022 All: 'Null',2688 All: 'Null',3023 Empty: 'Null',2689 Empty: 'Null',3024 Custom: 'Vec<u32>'2690 Custom: 'Vec<u32>'3025 }2691 }3026 },2692 },3027 /**2693 /**3028 * 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>>2694 * 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>>3029 **/2695 **/3030 RmrkTraitsTheme: {2696 RmrkTraitsTheme: {3031 name: 'Bytes',2697 name: 'Bytes',3032 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2698 properties: 'Vec<RmrkTraitsThemeThemeProperty>',3033 inherit: 'bool'2699 inherit: 'bool'3034 },2700 },3035 /**2701 /**3036 * Lookup393: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2702 * Lookup316: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3037 **/2703 **/3038 RmrkTraitsThemeThemeProperty: {2704 RmrkTraitsThemeThemeProperty: {3039 key: 'Bytes',2705 key: 'Bytes',3040 value: 'Bytes'2706 value: 'Bytes'3041 },2707 },3042 /**2708 /**3043 * Lookup395: pallet_app_promotion::pallet::Call<T>2709 * Lookup318: pallet_app_promotion::pallet::Call<T>3044 **/2710 **/3045 PalletAppPromotionCall: {2711 PalletAppPromotionCall: {3046 _enum: {2712 _enum: {3047 set_admin_address: {2713 set_admin_address: {3068 }2734 }3069 }2735 }3070 },2736 },3071 /**2737 /**3072 * Lookup396: pallet_foreign_assets::module::Call<T>2738 * Lookup319: pallet_foreign_assets::module::Call<T>3073 **/2739 **/3074 PalletForeignAssetsModuleCall: {2740 PalletForeignAssetsModuleCall: {3075 _enum: {2741 _enum: {3076 register_foreign_asset: {2742 register_foreign_asset: {3085 }2751 }3086 }2752 }3087 },2753 },3088 /**2754 /**3089 * Lookup397: pallet_evm::pallet::Call<T>2755 * Lookup320: pallet_evm::pallet::Call<T>3090 **/2756 **/3091 PalletEvmCall: {2757 PalletEvmCall: {3092 _enum: {2758 _enum: {3093 withdraw: {2759 withdraw: {3128 }2794 }3129 }2795 }3130 },2796 },3131 /**2797 /**3132 * Lookup403: pallet_ethereum::pallet::Call<T>2798 * Lookup326: pallet_ethereum::pallet::Call<T>3133 **/2799 **/3134 PalletEthereumCall: {2800 PalletEthereumCall: {3135 _enum: {2801 _enum: {3136 transact: {2802 transact: {3137 transaction: 'EthereumTransactionTransactionV2'2803 transaction: 'EthereumTransactionTransactionV2'3138 }2804 }3139 }2805 }3140 },2806 },3141 /**2807 /**3142 * Lookup404: ethereum::transaction::TransactionV22808 * Lookup327: ethereum::transaction::TransactionV23143 **/2809 **/3144 EthereumTransactionTransactionV2: {2810 EthereumTransactionTransactionV2: {3145 _enum: {2811 _enum: {3146 Legacy: 'EthereumTransactionLegacyTransaction',2812 Legacy: 'EthereumTransactionLegacyTransaction',3147 EIP2930: 'EthereumTransactionEip2930Transaction',2813 EIP2930: 'EthereumTransactionEip2930Transaction',3148 EIP1559: 'EthereumTransactionEip1559Transaction'2814 EIP1559: 'EthereumTransactionEip1559Transaction'3149 }2815 }3150 },2816 },3151 /**2817 /**3152 * Lookup405: ethereum::transaction::LegacyTransaction2818 * Lookup328: ethereum::transaction::LegacyTransaction3153 **/2819 **/3154 EthereumTransactionLegacyTransaction: {2820 EthereumTransactionLegacyTransaction: {3155 nonce: 'U256',2821 nonce: 'U256',3156 gasPrice: 'U256',2822 gasPrice: 'U256',3160 input: 'Bytes',2826 input: 'Bytes',3161 signature: 'EthereumTransactionTransactionSignature'2827 signature: 'EthereumTransactionTransactionSignature'3162 },2828 },3163 /**2829 /**3164 * Lookup406: ethereum::transaction::TransactionAction2830 * Lookup329: ethereum::transaction::TransactionAction3165 **/2831 **/3166 EthereumTransactionTransactionAction: {2832 EthereumTransactionTransactionAction: {3167 _enum: {2833 _enum: {3168 Call: 'H160',2834 Call: 'H160',3169 Create: 'Null'2835 Create: 'Null'3170 }2836 }3171 },2837 },3172 /**2838 /**3173 * Lookup407: ethereum::transaction::TransactionSignature2839 * Lookup330: ethereum::transaction::TransactionSignature3174 **/2840 **/3175 EthereumTransactionTransactionSignature: {2841 EthereumTransactionTransactionSignature: {3176 v: 'u64',2842 v: 'u64',3177 r: 'H256',2843 r: 'H256',3178 s: 'H256'2844 s: 'H256'3179 },2845 },3180 /**2846 /**3181 * Lookup409: ethereum::transaction::EIP2930Transaction2847 * Lookup332: ethereum::transaction::EIP2930Transaction3182 **/2848 **/3183 EthereumTransactionEip2930Transaction: {2849 EthereumTransactionEip2930Transaction: {3184 chainId: 'u64',2850 chainId: 'u64',3185 nonce: 'U256',2851 nonce: 'U256',3193 r: 'H256',2859 r: 'H256',3194 s: 'H256'2860 s: 'H256'3195 },2861 },3196 /**2862 /**3197 * Lookup411: ethereum::transaction::AccessListItem2863 * Lookup334: ethereum::transaction::AccessListItem3198 **/2864 **/3199 EthereumTransactionAccessListItem: {2865 EthereumTransactionAccessListItem: {3200 address: 'H160',2866 address: 'H160',3201 storageKeys: 'Vec<H256>'2867 storageKeys: 'Vec<H256>'3202 },2868 },3203 /**2869 /**3204 * Lookup412: ethereum::transaction::EIP1559Transaction2870 * Lookup335: ethereum::transaction::EIP1559Transaction3205 **/2871 **/3206 EthereumTransactionEip1559Transaction: {2872 EthereumTransactionEip1559Transaction: {3207 chainId: 'u64',2873 chainId: 'u64',3208 nonce: 'U256',2874 nonce: 'U256',3217 r: 'H256',2883 r: 'H256',3218 s: 'H256'2884 s: 'H256'3219 },2885 },3220 /**2886 /**3221 * Lookup413: pallet_evm_migration::pallet::Call<T>2887 * Lookup336: pallet_evm_migration::pallet::Call<T>3222 **/2888 **/3223 PalletEvmMigrationCall: {2889 PalletEvmMigrationCall: {3224 _enum: {2890 _enum: {3225 begin: {2891 begin: {3241 }2907 }3242 }2908 }3243 },2909 },3244 /**2910 /**3245 * Lookup417: pallet_maintenance::pallet::Call<T>2911 * Lookup340: pallet_maintenance::pallet::Call<T>3246 **/2912 **/3247 PalletMaintenanceCall: {2913 PalletMaintenanceCall: {3248 _enum: ['enable', 'disable']2914 _enum: ['enable', 'disable']3249 },2915 },3250 /**2916 /**3251 * Lookup418: pallet_test_utils::pallet::Call<T>2917 * Lookup341: pallet_test_utils::pallet::Call<T>3252 **/2918 **/3253 PalletTestUtilsCall: {2919 PalletTestUtilsCall: {3254 _enum: {2920 _enum: {3255 enable: 'Null',2921 enable: 'Null',3266 }2932 }3267 }2933 }3268 },2934 },3269 /**2935 /**3270 * Lookup420: pallet_sudo::pallet::Error<T>2936 * Lookup343: pallet_sudo::pallet::Error<T>3271 **/2937 **/3272 PalletSudoError: {2938 PalletSudoError: {3273 _enum: ['RequireSudo']2939 _enum: ['RequireSudo']3274 },2940 },3275 /**2941 /**3276 * Lookup422: orml_vesting::module::Error<T>2942 * Lookup345: orml_vesting::module::Error<T>3277 **/2943 **/3278 OrmlVestingModuleError: {2944 OrmlVestingModuleError: {3279 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2945 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']3280 },2946 },3281 /**2947 /**3282 * Lookup423: orml_xtokens::module::Error<T>2948 * Lookup346: orml_xtokens::module::Error<T>3283 **/2949 **/3284 OrmlXtokensModuleError: {2950 OrmlXtokensModuleError: {3285 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2951 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']3286 },2952 },3287 /**2953 /**3288 * Lookup426: orml_tokens::BalanceLock<Balance>2954 * Lookup349: orml_tokens::BalanceLock<Balance>3289 **/2955 **/3290 OrmlTokensBalanceLock: {2956 OrmlTokensBalanceLock: {3291 id: '[u8;8]',2957 id: '[u8;8]',3292 amount: 'u128'2958 amount: 'u128'3293 },2959 },3294 /**2960 /**3295 * Lookup428: orml_tokens::AccountData<Balance>2961 * Lookup351: orml_tokens::AccountData<Balance>3296 **/2962 **/3297 OrmlTokensAccountData: {2963 OrmlTokensAccountData: {3298 free: 'u128',2964 free: 'u128',3299 reserved: 'u128',2965 reserved: 'u128',3300 frozen: 'u128'2966 frozen: 'u128'3301 },2967 },3302 /**2968 /**3303 * Lookup430: orml_tokens::ReserveData<ReserveIdentifier, Balance>2969 * Lookup353: orml_tokens::ReserveData<ReserveIdentifier, Balance>3304 **/2970 **/3305 OrmlTokensReserveData: {2971 OrmlTokensReserveData: {3306 id: 'Null',2972 id: 'Null',3307 amount: 'u128'2973 amount: 'u128'3308 },2974 },3309 /**2975 /**3310 * Lookup432: orml_tokens::module::Error<T>2976 * Lookup355: orml_tokens::module::Error<T>3311 **/2977 **/3312 OrmlTokensModuleError: {2978 OrmlTokensModuleError: {3313 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']2979 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']3314 },2980 },3315 /**2981 /**3316 * Lookup434: cumulus_pallet_xcmp_queue::InboundChannelDetails2982 * Lookup357: cumulus_pallet_xcmp_queue::InboundChannelDetails3317 **/2983 **/3318 CumulusPalletXcmpQueueInboundChannelDetails: {2984 CumulusPalletXcmpQueueInboundChannelDetails: {3319 sender: 'u32',2985 sender: 'u32',3320 state: 'CumulusPalletXcmpQueueInboundState',2986 state: 'CumulusPalletXcmpQueueInboundState',3321 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2987 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'3322 },2988 },3323 /**2989 /**3324 * Lookup435: cumulus_pallet_xcmp_queue::InboundState2990 * Lookup358: cumulus_pallet_xcmp_queue::InboundState3325 **/2991 **/3326 CumulusPalletXcmpQueueInboundState: {2992 CumulusPalletXcmpQueueInboundState: {3327 _enum: ['Ok', 'Suspended']2993 _enum: ['Ok', 'Suspended']3328 },2994 },3329 /**2995 /**3330 * Lookup438: polkadot_parachain::primitives::XcmpMessageFormat2996 * Lookup361: polkadot_parachain::primitives::XcmpMessageFormat3331 **/2997 **/3332 PolkadotParachainPrimitivesXcmpMessageFormat: {2998 PolkadotParachainPrimitivesXcmpMessageFormat: {3333 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2999 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3334 },3000 },3335 /**3001 /**3336 * Lookup441: cumulus_pallet_xcmp_queue::OutboundChannelDetails3002 * Lookup364: cumulus_pallet_xcmp_queue::OutboundChannelDetails3337 **/3003 **/3338 CumulusPalletXcmpQueueOutboundChannelDetails: {3004 CumulusPalletXcmpQueueOutboundChannelDetails: {3339 recipient: 'u32',3005 recipient: 'u32',3340 state: 'CumulusPalletXcmpQueueOutboundState',3006 state: 'CumulusPalletXcmpQueueOutboundState',3341 signalsExist: 'bool',3007 signalsExist: 'bool',3342 firstIndex: 'u16',3008 firstIndex: 'u16',3343 lastIndex: 'u16'3009 lastIndex: 'u16'3344 },3010 },3345 /**3011 /**3346 * Lookup442: cumulus_pallet_xcmp_queue::OutboundState3012 * Lookup365: cumulus_pallet_xcmp_queue::OutboundState3347 **/3013 **/3348 CumulusPalletXcmpQueueOutboundState: {3014 CumulusPalletXcmpQueueOutboundState: {3349 _enum: ['Ok', 'Suspended']3015 _enum: ['Ok', 'Suspended']3350 },3016 },3351 /**3017 /**3352 * Lookup444: cumulus_pallet_xcmp_queue::QueueConfigData3018 * Lookup367: cumulus_pallet_xcmp_queue::QueueConfigData3353 **/3019 **/3354 CumulusPalletXcmpQueueQueueConfigData: {3020 CumulusPalletXcmpQueueQueueConfigData: {3355 suspendThreshold: 'u32',3021 suspendThreshold: 'u32',3356 dropThreshold: 'u32',3022 dropThreshold: 'u32',3359 weightRestrictDecay: 'SpWeightsWeightV2Weight',3025 weightRestrictDecay: 'SpWeightsWeightV2Weight',3360 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3026 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3361 },3027 },3362 /**3028 /**3363 * Lookup446: cumulus_pallet_xcmp_queue::pallet::Error<T>3029 * Lookup369: cumulus_pallet_xcmp_queue::pallet::Error<T>3364 **/3030 **/3365 CumulusPalletXcmpQueueError: {3031 CumulusPalletXcmpQueueError: {3366 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3032 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3367 },3033 },3368 /**3034 /**3369 * Lookup447: pallet_xcm::pallet::Error<T>3035 * Lookup370: pallet_xcm::pallet::Error<T>3370 **/3036 **/3371 PalletXcmError: {3037 PalletXcmError: {3372 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3038 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3373 },3039 },3374 /**3040 /**3375 * Lookup448: cumulus_pallet_xcm::pallet::Error<T>3041 * Lookup371: cumulus_pallet_xcm::pallet::Error<T>3376 **/3042 **/3377 CumulusPalletXcmError: 'Null',3043 CumulusPalletXcmError: 'Null',3378 /**3044 /**3379 * Lookup449: cumulus_pallet_dmp_queue::ConfigData3045 * Lookup372: cumulus_pallet_dmp_queue::ConfigData3380 **/3046 **/3381 CumulusPalletDmpQueueConfigData: {3047 CumulusPalletDmpQueueConfigData: {3382 maxIndividual: 'SpWeightsWeightV2Weight'3048 maxIndividual: 'SpWeightsWeightV2Weight'3383 },3049 },3384 /**3050 /**3385 * Lookup450: cumulus_pallet_dmp_queue::PageIndexData3051 * Lookup373: cumulus_pallet_dmp_queue::PageIndexData3386 **/3052 **/3387 CumulusPalletDmpQueuePageIndexData: {3053 CumulusPalletDmpQueuePageIndexData: {3388 beginUsed: 'u32',3054 beginUsed: 'u32',3389 endUsed: 'u32',3055 endUsed: 'u32',3390 overweightCount: 'u64'3056 overweightCount: 'u64'3391 },3057 },3392 /**3058 /**3393 * Lookup453: cumulus_pallet_dmp_queue::pallet::Error<T>3059 * Lookup376: cumulus_pallet_dmp_queue::pallet::Error<T>3394 **/3060 **/3395 CumulusPalletDmpQueueError: {3061 CumulusPalletDmpQueueError: {3396 _enum: ['Unknown', 'OverLimit']3062 _enum: ['Unknown', 'OverLimit']3397 },3063 },3398 /**3064 /**3399 * Lookup457: pallet_unique::Error<T>3065 * Lookup380: pallet_unique::Error<T>3400 **/3066 **/3401 PalletUniqueError: {3067 PalletUniqueError: {3402 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3068 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3403 },3069 },3404 /**3070 /**3405 * Lookup458: pallet_configuration::pallet::Error<T>3071 * Lookup381: pallet_configuration::pallet::Error<T>3406 **/3072 **/3407 PalletConfigurationError: {3073 PalletConfigurationError: {3408 _enum: ['InconsistentConfiguration']3074 _enum: ['InconsistentConfiguration']3409 },3075 },3410 /**3076 /**3411 * Lookup459: up_data_structs::Collection<sp_core::crypto::AccountId32>3077 * Lookup382: up_data_structs::Collection<sp_core::crypto::AccountId32>3412 **/3078 **/3413 UpDataStructsCollection: {3079 UpDataStructsCollection: {3414 owner: 'AccountId32',3080 owner: 'AccountId32',3415 mode: 'UpDataStructsCollectionMode',3081 mode: 'UpDataStructsCollectionMode',3421 permissions: 'UpDataStructsCollectionPermissions',3087 permissions: 'UpDataStructsCollectionPermissions',3422 flags: '[u8;1]'3088 flags: '[u8;1]'3423 },3089 },3424 /**3090 /**3425 * Lookup460: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3091 * Lookup383: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3426 **/3092 **/3427 UpDataStructsSponsorshipStateAccountId32: {3093 UpDataStructsSponsorshipStateAccountId32: {3428 _enum: {3094 _enum: {3429 Disabled: 'Null',3095 Disabled: 'Null',3430 Unconfirmed: 'AccountId32',3096 Unconfirmed: 'AccountId32',3431 Confirmed: 'AccountId32'3097 Confirmed: 'AccountId32'3432 }3098 }3433 },3099 },3434 /**3100 /**3435 * Lookup461: up_data_structs::Properties3101 * Lookup385: up_data_structs::Properties3436 **/3102 **/3437 UpDataStructsProperties: {3103 UpDataStructsProperties: {3438 map: 'UpDataStructsPropertiesMapBoundedVec',3104 map: 'UpDataStructsPropertiesMapBoundedVec',3439 consumedSpace: 'u32',3105 consumedSpace: 'u32',3440 spaceLimit: 'u32'3106 spaceLimit: 'u32'3441 },3107 },3442 /**3108 /**3443 * Lookup462: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3109 * Lookup386: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3444 **/3110 **/3445 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3111 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3446 /**3112 /**3447 * Lookup467: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3113 * Lookup391: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3448 **/3114 **/3449 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3115 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3450 /**3116 /**3451 * Lookup474: up_data_structs::CollectionStats3117 * Lookup398: up_data_structs::CollectionStats3452 **/3118 **/3453 UpDataStructsCollectionStats: {3119 UpDataStructsCollectionStats: {3454 created: 'u32',3120 created: 'u32',3455 destroyed: 'u32',3121 destroyed: 'u32',3456 alive: 'u32'3122 alive: 'u32'3457 },3123 },3458 /**3124 /**3459 * Lookup475: up_data_structs::TokenChild3125 * Lookup399: up_data_structs::TokenChild3460 **/3126 **/3461 UpDataStructsTokenChild: {3127 UpDataStructsTokenChild: {3462 token: 'u32',3128 token: 'u32',3463 collection: 'u32'3129 collection: 'u32'3464 },3130 },3465 /**3131 /**3466 * Lookup476: PhantomType::up_data_structs<T>3132 * Lookup400: PhantomType::up_data_structs<T>3467 **/3133 **/3468 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild,UpPovEstimateRpcPovInfo);0]',3134 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild,UpPovEstimateRpcPovInfo);0]',3469 /**3135 /**3470 * Lookup478: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3136 * Lookup402: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3471 **/3137 **/3472 UpDataStructsTokenData: {3138 UpDataStructsTokenData: {3473 properties: 'Vec<UpDataStructsProperty>',3139 properties: 'Vec<UpDataStructsProperty>',3474 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3140 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3475 pieces: 'u128'3141 pieces: 'u128'3476 },3142 },3477 /**3143 /**3478 * Lookup480: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3144 * Lookup404: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3479 **/3145 **/3480 UpDataStructsRpcCollection: {3146 UpDataStructsRpcCollection: {3481 owner: 'AccountId32',3147 owner: 'AccountId32',3482 mode: 'UpDataStructsCollectionMode',3148 mode: 'UpDataStructsCollectionMode',3491 readOnly: 'bool',3157 readOnly: 'bool',3492 flags: 'UpDataStructsRpcCollectionFlags'3158 flags: 'UpDataStructsRpcCollectionFlags'3493 },3159 },3494 /**3160 /**3495 * Lookup481: up_data_structs::RpcCollectionFlags3161 * Lookup405: up_data_structs::RpcCollectionFlags3496 **/3162 **/3497 UpDataStructsRpcCollectionFlags: {3163 UpDataStructsRpcCollectionFlags: {3498 foreign: 'bool',3164 foreign: 'bool',3499 erc721metadata: 'bool'3165 erc721metadata: 'bool'3500 },3166 },3501 /**3167 /**3502 * 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>3168 * 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>3503 **/3169 **/3504 RmrkTraitsCollectionCollectionInfo: {3170 RmrkTraitsCollectionCollectionInfo: {3505 issuer: 'AccountId32',3171 issuer: 'AccountId32',3506 metadata: 'Bytes',3172 metadata: 'Bytes',3507 max: 'Option<u32>',3173 max: 'Option<u32>',3508 symbol: 'Bytes',3174 symbol: 'Bytes',3509 nftsCount: 'u32'3175 nftsCount: 'u32'3510 },3176 },3511 /**3177 /**3512 * Lookup483: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3178 * Lookup407: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3513 **/3179 **/3514 RmrkTraitsNftNftInfo: {3180 RmrkTraitsNftNftInfo: {3515 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3181 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3516 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3182 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3517 metadata: 'Bytes',3183 metadata: 'Bytes',3518 equipped: 'bool',3184 equipped: 'bool',3519 pending: 'bool'3185 pending: 'bool'3520 },3186 },3521 /**3187 /**3522 * Lookup485: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3188 * Lookup409: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3523 **/3189 **/3524 RmrkTraitsNftRoyaltyInfo: {3190 RmrkTraitsNftRoyaltyInfo: {3525 recipient: 'AccountId32',3191 recipient: 'AccountId32',3526 amount: 'Permill'3192 amount: 'Permill'3527 },3193 },3528 /**3194 /**3529 * Lookup486: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3195 * Lookup410: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3530 **/3196 **/3531 RmrkTraitsResourceResourceInfo: {3197 RmrkTraitsResourceResourceInfo: {3532 id: 'u32',3198 id: 'u32',3533 resource: 'RmrkTraitsResourceResourceTypes',3199 resource: 'RmrkTraitsResourceResourceTypes',3534 pending: 'bool',3200 pending: 'bool',3535 pendingRemoval: 'bool'3201 pendingRemoval: 'bool'3536 },3202 },3537 /**3203 /**3538 * Lookup487: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3204 * Lookup411: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3539 **/3205 **/3540 RmrkTraitsPropertyPropertyInfo: {3206 RmrkTraitsPropertyPropertyInfo: {3541 key: 'Bytes',3207 key: 'Bytes',3542 value: 'Bytes'3208 value: 'Bytes'3543 },3209 },3544 /**3210 /**3545 * Lookup488: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3211 * Lookup412: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3546 **/3212 **/3547 RmrkTraitsBaseBaseInfo: {3213 RmrkTraitsBaseBaseInfo: {3548 issuer: 'AccountId32',3214 issuer: 'AccountId32',3549 baseType: 'Bytes',3215 baseType: 'Bytes',3550 symbol: 'Bytes'3216 symbol: 'Bytes'3551 },3217 },3552 /**3218 /**3553 * Lookup489: rmrk_traits::nft::NftChild3219 * Lookup413: rmrk_traits::nft::NftChild3554 **/3220 **/3555 RmrkTraitsNftNftChild: {3221 RmrkTraitsNftNftChild: {3556 collectionId: 'u32',3222 collectionId: 'u32',3557 nftId: 'u32'3223 nftId: 'u32'3558 },3224 },3559 /**3225 /**3560 * Lookup490: up_pov_estimate_rpc::PovInfo3226 * Lookup414: up_pov_estimate_rpc::PovInfo3561 **/3227 **/3562 UpPovEstimateRpcPovInfo: {3228 UpPovEstimateRpcPovInfo: {3563 proofSize: 'u64',3229 proofSize: 'u64',3564 compactProofSize: 'u64',3230 compactProofSize: 'u64',3565 compressedProofSize: 'u64',3231 compressedProofSize: 'u64',3566 results: 'Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>',3232 results: 'Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>',3567 keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'3233 keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'3568 },3234 },3569 /**3235 /**3570 * Lookup493: sp_runtime::transaction_validity::TransactionValidityError3236 * Lookup417: sp_runtime::transaction_validity::TransactionValidityError3571 **/3237 **/3572 SpRuntimeTransactionValidityTransactionValidityError: {3238 SpRuntimeTransactionValidityTransactionValidityError: {3573 _enum: {3239 _enum: {3574 Invalid: 'SpRuntimeTransactionValidityInvalidTransaction',3240 Invalid: 'SpRuntimeTransactionValidityInvalidTransaction',3575 Unknown: 'SpRuntimeTransactionValidityUnknownTransaction'3241 Unknown: 'SpRuntimeTransactionValidityUnknownTransaction'3576 }3242 }3577 },3243 },3578 /**3244 /**3579 * Lookup494: sp_runtime::transaction_validity::InvalidTransaction3245 * Lookup418: sp_runtime::transaction_validity::InvalidTransaction3580 **/3246 **/3581 SpRuntimeTransactionValidityInvalidTransaction: {3247 SpRuntimeTransactionValidityInvalidTransaction: {3582 _enum: {3248 _enum: {3583 Call: 'Null',3249 Call: 'Null',3593 BadSigner: 'Null'3259 BadSigner: 'Null'3594 }3260 }3595 },3261 },3596 /**3262 /**3597 * Lookup495: sp_runtime::transaction_validity::UnknownTransaction3263 * Lookup419: sp_runtime::transaction_validity::UnknownTransaction3598 **/3264 **/3599 SpRuntimeTransactionValidityUnknownTransaction: {3265 SpRuntimeTransactionValidityUnknownTransaction: {3600 _enum: {3266 _enum: {3601 CannotLookup: 'Null',3267 CannotLookup: 'Null',3602 NoUnsignedValidator: 'Null',3268 NoUnsignedValidator: 'Null',3603 Custom: 'u8'3269 Custom: 'u8'3604 }3270 }3605 },3271 },3606 /**3272 /**3607 * Lookup497: up_pov_estimate_rpc::TrieKeyValue3273 * Lookup421: up_pov_estimate_rpc::TrieKeyValue3608 **/3274 **/3609 UpPovEstimateRpcTrieKeyValue: {3275 UpPovEstimateRpcTrieKeyValue: {3610 key: 'Bytes',3276 key: 'Bytes',3611 value: 'Bytes'3277 value: 'Bytes'3612 },3278 },3613 /**3279 /**3614 * Lookup499: pallet_common::pallet::Error<T>3280 * Lookup423: pallet_common::pallet::Error<T>3615 **/3281 **/3616 PalletCommonError: {3282 PalletCommonError: {3617 _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']3283 _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']3618 },3284 },3619 /**3285 /**3620 * Lookup501: pallet_fungible::pallet::Error<T>3286 * Lookup425: pallet_fungible::pallet::Error<T>3621 **/3287 **/3622 PalletFungibleError: {3288 PalletFungibleError: {3623 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']3289 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']3624 },3290 },3625 /**3291 /**3626 * Lookup505: pallet_refungible::pallet::Error<T>3292 * Lookup429: pallet_refungible::pallet::Error<T>3627 **/3293 **/3628 PalletRefungibleError: {3294 PalletRefungibleError: {3629 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3295 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3630 },3296 },3631 /**3297 /**3632 * Lookup506: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3298 * Lookup430: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3633 **/3299 **/3634 PalletNonfungibleItemData: {3300 PalletNonfungibleItemData: {3635 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3301 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3636 },3302 },3637 /**3303 /**3638 * Lookup508: up_data_structs::PropertyScope3304 * Lookup432: up_data_structs::PropertyScope3639 **/3305 **/3640 UpDataStructsPropertyScope: {3306 UpDataStructsPropertyScope: {3641 _enum: ['None', 'Rmrk']3307 _enum: ['None', 'Rmrk']3642 },3308 },3643 /**3309 /**3644 * Lookup511: pallet_nonfungible::pallet::Error<T>3310 * Lookup435: pallet_nonfungible::pallet::Error<T>3645 **/3311 **/3646 PalletNonfungibleError: {3312 PalletNonfungibleError: {3647 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3313 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3648 },3314 },3649 /**3315 /**3650 * Lookup512: pallet_structure::pallet::Error<T>3316 * Lookup436: pallet_structure::pallet::Error<T>3651 **/3317 **/3652 PalletStructureError: {3318 PalletStructureError: {3653 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3319 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3654 },3320 },3655 /**3321 /**3656 * Lookup513: pallet_rmrk_core::pallet::Error<T>3322 * Lookup437: pallet_rmrk_core::pallet::Error<T>3657 **/3323 **/3658 PalletRmrkCoreError: {3324 PalletRmrkCoreError: {3659 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3325 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3660 },3326 },3661 /**3327 /**3662 * Lookup515: pallet_rmrk_equip::pallet::Error<T>3328 * Lookup439: pallet_rmrk_equip::pallet::Error<T>3663 **/3329 **/3664 PalletRmrkEquipError: {3330 PalletRmrkEquipError: {3665 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3331 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3666 },3332 },3667 /**3333 /**3668 * Lookup521: pallet_app_promotion::pallet::Error<T>3334 * Lookup445: pallet_app_promotion::pallet::Error<T>3669 **/3335 **/3670 PalletAppPromotionError: {3336 PalletAppPromotionError: {3671 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3337 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3672 },3338 },3673 /**3339 /**3674 * Lookup522: pallet_foreign_assets::module::Error<T>3340 * Lookup446: pallet_foreign_assets::module::Error<T>3675 **/3341 **/3676 PalletForeignAssetsModuleError: {3342 PalletForeignAssetsModuleError: {3677 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3343 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3678 },3344 },3679 /**3345 /**3680 * Lookup524: pallet_evm::pallet::Error<T>3346 * Lookup448: pallet_evm::pallet::Error<T>3681 **/3347 **/3682 PalletEvmError: {3348 PalletEvmError: {3683 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']3349 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']3684 },3350 },3685 /**3351 /**3686 * Lookup527: fp_rpc::TransactionStatus3352 * Lookup451: fp_rpc::TransactionStatus3687 **/3353 **/3688 FpRpcTransactionStatus: {3354 FpRpcTransactionStatus: {3689 transactionHash: 'H256',3355 transactionHash: 'H256',3690 transactionIndex: 'u32',3356 transactionIndex: 'u32',3694 logs: 'Vec<EthereumLog>',3360 logs: 'Vec<EthereumLog>',3695 logsBloom: 'EthbloomBloom'3361 logsBloom: 'EthbloomBloom'3696 },3362 },3697 /**3363 /**3698 * Lookup529: ethbloom::Bloom3364 * Lookup453: ethbloom::Bloom3699 **/3365 **/3700 EthbloomBloom: '[u8;256]',3366 EthbloomBloom: '[u8;256]',3701 /**3367 /**3702 * Lookup531: ethereum::receipt::ReceiptV33368 * Lookup455: ethereum::receipt::ReceiptV33703 **/3369 **/3704 EthereumReceiptReceiptV3: {3370 EthereumReceiptReceiptV3: {3705 _enum: {3371 _enum: {3706 Legacy: 'EthereumReceiptEip658ReceiptData',3372 Legacy: 'EthereumReceiptEip658ReceiptData',3707 EIP2930: 'EthereumReceiptEip658ReceiptData',3373 EIP2930: 'EthereumReceiptEip658ReceiptData',3708 EIP1559: 'EthereumReceiptEip658ReceiptData'3374 EIP1559: 'EthereumReceiptEip658ReceiptData'3709 }3375 }3710 },3376 },3711 /**3377 /**3712 * Lookup532: ethereum::receipt::EIP658ReceiptData3378 * Lookup456: ethereum::receipt::EIP658ReceiptData3713 **/3379 **/3714 EthereumReceiptEip658ReceiptData: {3380 EthereumReceiptEip658ReceiptData: {3715 statusCode: 'u8',3381 statusCode: 'u8',3716 usedGas: 'U256',3382 usedGas: 'U256',3717 logsBloom: 'EthbloomBloom',3383 logsBloom: 'EthbloomBloom',3718 logs: 'Vec<EthereumLog>'3384 logs: 'Vec<EthereumLog>'3719 },3385 },3720 /**3386 /**3721 * Lookup533: ethereum::block::Block<ethereum::transaction::TransactionV2>3387 * Lookup457: ethereum::block::Block<ethereum::transaction::TransactionV2>3722 **/3388 **/3723 EthereumBlock: {3389 EthereumBlock: {3724 header: 'EthereumHeader',3390 header: 'EthereumHeader',3725 transactions: 'Vec<EthereumTransactionTransactionV2>',3391 transactions: 'Vec<EthereumTransactionTransactionV2>',3726 ommers: 'Vec<EthereumHeader>'3392 ommers: 'Vec<EthereumHeader>'3727 },3393 },3728 /**3394 /**3729 * Lookup534: ethereum::header::Header3395 * Lookup458: ethereum::header::Header3730 **/3396 **/3731 EthereumHeader: {3397 EthereumHeader: {3732 parentHash: 'H256',3398 parentHash: 'H256',3733 ommersHash: 'H256',3399 ommersHash: 'H256',3745 mixHash: 'H256',3411 mixHash: 'H256',3746 nonce: 'EthereumTypesHashH64'3412 nonce: 'EthereumTypesHashH64'3747 },3413 },3748 /**3414 /**3749 * Lookup535: ethereum_types::hash::H643415 * Lookup459: ethereum_types::hash::H643750 **/3416 **/3751 EthereumTypesHashH64: '[u8;8]',3417 EthereumTypesHashH64: '[u8;8]',3752 /**3418 /**3753 * Lookup540: pallet_ethereum::pallet::Error<T>3419 * Lookup464: pallet_ethereum::pallet::Error<T>3754 **/3420 **/3755 PalletEthereumError: {3421 PalletEthereumError: {3756 _enum: ['InvalidSignature', 'PreLogExists']3422 _enum: ['InvalidSignature', 'PreLogExists']3757 },3423 },3758 /**3424 /**3759 * Lookup541: pallet_evm_coder_substrate::pallet::Error<T>3425 * Lookup465: pallet_evm_coder_substrate::pallet::Error<T>3760 **/3426 **/3761 PalletEvmCoderSubstrateError: {3427 PalletEvmCoderSubstrateError: {3762 _enum: ['OutOfGas', 'OutOfFund']3428 _enum: ['OutOfGas', 'OutOfFund']3763 },3429 },3764 /**3430 /**3765 * Lookup542: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3431 * Lookup466: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3766 **/3432 **/3767 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3433 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3768 _enum: {3434 _enum: {3769 Disabled: 'Null',3435 Disabled: 'Null',3770 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3436 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3771 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3437 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3772 }3438 }3773 },3439 },3774 /**3440 /**3775 * Lookup543: pallet_evm_contract_helpers::SponsoringModeT3441 * Lookup467: pallet_evm_contract_helpers::SponsoringModeT3776 **/3442 **/3777 PalletEvmContractHelpersSponsoringModeT: {3443 PalletEvmContractHelpersSponsoringModeT: {3778 _enum: ['Disabled', 'Allowlisted', 'Generous']3444 _enum: ['Disabled', 'Allowlisted', 'Generous']3779 },3445 },3780 /**3446 /**3781 * Lookup549: pallet_evm_contract_helpers::pallet::Error<T>3447 * Lookup473: pallet_evm_contract_helpers::pallet::Error<T>3782 **/3448 **/3783 PalletEvmContractHelpersError: {3449 PalletEvmContractHelpersError: {3784 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3450 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3785 },3451 },3786 /**3452 /**3787 * Lookup550: pallet_evm_migration::pallet::Error<T>3453 * Lookup474: pallet_evm_migration::pallet::Error<T>3788 **/3454 **/3789 PalletEvmMigrationError: {3455 PalletEvmMigrationError: {3790 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3456 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3791 },3457 },3792 /**3458 /**3793 * Lookup551: pallet_maintenance::pallet::Error<T>3459 * Lookup475: pallet_maintenance::pallet::Error<T>3794 **/3460 **/3795 PalletMaintenanceError: 'Null',3461 PalletMaintenanceError: 'Null',3796 /**3462 /**3797 * Lookup552: pallet_test_utils::pallet::Error<T>3463 * Lookup476: pallet_test_utils::pallet::Error<T>3798 **/3464 **/3799 PalletTestUtilsError: {3465 PalletTestUtilsError: {3800 _enum: ['TestPalletDisabled', 'TriggerRollback']3466 _enum: ['TestPalletDisabled', 'TriggerRollback']3801 },3467 },3802 /**3468 /**3803 * Lookup554: sp_runtime::MultiSignature3469 * Lookup478: sp_runtime::MultiSignature3804 **/3470 **/3805 SpRuntimeMultiSignature: {3471 SpRuntimeMultiSignature: {3806 _enum: {3472 _enum: {3807 Ed25519: 'SpCoreEd25519Signature',3473 Ed25519: 'SpCoreEd25519Signature',3808 Sr25519: 'SpCoreSr25519Signature',3474 Sr25519: 'SpCoreSr25519Signature',3809 Ecdsa: 'SpCoreEcdsaSignature'3475 Ecdsa: 'SpCoreEcdsaSignature'3810 }3476 }3811 },3477 },3812 /**3478 /**3813 * Lookup555: sp_core::ed25519::Signature3479 * Lookup479: sp_core::ed25519::Signature3814 **/3480 **/3815 SpCoreEd25519Signature: '[u8;64]',3481 SpCoreEd25519Signature: '[u8;64]',3816 /**3482 /**3817 * Lookup557: sp_core::sr25519::Signature3483 * Lookup481: sp_core::sr25519::Signature3818 **/3484 **/3819 SpCoreSr25519Signature: '[u8;64]',3485 SpCoreSr25519Signature: '[u8;64]',3820 /**3486 /**3821 * Lookup558: sp_core::ecdsa::Signature3487 * Lookup482: sp_core::ecdsa::Signature3822 **/3488 **/3823 SpCoreEcdsaSignature: '[u8;65]',3489 SpCoreEcdsaSignature: '[u8;65]',3824 /**3490 /**3825 * Lookup561: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3491 * Lookup485: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3826 **/3492 **/3827 FrameSystemExtensionsCheckSpecVersion: 'Null',3493 FrameSystemExtensionsCheckSpecVersion: 'Null',3828 /**3494 /**3829 * Lookup562: frame_system::extensions::check_tx_version::CheckTxVersion<T>3495 * Lookup486: frame_system::extensions::check_tx_version::CheckTxVersion<T>3830 **/3496 **/3831 FrameSystemExtensionsCheckTxVersion: 'Null',3497 FrameSystemExtensionsCheckTxVersion: 'Null',3832 /**3498 /**3833 * Lookup563: frame_system::extensions::check_genesis::CheckGenesis<T>3499 * Lookup487: frame_system::extensions::check_genesis::CheckGenesis<T>3834 **/3500 **/3835 FrameSystemExtensionsCheckGenesis: 'Null',3501 FrameSystemExtensionsCheckGenesis: 'Null',3836 /**3502 /**3837 * Lookup566: frame_system::extensions::check_nonce::CheckNonce<T>3503 * Lookup490: frame_system::extensions::check_nonce::CheckNonce<T>3838 **/3504 **/3839 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3505 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3840 /**3506 /**3841 * Lookup567: frame_system::extensions::check_weight::CheckWeight<T>3507 * Lookup491: frame_system::extensions::check_weight::CheckWeight<T>3842 **/3508 **/3843 FrameSystemExtensionsCheckWeight: 'Null',3509 FrameSystemExtensionsCheckWeight: 'Null',3844 /**3510 /**3845 * Lookup568: opal_runtime::runtime_common::maintenance::CheckMaintenance3511 * Lookup492: opal_runtime::runtime_common::maintenance::CheckMaintenance3846 **/3512 **/3847 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3513 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3848 /**3514 /**3849 * Lookup569: opal_runtime::runtime_common::data_management::FilterIdentity3515 * Lookup493: opal_runtime::runtime_common::identity::DisableIdentityCalls3850 **/3516 **/3851 OpalRuntimeRuntimeCommonDataManagementFilterIdentity: 'Null',3517 OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',3852 /**3518 /**3853 * Lookup570: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3519 * Lookup494: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3854 **/3520 **/3855 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3521 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3856 /**3522 /**3857 * Lookup571: opal_runtime::Runtime3523 * Lookup495: opal_runtime::Runtime3858 **/3524 **/3859 OpalRuntimeRuntime: 'Null',3525 OpalRuntimeRuntime: 'Null',3860 /**3526 /**3861 * Lookup572: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3527 * Lookup496: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3862 **/3528 **/3863 PalletEthereumFakeTransactionFinalizer: 'Null'3529 PalletEthereumFakeTransactionFinalizer: 'Null'3864};3530};38653531tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonDataManagementFilterIdentity, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -74,9 +74,8 @@
FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
FrameSystemPhase: FrameSystemPhase;
OpalRuntimeRuntime: OpalRuntimeRuntime;
- OpalRuntimeRuntimeCommonDataManagementFilterIdentity: OpalRuntimeRuntimeCommonDataManagementFilterIdentity;
+ OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
- OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
OrmlTokensAccountData: OrmlTokensAccountData;
OrmlTokensBalanceLock: OrmlTokensBalanceLock;
OrmlTokensModuleCall: OrmlTokensModuleCall;
@@ -93,9 +92,6 @@
PalletAppPromotionCall: PalletAppPromotionCall;
PalletAppPromotionError: PalletAppPromotionError;
PalletAppPromotionEvent: PalletAppPromotionEvent;
- PalletAuthorshipCall: PalletAuthorshipCall;
- PalletAuthorshipError: PalletAuthorshipError;
- PalletAuthorshipUncleEntryItem: PalletAuthorshipUncleEntryItem;
PalletBalancesAccountData: PalletBalancesAccountData;
PalletBalancesBalanceLock: PalletBalancesBalanceLock;
PalletBalancesCall: PalletBalancesCall;
@@ -103,9 +99,6 @@
PalletBalancesEvent: PalletBalancesEvent;
PalletBalancesReasons: PalletBalancesReasons;
PalletBalancesReserveData: PalletBalancesReserveData;
- PalletCollatorSelectionCall: PalletCollatorSelectionCall;
- PalletCollatorSelectionError: PalletCollatorSelectionError;
- PalletCollatorSelectionEvent: PalletCollatorSelectionEvent;
PalletCommonError: PalletCommonError;
PalletCommonEvent: PalletCommonEvent;
PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;
@@ -134,15 +127,6 @@
PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;
PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;
PalletFungibleError: PalletFungibleError;
- PalletIdentityBitFlags: PalletIdentityBitFlags;
- PalletIdentityCall: PalletIdentityCall;
- PalletIdentityError: PalletIdentityError;
- PalletIdentityEvent: PalletIdentityEvent;
- PalletIdentityIdentityField: PalletIdentityIdentityField;
- PalletIdentityIdentityInfo: PalletIdentityIdentityInfo;
- PalletIdentityJudgement: PalletIdentityJudgement;
- PalletIdentityRegistrarInfo: PalletIdentityRegistrarInfo;
- PalletIdentityRegistration: PalletIdentityRegistration;
PalletInflationCall: PalletInflationCall;
PalletMaintenanceCall: PalletMaintenanceCall;
PalletMaintenanceError: PalletMaintenanceError;
@@ -156,9 +140,6 @@
PalletRmrkEquipCall: PalletRmrkEquipCall;
PalletRmrkEquipError: PalletRmrkEquipError;
PalletRmrkEquipEvent: PalletRmrkEquipEvent;
- PalletSessionCall: PalletSessionCall;
- PalletSessionError: PalletSessionError;
- PalletSessionEvent: PalletSessionEvent;
PalletStructureCall: PalletStructureCall;
PalletStructureError: PalletStructureError;
PalletStructureEvent: PalletStructureEvent;
@@ -209,18 +190,13 @@
RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;
RmrkTraitsTheme: RmrkTraitsTheme;
RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;
- SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
- SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
SpCoreEcdsaSignature: SpCoreEcdsaSignature;
SpCoreEd25519Signature: SpCoreEd25519Signature;
- SpCoreSr25519Public: SpCoreSr25519Public;
SpCoreSr25519Signature: SpCoreSr25519Signature;
SpRuntimeArithmeticError: SpRuntimeArithmeticError;
- SpRuntimeBlakeTwo256: SpRuntimeBlakeTwo256;
SpRuntimeDigest: SpRuntimeDigest;
SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
SpRuntimeDispatchError: SpRuntimeDispatchError;
- SpRuntimeHeader: SpRuntimeHeader;
SpRuntimeModuleError: SpRuntimeModuleError;
SpRuntimeMultiSignature: SpRuntimeMultiSignature;
SpRuntimeTokenError: SpRuntimeTokenError;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -5,8 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/lookup';
-import type { Data } from '@polkadot/types';
-import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Set, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
+import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
import type { Event } from '@polkadot/types/interfaces/system';
@@ -197,111 +196,7 @@
readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';
}
- /** @name PalletCollatorSelectionEvent (30) */
- interface PalletCollatorSelectionEvent extends Enum {
- readonly isInvulnerableAdded: boolean;
- readonly asInvulnerableAdded: {
- readonly invulnerable: AccountId32;
- } & Struct;
- readonly isInvulnerableRemoved: boolean;
- readonly asInvulnerableRemoved: {
- readonly invulnerable: AccountId32;
- } & Struct;
- readonly isLicenseObtained: boolean;
- readonly asLicenseObtained: {
- readonly accountId: AccountId32;
- readonly deposit: u128;
- } & Struct;
- readonly isLicenseReleased: boolean;
- readonly asLicenseReleased: {
- readonly accountId: AccountId32;
- readonly depositReturned: u128;
- } & Struct;
- readonly isCandidateAdded: boolean;
- readonly asCandidateAdded: {
- readonly accountId: AccountId32;
- } & Struct;
- readonly isCandidateRemoved: boolean;
- readonly asCandidateRemoved: {
- readonly accountId: AccountId32;
- } & Struct;
- readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';
- }
-
- /** @name PalletSessionEvent (31) */
- interface PalletSessionEvent extends Enum {
- readonly isNewSession: boolean;
- readonly asNewSession: {
- readonly sessionIndex: u32;
- } & Struct;
- readonly type: 'NewSession';
- }
-
- /** @name PalletIdentityEvent (32) */
- interface PalletIdentityEvent extends Enum {
- readonly isIdentitySet: boolean;
- readonly asIdentitySet: {
- readonly who: AccountId32;
- } & Struct;
- readonly isIdentityCleared: boolean;
- readonly asIdentityCleared: {
- readonly who: AccountId32;
- readonly deposit: u128;
- } & Struct;
- readonly isIdentityKilled: boolean;
- readonly asIdentityKilled: {
- readonly who: AccountId32;
- readonly deposit: u128;
- } & Struct;
- readonly isIdentitiesInserted: boolean;
- readonly asIdentitiesInserted: {
- readonly amount: u32;
- } & Struct;
- readonly isIdentitiesRemoved: boolean;
- readonly asIdentitiesRemoved: {
- readonly amount: u32;
- } & Struct;
- readonly isJudgementRequested: boolean;
- readonly asJudgementRequested: {
- readonly who: AccountId32;
- readonly registrarIndex: u32;
- } & Struct;
- readonly isJudgementUnrequested: boolean;
- readonly asJudgementUnrequested: {
- readonly who: AccountId32;
- readonly registrarIndex: u32;
- } & Struct;
- readonly isJudgementGiven: boolean;
- readonly asJudgementGiven: {
- readonly target: AccountId32;
- readonly registrarIndex: u32;
- } & Struct;
- readonly isRegistrarAdded: boolean;
- readonly asRegistrarAdded: {
- readonly registrarIndex: u32;
- } & Struct;
- readonly isSubIdentityAdded: boolean;
- readonly asSubIdentityAdded: {
- readonly sub: AccountId32;
- readonly main: AccountId32;
- readonly deposit: u128;
- } & Struct;
- readonly isSubIdentityRemoved: boolean;
- readonly asSubIdentityRemoved: {
- readonly sub: AccountId32;
- readonly main: AccountId32;
- readonly deposit: u128;
- } & Struct;
- readonly isSubIdentityRevoked: boolean;
- readonly asSubIdentityRevoked: {
- readonly sub: AccountId32;
- readonly main: AccountId32;
- readonly deposit: u128;
- } & Struct;
- readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked';
- }
-
- /** @name PalletBalancesEvent (33) */
+ /** @name PalletBalancesEvent (30) */
interface PalletBalancesEvent extends Enum {
readonly isEndowed: boolean;
readonly asEndowed: {
@@ -360,14 +255,14 @@
readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';
}
- /** @name FrameSupportTokensMiscBalanceStatus (34) */
+ /** @name FrameSupportTokensMiscBalanceStatus (31) */
interface FrameSupportTokensMiscBalanceStatus extends Enum {
readonly isFree: boolean;
readonly isReserved: boolean;
readonly type: 'Free' | 'Reserved';
}
- /** @name PalletTransactionPaymentEvent (35) */
+ /** @name PalletTransactionPaymentEvent (32) */
interface PalletTransactionPaymentEvent extends Enum {
readonly isTransactionFeePaid: boolean;
readonly asTransactionFeePaid: {
@@ -378,7 +273,7 @@
readonly type: 'TransactionFeePaid';
}
- /** @name PalletTreasuryEvent (36) */
+ /** @name PalletTreasuryEvent (33) */
interface PalletTreasuryEvent extends Enum {
readonly isProposed: boolean;
readonly asProposed: {
@@ -420,7 +315,7 @@
readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';
}
- /** @name PalletSudoEvent (37) */
+ /** @name PalletSudoEvent (34) */
interface PalletSudoEvent extends Enum {
readonly isSudid: boolean;
readonly asSudid: {
@@ -437,7 +332,7 @@
readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
}
- /** @name OrmlVestingModuleEvent (41) */
+ /** @name OrmlVestingModuleEvent (38) */
interface OrmlVestingModuleEvent extends Enum {
readonly isVestingScheduleAdded: boolean;
readonly asVestingScheduleAdded: {
@@ -457,7 +352,7 @@
readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
}
- /** @name OrmlVestingVestingSchedule (42) */
+ /** @name OrmlVestingVestingSchedule (39) */
interface OrmlVestingVestingSchedule extends Struct {
readonly start: u32;
readonly period: u32;
@@ -465,7 +360,7 @@
readonly perPeriod: Compact<u128>;
}
- /** @name OrmlXtokensModuleEvent (44) */
+ /** @name OrmlXtokensModuleEvent (41) */
interface OrmlXtokensModuleEvent extends Enum {
readonly isTransferredMultiAssets: boolean;
readonly asTransferredMultiAssets: {
@@ -477,16 +372,16 @@
readonly type: 'TransferredMultiAssets';
}
- /** @name XcmV1MultiassetMultiAssets (45) */
+ /** @name XcmV1MultiassetMultiAssets (42) */
interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}
- /** @name XcmV1MultiAsset (47) */
+ /** @name XcmV1MultiAsset (44) */
interface XcmV1MultiAsset extends Struct {
readonly id: XcmV1MultiassetAssetId;
readonly fun: XcmV1MultiassetFungibility;
}
- /** @name XcmV1MultiassetAssetId (48) */
+ /** @name XcmV1MultiassetAssetId (45) */
interface XcmV1MultiassetAssetId extends Enum {
readonly isConcrete: boolean;
readonly asConcrete: XcmV1MultiLocation;
@@ -495,13 +390,13 @@
readonly type: 'Concrete' | 'Abstract';
}
- /** @name XcmV1MultiLocation (49) */
+ /** @name XcmV1MultiLocation (46) */
interface XcmV1MultiLocation extends Struct {
readonly parents: u8;
readonly interior: XcmV1MultilocationJunctions;
}
- /** @name XcmV1MultilocationJunctions (50) */
+ /** @name XcmV1MultilocationJunctions (47) */
interface XcmV1MultilocationJunctions extends Enum {
readonly isHere: boolean;
readonly isX1: boolean;
@@ -523,7 +418,7 @@
readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
}
- /** @name XcmV1Junction (51) */
+ /** @name XcmV1Junction (48) */
interface XcmV1Junction extends Enum {
readonly isParachain: boolean;
readonly asParachain: Compact<u32>;
@@ -557,7 +452,7 @@
readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
}
- /** @name XcmV0JunctionNetworkId (53) */
+ /** @name XcmV0JunctionNetworkId (50) */
interface XcmV0JunctionNetworkId extends Enum {
readonly isAny: boolean;
readonly isNamed: boolean;
@@ -567,7 +462,7 @@
readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';
}
- /** @name XcmV0JunctionBodyId (56) */
+ /** @name XcmV0JunctionBodyId (53) */
interface XcmV0JunctionBodyId extends Enum {
readonly isUnit: boolean;
readonly isNamed: boolean;
@@ -581,7 +476,7 @@
readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';
}
- /** @name XcmV0JunctionBodyPart (57) */
+ /** @name XcmV0JunctionBodyPart (54) */
interface XcmV0JunctionBodyPart extends Enum {
readonly isVoice: boolean;
readonly isMembers: boolean;
@@ -606,7 +501,7 @@
readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
}
- /** @name XcmV1MultiassetFungibility (58) */
+ /** @name XcmV1MultiassetFungibility (55) */
interface XcmV1MultiassetFungibility extends Enum {
readonly isFungible: boolean;
readonly asFungible: Compact<u128>;
@@ -615,7 +510,7 @@
readonly type: 'Fungible' | 'NonFungible';
}
- /** @name XcmV1MultiassetAssetInstance (59) */
+ /** @name XcmV1MultiassetAssetInstance (56) */
interface XcmV1MultiassetAssetInstance extends Enum {
readonly isUndefined: boolean;
readonly isIndex: boolean;
@@ -633,7 +528,7 @@
readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';
}
- /** @name OrmlTokensModuleEvent (62) */
+ /** @name OrmlTokensModuleEvent (59) */
interface OrmlTokensModuleEvent extends Enum {
readonly isEndowed: boolean;
readonly asEndowed: {
@@ -721,7 +616,7 @@
readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';
}
- /** @name PalletForeignAssetsAssetIds (63) */
+ /** @name PalletForeignAssetsAssetIds (60) */
interface PalletForeignAssetsAssetIds extends Enum {
readonly isForeignAssetId: boolean;
readonly asForeignAssetId: u32;
@@ -730,14 +625,14 @@
readonly type: 'ForeignAssetId' | 'NativeAssetId';
}
- /** @name PalletForeignAssetsNativeCurrency (64) */
+ /** @name PalletForeignAssetsNativeCurrency (61) */
interface PalletForeignAssetsNativeCurrency extends Enum {
readonly isHere: boolean;
readonly isParent: boolean;
readonly type: 'Here' | 'Parent';
}
- /** @name CumulusPalletXcmpQueueEvent (65) */
+ /** @name CumulusPalletXcmpQueueEvent (62) */
interface CumulusPalletXcmpQueueEvent extends Enum {
readonly isSuccess: boolean;
readonly asSuccess: {
@@ -781,7 +676,7 @@
readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
}
- /** @name XcmV2TraitsError (67) */
+ /** @name XcmV2TraitsError (64) */
interface XcmV2TraitsError extends Enum {
readonly isOverflow: boolean;
readonly isUnimplemented: boolean;
@@ -814,7 +709,7 @@
readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';
}
- /** @name PalletXcmEvent (69) */
+ /** @name PalletXcmEvent (66) */
interface PalletXcmEvent extends Enum {
readonly isAttempted: boolean;
readonly asAttempted: XcmV2TraitsOutcome;
@@ -853,7 +748,7 @@
readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';
}
- /** @name XcmV2TraitsOutcome (70) */
+ /** @name XcmV2TraitsOutcome (67) */
interface XcmV2TraitsOutcome extends Enum {
readonly isComplete: boolean;
readonly asComplete: u64;
@@ -864,10 +759,10 @@
readonly type: 'Complete' | 'Incomplete' | 'Error';
}
- /** @name XcmV2Xcm (71) */
+ /** @name XcmV2Xcm (68) */
interface XcmV2Xcm extends Vec<XcmV2Instruction> {}
- /** @name XcmV2Instruction (73) */
+ /** @name XcmV2Instruction (70) */
interface XcmV2Instruction extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;
@@ -987,7 +882,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';
}
- /** @name XcmV2Response (74) */
+ /** @name XcmV2Response (71) */
interface XcmV2Response extends Enum {
readonly isNull: boolean;
readonly isAssets: boolean;
@@ -999,7 +894,7 @@
readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';
}
- /** @name XcmV0OriginKind (77) */
+ /** @name XcmV0OriginKind (74) */
interface XcmV0OriginKind extends Enum {
readonly isNative: boolean;
readonly isSovereignAccount: boolean;
@@ -1008,12 +903,12 @@
readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';
}
- /** @name XcmDoubleEncoded (78) */
+ /** @name XcmDoubleEncoded (75) */
interface XcmDoubleEncoded extends Struct {
readonly encoded: Bytes;
}
- /** @name XcmV1MultiassetMultiAssetFilter (79) */
+ /** @name XcmV1MultiassetMultiAssetFilter (76) */
interface XcmV1MultiassetMultiAssetFilter extends Enum {
readonly isDefinite: boolean;
readonly asDefinite: XcmV1MultiassetMultiAssets;
@@ -1022,7 +917,7 @@
readonly type: 'Definite' | 'Wild';
}
- /** @name XcmV1MultiassetWildMultiAsset (80) */
+ /** @name XcmV1MultiassetWildMultiAsset (77) */
interface XcmV1MultiassetWildMultiAsset extends Enum {
readonly isAll: boolean;
readonly isAllOf: boolean;
@@ -1033,14 +928,14 @@
readonly type: 'All' | 'AllOf';
}
- /** @name XcmV1MultiassetWildFungibility (81) */
+ /** @name XcmV1MultiassetWildFungibility (78) */
interface XcmV1MultiassetWildFungibility extends Enum {
readonly isFungible: boolean;
readonly isNonFungible: boolean;
readonly type: 'Fungible' | 'NonFungible';
}
- /** @name XcmV2WeightLimit (82) */
+ /** @name XcmV2WeightLimit (79) */
interface XcmV2WeightLimit extends Enum {
readonly isUnlimited: boolean;
readonly isLimited: boolean;
@@ -1048,7 +943,7 @@
readonly type: 'Unlimited' | 'Limited';
}
- /** @name XcmVersionedMultiAssets (84) */
+ /** @name XcmVersionedMultiAssets (81) */
interface XcmVersionedMultiAssets extends Enum {
readonly isV0: boolean;
readonly asV0: Vec<XcmV0MultiAsset>;
@@ -1057,7 +952,7 @@
readonly type: 'V0' | 'V1';
}
- /** @name XcmV0MultiAsset (86) */
+ /** @name XcmV0MultiAsset (83) */
interface XcmV0MultiAsset extends Enum {
readonly isNone: boolean;
readonly isAll: boolean;
@@ -1102,7 +997,7 @@
readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';
}
- /** @name XcmV0MultiLocation (87) */
+ /** @name XcmV0MultiLocation (84) */
interface XcmV0MultiLocation extends Enum {
readonly isNull: boolean;
readonly isX1: boolean;
@@ -1124,7 +1019,7 @@
readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
}
- /** @name XcmV0Junction (88) */
+ /** @name XcmV0Junction (85) */
interface XcmV0Junction extends Enum {
readonly isParent: boolean;
readonly isParachain: boolean;
@@ -1159,7 +1054,7 @@
readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
}
- /** @name XcmVersionedMultiLocation (89) */
+ /** @name XcmVersionedMultiLocation (86) */
interface XcmVersionedMultiLocation extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0MultiLocation;
@@ -1168,7 +1063,7 @@
readonly type: 'V0' | 'V1';
}
- /** @name CumulusPalletXcmEvent (90) */
+ /** @name CumulusPalletXcmEvent (87) */
interface CumulusPalletXcmEvent extends Enum {
readonly isInvalidFormat: boolean;
readonly asInvalidFormat: U8aFixed;
@@ -1179,7 +1074,7 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
}
- /** @name CumulusPalletDmpQueueEvent (91) */
+ /** @name CumulusPalletDmpQueueEvent (88) */
interface CumulusPalletDmpQueueEvent extends Enum {
readonly isInvalidFormat: boolean;
readonly asInvalidFormat: {
@@ -1214,7 +1109,7 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
}
- /** @name PalletConfigurationEvent (92) */
+ /** @name PalletConfigurationEvent (89) */
interface PalletConfigurationEvent extends Enum {
readonly isNewDesiredCollators: boolean;
readonly asNewDesiredCollators: {
@@ -1231,7 +1126,7 @@
readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';
}
- /** @name PalletCommonEvent (95) */
+ /** @name PalletCommonEvent (92) */
interface PalletCommonEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -1280,7 +1175,7 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';
}
- /** @name PalletEvmAccountBasicCrossAccountIdRepr (98) */
+ /** @name PalletEvmAccountBasicCrossAccountIdRepr (95) */
interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
readonly isSubstrate: boolean;
readonly asSubstrate: AccountId32;
@@ -1289,14 +1184,14 @@
readonly type: 'Substrate' | 'Ethereum';
}
- /** @name PalletStructureEvent (102) */
+ /** @name PalletStructureEvent (99) */
interface PalletStructureEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
readonly type: 'Executed';
}
- /** @name PalletRmrkCoreEvent (103) */
+ /** @name PalletRmrkCoreEvent (100) */
interface PalletRmrkCoreEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: {
@@ -1386,7 +1281,7 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
}
- /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (104) */
+ /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */
interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
readonly isAccountId: boolean;
readonly asAccountId: AccountId32;
@@ -1395,7 +1290,7 @@
readonly type: 'AccountId' | 'CollectionAndNftTuple';
}
- /** @name PalletRmrkEquipEvent (107) */
+ /** @name PalletRmrkEquipEvent (104) */
interface PalletRmrkEquipEvent extends Enum {
readonly isBaseCreated: boolean;
readonly asBaseCreated: {
@@ -1410,7 +1305,7 @@
readonly type: 'BaseCreated' | 'EquippablesUpdated';
}
- /** @name PalletAppPromotionEvent (108) */
+ /** @name PalletAppPromotionEvent (105) */
interface PalletAppPromotionEvent extends Enum {
readonly isStakingRecalculation: boolean;
readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
@@ -1423,7 +1318,7 @@
readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
}
- /** @name PalletForeignAssetsModuleEvent (109) */
+ /** @name PalletForeignAssetsModuleEvent (106) */
interface PalletForeignAssetsModuleEvent extends Enum {
readonly isForeignAssetRegistered: boolean;
readonly asForeignAssetRegistered: {
@@ -1450,7 +1345,7 @@
readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
}
- /** @name PalletForeignAssetsModuleAssetMetadata (110) */
+ /** @name PalletForeignAssetsModuleAssetMetadata (107) */
interface PalletForeignAssetsModuleAssetMetadata extends Struct {
readonly name: Bytes;
readonly symbol: Bytes;
@@ -1458,7 +1353,7 @@
readonly minimalBalance: u128;
}
- /** @name PalletEvmEvent (111) */
+ /** @name PalletEvmEvent (108) */
interface PalletEvmEvent extends Enum {
readonly isLog: boolean;
readonly asLog: {
@@ -1483,14 +1378,14 @@
readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
}
- /** @name EthereumLog (112) */
+ /** @name EthereumLog (109) */
interface EthereumLog extends Struct {
readonly address: H160;
readonly topics: Vec<H256>;
readonly data: Bytes;
}
- /** @name PalletEthereumEvent (114) */
+ /** @name PalletEthereumEvent (111) */
interface PalletEthereumEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: {
@@ -1502,7 +1397,7 @@
readonly type: 'Executed';
}
- /** @name EvmCoreErrorExitReason (115) */
+ /** @name EvmCoreErrorExitReason (112) */
interface EvmCoreErrorExitReason extends Enum {
readonly isSucceed: boolean;
readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -1515,7 +1410,7 @@
readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
}
- /** @name EvmCoreErrorExitSucceed (116) */
+ /** @name EvmCoreErrorExitSucceed (113) */
interface EvmCoreErrorExitSucceed extends Enum {
readonly isStopped: boolean;
readonly isReturned: boolean;
@@ -1523,7 +1418,7 @@
readonly type: 'Stopped' | 'Returned' | 'Suicided';
}
- /** @name EvmCoreErrorExitError (117) */
+ /** @name EvmCoreErrorExitError (114) */
interface EvmCoreErrorExitError extends Enum {
readonly isStackUnderflow: boolean;
readonly isStackOverflow: boolean;
@@ -1544,13 +1439,13 @@
readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
}
- /** @name EvmCoreErrorExitRevert (120) */
+ /** @name EvmCoreErrorExitRevert (117) */
interface EvmCoreErrorExitRevert extends Enum {
readonly isReverted: boolean;
readonly type: 'Reverted';
}
- /** @name EvmCoreErrorExitFatal (121) */
+ /** @name EvmCoreErrorExitFatal (118) */
interface EvmCoreErrorExitFatal extends Enum {
readonly isNotSupported: boolean;
readonly isUnhandledInterrupt: boolean;
@@ -1561,7 +1456,7 @@
readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
}
- /** @name PalletEvmContractHelpersEvent (122) */
+ /** @name PalletEvmContractHelpersEvent (119) */
interface PalletEvmContractHelpersEvent extends Enum {
readonly isContractSponsorSet: boolean;
readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
@@ -1572,20 +1467,20 @@
readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
}
- /** @name PalletEvmMigrationEvent (123) */
+ /** @name PalletEvmMigrationEvent (120) */
interface PalletEvmMigrationEvent extends Enum {
readonly isTestEvent: boolean;
readonly type: 'TestEvent';
}
- /** @name PalletMaintenanceEvent (124) */
+ /** @name PalletMaintenanceEvent (121) */
interface PalletMaintenanceEvent extends Enum {
readonly isMaintenanceEnabled: boolean;
readonly isMaintenanceDisabled: boolean;
readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';
}
- /** @name PalletTestUtilsEvent (125) */
+ /** @name PalletTestUtilsEvent (122) */
interface PalletTestUtilsEvent extends Enum {
readonly isValueIsSet: boolean;
readonly isShouldRollback: boolean;
@@ -1593,7 +1488,7 @@
readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';
}
- /** @name FrameSystemPhase (126) */
+ /** @name FrameSystemPhase (123) */
interface FrameSystemPhase extends Enum {
readonly isApplyExtrinsic: boolean;
readonly asApplyExtrinsic: u32;
@@ -1602,13 +1497,13 @@
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
}
- /** @name FrameSystemLastRuntimeUpgradeInfo (129) */
+ /** @name FrameSystemLastRuntimeUpgradeInfo (126) */
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
readonly specVersion: Compact<u32>;
readonly specName: Text;
}
- /** @name FrameSystemCall (130) */
+ /** @name FrameSystemCall (127) */
interface FrameSystemCall extends Enum {
readonly isRemark: boolean;
readonly asRemark: {
@@ -1646,21 +1541,21 @@
readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
}
- /** @name FrameSystemLimitsBlockWeights (134) */
+ /** @name FrameSystemLimitsBlockWeights (131) */
interface FrameSystemLimitsBlockWeights extends Struct {
readonly baseBlock: SpWeightsWeightV2Weight;
readonly maxBlock: SpWeightsWeightV2Weight;
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
}
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (135) */
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (132) */
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
readonly normal: FrameSystemLimitsWeightsPerClass;
readonly operational: FrameSystemLimitsWeightsPerClass;
readonly mandatory: FrameSystemLimitsWeightsPerClass;
}
- /** @name FrameSystemLimitsWeightsPerClass (136) */
+ /** @name FrameSystemLimitsWeightsPerClass (133) */
interface FrameSystemLimitsWeightsPerClass extends Struct {
readonly baseExtrinsic: SpWeightsWeightV2Weight;
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
@@ -1668,25 +1563,25 @@
readonly reserved: Option<SpWeightsWeightV2Weight>;
}
- /** @name FrameSystemLimitsBlockLength (138) */
+ /** @name FrameSystemLimitsBlockLength (135) */
interface FrameSystemLimitsBlockLength extends Struct {
readonly max: FrameSupportDispatchPerDispatchClassU32;
}
- /** @name FrameSupportDispatchPerDispatchClassU32 (139) */
+ /** @name FrameSupportDispatchPerDispatchClassU32 (136) */
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
readonly normal: u32;
readonly operational: u32;
readonly mandatory: u32;
}
- /** @name SpWeightsRuntimeDbWeight (140) */
+ /** @name SpWeightsRuntimeDbWeight (137) */
interface SpWeightsRuntimeDbWeight extends Struct {
readonly read: u64;
readonly write: u64;
}
- /** @name SpVersionRuntimeVersion (141) */
+ /** @name SpVersionRuntimeVersion (138) */
interface SpVersionRuntimeVersion extends Struct {
readonly specName: Text;
readonly implName: Text;
@@ -1698,7 +1593,7 @@
readonly stateVersion: u8;
}
- /** @name FrameSystemError (146) */
+ /** @name FrameSystemError (143) */
interface FrameSystemError extends Enum {
readonly isInvalidSpecName: boolean;
readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1709,7 +1604,7 @@
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
}
- /** @name PolkadotPrimitivesV2PersistedValidationData (147) */
+ /** @name PolkadotPrimitivesV2PersistedValidationData (144) */
interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
readonly parentHead: Bytes;
readonly relayParentNumber: u32;
@@ -1717,18 +1612,18 @@
readonly maxPovSize: u32;
}
- /** @name PolkadotPrimitivesV2UpgradeRestriction (150) */
+ /** @name PolkadotPrimitivesV2UpgradeRestriction (147) */
interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
readonly isPresent: boolean;
readonly type: 'Present';
}
- /** @name SpTrieStorageProof (151) */
+ /** @name SpTrieStorageProof (148) */
interface SpTrieStorageProof extends Struct {
readonly trieNodes: BTreeSet<Bytes>;
}
- /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (153) */
+ /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (150) */
interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
readonly dmqMqcHead: H256;
readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
@@ -1736,7 +1631,7 @@
readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
}
- /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (156) */
+ /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (153) */
interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
readonly maxCapacity: u32;
readonly maxTotalSize: u32;
@@ -1746,7 +1641,7 @@
readonly mqcHead: Option<H256>;
}
- /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (157) */
+ /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (154) */
interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
readonly maxCodeSize: u32;
readonly maxHeadDataSize: u32;
@@ -1759,13 +1654,13 @@
readonly validationUpgradeDelay: u32;
}
- /** @name PolkadotCorePrimitivesOutboundHrmpMessage (163) */
+ /** @name PolkadotCorePrimitivesOutboundHrmpMessage (160) */
interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
readonly recipient: u32;
readonly data: Bytes;
}
- /** @name CumulusPalletParachainSystemCall (164) */
+ /** @name CumulusPalletParachainSystemCall (161) */
interface CumulusPalletParachainSystemCall extends Enum {
readonly isSetValidationData: boolean;
readonly asSetValidationData: {
@@ -1786,7 +1681,7 @@
readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
}
- /** @name CumulusPrimitivesParachainInherentParachainInherentData (165) */
+ /** @name CumulusPrimitivesParachainInherentParachainInherentData (162) */
interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
readonly relayChainState: SpTrieStorageProof;
@@ -1794,19 +1689,19 @@
readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
}
- /** @name PolkadotCorePrimitivesInboundDownwardMessage (167) */
+ /** @name PolkadotCorePrimitivesInboundDownwardMessage (164) */
interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
readonly sentAt: u32;
readonly msg: Bytes;
}
- /** @name PolkadotCorePrimitivesInboundHrmpMessage (170) */
+ /** @name PolkadotCorePrimitivesInboundHrmpMessage (167) */
interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
readonly sentAt: u32;
readonly data: Bytes;
}
- /** @name CumulusPalletParachainSystemError (173) */
+ /** @name CumulusPalletParachainSystemError (170) */
interface CumulusPalletParachainSystemError extends Enum {
readonly isOverlappingUpgrades: boolean;
readonly isProhibitedByPolkadot: boolean;
@@ -1817,296 +1712,16 @@
readonly isNothingAuthorized: boolean;
readonly isUnauthorized: boolean;
readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
- }
-
- /** @name PalletAuthorshipUncleEntryItem (175) */
- interface PalletAuthorshipUncleEntryItem extends Enum {
- readonly isInclusionHeight: boolean;
- readonly asInclusionHeight: u32;
- readonly isUncle: boolean;
- readonly asUncle: ITuple<[H256, Option<AccountId32>]>;
- readonly type: 'InclusionHeight' | 'Uncle';
- }
-
- /** @name PalletAuthorshipCall (177) */
- interface PalletAuthorshipCall extends Enum {
- readonly isSetUncles: boolean;
- readonly asSetUncles: {
- readonly newUncles: Vec<SpRuntimeHeader>;
- } & Struct;
- readonly type: 'SetUncles';
- }
-
- /** @name SpRuntimeHeader (179) */
- interface SpRuntimeHeader extends Struct {
- readonly parentHash: H256;
- readonly number: Compact<u32>;
- readonly stateRoot: H256;
- readonly extrinsicsRoot: H256;
- readonly digest: SpRuntimeDigest;
- }
-
- /** @name SpRuntimeBlakeTwo256 (180) */
- type SpRuntimeBlakeTwo256 = Null;
-
- /** @name PalletAuthorshipError (181) */
- interface PalletAuthorshipError extends Enum {
- readonly isInvalidUncleParent: boolean;
- readonly isUnclesAlreadySet: boolean;
- readonly isTooManyUncles: boolean;
- readonly isGenesisUncle: boolean;
- readonly isTooHighUncle: boolean;
- readonly isUncleAlreadyIncluded: boolean;
- readonly isOldUncle: boolean;
- readonly type: 'InvalidUncleParent' | 'UnclesAlreadySet' | 'TooManyUncles' | 'GenesisUncle' | 'TooHighUncle' | 'UncleAlreadyIncluded' | 'OldUncle';
- }
-
- /** @name PalletCollatorSelectionCall (184) */
- interface PalletCollatorSelectionCall extends Enum {
- readonly isAddInvulnerable: boolean;
- readonly asAddInvulnerable: {
- readonly new_: AccountId32;
- } & Struct;
- readonly isRemoveInvulnerable: boolean;
- readonly asRemoveInvulnerable: {
- readonly who: AccountId32;
- } & Struct;
- readonly isGetLicense: boolean;
- readonly isOnboard: boolean;
- readonly isOffboard: boolean;
- readonly isReleaseLicense: boolean;
- readonly isForceReleaseLicense: boolean;
- readonly asForceReleaseLicense: {
- readonly who: AccountId32;
- } & Struct;
- readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';
- }
-
- /** @name PalletCollatorSelectionError (185) */
- interface PalletCollatorSelectionError extends Enum {
- readonly isTooManyCandidates: boolean;
- readonly isUnknown: boolean;
- readonly isPermission: boolean;
- readonly isAlreadyHoldingLicense: boolean;
- readonly isNoLicense: boolean;
- readonly isAlreadyCandidate: boolean;
- readonly isNotCandidate: boolean;
- readonly isTooManyInvulnerables: boolean;
- readonly isTooFewInvulnerables: boolean;
- readonly isAlreadyInvulnerable: boolean;
- readonly isNotInvulnerable: boolean;
- readonly isNoAssociatedValidatorId: boolean;
- readonly isValidatorNotRegistered: boolean;
- readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';
}
- /** @name OpalRuntimeRuntimeCommonSessionKeys (188) */
- interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
- readonly aura: SpConsensusAuraSr25519AppSr25519Public;
- }
-
- /** @name SpConsensusAuraSr25519AppSr25519Public (189) */
- interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}
-
- /** @name SpCoreSr25519Public (190) */
- interface SpCoreSr25519Public extends U8aFixed {}
-
- /** @name SpCoreCryptoKeyTypeId (193) */
- interface SpCoreCryptoKeyTypeId extends U8aFixed {}
-
- /** @name PalletSessionCall (194) */
- interface PalletSessionCall extends Enum {
- readonly isSetKeys: boolean;
- readonly asSetKeys: {
- readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;
- readonly proof: Bytes;
- } & Struct;
- readonly isPurgeKeys: boolean;
- readonly type: 'SetKeys' | 'PurgeKeys';
- }
-
- /** @name PalletSessionError (195) */
- interface PalletSessionError extends Enum {
- readonly isInvalidProof: boolean;
- readonly isNoAssociatedValidatorId: boolean;
- readonly isDuplicatedKey: boolean;
- readonly isNoKeys: boolean;
- readonly isNoAccount: boolean;
- readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
- }
-
- /** @name PalletIdentityRegistration (196) */
- interface PalletIdentityRegistration extends Struct {
- readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
- readonly deposit: u128;
- readonly info: PalletIdentityIdentityInfo;
- }
-
- /** @name PalletIdentityJudgement (199) */
- interface PalletIdentityJudgement extends Enum {
- readonly isUnknown: boolean;
- readonly isFeePaid: boolean;
- readonly asFeePaid: u128;
- readonly isReasonable: boolean;
- readonly isKnownGood: boolean;
- readonly isOutOfDate: boolean;
- readonly isLowQuality: boolean;
- readonly isErroneous: boolean;
- readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';
- }
-
- /** @name PalletIdentityIdentityInfo (201) */
- interface PalletIdentityIdentityInfo extends Struct {
- readonly additional: Vec<ITuple<[Data, Data]>>;
- readonly display: Data;
- readonly legal: Data;
- readonly web: Data;
- readonly riot: Data;
- readonly email: Data;
- readonly pgpFingerprint: Option<U8aFixed>;
- readonly image: Data;
- readonly twitter: Data;
- }
-
- /** @name PalletIdentityRegistrarInfo (240) */
- interface PalletIdentityRegistrarInfo extends Struct {
- readonly account: AccountId32;
- readonly fee: u128;
- readonly fields: PalletIdentityBitFlags;
- }
-
- /** @name PalletIdentityBitFlags (241) */
- interface PalletIdentityBitFlags extends Set {
- readonly isDisplay: boolean;
- readonly isLegal: boolean;
- readonly isWeb: boolean;
- readonly isRiot: boolean;
- readonly isEmail: boolean;
- readonly isPgpFingerprint: boolean;
- readonly isImage: boolean;
- readonly isTwitter: boolean;
- }
-
- /** @name PalletIdentityIdentityField (242) */
- interface PalletIdentityIdentityField extends Enum {
- readonly isDisplay: boolean;
- readonly isLegal: boolean;
- readonly isWeb: boolean;
- readonly isRiot: boolean;
- readonly isEmail: boolean;
- readonly isPgpFingerprint: boolean;
- readonly isImage: boolean;
- readonly isTwitter: boolean;
- readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';
- }
-
- /** @name PalletIdentityCall (244) */
- interface PalletIdentityCall extends Enum {
- readonly isAddRegistrar: boolean;
- readonly asAddRegistrar: {
- readonly account: MultiAddress;
- } & Struct;
- readonly isSetIdentity: boolean;
- readonly asSetIdentity: {
- readonly info: PalletIdentityIdentityInfo;
- } & Struct;
- readonly isSetSubs: boolean;
- readonly asSetSubs: {
- readonly subs: Vec<ITuple<[AccountId32, Data]>>;
- } & Struct;
- readonly isClearIdentity: boolean;
- readonly isRequestJudgement: boolean;
- readonly asRequestJudgement: {
- readonly regIndex: Compact<u32>;
- readonly maxFee: Compact<u128>;
- } & Struct;
- readonly isCancelRequest: boolean;
- readonly asCancelRequest: {
- readonly regIndex: u32;
- } & Struct;
- readonly isSetFee: boolean;
- readonly asSetFee: {
- readonly index: Compact<u32>;
- readonly fee: Compact<u128>;
- } & Struct;
- readonly isSetAccountId: boolean;
- readonly asSetAccountId: {
- readonly index: Compact<u32>;
- readonly new_: MultiAddress;
- } & Struct;
- readonly isSetFields: boolean;
- readonly asSetFields: {
- readonly index: Compact<u32>;
- readonly fields: PalletIdentityBitFlags;
- } & Struct;
- readonly isProvideJudgement: boolean;
- readonly asProvideJudgement: {
- readonly regIndex: Compact<u32>;
- readonly target: MultiAddress;
- readonly judgement: PalletIdentityJudgement;
- readonly identity: H256;
- } & Struct;
- readonly isKillIdentity: boolean;
- readonly asKillIdentity: {
- readonly target: MultiAddress;
- } & Struct;
- readonly isAddSub: boolean;
- readonly asAddSub: {
- readonly sub: MultiAddress;
- readonly data: Data;
- } & Struct;
- readonly isRenameSub: boolean;
- readonly asRenameSub: {
- readonly sub: MultiAddress;
- readonly data: Data;
- } & Struct;
- readonly isRemoveSub: boolean;
- readonly asRemoveSub: {
- readonly sub: MultiAddress;
- } & Struct;
- readonly isQuitSub: boolean;
- readonly isForceInsertIdentities: boolean;
- readonly asForceInsertIdentities: {
- readonly identities: Vec<ITuple<[AccountId32, PalletIdentityRegistration]>>;
- } & Struct;
- readonly isForceRemoveIdentities: boolean;
- readonly asForceRemoveIdentities: {
- readonly identities: Vec<AccountId32>;
- } & Struct;
- readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities';
- }
-
- /** @name PalletIdentityError (250) */
- interface PalletIdentityError extends Enum {
- readonly isTooManySubAccounts: boolean;
- readonly isNotFound: boolean;
- readonly isNotNamed: boolean;
- readonly isEmptyIndex: boolean;
- readonly isFeeChanged: boolean;
- readonly isNoIdentity: boolean;
- readonly isStickyJudgement: boolean;
- readonly isJudgementGiven: boolean;
- readonly isInvalidJudgement: boolean;
- readonly isInvalidIndex: boolean;
- readonly isInvalidTarget: boolean;
- readonly isTooManyFields: boolean;
- readonly isTooManyRegistrars: boolean;
- readonly isAlreadyClaimed: boolean;
- readonly isNotSub: boolean;
- readonly isNotOwned: boolean;
- readonly isJudgementForDifferentIdentity: boolean;
- readonly isJudgementPaymentFailed: boolean;
- readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';
- }
-
- /** @name PalletBalancesBalanceLock (252) */
+ /** @name PalletBalancesBalanceLock (172) */
interface PalletBalancesBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
readonly reasons: PalletBalancesReasons;
}
- /** @name PalletBalancesReasons (253) */
+ /** @name PalletBalancesReasons (173) */
interface PalletBalancesReasons extends Enum {
readonly isFee: boolean;
readonly isMisc: boolean;
@@ -2114,13 +1729,13 @@
readonly type: 'Fee' | 'Misc' | 'All';
}
- /** @name PalletBalancesReserveData (256) */
+ /** @name PalletBalancesReserveData (176) */
interface PalletBalancesReserveData extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name PalletBalancesCall (258) */
+ /** @name PalletBalancesCall (178) */
interface PalletBalancesCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -2157,7 +1772,7 @@
readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
}
- /** @name PalletBalancesError (259) */
+ /** @name PalletBalancesError (181) */
interface PalletBalancesError extends Enum {
readonly isVestingBalance: boolean;
readonly isLiquidityRestrictions: boolean;
@@ -2170,7 +1785,7 @@
readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name PalletTimestampCall (261) */
+ /** @name PalletTimestampCall (183) */
interface PalletTimestampCall extends Enum {
readonly isSet: boolean;
readonly asSet: {
@@ -2179,14 +1794,14 @@
readonly type: 'Set';
}
- /** @name PalletTransactionPaymentReleases (263) */
+ /** @name PalletTransactionPaymentReleases (185) */
interface PalletTransactionPaymentReleases extends Enum {
readonly isV1Ancient: boolean;
readonly isV2: boolean;
readonly type: 'V1Ancient' | 'V2';
}
- /** @name PalletTreasuryProposal (264) */
+ /** @name PalletTreasuryProposal (186) */
interface PalletTreasuryProposal extends Struct {
readonly proposer: AccountId32;
readonly value: u128;
@@ -2194,7 +1809,7 @@
readonly bond: u128;
}
- /** @name PalletTreasuryCall (266) */
+ /** @name PalletTreasuryCall (189) */
interface PalletTreasuryCall extends Enum {
readonly isProposeSpend: boolean;
readonly asProposeSpend: {
@@ -2221,10 +1836,10 @@
readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
}
- /** @name FrameSupportPalletId (268) */
+ /** @name FrameSupportPalletId (191) */
interface FrameSupportPalletId extends U8aFixed {}
- /** @name PalletTreasuryError (269) */
+ /** @name PalletTreasuryError (192) */
interface PalletTreasuryError extends Enum {
readonly isInsufficientProposersBalance: boolean;
readonly isInvalidIndex: boolean;
@@ -2234,7 +1849,7 @@
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
}
- /** @name PalletSudoCall (270) */
+ /** @name PalletSudoCall (193) */
interface PalletSudoCall extends Enum {
readonly isSudo: boolean;
readonly asSudo: {
@@ -2257,7 +1872,7 @@
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
}
- /** @name OrmlVestingModuleCall (272) */
+ /** @name OrmlVestingModuleCall (195) */
interface OrmlVestingModuleCall extends Enum {
readonly isClaim: boolean;
readonly isVestedTransfer: boolean;
@@ -2277,7 +1892,7 @@
readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
}
- /** @name OrmlXtokensModuleCall (274) */
+ /** @name OrmlXtokensModuleCall (197) */
interface OrmlXtokensModuleCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -2324,7 +1939,7 @@
readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
}
- /** @name XcmVersionedMultiAsset (275) */
+ /** @name XcmVersionedMultiAsset (198) */
interface XcmVersionedMultiAsset extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0MultiAsset;
@@ -2333,7 +1948,7 @@
readonly type: 'V0' | 'V1';
}
- /** @name OrmlTokensModuleCall (278) */
+ /** @name OrmlTokensModuleCall (201) */
interface OrmlTokensModuleCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -2370,7 +1985,7 @@
readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
}
- /** @name CumulusPalletXcmpQueueCall (279) */
+ /** @name CumulusPalletXcmpQueueCall (202) */
interface CumulusPalletXcmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -2406,7 +2021,7 @@
readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
}
- /** @name PalletXcmCall (280) */
+ /** @name PalletXcmCall (203) */
interface PalletXcmCall extends Enum {
readonly isSend: boolean;
readonly asSend: {
@@ -2468,7 +2083,7 @@
readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
}
- /** @name XcmVersionedXcm (281) */
+ /** @name XcmVersionedXcm (204) */
interface XcmVersionedXcm extends Enum {
readonly isV0: boolean;
readonly asV0: XcmV0Xcm;
@@ -2479,7 +2094,7 @@
readonly type: 'V0' | 'V1' | 'V2';
}
- /** @name XcmV0Xcm (282) */
+ /** @name XcmV0Xcm (205) */
interface XcmV0Xcm extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: {
@@ -2542,7 +2157,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
}
- /** @name XcmV0Order (284) */
+ /** @name XcmV0Order (207) */
interface XcmV0Order extends Enum {
readonly isNull: boolean;
readonly isDepositAsset: boolean;
@@ -2590,14 +2205,14 @@
readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
}
- /** @name XcmV0Response (286) */
+ /** @name XcmV0Response (209) */
interface XcmV0Response extends Enum {
readonly isAssets: boolean;
readonly asAssets: Vec<XcmV0MultiAsset>;
readonly type: 'Assets';
}
- /** @name XcmV1Xcm (287) */
+ /** @name XcmV1Xcm (210) */
interface XcmV1Xcm extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: {
@@ -2666,7 +2281,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
}
- /** @name XcmV1Order (289) */
+ /** @name XcmV1Order (212) */
interface XcmV1Order extends Enum {
readonly isNoop: boolean;
readonly isDepositAsset: boolean;
@@ -2716,7 +2331,7 @@
readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
}
- /** @name XcmV1Response (291) */
+ /** @name XcmV1Response (214) */
interface XcmV1Response extends Enum {
readonly isAssets: boolean;
readonly asAssets: XcmV1MultiassetMultiAssets;
@@ -2725,10 +2340,10 @@
readonly type: 'Assets' | 'Version';
}
- /** @name CumulusPalletXcmCall (305) */
+ /** @name CumulusPalletXcmCall (228) */
type CumulusPalletXcmCall = Null;
- /** @name CumulusPalletDmpQueueCall (306) */
+ /** @name CumulusPalletDmpQueueCall (229) */
interface CumulusPalletDmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -2738,7 +2353,7 @@
readonly type: 'ServiceOverweight';
}
- /** @name PalletInflationCall (307) */
+ /** @name PalletInflationCall (230) */
interface PalletInflationCall extends Enum {
readonly isStartInflation: boolean;
readonly asStartInflation: {
@@ -2747,7 +2362,7 @@
readonly type: 'StartInflation';
}
- /** @name PalletUniqueCall (308) */
+ /** @name PalletUniqueCall (231) */
interface PalletUniqueCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -2920,7 +2535,7 @@
readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';
}
- /** @name UpDataStructsCollectionMode (313) */
+ /** @name UpDataStructsCollectionMode (236) */
interface UpDataStructsCollectionMode extends Enum {
readonly isNft: boolean;
readonly isFungible: boolean;
@@ -2929,7 +2544,7 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateCollectionData (314) */
+ /** @name UpDataStructsCreateCollectionData (237) */
interface UpDataStructsCreateCollectionData extends Struct {
readonly mode: UpDataStructsCollectionMode;
readonly access: Option<UpDataStructsAccessMode>;
@@ -2943,14 +2558,14 @@
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsAccessMode (316) */
+ /** @name UpDataStructsAccessMode (239) */
interface UpDataStructsAccessMode extends Enum {
readonly isNormal: boolean;
readonly isAllowList: boolean;
readonly type: 'Normal' | 'AllowList';
}
- /** @name UpDataStructsCollectionLimits (318) */
+ /** @name UpDataStructsCollectionLimits (241) */
interface UpDataStructsCollectionLimits extends Struct {
readonly accountTokenOwnershipLimit: Option<u32>;
readonly sponsoredDataSize: Option<u32>;
@@ -2963,7 +2578,7 @@
readonly transfersEnabled: Option<bool>;
}
- /** @name UpDataStructsSponsoringRateLimit (320) */
+ /** @name UpDataStructsSponsoringRateLimit (243) */
interface UpDataStructsSponsoringRateLimit extends Enum {
readonly isSponsoringDisabled: boolean;
readonly isBlocks: boolean;
@@ -2971,43 +2586,43 @@
readonly type: 'SponsoringDisabled' | 'Blocks';
}
- /** @name UpDataStructsCollectionPermissions (323) */
+ /** @name UpDataStructsCollectionPermissions (246) */
interface UpDataStructsCollectionPermissions extends Struct {
readonly access: Option<UpDataStructsAccessMode>;
readonly mintMode: Option<bool>;
readonly nesting: Option<UpDataStructsNestingPermissions>;
}
- /** @name UpDataStructsNestingPermissions (325) */
+ /** @name UpDataStructsNestingPermissions (248) */
interface UpDataStructsNestingPermissions extends Struct {
readonly tokenOwner: bool;
readonly collectionAdmin: bool;
readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
}
- /** @name UpDataStructsOwnerRestrictedSet (327) */
+ /** @name UpDataStructsOwnerRestrictedSet (250) */
interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
- /** @name UpDataStructsPropertyKeyPermission (332) */
+ /** @name UpDataStructsPropertyKeyPermission (255) */
interface UpDataStructsPropertyKeyPermission extends Struct {
readonly key: Bytes;
readonly permission: UpDataStructsPropertyPermission;
}
- /** @name UpDataStructsPropertyPermission (333) */
+ /** @name UpDataStructsPropertyPermission (256) */
interface UpDataStructsPropertyPermission extends Struct {
readonly mutable: bool;
readonly collectionAdmin: bool;
readonly tokenOwner: bool;
}
- /** @name UpDataStructsProperty (336) */
+ /** @name UpDataStructsProperty (259) */
interface UpDataStructsProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name UpDataStructsCreateItemData (339) */
+ /** @name UpDataStructsCreateItemData (262) */
interface UpDataStructsCreateItemData extends Enum {
readonly isNft: boolean;
readonly asNft: UpDataStructsCreateNftData;
@@ -3018,23 +2633,23 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateNftData (340) */
+ /** @name UpDataStructsCreateNftData (263) */
interface UpDataStructsCreateNftData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateFungibleData (341) */
+ /** @name UpDataStructsCreateFungibleData (264) */
interface UpDataStructsCreateFungibleData extends Struct {
readonly value: u128;
}
- /** @name UpDataStructsCreateReFungibleData (342) */
+ /** @name UpDataStructsCreateReFungibleData (265) */
interface UpDataStructsCreateReFungibleData extends Struct {
readonly pieces: u128;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateItemExData (345) */
+ /** @name UpDataStructsCreateItemExData (268) */
interface UpDataStructsCreateItemExData extends Enum {
readonly isNft: boolean;
readonly asNft: Vec<UpDataStructsCreateNftExData>;
@@ -3047,26 +2662,26 @@
readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
}
- /** @name UpDataStructsCreateNftExData (347) */
+ /** @name UpDataStructsCreateNftExData (270) */
interface UpDataStructsCreateNftExData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsCreateRefungibleExSingleOwner (354) */
+ /** @name UpDataStructsCreateRefungibleExSingleOwner (277) */
interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
readonly pieces: u128;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateRefungibleExMultipleOwners (356) */
+ /** @name UpDataStructsCreateRefungibleExMultipleOwners (279) */
interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name PalletConfigurationCall (357) */
+ /** @name PalletConfigurationCall (280) */
interface PalletConfigurationCall extends Enum {
readonly isSetWeightToFeeCoefficientOverride: boolean;
readonly asSetWeightToFeeCoefficientOverride: {
@@ -3099,7 +2714,7 @@
readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';
}
- /** @name PalletConfigurationAppPromotionConfiguration (362) */
+ /** @name PalletConfigurationAppPromotionConfiguration (285) */
interface PalletConfigurationAppPromotionConfiguration extends Struct {
readonly recalculationInterval: Option<u32>;
readonly pendingInterval: Option<u32>;
@@ -3107,13 +2722,13 @@
readonly maxStakersPerCalculation: Option<u8>;
}
- /** @name PalletTemplateTransactionPaymentCall (366) */
+ /** @name PalletTemplateTransactionPaymentCall (289) */
type PalletTemplateTransactionPaymentCall = Null;
- /** @name PalletStructureCall (367) */
+ /** @name PalletStructureCall (290) */
type PalletStructureCall = Null;
- /** @name PalletRmrkCoreCall (368) */
+ /** @name PalletRmrkCoreCall (291) */
interface PalletRmrkCoreCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -3219,7 +2834,7 @@
readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
}
- /** @name RmrkTraitsResourceResourceTypes (374) */
+ /** @name RmrkTraitsResourceResourceTypes (297) */
interface RmrkTraitsResourceResourceTypes extends Enum {
readonly isBasic: boolean;
readonly asBasic: RmrkTraitsResourceBasicResource;
@@ -3230,7 +2845,7 @@
readonly type: 'Basic' | 'Composable' | 'Slot';
}
- /** @name RmrkTraitsResourceBasicResource (376) */
+ /** @name RmrkTraitsResourceBasicResource (299) */
interface RmrkTraitsResourceBasicResource extends Struct {
readonly src: Option<Bytes>;
readonly metadata: Option<Bytes>;
@@ -3238,7 +2853,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceComposableResource (378) */
+ /** @name RmrkTraitsResourceComposableResource (301) */
interface RmrkTraitsResourceComposableResource extends Struct {
readonly parts: Vec<u32>;
readonly base: u32;
@@ -3248,7 +2863,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceSlotResource (379) */
+ /** @name RmrkTraitsResourceSlotResource (302) */
interface RmrkTraitsResourceSlotResource extends Struct {
readonly base: u32;
readonly src: Option<Bytes>;
@@ -3258,7 +2873,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name PalletRmrkEquipCall (382) */
+ /** @name PalletRmrkEquipCall (305) */
interface PalletRmrkEquipCall extends Enum {
readonly isCreateBase: boolean;
readonly asCreateBase: {
@@ -3280,7 +2895,7 @@
readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
}
- /** @name RmrkTraitsPartPartType (385) */
+ /** @name RmrkTraitsPartPartType (308) */
interface RmrkTraitsPartPartType extends Enum {
readonly isFixedPart: boolean;
readonly asFixedPart: RmrkTraitsPartFixedPart;
@@ -3289,14 +2904,14 @@
readonly type: 'FixedPart' | 'SlotPart';
}
- /** @name RmrkTraitsPartFixedPart (387) */
+ /** @name RmrkTraitsPartFixedPart (310) */
interface RmrkTraitsPartFixedPart extends Struct {
readonly id: u32;
readonly z: u32;
readonly src: Bytes;
}
- /** @name RmrkTraitsPartSlotPart (388) */
+ /** @name RmrkTraitsPartSlotPart (311) */
interface RmrkTraitsPartSlotPart extends Struct {
readonly id: u32;
readonly equippable: RmrkTraitsPartEquippableList;
@@ -3304,7 +2919,7 @@
readonly z: u32;
}
- /** @name RmrkTraitsPartEquippableList (389) */
+ /** @name RmrkTraitsPartEquippableList (312) */
interface RmrkTraitsPartEquippableList extends Enum {
readonly isAll: boolean;
readonly isEmpty: boolean;
@@ -3313,20 +2928,20 @@
readonly type: 'All' | 'Empty' | 'Custom';
}
- /** @name RmrkTraitsTheme (391) */
+ /** @name RmrkTraitsTheme (314) */
interface RmrkTraitsTheme extends Struct {
readonly name: Bytes;
readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
readonly inherit: bool;
}
- /** @name RmrkTraitsThemeThemeProperty (393) */
+ /** @name RmrkTraitsThemeThemeProperty (316) */
interface RmrkTraitsThemeThemeProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name PalletAppPromotionCall (395) */
+ /** @name PalletAppPromotionCall (318) */
interface PalletAppPromotionCall extends Enum {
readonly isSetAdminAddress: boolean;
readonly asSetAdminAddress: {
@@ -3360,7 +2975,7 @@
readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
}
- /** @name PalletForeignAssetsModuleCall (396) */
+ /** @name PalletForeignAssetsModuleCall (319) */
interface PalletForeignAssetsModuleCall extends Enum {
readonly isRegisterForeignAsset: boolean;
readonly asRegisterForeignAsset: {
@@ -3377,7 +2992,7 @@
readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
}
- /** @name PalletEvmCall (397) */
+ /** @name PalletEvmCall (320) */
interface PalletEvmCall extends Enum {
readonly isWithdraw: boolean;
readonly asWithdraw: {
@@ -3422,7 +3037,7 @@
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
}
- /** @name PalletEthereumCall (403) */
+ /** @name PalletEthereumCall (326) */
interface PalletEthereumCall extends Enum {
readonly isTransact: boolean;
readonly asTransact: {
@@ -3431,7 +3046,7 @@
readonly type: 'Transact';
}
- /** @name EthereumTransactionTransactionV2 (404) */
+ /** @name EthereumTransactionTransactionV2 (327) */
interface EthereumTransactionTransactionV2 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -3442,7 +3057,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumTransactionLegacyTransaction (405) */
+ /** @name EthereumTransactionLegacyTransaction (328) */
interface EthereumTransactionLegacyTransaction extends Struct {
readonly nonce: U256;
readonly gasPrice: U256;
@@ -3453,7 +3068,7 @@
readonly signature: EthereumTransactionTransactionSignature;
}
- /** @name EthereumTransactionTransactionAction (406) */
+ /** @name EthereumTransactionTransactionAction (329) */
interface EthereumTransactionTransactionAction extends Enum {
readonly isCall: boolean;
readonly asCall: H160;
@@ -3461,14 +3076,14 @@
readonly type: 'Call' | 'Create';
}
- /** @name EthereumTransactionTransactionSignature (407) */
+ /** @name EthereumTransactionTransactionSignature (330) */
interface EthereumTransactionTransactionSignature extends Struct {
readonly v: u64;
readonly r: H256;
readonly s: H256;
}
- /** @name EthereumTransactionEip2930Transaction (409) */
+ /** @name EthereumTransactionEip2930Transaction (332) */
interface EthereumTransactionEip2930Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3483,13 +3098,13 @@
readonly s: H256;
}
- /** @name EthereumTransactionAccessListItem (411) */
+ /** @name EthereumTransactionAccessListItem (334) */
interface EthereumTransactionAccessListItem extends Struct {
readonly address: H160;
readonly storageKeys: Vec<H256>;
}
- /** @name EthereumTransactionEip1559Transaction (412) */
+ /** @name EthereumTransactionEip1559Transaction (335) */
interface EthereumTransactionEip1559Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3505,7 +3120,7 @@
readonly s: H256;
}
- /** @name PalletEvmMigrationCall (413) */
+ /** @name PalletEvmMigrationCall (336) */
interface PalletEvmMigrationCall extends Enum {
readonly isBegin: boolean;
readonly asBegin: {
@@ -3532,14 +3147,14 @@
readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';
}
- /** @name PalletMaintenanceCall (417) */
+ /** @name PalletMaintenanceCall (340) */
interface PalletMaintenanceCall extends Enum {
readonly isEnable: boolean;
readonly isDisable: boolean;
readonly type: 'Enable' | 'Disable';
}
- /** @name PalletTestUtilsCall (418) */
+ /** @name PalletTestUtilsCall (341) */
interface PalletTestUtilsCall extends Enum {
readonly isEnable: boolean;
readonly isSetTestValue: boolean;
@@ -3559,13 +3174,13 @@
readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';
}
- /** @name PalletSudoError (420) */
+ /** @name PalletSudoError (343) */
interface PalletSudoError extends Enum {
readonly isRequireSudo: boolean;
readonly type: 'RequireSudo';
}
- /** @name OrmlVestingModuleError (422) */
+ /** @name OrmlVestingModuleError (345) */
interface OrmlVestingModuleError extends Enum {
readonly isZeroVestingPeriod: boolean;
readonly isZeroVestingPeriodCount: boolean;
@@ -3576,7 +3191,7 @@
readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
}
- /** @name OrmlXtokensModuleError (423) */
+ /** @name OrmlXtokensModuleError (346) */
interface OrmlXtokensModuleError extends Enum {
readonly isAssetHasNoReserve: boolean;
readonly isNotCrossChainTransfer: boolean;
@@ -3600,26 +3215,26 @@
readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
}
- /** @name OrmlTokensBalanceLock (426) */
+ /** @name OrmlTokensBalanceLock (349) */
interface OrmlTokensBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name OrmlTokensAccountData (428) */
+ /** @name OrmlTokensAccountData (351) */
interface OrmlTokensAccountData extends Struct {
readonly free: u128;
readonly reserved: u128;
readonly frozen: u128;
}
- /** @name OrmlTokensReserveData (430) */
+ /** @name OrmlTokensReserveData (353) */
interface OrmlTokensReserveData extends Struct {
readonly id: Null;
readonly amount: u128;
}
- /** @name OrmlTokensModuleError (432) */
+ /** @name OrmlTokensModuleError (355) */
interface OrmlTokensModuleError extends Enum {
readonly isBalanceTooLow: boolean;
readonly isAmountIntoBalanceFailed: boolean;
@@ -3632,21 +3247,21 @@
readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name CumulusPalletXcmpQueueInboundChannelDetails (434) */
+ /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */
interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
readonly sender: u32;
readonly state: CumulusPalletXcmpQueueInboundState;
readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
}
- /** @name CumulusPalletXcmpQueueInboundState (435) */
+ /** @name CumulusPalletXcmpQueueInboundState (358) */
interface CumulusPalletXcmpQueueInboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name PolkadotParachainPrimitivesXcmpMessageFormat (438) */
+ /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */
interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
readonly isConcatenatedVersionedXcm: boolean;
readonly isConcatenatedEncodedBlob: boolean;
@@ -3654,7 +3269,7 @@
readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
}
- /** @name CumulusPalletXcmpQueueOutboundChannelDetails (441) */
+ /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */
interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
readonly recipient: u32;
readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -3663,14 +3278,14 @@
readonly lastIndex: u16;
}
- /** @name CumulusPalletXcmpQueueOutboundState (442) */
+ /** @name CumulusPalletXcmpQueueOutboundState (365) */
interface CumulusPalletXcmpQueueOutboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name CumulusPalletXcmpQueueQueueConfigData (444) */
+ /** @name CumulusPalletXcmpQueueQueueConfigData (367) */
interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
readonly suspendThreshold: u32;
readonly dropThreshold: u32;
@@ -3680,7 +3295,7 @@
readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
}
- /** @name CumulusPalletXcmpQueueError (446) */
+ /** @name CumulusPalletXcmpQueueError (369) */
interface CumulusPalletXcmpQueueError extends Enum {
readonly isFailedToSend: boolean;
readonly isBadXcmOrigin: boolean;
@@ -3690,7 +3305,7 @@
readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
}
- /** @name PalletXcmError (447) */
+ /** @name PalletXcmError (370) */
interface PalletXcmError extends Enum {
readonly isUnreachable: boolean;
readonly isSendFailure: boolean;
@@ -3708,29 +3323,29 @@
readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
}
- /** @name CumulusPalletXcmError (448) */
+ /** @name CumulusPalletXcmError (371) */
type CumulusPalletXcmError = Null;
- /** @name CumulusPalletDmpQueueConfigData (449) */
+ /** @name CumulusPalletDmpQueueConfigData (372) */
interface CumulusPalletDmpQueueConfigData extends Struct {
readonly maxIndividual: SpWeightsWeightV2Weight;
}
- /** @name CumulusPalletDmpQueuePageIndexData (450) */
+ /** @name CumulusPalletDmpQueuePageIndexData (373) */
interface CumulusPalletDmpQueuePageIndexData extends Struct {
readonly beginUsed: u32;
readonly endUsed: u32;
readonly overweightCount: u64;
}
- /** @name CumulusPalletDmpQueueError (453) */
+ /** @name CumulusPalletDmpQueueError (376) */
interface CumulusPalletDmpQueueError extends Enum {
readonly isUnknown: boolean;
readonly isOverLimit: boolean;
readonly type: 'Unknown' | 'OverLimit';
}
- /** @name PalletUniqueError (457) */
+ /** @name PalletUniqueError (380) */
interface PalletUniqueError extends Enum {
readonly isCollectionDecimalPointLimitExceeded: boolean;
readonly isEmptyArgument: boolean;
@@ -3738,13 +3353,13 @@
readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
}
- /** @name PalletConfigurationError (458) */
+ /** @name PalletConfigurationError (381) */
interface PalletConfigurationError extends Enum {
readonly isInconsistentConfiguration: boolean;
readonly type: 'InconsistentConfiguration';
}
- /** @name UpDataStructsCollection (459) */
+ /** @name UpDataStructsCollection (382) */
interface UpDataStructsCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3757,7 +3372,7 @@
readonly flags: U8aFixed;
}
- /** @name UpDataStructsSponsorshipStateAccountId32 (460) */
+ /** @name UpDataStructsSponsorshipStateAccountId32 (383) */
interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3767,43 +3382,43 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name UpDataStructsProperties (461) */
+ /** @name UpDataStructsProperties (385) */
interface UpDataStructsProperties extends Struct {
readonly map: UpDataStructsPropertiesMapBoundedVec;
readonly consumedSpace: u32;
readonly spaceLimit: u32;
}
- /** @name UpDataStructsPropertiesMapBoundedVec (462) */
+ /** @name UpDataStructsPropertiesMapBoundedVec (386) */
interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
- /** @name UpDataStructsPropertiesMapPropertyPermission (467) */
+ /** @name UpDataStructsPropertiesMapPropertyPermission (391) */
interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
- /** @name UpDataStructsCollectionStats (474) */
+ /** @name UpDataStructsCollectionStats (398) */
interface UpDataStructsCollectionStats extends Struct {
readonly created: u32;
readonly destroyed: u32;
readonly alive: u32;
}
- /** @name UpDataStructsTokenChild (475) */
+ /** @name UpDataStructsTokenChild (399) */
interface UpDataStructsTokenChild extends Struct {
readonly token: u32;
readonly collection: u32;
}
- /** @name PhantomTypeUpDataStructs (476) */
+ /** @name PhantomTypeUpDataStructs (400) */
interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild, UpPovEstimateRpcPovInfo]>> {}
- /** @name UpDataStructsTokenData (478) */
+ /** @name UpDataStructsTokenData (402) */
interface UpDataStructsTokenData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
readonly pieces: u128;
}
- /** @name UpDataStructsRpcCollection (480) */
+ /** @name UpDataStructsRpcCollection (404) */
interface UpDataStructsRpcCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3819,13 +3434,13 @@
readonly flags: UpDataStructsRpcCollectionFlags;
}
- /** @name UpDataStructsRpcCollectionFlags (481) */
+ /** @name UpDataStructsRpcCollectionFlags (405) */
interface UpDataStructsRpcCollectionFlags extends Struct {
readonly foreign: bool;
readonly erc721metadata: bool;
}
- /** @name RmrkTraitsCollectionCollectionInfo (482) */
+ /** @name RmrkTraitsCollectionCollectionInfo (406) */
interface RmrkTraitsCollectionCollectionInfo extends Struct {
readonly issuer: AccountId32;
readonly metadata: Bytes;
@@ -3834,7 +3449,7 @@
readonly nftsCount: u32;
}
- /** @name RmrkTraitsNftNftInfo (483) */
+ /** @name RmrkTraitsNftNftInfo (407) */
interface RmrkTraitsNftNftInfo extends Struct {
readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
@@ -3843,13 +3458,13 @@
readonly pending: bool;
}
- /** @name RmrkTraitsNftRoyaltyInfo (485) */
+ /** @name RmrkTraitsNftRoyaltyInfo (409) */
interface RmrkTraitsNftRoyaltyInfo extends Struct {
readonly recipient: AccountId32;
readonly amount: Permill;
}
- /** @name RmrkTraitsResourceResourceInfo (486) */
+ /** @name RmrkTraitsResourceResourceInfo (410) */
interface RmrkTraitsResourceResourceInfo extends Struct {
readonly id: u32;
readonly resource: RmrkTraitsResourceResourceTypes;
@@ -3857,26 +3472,26 @@
readonly pendingRemoval: bool;
}
- /** @name RmrkTraitsPropertyPropertyInfo (487) */
+ /** @name RmrkTraitsPropertyPropertyInfo (411) */
interface RmrkTraitsPropertyPropertyInfo extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name RmrkTraitsBaseBaseInfo (488) */
+ /** @name RmrkTraitsBaseBaseInfo (412) */
interface RmrkTraitsBaseBaseInfo extends Struct {
readonly issuer: AccountId32;
readonly baseType: Bytes;
readonly symbol: Bytes;
}
- /** @name RmrkTraitsNftNftChild (489) */
+ /** @name RmrkTraitsNftNftChild (413) */
interface RmrkTraitsNftNftChild extends Struct {
readonly collectionId: u32;
readonly nftId: u32;
}
- /** @name UpPovEstimateRpcPovInfo (490) */
+ /** @name UpPovEstimateRpcPovInfo (414) */
interface UpPovEstimateRpcPovInfo extends Struct {
readonly proofSize: u64;
readonly compactProofSize: u64;
@@ -3885,7 +3500,7 @@
readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;
}
- /** @name SpRuntimeTransactionValidityTransactionValidityError (493) */
+ /** @name SpRuntimeTransactionValidityTransactionValidityError (417) */
interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {
readonly isInvalid: boolean;
readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;
@@ -3894,7 +3509,7 @@
readonly type: 'Invalid' | 'Unknown';
}
- /** @name SpRuntimeTransactionValidityInvalidTransaction (494) */
+ /** @name SpRuntimeTransactionValidityInvalidTransaction (418) */
interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {
readonly isCall: boolean;
readonly isPayment: boolean;
@@ -3911,7 +3526,7 @@
readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';
}
- /** @name SpRuntimeTransactionValidityUnknownTransaction (495) */
+ /** @name SpRuntimeTransactionValidityUnknownTransaction (419) */
interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {
readonly isCannotLookup: boolean;
readonly isNoUnsignedValidator: boolean;
@@ -3920,13 +3535,13 @@
readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';
}
- /** @name UpPovEstimateRpcTrieKeyValue (497) */
+ /** @name UpPovEstimateRpcTrieKeyValue (421) */
interface UpPovEstimateRpcTrieKeyValue extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name PalletCommonError (499) */
+ /** @name PalletCommonError (423) */
interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -3967,7 +3582,7 @@
readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
}
- /** @name PalletFungibleError (501) */
+ /** @name PalletFungibleError (425) */
interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -3979,7 +3594,7 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
}
- /** @name PalletRefungibleError (505) */
+ /** @name PalletRefungibleError (429) */
interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -3989,19 +3604,19 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (506) */
+ /** @name PalletNonfungibleItemData (430) */
interface PalletNonfungibleItemData extends Struct {
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsPropertyScope (508) */
+ /** @name UpDataStructsPropertyScope (432) */
interface UpDataStructsPropertyScope extends Enum {
readonly isNone: boolean;
readonly isRmrk: boolean;
readonly type: 'None' | 'Rmrk';
}
- /** @name PalletNonfungibleError (511) */
+ /** @name PalletNonfungibleError (435) */
interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -4009,7 +3624,7 @@
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
}
- /** @name PalletStructureError (512) */
+ /** @name PalletStructureError (436) */
interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -4018,7 +3633,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
}
- /** @name PalletRmrkCoreError (513) */
+ /** @name PalletRmrkCoreError (437) */
interface PalletRmrkCoreError extends Enum {
readonly isCorruptedCollectionType: boolean;
readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -4042,7 +3657,7 @@
readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
}
- /** @name PalletRmrkEquipError (515) */
+ /** @name PalletRmrkEquipError (439) */
interface PalletRmrkEquipError extends Enum {
readonly isPermissionError: boolean;
readonly isNoAvailableBaseId: boolean;
@@ -4054,7 +3669,7 @@
readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
}
- /** @name PalletAppPromotionError (521) */
+ /** @name PalletAppPromotionError (445) */
interface PalletAppPromotionError extends Enum {
readonly isAdminNotSet: boolean;
readonly isNoPermission: boolean;
@@ -4065,7 +3680,7 @@
readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
}
- /** @name PalletForeignAssetsModuleError (522) */
+ /** @name PalletForeignAssetsModuleError (446) */
interface PalletForeignAssetsModuleError extends Enum {
readonly isBadLocation: boolean;
readonly isMultiLocationExisted: boolean;
@@ -4074,7 +3689,7 @@
readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
}
- /** @name PalletEvmError (524) */
+ /** @name PalletEvmError (448) */
interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -4090,7 +3705,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';
}
- /** @name FpRpcTransactionStatus (527) */
+ /** @name FpRpcTransactionStatus (451) */
interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -4101,10 +3716,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (529) */
+ /** @name EthbloomBloom (453) */
interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (531) */
+ /** @name EthereumReceiptReceiptV3 (455) */
interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -4115,7 +3730,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (532) */
+ /** @name EthereumReceiptEip658ReceiptData (456) */
interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -4123,14 +3738,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (533) */
+ /** @name EthereumBlock (457) */
interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (534) */
+ /** @name EthereumHeader (458) */
interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -4149,24 +3764,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (535) */
+ /** @name EthereumTypesHashH64 (459) */
interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (540) */
+ /** @name PalletEthereumError (464) */
interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (541) */
+ /** @name PalletEvmCoderSubstrateError (465) */
interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (542) */
+ /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (466) */
interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -4176,7 +3791,7 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (543) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (467) */
interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -4184,7 +3799,7 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (549) */
+ /** @name PalletEvmContractHelpersError (473) */
interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly isNoPendingSponsor: boolean;
@@ -4192,7 +3807,7 @@
readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
}
- /** @name PalletEvmMigrationError (550) */
+ /** @name PalletEvmMigrationError (474) */
interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
@@ -4200,17 +3815,17 @@
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
}
- /** @name PalletMaintenanceError (551) */
+ /** @name PalletMaintenanceError (475) */
type PalletMaintenanceError = Null;
- /** @name PalletTestUtilsError (552) */
+ /** @name PalletTestUtilsError (476) */
interface PalletTestUtilsError extends Enum {
readonly isTestPalletDisabled: boolean;
readonly isTriggerRollback: boolean;
readonly type: 'TestPalletDisabled' | 'TriggerRollback';
}
- /** @name SpRuntimeMultiSignature (554) */
+ /** @name SpRuntimeMultiSignature (478) */
interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -4221,43 +3836,43 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (555) */
+ /** @name SpCoreEd25519Signature (479) */
interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (557) */
+ /** @name SpCoreSr25519Signature (481) */
interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (558) */
+ /** @name SpCoreEcdsaSignature (482) */
interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (561) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (485) */
type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckTxVersion (562) */
+ /** @name FrameSystemExtensionsCheckTxVersion (486) */
type FrameSystemExtensionsCheckTxVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (563) */
+ /** @name FrameSystemExtensionsCheckGenesis (487) */
type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (566) */
+ /** @name FrameSystemExtensionsCheckNonce (490) */
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (567) */
+ /** @name FrameSystemExtensionsCheckWeight (491) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (568) */
+ /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (492) */
type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
- /** @name OpalRuntimeRuntimeCommonDataManagementFilterIdentity (569) */
- type OpalRuntimeRuntimeCommonDataManagementFilterIdentity = Null;
+ /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (493) */
+ type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (570) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (494) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (571) */
+ /** @name OpalRuntimeRuntime (495) */
type OpalRuntimeRuntime = Null;
- /** @name PalletEthereumFakeTransactionFinalizer (572) */
+ /** @name PalletEthereumFakeTransactionFinalizer (496) */
type PalletEthereumFakeTransactionFinalizer = Null;
} // declare module