difftreelog
test regenerate polkadot types
in: master
11 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
@@ -43,10 +43,25 @@
};
balances: {
/**
- * The minimum amount required to keep an account open.
+ * The minimum amount required to keep an account open. MUST BE GREATER THAN ZERO!
+ *
+ * If you *really* need it to be zero, you can enable the feature `insecure_zero_ed` for
+ * this pallet. However, you do so at your own risk: this will open up a major DoS vector.
+ * In case you have multiple sources of provider references, you may also get unexpected
+ * behaviour if you set this to zero.
+ *
+ * Bottom line: Do yourself a favour and make it at least one!
**/
existentialDeposit: u128 & AugmentedConst<ApiType>;
/**
+ * The maximum number of individual freeze locks that can exist on an account at any time.
+ **/
+ maxFreezes: u32 & AugmentedConst<ApiType>;
+ /**
+ * The maximum number of holds that can exist on an account at any time.
+ **/
+ maxHolds: u32 & AugmentedConst<ApiType>;
+ /**
* The maximum number of locks that should exist on an account.
* Not strictly enforced, but used for weight estimation.
**/
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -47,35 +47,43 @@
};
balances: {
/**
- * Beneficiary account must pre-exist
+ * Beneficiary account must pre-exist.
**/
DeadAccount: AugmentedError<ApiType>;
/**
- * Value too low to create account due to existential deposit
+ * Value too low to create account due to existential deposit.
**/
ExistentialDeposit: AugmentedError<ApiType>;
/**
- * A vesting schedule already exists for this account
+ * A vesting schedule already exists for this account.
**/
ExistingVestingSchedule: AugmentedError<ApiType>;
/**
+ * Transfer/payment would kill account.
+ **/
+ Expendability: AugmentedError<ApiType>;
+ /**
* Balance too low to send value.
**/
InsufficientBalance: AugmentedError<ApiType>;
/**
- * Transfer/payment would kill account
+ * Account liquidity restrictions prevent withdrawal.
**/
- KeepAlive: AugmentedError<ApiType>;
+ LiquidityRestrictions: AugmentedError<ApiType>;
+ /**
+ * Number of freezes exceed `MaxFreezes`.
+ **/
+ TooManyFreezes: AugmentedError<ApiType>;
/**
- * Account liquidity restrictions prevent withdrawal
+ * Number of holds exceed `MaxHolds`.
**/
- LiquidityRestrictions: AugmentedError<ApiType>;
+ TooManyHolds: AugmentedError<ApiType>;
/**
- * Number of named reserves exceed MaxReserves
+ * Number of named reserves exceed `MaxReserves`.
**/
TooManyReserves: AugmentedError<ApiType>;
/**
- * Vesting balance too high to send value
+ * Vesting balance too high to send value.
**/
VestingBalance: AugmentedError<ApiType>;
/**
@@ -591,7 +599,7 @@
};
parachainSystem: {
/**
- * The inherent which supplies the host configuration did not run this block
+ * The inherent which supplies the host configuration did not run this block.
**/
HostConfigurationNotAvailable: AugmentedError<ApiType>;
/**
@@ -603,16 +611,16 @@
**/
NotScheduled: AugmentedError<ApiType>;
/**
- * Attempt to upgrade validation function while existing upgrade pending
+ * Attempt to upgrade validation function while existing upgrade pending.
**/
OverlappingUpgrades: AugmentedError<ApiType>;
/**
- * Polkadot currently prohibits this parachain from upgrading its validation function
+ * Polkadot currently prohibits this parachain from upgrading its validation function.
**/
ProhibitedByPolkadot: AugmentedError<ApiType>;
/**
* The supplied validation function has compiled into a blob larger than Polkadot is
- * willing to run
+ * willing to run.
**/
TooBig: AugmentedError<ApiType>;
/**
@@ -620,7 +628,7 @@
**/
Unauthorized: AugmentedError<ApiType>;
/**
- * The inherent which supplies the validation data did not run this block
+ * The inherent which supplies the validation data did not run this block.
**/
ValidationDataNotAvailable: AugmentedError<ApiType>;
/**
tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-events.ts
+++ b/tests/src/interfaces/augment-api-events.ts
@@ -56,7 +56,11 @@
/**
* A balance was set by root.
**/
- BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128, reserved: u128], { who: AccountId32, free: u128, reserved: u128 }>;
+ BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128], { who: AccountId32, free: u128 }>;
+ /**
+ * Some amount was burned from an account.
+ **/
+ Burned: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
/**
* Some amount was deposited (e.g. for transaction fees).
**/
@@ -71,6 +75,26 @@
**/
Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;
/**
+ * Some balance was frozen.
+ **/
+ Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
+ /**
+ * Total issuance was increased by `amount`, creating a credit to be balanced.
+ **/
+ Issued: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;
+ /**
+ * Some balance was locked.
+ **/
+ Locked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
+ /**
+ * Some amount was minted into an account.
+ **/
+ Minted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
+ /**
+ * Total issuance was decreased by `amount`, creating a debt to be balanced.
+ **/
+ Rescinded: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;
+ /**
* Some balance was reserved (moved from free to reserved).
**/
Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
@@ -80,18 +104,38 @@
**/
ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;
/**
+ * Some amount was restored into an account.
+ **/
+ Restored: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
+ /**
* Some amount was removed from the account (e.g. for misbehavior).
**/
Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
/**
+ * Some amount was suspended from an account (it can be restored later).
+ **/
+ Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
+ /**
+ * Some balance was thawed.
+ **/
+ Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
+ /**
* Transfer succeeded.
**/
Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;
/**
+ * Some balance was unlocked.
+ **/
+ Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
+ /**
* Some balance was unreserved (moved from reserved to free).
**/
Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
/**
+ * An account was upgraded.
+ **/
+ Upgraded: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;
+ /**
* Some amount was withdrawn from the account (e.g. for transaction fees).
**/
Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
@@ -274,7 +318,7 @@
/**
* An ethereum transaction was successfully executed.
**/
- Executed: AugmentedEvent<ApiType, [from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason], { from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason }>;
+ Executed: AugmentedEvent<ApiType, [from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason, extraData: Bytes], { from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason, extraData: Bytes }>;
/**
* 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
@@ -10,7 +10,7 @@
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, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletPreimageRequestStatus, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV3MultiLocation, XcmVersionedAssetId, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesIdAmount, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletPreimageRequestStatus, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV3MultiLocation, XcmVersionedAssetId, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -55,7 +55,6 @@
* Stores the total staked amount.
**/
totalStaked: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;
- upgradedToReserves: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;
/**
* Generic query
**/
@@ -130,6 +129,14 @@
**/
account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PalletBalancesAccountData>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
/**
+ * Freeze locks on account balances.
+ **/
+ freezes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesIdAmount>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
+ /**
+ * Holds on account balances.
+ **/
+ holds: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesIdAmount>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
+ /**
* The total units of outstanding deactivated balance in the system.
**/
inactiveIssuance: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;
@@ -146,12 +153,6 @@
* The total units issued in the system.
**/
totalIssuance: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;
- /**
- * Generic query
- **/
- [key: string]: QueryableStorageEntry<ApiType>;
- };
- charging: {
/**
* Generic query
**/
@@ -565,7 +566,7 @@
/**
* The next authorized upgrade, if there is one.
**/
- authorizedUpgrade: AugmentedQuery<ApiType, () => Observable<Option<H256>>, []> & QueryableStorageEntry<ApiType, []>;
+ authorizedUpgrade: AugmentedQuery<ApiType, () => Observable<Option<CumulusPalletParachainSystemCodeUpgradeAuthorization>>, []> & QueryableStorageEntry<ApiType, []>;
/**
* A custom head data that should be returned as result of `validate_block`.
*
@@ -584,7 +585,7 @@
*
* This data is also absent from the genesis.
**/
- hostConfiguration: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV2AbridgedHostConfiguration>>, []> & QueryableStorageEntry<ApiType, []>;
+ hostConfiguration: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV4AbridgedHostConfiguration>>, []> & QueryableStorageEntry<ApiType, []>;
/**
* HRMP messages that were sent in a block.
*
@@ -680,7 +681,7 @@
* relay-chain. This value is ephemeral which means it doesn't hit the storage. This value is
* set after the inherent.
**/
- upgradeRestrictionSignal: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV2UpgradeRestriction>>, []> & QueryableStorageEntry<ApiType, []>;
+ upgradeRestrictionSignal: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV4UpgradeRestriction>>, []> & QueryableStorageEntry<ApiType, []>;
/**
* Upward messages that were sent in a block.
*
@@ -692,7 +693,7 @@
* This value is expected to be set only once per block and it's never stored
* in the trie.
**/
- validationData: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV2PersistedValidationData>>, []> & QueryableStorageEntry<ApiType, []>;
+ validationData: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV4PersistedValidationData>>, []> & QueryableStorageEntry<ApiType, []>;
/**
* Generic query
**/
@@ -751,6 +752,10 @@
**/
versionNotifyTargets: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => Observable<Option<ITuple<[u64, SpWeightsWeightV2Weight, u32]>>>, [u32, XcmVersionedMultiLocation]> & QueryableStorageEntry<ApiType, [u32, XcmVersionedMultiLocation]>;
/**
+ * Global suspension state of the XCM executor.
+ **/
+ xcmExecutionSuspended: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;
+ /**
* Generic query
**/
[key: string]: QueryableStorageEntry<ApiType>;
@@ -1062,11 +1067,6 @@
* Last sponsoring of token property setting // todo:doc rephrase this and the following
**/
tokenPropertyBasket: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
- /**
- * Variable metadata sponsoring
- * Collection id (controlled?2), token id (controlled?2)
- **/
- variableMetaDataBasket: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
/**
* Generic query
**/
tests/src/interfaces/augment-api-runtime.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-runtime.ts
+++ b/tests/src/interfaces/augment-api-runtime.ts
@@ -181,13 +181,21 @@
**/
[key: string]: DecoratedCallBase<ApiType>;
};
- /** 0x37e397fc7c91f5e4/1 */
+ /** 0x37e397fc7c91f5e4/2 */
metadata: {
/**
* Returns the metadata of a runtime
**/
metadata: AugmentedCall<ApiType, () => Observable<OpaqueMetadata>>;
/**
+ * Returns the metadata at a given version.
+ **/
+ metadataAtVersion: AugmentedCall<ApiType, (version: u32 | AnyNumber | Uint8Array) => Observable<Option<OpaqueMetadata>>>;
+ /**
+ * Returns the supported metadata versions.
+ **/
+ metadataVersions: AugmentedCall<ApiType, () => Observable<Vec<u32>>>;
+ /**
* Generic call
**/
[key: string]: DecoratedCallBase<ApiType>;
@@ -229,7 +237,7 @@
**/
[key: string]: DecoratedCallBase<ApiType>;
};
- /** 0x37c8bb1350a9a2a8/3 */
+ /** 0x37c8bb1350a9a2a8/4 */
transactionPaymentApi: {
/**
* The transaction fee details
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -132,12 +132,15 @@
};
balances: {
/**
- * Exactly as `transfer`, except the origin must be root and the source account may be
- * specified.
- * ## Complexity
- * - Same as transfer, but additional read and write because the source account is not
- * assumed to be in the overlay.
+ * Set the regular balance of a given account.
+ *
+ * The dispatch origin for this call is `root`.
**/
+ forceSetBalance: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
+ /**
+ * Exactly as `transfer_allow_death`, except the origin must be root and the source account
+ * may be specified.
+ **/
forceTransfer: AugmentedSubmittable<(source: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Compact<u128>]>;
/**
* Unreserve some balance from a user by force.
@@ -146,39 +149,18 @@
**/
forceUnreserve: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u128]>;
/**
- * Set the balances of a given account.
+ * Set the regular balance of a given account; it also takes a reserved balance but this
+ * must be the same as the account's current reserved balance.
*
- * This will alter `FreeBalance` and `ReservedBalance` in storage. it will
- * also alter the total issuance of the system (`TotalIssuance`) appropriately.
- * If the new free or reserved balance is below the existential deposit,
- * it will reset the account nonce (`frame_system::AccountNonce`).
+ * The dispatch origin for this call is `root`.
*
- * The dispatch origin for this call is `root`.
+ * WARNING: This call is DEPRECATED! Use `force_set_balance` instead.
**/
- setBalance: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array, newReserved: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>, Compact<u128>]>;
+ setBalanceDeprecated: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array, oldReserved: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>, Compact<u128>]>;
/**
- * Transfer some liquid free balance to another account.
+ * Alias for `transfer_allow_death`, provided only for name-wise compatibility.
*
- * `transfer` will set the `FreeBalance` of the sender and receiver.
- * If the sender's account is below the existential deposit as a result
- * of the transfer, the account will be reaped.
- *
- * The dispatch origin for this call must be `Signed` by the transactor.
- *
- * ## Complexity
- * - Dependent on arguments but not critical, given proper implementations for input config
- * types. See related functions below.
- * - It contains a limited number of reads and writes internally and no complex
- * computation.
- *
- * Related functions:
- *
- * - `ensure_can_withdraw` is always called internally but has a bounded complexity.
- * - Transferring balances to accounts that did not exist before will cause
- * `T::OnNewAccount::on_new_account` to be called.
- * - Removing enough funds from an account will trigger `T::DustRemoval::on_unbalanced`.
- * - `transfer_keep_alive` works the same way as `transfer`, but has an additional check
- * that the transfer will not kill the origin account.
+ * WARNING: DEPRECATED! Will be released in approximately 3 months.
**/
transfer: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
/**
@@ -196,25 +178,39 @@
* - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
* of the funds the account has, causing the sender account to be killed (false), or
* transfer everything except at least the existential deposit, which will guarantee to
- * keep the sender account alive (true). ## Complexity
- * - O(1). Just like transfer, but reading the user's transferable balance first.
+ * keep the sender account alive (true).
**/
transferAll: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;
/**
- * Same as the [`transfer`] call, but with a check that the transfer will not kill the
- * origin account.
+ * Transfer some liquid free balance to another account.
+ *
+ * `transfer_allow_death` will set the `FreeBalance` of the sender and receiver.
+ * If the sender's account is below the existential deposit as a result
+ * of the transfer, the account will be reaped.
+ *
+ * The dispatch origin for this call must be `Signed` by the transactor.
+ **/
+ transferAllowDeath: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
+ /**
+ * Same as the [`transfer_allow_death`] call, but with a check that the transfer will not
+ * kill the origin account.
*
- * 99% of the time you want [`transfer`] instead.
+ * 99% of the time you want [`transfer_allow_death`] instead.
*
- * [`transfer`]: struct.Pallet.html#method.transfer
+ * [`transfer_allow_death`]: struct.Pallet.html#method.transfer
**/
transferKeepAlive: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
/**
- * Generic tx
+ * Upgrade a specified account.
+ *
+ * - `origin`: Must be `Signed`.
+ * - `who`: The account to be upgraded.
+ *
+ * This will waive the transaction fee if at least all but 10% of the accounts needed to
+ * be upgraded. (We let some not have to be upgraded just in order to allow for the
+ * possibililty of churn).
**/
- [key: string]: SubmittableExtrinsicFunction<ApiType>;
- };
- charging: {
+ upgradeAccounts: AugmentedSubmittable<(who: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
/**
* Generic tx
**/
@@ -722,7 +718,28 @@
[key: string]: SubmittableExtrinsicFunction<ApiType>;
};
parachainSystem: {
- authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;
+ /**
+ * Authorize an upgrade to a given `code_hash` for the runtime. The runtime can be supplied
+ * later.
+ *
+ * The `check_version` parameter sets a boolean flag for whether or not the runtime's spec
+ * version and name should be verified on upgrade. Since the authorization only has a hash,
+ * it cannot actually perform the verification.
+ *
+ * This call requires Root origin.
+ **/
+ authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array, checkVersion: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256, bool]>;
+ /**
+ * Provide the preimage (runtime binary) `code` for an upgrade that has been authorized.
+ *
+ * If the authorization required a version check, this call will ensure the spec name
+ * remains unchanged and that the spec version has increased.
+ *
+ * Note that this function will not apply the new `code`, but only attempt to schedule the
+ * upgrade with the Relay Chain.
+ *
+ * All origins are allowed.
+ **/
enactAuthorizedUpgrade: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
/**
* Set the current validation data.
@@ -761,22 +778,29 @@
* Set a safe XCM version (the version that XCM should be encoded with if the most recent
* version a destination can accept is unknown).
*
- * - `origin`: Must be Root.
+ * - `origin`: Must be an origin specified by AdminOrigin.
* - `maybe_xcm_version`: The default XCM encoding version, or `None` to disable.
**/
forceDefaultXcmVersion: AugmentedSubmittable<(maybeXcmVersion: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;
/**
* Ask a location to notify us regarding their XCM version and any changes to it.
*
- * - `origin`: Must be Root.
+ * - `origin`: Must be an origin specified by AdminOrigin.
* - `location`: The location to which we should subscribe for XCM version notifications.
**/
forceSubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation]>;
/**
+ * Set or unset the global suspension state of the XCM executor.
+ *
+ * - `origin`: Must be an origin specified by AdminOrigin.
+ * - `suspended`: `true` to suspend, `false` to resume.
+ **/
+ forceSuspension: AugmentedSubmittable<(suspended: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [bool]>;
+ /**
* Require that a particular destination should no longer notify us regarding any XCM
* version changes.
*
- * - `origin`: Must be Root.
+ * - `origin`: Must be an origin specified by AdminOrigin.
* - `location`: The location to which we are currently subscribed for XCM version
* notifications which we no longer desire.
**/
@@ -785,7 +809,7 @@
* Extoll that a particular destination can be communicated with through a particular
* version of XCM.
*
- * - `origin`: Must be Root.
+ * - `origin`: Must be an origin specified by AdminOrigin.
* - `location`: The destination that is being described.
* - `xcm_version`: The latest version of XCM that `location` supports.
**/
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, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, 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, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, 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, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, 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, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from './default';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, 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, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, 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, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, 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, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from './default';
import type { Data, StorageKey } from '@polkadot/types';
import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, ISize, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, isize, 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';
@@ -35,13 +35,14 @@
import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';
import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';
import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';
+import type { FungiblesAccessError } from '@polkadot/types/interfaces/fungibles';
import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';
import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';
import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';
import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';
import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';
import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';
-import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';
+import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV15, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletMetadataV15, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, RuntimeApiMetadataLatest, RuntimeApiMetadataV15, RuntimeApiMethodMetadataV15, RuntimeApiMethodParamMetadataV15, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';
import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrHash, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';
import type { NftCollectionId, NftItemId } from '@polkadot/types/interfaces/nfts';
import type { NpApiError, NpPoolId } from '@polkadot/types/interfaces/nompools';
@@ -327,6 +328,7 @@
CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;
CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;
CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;
+ CumulusPalletParachainSystemCodeUpgradeAuthorization: CumulusPalletParachainSystemCodeUpgradeAuthorization;
CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;
CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;
CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;
@@ -569,6 +571,7 @@
FungibilityV0: FungibilityV0;
FungibilityV1: FungibilityV1;
FungibilityV2: FungibilityV2;
+ FungiblesAccessError: FungiblesAccessError;
Gas: Gas;
GiltBid: GiltBid;
GlobalValidationData: GlobalValidationData;
@@ -711,6 +714,7 @@
MetadataV12: MetadataV12;
MetadataV13: MetadataV13;
MetadataV14: MetadataV14;
+ MetadataV15: MetadataV15;
MetadataV9: MetadataV9;
MigrationStatusResult: MigrationStatusResult;
MmrBatchProof: MmrBatchProof;
@@ -836,6 +840,7 @@
PalletBalancesCall: PalletBalancesCall;
PalletBalancesError: PalletBalancesError;
PalletBalancesEvent: PalletBalancesEvent;
+ PalletBalancesIdAmount: PalletBalancesIdAmount;
PalletBalancesReasons: PalletBalancesReasons;
PalletBalancesReserveData: PalletBalancesReserveData;
PalletCallMetadataLatest: PalletCallMetadataLatest;
@@ -895,6 +900,7 @@
PalletMaintenanceEvent: PalletMaintenanceEvent;
PalletMetadataLatest: PalletMetadataLatest;
PalletMetadataV14: PalletMetadataV14;
+ PalletMetadataV15: PalletMetadataV15;
PalletNonfungibleError: PalletNonfungibleError;
PalletNonfungibleItemData: PalletNonfungibleItemData;
PalletPreimageCall: PalletPreimageCall;
@@ -914,7 +920,6 @@
PalletSudoCall: PalletSudoCall;
PalletSudoError: PalletSudoError;
PalletSudoEvent: PalletSudoEvent;
- PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;
PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;
PalletTestUtilsCall: PalletTestUtilsCall;
PalletTestUtilsError: PalletTestUtilsError;
@@ -983,10 +988,10 @@
PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;
PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;
- PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;
- PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;
- PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;
- PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;
+ PolkadotPrimitivesV4AbridgedHostConfiguration: PolkadotPrimitivesV4AbridgedHostConfiguration;
+ PolkadotPrimitivesV4AbridgedHrmpChannel: PolkadotPrimitivesV4AbridgedHrmpChannel;
+ PolkadotPrimitivesV4PersistedValidationData: PolkadotPrimitivesV4PersistedValidationData;
+ PolkadotPrimitivesV4UpgradeRestriction: PolkadotPrimitivesV4UpgradeRestriction;
PortableType: PortableType;
PortableTypeV14: PortableTypeV14;
Precommits: Precommits;
@@ -1073,6 +1078,10 @@
RoundSnapshot: RoundSnapshot;
RoundState: RoundState;
RpcMethods: RpcMethods;
+ RuntimeApiMetadataLatest: RuntimeApiMetadataLatest;
+ RuntimeApiMetadataV15: RuntimeApiMetadataV15;
+ RuntimeApiMethodMetadataV15: RuntimeApiMethodMetadataV15;
+ RuntimeApiMethodParamMetadataV15: RuntimeApiMethodParamMetadataV15;
RuntimeCall: RuntimeCall;
RuntimeDbWeight: RuntimeDbWeight;
RuntimeDispatchInfo: RuntimeDispatchInfo;
tests/src/interfaces/default/types.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { Data } from '@polkadot/types';5import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';6import type { ITuple } from '@polkadot/types-codec/types';7import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';8import type { Event } from '@polkadot/types/interfaces/system';910/** @name CumulusPalletDmpQueueCall */11export interface CumulusPalletDmpQueueCall extends Enum {12 readonly isServiceOverweight: boolean;13 readonly asServiceOverweight: {14 readonly index: u64;15 readonly weightLimit: SpWeightsWeightV2Weight;16 } & Struct;17 readonly type: 'ServiceOverweight';18}1920/** @name CumulusPalletDmpQueueConfigData */21export interface CumulusPalletDmpQueueConfigData extends Struct {22 readonly maxIndividual: SpWeightsWeightV2Weight;23}2425/** @name CumulusPalletDmpQueueError */26export interface CumulusPalletDmpQueueError extends Enum {27 readonly isUnknown: boolean;28 readonly isOverLimit: boolean;29 readonly type: 'Unknown' | 'OverLimit';30}3132/** @name CumulusPalletDmpQueueEvent */33export interface CumulusPalletDmpQueueEvent extends Enum {34 readonly isInvalidFormat: boolean;35 readonly asInvalidFormat: {36 readonly messageId: U8aFixed;37 } & Struct;38 readonly isUnsupportedVersion: boolean;39 readonly asUnsupportedVersion: {40 readonly messageId: U8aFixed;41 } & Struct;42 readonly isExecutedDownward: boolean;43 readonly asExecutedDownward: {44 readonly messageId: U8aFixed;45 readonly outcome: XcmV3TraitsOutcome;46 } & Struct;47 readonly isWeightExhausted: boolean;48 readonly asWeightExhausted: {49 readonly messageId: U8aFixed;50 readonly remainingWeight: SpWeightsWeightV2Weight;51 readonly requiredWeight: SpWeightsWeightV2Weight;52 } & Struct;53 readonly isOverweightEnqueued: boolean;54 readonly asOverweightEnqueued: {55 readonly messageId: U8aFixed;56 readonly overweightIndex: u64;57 readonly requiredWeight: SpWeightsWeightV2Weight;58 } & Struct;59 readonly isOverweightServiced: boolean;60 readonly asOverweightServiced: {61 readonly overweightIndex: u64;62 readonly weightUsed: SpWeightsWeightV2Weight;63 } & Struct;64 readonly isMaxMessagesExhausted: boolean;65 readonly asMaxMessagesExhausted: {66 readonly messageId: U8aFixed;67 } & Struct;68 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced' | 'MaxMessagesExhausted';69}7071/** @name CumulusPalletDmpQueuePageIndexData */72export interface CumulusPalletDmpQueuePageIndexData extends Struct {73 readonly beginUsed: u32;74 readonly endUsed: u32;75 readonly overweightCount: u64;76}7778/** @name CumulusPalletParachainSystemCall */79export interface CumulusPalletParachainSystemCall extends Enum {80 readonly isSetValidationData: boolean;81 readonly asSetValidationData: {82 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;83 } & Struct;84 readonly isSudoSendUpwardMessage: boolean;85 readonly asSudoSendUpwardMessage: {86 readonly message: Bytes;87 } & Struct;88 readonly isAuthorizeUpgrade: boolean;89 readonly asAuthorizeUpgrade: {90 readonly codeHash: H256;91 } & Struct;92 readonly isEnactAuthorizedUpgrade: boolean;93 readonly asEnactAuthorizedUpgrade: {94 readonly code: Bytes;95 } & Struct;96 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';97}9899/** @name CumulusPalletParachainSystemError */100export interface CumulusPalletParachainSystemError extends Enum {101 readonly isOverlappingUpgrades: boolean;102 readonly isProhibitedByPolkadot: boolean;103 readonly isTooBig: boolean;104 readonly isValidationDataNotAvailable: boolean;105 readonly isHostConfigurationNotAvailable: boolean;106 readonly isNotScheduled: boolean;107 readonly isNothingAuthorized: boolean;108 readonly isUnauthorized: boolean;109 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';110}111112/** @name CumulusPalletParachainSystemEvent */113export interface CumulusPalletParachainSystemEvent extends Enum {114 readonly isValidationFunctionStored: boolean;115 readonly isValidationFunctionApplied: boolean;116 readonly asValidationFunctionApplied: {117 readonly relayChainBlockNum: u32;118 } & Struct;119 readonly isValidationFunctionDiscarded: boolean;120 readonly isUpgradeAuthorized: boolean;121 readonly asUpgradeAuthorized: {122 readonly codeHash: H256;123 } & Struct;124 readonly isDownwardMessagesReceived: boolean;125 readonly asDownwardMessagesReceived: {126 readonly count: u32;127 } & Struct;128 readonly isDownwardMessagesProcessed: boolean;129 readonly asDownwardMessagesProcessed: {130 readonly weightUsed: SpWeightsWeightV2Weight;131 readonly dmqHead: H256;132 } & Struct;133 readonly isUpwardMessageSent: boolean;134 readonly asUpwardMessageSent: {135 readonly messageHash: Option<U8aFixed>;136 } & Struct;137 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed' | 'UpwardMessageSent';138}139140/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */141export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {142 readonly dmqMqcHead: H256;143 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;144 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;145 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;146}147148/** @name CumulusPalletXcmCall */149export interface CumulusPalletXcmCall extends Null {}150151/** @name CumulusPalletXcmError */152export interface CumulusPalletXcmError extends Null {}153154/** @name CumulusPalletXcmEvent */155export interface CumulusPalletXcmEvent extends Enum {156 readonly isInvalidFormat: boolean;157 readonly asInvalidFormat: U8aFixed;158 readonly isUnsupportedVersion: boolean;159 readonly asUnsupportedVersion: U8aFixed;160 readonly isExecutedDownward: boolean;161 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV3TraitsOutcome]>;162 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';163}164165/** @name CumulusPalletXcmpQueueCall */166export interface CumulusPalletXcmpQueueCall extends Enum {167 readonly isServiceOverweight: boolean;168 readonly asServiceOverweight: {169 readonly index: u64;170 readonly weightLimit: SpWeightsWeightV2Weight;171 } & Struct;172 readonly isSuspendXcmExecution: boolean;173 readonly isResumeXcmExecution: boolean;174 readonly isUpdateSuspendThreshold: boolean;175 readonly asUpdateSuspendThreshold: {176 readonly new_: u32;177 } & Struct;178 readonly isUpdateDropThreshold: boolean;179 readonly asUpdateDropThreshold: {180 readonly new_: u32;181 } & Struct;182 readonly isUpdateResumeThreshold: boolean;183 readonly asUpdateResumeThreshold: {184 readonly new_: u32;185 } & Struct;186 readonly isUpdateThresholdWeight: boolean;187 readonly asUpdateThresholdWeight: {188 readonly new_: SpWeightsWeightV2Weight;189 } & Struct;190 readonly isUpdateWeightRestrictDecay: boolean;191 readonly asUpdateWeightRestrictDecay: {192 readonly new_: SpWeightsWeightV2Weight;193 } & Struct;194 readonly isUpdateXcmpMaxIndividualWeight: boolean;195 readonly asUpdateXcmpMaxIndividualWeight: {196 readonly new_: SpWeightsWeightV2Weight;197 } & Struct;198 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';199}200201/** @name CumulusPalletXcmpQueueError */202export interface CumulusPalletXcmpQueueError extends Enum {203 readonly isFailedToSend: boolean;204 readonly isBadXcmOrigin: boolean;205 readonly isBadXcm: boolean;206 readonly isBadOverweightIndex: boolean;207 readonly isWeightOverLimit: boolean;208 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';209}210211/** @name CumulusPalletXcmpQueueEvent */212export interface CumulusPalletXcmpQueueEvent extends Enum {213 readonly isSuccess: boolean;214 readonly asSuccess: {215 readonly messageHash: Option<U8aFixed>;216 readonly weight: SpWeightsWeightV2Weight;217 } & Struct;218 readonly isFail: boolean;219 readonly asFail: {220 readonly messageHash: Option<U8aFixed>;221 readonly error: XcmV3TraitsError;222 readonly weight: SpWeightsWeightV2Weight;223 } & Struct;224 readonly isBadVersion: boolean;225 readonly asBadVersion: {226 readonly messageHash: Option<U8aFixed>;227 } & Struct;228 readonly isBadFormat: boolean;229 readonly asBadFormat: {230 readonly messageHash: Option<U8aFixed>;231 } & Struct;232 readonly isXcmpMessageSent: boolean;233 readonly asXcmpMessageSent: {234 readonly messageHash: Option<U8aFixed>;235 } & Struct;236 readonly isOverweightEnqueued: boolean;237 readonly asOverweightEnqueued: {238 readonly sender: u32;239 readonly sentAt: u32;240 readonly index: u64;241 readonly required: SpWeightsWeightV2Weight;242 } & Struct;243 readonly isOverweightServiced: boolean;244 readonly asOverweightServiced: {245 readonly index: u64;246 readonly used: SpWeightsWeightV2Weight;247 } & Struct;248 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';249}250251/** @name CumulusPalletXcmpQueueInboundChannelDetails */252export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {253 readonly sender: u32;254 readonly state: CumulusPalletXcmpQueueInboundState;255 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;256}257258/** @name CumulusPalletXcmpQueueInboundState */259export interface CumulusPalletXcmpQueueInboundState extends Enum {260 readonly isOk: boolean;261 readonly isSuspended: boolean;262 readonly type: 'Ok' | 'Suspended';263}264265/** @name CumulusPalletXcmpQueueOutboundChannelDetails */266export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {267 readonly recipient: u32;268 readonly state: CumulusPalletXcmpQueueOutboundState;269 readonly signalsExist: bool;270 readonly firstIndex: u16;271 readonly lastIndex: u16;272}273274/** @name CumulusPalletXcmpQueueOutboundState */275export interface CumulusPalletXcmpQueueOutboundState extends Enum {276 readonly isOk: boolean;277 readonly isSuspended: boolean;278 readonly type: 'Ok' | 'Suspended';279}280281/** @name CumulusPalletXcmpQueueQueueConfigData */282export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {283 readonly suspendThreshold: u32;284 readonly dropThreshold: u32;285 readonly resumeThreshold: u32;286 readonly thresholdWeight: SpWeightsWeightV2Weight;287 readonly weightRestrictDecay: SpWeightsWeightV2Weight;288 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;289}290291/** @name CumulusPrimitivesParachainInherentParachainInherentData */292export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {293 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;294 readonly relayChainState: SpTrieStorageProof;295 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;296 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;297}298299/** @name EthbloomBloom */300export interface EthbloomBloom extends U8aFixed {}301302/** @name EthereumBlock */303export interface EthereumBlock extends Struct {304 readonly header: EthereumHeader;305 readonly transactions: Vec<EthereumTransactionTransactionV2>;306 readonly ommers: Vec<EthereumHeader>;307}308309/** @name EthereumHeader */310export interface EthereumHeader extends Struct {311 readonly parentHash: H256;312 readonly ommersHash: H256;313 readonly beneficiary: H160;314 readonly stateRoot: H256;315 readonly transactionsRoot: H256;316 readonly receiptsRoot: H256;317 readonly logsBloom: EthbloomBloom;318 readonly difficulty: U256;319 readonly number: U256;320 readonly gasLimit: U256;321 readonly gasUsed: U256;322 readonly timestamp: u64;323 readonly extraData: Bytes;324 readonly mixHash: H256;325 readonly nonce: EthereumTypesHashH64;326}327328/** @name EthereumLog */329export interface EthereumLog extends Struct {330 readonly address: H160;331 readonly topics: Vec<H256>;332 readonly data: Bytes;333}334335/** @name EthereumReceiptEip658ReceiptData */336export interface EthereumReceiptEip658ReceiptData extends Struct {337 readonly statusCode: u8;338 readonly usedGas: U256;339 readonly logsBloom: EthbloomBloom;340 readonly logs: Vec<EthereumLog>;341}342343/** @name EthereumReceiptReceiptV3 */344export interface EthereumReceiptReceiptV3 extends Enum {345 readonly isLegacy: boolean;346 readonly asLegacy: EthereumReceiptEip658ReceiptData;347 readonly isEip2930: boolean;348 readonly asEip2930: EthereumReceiptEip658ReceiptData;349 readonly isEip1559: boolean;350 readonly asEip1559: EthereumReceiptEip658ReceiptData;351 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';352}353354/** @name EthereumTransactionAccessListItem */355export interface EthereumTransactionAccessListItem extends Struct {356 readonly address: H160;357 readonly storageKeys: Vec<H256>;358}359360/** @name EthereumTransactionEip1559Transaction */361export interface EthereumTransactionEip1559Transaction extends Struct {362 readonly chainId: u64;363 readonly nonce: U256;364 readonly maxPriorityFeePerGas: U256;365 readonly maxFeePerGas: U256;366 readonly gasLimit: U256;367 readonly action: EthereumTransactionTransactionAction;368 readonly value: U256;369 readonly input: Bytes;370 readonly accessList: Vec<EthereumTransactionAccessListItem>;371 readonly oddYParity: bool;372 readonly r: H256;373 readonly s: H256;374}375376/** @name EthereumTransactionEip2930Transaction */377export interface EthereumTransactionEip2930Transaction extends Struct {378 readonly chainId: u64;379 readonly nonce: U256;380 readonly gasPrice: U256;381 readonly gasLimit: U256;382 readonly action: EthereumTransactionTransactionAction;383 readonly value: U256;384 readonly input: Bytes;385 readonly accessList: Vec<EthereumTransactionAccessListItem>;386 readonly oddYParity: bool;387 readonly r: H256;388 readonly s: H256;389}390391/** @name EthereumTransactionLegacyTransaction */392export interface EthereumTransactionLegacyTransaction extends Struct {393 readonly nonce: U256;394 readonly gasPrice: U256;395 readonly gasLimit: U256;396 readonly action: EthereumTransactionTransactionAction;397 readonly value: U256;398 readonly input: Bytes;399 readonly signature: EthereumTransactionTransactionSignature;400}401402/** @name EthereumTransactionTransactionAction */403export interface EthereumTransactionTransactionAction extends Enum {404 readonly isCall: boolean;405 readonly asCall: H160;406 readonly isCreate: boolean;407 readonly type: 'Call' | 'Create';408}409410/** @name EthereumTransactionTransactionSignature */411export interface EthereumTransactionTransactionSignature extends Struct {412 readonly v: u64;413 readonly r: H256;414 readonly s: H256;415}416417/** @name EthereumTransactionTransactionV2 */418export interface EthereumTransactionTransactionV2 extends Enum {419 readonly isLegacy: boolean;420 readonly asLegacy: EthereumTransactionLegacyTransaction;421 readonly isEip2930: boolean;422 readonly asEip2930: EthereumTransactionEip2930Transaction;423 readonly isEip1559: boolean;424 readonly asEip1559: EthereumTransactionEip1559Transaction;425 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';426}427428/** @name EthereumTypesHashH64 */429export interface EthereumTypesHashH64 extends U8aFixed {}430431/** @name EvmCoreErrorExitError */432export interface EvmCoreErrorExitError extends Enum {433 readonly isStackUnderflow: boolean;434 readonly isStackOverflow: boolean;435 readonly isInvalidJump: boolean;436 readonly isInvalidRange: boolean;437 readonly isDesignatedInvalid: boolean;438 readonly isCallTooDeep: boolean;439 readonly isCreateCollision: boolean;440 readonly isCreateContractLimit: boolean;441 readonly isOutOfOffset: boolean;442 readonly isOutOfGas: boolean;443 readonly isOutOfFund: boolean;444 readonly isPcUnderflow: boolean;445 readonly isCreateEmpty: boolean;446 readonly isOther: boolean;447 readonly asOther: Text;448 readonly isInvalidCode: boolean;449 readonly asInvalidCode: u8;450 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';451}452453/** @name EvmCoreErrorExitFatal */454export interface EvmCoreErrorExitFatal extends Enum {455 readonly isNotSupported: boolean;456 readonly isUnhandledInterrupt: boolean;457 readonly isCallErrorAsFatal: boolean;458 readonly asCallErrorAsFatal: EvmCoreErrorExitError;459 readonly isOther: boolean;460 readonly asOther: Text;461 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';462}463464/** @name EvmCoreErrorExitReason */465export interface EvmCoreErrorExitReason extends Enum {466 readonly isSucceed: boolean;467 readonly asSucceed: EvmCoreErrorExitSucceed;468 readonly isError: boolean;469 readonly asError: EvmCoreErrorExitError;470 readonly isRevert: boolean;471 readonly asRevert: EvmCoreErrorExitRevert;472 readonly isFatal: boolean;473 readonly asFatal: EvmCoreErrorExitFatal;474 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';475}476477/** @name EvmCoreErrorExitRevert */478export interface EvmCoreErrorExitRevert extends Enum {479 readonly isReverted: boolean;480 readonly type: 'Reverted';481}482483/** @name EvmCoreErrorExitSucceed */484export interface EvmCoreErrorExitSucceed extends Enum {485 readonly isStopped: boolean;486 readonly isReturned: boolean;487 readonly isSuicided: boolean;488 readonly type: 'Stopped' | 'Returned' | 'Suicided';489}490491/** @name FpRpcTransactionStatus */492export interface FpRpcTransactionStatus extends Struct {493 readonly transactionHash: H256;494 readonly transactionIndex: u32;495 readonly from: H160;496 readonly to: Option<H160>;497 readonly contractAddress: Option<H160>;498 readonly logs: Vec<EthereumLog>;499 readonly logsBloom: EthbloomBloom;500}501502/** @name FrameSupportDispatchDispatchClass */503export interface FrameSupportDispatchDispatchClass extends Enum {504 readonly isNormal: boolean;505 readonly isOperational: boolean;506 readonly isMandatory: boolean;507 readonly type: 'Normal' | 'Operational' | 'Mandatory';508}509510/** @name FrameSupportDispatchDispatchInfo */511export interface FrameSupportDispatchDispatchInfo extends Struct {512 readonly weight: SpWeightsWeightV2Weight;513 readonly class: FrameSupportDispatchDispatchClass;514 readonly paysFee: FrameSupportDispatchPays;515}516517/** @name FrameSupportDispatchPays */518export interface FrameSupportDispatchPays extends Enum {519 readonly isYes: boolean;520 readonly isNo: boolean;521 readonly type: 'Yes' | 'No';522}523524/** @name FrameSupportDispatchPerDispatchClassU32 */525export interface FrameSupportDispatchPerDispatchClassU32 extends Struct {526 readonly normal: u32;527 readonly operational: u32;528 readonly mandatory: u32;529}530531/** @name FrameSupportDispatchPerDispatchClassWeight */532export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {533 readonly normal: SpWeightsWeightV2Weight;534 readonly operational: SpWeightsWeightV2Weight;535 readonly mandatory: SpWeightsWeightV2Weight;536}537538/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */539export interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {540 readonly normal: FrameSystemLimitsWeightsPerClass;541 readonly operational: FrameSystemLimitsWeightsPerClass;542 readonly mandatory: FrameSystemLimitsWeightsPerClass;543}544545/** @name FrameSupportPalletId */546export interface FrameSupportPalletId extends U8aFixed {}547548/** @name FrameSupportTokensMiscBalanceStatus */549export interface FrameSupportTokensMiscBalanceStatus extends Enum {550 readonly isFree: boolean;551 readonly isReserved: boolean;552 readonly type: 'Free' | 'Reserved';553}554555/** @name FrameSystemAccountInfo */556export interface FrameSystemAccountInfo extends Struct {557 readonly nonce: u32;558 readonly consumers: u32;559 readonly providers: u32;560 readonly sufficients: u32;561 readonly data: PalletBalancesAccountData;562}563564/** @name FrameSystemCall */565export interface FrameSystemCall extends Enum {566 readonly isRemark: boolean;567 readonly asRemark: {568 readonly remark: Bytes;569 } & Struct;570 readonly isSetHeapPages: boolean;571 readonly asSetHeapPages: {572 readonly pages: u64;573 } & Struct;574 readonly isSetCode: boolean;575 readonly asSetCode: {576 readonly code: Bytes;577 } & Struct;578 readonly isSetCodeWithoutChecks: boolean;579 readonly asSetCodeWithoutChecks: {580 readonly code: Bytes;581 } & Struct;582 readonly isSetStorage: boolean;583 readonly asSetStorage: {584 readonly items: Vec<ITuple<[Bytes, Bytes]>>;585 } & Struct;586 readonly isKillStorage: boolean;587 readonly asKillStorage: {588 readonly keys_: Vec<Bytes>;589 } & Struct;590 readonly isKillPrefix: boolean;591 readonly asKillPrefix: {592 readonly prefix: Bytes;593 readonly subkeys: u32;594 } & Struct;595 readonly isRemarkWithEvent: boolean;596 readonly asRemarkWithEvent: {597 readonly remark: Bytes;598 } & Struct;599 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';600}601602/** @name FrameSystemError */603export interface FrameSystemError extends Enum {604 readonly isInvalidSpecName: boolean;605 readonly isSpecVersionNeedsToIncrease: boolean;606 readonly isFailedToExtractRuntimeVersion: boolean;607 readonly isNonDefaultComposite: boolean;608 readonly isNonZeroRefCount: boolean;609 readonly isCallFiltered: boolean;610 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';611}612613/** @name FrameSystemEvent */614export interface FrameSystemEvent extends Enum {615 readonly isExtrinsicSuccess: boolean;616 readonly asExtrinsicSuccess: {617 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;618 } & Struct;619 readonly isExtrinsicFailed: boolean;620 readonly asExtrinsicFailed: {621 readonly dispatchError: SpRuntimeDispatchError;622 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;623 } & Struct;624 readonly isCodeUpdated: boolean;625 readonly isNewAccount: boolean;626 readonly asNewAccount: {627 readonly account: AccountId32;628 } & Struct;629 readonly isKilledAccount: boolean;630 readonly asKilledAccount: {631 readonly account: AccountId32;632 } & Struct;633 readonly isRemarked: boolean;634 readonly asRemarked: {635 readonly sender: AccountId32;636 readonly hash_: H256;637 } & Struct;638 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';639}640641/** @name FrameSystemEventRecord */642export interface FrameSystemEventRecord extends Struct {643 readonly phase: FrameSystemPhase;644 readonly event: Event;645 readonly topics: Vec<H256>;646}647648/** @name FrameSystemExtensionsCheckGenesis */649export interface FrameSystemExtensionsCheckGenesis extends Null {}650651/** @name FrameSystemExtensionsCheckNonce */652export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}653654/** @name FrameSystemExtensionsCheckSpecVersion */655export interface FrameSystemExtensionsCheckSpecVersion extends Null {}656657/** @name FrameSystemExtensionsCheckTxVersion */658export interface FrameSystemExtensionsCheckTxVersion extends Null {}659660/** @name FrameSystemExtensionsCheckWeight */661export interface FrameSystemExtensionsCheckWeight extends Null {}662663/** @name FrameSystemLastRuntimeUpgradeInfo */664export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {665 readonly specVersion: Compact<u32>;666 readonly specName: Text;667}668669/** @name FrameSystemLimitsBlockLength */670export interface FrameSystemLimitsBlockLength extends Struct {671 readonly max: FrameSupportDispatchPerDispatchClassU32;672}673674/** @name FrameSystemLimitsBlockWeights */675export interface FrameSystemLimitsBlockWeights extends Struct {676 readonly baseBlock: SpWeightsWeightV2Weight;677 readonly maxBlock: SpWeightsWeightV2Weight;678 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;679}680681/** @name FrameSystemLimitsWeightsPerClass */682export interface FrameSystemLimitsWeightsPerClass extends Struct {683 readonly baseExtrinsic: SpWeightsWeightV2Weight;684 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;685 readonly maxTotal: Option<SpWeightsWeightV2Weight>;686 readonly reserved: Option<SpWeightsWeightV2Weight>;687}688689/** @name FrameSystemPhase */690export interface FrameSystemPhase extends Enum {691 readonly isApplyExtrinsic: boolean;692 readonly asApplyExtrinsic: u32;693 readonly isFinalization: boolean;694 readonly isInitialization: boolean;695 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';696}697698/** @name OpalRuntimeRuntime */699export interface OpalRuntimeRuntime extends Null {}700701/** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls */702export interface OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls extends Null {}703704/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */705export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}706707/** @name OpalRuntimeRuntimeCommonSessionKeys */708export interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {709 readonly aura: SpConsensusAuraSr25519AppSr25519Public;710}711712/** @name OrmlTokensAccountData */713export interface OrmlTokensAccountData extends Struct {714 readonly free: u128;715 readonly reserved: u128;716 readonly frozen: u128;717}718719/** @name OrmlTokensBalanceLock */720export interface OrmlTokensBalanceLock extends Struct {721 readonly id: U8aFixed;722 readonly amount: u128;723}724725/** @name OrmlTokensModuleCall */726export interface OrmlTokensModuleCall extends Enum {727 readonly isTransfer: boolean;728 readonly asTransfer: {729 readonly dest: MultiAddress;730 readonly currencyId: PalletForeignAssetsAssetIds;731 readonly amount: Compact<u128>;732 } & Struct;733 readonly isTransferAll: boolean;734 readonly asTransferAll: {735 readonly dest: MultiAddress;736 readonly currencyId: PalletForeignAssetsAssetIds;737 readonly keepAlive: bool;738 } & Struct;739 readonly isTransferKeepAlive: boolean;740 readonly asTransferKeepAlive: {741 readonly dest: MultiAddress;742 readonly currencyId: PalletForeignAssetsAssetIds;743 readonly amount: Compact<u128>;744 } & Struct;745 readonly isForceTransfer: boolean;746 readonly asForceTransfer: {747 readonly source: MultiAddress;748 readonly dest: MultiAddress;749 readonly currencyId: PalletForeignAssetsAssetIds;750 readonly amount: Compact<u128>;751 } & Struct;752 readonly isSetBalance: boolean;753 readonly asSetBalance: {754 readonly who: MultiAddress;755 readonly currencyId: PalletForeignAssetsAssetIds;756 readonly newFree: Compact<u128>;757 readonly newReserved: Compact<u128>;758 } & Struct;759 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';760}761762/** @name OrmlTokensModuleError */763export interface OrmlTokensModuleError extends Enum {764 readonly isBalanceTooLow: boolean;765 readonly isAmountIntoBalanceFailed: boolean;766 readonly isLiquidityRestrictions: boolean;767 readonly isMaxLocksExceeded: boolean;768 readonly isKeepAlive: boolean;769 readonly isExistentialDeposit: boolean;770 readonly isDeadAccount: boolean;771 readonly isTooManyReserves: boolean;772 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';773}774775/** @name OrmlTokensModuleEvent */776export interface OrmlTokensModuleEvent extends Enum {777 readonly isEndowed: boolean;778 readonly asEndowed: {779 readonly currencyId: PalletForeignAssetsAssetIds;780 readonly who: AccountId32;781 readonly amount: u128;782 } & Struct;783 readonly isDustLost: boolean;784 readonly asDustLost: {785 readonly currencyId: PalletForeignAssetsAssetIds;786 readonly who: AccountId32;787 readonly amount: u128;788 } & Struct;789 readonly isTransfer: boolean;790 readonly asTransfer: {791 readonly currencyId: PalletForeignAssetsAssetIds;792 readonly from: AccountId32;793 readonly to: AccountId32;794 readonly amount: u128;795 } & Struct;796 readonly isReserved: boolean;797 readonly asReserved: {798 readonly currencyId: PalletForeignAssetsAssetIds;799 readonly who: AccountId32;800 readonly amount: u128;801 } & Struct;802 readonly isUnreserved: boolean;803 readonly asUnreserved: {804 readonly currencyId: PalletForeignAssetsAssetIds;805 readonly who: AccountId32;806 readonly amount: u128;807 } & Struct;808 readonly isReserveRepatriated: boolean;809 readonly asReserveRepatriated: {810 readonly currencyId: PalletForeignAssetsAssetIds;811 readonly from: AccountId32;812 readonly to: AccountId32;813 readonly amount: u128;814 readonly status: FrameSupportTokensMiscBalanceStatus;815 } & Struct;816 readonly isBalanceSet: boolean;817 readonly asBalanceSet: {818 readonly currencyId: PalletForeignAssetsAssetIds;819 readonly who: AccountId32;820 readonly free: u128;821 readonly reserved: u128;822 } & Struct;823 readonly isTotalIssuanceSet: boolean;824 readonly asTotalIssuanceSet: {825 readonly currencyId: PalletForeignAssetsAssetIds;826 readonly amount: u128;827 } & Struct;828 readonly isWithdrawn: boolean;829 readonly asWithdrawn: {830 readonly currencyId: PalletForeignAssetsAssetIds;831 readonly who: AccountId32;832 readonly amount: u128;833 } & Struct;834 readonly isSlashed: boolean;835 readonly asSlashed: {836 readonly currencyId: PalletForeignAssetsAssetIds;837 readonly who: AccountId32;838 readonly freeAmount: u128;839 readonly reservedAmount: u128;840 } & Struct;841 readonly isDeposited: boolean;842 readonly asDeposited: {843 readonly currencyId: PalletForeignAssetsAssetIds;844 readonly who: AccountId32;845 readonly amount: u128;846 } & Struct;847 readonly isLockSet: boolean;848 readonly asLockSet: {849 readonly lockId: U8aFixed;850 readonly currencyId: PalletForeignAssetsAssetIds;851 readonly who: AccountId32;852 readonly amount: u128;853 } & Struct;854 readonly isLockRemoved: boolean;855 readonly asLockRemoved: {856 readonly lockId: U8aFixed;857 readonly currencyId: PalletForeignAssetsAssetIds;858 readonly who: AccountId32;859 } & Struct;860 readonly isLocked: boolean;861 readonly asLocked: {862 readonly currencyId: PalletForeignAssetsAssetIds;863 readonly who: AccountId32;864 readonly amount: u128;865 } & Struct;866 readonly isUnlocked: boolean;867 readonly asUnlocked: {868 readonly currencyId: PalletForeignAssetsAssetIds;869 readonly who: AccountId32;870 readonly amount: u128;871 } & Struct;872 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved' | 'Locked' | 'Unlocked';873}874875/** @name OrmlTokensReserveData */876export interface OrmlTokensReserveData extends Struct {877 readonly id: Null;878 readonly amount: u128;879}880881/** @name OrmlVestingModuleCall */882export interface OrmlVestingModuleCall extends Enum {883 readonly isClaim: boolean;884 readonly isVestedTransfer: boolean;885 readonly asVestedTransfer: {886 readonly dest: MultiAddress;887 readonly schedule: OrmlVestingVestingSchedule;888 } & Struct;889 readonly isUpdateVestingSchedules: boolean;890 readonly asUpdateVestingSchedules: {891 readonly who: MultiAddress;892 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;893 } & Struct;894 readonly isClaimFor: boolean;895 readonly asClaimFor: {896 readonly dest: MultiAddress;897 } & Struct;898 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';899}900901/** @name OrmlVestingModuleError */902export interface OrmlVestingModuleError extends Enum {903 readonly isZeroVestingPeriod: boolean;904 readonly isZeroVestingPeriodCount: boolean;905 readonly isInsufficientBalanceToLock: boolean;906 readonly isTooManyVestingSchedules: boolean;907 readonly isAmountLow: boolean;908 readonly isMaxVestingSchedulesExceeded: boolean;909 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';910}911912/** @name OrmlVestingModuleEvent */913export interface OrmlVestingModuleEvent extends Enum {914 readonly isVestingScheduleAdded: boolean;915 readonly asVestingScheduleAdded: {916 readonly from: AccountId32;917 readonly to: AccountId32;918 readonly vestingSchedule: OrmlVestingVestingSchedule;919 } & Struct;920 readonly isClaimed: boolean;921 readonly asClaimed: {922 readonly who: AccountId32;923 readonly amount: u128;924 } & Struct;925 readonly isVestingSchedulesUpdated: boolean;926 readonly asVestingSchedulesUpdated: {927 readonly who: AccountId32;928 } & Struct;929 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';930}931932/** @name OrmlVestingVestingSchedule */933export interface OrmlVestingVestingSchedule extends Struct {934 readonly start: u32;935 readonly period: u32;936 readonly periodCount: u32;937 readonly perPeriod: Compact<u128>;938}939940/** @name OrmlXtokensModuleCall */941export interface OrmlXtokensModuleCall extends Enum {942 readonly isTransfer: boolean;943 readonly asTransfer: {944 readonly currencyId: PalletForeignAssetsAssetIds;945 readonly amount: u128;946 readonly dest: XcmVersionedMultiLocation;947 readonly destWeightLimit: XcmV3WeightLimit;948 } & Struct;949 readonly isTransferMultiasset: boolean;950 readonly asTransferMultiasset: {951 readonly asset: XcmVersionedMultiAsset;952 readonly dest: XcmVersionedMultiLocation;953 readonly destWeightLimit: XcmV3WeightLimit;954 } & Struct;955 readonly isTransferWithFee: boolean;956 readonly asTransferWithFee: {957 readonly currencyId: PalletForeignAssetsAssetIds;958 readonly amount: u128;959 readonly fee: u128;960 readonly dest: XcmVersionedMultiLocation;961 readonly destWeightLimit: XcmV3WeightLimit;962 } & Struct;963 readonly isTransferMultiassetWithFee: boolean;964 readonly asTransferMultiassetWithFee: {965 readonly asset: XcmVersionedMultiAsset;966 readonly fee: XcmVersionedMultiAsset;967 readonly dest: XcmVersionedMultiLocation;968 readonly destWeightLimit: XcmV3WeightLimit;969 } & Struct;970 readonly isTransferMulticurrencies: boolean;971 readonly asTransferMulticurrencies: {972 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;973 readonly feeItem: u32;974 readonly dest: XcmVersionedMultiLocation;975 readonly destWeightLimit: XcmV3WeightLimit;976 } & Struct;977 readonly isTransferMultiassets: boolean;978 readonly asTransferMultiassets: {979 readonly assets: XcmVersionedMultiAssets;980 readonly feeItem: u32;981 readonly dest: XcmVersionedMultiLocation;982 readonly destWeightLimit: XcmV3WeightLimit;983 } & Struct;984 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';985}986987/** @name OrmlXtokensModuleError */988export interface OrmlXtokensModuleError extends Enum {989 readonly isAssetHasNoReserve: boolean;990 readonly isNotCrossChainTransfer: boolean;991 readonly isInvalidDest: boolean;992 readonly isNotCrossChainTransferableCurrency: boolean;993 readonly isUnweighableMessage: boolean;994 readonly isXcmExecutionFailed: boolean;995 readonly isCannotReanchor: boolean;996 readonly isInvalidAncestry: boolean;997 readonly isInvalidAsset: boolean;998 readonly isDestinationNotInvertible: boolean;999 readonly isBadVersion: boolean;1000 readonly isDistinctReserveForAssetAndFee: boolean;1001 readonly isZeroFee: boolean;1002 readonly isZeroAmount: boolean;1003 readonly isTooManyAssetsBeingSent: boolean;1004 readonly isAssetIndexNonExistent: boolean;1005 readonly isFeeNotEnough: boolean;1006 readonly isNotSupportedMultiLocation: boolean;1007 readonly isMinXcmFeeNotDefined: boolean;1008 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';1009}10101011/** @name OrmlXtokensModuleEvent */1012export interface OrmlXtokensModuleEvent extends Enum {1013 readonly isTransferredMultiAssets: boolean;1014 readonly asTransferredMultiAssets: {1015 readonly sender: AccountId32;1016 readonly assets: XcmV3MultiassetMultiAssets;1017 readonly fee: XcmV3MultiAsset;1018 readonly dest: XcmV3MultiLocation;1019 } & Struct;1020 readonly type: 'TransferredMultiAssets';1021}10221023/** @name PalletAppPromotionCall */1024export interface PalletAppPromotionCall extends Enum {1025 readonly isSetAdminAddress: boolean;1026 readonly asSetAdminAddress: {1027 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;1028 } & Struct;1029 readonly isStake: boolean;1030 readonly asStake: {1031 readonly amount: u128;1032 } & Struct;1033 readonly isUnstakeAll: boolean;1034 readonly isSponsorCollection: boolean;1035 readonly asSponsorCollection: {1036 readonly collectionId: u32;1037 } & Struct;1038 readonly isStopSponsoringCollection: boolean;1039 readonly asStopSponsoringCollection: {1040 readonly collectionId: u32;1041 } & Struct;1042 readonly isSponsorContract: boolean;1043 readonly asSponsorContract: {1044 readonly contractId: H160;1045 } & Struct;1046 readonly isStopSponsoringContract: boolean;1047 readonly asStopSponsoringContract: {1048 readonly contractId: H160;1049 } & Struct;1050 readonly isPayoutStakers: boolean;1051 readonly asPayoutStakers: {1052 readonly stakersNumber: Option<u8>;1053 } & Struct;1054 readonly isUnstakePartial: boolean;1055 readonly asUnstakePartial: {1056 readonly amount: u128;1057 } & Struct;1058 readonly type: 'SetAdminAddress' | 'Stake' | 'UnstakeAll' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers' | 'UnstakePartial';1059}10601061/** @name PalletAppPromotionError */1062export interface PalletAppPromotionError extends Enum {1063 readonly isAdminNotSet: boolean;1064 readonly isNoPermission: boolean;1065 readonly isNotSufficientFunds: boolean;1066 readonly isPendingForBlockOverflow: boolean;1067 readonly isSponsorNotSet: boolean;1068 readonly isIncorrectLockedBalanceOperation: boolean;1069 readonly isInsufficientStakedBalance: boolean;1070 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation' | 'InsufficientStakedBalance';1071}10721073/** @name PalletAppPromotionEvent */1074export interface PalletAppPromotionEvent extends Enum {1075 readonly isStakingRecalculation: boolean;1076 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1077 readonly isStake: boolean;1078 readonly asStake: ITuple<[AccountId32, u128]>;1079 readonly isUnstake: boolean;1080 readonly asUnstake: ITuple<[AccountId32, u128]>;1081 readonly isSetAdmin: boolean;1082 readonly asSetAdmin: AccountId32;1083 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1084}10851086/** @name PalletBalancesAccountData */1087export interface PalletBalancesAccountData extends Struct {1088 readonly free: u128;1089 readonly reserved: u128;1090 readonly miscFrozen: u128;1091 readonly feeFrozen: u128;1092}10931094/** @name PalletBalancesBalanceLock */1095export interface PalletBalancesBalanceLock extends Struct {1096 readonly id: U8aFixed;1097 readonly amount: u128;1098 readonly reasons: PalletBalancesReasons;1099}11001101/** @name PalletBalancesCall */1102export interface PalletBalancesCall extends Enum {1103 readonly isTransfer: boolean;1104 readonly asTransfer: {1105 readonly dest: MultiAddress;1106 readonly value: Compact<u128>;1107 } & Struct;1108 readonly isSetBalance: boolean;1109 readonly asSetBalance: {1110 readonly who: MultiAddress;1111 readonly newFree: Compact<u128>;1112 readonly newReserved: Compact<u128>;1113 } & Struct;1114 readonly isForceTransfer: boolean;1115 readonly asForceTransfer: {1116 readonly source: MultiAddress;1117 readonly dest: MultiAddress;1118 readonly value: Compact<u128>;1119 } & Struct;1120 readonly isTransferKeepAlive: boolean;1121 readonly asTransferKeepAlive: {1122 readonly dest: MultiAddress;1123 readonly value: Compact<u128>;1124 } & Struct;1125 readonly isTransferAll: boolean;1126 readonly asTransferAll: {1127 readonly dest: MultiAddress;1128 readonly keepAlive: bool;1129 } & Struct;1130 readonly isForceUnreserve: boolean;1131 readonly asForceUnreserve: {1132 readonly who: MultiAddress;1133 readonly amount: u128;1134 } & Struct;1135 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1136}11371138/** @name PalletBalancesError */1139export interface PalletBalancesError extends Enum {1140 readonly isVestingBalance: boolean;1141 readonly isLiquidityRestrictions: boolean;1142 readonly isInsufficientBalance: boolean;1143 readonly isExistentialDeposit: boolean;1144 readonly isKeepAlive: boolean;1145 readonly isExistingVestingSchedule: boolean;1146 readonly isDeadAccount: boolean;1147 readonly isTooManyReserves: boolean;1148 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1149}11501151/** @name PalletBalancesEvent */1152export interface PalletBalancesEvent extends Enum {1153 readonly isEndowed: boolean;1154 readonly asEndowed: {1155 readonly account: AccountId32;1156 readonly freeBalance: u128;1157 } & Struct;1158 readonly isDustLost: boolean;1159 readonly asDustLost: {1160 readonly account: AccountId32;1161 readonly amount: u128;1162 } & Struct;1163 readonly isTransfer: boolean;1164 readonly asTransfer: {1165 readonly from: AccountId32;1166 readonly to: AccountId32;1167 readonly amount: u128;1168 } & Struct;1169 readonly isBalanceSet: boolean;1170 readonly asBalanceSet: {1171 readonly who: AccountId32;1172 readonly free: u128;1173 readonly reserved: u128;1174 } & Struct;1175 readonly isReserved: boolean;1176 readonly asReserved: {1177 readonly who: AccountId32;1178 readonly amount: u128;1179 } & Struct;1180 readonly isUnreserved: boolean;1181 readonly asUnreserved: {1182 readonly who: AccountId32;1183 readonly amount: u128;1184 } & Struct;1185 readonly isReserveRepatriated: boolean;1186 readonly asReserveRepatriated: {1187 readonly from: AccountId32;1188 readonly to: AccountId32;1189 readonly amount: u128;1190 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;1191 } & Struct;1192 readonly isDeposit: boolean;1193 readonly asDeposit: {1194 readonly who: AccountId32;1195 readonly amount: u128;1196 } & Struct;1197 readonly isWithdraw: boolean;1198 readonly asWithdraw: {1199 readonly who: AccountId32;1200 readonly amount: u128;1201 } & Struct;1202 readonly isSlashed: boolean;1203 readonly asSlashed: {1204 readonly who: AccountId32;1205 readonly amount: u128;1206 } & Struct;1207 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';1208}12091210/** @name PalletBalancesReasons */1211export interface PalletBalancesReasons extends Enum {1212 readonly isFee: boolean;1213 readonly isMisc: boolean;1214 readonly isAll: boolean;1215 readonly type: 'Fee' | 'Misc' | 'All';1216}12171218/** @name PalletBalancesReserveData */1219export interface PalletBalancesReserveData extends Struct {1220 readonly id: U8aFixed;1221 readonly amount: u128;1222}12231224/** @name PalletCollatorSelectionCall */1225export interface PalletCollatorSelectionCall extends Enum {1226 readonly isAddInvulnerable: boolean;1227 readonly asAddInvulnerable: {1228 readonly new_: AccountId32;1229 } & Struct;1230 readonly isRemoveInvulnerable: boolean;1231 readonly asRemoveInvulnerable: {1232 readonly who: AccountId32;1233 } & Struct;1234 readonly isGetLicense: boolean;1235 readonly isOnboard: boolean;1236 readonly isOffboard: boolean;1237 readonly isReleaseLicense: boolean;1238 readonly isForceReleaseLicense: boolean;1239 readonly asForceReleaseLicense: {1240 readonly who: AccountId32;1241 } & Struct;1242 readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';1243}12441245/** @name PalletCollatorSelectionError */1246export interface PalletCollatorSelectionError extends Enum {1247 readonly isTooManyCandidates: boolean;1248 readonly isUnknown: boolean;1249 readonly isPermission: boolean;1250 readonly isAlreadyHoldingLicense: boolean;1251 readonly isNoLicense: boolean;1252 readonly isAlreadyCandidate: boolean;1253 readonly isNotCandidate: boolean;1254 readonly isTooManyInvulnerables: boolean;1255 readonly isTooFewInvulnerables: boolean;1256 readonly isAlreadyInvulnerable: boolean;1257 readonly isNotInvulnerable: boolean;1258 readonly isNoAssociatedValidatorId: boolean;1259 readonly isValidatorNotRegistered: boolean;1260 readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';1261}12621263/** @name PalletCollatorSelectionEvent */1264export interface PalletCollatorSelectionEvent extends Enum {1265 readonly isInvulnerableAdded: boolean;1266 readonly asInvulnerableAdded: {1267 readonly invulnerable: AccountId32;1268 } & Struct;1269 readonly isInvulnerableRemoved: boolean;1270 readonly asInvulnerableRemoved: {1271 readonly invulnerable: AccountId32;1272 } & Struct;1273 readonly isLicenseObtained: boolean;1274 readonly asLicenseObtained: {1275 readonly accountId: AccountId32;1276 readonly deposit: u128;1277 } & Struct;1278 readonly isLicenseReleased: boolean;1279 readonly asLicenseReleased: {1280 readonly accountId: AccountId32;1281 readonly depositReturned: u128;1282 } & Struct;1283 readonly isCandidateAdded: boolean;1284 readonly asCandidateAdded: {1285 readonly accountId: AccountId32;1286 } & Struct;1287 readonly isCandidateRemoved: boolean;1288 readonly asCandidateRemoved: {1289 readonly accountId: AccountId32;1290 } & Struct;1291 readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';1292}12931294/** @name PalletCommonError */1295export interface PalletCommonError extends Enum {1296 readonly isCollectionNotFound: boolean;1297 readonly isMustBeTokenOwner: boolean;1298 readonly isNoPermission: boolean;1299 readonly isCantDestroyNotEmptyCollection: boolean;1300 readonly isPublicMintingNotAllowed: boolean;1301 readonly isAddressNotInAllowlist: boolean;1302 readonly isCollectionNameLimitExceeded: boolean;1303 readonly isCollectionDescriptionLimitExceeded: boolean;1304 readonly isCollectionTokenPrefixLimitExceeded: boolean;1305 readonly isTotalCollectionsLimitExceeded: boolean;1306 readonly isCollectionAdminCountExceeded: boolean;1307 readonly isCollectionLimitBoundsExceeded: boolean;1308 readonly isOwnerPermissionsCantBeReverted: boolean;1309 readonly isTransferNotAllowed: boolean;1310 readonly isAccountTokenLimitExceeded: boolean;1311 readonly isCollectionTokenLimitExceeded: boolean;1312 readonly isMetadataFlagFrozen: boolean;1313 readonly isTokenNotFound: boolean;1314 readonly isTokenValueTooLow: boolean;1315 readonly isApprovedValueTooLow: boolean;1316 readonly isCantApproveMoreThanOwned: boolean;1317 readonly isAddressIsNotEthMirror: boolean;1318 readonly isAddressIsZero: boolean;1319 readonly isUnsupportedOperation: boolean;1320 readonly isNotSufficientFounds: boolean;1321 readonly isUserIsNotAllowedToNest: boolean;1322 readonly isSourceCollectionIsNotAllowedToNest: boolean;1323 readonly isCollectionFieldSizeExceeded: boolean;1324 readonly isNoSpaceForProperty: boolean;1325 readonly isPropertyLimitReached: boolean;1326 readonly isPropertyKeyIsTooLong: boolean;1327 readonly isInvalidCharacterInPropertyKey: boolean;1328 readonly isEmptyPropertyKey: boolean;1329 readonly isCollectionIsExternal: boolean;1330 readonly isCollectionIsInternal: boolean;1331 readonly isConfirmSponsorshipFail: boolean;1332 readonly isUserIsNotCollectionAdmin: boolean;1333 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsNotEthMirror' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';1334}13351336/** @name PalletCommonEvent */1337export interface PalletCommonEvent extends Enum {1338 readonly isCollectionCreated: boolean;1339 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1340 readonly isCollectionDestroyed: boolean;1341 readonly asCollectionDestroyed: u32;1342 readonly isItemCreated: boolean;1343 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1344 readonly isItemDestroyed: boolean;1345 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1346 readonly isTransfer: boolean;1347 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1348 readonly isApproved: boolean;1349 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1350 readonly isApprovedForAll: boolean;1351 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1352 readonly isCollectionPropertySet: boolean;1353 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1354 readonly isCollectionPropertyDeleted: boolean;1355 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1356 readonly isTokenPropertySet: boolean;1357 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1358 readonly isTokenPropertyDeleted: boolean;1359 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1360 readonly isPropertyPermissionSet: boolean;1361 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1362 readonly isAllowListAddressAdded: boolean;1363 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1364 readonly isAllowListAddressRemoved: boolean;1365 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1366 readonly isCollectionAdminAdded: boolean;1367 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1368 readonly isCollectionAdminRemoved: boolean;1369 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1370 readonly isCollectionLimitSet: boolean;1371 readonly asCollectionLimitSet: u32;1372 readonly isCollectionOwnerChanged: boolean;1373 readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1374 readonly isCollectionPermissionSet: boolean;1375 readonly asCollectionPermissionSet: u32;1376 readonly isCollectionSponsorSet: boolean;1377 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1378 readonly isSponsorshipConfirmed: boolean;1379 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1380 readonly isCollectionSponsorRemoved: boolean;1381 readonly asCollectionSponsorRemoved: u32;1382 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1383}13841385/** @name PalletConfigurationAppPromotionConfiguration */1386export interface PalletConfigurationAppPromotionConfiguration extends Struct {1387 readonly recalculationInterval: Option<u32>;1388 readonly pendingInterval: Option<u32>;1389 readonly intervalIncome: Option<Perbill>;1390 readonly maxStakersPerCalculation: Option<u8>;1391}13921393/** @name PalletConfigurationCall */1394export interface PalletConfigurationCall extends Enum {1395 readonly isSetWeightToFeeCoefficientOverride: boolean;1396 readonly asSetWeightToFeeCoefficientOverride: {1397 readonly coeff: Option<u64>;1398 } & Struct;1399 readonly isSetMinGasPriceOverride: boolean;1400 readonly asSetMinGasPriceOverride: {1401 readonly coeff: Option<u64>;1402 } & Struct;1403 readonly isSetAppPromotionConfigurationOverride: boolean;1404 readonly asSetAppPromotionConfigurationOverride: {1405 readonly configuration: PalletConfigurationAppPromotionConfiguration;1406 } & Struct;1407 readonly isSetCollatorSelectionDesiredCollators: boolean;1408 readonly asSetCollatorSelectionDesiredCollators: {1409 readonly max: Option<u32>;1410 } & Struct;1411 readonly isSetCollatorSelectionLicenseBond: boolean;1412 readonly asSetCollatorSelectionLicenseBond: {1413 readonly amount: Option<u128>;1414 } & Struct;1415 readonly isSetCollatorSelectionKickThreshold: boolean;1416 readonly asSetCollatorSelectionKickThreshold: {1417 readonly threshold: Option<u32>;1418 } & Struct;1419 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';1420}14211422/** @name PalletConfigurationError */1423export interface PalletConfigurationError extends Enum {1424 readonly isInconsistentConfiguration: boolean;1425 readonly type: 'InconsistentConfiguration';1426}14271428/** @name PalletConfigurationEvent */1429export interface PalletConfigurationEvent extends Enum {1430 readonly isNewDesiredCollators: boolean;1431 readonly asNewDesiredCollators: {1432 readonly desiredCollators: Option<u32>;1433 } & Struct;1434 readonly isNewCollatorLicenseBond: boolean;1435 readonly asNewCollatorLicenseBond: {1436 readonly bondCost: Option<u128>;1437 } & Struct;1438 readonly isNewCollatorKickThreshold: boolean;1439 readonly asNewCollatorKickThreshold: {1440 readonly lengthInBlocks: Option<u32>;1441 } & Struct;1442 readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';1443}14441445/** @name PalletEthereumCall */1446export interface PalletEthereumCall extends Enum {1447 readonly isTransact: boolean;1448 readonly asTransact: {1449 readonly transaction: EthereumTransactionTransactionV2;1450 } & Struct;1451 readonly type: 'Transact';1452}14531454/** @name PalletEthereumError */1455export interface PalletEthereumError extends Enum {1456 readonly isInvalidSignature: boolean;1457 readonly isPreLogExists: boolean;1458 readonly type: 'InvalidSignature' | 'PreLogExists';1459}14601461/** @name PalletEthereumEvent */1462export interface PalletEthereumEvent extends Enum {1463 readonly isExecuted: boolean;1464 readonly asExecuted: {1465 readonly from: H160;1466 readonly to: H160;1467 readonly transactionHash: H256;1468 readonly exitReason: EvmCoreErrorExitReason;1469 } & Struct;1470 readonly type: 'Executed';1471}14721473/** @name PalletEthereumFakeTransactionFinalizer */1474export interface PalletEthereumFakeTransactionFinalizer extends Null {}14751476/** @name PalletEvmAccountBasicCrossAccountIdRepr */1477export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1478 readonly isSubstrate: boolean;1479 readonly asSubstrate: AccountId32;1480 readonly isEthereum: boolean;1481 readonly asEthereum: H160;1482 readonly type: 'Substrate' | 'Ethereum';1483}14841485/** @name PalletEvmCall */1486export interface PalletEvmCall extends Enum {1487 readonly isWithdraw: boolean;1488 readonly asWithdraw: {1489 readonly address: H160;1490 readonly value: u128;1491 } & Struct;1492 readonly isCall: boolean;1493 readonly asCall: {1494 readonly source: H160;1495 readonly target: H160;1496 readonly input: Bytes;1497 readonly value: U256;1498 readonly gasLimit: u64;1499 readonly maxFeePerGas: U256;1500 readonly maxPriorityFeePerGas: Option<U256>;1501 readonly nonce: Option<U256>;1502 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1503 } & Struct;1504 readonly isCreate: boolean;1505 readonly asCreate: {1506 readonly source: H160;1507 readonly init: Bytes;1508 readonly value: U256;1509 readonly gasLimit: u64;1510 readonly maxFeePerGas: U256;1511 readonly maxPriorityFeePerGas: Option<U256>;1512 readonly nonce: Option<U256>;1513 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1514 } & Struct;1515 readonly isCreate2: boolean;1516 readonly asCreate2: {1517 readonly source: H160;1518 readonly init: Bytes;1519 readonly salt: H256;1520 readonly value: U256;1521 readonly gasLimit: u64;1522 readonly maxFeePerGas: U256;1523 readonly maxPriorityFeePerGas: Option<U256>;1524 readonly nonce: Option<U256>;1525 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1526 } & Struct;1527 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1528}15291530/** @name PalletEvmCoderSubstrateCall */1531export interface PalletEvmCoderSubstrateCall extends Enum {1532 readonly isEmptyCall: boolean;1533 readonly type: 'EmptyCall';1534}15351536/** @name PalletEvmCoderSubstrateError */1537export interface PalletEvmCoderSubstrateError extends Enum {1538 readonly isOutOfGas: boolean;1539 readonly isOutOfFund: boolean;1540 readonly type: 'OutOfGas' | 'OutOfFund';1541}15421543/** @name PalletEvmContractHelpersCall */1544export interface PalletEvmContractHelpersCall extends Enum {1545 readonly isMigrateFromSelfSponsoring: boolean;1546 readonly asMigrateFromSelfSponsoring: {1547 readonly addresses: Vec<H160>;1548 } & Struct;1549 readonly type: 'MigrateFromSelfSponsoring';1550}15511552/** @name PalletEvmContractHelpersError */1553export interface PalletEvmContractHelpersError extends Enum {1554 readonly isNoPermission: boolean;1555 readonly isNoPendingSponsor: boolean;1556 readonly isTooManyMethodsHaveSponsoredLimit: boolean;1557 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';1558}15591560/** @name PalletEvmContractHelpersEvent */1561export interface PalletEvmContractHelpersEvent extends Enum {1562 readonly isContractSponsorSet: boolean;1563 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1564 readonly isContractSponsorshipConfirmed: boolean;1565 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1566 readonly isContractSponsorRemoved: boolean;1567 readonly asContractSponsorRemoved: H160;1568 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1569}15701571/** @name PalletEvmContractHelpersSponsoringModeT */1572export interface PalletEvmContractHelpersSponsoringModeT extends Enum {1573 readonly isDisabled: boolean;1574 readonly isAllowlisted: boolean;1575 readonly isGenerous: boolean;1576 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';1577}15781579/** @name PalletEvmError */1580export interface PalletEvmError extends Enum {1581 readonly isBalanceLow: boolean;1582 readonly isFeeOverflow: boolean;1583 readonly isPaymentOverflow: boolean;1584 readonly isWithdrawFailed: boolean;1585 readonly isGasPriceTooLow: boolean;1586 readonly isInvalidNonce: boolean;1587 readonly isGasLimitTooLow: boolean;1588 readonly isGasLimitTooHigh: boolean;1589 readonly isUndefined: boolean;1590 readonly isReentrancy: boolean;1591 readonly isTransactionMustComeFromEOA: boolean;1592 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';1593}15941595/** @name PalletEvmEvent */1596export interface PalletEvmEvent extends Enum {1597 readonly isLog: boolean;1598 readonly asLog: {1599 readonly log: EthereumLog;1600 } & Struct;1601 readonly isCreated: boolean;1602 readonly asCreated: {1603 readonly address: H160;1604 } & Struct;1605 readonly isCreatedFailed: boolean;1606 readonly asCreatedFailed: {1607 readonly address: H160;1608 } & Struct;1609 readonly isExecuted: boolean;1610 readonly asExecuted: {1611 readonly address: H160;1612 } & Struct;1613 readonly isExecutedFailed: boolean;1614 readonly asExecutedFailed: {1615 readonly address: H160;1616 } & Struct;1617 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1618}16191620/** @name PalletEvmMigrationCall */1621export interface PalletEvmMigrationCall extends Enum {1622 readonly isBegin: boolean;1623 readonly asBegin: {1624 readonly address: H160;1625 } & Struct;1626 readonly isSetData: boolean;1627 readonly asSetData: {1628 readonly address: H160;1629 readonly data: Vec<ITuple<[H256, H256]>>;1630 } & Struct;1631 readonly isFinish: boolean;1632 readonly asFinish: {1633 readonly address: H160;1634 readonly code: Bytes;1635 } & Struct;1636 readonly isInsertEthLogs: boolean;1637 readonly asInsertEthLogs: {1638 readonly logs: Vec<EthereumLog>;1639 } & Struct;1640 readonly isInsertEvents: boolean;1641 readonly asInsertEvents: {1642 readonly events: Vec<Bytes>;1643 } & Struct;1644 readonly isRemoveRmrkData: boolean;1645 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents' | 'RemoveRmrkData';1646}16471648/** @name PalletEvmMigrationError */1649export interface PalletEvmMigrationError extends Enum {1650 readonly isAccountNotEmpty: boolean;1651 readonly isAccountIsNotMigrating: boolean;1652 readonly isBadEvent: boolean;1653 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';1654}16551656/** @name PalletEvmMigrationEvent */1657export interface PalletEvmMigrationEvent extends Enum {1658 readonly isTestEvent: boolean;1659 readonly type: 'TestEvent';1660}16611662/** @name PalletForeignAssetsAssetIds */1663export interface PalletForeignAssetsAssetIds extends Enum {1664 readonly isForeignAssetId: boolean;1665 readonly asForeignAssetId: u32;1666 readonly isNativeAssetId: boolean;1667 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;1668 readonly type: 'ForeignAssetId' | 'NativeAssetId';1669}16701671/** @name PalletForeignAssetsModuleAssetMetadata */1672export interface PalletForeignAssetsModuleAssetMetadata extends Struct {1673 readonly name: Bytes;1674 readonly symbol: Bytes;1675 readonly decimals: u8;1676 readonly minimalBalance: u128;1677}16781679/** @name PalletForeignAssetsModuleCall */1680export interface PalletForeignAssetsModuleCall extends Enum {1681 readonly isRegisterForeignAsset: boolean;1682 readonly asRegisterForeignAsset: {1683 readonly owner: AccountId32;1684 readonly location: XcmVersionedMultiLocation;1685 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1686 } & Struct;1687 readonly isUpdateForeignAsset: boolean;1688 readonly asUpdateForeignAsset: {1689 readonly foreignAssetId: u32;1690 readonly location: XcmVersionedMultiLocation;1691 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1692 } & Struct;1693 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';1694}16951696/** @name PalletForeignAssetsModuleError */1697export interface PalletForeignAssetsModuleError extends Enum {1698 readonly isBadLocation: boolean;1699 readonly isMultiLocationExisted: boolean;1700 readonly isAssetIdNotExists: boolean;1701 readonly isAssetIdExisted: boolean;1702 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';1703}17041705/** @name PalletForeignAssetsModuleEvent */1706export interface PalletForeignAssetsModuleEvent extends Enum {1707 readonly isForeignAssetRegistered: boolean;1708 readonly asForeignAssetRegistered: {1709 readonly assetId: u32;1710 readonly assetAddress: XcmV3MultiLocation;1711 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1712 } & Struct;1713 readonly isForeignAssetUpdated: boolean;1714 readonly asForeignAssetUpdated: {1715 readonly assetId: u32;1716 readonly assetAddress: XcmV3MultiLocation;1717 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1718 } & Struct;1719 readonly isAssetRegistered: boolean;1720 readonly asAssetRegistered: {1721 readonly assetId: PalletForeignAssetsAssetIds;1722 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1723 } & Struct;1724 readonly isAssetUpdated: boolean;1725 readonly asAssetUpdated: {1726 readonly assetId: PalletForeignAssetsAssetIds;1727 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1728 } & Struct;1729 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1730}17311732/** @name PalletForeignAssetsNativeCurrency */1733export interface PalletForeignAssetsNativeCurrency extends Enum {1734 readonly isHere: boolean;1735 readonly isParent: boolean;1736 readonly type: 'Here' | 'Parent';1737}17381739/** @name PalletFungibleError */1740export interface PalletFungibleError extends Enum {1741 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;1742 readonly isFungibleItemsHaveNoId: boolean;1743 readonly isFungibleItemsDontHaveData: boolean;1744 readonly isFungibleDisallowsNesting: boolean;1745 readonly isSettingPropertiesNotAllowed: boolean;1746 readonly isSettingAllowanceForAllNotAllowed: boolean;1747 readonly isFungibleTokensAreAlwaysValid: boolean;1748 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';1749}17501751/** @name PalletIdentityBitFlags */1752export interface PalletIdentityBitFlags extends Struct {1753 readonly _bitLength: 64;1754 readonly Display: 1;1755 readonly Legal: 2;1756 readonly Web: 4;1757 readonly Riot: 8;1758 readonly Email: 16;1759 readonly PgpFingerprint: 32;1760 readonly Image: 64;1761 readonly Twitter: 128;1762}17631764/** @name PalletIdentityCall */1765export interface PalletIdentityCall extends Enum {1766 readonly isAddRegistrar: boolean;1767 readonly asAddRegistrar: {1768 readonly account: MultiAddress;1769 } & Struct;1770 readonly isSetIdentity: boolean;1771 readonly asSetIdentity: {1772 readonly info: PalletIdentityIdentityInfo;1773 } & Struct;1774 readonly isSetSubs: boolean;1775 readonly asSetSubs: {1776 readonly subs: Vec<ITuple<[AccountId32, Data]>>;1777 } & Struct;1778 readonly isClearIdentity: boolean;1779 readonly isRequestJudgement: boolean;1780 readonly asRequestJudgement: {1781 readonly regIndex: Compact<u32>;1782 readonly maxFee: Compact<u128>;1783 } & Struct;1784 readonly isCancelRequest: boolean;1785 readonly asCancelRequest: {1786 readonly regIndex: u32;1787 } & Struct;1788 readonly isSetFee: boolean;1789 readonly asSetFee: {1790 readonly index: Compact<u32>;1791 readonly fee: Compact<u128>;1792 } & Struct;1793 readonly isSetAccountId: boolean;1794 readonly asSetAccountId: {1795 readonly index: Compact<u32>;1796 readonly new_: MultiAddress;1797 } & Struct;1798 readonly isSetFields: boolean;1799 readonly asSetFields: {1800 readonly index: Compact<u32>;1801 readonly fields: PalletIdentityBitFlags;1802 } & Struct;1803 readonly isProvideJudgement: boolean;1804 readonly asProvideJudgement: {1805 readonly regIndex: Compact<u32>;1806 readonly target: MultiAddress;1807 readonly judgement: PalletIdentityJudgement;1808 readonly identity: H256;1809 } & Struct;1810 readonly isKillIdentity: boolean;1811 readonly asKillIdentity: {1812 readonly target: MultiAddress;1813 } & Struct;1814 readonly isAddSub: boolean;1815 readonly asAddSub: {1816 readonly sub: MultiAddress;1817 readonly data: Data;1818 } & Struct;1819 readonly isRenameSub: boolean;1820 readonly asRenameSub: {1821 readonly sub: MultiAddress;1822 readonly data: Data;1823 } & Struct;1824 readonly isRemoveSub: boolean;1825 readonly asRemoveSub: {1826 readonly sub: MultiAddress;1827 } & Struct;1828 readonly isQuitSub: boolean;1829 readonly isForceInsertIdentities: boolean;1830 readonly asForceInsertIdentities: {1831 readonly identities: Vec<ITuple<[AccountId32, PalletIdentityRegistration]>>;1832 } & Struct;1833 readonly isForceRemoveIdentities: boolean;1834 readonly asForceRemoveIdentities: {1835 readonly identities: Vec<AccountId32>;1836 } & Struct;1837 readonly isForceSetSubs: boolean;1838 readonly asForceSetSubs: {1839 readonly subs: Vec<ITuple<[AccountId32, ITuple<[u128, Vec<ITuple<[AccountId32, Data]>>]>]>>;1840 } & Struct;1841 readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities' | 'ForceSetSubs';1842}18431844/** @name PalletIdentityError */1845export interface PalletIdentityError extends Enum {1846 readonly isTooManySubAccounts: boolean;1847 readonly isNotFound: boolean;1848 readonly isNotNamed: boolean;1849 readonly isEmptyIndex: boolean;1850 readonly isFeeChanged: boolean;1851 readonly isNoIdentity: boolean;1852 readonly isStickyJudgement: boolean;1853 readonly isJudgementGiven: boolean;1854 readonly isInvalidJudgement: boolean;1855 readonly isInvalidIndex: boolean;1856 readonly isInvalidTarget: boolean;1857 readonly isTooManyFields: boolean;1858 readonly isTooManyRegistrars: boolean;1859 readonly isAlreadyClaimed: boolean;1860 readonly isNotSub: boolean;1861 readonly isNotOwned: boolean;1862 readonly isJudgementForDifferentIdentity: boolean;1863 readonly isJudgementPaymentFailed: boolean;1864 readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';1865}18661867/** @name PalletIdentityEvent */1868export interface PalletIdentityEvent extends Enum {1869 readonly isIdentitySet: boolean;1870 readonly asIdentitySet: {1871 readonly who: AccountId32;1872 } & Struct;1873 readonly isIdentityCleared: boolean;1874 readonly asIdentityCleared: {1875 readonly who: AccountId32;1876 readonly deposit: u128;1877 } & Struct;1878 readonly isIdentityKilled: boolean;1879 readonly asIdentityKilled: {1880 readonly who: AccountId32;1881 readonly deposit: u128;1882 } & Struct;1883 readonly isIdentitiesInserted: boolean;1884 readonly asIdentitiesInserted: {1885 readonly amount: u32;1886 } & Struct;1887 readonly isIdentitiesRemoved: boolean;1888 readonly asIdentitiesRemoved: {1889 readonly amount: u32;1890 } & Struct;1891 readonly isJudgementRequested: boolean;1892 readonly asJudgementRequested: {1893 readonly who: AccountId32;1894 readonly registrarIndex: u32;1895 } & Struct;1896 readonly isJudgementUnrequested: boolean;1897 readonly asJudgementUnrequested: {1898 readonly who: AccountId32;1899 readonly registrarIndex: u32;1900 } & Struct;1901 readonly isJudgementGiven: boolean;1902 readonly asJudgementGiven: {1903 readonly target: AccountId32;1904 readonly registrarIndex: u32;1905 } & Struct;1906 readonly isRegistrarAdded: boolean;1907 readonly asRegistrarAdded: {1908 readonly registrarIndex: u32;1909 } & Struct;1910 readonly isSubIdentityAdded: boolean;1911 readonly asSubIdentityAdded: {1912 readonly sub: AccountId32;1913 readonly main: AccountId32;1914 readonly deposit: u128;1915 } & Struct;1916 readonly isSubIdentityRemoved: boolean;1917 readonly asSubIdentityRemoved: {1918 readonly sub: AccountId32;1919 readonly main: AccountId32;1920 readonly deposit: u128;1921 } & Struct;1922 readonly isSubIdentityRevoked: boolean;1923 readonly asSubIdentityRevoked: {1924 readonly sub: AccountId32;1925 readonly main: AccountId32;1926 readonly deposit: u128;1927 } & Struct;1928 readonly isSubIdentitiesInserted: boolean;1929 readonly asSubIdentitiesInserted: {1930 readonly amount: u32;1931 } & Struct;1932 readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked' | 'SubIdentitiesInserted';1933}19341935/** @name PalletIdentityIdentityField */1936export interface PalletIdentityIdentityField extends Enum {1937 readonly isDisplay: boolean;1938 readonly isLegal: boolean;1939 readonly isWeb: boolean;1940 readonly isRiot: boolean;1941 readonly isEmail: boolean;1942 readonly isPgpFingerprint: boolean;1943 readonly isImage: boolean;1944 readonly isTwitter: boolean;1945 readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';1946}19471948/** @name PalletIdentityIdentityInfo */1949export interface PalletIdentityIdentityInfo extends Struct {1950 readonly additional: Vec<ITuple<[Data, Data]>>;1951 readonly display: Data;1952 readonly legal: Data;1953 readonly web: Data;1954 readonly riot: Data;1955 readonly email: Data;1956 readonly pgpFingerprint: Option<U8aFixed>;1957 readonly image: Data;1958 readonly twitter: Data;1959}19601961/** @name PalletIdentityJudgement */1962export interface PalletIdentityJudgement extends Enum {1963 readonly isUnknown: boolean;1964 readonly isFeePaid: boolean;1965 readonly asFeePaid: u128;1966 readonly isReasonable: boolean;1967 readonly isKnownGood: boolean;1968 readonly isOutOfDate: boolean;1969 readonly isLowQuality: boolean;1970 readonly isErroneous: boolean;1971 readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';1972}19731974/** @name PalletIdentityRegistrarInfo */1975export interface PalletIdentityRegistrarInfo extends Struct {1976 readonly account: AccountId32;1977 readonly fee: u128;1978 readonly fields: PalletIdentityBitFlags;1979}19801981/** @name PalletIdentityRegistration */1982export interface PalletIdentityRegistration extends Struct {1983 readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;1984 readonly deposit: u128;1985 readonly info: PalletIdentityIdentityInfo;1986}19871988/** @name PalletInflationCall */1989export interface PalletInflationCall extends Enum {1990 readonly isStartInflation: boolean;1991 readonly asStartInflation: {1992 readonly inflationStartRelayBlock: u32;1993 } & Struct;1994 readonly type: 'StartInflation';1995}19961997/** @name PalletMaintenanceCall */1998export interface PalletMaintenanceCall extends Enum {1999 readonly isEnable: boolean;2000 readonly isDisable: boolean;2001 readonly isExecutePreimage: boolean;2002 readonly asExecutePreimage: {2003 readonly hash_: H256;2004 readonly weightBound: SpWeightsWeightV2Weight;2005 } & Struct;2006 readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';2007}20082009/** @name PalletMaintenanceError */2010export interface PalletMaintenanceError extends Null {}20112012/** @name PalletMaintenanceEvent */2013export interface PalletMaintenanceEvent extends Enum {2014 readonly isMaintenanceEnabled: boolean;2015 readonly isMaintenanceDisabled: boolean;2016 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';2017}20182019/** @name PalletNonfungibleError */2020export interface PalletNonfungibleError extends Enum {2021 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2022 readonly isNonfungibleItemsHaveNoAmount: boolean;2023 readonly isCantBurnNftWithChildren: boolean;2024 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';2025}20262027/** @name PalletNonfungibleItemData */2028export interface PalletNonfungibleItemData extends Struct {2029 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2030}20312032/** @name PalletPreimageCall */2033export interface PalletPreimageCall extends Enum {2034 readonly isNotePreimage: boolean;2035 readonly asNotePreimage: {2036 readonly bytes: Bytes;2037 } & Struct;2038 readonly isUnnotePreimage: boolean;2039 readonly asUnnotePreimage: {2040 readonly hash_: H256;2041 } & Struct;2042 readonly isRequestPreimage: boolean;2043 readonly asRequestPreimage: {2044 readonly hash_: H256;2045 } & Struct;2046 readonly isUnrequestPreimage: boolean;2047 readonly asUnrequestPreimage: {2048 readonly hash_: H256;2049 } & Struct;2050 readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';2051}20522053/** @name PalletPreimageError */2054export interface PalletPreimageError extends Enum {2055 readonly isTooBig: boolean;2056 readonly isAlreadyNoted: boolean;2057 readonly isNotAuthorized: boolean;2058 readonly isNotNoted: boolean;2059 readonly isRequested: boolean;2060 readonly isNotRequested: boolean;2061 readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';2062}20632064/** @name PalletPreimageEvent */2065export interface PalletPreimageEvent extends Enum {2066 readonly isNoted: boolean;2067 readonly asNoted: {2068 readonly hash_: H256;2069 } & Struct;2070 readonly isRequested: boolean;2071 readonly asRequested: {2072 readonly hash_: H256;2073 } & Struct;2074 readonly isCleared: boolean;2075 readonly asCleared: {2076 readonly hash_: H256;2077 } & Struct;2078 readonly type: 'Noted' | 'Requested' | 'Cleared';2079}20802081/** @name PalletPreimageRequestStatus */2082export interface PalletPreimageRequestStatus extends Enum {2083 readonly isUnrequested: boolean;2084 readonly asUnrequested: {2085 readonly deposit: ITuple<[AccountId32, u128]>;2086 readonly len: u32;2087 } & Struct;2088 readonly isRequested: boolean;2089 readonly asRequested: {2090 readonly deposit: Option<ITuple<[AccountId32, u128]>>;2091 readonly count: u32;2092 readonly len: Option<u32>;2093 } & Struct;2094 readonly type: 'Unrequested' | 'Requested';2095}20962097/** @name PalletRefungibleError */2098export interface PalletRefungibleError extends Enum {2099 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;2100 readonly isWrongRefungiblePieces: boolean;2101 readonly isRepartitionWhileNotOwningAllPieces: boolean;2102 readonly isRefungibleDisallowsNesting: boolean;2103 readonly isSettingPropertiesNotAllowed: boolean;2104 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2105}21062107/** @name PalletSessionCall */2108export interface PalletSessionCall extends Enum {2109 readonly isSetKeys: boolean;2110 readonly asSetKeys: {2111 readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;2112 readonly proof: Bytes;2113 } & Struct;2114 readonly isPurgeKeys: boolean;2115 readonly type: 'SetKeys' | 'PurgeKeys';2116}21172118/** @name PalletSessionError */2119export interface PalletSessionError extends Enum {2120 readonly isInvalidProof: boolean;2121 readonly isNoAssociatedValidatorId: boolean;2122 readonly isDuplicatedKey: boolean;2123 readonly isNoKeys: boolean;2124 readonly isNoAccount: boolean;2125 readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';2126}21272128/** @name PalletSessionEvent */2129export interface PalletSessionEvent extends Enum {2130 readonly isNewSession: boolean;2131 readonly asNewSession: {2132 readonly sessionIndex: u32;2133 } & Struct;2134 readonly type: 'NewSession';2135}21362137/** @name PalletStructureCall */2138export interface PalletStructureCall extends Null {}21392140/** @name PalletStructureError */2141export interface PalletStructureError extends Enum {2142 readonly isOuroborosDetected: boolean;2143 readonly isDepthLimit: boolean;2144 readonly isBreadthLimit: boolean;2145 readonly isTokenNotFound: boolean;2146 readonly isCantNestTokenUnderCollection: boolean;2147 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound' | 'CantNestTokenUnderCollection';2148}21492150/** @name PalletStructureEvent */2151export interface PalletStructureEvent extends Enum {2152 readonly isExecuted: boolean;2153 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2154 readonly type: 'Executed';2155}21562157/** @name PalletSudoCall */2158export interface PalletSudoCall extends Enum {2159 readonly isSudo: boolean;2160 readonly asSudo: {2161 readonly call: Call;2162 } & Struct;2163 readonly isSudoUncheckedWeight: boolean;2164 readonly asSudoUncheckedWeight: {2165 readonly call: Call;2166 readonly weight: SpWeightsWeightV2Weight;2167 } & Struct;2168 readonly isSetKey: boolean;2169 readonly asSetKey: {2170 readonly new_: MultiAddress;2171 } & Struct;2172 readonly isSudoAs: boolean;2173 readonly asSudoAs: {2174 readonly who: MultiAddress;2175 readonly call: Call;2176 } & Struct;2177 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';2178}21792180/** @name PalletSudoError */2181export interface PalletSudoError extends Enum {2182 readonly isRequireSudo: boolean;2183 readonly type: 'RequireSudo';2184}21852186/** @name PalletSudoEvent */2187export interface PalletSudoEvent extends Enum {2188 readonly isSudid: boolean;2189 readonly asSudid: {2190 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;2191 } & Struct;2192 readonly isKeyChanged: boolean;2193 readonly asKeyChanged: {2194 readonly oldSudoer: Option<AccountId32>;2195 } & Struct;2196 readonly isSudoAsDone: boolean;2197 readonly asSudoAsDone: {2198 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;2199 } & Struct;2200 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';2201}22022203/** @name PalletTemplateTransactionPaymentCall */2204export interface PalletTemplateTransactionPaymentCall extends Null {}22052206/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */2207export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}22082209/** @name PalletTestUtilsCall */2210export interface PalletTestUtilsCall extends Enum {2211 readonly isEnable: boolean;2212 readonly isSetTestValue: boolean;2213 readonly asSetTestValue: {2214 readonly value: u32;2215 } & Struct;2216 readonly isSetTestValueAndRollback: boolean;2217 readonly asSetTestValueAndRollback: {2218 readonly value: u32;2219 } & Struct;2220 readonly isIncTestValue: boolean;2221 readonly isJustTakeFee: boolean;2222 readonly isBatchAll: boolean;2223 readonly asBatchAll: {2224 readonly calls: Vec<Call>;2225 } & Struct;2226 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';2227}22282229/** @name PalletTestUtilsError */2230export interface PalletTestUtilsError extends Enum {2231 readonly isTestPalletDisabled: boolean;2232 readonly isTriggerRollback: boolean;2233 readonly type: 'TestPalletDisabled' | 'TriggerRollback';2234}22352236/** @name PalletTestUtilsEvent */2237export interface PalletTestUtilsEvent extends Enum {2238 readonly isValueIsSet: boolean;2239 readonly isShouldRollback: boolean;2240 readonly isBatchCompleted: boolean;2241 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';2242}22432244/** @name PalletTimestampCall */2245export interface PalletTimestampCall extends Enum {2246 readonly isSet: boolean;2247 readonly asSet: {2248 readonly now: Compact<u64>;2249 } & Struct;2250 readonly type: 'Set';2251}22522253/** @name PalletTransactionPaymentEvent */2254export interface PalletTransactionPaymentEvent extends Enum {2255 readonly isTransactionFeePaid: boolean;2256 readonly asTransactionFeePaid: {2257 readonly who: AccountId32;2258 readonly actualFee: u128;2259 readonly tip: u128;2260 } & Struct;2261 readonly type: 'TransactionFeePaid';2262}22632264/** @name PalletTransactionPaymentReleases */2265export interface PalletTransactionPaymentReleases extends Enum {2266 readonly isV1Ancient: boolean;2267 readonly isV2: boolean;2268 readonly type: 'V1Ancient' | 'V2';2269}22702271/** @name PalletTreasuryCall */2272export interface PalletTreasuryCall extends Enum {2273 readonly isProposeSpend: boolean;2274 readonly asProposeSpend: {2275 readonly value: Compact<u128>;2276 readonly beneficiary: MultiAddress;2277 } & Struct;2278 readonly isRejectProposal: boolean;2279 readonly asRejectProposal: {2280 readonly proposalId: Compact<u32>;2281 } & Struct;2282 readonly isApproveProposal: boolean;2283 readonly asApproveProposal: {2284 readonly proposalId: Compact<u32>;2285 } & Struct;2286 readonly isSpend: boolean;2287 readonly asSpend: {2288 readonly amount: Compact<u128>;2289 readonly beneficiary: MultiAddress;2290 } & Struct;2291 readonly isRemoveApproval: boolean;2292 readonly asRemoveApproval: {2293 readonly proposalId: Compact<u32>;2294 } & Struct;2295 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';2296}22972298/** @name PalletTreasuryError */2299export interface PalletTreasuryError extends Enum {2300 readonly isInsufficientProposersBalance: boolean;2301 readonly isInvalidIndex: boolean;2302 readonly isTooManyApprovals: boolean;2303 readonly isInsufficientPermission: boolean;2304 readonly isProposalNotApproved: boolean;2305 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';2306}23072308/** @name PalletTreasuryEvent */2309export interface PalletTreasuryEvent extends Enum {2310 readonly isProposed: boolean;2311 readonly asProposed: {2312 readonly proposalIndex: u32;2313 } & Struct;2314 readonly isSpending: boolean;2315 readonly asSpending: {2316 readonly budgetRemaining: u128;2317 } & Struct;2318 readonly isAwarded: boolean;2319 readonly asAwarded: {2320 readonly proposalIndex: u32;2321 readonly award: u128;2322 readonly account: AccountId32;2323 } & Struct;2324 readonly isRejected: boolean;2325 readonly asRejected: {2326 readonly proposalIndex: u32;2327 readonly slashed: u128;2328 } & Struct;2329 readonly isBurnt: boolean;2330 readonly asBurnt: {2331 readonly burntFunds: u128;2332 } & Struct;2333 readonly isRollover: boolean;2334 readonly asRollover: {2335 readonly rolloverBalance: u128;2336 } & Struct;2337 readonly isDeposit: boolean;2338 readonly asDeposit: {2339 readonly value: u128;2340 } & Struct;2341 readonly isSpendApproved: boolean;2342 readonly asSpendApproved: {2343 readonly proposalIndex: u32;2344 readonly amount: u128;2345 readonly beneficiary: AccountId32;2346 } & Struct;2347 readonly isUpdatedInactive: boolean;2348 readonly asUpdatedInactive: {2349 readonly reactivated: u128;2350 readonly deactivated: u128;2351 } & Struct;2352 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive';2353}23542355/** @name PalletTreasuryProposal */2356export interface PalletTreasuryProposal extends Struct {2357 readonly proposer: AccountId32;2358 readonly value: u128;2359 readonly beneficiary: AccountId32;2360 readonly bond: u128;2361}23622363/** @name PalletUniqueCall */2364export interface PalletUniqueCall extends Enum {2365 readonly isCreateCollection: boolean;2366 readonly asCreateCollection: {2367 readonly collectionName: Vec<u16>;2368 readonly collectionDescription: Vec<u16>;2369 readonly tokenPrefix: Bytes;2370 readonly mode: UpDataStructsCollectionMode;2371 } & Struct;2372 readonly isCreateCollectionEx: boolean;2373 readonly asCreateCollectionEx: {2374 readonly data: UpDataStructsCreateCollectionData;2375 } & Struct;2376 readonly isDestroyCollection: boolean;2377 readonly asDestroyCollection: {2378 readonly collectionId: u32;2379 } & Struct;2380 readonly isAddToAllowList: boolean;2381 readonly asAddToAllowList: {2382 readonly collectionId: u32;2383 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2384 } & Struct;2385 readonly isRemoveFromAllowList: boolean;2386 readonly asRemoveFromAllowList: {2387 readonly collectionId: u32;2388 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2389 } & Struct;2390 readonly isChangeCollectionOwner: boolean;2391 readonly asChangeCollectionOwner: {2392 readonly collectionId: u32;2393 readonly newOwner: AccountId32;2394 } & Struct;2395 readonly isAddCollectionAdmin: boolean;2396 readonly asAddCollectionAdmin: {2397 readonly collectionId: u32;2398 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2399 } & Struct;2400 readonly isRemoveCollectionAdmin: boolean;2401 readonly asRemoveCollectionAdmin: {2402 readonly collectionId: u32;2403 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2404 } & Struct;2405 readonly isSetCollectionSponsor: boolean;2406 readonly asSetCollectionSponsor: {2407 readonly collectionId: u32;2408 readonly newSponsor: AccountId32;2409 } & Struct;2410 readonly isConfirmSponsorship: boolean;2411 readonly asConfirmSponsorship: {2412 readonly collectionId: u32;2413 } & Struct;2414 readonly isRemoveCollectionSponsor: boolean;2415 readonly asRemoveCollectionSponsor: {2416 readonly collectionId: u32;2417 } & Struct;2418 readonly isCreateItem: boolean;2419 readonly asCreateItem: {2420 readonly collectionId: u32;2421 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2422 readonly data: UpDataStructsCreateItemData;2423 } & Struct;2424 readonly isCreateMultipleItems: boolean;2425 readonly asCreateMultipleItems: {2426 readonly collectionId: u32;2427 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2428 readonly itemsData: Vec<UpDataStructsCreateItemData>;2429 } & Struct;2430 readonly isSetCollectionProperties: boolean;2431 readonly asSetCollectionProperties: {2432 readonly collectionId: u32;2433 readonly properties: Vec<UpDataStructsProperty>;2434 } & Struct;2435 readonly isDeleteCollectionProperties: boolean;2436 readonly asDeleteCollectionProperties: {2437 readonly collectionId: u32;2438 readonly propertyKeys: Vec<Bytes>;2439 } & Struct;2440 readonly isSetTokenProperties: boolean;2441 readonly asSetTokenProperties: {2442 readonly collectionId: u32;2443 readonly tokenId: u32;2444 readonly properties: Vec<UpDataStructsProperty>;2445 } & Struct;2446 readonly isDeleteTokenProperties: boolean;2447 readonly asDeleteTokenProperties: {2448 readonly collectionId: u32;2449 readonly tokenId: u32;2450 readonly propertyKeys: Vec<Bytes>;2451 } & Struct;2452 readonly isSetTokenPropertyPermissions: boolean;2453 readonly asSetTokenPropertyPermissions: {2454 readonly collectionId: u32;2455 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2456 } & Struct;2457 readonly isCreateMultipleItemsEx: boolean;2458 readonly asCreateMultipleItemsEx: {2459 readonly collectionId: u32;2460 readonly data: UpDataStructsCreateItemExData;2461 } & Struct;2462 readonly isSetTransfersEnabledFlag: boolean;2463 readonly asSetTransfersEnabledFlag: {2464 readonly collectionId: u32;2465 readonly value: bool;2466 } & Struct;2467 readonly isBurnItem: boolean;2468 readonly asBurnItem: {2469 readonly collectionId: u32;2470 readonly itemId: u32;2471 readonly value: u128;2472 } & Struct;2473 readonly isBurnFrom: boolean;2474 readonly asBurnFrom: {2475 readonly collectionId: u32;2476 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2477 readonly itemId: u32;2478 readonly value: u128;2479 } & Struct;2480 readonly isTransfer: boolean;2481 readonly asTransfer: {2482 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2483 readonly collectionId: u32;2484 readonly itemId: u32;2485 readonly value: u128;2486 } & Struct;2487 readonly isApprove: boolean;2488 readonly asApprove: {2489 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2490 readonly collectionId: u32;2491 readonly itemId: u32;2492 readonly amount: u128;2493 } & Struct;2494 readonly isApproveFrom: boolean;2495 readonly asApproveFrom: {2496 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2497 readonly to: PalletEvmAccountBasicCrossAccountIdRepr;2498 readonly collectionId: u32;2499 readonly itemId: u32;2500 readonly amount: u128;2501 } & Struct;2502 readonly isTransferFrom: boolean;2503 readonly asTransferFrom: {2504 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2505 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2506 readonly collectionId: u32;2507 readonly itemId: u32;2508 readonly value: u128;2509 } & Struct;2510 readonly isSetCollectionLimits: boolean;2511 readonly asSetCollectionLimits: {2512 readonly collectionId: u32;2513 readonly newLimit: UpDataStructsCollectionLimits;2514 } & Struct;2515 readonly isSetCollectionPermissions: boolean;2516 readonly asSetCollectionPermissions: {2517 readonly collectionId: u32;2518 readonly newPermission: UpDataStructsCollectionPermissions;2519 } & Struct;2520 readonly isRepartition: boolean;2521 readonly asRepartition: {2522 readonly collectionId: u32;2523 readonly tokenId: u32;2524 readonly amount: u128;2525 } & Struct;2526 readonly isSetAllowanceForAll: boolean;2527 readonly asSetAllowanceForAll: {2528 readonly collectionId: u32;2529 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2530 readonly approve: bool;2531 } & Struct;2532 readonly isForceRepairCollection: boolean;2533 readonly asForceRepairCollection: {2534 readonly collectionId: u32;2535 } & Struct;2536 readonly isForceRepairItem: boolean;2537 readonly asForceRepairItem: {2538 readonly collectionId: u32;2539 readonly itemId: u32;2540 } & Struct;2541 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' | 'ApproveFrom' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';2542}25432544/** @name PalletUniqueError */2545export interface PalletUniqueError extends Enum {2546 readonly isCollectionDecimalPointLimitExceeded: boolean;2547 readonly isEmptyArgument: boolean;2548 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;2549 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';2550}25512552/** @name PalletXcmCall */2553export interface PalletXcmCall extends Enum {2554 readonly isSend: boolean;2555 readonly asSend: {2556 readonly dest: XcmVersionedMultiLocation;2557 readonly message: XcmVersionedXcm;2558 } & Struct;2559 readonly isTeleportAssets: boolean;2560 readonly asTeleportAssets: {2561 readonly dest: XcmVersionedMultiLocation;2562 readonly beneficiary: XcmVersionedMultiLocation;2563 readonly assets: XcmVersionedMultiAssets;2564 readonly feeAssetItem: u32;2565 } & Struct;2566 readonly isReserveTransferAssets: boolean;2567 readonly asReserveTransferAssets: {2568 readonly dest: XcmVersionedMultiLocation;2569 readonly beneficiary: XcmVersionedMultiLocation;2570 readonly assets: XcmVersionedMultiAssets;2571 readonly feeAssetItem: u32;2572 } & Struct;2573 readonly isExecute: boolean;2574 readonly asExecute: {2575 readonly message: XcmVersionedXcm;2576 readonly maxWeight: SpWeightsWeightV2Weight;2577 } & Struct;2578 readonly isForceXcmVersion: boolean;2579 readonly asForceXcmVersion: {2580 readonly location: XcmV3MultiLocation;2581 readonly xcmVersion: u32;2582 } & Struct;2583 readonly isForceDefaultXcmVersion: boolean;2584 readonly asForceDefaultXcmVersion: {2585 readonly maybeXcmVersion: Option<u32>;2586 } & Struct;2587 readonly isForceSubscribeVersionNotify: boolean;2588 readonly asForceSubscribeVersionNotify: {2589 readonly location: XcmVersionedMultiLocation;2590 } & Struct;2591 readonly isForceUnsubscribeVersionNotify: boolean;2592 readonly asForceUnsubscribeVersionNotify: {2593 readonly location: XcmVersionedMultiLocation;2594 } & Struct;2595 readonly isLimitedReserveTransferAssets: boolean;2596 readonly asLimitedReserveTransferAssets: {2597 readonly dest: XcmVersionedMultiLocation;2598 readonly beneficiary: XcmVersionedMultiLocation;2599 readonly assets: XcmVersionedMultiAssets;2600 readonly feeAssetItem: u32;2601 readonly weightLimit: XcmV3WeightLimit;2602 } & Struct;2603 readonly isLimitedTeleportAssets: boolean;2604 readonly asLimitedTeleportAssets: {2605 readonly dest: XcmVersionedMultiLocation;2606 readonly beneficiary: XcmVersionedMultiLocation;2607 readonly assets: XcmVersionedMultiAssets;2608 readonly feeAssetItem: u32;2609 readonly weightLimit: XcmV3WeightLimit;2610 } & Struct;2611 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2612}26132614/** @name PalletXcmError */2615export interface PalletXcmError extends Enum {2616 readonly isUnreachable: boolean;2617 readonly isSendFailure: boolean;2618 readonly isFiltered: boolean;2619 readonly isUnweighableMessage: boolean;2620 readonly isDestinationNotInvertible: boolean;2621 readonly isEmpty: boolean;2622 readonly isCannotReanchor: boolean;2623 readonly isTooManyAssets: boolean;2624 readonly isInvalidOrigin: boolean;2625 readonly isBadVersion: boolean;2626 readonly isBadLocation: boolean;2627 readonly isNoSubscription: boolean;2628 readonly isAlreadySubscribed: boolean;2629 readonly isInvalidAsset: boolean;2630 readonly isLowBalance: boolean;2631 readonly isTooManyLocks: boolean;2632 readonly isAccountNotSovereign: boolean;2633 readonly isFeesNotMet: boolean;2634 readonly isLockNotFound: boolean;2635 readonly isInUse: boolean;2636 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed' | 'InvalidAsset' | 'LowBalance' | 'TooManyLocks' | 'AccountNotSovereign' | 'FeesNotMet' | 'LockNotFound' | 'InUse';2637}26382639/** @name PalletXcmEvent */2640export interface PalletXcmEvent extends Enum {2641 readonly isAttempted: boolean;2642 readonly asAttempted: XcmV3TraitsOutcome;2643 readonly isSent: boolean;2644 readonly asSent: ITuple<[XcmV3MultiLocation, XcmV3MultiLocation, XcmV3Xcm]>;2645 readonly isUnexpectedResponse: boolean;2646 readonly asUnexpectedResponse: ITuple<[XcmV3MultiLocation, u64]>;2647 readonly isResponseReady: boolean;2648 readonly asResponseReady: ITuple<[u64, XcmV3Response]>;2649 readonly isNotified: boolean;2650 readonly asNotified: ITuple<[u64, u8, u8]>;2651 readonly isNotifyOverweight: boolean;2652 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;2653 readonly isNotifyDispatchError: boolean;2654 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2655 readonly isNotifyDecodeFailed: boolean;2656 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;2657 readonly isInvalidResponder: boolean;2658 readonly asInvalidResponder: ITuple<[XcmV3MultiLocation, u64, Option<XcmV3MultiLocation>]>;2659 readonly isInvalidResponderVersion: boolean;2660 readonly asInvalidResponderVersion: ITuple<[XcmV3MultiLocation, u64]>;2661 readonly isResponseTaken: boolean;2662 readonly asResponseTaken: u64;2663 readonly isAssetsTrapped: boolean;2664 readonly asAssetsTrapped: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;2665 readonly isVersionChangeNotified: boolean;2666 readonly asVersionChangeNotified: ITuple<[XcmV3MultiLocation, u32, XcmV3MultiassetMultiAssets]>;2667 readonly isSupportedVersionChanged: boolean;2668 readonly asSupportedVersionChanged: ITuple<[XcmV3MultiLocation, u32]>;2669 readonly isNotifyTargetSendFail: boolean;2670 readonly asNotifyTargetSendFail: ITuple<[XcmV3MultiLocation, u64, XcmV3TraitsError]>;2671 readonly isNotifyTargetMigrationFail: boolean;2672 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2673 readonly isInvalidQuerierVersion: boolean;2674 readonly asInvalidQuerierVersion: ITuple<[XcmV3MultiLocation, u64]>;2675 readonly isInvalidQuerier: boolean;2676 readonly asInvalidQuerier: ITuple<[XcmV3MultiLocation, u64, XcmV3MultiLocation, Option<XcmV3MultiLocation>]>;2677 readonly isVersionNotifyStarted: boolean;2678 readonly asVersionNotifyStarted: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;2679 readonly isVersionNotifyRequested: boolean;2680 readonly asVersionNotifyRequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;2681 readonly isVersionNotifyUnrequested: boolean;2682 readonly asVersionNotifyUnrequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;2683 readonly isFeesPaid: boolean;2684 readonly asFeesPaid: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;2685 readonly isAssetsClaimed: boolean;2686 readonly asAssetsClaimed: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;2687 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'InvalidQuerierVersion' | 'InvalidQuerier' | 'VersionNotifyStarted' | 'VersionNotifyRequested' | 'VersionNotifyUnrequested' | 'FeesPaid' | 'AssetsClaimed';2688}26892690/** @name PalletXcmQueryStatus */2691export interface PalletXcmQueryStatus extends Enum {2692 readonly isPending: boolean;2693 readonly asPending: {2694 readonly responder: XcmVersionedMultiLocation;2695 readonly maybeMatchQuerier: Option<XcmVersionedMultiLocation>;2696 readonly maybeNotify: Option<ITuple<[u8, u8]>>;2697 readonly timeout: u32;2698 } & Struct;2699 readonly isVersionNotifier: boolean;2700 readonly asVersionNotifier: {2701 readonly origin: XcmVersionedMultiLocation;2702 readonly isActive: bool;2703 } & Struct;2704 readonly isReady: boolean;2705 readonly asReady: {2706 readonly response: XcmVersionedResponse;2707 readonly at: u32;2708 } & Struct;2709 readonly type: 'Pending' | 'VersionNotifier' | 'Ready';2710}27112712/** @name PalletXcmRemoteLockedFungibleRecord */2713export interface PalletXcmRemoteLockedFungibleRecord extends Struct {2714 readonly amount: u128;2715 readonly owner: XcmVersionedMultiLocation;2716 readonly locker: XcmVersionedMultiLocation;2717 readonly users: u32;2718}27192720/** @name PalletXcmVersionMigrationStage */2721export interface PalletXcmVersionMigrationStage extends Enum {2722 readonly isMigrateSupportedVersion: boolean;2723 readonly isMigrateVersionNotifiers: boolean;2724 readonly isNotifyCurrentTargets: boolean;2725 readonly asNotifyCurrentTargets: Option<Bytes>;2726 readonly isMigrateAndNotifyOldTargets: boolean;2727 readonly type: 'MigrateSupportedVersion' | 'MigrateVersionNotifiers' | 'NotifyCurrentTargets' | 'MigrateAndNotifyOldTargets';2728}27292730/** @name ParachainInfoCall */2731export interface ParachainInfoCall extends Null {}27322733/** @name PhantomTypeUpDataStructs */2734export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpPovEstimateRpcPovInfo]>> {}27352736/** @name PolkadotCorePrimitivesInboundDownwardMessage */2737export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {2738 readonly sentAt: u32;2739 readonly msg: Bytes;2740}27412742/** @name PolkadotCorePrimitivesInboundHrmpMessage */2743export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {2744 readonly sentAt: u32;2745 readonly data: Bytes;2746}27472748/** @name PolkadotCorePrimitivesOutboundHrmpMessage */2749export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {2750 readonly recipient: u32;2751 readonly data: Bytes;2752}27532754/** @name PolkadotParachainPrimitivesXcmpMessageFormat */2755export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2756 readonly isConcatenatedVersionedXcm: boolean;2757 readonly isConcatenatedEncodedBlob: boolean;2758 readonly isSignals: boolean;2759 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2760}27612762/** @name PolkadotPrimitivesV2AbridgedHostConfiguration */2763export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {2764 readonly maxCodeSize: u32;2765 readonly maxHeadDataSize: u32;2766 readonly maxUpwardQueueCount: u32;2767 readonly maxUpwardQueueSize: u32;2768 readonly maxUpwardMessageSize: u32;2769 readonly maxUpwardMessageNumPerCandidate: u32;2770 readonly hrmpMaxMessageNumPerCandidate: u32;2771 readonly validationUpgradeCooldown: u32;2772 readonly validationUpgradeDelay: u32;2773}27742775/** @name PolkadotPrimitivesV2AbridgedHrmpChannel */2776export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {2777 readonly maxCapacity: u32;2778 readonly maxTotalSize: u32;2779 readonly maxMessageSize: u32;2780 readonly msgCount: u32;2781 readonly totalSize: u32;2782 readonly mqcHead: Option<H256>;2783}27842785/** @name PolkadotPrimitivesV2PersistedValidationData */2786export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {2787 readonly parentHead: Bytes;2788 readonly relayParentNumber: u32;2789 readonly relayParentStorageRoot: H256;2790 readonly maxPovSize: u32;2791}27922793/** @name PolkadotPrimitivesV2UpgradeRestriction */2794export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {2795 readonly isPresent: boolean;2796 readonly type: 'Present';2797}27982799/** @name SpArithmeticArithmeticError */2800export interface SpArithmeticArithmeticError extends Enum {2801 readonly isUnderflow: boolean;2802 readonly isOverflow: boolean;2803 readonly isDivisionByZero: boolean;2804 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2805}28062807/** @name SpConsensusAuraSr25519AppSr25519Public */2808export interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}28092810/** @name SpCoreCryptoKeyTypeId */2811export interface SpCoreCryptoKeyTypeId extends U8aFixed {}28122813/** @name SpCoreEcdsaSignature */2814export interface SpCoreEcdsaSignature extends U8aFixed {}28152816/** @name SpCoreEd25519Signature */2817export interface SpCoreEd25519Signature extends U8aFixed {}28182819/** @name SpCoreSr25519Public */2820export interface SpCoreSr25519Public extends U8aFixed {}28212822/** @name SpCoreSr25519Signature */2823export interface SpCoreSr25519Signature extends U8aFixed {}28242825/** @name SpRuntimeDigest */2826export interface SpRuntimeDigest extends Struct {2827 readonly logs: Vec<SpRuntimeDigestDigestItem>;2828}28292830/** @name SpRuntimeDigestDigestItem */2831export interface SpRuntimeDigestDigestItem extends Enum {2832 readonly isOther: boolean;2833 readonly asOther: Bytes;2834 readonly isConsensus: boolean;2835 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;2836 readonly isSeal: boolean;2837 readonly asSeal: ITuple<[U8aFixed, Bytes]>;2838 readonly isPreRuntime: boolean;2839 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;2840 readonly isRuntimeEnvironmentUpdated: boolean;2841 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2842}28432844/** @name SpRuntimeDispatchError */2845export interface SpRuntimeDispatchError extends Enum {2846 readonly isOther: boolean;2847 readonly isCannotLookup: boolean;2848 readonly isBadOrigin: boolean;2849 readonly isModule: boolean;2850 readonly asModule: SpRuntimeModuleError;2851 readonly isConsumerRemaining: boolean;2852 readonly isNoProviders: boolean;2853 readonly isTooManyConsumers: boolean;2854 readonly isToken: boolean;2855 readonly asToken: SpRuntimeTokenError;2856 readonly isArithmetic: boolean;2857 readonly asArithmetic: SpArithmeticArithmeticError;2858 readonly isTransactional: boolean;2859 readonly asTransactional: SpRuntimeTransactionalError;2860 readonly isExhausted: boolean;2861 readonly isCorruption: boolean;2862 readonly isUnavailable: boolean;2863 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';2864}28652866/** @name SpRuntimeModuleError */2867export interface SpRuntimeModuleError extends Struct {2868 readonly index: u8;2869 readonly error: U8aFixed;2870}28712872/** @name SpRuntimeMultiSignature */2873export interface SpRuntimeMultiSignature extends Enum {2874 readonly isEd25519: boolean;2875 readonly asEd25519: SpCoreEd25519Signature;2876 readonly isSr25519: boolean;2877 readonly asSr25519: SpCoreSr25519Signature;2878 readonly isEcdsa: boolean;2879 readonly asEcdsa: SpCoreEcdsaSignature;2880 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2881}28822883/** @name SpRuntimeTokenError */2884export interface SpRuntimeTokenError extends Enum {2885 readonly isNoFunds: boolean;2886 readonly isWouldDie: boolean;2887 readonly isBelowMinimum: boolean;2888 readonly isCannotCreate: boolean;2889 readonly isUnknownAsset: boolean;2890 readonly isFrozen: boolean;2891 readonly isUnsupported: boolean;2892 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2893}28942895/** @name SpRuntimeTransactionalError */2896export interface SpRuntimeTransactionalError extends Enum {2897 readonly isLimitReached: boolean;2898 readonly isNoLayer: boolean;2899 readonly type: 'LimitReached' | 'NoLayer';2900}29012902/** @name SpRuntimeTransactionValidityInvalidTransaction */2903export interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {2904 readonly isCall: boolean;2905 readonly isPayment: boolean;2906 readonly isFuture: boolean;2907 readonly isStale: boolean;2908 readonly isBadProof: boolean;2909 readonly isAncientBirthBlock: boolean;2910 readonly isExhaustsResources: boolean;2911 readonly isCustom: boolean;2912 readonly asCustom: u8;2913 readonly isBadMandatory: boolean;2914 readonly isMandatoryValidation: boolean;2915 readonly isBadSigner: boolean;2916 readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';2917}29182919/** @name SpRuntimeTransactionValidityTransactionValidityError */2920export interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {2921 readonly isInvalid: boolean;2922 readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;2923 readonly isUnknown: boolean;2924 readonly asUnknown: SpRuntimeTransactionValidityUnknownTransaction;2925 readonly type: 'Invalid' | 'Unknown';2926}29272928/** @name SpRuntimeTransactionValidityUnknownTransaction */2929export interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {2930 readonly isCannotLookup: boolean;2931 readonly isNoUnsignedValidator: boolean;2932 readonly isCustom: boolean;2933 readonly asCustom: u8;2934 readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';2935}29362937/** @name SpTrieStorageProof */2938export interface SpTrieStorageProof extends Struct {2939 readonly trieNodes: BTreeSet<Bytes>;2940}29412942/** @name SpVersionRuntimeVersion */2943export interface SpVersionRuntimeVersion extends Struct {2944 readonly specName: Text;2945 readonly implName: Text;2946 readonly authoringVersion: u32;2947 readonly specVersion: u32;2948 readonly implVersion: u32;2949 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;2950 readonly transactionVersion: u32;2951 readonly stateVersion: u8;2952}29532954/** @name SpWeightsRuntimeDbWeight */2955export interface SpWeightsRuntimeDbWeight extends Struct {2956 readonly read: u64;2957 readonly write: u64;2958}29592960/** @name SpWeightsWeightV2Weight */2961export interface SpWeightsWeightV2Weight extends Struct {2962 readonly refTime: Compact<u64>;2963 readonly proofSize: Compact<u64>;2964}29652966/** @name UpDataStructsAccessMode */2967export interface UpDataStructsAccessMode extends Enum {2968 readonly isNormal: boolean;2969 readonly isAllowList: boolean;2970 readonly type: 'Normal' | 'AllowList';2971}29722973/** @name UpDataStructsCollection */2974export interface UpDataStructsCollection extends Struct {2975 readonly owner: AccountId32;2976 readonly mode: UpDataStructsCollectionMode;2977 readonly name: Vec<u16>;2978 readonly description: Vec<u16>;2979 readonly tokenPrefix: Bytes;2980 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;2981 readonly limits: UpDataStructsCollectionLimits;2982 readonly permissions: UpDataStructsCollectionPermissions;2983 readonly flags: U8aFixed;2984}29852986/** @name UpDataStructsCollectionLimits */2987export interface UpDataStructsCollectionLimits extends Struct {2988 readonly accountTokenOwnershipLimit: Option<u32>;2989 readonly sponsoredDataSize: Option<u32>;2990 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2991 readonly tokenLimit: Option<u32>;2992 readonly sponsorTransferTimeout: Option<u32>;2993 readonly sponsorApproveTimeout: Option<u32>;2994 readonly ownerCanTransfer: Option<bool>;2995 readonly ownerCanDestroy: Option<bool>;2996 readonly transfersEnabled: Option<bool>;2997}29982999/** @name UpDataStructsCollectionMode */3000export interface UpDataStructsCollectionMode extends Enum {3001 readonly isNft: boolean;3002 readonly isFungible: boolean;3003 readonly asFungible: u8;3004 readonly isReFungible: boolean;3005 readonly type: 'Nft' | 'Fungible' | 'ReFungible';3006}30073008/** @name UpDataStructsCollectionPermissions */3009export interface UpDataStructsCollectionPermissions extends Struct {3010 readonly access: Option<UpDataStructsAccessMode>;3011 readonly mintMode: Option<bool>;3012 readonly nesting: Option<UpDataStructsNestingPermissions>;3013}30143015/** @name UpDataStructsCollectionStats */3016export interface UpDataStructsCollectionStats extends Struct {3017 readonly created: u32;3018 readonly destroyed: u32;3019 readonly alive: u32;3020}30213022/** @name UpDataStructsCreateCollectionData */3023export interface UpDataStructsCreateCollectionData extends Struct {3024 readonly mode: UpDataStructsCollectionMode;3025 readonly access: Option<UpDataStructsAccessMode>;3026 readonly name: Vec<u16>;3027 readonly description: Vec<u16>;3028 readonly tokenPrefix: Bytes;3029 readonly pendingSponsor: Option<AccountId32>;3030 readonly limits: Option<UpDataStructsCollectionLimits>;3031 readonly permissions: Option<UpDataStructsCollectionPermissions>;3032 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3033 readonly properties: Vec<UpDataStructsProperty>;3034}30353036/** @name UpDataStructsCreateFungibleData */3037export interface UpDataStructsCreateFungibleData extends Struct {3038 readonly value: u128;3039}30403041/** @name UpDataStructsCreateItemData */3042export interface UpDataStructsCreateItemData extends Enum {3043 readonly isNft: boolean;3044 readonly asNft: UpDataStructsCreateNftData;3045 readonly isFungible: boolean;3046 readonly asFungible: UpDataStructsCreateFungibleData;3047 readonly isReFungible: boolean;3048 readonly asReFungible: UpDataStructsCreateReFungibleData;3049 readonly type: 'Nft' | 'Fungible' | 'ReFungible';3050}30513052/** @name UpDataStructsCreateItemExData */3053export interface UpDataStructsCreateItemExData extends Enum {3054 readonly isNft: boolean;3055 readonly asNft: Vec<UpDataStructsCreateNftExData>;3056 readonly isFungible: boolean;3057 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr,u128>;3058 readonly isRefungibleMultipleItems: boolean;3059 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;3060 readonly isRefungibleMultipleOwners: boolean;3061 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;3062 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';3063}30643065/** @name UpDataStructsCreateNftData */3066export interface UpDataStructsCreateNftData extends Struct {3067 readonly properties: Vec<UpDataStructsProperty>;3068}30693070/** @name UpDataStructsCreateNftExData */3071export interface UpDataStructsCreateNftExData extends Struct {3072 readonly properties: Vec<UpDataStructsProperty>;3073 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3074}30753076/** @name UpDataStructsCreateReFungibleData */3077export interface UpDataStructsCreateReFungibleData extends Struct {3078 readonly pieces: u128;3079 readonly properties: Vec<UpDataStructsProperty>;3080}30813082/** @name UpDataStructsCreateRefungibleExMultipleOwners */3083export interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {3084 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;3085 readonly properties: Vec<UpDataStructsProperty>;3086}30873088/** @name UpDataStructsCreateRefungibleExSingleOwner */3089export interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {3090 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;3091 readonly pieces: u128;3092 readonly properties: Vec<UpDataStructsProperty>;3093}30943095/** @name UpDataStructsNestingPermissions */3096export interface UpDataStructsNestingPermissions extends Struct {3097 readonly tokenOwner: bool;3098 readonly collectionAdmin: bool;3099 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;3100}31013102/** @name UpDataStructsOwnerRestrictedSet */3103export interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}31043105/** @name UpDataStructsProperties */3106export interface UpDataStructsProperties extends Struct {3107 readonly map: UpDataStructsPropertiesMapBoundedVec;3108 readonly consumedSpace: u32;3109 readonly reserved: u32;3110}31113112/** @name UpDataStructsPropertiesMapBoundedVec */3113export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}31143115/** @name UpDataStructsPropertiesMapPropertyPermission */3116export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}31173118/** @name UpDataStructsProperty */3119export interface UpDataStructsProperty extends Struct {3120 readonly key: Bytes;3121 readonly value: Bytes;3122}31233124/** @name UpDataStructsPropertyKeyPermission */3125export interface UpDataStructsPropertyKeyPermission extends Struct {3126 readonly key: Bytes;3127 readonly permission: UpDataStructsPropertyPermission;3128}31293130/** @name UpDataStructsPropertyPermission */3131export interface UpDataStructsPropertyPermission extends Struct {3132 readonly mutable: bool;3133 readonly collectionAdmin: bool;3134 readonly tokenOwner: bool;3135}31363137/** @name UpDataStructsPropertyScope */3138export interface UpDataStructsPropertyScope extends Enum {3139 readonly isNone: boolean;3140 readonly isRmrk: boolean;3141 readonly type: 'None' | 'Rmrk';3142}31433144/** @name UpDataStructsRpcCollection */3145export interface UpDataStructsRpcCollection extends Struct {3146 readonly owner: AccountId32;3147 readonly mode: UpDataStructsCollectionMode;3148 readonly name: Vec<u16>;3149 readonly description: Vec<u16>;3150 readonly tokenPrefix: Bytes;3151 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3152 readonly limits: UpDataStructsCollectionLimits;3153 readonly permissions: UpDataStructsCollectionPermissions;3154 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3155 readonly properties: Vec<UpDataStructsProperty>;3156 readonly readOnly: bool;3157 readonly flags: UpDataStructsRpcCollectionFlags;3158}31593160/** @name UpDataStructsRpcCollectionFlags */3161export interface UpDataStructsRpcCollectionFlags extends Struct {3162 readonly foreign: bool;3163 readonly erc721metadata: bool;3164}31653166/** @name UpDataStructsSponsoringRateLimit */3167export interface UpDataStructsSponsoringRateLimit extends Enum {3168 readonly isSponsoringDisabled: boolean;3169 readonly isBlocks: boolean;3170 readonly asBlocks: u32;3171 readonly type: 'SponsoringDisabled' | 'Blocks';3172}31733174/** @name UpDataStructsSponsorshipStateAccountId32 */3175export interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3176 readonly isDisabled: boolean;3177 readonly isUnconfirmed: boolean;3178 readonly asUnconfirmed: AccountId32;3179 readonly isConfirmed: boolean;3180 readonly asConfirmed: AccountId32;3181 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3182}31833184/** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr */3185export interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3186 readonly isDisabled: boolean;3187 readonly isUnconfirmed: boolean;3188 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3189 readonly isConfirmed: boolean;3190 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3191 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3192}31933194/** @name UpDataStructsTokenChild */3195export interface UpDataStructsTokenChild extends Struct {3196 readonly token: u32;3197 readonly collection: u32;3198}31993200/** @name UpDataStructsTokenData */3201export interface UpDataStructsTokenData extends Struct {3202 readonly properties: Vec<UpDataStructsProperty>;3203 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3204 readonly pieces: u128;3205}32063207/** @name UpPovEstimateRpcPovInfo */3208export interface UpPovEstimateRpcPovInfo extends Struct {3209 readonly proofSize: u64;3210 readonly compactProofSize: u64;3211 readonly compressedProofSize: u64;3212 readonly results: Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>;3213 readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;3214}32153216/** @name UpPovEstimateRpcTrieKeyValue */3217export interface UpPovEstimateRpcTrieKeyValue extends Struct {3218 readonly key: Bytes;3219 readonly value: Bytes;3220}32213222/** @name XcmDoubleEncoded */3223export interface XcmDoubleEncoded extends Struct {3224 readonly encoded: Bytes;3225}32263227/** @name XcmV2BodyId */3228export interface XcmV2BodyId extends Enum {3229 readonly isUnit: boolean;3230 readonly isNamed: boolean;3231 readonly asNamed: Bytes;3232 readonly isIndex: boolean;3233 readonly asIndex: Compact<u32>;3234 readonly isExecutive: boolean;3235 readonly isTechnical: boolean;3236 readonly isLegislative: boolean;3237 readonly isJudicial: boolean;3238 readonly isDefense: boolean;3239 readonly isAdministration: boolean;3240 readonly isTreasury: boolean;3241 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';3242}32433244/** @name XcmV2BodyPart */3245export interface XcmV2BodyPart extends Enum {3246 readonly isVoice: boolean;3247 readonly isMembers: boolean;3248 readonly asMembers: {3249 readonly count: Compact<u32>;3250 } & Struct;3251 readonly isFraction: boolean;3252 readonly asFraction: {3253 readonly nom: Compact<u32>;3254 readonly denom: Compact<u32>;3255 } & Struct;3256 readonly isAtLeastProportion: boolean;3257 readonly asAtLeastProportion: {3258 readonly nom: Compact<u32>;3259 readonly denom: Compact<u32>;3260 } & Struct;3261 readonly isMoreThanProportion: boolean;3262 readonly asMoreThanProportion: {3263 readonly nom: Compact<u32>;3264 readonly denom: Compact<u32>;3265 } & Struct;3266 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';3267}32683269/** @name XcmV2Instruction */3270export interface XcmV2Instruction extends Enum {3271 readonly isWithdrawAsset: boolean;3272 readonly asWithdrawAsset: XcmV2MultiassetMultiAssets;3273 readonly isReserveAssetDeposited: boolean;3274 readonly asReserveAssetDeposited: XcmV2MultiassetMultiAssets;3275 readonly isReceiveTeleportedAsset: boolean;3276 readonly asReceiveTeleportedAsset: XcmV2MultiassetMultiAssets;3277 readonly isQueryResponse: boolean;3278 readonly asQueryResponse: {3279 readonly queryId: Compact<u64>;3280 readonly response: XcmV2Response;3281 readonly maxWeight: Compact<u64>;3282 } & Struct;3283 readonly isTransferAsset: boolean;3284 readonly asTransferAsset: {3285 readonly assets: XcmV2MultiassetMultiAssets;3286 readonly beneficiary: XcmV2MultiLocation;3287 } & Struct;3288 readonly isTransferReserveAsset: boolean;3289 readonly asTransferReserveAsset: {3290 readonly assets: XcmV2MultiassetMultiAssets;3291 readonly dest: XcmV2MultiLocation;3292 readonly xcm: XcmV2Xcm;3293 } & Struct;3294 readonly isTransact: boolean;3295 readonly asTransact: {3296 readonly originType: XcmV2OriginKind;3297 readonly requireWeightAtMost: Compact<u64>;3298 readonly call: XcmDoubleEncoded;3299 } & Struct;3300 readonly isHrmpNewChannelOpenRequest: boolean;3301 readonly asHrmpNewChannelOpenRequest: {3302 readonly sender: Compact<u32>;3303 readonly maxMessageSize: Compact<u32>;3304 readonly maxCapacity: Compact<u32>;3305 } & Struct;3306 readonly isHrmpChannelAccepted: boolean;3307 readonly asHrmpChannelAccepted: {3308 readonly recipient: Compact<u32>;3309 } & Struct;3310 readonly isHrmpChannelClosing: boolean;3311 readonly asHrmpChannelClosing: {3312 readonly initiator: Compact<u32>;3313 readonly sender: Compact<u32>;3314 readonly recipient: Compact<u32>;3315 } & Struct;3316 readonly isClearOrigin: boolean;3317 readonly isDescendOrigin: boolean;3318 readonly asDescendOrigin: XcmV2MultilocationJunctions;3319 readonly isReportError: boolean;3320 readonly asReportError: {3321 readonly queryId: Compact<u64>;3322 readonly dest: XcmV2MultiLocation;3323 readonly maxResponseWeight: Compact<u64>;3324 } & Struct;3325 readonly isDepositAsset: boolean;3326 readonly asDepositAsset: {3327 readonly assets: XcmV2MultiassetMultiAssetFilter;3328 readonly maxAssets: Compact<u32>;3329 readonly beneficiary: XcmV2MultiLocation;3330 } & Struct;3331 readonly isDepositReserveAsset: boolean;3332 readonly asDepositReserveAsset: {3333 readonly assets: XcmV2MultiassetMultiAssetFilter;3334 readonly maxAssets: Compact<u32>;3335 readonly dest: XcmV2MultiLocation;3336 readonly xcm: XcmV2Xcm;3337 } & Struct;3338 readonly isExchangeAsset: boolean;3339 readonly asExchangeAsset: {3340 readonly give: XcmV2MultiassetMultiAssetFilter;3341 readonly receive: XcmV2MultiassetMultiAssets;3342 } & Struct;3343 readonly isInitiateReserveWithdraw: boolean;3344 readonly asInitiateReserveWithdraw: {3345 readonly assets: XcmV2MultiassetMultiAssetFilter;3346 readonly reserve: XcmV2MultiLocation;3347 readonly xcm: XcmV2Xcm;3348 } & Struct;3349 readonly isInitiateTeleport: boolean;3350 readonly asInitiateTeleport: {3351 readonly assets: XcmV2MultiassetMultiAssetFilter;3352 readonly dest: XcmV2MultiLocation;3353 readonly xcm: XcmV2Xcm;3354 } & Struct;3355 readonly isQueryHolding: boolean;3356 readonly asQueryHolding: {3357 readonly queryId: Compact<u64>;3358 readonly dest: XcmV2MultiLocation;3359 readonly assets: XcmV2MultiassetMultiAssetFilter;3360 readonly maxResponseWeight: Compact<u64>;3361 } & Struct;3362 readonly isBuyExecution: boolean;3363 readonly asBuyExecution: {3364 readonly fees: XcmV2MultiAsset;3365 readonly weightLimit: XcmV2WeightLimit;3366 } & Struct;3367 readonly isRefundSurplus: boolean;3368 readonly isSetErrorHandler: boolean;3369 readonly asSetErrorHandler: XcmV2Xcm;3370 readonly isSetAppendix: boolean;3371 readonly asSetAppendix: XcmV2Xcm;3372 readonly isClearError: boolean;3373 readonly isClaimAsset: boolean;3374 readonly asClaimAsset: {3375 readonly assets: XcmV2MultiassetMultiAssets;3376 readonly ticket: XcmV2MultiLocation;3377 } & Struct;3378 readonly isTrap: boolean;3379 readonly asTrap: Compact<u64>;3380 readonly isSubscribeVersion: boolean;3381 readonly asSubscribeVersion: {3382 readonly queryId: Compact<u64>;3383 readonly maxResponseWeight: Compact<u64>;3384 } & Struct;3385 readonly isUnsubscribeVersion: boolean;3386 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';3387}33883389/** @name XcmV2Junction */3390export interface XcmV2Junction extends Enum {3391 readonly isParachain: boolean;3392 readonly asParachain: Compact<u32>;3393 readonly isAccountId32: boolean;3394 readonly asAccountId32: {3395 readonly network: XcmV2NetworkId;3396 readonly id: U8aFixed;3397 } & Struct;3398 readonly isAccountIndex64: boolean;3399 readonly asAccountIndex64: {3400 readonly network: XcmV2NetworkId;3401 readonly index: Compact<u64>;3402 } & Struct;3403 readonly isAccountKey20: boolean;3404 readonly asAccountKey20: {3405 readonly network: XcmV2NetworkId;3406 readonly key: U8aFixed;3407 } & Struct;3408 readonly isPalletInstance: boolean;3409 readonly asPalletInstance: u8;3410 readonly isGeneralIndex: boolean;3411 readonly asGeneralIndex: Compact<u128>;3412 readonly isGeneralKey: boolean;3413 readonly asGeneralKey: Bytes;3414 readonly isOnlyChild: boolean;3415 readonly isPlurality: boolean;3416 readonly asPlurality: {3417 readonly id: XcmV2BodyId;3418 readonly part: XcmV2BodyPart;3419 } & Struct;3420 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';3421}34223423/** @name XcmV2MultiAsset */3424export interface XcmV2MultiAsset extends Struct {3425 readonly id: XcmV2MultiassetAssetId;3426 readonly fun: XcmV2MultiassetFungibility;3427}34283429/** @name XcmV2MultiassetAssetId */3430export interface XcmV2MultiassetAssetId extends Enum {3431 readonly isConcrete: boolean;3432 readonly asConcrete: XcmV2MultiLocation;3433 readonly isAbstract: boolean;3434 readonly asAbstract: Bytes;3435 readonly type: 'Concrete' | 'Abstract';3436}34373438/** @name XcmV2MultiassetAssetInstance */3439export interface XcmV2MultiassetAssetInstance extends Enum {3440 readonly isUndefined: boolean;3441 readonly isIndex: boolean;3442 readonly asIndex: Compact<u128>;3443 readonly isArray4: boolean;3444 readonly asArray4: U8aFixed;3445 readonly isArray8: boolean;3446 readonly asArray8: U8aFixed;3447 readonly isArray16: boolean;3448 readonly asArray16: U8aFixed;3449 readonly isArray32: boolean;3450 readonly asArray32: U8aFixed;3451 readonly isBlob: boolean;3452 readonly asBlob: Bytes;3453 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';3454}34553456/** @name XcmV2MultiassetFungibility */3457export interface XcmV2MultiassetFungibility extends Enum {3458 readonly isFungible: boolean;3459 readonly asFungible: Compact<u128>;3460 readonly isNonFungible: boolean;3461 readonly asNonFungible: XcmV2MultiassetAssetInstance;3462 readonly type: 'Fungible' | 'NonFungible';3463}34643465/** @name XcmV2MultiassetMultiAssetFilter */3466export interface XcmV2MultiassetMultiAssetFilter extends Enum {3467 readonly isDefinite: boolean;3468 readonly asDefinite: XcmV2MultiassetMultiAssets;3469 readonly isWild: boolean;3470 readonly asWild: XcmV2MultiassetWildMultiAsset;3471 readonly type: 'Definite' | 'Wild';3472}34733474/** @name XcmV2MultiassetMultiAssets */3475export interface XcmV2MultiassetMultiAssets extends Vec<XcmV2MultiAsset> {}34763477/** @name XcmV2MultiassetWildFungibility */3478export interface XcmV2MultiassetWildFungibility extends Enum {3479 readonly isFungible: boolean;3480 readonly isNonFungible: boolean;3481 readonly type: 'Fungible' | 'NonFungible';3482}34833484/** @name XcmV2MultiassetWildMultiAsset */3485export interface XcmV2MultiassetWildMultiAsset extends Enum {3486 readonly isAll: boolean;3487 readonly isAllOf: boolean;3488 readonly asAllOf: {3489 readonly id: XcmV2MultiassetAssetId;3490 readonly fun: XcmV2MultiassetWildFungibility;3491 } & Struct;3492 readonly type: 'All' | 'AllOf';3493}34943495/** @name XcmV2MultiLocation */3496export interface XcmV2MultiLocation extends Struct {3497 readonly parents: u8;3498 readonly interior: XcmV2MultilocationJunctions;3499}35003501/** @name XcmV2MultilocationJunctions */3502export interface XcmV2MultilocationJunctions extends Enum {3503 readonly isHere: boolean;3504 readonly isX1: boolean;3505 readonly asX1: XcmV2Junction;3506 readonly isX2: boolean;3507 readonly asX2: ITuple<[XcmV2Junction, XcmV2Junction]>;3508 readonly isX3: boolean;3509 readonly asX3: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction]>;3510 readonly isX4: boolean;3511 readonly asX4: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;3512 readonly isX5: boolean;3513 readonly asX5: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;3514 readonly isX6: boolean;3515 readonly asX6: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;3516 readonly isX7: boolean;3517 readonly asX7: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;3518 readonly isX8: boolean;3519 readonly asX8: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;3520 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3521}35223523/** @name XcmV2NetworkId */3524export interface XcmV2NetworkId extends Enum {3525 readonly isAny: boolean;3526 readonly isNamed: boolean;3527 readonly asNamed: Bytes;3528 readonly isPolkadot: boolean;3529 readonly isKusama: boolean;3530 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';3531}35323533/** @name XcmV2OriginKind */3534export interface XcmV2OriginKind extends Enum {3535 readonly isNative: boolean;3536 readonly isSovereignAccount: boolean;3537 readonly isSuperuser: boolean;3538 readonly isXcm: boolean;3539 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';3540}35413542/** @name XcmV2Response */3543export interface XcmV2Response extends Enum {3544 readonly isNull: boolean;3545 readonly isAssets: boolean;3546 readonly asAssets: XcmV2MultiassetMultiAssets;3547 readonly isExecutionResult: boolean;3548 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;3549 readonly isVersion: boolean;3550 readonly asVersion: u32;3551 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';3552}35533554/** @name XcmV2TraitsError */3555export interface XcmV2TraitsError extends Enum {3556 readonly isOverflow: boolean;3557 readonly isUnimplemented: boolean;3558 readonly isUntrustedReserveLocation: boolean;3559 readonly isUntrustedTeleportLocation: boolean;3560 readonly isMultiLocationFull: boolean;3561 readonly isMultiLocationNotInvertible: boolean;3562 readonly isBadOrigin: boolean;3563 readonly isInvalidLocation: boolean;3564 readonly isAssetNotFound: boolean;3565 readonly isFailedToTransactAsset: boolean;3566 readonly isNotWithdrawable: boolean;3567 readonly isLocationCannotHold: boolean;3568 readonly isExceedsMaxMessageSize: boolean;3569 readonly isDestinationUnsupported: boolean;3570 readonly isTransport: boolean;3571 readonly isUnroutable: boolean;3572 readonly isUnknownClaim: boolean;3573 readonly isFailedToDecode: boolean;3574 readonly isMaxWeightInvalid: boolean;3575 readonly isNotHoldingFees: boolean;3576 readonly isTooExpensive: boolean;3577 readonly isTrap: boolean;3578 readonly asTrap: u64;3579 readonly isUnhandledXcmVersion: boolean;3580 readonly isWeightLimitReached: boolean;3581 readonly asWeightLimitReached: u64;3582 readonly isBarrier: boolean;3583 readonly isWeightNotComputable: boolean;3584 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';3585}35863587/** @name XcmV2WeightLimit */3588export interface XcmV2WeightLimit extends Enum {3589 readonly isUnlimited: boolean;3590 readonly isLimited: boolean;3591 readonly asLimited: Compact<u64>;3592 readonly type: 'Unlimited' | 'Limited';3593}35943595/** @name XcmV2Xcm */3596export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}35973598/** @name XcmV3Instruction */3599export interface XcmV3Instruction extends Enum {3600 readonly isWithdrawAsset: boolean;3601 readonly asWithdrawAsset: XcmV3MultiassetMultiAssets;3602 readonly isReserveAssetDeposited: boolean;3603 readonly asReserveAssetDeposited: XcmV3MultiassetMultiAssets;3604 readonly isReceiveTeleportedAsset: boolean;3605 readonly asReceiveTeleportedAsset: XcmV3MultiassetMultiAssets;3606 readonly isQueryResponse: boolean;3607 readonly asQueryResponse: {3608 readonly queryId: Compact<u64>;3609 readonly response: XcmV3Response;3610 readonly maxWeight: SpWeightsWeightV2Weight;3611 readonly querier: Option<XcmV3MultiLocation>;3612 } & Struct;3613 readonly isTransferAsset: boolean;3614 readonly asTransferAsset: {3615 readonly assets: XcmV3MultiassetMultiAssets;3616 readonly beneficiary: XcmV3MultiLocation;3617 } & Struct;3618 readonly isTransferReserveAsset: boolean;3619 readonly asTransferReserveAsset: {3620 readonly assets: XcmV3MultiassetMultiAssets;3621 readonly dest: XcmV3MultiLocation;3622 readonly xcm: XcmV3Xcm;3623 } & Struct;3624 readonly isTransact: boolean;3625 readonly asTransact: {3626 readonly originKind: XcmV2OriginKind;3627 readonly requireWeightAtMost: SpWeightsWeightV2Weight;3628 readonly call: XcmDoubleEncoded;3629 } & Struct;3630 readonly isHrmpNewChannelOpenRequest: boolean;3631 readonly asHrmpNewChannelOpenRequest: {3632 readonly sender: Compact<u32>;3633 readonly maxMessageSize: Compact<u32>;3634 readonly maxCapacity: Compact<u32>;3635 } & Struct;3636 readonly isHrmpChannelAccepted: boolean;3637 readonly asHrmpChannelAccepted: {3638 readonly recipient: Compact<u32>;3639 } & Struct;3640 readonly isHrmpChannelClosing: boolean;3641 readonly asHrmpChannelClosing: {3642 readonly initiator: Compact<u32>;3643 readonly sender: Compact<u32>;3644 readonly recipient: Compact<u32>;3645 } & Struct;3646 readonly isClearOrigin: boolean;3647 readonly isDescendOrigin: boolean;3648 readonly asDescendOrigin: XcmV3Junctions;3649 readonly isReportError: boolean;3650 readonly asReportError: XcmV3QueryResponseInfo;3651 readonly isDepositAsset: boolean;3652 readonly asDepositAsset: {3653 readonly assets: XcmV3MultiassetMultiAssetFilter;3654 readonly beneficiary: XcmV3MultiLocation;3655 } & Struct;3656 readonly isDepositReserveAsset: boolean;3657 readonly asDepositReserveAsset: {3658 readonly assets: XcmV3MultiassetMultiAssetFilter;3659 readonly dest: XcmV3MultiLocation;3660 readonly xcm: XcmV3Xcm;3661 } & Struct;3662 readonly isExchangeAsset: boolean;3663 readonly asExchangeAsset: {3664 readonly give: XcmV3MultiassetMultiAssetFilter;3665 readonly want: XcmV3MultiassetMultiAssets;3666 readonly maximal: bool;3667 } & Struct;3668 readonly isInitiateReserveWithdraw: boolean;3669 readonly asInitiateReserveWithdraw: {3670 readonly assets: XcmV3MultiassetMultiAssetFilter;3671 readonly reserve: XcmV3MultiLocation;3672 readonly xcm: XcmV3Xcm;3673 } & Struct;3674 readonly isInitiateTeleport: boolean;3675 readonly asInitiateTeleport: {3676 readonly assets: XcmV3MultiassetMultiAssetFilter;3677 readonly dest: XcmV3MultiLocation;3678 readonly xcm: XcmV3Xcm;3679 } & Struct;3680 readonly isReportHolding: boolean;3681 readonly asReportHolding: {3682 readonly responseInfo: XcmV3QueryResponseInfo;3683 readonly assets: XcmV3MultiassetMultiAssetFilter;3684 } & Struct;3685 readonly isBuyExecution: boolean;3686 readonly asBuyExecution: {3687 readonly fees: XcmV3MultiAsset;3688 readonly weightLimit: XcmV3WeightLimit;3689 } & Struct;3690 readonly isRefundSurplus: boolean;3691 readonly isSetErrorHandler: boolean;3692 readonly asSetErrorHandler: XcmV3Xcm;3693 readonly isSetAppendix: boolean;3694 readonly asSetAppendix: XcmV3Xcm;3695 readonly isClearError: boolean;3696 readonly isClaimAsset: boolean;3697 readonly asClaimAsset: {3698 readonly assets: XcmV3MultiassetMultiAssets;3699 readonly ticket: XcmV3MultiLocation;3700 } & Struct;3701 readonly isTrap: boolean;3702 readonly asTrap: Compact<u64>;3703 readonly isSubscribeVersion: boolean;3704 readonly asSubscribeVersion: {3705 readonly queryId: Compact<u64>;3706 readonly maxResponseWeight: SpWeightsWeightV2Weight;3707 } & Struct;3708 readonly isUnsubscribeVersion: boolean;3709 readonly isBurnAsset: boolean;3710 readonly asBurnAsset: XcmV3MultiassetMultiAssets;3711 readonly isExpectAsset: boolean;3712 readonly asExpectAsset: XcmV3MultiassetMultiAssets;3713 readonly isExpectOrigin: boolean;3714 readonly asExpectOrigin: Option<XcmV3MultiLocation>;3715 readonly isExpectError: boolean;3716 readonly asExpectError: Option<ITuple<[u32, XcmV3TraitsError]>>;3717 readonly isExpectTransactStatus: boolean;3718 readonly asExpectTransactStatus: XcmV3MaybeErrorCode;3719 readonly isQueryPallet: boolean;3720 readonly asQueryPallet: {3721 readonly moduleName: Bytes;3722 readonly responseInfo: XcmV3QueryResponseInfo;3723 } & Struct;3724 readonly isExpectPallet: boolean;3725 readonly asExpectPallet: {3726 readonly index: Compact<u32>;3727 readonly name: Bytes;3728 readonly moduleName: Bytes;3729 readonly crateMajor: Compact<u32>;3730 readonly minCrateMinor: Compact<u32>;3731 } & Struct;3732 readonly isReportTransactStatus: boolean;3733 readonly asReportTransactStatus: XcmV3QueryResponseInfo;3734 readonly isClearTransactStatus: boolean;3735 readonly isUniversalOrigin: boolean;3736 readonly asUniversalOrigin: XcmV3Junction;3737 readonly isExportMessage: boolean;3738 readonly asExportMessage: {3739 readonly network: XcmV3JunctionNetworkId;3740 readonly destination: XcmV3Junctions;3741 readonly xcm: XcmV3Xcm;3742 } & Struct;3743 readonly isLockAsset: boolean;3744 readonly asLockAsset: {3745 readonly asset: XcmV3MultiAsset;3746 readonly unlocker: XcmV3MultiLocation;3747 } & Struct;3748 readonly isUnlockAsset: boolean;3749 readonly asUnlockAsset: {3750 readonly asset: XcmV3MultiAsset;3751 readonly target: XcmV3MultiLocation;3752 } & Struct;3753 readonly isNoteUnlockable: boolean;3754 readonly asNoteUnlockable: {3755 readonly asset: XcmV3MultiAsset;3756 readonly owner: XcmV3MultiLocation;3757 } & Struct;3758 readonly isRequestUnlock: boolean;3759 readonly asRequestUnlock: {3760 readonly asset: XcmV3MultiAsset;3761 readonly locker: XcmV3MultiLocation;3762 } & Struct;3763 readonly isSetFeesMode: boolean;3764 readonly asSetFeesMode: {3765 readonly jitWithdraw: bool;3766 } & Struct;3767 readonly isSetTopic: boolean;3768 readonly asSetTopic: U8aFixed;3769 readonly isClearTopic: boolean;3770 readonly isAliasOrigin: boolean;3771 readonly asAliasOrigin: XcmV3MultiLocation;3772 readonly isUnpaidExecution: boolean;3773 readonly asUnpaidExecution: {3774 readonly weightLimit: XcmV3WeightLimit;3775 readonly checkOrigin: Option<XcmV3MultiLocation>;3776 } & Struct;3777 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'ReportHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion' | 'BurnAsset' | 'ExpectAsset' | 'ExpectOrigin' | 'ExpectError' | 'ExpectTransactStatus' | 'QueryPallet' | 'ExpectPallet' | 'ReportTransactStatus' | 'ClearTransactStatus' | 'UniversalOrigin' | 'ExportMessage' | 'LockAsset' | 'UnlockAsset' | 'NoteUnlockable' | 'RequestUnlock' | 'SetFeesMode' | 'SetTopic' | 'ClearTopic' | 'AliasOrigin' | 'UnpaidExecution';3778}37793780/** @name XcmV3Junction */3781export interface XcmV3Junction extends Enum {3782 readonly isParachain: boolean;3783 readonly asParachain: Compact<u32>;3784 readonly isAccountId32: boolean;3785 readonly asAccountId32: {3786 readonly network: Option<XcmV3JunctionNetworkId>;3787 readonly id: U8aFixed;3788 } & Struct;3789 readonly isAccountIndex64: boolean;3790 readonly asAccountIndex64: {3791 readonly network: Option<XcmV3JunctionNetworkId>;3792 readonly index: Compact<u64>;3793 } & Struct;3794 readonly isAccountKey20: boolean;3795 readonly asAccountKey20: {3796 readonly network: Option<XcmV3JunctionNetworkId>;3797 readonly key: U8aFixed;3798 } & Struct;3799 readonly isPalletInstance: boolean;3800 readonly asPalletInstance: u8;3801 readonly isGeneralIndex: boolean;3802 readonly asGeneralIndex: Compact<u128>;3803 readonly isGeneralKey: boolean;3804 readonly asGeneralKey: {3805 readonly length: u8;3806 readonly data: U8aFixed;3807 } & Struct;3808 readonly isOnlyChild: boolean;3809 readonly isPlurality: boolean;3810 readonly asPlurality: {3811 readonly id: XcmV3JunctionBodyId;3812 readonly part: XcmV3JunctionBodyPart;3813 } & Struct;3814 readonly isGlobalConsensus: boolean;3815 readonly asGlobalConsensus: XcmV3JunctionNetworkId;3816 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus';3817}38183819/** @name XcmV3JunctionBodyId */3820export interface XcmV3JunctionBodyId extends Enum {3821 readonly isUnit: boolean;3822 readonly isMoniker: boolean;3823 readonly asMoniker: U8aFixed;3824 readonly isIndex: boolean;3825 readonly asIndex: Compact<u32>;3826 readonly isExecutive: boolean;3827 readonly isTechnical: boolean;3828 readonly isLegislative: boolean;3829 readonly isJudicial: boolean;3830 readonly isDefense: boolean;3831 readonly isAdministration: boolean;3832 readonly isTreasury: boolean;3833 readonly type: 'Unit' | 'Moniker' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';3834}38353836/** @name XcmV3JunctionBodyPart */3837export interface XcmV3JunctionBodyPart extends Enum {3838 readonly isVoice: boolean;3839 readonly isMembers: boolean;3840 readonly asMembers: {3841 readonly count: Compact<u32>;3842 } & Struct;3843 readonly isFraction: boolean;3844 readonly asFraction: {3845 readonly nom: Compact<u32>;3846 readonly denom: Compact<u32>;3847 } & Struct;3848 readonly isAtLeastProportion: boolean;3849 readonly asAtLeastProportion: {3850 readonly nom: Compact<u32>;3851 readonly denom: Compact<u32>;3852 } & Struct;3853 readonly isMoreThanProportion: boolean;3854 readonly asMoreThanProportion: {3855 readonly nom: Compact<u32>;3856 readonly denom: Compact<u32>;3857 } & Struct;3858 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';3859}38603861/** @name XcmV3JunctionNetworkId */3862export interface XcmV3JunctionNetworkId extends Enum {3863 readonly isByGenesis: boolean;3864 readonly asByGenesis: U8aFixed;3865 readonly isByFork: boolean;3866 readonly asByFork: {3867 readonly blockNumber: u64;3868 readonly blockHash: U8aFixed;3869 } & Struct;3870 readonly isPolkadot: boolean;3871 readonly isKusama: boolean;3872 readonly isWestend: boolean;3873 readonly isRococo: boolean;3874 readonly isWococo: boolean;3875 readonly isEthereum: boolean;3876 readonly asEthereum: {3877 readonly chainId: Compact<u64>;3878 } & Struct;3879 readonly isBitcoinCore: boolean;3880 readonly isBitcoinCash: boolean;3881 readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash';3882}38833884/** @name XcmV3Junctions */3885export interface XcmV3Junctions extends Enum {3886 readonly isHere: boolean;3887 readonly isX1: boolean;3888 readonly asX1: XcmV3Junction;3889 readonly isX2: boolean;3890 readonly asX2: ITuple<[XcmV3Junction, XcmV3Junction]>;3891 readonly isX3: boolean;3892 readonly asX3: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction]>;3893 readonly isX4: boolean;3894 readonly asX4: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;3895 readonly isX5: boolean;3896 readonly asX5: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;3897 readonly isX6: boolean;3898 readonly asX6: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;3899 readonly isX7: boolean;3900 readonly asX7: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;3901 readonly isX8: boolean;3902 readonly asX8: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;3903 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3904}39053906/** @name XcmV3MaybeErrorCode */3907export interface XcmV3MaybeErrorCode extends Enum {3908 readonly isSuccess: boolean;3909 readonly isError: boolean;3910 readonly asError: Bytes;3911 readonly isTruncatedError: boolean;3912 readonly asTruncatedError: Bytes;3913 readonly type: 'Success' | 'Error' | 'TruncatedError';3914}39153916/** @name XcmV3MultiAsset */3917export interface XcmV3MultiAsset extends Struct {3918 readonly id: XcmV3MultiassetAssetId;3919 readonly fun: XcmV3MultiassetFungibility;3920}39213922/** @name XcmV3MultiassetAssetId */3923export interface XcmV3MultiassetAssetId extends Enum {3924 readonly isConcrete: boolean;3925 readonly asConcrete: XcmV3MultiLocation;3926 readonly isAbstract: boolean;3927 readonly asAbstract: U8aFixed;3928 readonly type: 'Concrete' | 'Abstract';3929}39303931/** @name XcmV3MultiassetAssetInstance */3932export interface XcmV3MultiassetAssetInstance extends Enum {3933 readonly isUndefined: boolean;3934 readonly isIndex: boolean;3935 readonly asIndex: Compact<u128>;3936 readonly isArray4: boolean;3937 readonly asArray4: U8aFixed;3938 readonly isArray8: boolean;3939 readonly asArray8: U8aFixed;3940 readonly isArray16: boolean;3941 readonly asArray16: U8aFixed;3942 readonly isArray32: boolean;3943 readonly asArray32: U8aFixed;3944 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32';3945}39463947/** @name XcmV3MultiassetFungibility */3948export interface XcmV3MultiassetFungibility extends Enum {3949 readonly isFungible: boolean;3950 readonly asFungible: Compact<u128>;3951 readonly isNonFungible: boolean;3952 readonly asNonFungible: XcmV3MultiassetAssetInstance;3953 readonly type: 'Fungible' | 'NonFungible';3954}39553956/** @name XcmV3MultiassetMultiAssetFilter */3957export interface XcmV3MultiassetMultiAssetFilter extends Enum {3958 readonly isDefinite: boolean;3959 readonly asDefinite: XcmV3MultiassetMultiAssets;3960 readonly isWild: boolean;3961 readonly asWild: XcmV3MultiassetWildMultiAsset;3962 readonly type: 'Definite' | 'Wild';3963}39643965/** @name XcmV3MultiassetMultiAssets */3966export interface XcmV3MultiassetMultiAssets extends Vec<XcmV3MultiAsset> {}39673968/** @name XcmV3MultiassetWildFungibility */3969export interface XcmV3MultiassetWildFungibility extends Enum {3970 readonly isFungible: boolean;3971 readonly isNonFungible: boolean;3972 readonly type: 'Fungible' | 'NonFungible';3973}39743975/** @name XcmV3MultiassetWildMultiAsset */3976export interface XcmV3MultiassetWildMultiAsset extends Enum {3977 readonly isAll: boolean;3978 readonly isAllOf: boolean;3979 readonly asAllOf: {3980 readonly id: XcmV3MultiassetAssetId;3981 readonly fun: XcmV3MultiassetWildFungibility;3982 } & Struct;3983 readonly isAllCounted: boolean;3984 readonly asAllCounted: Compact<u32>;3985 readonly isAllOfCounted: boolean;3986 readonly asAllOfCounted: {3987 readonly id: XcmV3MultiassetAssetId;3988 readonly fun: XcmV3MultiassetWildFungibility;3989 readonly count: Compact<u32>;3990 } & Struct;3991 readonly type: 'All' | 'AllOf' | 'AllCounted' | 'AllOfCounted';3992}39933994/** @name XcmV3MultiLocation */3995export interface XcmV3MultiLocation extends Struct {3996 readonly parents: u8;3997 readonly interior: XcmV3Junctions;3998}39994000/** @name XcmV3PalletInfo */4001export interface XcmV3PalletInfo extends Struct {4002 readonly index: Compact<u32>;4003 readonly name: Bytes;4004 readonly moduleName: Bytes;4005 readonly major: Compact<u32>;4006 readonly minor: Compact<u32>;4007 readonly patch: Compact<u32>;4008}40094010/** @name XcmV3QueryResponseInfo */4011export interface XcmV3QueryResponseInfo extends Struct {4012 readonly destination: XcmV3MultiLocation;4013 readonly queryId: Compact<u64>;4014 readonly maxWeight: SpWeightsWeightV2Weight;4015}40164017/** @name XcmV3Response */4018export interface XcmV3Response extends Enum {4019 readonly isNull: boolean;4020 readonly isAssets: boolean;4021 readonly asAssets: XcmV3MultiassetMultiAssets;4022 readonly isExecutionResult: boolean;4023 readonly asExecutionResult: Option<ITuple<[u32, XcmV3TraitsError]>>;4024 readonly isVersion: boolean;4025 readonly asVersion: u32;4026 readonly isPalletsInfo: boolean;4027 readonly asPalletsInfo: Vec<XcmV3PalletInfo>;4028 readonly isDispatchResult: boolean;4029 readonly asDispatchResult: XcmV3MaybeErrorCode;4030 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version' | 'PalletsInfo' | 'DispatchResult';4031}40324033/** @name XcmV3TraitsError */4034export interface XcmV3TraitsError extends Enum {4035 readonly isOverflow: boolean;4036 readonly isUnimplemented: boolean;4037 readonly isUntrustedReserveLocation: boolean;4038 readonly isUntrustedTeleportLocation: boolean;4039 readonly isLocationFull: boolean;4040 readonly isLocationNotInvertible: boolean;4041 readonly isBadOrigin: boolean;4042 readonly isInvalidLocation: boolean;4043 readonly isAssetNotFound: boolean;4044 readonly isFailedToTransactAsset: boolean;4045 readonly isNotWithdrawable: boolean;4046 readonly isLocationCannotHold: boolean;4047 readonly isExceedsMaxMessageSize: boolean;4048 readonly isDestinationUnsupported: boolean;4049 readonly isTransport: boolean;4050 readonly isUnroutable: boolean;4051 readonly isUnknownClaim: boolean;4052 readonly isFailedToDecode: boolean;4053 readonly isMaxWeightInvalid: boolean;4054 readonly isNotHoldingFees: boolean;4055 readonly isTooExpensive: boolean;4056 readonly isTrap: boolean;4057 readonly asTrap: u64;4058 readonly isExpectationFalse: boolean;4059 readonly isPalletNotFound: boolean;4060 readonly isNameMismatch: boolean;4061 readonly isVersionIncompatible: boolean;4062 readonly isHoldingWouldOverflow: boolean;4063 readonly isExportError: boolean;4064 readonly isReanchorFailed: boolean;4065 readonly isNoDeal: boolean;4066 readonly isFeesNotMet: boolean;4067 readonly isLockError: boolean;4068 readonly isNoPermission: boolean;4069 readonly isUnanchored: boolean;4070 readonly isNotDepositable: boolean;4071 readonly isUnhandledXcmVersion: boolean;4072 readonly isWeightLimitReached: boolean;4073 readonly asWeightLimitReached: SpWeightsWeightV2Weight;4074 readonly isBarrier: boolean;4075 readonly isWeightNotComputable: boolean;4076 readonly isExceedsStackLimit: boolean;4077 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'LocationFull' | 'LocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'ExpectationFalse' | 'PalletNotFound' | 'NameMismatch' | 'VersionIncompatible' | 'HoldingWouldOverflow' | 'ExportError' | 'ReanchorFailed' | 'NoDeal' | 'FeesNotMet' | 'LockError' | 'NoPermission' | 'Unanchored' | 'NotDepositable' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable' | 'ExceedsStackLimit';4078}40794080/** @name XcmV3TraitsOutcome */4081export interface XcmV3TraitsOutcome extends Enum {4082 readonly isComplete: boolean;4083 readonly asComplete: SpWeightsWeightV2Weight;4084 readonly isIncomplete: boolean;4085 readonly asIncomplete: ITuple<[SpWeightsWeightV2Weight, XcmV3TraitsError]>;4086 readonly isError: boolean;4087 readonly asError: XcmV3TraitsError;4088 readonly type: 'Complete' | 'Incomplete' | 'Error';4089}40904091/** @name XcmV3WeightLimit */4092export interface XcmV3WeightLimit extends Enum {4093 readonly isUnlimited: boolean;4094 readonly isLimited: boolean;4095 readonly asLimited: SpWeightsWeightV2Weight;4096 readonly type: 'Unlimited' | 'Limited';4097}40984099/** @name XcmV3Xcm */4100export interface XcmV3Xcm extends Vec<XcmV3Instruction> {}41014102/** @name XcmVersionedAssetId */4103export interface XcmVersionedAssetId extends Enum {4104 readonly isV3: boolean;4105 readonly asV3: XcmV3MultiassetAssetId;4106 readonly type: 'V3';4107}41084109/** @name XcmVersionedMultiAsset */4110export interface XcmVersionedMultiAsset extends Enum {4111 readonly isV2: boolean;4112 readonly asV2: XcmV2MultiAsset;4113 readonly isV3: boolean;4114 readonly asV3: XcmV3MultiAsset;4115 readonly type: 'V2' | 'V3';4116}41174118/** @name XcmVersionedMultiAssets */4119export interface XcmVersionedMultiAssets extends Enum {4120 readonly isV2: boolean;4121 readonly asV2: XcmV2MultiassetMultiAssets;4122 readonly isV3: boolean;4123 readonly asV3: XcmV3MultiassetMultiAssets;4124 readonly type: 'V2' | 'V3';4125}41264127/** @name XcmVersionedMultiLocation */4128export interface XcmVersionedMultiLocation extends Enum {4129 readonly isV2: boolean;4130 readonly asV2: XcmV2MultiLocation;4131 readonly isV3: boolean;4132 readonly asV3: XcmV3MultiLocation;4133 readonly type: 'V2' | 'V3';4134}41354136/** @name XcmVersionedResponse */4137export interface XcmVersionedResponse extends Enum {4138 readonly isV2: boolean;4139 readonly asV2: XcmV2Response;4140 readonly isV3: boolean;4141 readonly asV3: XcmV3Response;4142 readonly type: 'V2' | 'V3';4143}41444145/** @name XcmVersionedXcm */4146export interface XcmVersionedXcm extends Enum {4147 readonly isV2: boolean;4148 readonly asV2: XcmV2Xcm;4149 readonly isV3: boolean;4150 readonly asV3: XcmV3Xcm;4151 readonly type: 'V2' | 'V3';4152}41534154export type PHANTOM_DEFAULT = 'default';1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34import type { Data } from '@polkadot/types';5import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';6import type { ITuple } from '@polkadot/types-codec/types';7import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';8import type { Event } from '@polkadot/types/interfaces/system';910/** @name CumulusPalletDmpQueueCall */11export interface CumulusPalletDmpQueueCall extends Enum {12 readonly isServiceOverweight: boolean;13 readonly asServiceOverweight: {14 readonly index: u64;15 readonly weightLimit: SpWeightsWeightV2Weight;16 } & Struct;17 readonly type: 'ServiceOverweight';18}1920/** @name CumulusPalletDmpQueueConfigData */21export interface CumulusPalletDmpQueueConfigData extends Struct {22 readonly maxIndividual: SpWeightsWeightV2Weight;23}2425/** @name CumulusPalletDmpQueueError */26export interface CumulusPalletDmpQueueError extends Enum {27 readonly isUnknown: boolean;28 readonly isOverLimit: boolean;29 readonly type: 'Unknown' | 'OverLimit';30}3132/** @name CumulusPalletDmpQueueEvent */33export interface CumulusPalletDmpQueueEvent extends Enum {34 readonly isInvalidFormat: boolean;35 readonly asInvalidFormat: {36 readonly messageId: U8aFixed;37 } & Struct;38 readonly isUnsupportedVersion: boolean;39 readonly asUnsupportedVersion: {40 readonly messageId: U8aFixed;41 } & Struct;42 readonly isExecutedDownward: boolean;43 readonly asExecutedDownward: {44 readonly messageId: U8aFixed;45 readonly outcome: XcmV3TraitsOutcome;46 } & Struct;47 readonly isWeightExhausted: boolean;48 readonly asWeightExhausted: {49 readonly messageId: U8aFixed;50 readonly remainingWeight: SpWeightsWeightV2Weight;51 readonly requiredWeight: SpWeightsWeightV2Weight;52 } & Struct;53 readonly isOverweightEnqueued: boolean;54 readonly asOverweightEnqueued: {55 readonly messageId: U8aFixed;56 readonly overweightIndex: u64;57 readonly requiredWeight: SpWeightsWeightV2Weight;58 } & Struct;59 readonly isOverweightServiced: boolean;60 readonly asOverweightServiced: {61 readonly overweightIndex: u64;62 readonly weightUsed: SpWeightsWeightV2Weight;63 } & Struct;64 readonly isMaxMessagesExhausted: boolean;65 readonly asMaxMessagesExhausted: {66 readonly messageId: U8aFixed;67 } & Struct;68 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced' | 'MaxMessagesExhausted';69}7071/** @name CumulusPalletDmpQueuePageIndexData */72export interface CumulusPalletDmpQueuePageIndexData extends Struct {73 readonly beginUsed: u32;74 readonly endUsed: u32;75 readonly overweightCount: u64;76}7778/** @name CumulusPalletParachainSystemCall */79export interface CumulusPalletParachainSystemCall extends Enum {80 readonly isSetValidationData: boolean;81 readonly asSetValidationData: {82 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;83 } & Struct;84 readonly isSudoSendUpwardMessage: boolean;85 readonly asSudoSendUpwardMessage: {86 readonly message: Bytes;87 } & Struct;88 readonly isAuthorizeUpgrade: boolean;89 readonly asAuthorizeUpgrade: {90 readonly codeHash: H256;91 readonly checkVersion: bool;92 } & Struct;93 readonly isEnactAuthorizedUpgrade: boolean;94 readonly asEnactAuthorizedUpgrade: {95 readonly code: Bytes;96 } & Struct;97 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';98}99100/** @name CumulusPalletParachainSystemCodeUpgradeAuthorization */101export interface CumulusPalletParachainSystemCodeUpgradeAuthorization extends Struct {102 readonly codeHash: H256;103 readonly checkVersion: bool;104}105106/** @name CumulusPalletParachainSystemError */107export interface CumulusPalletParachainSystemError extends Enum {108 readonly isOverlappingUpgrades: boolean;109 readonly isProhibitedByPolkadot: boolean;110 readonly isTooBig: boolean;111 readonly isValidationDataNotAvailable: boolean;112 readonly isHostConfigurationNotAvailable: boolean;113 readonly isNotScheduled: boolean;114 readonly isNothingAuthorized: boolean;115 readonly isUnauthorized: boolean;116 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';117}118119/** @name CumulusPalletParachainSystemEvent */120export interface CumulusPalletParachainSystemEvent extends Enum {121 readonly isValidationFunctionStored: boolean;122 readonly isValidationFunctionApplied: boolean;123 readonly asValidationFunctionApplied: {124 readonly relayChainBlockNum: u32;125 } & Struct;126 readonly isValidationFunctionDiscarded: boolean;127 readonly isUpgradeAuthorized: boolean;128 readonly asUpgradeAuthorized: {129 readonly codeHash: H256;130 } & Struct;131 readonly isDownwardMessagesReceived: boolean;132 readonly asDownwardMessagesReceived: {133 readonly count: u32;134 } & Struct;135 readonly isDownwardMessagesProcessed: boolean;136 readonly asDownwardMessagesProcessed: {137 readonly weightUsed: SpWeightsWeightV2Weight;138 readonly dmqHead: H256;139 } & Struct;140 readonly isUpwardMessageSent: boolean;141 readonly asUpwardMessageSent: {142 readonly messageHash: Option<U8aFixed>;143 } & Struct;144 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed' | 'UpwardMessageSent';145}146147/** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot */148export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {149 readonly dmqMqcHead: H256;150 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;151 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV4AbridgedHrmpChannel]>>;152 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV4AbridgedHrmpChannel]>>;153}154155/** @name CumulusPalletXcmCall */156export interface CumulusPalletXcmCall extends Null {}157158/** @name CumulusPalletXcmError */159export interface CumulusPalletXcmError extends Null {}160161/** @name CumulusPalletXcmEvent */162export interface CumulusPalletXcmEvent extends Enum {163 readonly isInvalidFormat: boolean;164 readonly asInvalidFormat: U8aFixed;165 readonly isUnsupportedVersion: boolean;166 readonly asUnsupportedVersion: U8aFixed;167 readonly isExecutedDownward: boolean;168 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV3TraitsOutcome]>;169 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';170}171172/** @name CumulusPalletXcmpQueueCall */173export interface CumulusPalletXcmpQueueCall extends Enum {174 readonly isServiceOverweight: boolean;175 readonly asServiceOverweight: {176 readonly index: u64;177 readonly weightLimit: SpWeightsWeightV2Weight;178 } & Struct;179 readonly isSuspendXcmExecution: boolean;180 readonly isResumeXcmExecution: boolean;181 readonly isUpdateSuspendThreshold: boolean;182 readonly asUpdateSuspendThreshold: {183 readonly new_: u32;184 } & Struct;185 readonly isUpdateDropThreshold: boolean;186 readonly asUpdateDropThreshold: {187 readonly new_: u32;188 } & Struct;189 readonly isUpdateResumeThreshold: boolean;190 readonly asUpdateResumeThreshold: {191 readonly new_: u32;192 } & Struct;193 readonly isUpdateThresholdWeight: boolean;194 readonly asUpdateThresholdWeight: {195 readonly new_: SpWeightsWeightV2Weight;196 } & Struct;197 readonly isUpdateWeightRestrictDecay: boolean;198 readonly asUpdateWeightRestrictDecay: {199 readonly new_: SpWeightsWeightV2Weight;200 } & Struct;201 readonly isUpdateXcmpMaxIndividualWeight: boolean;202 readonly asUpdateXcmpMaxIndividualWeight: {203 readonly new_: SpWeightsWeightV2Weight;204 } & Struct;205 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';206}207208/** @name CumulusPalletXcmpQueueError */209export interface CumulusPalletXcmpQueueError extends Enum {210 readonly isFailedToSend: boolean;211 readonly isBadXcmOrigin: boolean;212 readonly isBadXcm: boolean;213 readonly isBadOverweightIndex: boolean;214 readonly isWeightOverLimit: boolean;215 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';216}217218/** @name CumulusPalletXcmpQueueEvent */219export interface CumulusPalletXcmpQueueEvent extends Enum {220 readonly isSuccess: boolean;221 readonly asSuccess: {222 readonly messageHash: Option<U8aFixed>;223 readonly weight: SpWeightsWeightV2Weight;224 } & Struct;225 readonly isFail: boolean;226 readonly asFail: {227 readonly messageHash: Option<U8aFixed>;228 readonly error: XcmV3TraitsError;229 readonly weight: SpWeightsWeightV2Weight;230 } & Struct;231 readonly isBadVersion: boolean;232 readonly asBadVersion: {233 readonly messageHash: Option<U8aFixed>;234 } & Struct;235 readonly isBadFormat: boolean;236 readonly asBadFormat: {237 readonly messageHash: Option<U8aFixed>;238 } & Struct;239 readonly isXcmpMessageSent: boolean;240 readonly asXcmpMessageSent: {241 readonly messageHash: Option<U8aFixed>;242 } & Struct;243 readonly isOverweightEnqueued: boolean;244 readonly asOverweightEnqueued: {245 readonly sender: u32;246 readonly sentAt: u32;247 readonly index: u64;248 readonly required: SpWeightsWeightV2Weight;249 } & Struct;250 readonly isOverweightServiced: boolean;251 readonly asOverweightServiced: {252 readonly index: u64;253 readonly used: SpWeightsWeightV2Weight;254 } & Struct;255 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';256}257258/** @name CumulusPalletXcmpQueueInboundChannelDetails */259export interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {260 readonly sender: u32;261 readonly state: CumulusPalletXcmpQueueInboundState;262 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;263}264265/** @name CumulusPalletXcmpQueueInboundState */266export interface CumulusPalletXcmpQueueInboundState extends Enum {267 readonly isOk: boolean;268 readonly isSuspended: boolean;269 readonly type: 'Ok' | 'Suspended';270}271272/** @name CumulusPalletXcmpQueueOutboundChannelDetails */273export interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {274 readonly recipient: u32;275 readonly state: CumulusPalletXcmpQueueOutboundState;276 readonly signalsExist: bool;277 readonly firstIndex: u16;278 readonly lastIndex: u16;279}280281/** @name CumulusPalletXcmpQueueOutboundState */282export interface CumulusPalletXcmpQueueOutboundState extends Enum {283 readonly isOk: boolean;284 readonly isSuspended: boolean;285 readonly type: 'Ok' | 'Suspended';286}287288/** @name CumulusPalletXcmpQueueQueueConfigData */289export interface CumulusPalletXcmpQueueQueueConfigData extends Struct {290 readonly suspendThreshold: u32;291 readonly dropThreshold: u32;292 readonly resumeThreshold: u32;293 readonly thresholdWeight: SpWeightsWeightV2Weight;294 readonly weightRestrictDecay: SpWeightsWeightV2Weight;295 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;296}297298/** @name CumulusPrimitivesParachainInherentParachainInherentData */299export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {300 readonly validationData: PolkadotPrimitivesV4PersistedValidationData;301 readonly relayChainState: SpTrieStorageProof;302 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;303 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;304}305306/** @name EthbloomBloom */307export interface EthbloomBloom extends U8aFixed {}308309/** @name EthereumBlock */310export interface EthereumBlock extends Struct {311 readonly header: EthereumHeader;312 readonly transactions: Vec<EthereumTransactionTransactionV2>;313 readonly ommers: Vec<EthereumHeader>;314}315316/** @name EthereumHeader */317export interface EthereumHeader extends Struct {318 readonly parentHash: H256;319 readonly ommersHash: H256;320 readonly beneficiary: H160;321 readonly stateRoot: H256;322 readonly transactionsRoot: H256;323 readonly receiptsRoot: H256;324 readonly logsBloom: EthbloomBloom;325 readonly difficulty: U256;326 readonly number: U256;327 readonly gasLimit: U256;328 readonly gasUsed: U256;329 readonly timestamp: u64;330 readonly extraData: Bytes;331 readonly mixHash: H256;332 readonly nonce: EthereumTypesHashH64;333}334335/** @name EthereumLog */336export interface EthereumLog extends Struct {337 readonly address: H160;338 readonly topics: Vec<H256>;339 readonly data: Bytes;340}341342/** @name EthereumReceiptEip658ReceiptData */343export interface EthereumReceiptEip658ReceiptData extends Struct {344 readonly statusCode: u8;345 readonly usedGas: U256;346 readonly logsBloom: EthbloomBloom;347 readonly logs: Vec<EthereumLog>;348}349350/** @name EthereumReceiptReceiptV3 */351export interface EthereumReceiptReceiptV3 extends Enum {352 readonly isLegacy: boolean;353 readonly asLegacy: EthereumReceiptEip658ReceiptData;354 readonly isEip2930: boolean;355 readonly asEip2930: EthereumReceiptEip658ReceiptData;356 readonly isEip1559: boolean;357 readonly asEip1559: EthereumReceiptEip658ReceiptData;358 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';359}360361/** @name EthereumTransactionAccessListItem */362export interface EthereumTransactionAccessListItem extends Struct {363 readonly address: H160;364 readonly storageKeys: Vec<H256>;365}366367/** @name EthereumTransactionEip1559Transaction */368export interface EthereumTransactionEip1559Transaction extends Struct {369 readonly chainId: u64;370 readonly nonce: U256;371 readonly maxPriorityFeePerGas: U256;372 readonly maxFeePerGas: U256;373 readonly gasLimit: U256;374 readonly action: EthereumTransactionTransactionAction;375 readonly value: U256;376 readonly input: Bytes;377 readonly accessList: Vec<EthereumTransactionAccessListItem>;378 readonly oddYParity: bool;379 readonly r: H256;380 readonly s: H256;381}382383/** @name EthereumTransactionEip2930Transaction */384export interface EthereumTransactionEip2930Transaction extends Struct {385 readonly chainId: u64;386 readonly nonce: U256;387 readonly gasPrice: U256;388 readonly gasLimit: U256;389 readonly action: EthereumTransactionTransactionAction;390 readonly value: U256;391 readonly input: Bytes;392 readonly accessList: Vec<EthereumTransactionAccessListItem>;393 readonly oddYParity: bool;394 readonly r: H256;395 readonly s: H256;396}397398/** @name EthereumTransactionLegacyTransaction */399export interface EthereumTransactionLegacyTransaction extends Struct {400 readonly nonce: U256;401 readonly gasPrice: U256;402 readonly gasLimit: U256;403 readonly action: EthereumTransactionTransactionAction;404 readonly value: U256;405 readonly input: Bytes;406 readonly signature: EthereumTransactionTransactionSignature;407}408409/** @name EthereumTransactionTransactionAction */410export interface EthereumTransactionTransactionAction extends Enum {411 readonly isCall: boolean;412 readonly asCall: H160;413 readonly isCreate: boolean;414 readonly type: 'Call' | 'Create';415}416417/** @name EthereumTransactionTransactionSignature */418export interface EthereumTransactionTransactionSignature extends Struct {419 readonly v: u64;420 readonly r: H256;421 readonly s: H256;422}423424/** @name EthereumTransactionTransactionV2 */425export interface EthereumTransactionTransactionV2 extends Enum {426 readonly isLegacy: boolean;427 readonly asLegacy: EthereumTransactionLegacyTransaction;428 readonly isEip2930: boolean;429 readonly asEip2930: EthereumTransactionEip2930Transaction;430 readonly isEip1559: boolean;431 readonly asEip1559: EthereumTransactionEip1559Transaction;432 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';433}434435/** @name EthereumTypesHashH64 */436export interface EthereumTypesHashH64 extends U8aFixed {}437438/** @name EvmCoreErrorExitError */439export interface EvmCoreErrorExitError extends Enum {440 readonly isStackUnderflow: boolean;441 readonly isStackOverflow: boolean;442 readonly isInvalidJump: boolean;443 readonly isInvalidRange: boolean;444 readonly isDesignatedInvalid: boolean;445 readonly isCallTooDeep: boolean;446 readonly isCreateCollision: boolean;447 readonly isCreateContractLimit: boolean;448 readonly isOutOfOffset: boolean;449 readonly isOutOfGas: boolean;450 readonly isOutOfFund: boolean;451 readonly isPcUnderflow: boolean;452 readonly isCreateEmpty: boolean;453 readonly isOther: boolean;454 readonly asOther: Text;455 readonly isInvalidCode: boolean;456 readonly asInvalidCode: u8;457 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';458}459460/** @name EvmCoreErrorExitFatal */461export interface EvmCoreErrorExitFatal extends Enum {462 readonly isNotSupported: boolean;463 readonly isUnhandledInterrupt: boolean;464 readonly isCallErrorAsFatal: boolean;465 readonly asCallErrorAsFatal: EvmCoreErrorExitError;466 readonly isOther: boolean;467 readonly asOther: Text;468 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';469}470471/** @name EvmCoreErrorExitReason */472export interface EvmCoreErrorExitReason extends Enum {473 readonly isSucceed: boolean;474 readonly asSucceed: EvmCoreErrorExitSucceed;475 readonly isError: boolean;476 readonly asError: EvmCoreErrorExitError;477 readonly isRevert: boolean;478 readonly asRevert: EvmCoreErrorExitRevert;479 readonly isFatal: boolean;480 readonly asFatal: EvmCoreErrorExitFatal;481 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';482}483484/** @name EvmCoreErrorExitRevert */485export interface EvmCoreErrorExitRevert extends Enum {486 readonly isReverted: boolean;487 readonly type: 'Reverted';488}489490/** @name EvmCoreErrorExitSucceed */491export interface EvmCoreErrorExitSucceed extends Enum {492 readonly isStopped: boolean;493 readonly isReturned: boolean;494 readonly isSuicided: boolean;495 readonly type: 'Stopped' | 'Returned' | 'Suicided';496}497498/** @name FpRpcTransactionStatus */499export interface FpRpcTransactionStatus extends Struct {500 readonly transactionHash: H256;501 readonly transactionIndex: u32;502 readonly from: H160;503 readonly to: Option<H160>;504 readonly contractAddress: Option<H160>;505 readonly logs: Vec<EthereumLog>;506 readonly logsBloom: EthbloomBloom;507}508509/** @name FrameSupportDispatchDispatchClass */510export interface FrameSupportDispatchDispatchClass extends Enum {511 readonly isNormal: boolean;512 readonly isOperational: boolean;513 readonly isMandatory: boolean;514 readonly type: 'Normal' | 'Operational' | 'Mandatory';515}516517/** @name FrameSupportDispatchDispatchInfo */518export interface FrameSupportDispatchDispatchInfo extends Struct {519 readonly weight: SpWeightsWeightV2Weight;520 readonly class: FrameSupportDispatchDispatchClass;521 readonly paysFee: FrameSupportDispatchPays;522}523524/** @name FrameSupportDispatchPays */525export interface FrameSupportDispatchPays extends Enum {526 readonly isYes: boolean;527 readonly isNo: boolean;528 readonly type: 'Yes' | 'No';529}530531/** @name FrameSupportDispatchPerDispatchClassU32 */532export interface FrameSupportDispatchPerDispatchClassU32 extends Struct {533 readonly normal: u32;534 readonly operational: u32;535 readonly mandatory: u32;536}537538/** @name FrameSupportDispatchPerDispatchClassWeight */539export interface FrameSupportDispatchPerDispatchClassWeight extends Struct {540 readonly normal: SpWeightsWeightV2Weight;541 readonly operational: SpWeightsWeightV2Weight;542 readonly mandatory: SpWeightsWeightV2Weight;543}544545/** @name FrameSupportDispatchPerDispatchClassWeightsPerClass */546export interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {547 readonly normal: FrameSystemLimitsWeightsPerClass;548 readonly operational: FrameSystemLimitsWeightsPerClass;549 readonly mandatory: FrameSystemLimitsWeightsPerClass;550}551552/** @name FrameSupportPalletId */553export interface FrameSupportPalletId extends U8aFixed {}554555/** @name FrameSupportTokensMiscBalanceStatus */556export interface FrameSupportTokensMiscBalanceStatus extends Enum {557 readonly isFree: boolean;558 readonly isReserved: boolean;559 readonly type: 'Free' | 'Reserved';560}561562/** @name FrameSystemAccountInfo */563export interface FrameSystemAccountInfo extends Struct {564 readonly nonce: u32;565 readonly consumers: u32;566 readonly providers: u32;567 readonly sufficients: u32;568 readonly data: PalletBalancesAccountData;569}570571/** @name FrameSystemCall */572export interface FrameSystemCall extends Enum {573 readonly isRemark: boolean;574 readonly asRemark: {575 readonly remark: Bytes;576 } & Struct;577 readonly isSetHeapPages: boolean;578 readonly asSetHeapPages: {579 readonly pages: u64;580 } & Struct;581 readonly isSetCode: boolean;582 readonly asSetCode: {583 readonly code: Bytes;584 } & Struct;585 readonly isSetCodeWithoutChecks: boolean;586 readonly asSetCodeWithoutChecks: {587 readonly code: Bytes;588 } & Struct;589 readonly isSetStorage: boolean;590 readonly asSetStorage: {591 readonly items: Vec<ITuple<[Bytes, Bytes]>>;592 } & Struct;593 readonly isKillStorage: boolean;594 readonly asKillStorage: {595 readonly keys_: Vec<Bytes>;596 } & Struct;597 readonly isKillPrefix: boolean;598 readonly asKillPrefix: {599 readonly prefix: Bytes;600 readonly subkeys: u32;601 } & Struct;602 readonly isRemarkWithEvent: boolean;603 readonly asRemarkWithEvent: {604 readonly remark: Bytes;605 } & Struct;606 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';607}608609/** @name FrameSystemError */610export interface FrameSystemError extends Enum {611 readonly isInvalidSpecName: boolean;612 readonly isSpecVersionNeedsToIncrease: boolean;613 readonly isFailedToExtractRuntimeVersion: boolean;614 readonly isNonDefaultComposite: boolean;615 readonly isNonZeroRefCount: boolean;616 readonly isCallFiltered: boolean;617 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';618}619620/** @name FrameSystemEvent */621export interface FrameSystemEvent extends Enum {622 readonly isExtrinsicSuccess: boolean;623 readonly asExtrinsicSuccess: {624 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;625 } & Struct;626 readonly isExtrinsicFailed: boolean;627 readonly asExtrinsicFailed: {628 readonly dispatchError: SpRuntimeDispatchError;629 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;630 } & Struct;631 readonly isCodeUpdated: boolean;632 readonly isNewAccount: boolean;633 readonly asNewAccount: {634 readonly account: AccountId32;635 } & Struct;636 readonly isKilledAccount: boolean;637 readonly asKilledAccount: {638 readonly account: AccountId32;639 } & Struct;640 readonly isRemarked: boolean;641 readonly asRemarked: {642 readonly sender: AccountId32;643 readonly hash_: H256;644 } & Struct;645 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';646}647648/** @name FrameSystemEventRecord */649export interface FrameSystemEventRecord extends Struct {650 readonly phase: FrameSystemPhase;651 readonly event: Event;652 readonly topics: Vec<H256>;653}654655/** @name FrameSystemExtensionsCheckGenesis */656export interface FrameSystemExtensionsCheckGenesis extends Null {}657658/** @name FrameSystemExtensionsCheckNonce */659export interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}660661/** @name FrameSystemExtensionsCheckSpecVersion */662export interface FrameSystemExtensionsCheckSpecVersion extends Null {}663664/** @name FrameSystemExtensionsCheckTxVersion */665export interface FrameSystemExtensionsCheckTxVersion extends Null {}666667/** @name FrameSystemExtensionsCheckWeight */668export interface FrameSystemExtensionsCheckWeight extends Null {}669670/** @name FrameSystemLastRuntimeUpgradeInfo */671export interface FrameSystemLastRuntimeUpgradeInfo extends Struct {672 readonly specVersion: Compact<u32>;673 readonly specName: Text;674}675676/** @name FrameSystemLimitsBlockLength */677export interface FrameSystemLimitsBlockLength extends Struct {678 readonly max: FrameSupportDispatchPerDispatchClassU32;679}680681/** @name FrameSystemLimitsBlockWeights */682export interface FrameSystemLimitsBlockWeights extends Struct {683 readonly baseBlock: SpWeightsWeightV2Weight;684 readonly maxBlock: SpWeightsWeightV2Weight;685 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;686}687688/** @name FrameSystemLimitsWeightsPerClass */689export interface FrameSystemLimitsWeightsPerClass extends Struct {690 readonly baseExtrinsic: SpWeightsWeightV2Weight;691 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;692 readonly maxTotal: Option<SpWeightsWeightV2Weight>;693 readonly reserved: Option<SpWeightsWeightV2Weight>;694}695696/** @name FrameSystemPhase */697export interface FrameSystemPhase extends Enum {698 readonly isApplyExtrinsic: boolean;699 readonly asApplyExtrinsic: u32;700 readonly isFinalization: boolean;701 readonly isInitialization: boolean;702 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';703}704705/** @name OpalRuntimeRuntime */706export interface OpalRuntimeRuntime extends Null {}707708/** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls */709export interface OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls extends Null {}710711/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */712export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}713714/** @name OpalRuntimeRuntimeCommonSessionKeys */715export interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {716 readonly aura: SpConsensusAuraSr25519AppSr25519Public;717}718719/** @name OrmlTokensAccountData */720export interface OrmlTokensAccountData extends Struct {721 readonly free: u128;722 readonly reserved: u128;723 readonly frozen: u128;724}725726/** @name OrmlTokensBalanceLock */727export interface OrmlTokensBalanceLock extends Struct {728 readonly id: U8aFixed;729 readonly amount: u128;730}731732/** @name OrmlTokensModuleCall */733export interface OrmlTokensModuleCall extends Enum {734 readonly isTransfer: boolean;735 readonly asTransfer: {736 readonly dest: MultiAddress;737 readonly currencyId: PalletForeignAssetsAssetIds;738 readonly amount: Compact<u128>;739 } & Struct;740 readonly isTransferAll: boolean;741 readonly asTransferAll: {742 readonly dest: MultiAddress;743 readonly currencyId: PalletForeignAssetsAssetIds;744 readonly keepAlive: bool;745 } & Struct;746 readonly isTransferKeepAlive: boolean;747 readonly asTransferKeepAlive: {748 readonly dest: MultiAddress;749 readonly currencyId: PalletForeignAssetsAssetIds;750 readonly amount: Compact<u128>;751 } & Struct;752 readonly isForceTransfer: boolean;753 readonly asForceTransfer: {754 readonly source: MultiAddress;755 readonly dest: MultiAddress;756 readonly currencyId: PalletForeignAssetsAssetIds;757 readonly amount: Compact<u128>;758 } & Struct;759 readonly isSetBalance: boolean;760 readonly asSetBalance: {761 readonly who: MultiAddress;762 readonly currencyId: PalletForeignAssetsAssetIds;763 readonly newFree: Compact<u128>;764 readonly newReserved: Compact<u128>;765 } & Struct;766 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';767}768769/** @name OrmlTokensModuleError */770export interface OrmlTokensModuleError extends Enum {771 readonly isBalanceTooLow: boolean;772 readonly isAmountIntoBalanceFailed: boolean;773 readonly isLiquidityRestrictions: boolean;774 readonly isMaxLocksExceeded: boolean;775 readonly isKeepAlive: boolean;776 readonly isExistentialDeposit: boolean;777 readonly isDeadAccount: boolean;778 readonly isTooManyReserves: boolean;779 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';780}781782/** @name OrmlTokensModuleEvent */783export interface OrmlTokensModuleEvent extends Enum {784 readonly isEndowed: boolean;785 readonly asEndowed: {786 readonly currencyId: PalletForeignAssetsAssetIds;787 readonly who: AccountId32;788 readonly amount: u128;789 } & Struct;790 readonly isDustLost: boolean;791 readonly asDustLost: {792 readonly currencyId: PalletForeignAssetsAssetIds;793 readonly who: AccountId32;794 readonly amount: u128;795 } & Struct;796 readonly isTransfer: boolean;797 readonly asTransfer: {798 readonly currencyId: PalletForeignAssetsAssetIds;799 readonly from: AccountId32;800 readonly to: AccountId32;801 readonly amount: u128;802 } & Struct;803 readonly isReserved: boolean;804 readonly asReserved: {805 readonly currencyId: PalletForeignAssetsAssetIds;806 readonly who: AccountId32;807 readonly amount: u128;808 } & Struct;809 readonly isUnreserved: boolean;810 readonly asUnreserved: {811 readonly currencyId: PalletForeignAssetsAssetIds;812 readonly who: AccountId32;813 readonly amount: u128;814 } & Struct;815 readonly isReserveRepatriated: boolean;816 readonly asReserveRepatriated: {817 readonly currencyId: PalletForeignAssetsAssetIds;818 readonly from: AccountId32;819 readonly to: AccountId32;820 readonly amount: u128;821 readonly status: FrameSupportTokensMiscBalanceStatus;822 } & Struct;823 readonly isBalanceSet: boolean;824 readonly asBalanceSet: {825 readonly currencyId: PalletForeignAssetsAssetIds;826 readonly who: AccountId32;827 readonly free: u128;828 readonly reserved: u128;829 } & Struct;830 readonly isTotalIssuanceSet: boolean;831 readonly asTotalIssuanceSet: {832 readonly currencyId: PalletForeignAssetsAssetIds;833 readonly amount: u128;834 } & Struct;835 readonly isWithdrawn: boolean;836 readonly asWithdrawn: {837 readonly currencyId: PalletForeignAssetsAssetIds;838 readonly who: AccountId32;839 readonly amount: u128;840 } & Struct;841 readonly isSlashed: boolean;842 readonly asSlashed: {843 readonly currencyId: PalletForeignAssetsAssetIds;844 readonly who: AccountId32;845 readonly freeAmount: u128;846 readonly reservedAmount: u128;847 } & Struct;848 readonly isDeposited: boolean;849 readonly asDeposited: {850 readonly currencyId: PalletForeignAssetsAssetIds;851 readonly who: AccountId32;852 readonly amount: u128;853 } & Struct;854 readonly isLockSet: boolean;855 readonly asLockSet: {856 readonly lockId: U8aFixed;857 readonly currencyId: PalletForeignAssetsAssetIds;858 readonly who: AccountId32;859 readonly amount: u128;860 } & Struct;861 readonly isLockRemoved: boolean;862 readonly asLockRemoved: {863 readonly lockId: U8aFixed;864 readonly currencyId: PalletForeignAssetsAssetIds;865 readonly who: AccountId32;866 } & Struct;867 readonly isLocked: boolean;868 readonly asLocked: {869 readonly currencyId: PalletForeignAssetsAssetIds;870 readonly who: AccountId32;871 readonly amount: u128;872 } & Struct;873 readonly isUnlocked: boolean;874 readonly asUnlocked: {875 readonly currencyId: PalletForeignAssetsAssetIds;876 readonly who: AccountId32;877 readonly amount: u128;878 } & Struct;879 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved' | 'Locked' | 'Unlocked';880}881882/** @name OrmlTokensReserveData */883export interface OrmlTokensReserveData extends Struct {884 readonly id: Null;885 readonly amount: u128;886}887888/** @name OrmlVestingModuleCall */889export interface OrmlVestingModuleCall extends Enum {890 readonly isClaim: boolean;891 readonly isVestedTransfer: boolean;892 readonly asVestedTransfer: {893 readonly dest: MultiAddress;894 readonly schedule: OrmlVestingVestingSchedule;895 } & Struct;896 readonly isUpdateVestingSchedules: boolean;897 readonly asUpdateVestingSchedules: {898 readonly who: MultiAddress;899 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;900 } & Struct;901 readonly isClaimFor: boolean;902 readonly asClaimFor: {903 readonly dest: MultiAddress;904 } & Struct;905 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';906}907908/** @name OrmlVestingModuleError */909export interface OrmlVestingModuleError extends Enum {910 readonly isZeroVestingPeriod: boolean;911 readonly isZeroVestingPeriodCount: boolean;912 readonly isInsufficientBalanceToLock: boolean;913 readonly isTooManyVestingSchedules: boolean;914 readonly isAmountLow: boolean;915 readonly isMaxVestingSchedulesExceeded: boolean;916 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';917}918919/** @name OrmlVestingModuleEvent */920export interface OrmlVestingModuleEvent extends Enum {921 readonly isVestingScheduleAdded: boolean;922 readonly asVestingScheduleAdded: {923 readonly from: AccountId32;924 readonly to: AccountId32;925 readonly vestingSchedule: OrmlVestingVestingSchedule;926 } & Struct;927 readonly isClaimed: boolean;928 readonly asClaimed: {929 readonly who: AccountId32;930 readonly amount: u128;931 } & Struct;932 readonly isVestingSchedulesUpdated: boolean;933 readonly asVestingSchedulesUpdated: {934 readonly who: AccountId32;935 } & Struct;936 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';937}938939/** @name OrmlVestingVestingSchedule */940export interface OrmlVestingVestingSchedule extends Struct {941 readonly start: u32;942 readonly period: u32;943 readonly periodCount: u32;944 readonly perPeriod: Compact<u128>;945}946947/** @name OrmlXtokensModuleCall */948export interface OrmlXtokensModuleCall extends Enum {949 readonly isTransfer: boolean;950 readonly asTransfer: {951 readonly currencyId: PalletForeignAssetsAssetIds;952 readonly amount: u128;953 readonly dest: XcmVersionedMultiLocation;954 readonly destWeightLimit: XcmV3WeightLimit;955 } & Struct;956 readonly isTransferMultiasset: boolean;957 readonly asTransferMultiasset: {958 readonly asset: XcmVersionedMultiAsset;959 readonly dest: XcmVersionedMultiLocation;960 readonly destWeightLimit: XcmV3WeightLimit;961 } & Struct;962 readonly isTransferWithFee: boolean;963 readonly asTransferWithFee: {964 readonly currencyId: PalletForeignAssetsAssetIds;965 readonly amount: u128;966 readonly fee: u128;967 readonly dest: XcmVersionedMultiLocation;968 readonly destWeightLimit: XcmV3WeightLimit;969 } & Struct;970 readonly isTransferMultiassetWithFee: boolean;971 readonly asTransferMultiassetWithFee: {972 readonly asset: XcmVersionedMultiAsset;973 readonly fee: XcmVersionedMultiAsset;974 readonly dest: XcmVersionedMultiLocation;975 readonly destWeightLimit: XcmV3WeightLimit;976 } & Struct;977 readonly isTransferMulticurrencies: boolean;978 readonly asTransferMulticurrencies: {979 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;980 readonly feeItem: u32;981 readonly dest: XcmVersionedMultiLocation;982 readonly destWeightLimit: XcmV3WeightLimit;983 } & Struct;984 readonly isTransferMultiassets: boolean;985 readonly asTransferMultiassets: {986 readonly assets: XcmVersionedMultiAssets;987 readonly feeItem: u32;988 readonly dest: XcmVersionedMultiLocation;989 readonly destWeightLimit: XcmV3WeightLimit;990 } & Struct;991 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';992}993994/** @name OrmlXtokensModuleError */995export interface OrmlXtokensModuleError extends Enum {996 readonly isAssetHasNoReserve: boolean;997 readonly isNotCrossChainTransfer: boolean;998 readonly isInvalidDest: boolean;999 readonly isNotCrossChainTransferableCurrency: boolean;1000 readonly isUnweighableMessage: boolean;1001 readonly isXcmExecutionFailed: boolean;1002 readonly isCannotReanchor: boolean;1003 readonly isInvalidAncestry: boolean;1004 readonly isInvalidAsset: boolean;1005 readonly isDestinationNotInvertible: boolean;1006 readonly isBadVersion: boolean;1007 readonly isDistinctReserveForAssetAndFee: boolean;1008 readonly isZeroFee: boolean;1009 readonly isZeroAmount: boolean;1010 readonly isTooManyAssetsBeingSent: boolean;1011 readonly isAssetIndexNonExistent: boolean;1012 readonly isFeeNotEnough: boolean;1013 readonly isNotSupportedMultiLocation: boolean;1014 readonly isMinXcmFeeNotDefined: boolean;1015 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';1016}10171018/** @name OrmlXtokensModuleEvent */1019export interface OrmlXtokensModuleEvent extends Enum {1020 readonly isTransferredMultiAssets: boolean;1021 readonly asTransferredMultiAssets: {1022 readonly sender: AccountId32;1023 readonly assets: XcmV3MultiassetMultiAssets;1024 readonly fee: XcmV3MultiAsset;1025 readonly dest: XcmV3MultiLocation;1026 } & Struct;1027 readonly type: 'TransferredMultiAssets';1028}10291030/** @name PalletAppPromotionCall */1031export interface PalletAppPromotionCall extends Enum {1032 readonly isSetAdminAddress: boolean;1033 readonly asSetAdminAddress: {1034 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;1035 } & Struct;1036 readonly isStake: boolean;1037 readonly asStake: {1038 readonly amount: u128;1039 } & Struct;1040 readonly isUnstakeAll: boolean;1041 readonly isSponsorCollection: boolean;1042 readonly asSponsorCollection: {1043 readonly collectionId: u32;1044 } & Struct;1045 readonly isStopSponsoringCollection: boolean;1046 readonly asStopSponsoringCollection: {1047 readonly collectionId: u32;1048 } & Struct;1049 readonly isSponsorContract: boolean;1050 readonly asSponsorContract: {1051 readonly contractId: H160;1052 } & Struct;1053 readonly isStopSponsoringContract: boolean;1054 readonly asStopSponsoringContract: {1055 readonly contractId: H160;1056 } & Struct;1057 readonly isPayoutStakers: boolean;1058 readonly asPayoutStakers: {1059 readonly stakersNumber: Option<u8>;1060 } & Struct;1061 readonly isUnstakePartial: boolean;1062 readonly asUnstakePartial: {1063 readonly amount: u128;1064 } & Struct;1065 readonly type: 'SetAdminAddress' | 'Stake' | 'UnstakeAll' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers' | 'UnstakePartial';1066}10671068/** @name PalletAppPromotionError */1069export interface PalletAppPromotionError extends Enum {1070 readonly isAdminNotSet: boolean;1071 readonly isNoPermission: boolean;1072 readonly isNotSufficientFunds: boolean;1073 readonly isPendingForBlockOverflow: boolean;1074 readonly isSponsorNotSet: boolean;1075 readonly isIncorrectLockedBalanceOperation: boolean;1076 readonly isInsufficientStakedBalance: boolean;1077 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation' | 'InsufficientStakedBalance';1078}10791080/** @name PalletAppPromotionEvent */1081export interface PalletAppPromotionEvent extends Enum {1082 readonly isStakingRecalculation: boolean;1083 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1084 readonly isStake: boolean;1085 readonly asStake: ITuple<[AccountId32, u128]>;1086 readonly isUnstake: boolean;1087 readonly asUnstake: ITuple<[AccountId32, u128]>;1088 readonly isSetAdmin: boolean;1089 readonly asSetAdmin: AccountId32;1090 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1091}10921093/** @name PalletBalancesAccountData */1094export interface PalletBalancesAccountData extends Struct {1095 readonly free: u128;1096 readonly reserved: u128;1097 readonly frozen: u128;1098 readonly flags: u128;1099}11001101/** @name PalletBalancesBalanceLock */1102export interface PalletBalancesBalanceLock extends Struct {1103 readonly id: U8aFixed;1104 readonly amount: u128;1105 readonly reasons: PalletBalancesReasons;1106}11071108/** @name PalletBalancesCall */1109export interface PalletBalancesCall extends Enum {1110 readonly isTransferAllowDeath: boolean;1111 readonly asTransferAllowDeath: {1112 readonly dest: MultiAddress;1113 readonly value: Compact<u128>;1114 } & Struct;1115 readonly isSetBalanceDeprecated: boolean;1116 readonly asSetBalanceDeprecated: {1117 readonly who: MultiAddress;1118 readonly newFree: Compact<u128>;1119 readonly oldReserved: Compact<u128>;1120 } & Struct;1121 readonly isForceTransfer: boolean;1122 readonly asForceTransfer: {1123 readonly source: MultiAddress;1124 readonly dest: MultiAddress;1125 readonly value: Compact<u128>;1126 } & Struct;1127 readonly isTransferKeepAlive: boolean;1128 readonly asTransferKeepAlive: {1129 readonly dest: MultiAddress;1130 readonly value: Compact<u128>;1131 } & Struct;1132 readonly isTransferAll: boolean;1133 readonly asTransferAll: {1134 readonly dest: MultiAddress;1135 readonly keepAlive: bool;1136 } & Struct;1137 readonly isForceUnreserve: boolean;1138 readonly asForceUnreserve: {1139 readonly who: MultiAddress;1140 readonly amount: u128;1141 } & Struct;1142 readonly isUpgradeAccounts: boolean;1143 readonly asUpgradeAccounts: {1144 readonly who: Vec<AccountId32>;1145 } & Struct;1146 readonly isTransfer: boolean;1147 readonly asTransfer: {1148 readonly dest: MultiAddress;1149 readonly value: Compact<u128>;1150 } & Struct;1151 readonly isForceSetBalance: boolean;1152 readonly asForceSetBalance: {1153 readonly who: MultiAddress;1154 readonly newFree: Compact<u128>;1155 } & Struct;1156 readonly type: 'TransferAllowDeath' | 'SetBalanceDeprecated' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'Transfer' | 'ForceSetBalance';1157}11581159/** @name PalletBalancesError */1160export interface PalletBalancesError extends Enum {1161 readonly isVestingBalance: boolean;1162 readonly isLiquidityRestrictions: boolean;1163 readonly isInsufficientBalance: boolean;1164 readonly isExistentialDeposit: boolean;1165 readonly isExpendability: boolean;1166 readonly isExistingVestingSchedule: boolean;1167 readonly isDeadAccount: boolean;1168 readonly isTooManyReserves: boolean;1169 readonly isTooManyHolds: boolean;1170 readonly isTooManyFreezes: boolean;1171 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes';1172}11731174/** @name PalletBalancesEvent */1175export interface PalletBalancesEvent extends Enum {1176 readonly isEndowed: boolean;1177 readonly asEndowed: {1178 readonly account: AccountId32;1179 readonly freeBalance: u128;1180 } & Struct;1181 readonly isDustLost: boolean;1182 readonly asDustLost: {1183 readonly account: AccountId32;1184 readonly amount: u128;1185 } & Struct;1186 readonly isTransfer: boolean;1187 readonly asTransfer: {1188 readonly from: AccountId32;1189 readonly to: AccountId32;1190 readonly amount: u128;1191 } & Struct;1192 readonly isBalanceSet: boolean;1193 readonly asBalanceSet: {1194 readonly who: AccountId32;1195 readonly free: u128;1196 } & Struct;1197 readonly isReserved: boolean;1198 readonly asReserved: {1199 readonly who: AccountId32;1200 readonly amount: u128;1201 } & Struct;1202 readonly isUnreserved: boolean;1203 readonly asUnreserved: {1204 readonly who: AccountId32;1205 readonly amount: u128;1206 } & Struct;1207 readonly isReserveRepatriated: boolean;1208 readonly asReserveRepatriated: {1209 readonly from: AccountId32;1210 readonly to: AccountId32;1211 readonly amount: u128;1212 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;1213 } & Struct;1214 readonly isDeposit: boolean;1215 readonly asDeposit: {1216 readonly who: AccountId32;1217 readonly amount: u128;1218 } & Struct;1219 readonly isWithdraw: boolean;1220 readonly asWithdraw: {1221 readonly who: AccountId32;1222 readonly amount: u128;1223 } & Struct;1224 readonly isSlashed: boolean;1225 readonly asSlashed: {1226 readonly who: AccountId32;1227 readonly amount: u128;1228 } & Struct;1229 readonly isMinted: boolean;1230 readonly asMinted: {1231 readonly who: AccountId32;1232 readonly amount: u128;1233 } & Struct;1234 readonly isBurned: boolean;1235 readonly asBurned: {1236 readonly who: AccountId32;1237 readonly amount: u128;1238 } & Struct;1239 readonly isSuspended: boolean;1240 readonly asSuspended: {1241 readonly who: AccountId32;1242 readonly amount: u128;1243 } & Struct;1244 readonly isRestored: boolean;1245 readonly asRestored: {1246 readonly who: AccountId32;1247 readonly amount: u128;1248 } & Struct;1249 readonly isUpgraded: boolean;1250 readonly asUpgraded: {1251 readonly who: AccountId32;1252 } & Struct;1253 readonly isIssued: boolean;1254 readonly asIssued: {1255 readonly amount: u128;1256 } & Struct;1257 readonly isRescinded: boolean;1258 readonly asRescinded: {1259 readonly amount: u128;1260 } & Struct;1261 readonly isLocked: boolean;1262 readonly asLocked: {1263 readonly who: AccountId32;1264 readonly amount: u128;1265 } & Struct;1266 readonly isUnlocked: boolean;1267 readonly asUnlocked: {1268 readonly who: AccountId32;1269 readonly amount: u128;1270 } & Struct;1271 readonly isFrozen: boolean;1272 readonly asFrozen: {1273 readonly who: AccountId32;1274 readonly amount: u128;1275 } & Struct;1276 readonly isThawed: boolean;1277 readonly asThawed: {1278 readonly who: AccountId32;1279 readonly amount: u128;1280 } & Struct;1281 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed';1282}12831284/** @name PalletBalancesIdAmount */1285export interface PalletBalancesIdAmount extends Struct {1286 readonly id: U8aFixed;1287 readonly amount: u128;1288}12891290/** @name PalletBalancesReasons */1291export interface PalletBalancesReasons extends Enum {1292 readonly isFee: boolean;1293 readonly isMisc: boolean;1294 readonly isAll: boolean;1295 readonly type: 'Fee' | 'Misc' | 'All';1296}12971298/** @name PalletBalancesReserveData */1299export interface PalletBalancesReserveData extends Struct {1300 readonly id: U8aFixed;1301 readonly amount: u128;1302}13031304/** @name PalletCollatorSelectionCall */1305export interface PalletCollatorSelectionCall extends Enum {1306 readonly isAddInvulnerable: boolean;1307 readonly asAddInvulnerable: {1308 readonly new_: AccountId32;1309 } & Struct;1310 readonly isRemoveInvulnerable: boolean;1311 readonly asRemoveInvulnerable: {1312 readonly who: AccountId32;1313 } & Struct;1314 readonly isGetLicense: boolean;1315 readonly isOnboard: boolean;1316 readonly isOffboard: boolean;1317 readonly isReleaseLicense: boolean;1318 readonly isForceReleaseLicense: boolean;1319 readonly asForceReleaseLicense: {1320 readonly who: AccountId32;1321 } & Struct;1322 readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';1323}13241325/** @name PalletCollatorSelectionError */1326export interface PalletCollatorSelectionError extends Enum {1327 readonly isTooManyCandidates: boolean;1328 readonly isUnknown: boolean;1329 readonly isPermission: boolean;1330 readonly isAlreadyHoldingLicense: boolean;1331 readonly isNoLicense: boolean;1332 readonly isAlreadyCandidate: boolean;1333 readonly isNotCandidate: boolean;1334 readonly isTooManyInvulnerables: boolean;1335 readonly isTooFewInvulnerables: boolean;1336 readonly isAlreadyInvulnerable: boolean;1337 readonly isNotInvulnerable: boolean;1338 readonly isNoAssociatedValidatorId: boolean;1339 readonly isValidatorNotRegistered: boolean;1340 readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';1341}13421343/** @name PalletCollatorSelectionEvent */1344export interface PalletCollatorSelectionEvent extends Enum {1345 readonly isInvulnerableAdded: boolean;1346 readonly asInvulnerableAdded: {1347 readonly invulnerable: AccountId32;1348 } & Struct;1349 readonly isInvulnerableRemoved: boolean;1350 readonly asInvulnerableRemoved: {1351 readonly invulnerable: AccountId32;1352 } & Struct;1353 readonly isLicenseObtained: boolean;1354 readonly asLicenseObtained: {1355 readonly accountId: AccountId32;1356 readonly deposit: u128;1357 } & Struct;1358 readonly isLicenseReleased: boolean;1359 readonly asLicenseReleased: {1360 readonly accountId: AccountId32;1361 readonly depositReturned: u128;1362 } & Struct;1363 readonly isCandidateAdded: boolean;1364 readonly asCandidateAdded: {1365 readonly accountId: AccountId32;1366 } & Struct;1367 readonly isCandidateRemoved: boolean;1368 readonly asCandidateRemoved: {1369 readonly accountId: AccountId32;1370 } & Struct;1371 readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';1372}13731374/** @name PalletCommonError */1375export interface PalletCommonError extends Enum {1376 readonly isCollectionNotFound: boolean;1377 readonly isMustBeTokenOwner: boolean;1378 readonly isNoPermission: boolean;1379 readonly isCantDestroyNotEmptyCollection: boolean;1380 readonly isPublicMintingNotAllowed: boolean;1381 readonly isAddressNotInAllowlist: boolean;1382 readonly isCollectionNameLimitExceeded: boolean;1383 readonly isCollectionDescriptionLimitExceeded: boolean;1384 readonly isCollectionTokenPrefixLimitExceeded: boolean;1385 readonly isTotalCollectionsLimitExceeded: boolean;1386 readonly isCollectionAdminCountExceeded: boolean;1387 readonly isCollectionLimitBoundsExceeded: boolean;1388 readonly isOwnerPermissionsCantBeReverted: boolean;1389 readonly isTransferNotAllowed: boolean;1390 readonly isAccountTokenLimitExceeded: boolean;1391 readonly isCollectionTokenLimitExceeded: boolean;1392 readonly isMetadataFlagFrozen: boolean;1393 readonly isTokenNotFound: boolean;1394 readonly isTokenValueTooLow: boolean;1395 readonly isApprovedValueTooLow: boolean;1396 readonly isCantApproveMoreThanOwned: boolean;1397 readonly isAddressIsNotEthMirror: boolean;1398 readonly isAddressIsZero: boolean;1399 readonly isUnsupportedOperation: boolean;1400 readonly isNotSufficientFounds: boolean;1401 readonly isUserIsNotAllowedToNest: boolean;1402 readonly isSourceCollectionIsNotAllowedToNest: boolean;1403 readonly isCollectionFieldSizeExceeded: boolean;1404 readonly isNoSpaceForProperty: boolean;1405 readonly isPropertyLimitReached: boolean;1406 readonly isPropertyKeyIsTooLong: boolean;1407 readonly isInvalidCharacterInPropertyKey: boolean;1408 readonly isEmptyPropertyKey: boolean;1409 readonly isCollectionIsExternal: boolean;1410 readonly isCollectionIsInternal: boolean;1411 readonly isConfirmSponsorshipFail: boolean;1412 readonly isUserIsNotCollectionAdmin: boolean;1413 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsNotEthMirror' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';1414}14151416/** @name PalletCommonEvent */1417export interface PalletCommonEvent extends Enum {1418 readonly isCollectionCreated: boolean;1419 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1420 readonly isCollectionDestroyed: boolean;1421 readonly asCollectionDestroyed: u32;1422 readonly isItemCreated: boolean;1423 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1424 readonly isItemDestroyed: boolean;1425 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1426 readonly isTransfer: boolean;1427 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1428 readonly isApproved: boolean;1429 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1430 readonly isApprovedForAll: boolean;1431 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1432 readonly isCollectionPropertySet: boolean;1433 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1434 readonly isCollectionPropertyDeleted: boolean;1435 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1436 readonly isTokenPropertySet: boolean;1437 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1438 readonly isTokenPropertyDeleted: boolean;1439 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1440 readonly isPropertyPermissionSet: boolean;1441 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1442 readonly isAllowListAddressAdded: boolean;1443 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1444 readonly isAllowListAddressRemoved: boolean;1445 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1446 readonly isCollectionAdminAdded: boolean;1447 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1448 readonly isCollectionAdminRemoved: boolean;1449 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1450 readonly isCollectionLimitSet: boolean;1451 readonly asCollectionLimitSet: u32;1452 readonly isCollectionOwnerChanged: boolean;1453 readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1454 readonly isCollectionPermissionSet: boolean;1455 readonly asCollectionPermissionSet: u32;1456 readonly isCollectionSponsorSet: boolean;1457 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1458 readonly isSponsorshipConfirmed: boolean;1459 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1460 readonly isCollectionSponsorRemoved: boolean;1461 readonly asCollectionSponsorRemoved: u32;1462 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1463}14641465/** @name PalletConfigurationAppPromotionConfiguration */1466export interface PalletConfigurationAppPromotionConfiguration extends Struct {1467 readonly recalculationInterval: Option<u32>;1468 readonly pendingInterval: Option<u32>;1469 readonly intervalIncome: Option<Perbill>;1470 readonly maxStakersPerCalculation: Option<u8>;1471}14721473/** @name PalletConfigurationCall */1474export interface PalletConfigurationCall extends Enum {1475 readonly isSetWeightToFeeCoefficientOverride: boolean;1476 readonly asSetWeightToFeeCoefficientOverride: {1477 readonly coeff: Option<u64>;1478 } & Struct;1479 readonly isSetMinGasPriceOverride: boolean;1480 readonly asSetMinGasPriceOverride: {1481 readonly coeff: Option<u64>;1482 } & Struct;1483 readonly isSetAppPromotionConfigurationOverride: boolean;1484 readonly asSetAppPromotionConfigurationOverride: {1485 readonly configuration: PalletConfigurationAppPromotionConfiguration;1486 } & Struct;1487 readonly isSetCollatorSelectionDesiredCollators: boolean;1488 readonly asSetCollatorSelectionDesiredCollators: {1489 readonly max: Option<u32>;1490 } & Struct;1491 readonly isSetCollatorSelectionLicenseBond: boolean;1492 readonly asSetCollatorSelectionLicenseBond: {1493 readonly amount: Option<u128>;1494 } & Struct;1495 readonly isSetCollatorSelectionKickThreshold: boolean;1496 readonly asSetCollatorSelectionKickThreshold: {1497 readonly threshold: Option<u32>;1498 } & Struct;1499 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';1500}15011502/** @name PalletConfigurationError */1503export interface PalletConfigurationError extends Enum {1504 readonly isInconsistentConfiguration: boolean;1505 readonly type: 'InconsistentConfiguration';1506}15071508/** @name PalletConfigurationEvent */1509export interface PalletConfigurationEvent extends Enum {1510 readonly isNewDesiredCollators: boolean;1511 readonly asNewDesiredCollators: {1512 readonly desiredCollators: Option<u32>;1513 } & Struct;1514 readonly isNewCollatorLicenseBond: boolean;1515 readonly asNewCollatorLicenseBond: {1516 readonly bondCost: Option<u128>;1517 } & Struct;1518 readonly isNewCollatorKickThreshold: boolean;1519 readonly asNewCollatorKickThreshold: {1520 readonly lengthInBlocks: Option<u32>;1521 } & Struct;1522 readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';1523}15241525/** @name PalletEthereumCall */1526export interface PalletEthereumCall extends Enum {1527 readonly isTransact: boolean;1528 readonly asTransact: {1529 readonly transaction: EthereumTransactionTransactionV2;1530 } & Struct;1531 readonly type: 'Transact';1532}15331534/** @name PalletEthereumError */1535export interface PalletEthereumError extends Enum {1536 readonly isInvalidSignature: boolean;1537 readonly isPreLogExists: boolean;1538 readonly type: 'InvalidSignature' | 'PreLogExists';1539}15401541/** @name PalletEthereumEvent */1542export interface PalletEthereumEvent extends Enum {1543 readonly isExecuted: boolean;1544 readonly asExecuted: {1545 readonly from: H160;1546 readonly to: H160;1547 readonly transactionHash: H256;1548 readonly exitReason: EvmCoreErrorExitReason;1549 readonly extraData: Bytes;1550 } & Struct;1551 readonly type: 'Executed';1552}15531554/** @name PalletEthereumFakeTransactionFinalizer */1555export interface PalletEthereumFakeTransactionFinalizer extends Null {}15561557/** @name PalletEvmAccountBasicCrossAccountIdRepr */1558export interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1559 readonly isSubstrate: boolean;1560 readonly asSubstrate: AccountId32;1561 readonly isEthereum: boolean;1562 readonly asEthereum: H160;1563 readonly type: 'Substrate' | 'Ethereum';1564}15651566/** @name PalletEvmCall */1567export interface PalletEvmCall extends Enum {1568 readonly isWithdraw: boolean;1569 readonly asWithdraw: {1570 readonly address: H160;1571 readonly value: u128;1572 } & Struct;1573 readonly isCall: boolean;1574 readonly asCall: {1575 readonly source: H160;1576 readonly target: H160;1577 readonly input: Bytes;1578 readonly value: U256;1579 readonly gasLimit: u64;1580 readonly maxFeePerGas: U256;1581 readonly maxPriorityFeePerGas: Option<U256>;1582 readonly nonce: Option<U256>;1583 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1584 } & Struct;1585 readonly isCreate: boolean;1586 readonly asCreate: {1587 readonly source: H160;1588 readonly init: Bytes;1589 readonly value: U256;1590 readonly gasLimit: u64;1591 readonly maxFeePerGas: U256;1592 readonly maxPriorityFeePerGas: Option<U256>;1593 readonly nonce: Option<U256>;1594 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1595 } & Struct;1596 readonly isCreate2: boolean;1597 readonly asCreate2: {1598 readonly source: H160;1599 readonly init: Bytes;1600 readonly salt: H256;1601 readonly value: U256;1602 readonly gasLimit: u64;1603 readonly maxFeePerGas: U256;1604 readonly maxPriorityFeePerGas: Option<U256>;1605 readonly nonce: Option<U256>;1606 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;1607 } & Struct;1608 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';1609}16101611/** @name PalletEvmCoderSubstrateCall */1612export interface PalletEvmCoderSubstrateCall extends Enum {1613 readonly isEmptyCall: boolean;1614 readonly type: 'EmptyCall';1615}16161617/** @name PalletEvmCoderSubstrateError */1618export interface PalletEvmCoderSubstrateError extends Enum {1619 readonly isOutOfGas: boolean;1620 readonly isOutOfFund: boolean;1621 readonly type: 'OutOfGas' | 'OutOfFund';1622}16231624/** @name PalletEvmContractHelpersCall */1625export interface PalletEvmContractHelpersCall extends Enum {1626 readonly isMigrateFromSelfSponsoring: boolean;1627 readonly asMigrateFromSelfSponsoring: {1628 readonly addresses: Vec<H160>;1629 } & Struct;1630 readonly type: 'MigrateFromSelfSponsoring';1631}16321633/** @name PalletEvmContractHelpersError */1634export interface PalletEvmContractHelpersError extends Enum {1635 readonly isNoPermission: boolean;1636 readonly isNoPendingSponsor: boolean;1637 readonly isTooManyMethodsHaveSponsoredLimit: boolean;1638 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';1639}16401641/** @name PalletEvmContractHelpersEvent */1642export interface PalletEvmContractHelpersEvent extends Enum {1643 readonly isContractSponsorSet: boolean;1644 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1645 readonly isContractSponsorshipConfirmed: boolean;1646 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1647 readonly isContractSponsorRemoved: boolean;1648 readonly asContractSponsorRemoved: H160;1649 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1650}16511652/** @name PalletEvmContractHelpersSponsoringModeT */1653export interface PalletEvmContractHelpersSponsoringModeT extends Enum {1654 readonly isDisabled: boolean;1655 readonly isAllowlisted: boolean;1656 readonly isGenerous: boolean;1657 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';1658}16591660/** @name PalletEvmError */1661export interface PalletEvmError extends Enum {1662 readonly isBalanceLow: boolean;1663 readonly isFeeOverflow: boolean;1664 readonly isPaymentOverflow: boolean;1665 readonly isWithdrawFailed: boolean;1666 readonly isGasPriceTooLow: boolean;1667 readonly isInvalidNonce: boolean;1668 readonly isGasLimitTooLow: boolean;1669 readonly isGasLimitTooHigh: boolean;1670 readonly isUndefined: boolean;1671 readonly isReentrancy: boolean;1672 readonly isTransactionMustComeFromEOA: boolean;1673 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';1674}16751676/** @name PalletEvmEvent */1677export interface PalletEvmEvent extends Enum {1678 readonly isLog: boolean;1679 readonly asLog: {1680 readonly log: EthereumLog;1681 } & Struct;1682 readonly isCreated: boolean;1683 readonly asCreated: {1684 readonly address: H160;1685 } & Struct;1686 readonly isCreatedFailed: boolean;1687 readonly asCreatedFailed: {1688 readonly address: H160;1689 } & Struct;1690 readonly isExecuted: boolean;1691 readonly asExecuted: {1692 readonly address: H160;1693 } & Struct;1694 readonly isExecutedFailed: boolean;1695 readonly asExecutedFailed: {1696 readonly address: H160;1697 } & Struct;1698 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1699}17001701/** @name PalletEvmMigrationCall */1702export interface PalletEvmMigrationCall extends Enum {1703 readonly isBegin: boolean;1704 readonly asBegin: {1705 readonly address: H160;1706 } & Struct;1707 readonly isSetData: boolean;1708 readonly asSetData: {1709 readonly address: H160;1710 readonly data: Vec<ITuple<[H256, H256]>>;1711 } & Struct;1712 readonly isFinish: boolean;1713 readonly asFinish: {1714 readonly address: H160;1715 readonly code: Bytes;1716 } & Struct;1717 readonly isInsertEthLogs: boolean;1718 readonly asInsertEthLogs: {1719 readonly logs: Vec<EthereumLog>;1720 } & Struct;1721 readonly isInsertEvents: boolean;1722 readonly asInsertEvents: {1723 readonly events: Vec<Bytes>;1724 } & Struct;1725 readonly isRemoveRmrkData: boolean;1726 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents' | 'RemoveRmrkData';1727}17281729/** @name PalletEvmMigrationError */1730export interface PalletEvmMigrationError extends Enum {1731 readonly isAccountNotEmpty: boolean;1732 readonly isAccountIsNotMigrating: boolean;1733 readonly isBadEvent: boolean;1734 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';1735}17361737/** @name PalletEvmMigrationEvent */1738export interface PalletEvmMigrationEvent extends Enum {1739 readonly isTestEvent: boolean;1740 readonly type: 'TestEvent';1741}17421743/** @name PalletForeignAssetsAssetIds */1744export interface PalletForeignAssetsAssetIds extends Enum {1745 readonly isForeignAssetId: boolean;1746 readonly asForeignAssetId: u32;1747 readonly isNativeAssetId: boolean;1748 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;1749 readonly type: 'ForeignAssetId' | 'NativeAssetId';1750}17511752/** @name PalletForeignAssetsModuleAssetMetadata */1753export interface PalletForeignAssetsModuleAssetMetadata extends Struct {1754 readonly name: Bytes;1755 readonly symbol: Bytes;1756 readonly decimals: u8;1757 readonly minimalBalance: u128;1758}17591760/** @name PalletForeignAssetsModuleCall */1761export interface PalletForeignAssetsModuleCall extends Enum {1762 readonly isRegisterForeignAsset: boolean;1763 readonly asRegisterForeignAsset: {1764 readonly owner: AccountId32;1765 readonly location: XcmVersionedMultiLocation;1766 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1767 } & Struct;1768 readonly isUpdateForeignAsset: boolean;1769 readonly asUpdateForeignAsset: {1770 readonly foreignAssetId: u32;1771 readonly location: XcmVersionedMultiLocation;1772 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1773 } & Struct;1774 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';1775}17761777/** @name PalletForeignAssetsModuleError */1778export interface PalletForeignAssetsModuleError extends Enum {1779 readonly isBadLocation: boolean;1780 readonly isMultiLocationExisted: boolean;1781 readonly isAssetIdNotExists: boolean;1782 readonly isAssetIdExisted: boolean;1783 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';1784}17851786/** @name PalletForeignAssetsModuleEvent */1787export interface PalletForeignAssetsModuleEvent extends Enum {1788 readonly isForeignAssetRegistered: boolean;1789 readonly asForeignAssetRegistered: {1790 readonly assetId: u32;1791 readonly assetAddress: XcmV3MultiLocation;1792 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1793 } & Struct;1794 readonly isForeignAssetUpdated: boolean;1795 readonly asForeignAssetUpdated: {1796 readonly assetId: u32;1797 readonly assetAddress: XcmV3MultiLocation;1798 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1799 } & Struct;1800 readonly isAssetRegistered: boolean;1801 readonly asAssetRegistered: {1802 readonly assetId: PalletForeignAssetsAssetIds;1803 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1804 } & Struct;1805 readonly isAssetUpdated: boolean;1806 readonly asAssetUpdated: {1807 readonly assetId: PalletForeignAssetsAssetIds;1808 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1809 } & Struct;1810 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1811}18121813/** @name PalletForeignAssetsNativeCurrency */1814export interface PalletForeignAssetsNativeCurrency extends Enum {1815 readonly isHere: boolean;1816 readonly isParent: boolean;1817 readonly type: 'Here' | 'Parent';1818}18191820/** @name PalletFungibleError */1821export interface PalletFungibleError extends Enum {1822 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;1823 readonly isFungibleItemsHaveNoId: boolean;1824 readonly isFungibleItemsDontHaveData: boolean;1825 readonly isFungibleDisallowsNesting: boolean;1826 readonly isSettingPropertiesNotAllowed: boolean;1827 readonly isSettingAllowanceForAllNotAllowed: boolean;1828 readonly isFungibleTokensAreAlwaysValid: boolean;1829 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';1830}18311832/** @name PalletIdentityBitFlags */1833export interface PalletIdentityBitFlags extends Struct {1834 readonly _bitLength: 64;1835 readonly Display: 1;1836 readonly Legal: 2;1837 readonly Web: 4;1838 readonly Riot: 8;1839 readonly Email: 16;1840 readonly PgpFingerprint: 32;1841 readonly Image: 64;1842 readonly Twitter: 128;1843}18441845/** @name PalletIdentityCall */1846export interface PalletIdentityCall extends Enum {1847 readonly isAddRegistrar: boolean;1848 readonly asAddRegistrar: {1849 readonly account: MultiAddress;1850 } & Struct;1851 readonly isSetIdentity: boolean;1852 readonly asSetIdentity: {1853 readonly info: PalletIdentityIdentityInfo;1854 } & Struct;1855 readonly isSetSubs: boolean;1856 readonly asSetSubs: {1857 readonly subs: Vec<ITuple<[AccountId32, Data]>>;1858 } & Struct;1859 readonly isClearIdentity: boolean;1860 readonly isRequestJudgement: boolean;1861 readonly asRequestJudgement: {1862 readonly regIndex: Compact<u32>;1863 readonly maxFee: Compact<u128>;1864 } & Struct;1865 readonly isCancelRequest: boolean;1866 readonly asCancelRequest: {1867 readonly regIndex: u32;1868 } & Struct;1869 readonly isSetFee: boolean;1870 readonly asSetFee: {1871 readonly index: Compact<u32>;1872 readonly fee: Compact<u128>;1873 } & Struct;1874 readonly isSetAccountId: boolean;1875 readonly asSetAccountId: {1876 readonly index: Compact<u32>;1877 readonly new_: MultiAddress;1878 } & Struct;1879 readonly isSetFields: boolean;1880 readonly asSetFields: {1881 readonly index: Compact<u32>;1882 readonly fields: PalletIdentityBitFlags;1883 } & Struct;1884 readonly isProvideJudgement: boolean;1885 readonly asProvideJudgement: {1886 readonly regIndex: Compact<u32>;1887 readonly target: MultiAddress;1888 readonly judgement: PalletIdentityJudgement;1889 readonly identity: H256;1890 } & Struct;1891 readonly isKillIdentity: boolean;1892 readonly asKillIdentity: {1893 readonly target: MultiAddress;1894 } & Struct;1895 readonly isAddSub: boolean;1896 readonly asAddSub: {1897 readonly sub: MultiAddress;1898 readonly data: Data;1899 } & Struct;1900 readonly isRenameSub: boolean;1901 readonly asRenameSub: {1902 readonly sub: MultiAddress;1903 readonly data: Data;1904 } & Struct;1905 readonly isRemoveSub: boolean;1906 readonly asRemoveSub: {1907 readonly sub: MultiAddress;1908 } & Struct;1909 readonly isQuitSub: boolean;1910 readonly isForceInsertIdentities: boolean;1911 readonly asForceInsertIdentities: {1912 readonly identities: Vec<ITuple<[AccountId32, PalletIdentityRegistration]>>;1913 } & Struct;1914 readonly isForceRemoveIdentities: boolean;1915 readonly asForceRemoveIdentities: {1916 readonly identities: Vec<AccountId32>;1917 } & Struct;1918 readonly isForceSetSubs: boolean;1919 readonly asForceSetSubs: {1920 readonly subs: Vec<ITuple<[AccountId32, ITuple<[u128, Vec<ITuple<[AccountId32, Data]>>]>]>>;1921 } & Struct;1922 readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities' | 'ForceSetSubs';1923}19241925/** @name PalletIdentityError */1926export interface PalletIdentityError extends Enum {1927 readonly isTooManySubAccounts: boolean;1928 readonly isNotFound: boolean;1929 readonly isNotNamed: boolean;1930 readonly isEmptyIndex: boolean;1931 readonly isFeeChanged: boolean;1932 readonly isNoIdentity: boolean;1933 readonly isStickyJudgement: boolean;1934 readonly isJudgementGiven: boolean;1935 readonly isInvalidJudgement: boolean;1936 readonly isInvalidIndex: boolean;1937 readonly isInvalidTarget: boolean;1938 readonly isTooManyFields: boolean;1939 readonly isTooManyRegistrars: boolean;1940 readonly isAlreadyClaimed: boolean;1941 readonly isNotSub: boolean;1942 readonly isNotOwned: boolean;1943 readonly isJudgementForDifferentIdentity: boolean;1944 readonly isJudgementPaymentFailed: boolean;1945 readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';1946}19471948/** @name PalletIdentityEvent */1949export interface PalletIdentityEvent extends Enum {1950 readonly isIdentitySet: boolean;1951 readonly asIdentitySet: {1952 readonly who: AccountId32;1953 } & Struct;1954 readonly isIdentityCleared: boolean;1955 readonly asIdentityCleared: {1956 readonly who: AccountId32;1957 readonly deposit: u128;1958 } & Struct;1959 readonly isIdentityKilled: boolean;1960 readonly asIdentityKilled: {1961 readonly who: AccountId32;1962 readonly deposit: u128;1963 } & Struct;1964 readonly isIdentitiesInserted: boolean;1965 readonly asIdentitiesInserted: {1966 readonly amount: u32;1967 } & Struct;1968 readonly isIdentitiesRemoved: boolean;1969 readonly asIdentitiesRemoved: {1970 readonly amount: u32;1971 } & Struct;1972 readonly isJudgementRequested: boolean;1973 readonly asJudgementRequested: {1974 readonly who: AccountId32;1975 readonly registrarIndex: u32;1976 } & Struct;1977 readonly isJudgementUnrequested: boolean;1978 readonly asJudgementUnrequested: {1979 readonly who: AccountId32;1980 readonly registrarIndex: u32;1981 } & Struct;1982 readonly isJudgementGiven: boolean;1983 readonly asJudgementGiven: {1984 readonly target: AccountId32;1985 readonly registrarIndex: u32;1986 } & Struct;1987 readonly isRegistrarAdded: boolean;1988 readonly asRegistrarAdded: {1989 readonly registrarIndex: u32;1990 } & Struct;1991 readonly isSubIdentityAdded: boolean;1992 readonly asSubIdentityAdded: {1993 readonly sub: AccountId32;1994 readonly main: AccountId32;1995 readonly deposit: u128;1996 } & Struct;1997 readonly isSubIdentityRemoved: boolean;1998 readonly asSubIdentityRemoved: {1999 readonly sub: AccountId32;2000 readonly main: AccountId32;2001 readonly deposit: u128;2002 } & Struct;2003 readonly isSubIdentityRevoked: boolean;2004 readonly asSubIdentityRevoked: {2005 readonly sub: AccountId32;2006 readonly main: AccountId32;2007 readonly deposit: u128;2008 } & Struct;2009 readonly isSubIdentitiesInserted: boolean;2010 readonly asSubIdentitiesInserted: {2011 readonly amount: u32;2012 } & Struct;2013 readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked' | 'SubIdentitiesInserted';2014}20152016/** @name PalletIdentityIdentityField */2017export interface PalletIdentityIdentityField extends Enum {2018 readonly isDisplay: boolean;2019 readonly isLegal: boolean;2020 readonly isWeb: boolean;2021 readonly isRiot: boolean;2022 readonly isEmail: boolean;2023 readonly isPgpFingerprint: boolean;2024 readonly isImage: boolean;2025 readonly isTwitter: boolean;2026 readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';2027}20282029/** @name PalletIdentityIdentityInfo */2030export interface PalletIdentityIdentityInfo extends Struct {2031 readonly additional: Vec<ITuple<[Data, Data]>>;2032 readonly display: Data;2033 readonly legal: Data;2034 readonly web: Data;2035 readonly riot: Data;2036 readonly email: Data;2037 readonly pgpFingerprint: Option<U8aFixed>;2038 readonly image: Data;2039 readonly twitter: Data;2040}20412042/** @name PalletIdentityJudgement */2043export interface PalletIdentityJudgement extends Enum {2044 readonly isUnknown: boolean;2045 readonly isFeePaid: boolean;2046 readonly asFeePaid: u128;2047 readonly isReasonable: boolean;2048 readonly isKnownGood: boolean;2049 readonly isOutOfDate: boolean;2050 readonly isLowQuality: boolean;2051 readonly isErroneous: boolean;2052 readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';2053}20542055/** @name PalletIdentityRegistrarInfo */2056export interface PalletIdentityRegistrarInfo extends Struct {2057 readonly account: AccountId32;2058 readonly fee: u128;2059 readonly fields: PalletIdentityBitFlags;2060}20612062/** @name PalletIdentityRegistration */2063export interface PalletIdentityRegistration extends Struct {2064 readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;2065 readonly deposit: u128;2066 readonly info: PalletIdentityIdentityInfo;2067}20682069/** @name PalletInflationCall */2070export interface PalletInflationCall extends Enum {2071 readonly isStartInflation: boolean;2072 readonly asStartInflation: {2073 readonly inflationStartRelayBlock: u32;2074 } & Struct;2075 readonly type: 'StartInflation';2076}20772078/** @name PalletMaintenanceCall */2079export interface PalletMaintenanceCall extends Enum {2080 readonly isEnable: boolean;2081 readonly isDisable: boolean;2082 readonly isExecutePreimage: boolean;2083 readonly asExecutePreimage: {2084 readonly hash_: H256;2085 readonly weightBound: SpWeightsWeightV2Weight;2086 } & Struct;2087 readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';2088}20892090/** @name PalletMaintenanceError */2091export interface PalletMaintenanceError extends Null {}20922093/** @name PalletMaintenanceEvent */2094export interface PalletMaintenanceEvent extends Enum {2095 readonly isMaintenanceEnabled: boolean;2096 readonly isMaintenanceDisabled: boolean;2097 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';2098}20992100/** @name PalletNonfungibleError */2101export interface PalletNonfungibleError extends Enum {2102 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;2103 readonly isNonfungibleItemsHaveNoAmount: boolean;2104 readonly isCantBurnNftWithChildren: boolean;2105 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';2106}21072108/** @name PalletNonfungibleItemData */2109export interface PalletNonfungibleItemData extends Struct {2110 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2111}21122113/** @name PalletPreimageCall */2114export interface PalletPreimageCall extends Enum {2115 readonly isNotePreimage: boolean;2116 readonly asNotePreimage: {2117 readonly bytes: Bytes;2118 } & Struct;2119 readonly isUnnotePreimage: boolean;2120 readonly asUnnotePreimage: {2121 readonly hash_: H256;2122 } & Struct;2123 readonly isRequestPreimage: boolean;2124 readonly asRequestPreimage: {2125 readonly hash_: H256;2126 } & Struct;2127 readonly isUnrequestPreimage: boolean;2128 readonly asUnrequestPreimage: {2129 readonly hash_: H256;2130 } & Struct;2131 readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';2132}21332134/** @name PalletPreimageError */2135export interface PalletPreimageError extends Enum {2136 readonly isTooBig: boolean;2137 readonly isAlreadyNoted: boolean;2138 readonly isNotAuthorized: boolean;2139 readonly isNotNoted: boolean;2140 readonly isRequested: boolean;2141 readonly isNotRequested: boolean;2142 readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';2143}21442145/** @name PalletPreimageEvent */2146export interface PalletPreimageEvent extends Enum {2147 readonly isNoted: boolean;2148 readonly asNoted: {2149 readonly hash_: H256;2150 } & Struct;2151 readonly isRequested: boolean;2152 readonly asRequested: {2153 readonly hash_: H256;2154 } & Struct;2155 readonly isCleared: boolean;2156 readonly asCleared: {2157 readonly hash_: H256;2158 } & Struct;2159 readonly type: 'Noted' | 'Requested' | 'Cleared';2160}21612162/** @name PalletPreimageRequestStatus */2163export interface PalletPreimageRequestStatus extends Enum {2164 readonly isUnrequested: boolean;2165 readonly asUnrequested: {2166 readonly deposit: ITuple<[AccountId32, u128]>;2167 readonly len: u32;2168 } & Struct;2169 readonly isRequested: boolean;2170 readonly asRequested: {2171 readonly deposit: Option<ITuple<[AccountId32, u128]>>;2172 readonly count: u32;2173 readonly len: Option<u32>;2174 } & Struct;2175 readonly type: 'Unrequested' | 'Requested';2176}21772178/** @name PalletRefungibleError */2179export interface PalletRefungibleError extends Enum {2180 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;2181 readonly isWrongRefungiblePieces: boolean;2182 readonly isRepartitionWhileNotOwningAllPieces: boolean;2183 readonly isRefungibleDisallowsNesting: boolean;2184 readonly isSettingPropertiesNotAllowed: boolean;2185 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';2186}21872188/** @name PalletSessionCall */2189export interface PalletSessionCall extends Enum {2190 readonly isSetKeys: boolean;2191 readonly asSetKeys: {2192 readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;2193 readonly proof: Bytes;2194 } & Struct;2195 readonly isPurgeKeys: boolean;2196 readonly type: 'SetKeys' | 'PurgeKeys';2197}21982199/** @name PalletSessionError */2200export interface PalletSessionError extends Enum {2201 readonly isInvalidProof: boolean;2202 readonly isNoAssociatedValidatorId: boolean;2203 readonly isDuplicatedKey: boolean;2204 readonly isNoKeys: boolean;2205 readonly isNoAccount: boolean;2206 readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';2207}22082209/** @name PalletSessionEvent */2210export interface PalletSessionEvent extends Enum {2211 readonly isNewSession: boolean;2212 readonly asNewSession: {2213 readonly sessionIndex: u32;2214 } & Struct;2215 readonly type: 'NewSession';2216}22172218/** @name PalletStructureCall */2219export interface PalletStructureCall extends Null {}22202221/** @name PalletStructureError */2222export interface PalletStructureError extends Enum {2223 readonly isOuroborosDetected: boolean;2224 readonly isDepthLimit: boolean;2225 readonly isBreadthLimit: boolean;2226 readonly isTokenNotFound: boolean;2227 readonly isCantNestTokenUnderCollection: boolean;2228 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound' | 'CantNestTokenUnderCollection';2229}22302231/** @name PalletStructureEvent */2232export interface PalletStructureEvent extends Enum {2233 readonly isExecuted: boolean;2234 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;2235 readonly type: 'Executed';2236}22372238/** @name PalletSudoCall */2239export interface PalletSudoCall extends Enum {2240 readonly isSudo: boolean;2241 readonly asSudo: {2242 readonly call: Call;2243 } & Struct;2244 readonly isSudoUncheckedWeight: boolean;2245 readonly asSudoUncheckedWeight: {2246 readonly call: Call;2247 readonly weight: SpWeightsWeightV2Weight;2248 } & Struct;2249 readonly isSetKey: boolean;2250 readonly asSetKey: {2251 readonly new_: MultiAddress;2252 } & Struct;2253 readonly isSudoAs: boolean;2254 readonly asSudoAs: {2255 readonly who: MultiAddress;2256 readonly call: Call;2257 } & Struct;2258 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';2259}22602261/** @name PalletSudoError */2262export interface PalletSudoError extends Enum {2263 readonly isRequireSudo: boolean;2264 readonly type: 'RequireSudo';2265}22662267/** @name PalletSudoEvent */2268export interface PalletSudoEvent extends Enum {2269 readonly isSudid: boolean;2270 readonly asSudid: {2271 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;2272 } & Struct;2273 readonly isKeyChanged: boolean;2274 readonly asKeyChanged: {2275 readonly oldSudoer: Option<AccountId32>;2276 } & Struct;2277 readonly isSudoAsDone: boolean;2278 readonly asSudoAsDone: {2279 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;2280 } & Struct;2281 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';2282}22832284/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */2285export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}22862287/** @name PalletTestUtilsCall */2288export interface PalletTestUtilsCall extends Enum {2289 readonly isEnable: boolean;2290 readonly isSetTestValue: boolean;2291 readonly asSetTestValue: {2292 readonly value: u32;2293 } & Struct;2294 readonly isSetTestValueAndRollback: boolean;2295 readonly asSetTestValueAndRollback: {2296 readonly value: u32;2297 } & Struct;2298 readonly isIncTestValue: boolean;2299 readonly isJustTakeFee: boolean;2300 readonly isBatchAll: boolean;2301 readonly asBatchAll: {2302 readonly calls: Vec<Call>;2303 } & Struct;2304 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';2305}23062307/** @name PalletTestUtilsError */2308export interface PalletTestUtilsError extends Enum {2309 readonly isTestPalletDisabled: boolean;2310 readonly isTriggerRollback: boolean;2311 readonly type: 'TestPalletDisabled' | 'TriggerRollback';2312}23132314/** @name PalletTestUtilsEvent */2315export interface PalletTestUtilsEvent extends Enum {2316 readonly isValueIsSet: boolean;2317 readonly isShouldRollback: boolean;2318 readonly isBatchCompleted: boolean;2319 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';2320}23212322/** @name PalletTimestampCall */2323export interface PalletTimestampCall extends Enum {2324 readonly isSet: boolean;2325 readonly asSet: {2326 readonly now: Compact<u64>;2327 } & Struct;2328 readonly type: 'Set';2329}23302331/** @name PalletTransactionPaymentEvent */2332export interface PalletTransactionPaymentEvent extends Enum {2333 readonly isTransactionFeePaid: boolean;2334 readonly asTransactionFeePaid: {2335 readonly who: AccountId32;2336 readonly actualFee: u128;2337 readonly tip: u128;2338 } & Struct;2339 readonly type: 'TransactionFeePaid';2340}23412342/** @name PalletTransactionPaymentReleases */2343export interface PalletTransactionPaymentReleases extends Enum {2344 readonly isV1Ancient: boolean;2345 readonly isV2: boolean;2346 readonly type: 'V1Ancient' | 'V2';2347}23482349/** @name PalletTreasuryCall */2350export interface PalletTreasuryCall extends Enum {2351 readonly isProposeSpend: boolean;2352 readonly asProposeSpend: {2353 readonly value: Compact<u128>;2354 readonly beneficiary: MultiAddress;2355 } & Struct;2356 readonly isRejectProposal: boolean;2357 readonly asRejectProposal: {2358 readonly proposalId: Compact<u32>;2359 } & Struct;2360 readonly isApproveProposal: boolean;2361 readonly asApproveProposal: {2362 readonly proposalId: Compact<u32>;2363 } & Struct;2364 readonly isSpend: boolean;2365 readonly asSpend: {2366 readonly amount: Compact<u128>;2367 readonly beneficiary: MultiAddress;2368 } & Struct;2369 readonly isRemoveApproval: boolean;2370 readonly asRemoveApproval: {2371 readonly proposalId: Compact<u32>;2372 } & Struct;2373 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';2374}23752376/** @name PalletTreasuryError */2377export interface PalletTreasuryError extends Enum {2378 readonly isInsufficientProposersBalance: boolean;2379 readonly isInvalidIndex: boolean;2380 readonly isTooManyApprovals: boolean;2381 readonly isInsufficientPermission: boolean;2382 readonly isProposalNotApproved: boolean;2383 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';2384}23852386/** @name PalletTreasuryEvent */2387export interface PalletTreasuryEvent extends Enum {2388 readonly isProposed: boolean;2389 readonly asProposed: {2390 readonly proposalIndex: u32;2391 } & Struct;2392 readonly isSpending: boolean;2393 readonly asSpending: {2394 readonly budgetRemaining: u128;2395 } & Struct;2396 readonly isAwarded: boolean;2397 readonly asAwarded: {2398 readonly proposalIndex: u32;2399 readonly award: u128;2400 readonly account: AccountId32;2401 } & Struct;2402 readonly isRejected: boolean;2403 readonly asRejected: {2404 readonly proposalIndex: u32;2405 readonly slashed: u128;2406 } & Struct;2407 readonly isBurnt: boolean;2408 readonly asBurnt: {2409 readonly burntFunds: u128;2410 } & Struct;2411 readonly isRollover: boolean;2412 readonly asRollover: {2413 readonly rolloverBalance: u128;2414 } & Struct;2415 readonly isDeposit: boolean;2416 readonly asDeposit: {2417 readonly value: u128;2418 } & Struct;2419 readonly isSpendApproved: boolean;2420 readonly asSpendApproved: {2421 readonly proposalIndex: u32;2422 readonly amount: u128;2423 readonly beneficiary: AccountId32;2424 } & Struct;2425 readonly isUpdatedInactive: boolean;2426 readonly asUpdatedInactive: {2427 readonly reactivated: u128;2428 readonly deactivated: u128;2429 } & Struct;2430 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive';2431}24322433/** @name PalletTreasuryProposal */2434export interface PalletTreasuryProposal extends Struct {2435 readonly proposer: AccountId32;2436 readonly value: u128;2437 readonly beneficiary: AccountId32;2438 readonly bond: u128;2439}24402441/** @name PalletUniqueCall */2442export interface PalletUniqueCall extends Enum {2443 readonly isCreateCollection: boolean;2444 readonly asCreateCollection: {2445 readonly collectionName: Vec<u16>;2446 readonly collectionDescription: Vec<u16>;2447 readonly tokenPrefix: Bytes;2448 readonly mode: UpDataStructsCollectionMode;2449 } & Struct;2450 readonly isCreateCollectionEx: boolean;2451 readonly asCreateCollectionEx: {2452 readonly data: UpDataStructsCreateCollectionData;2453 } & Struct;2454 readonly isDestroyCollection: boolean;2455 readonly asDestroyCollection: {2456 readonly collectionId: u32;2457 } & Struct;2458 readonly isAddToAllowList: boolean;2459 readonly asAddToAllowList: {2460 readonly collectionId: u32;2461 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2462 } & Struct;2463 readonly isRemoveFromAllowList: boolean;2464 readonly asRemoveFromAllowList: {2465 readonly collectionId: u32;2466 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2467 } & Struct;2468 readonly isChangeCollectionOwner: boolean;2469 readonly asChangeCollectionOwner: {2470 readonly collectionId: u32;2471 readonly newOwner: AccountId32;2472 } & Struct;2473 readonly isAddCollectionAdmin: boolean;2474 readonly asAddCollectionAdmin: {2475 readonly collectionId: u32;2476 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2477 } & Struct;2478 readonly isRemoveCollectionAdmin: boolean;2479 readonly asRemoveCollectionAdmin: {2480 readonly collectionId: u32;2481 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2482 } & Struct;2483 readonly isSetCollectionSponsor: boolean;2484 readonly asSetCollectionSponsor: {2485 readonly collectionId: u32;2486 readonly newSponsor: AccountId32;2487 } & Struct;2488 readonly isConfirmSponsorship: boolean;2489 readonly asConfirmSponsorship: {2490 readonly collectionId: u32;2491 } & Struct;2492 readonly isRemoveCollectionSponsor: boolean;2493 readonly asRemoveCollectionSponsor: {2494 readonly collectionId: u32;2495 } & Struct;2496 readonly isCreateItem: boolean;2497 readonly asCreateItem: {2498 readonly collectionId: u32;2499 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2500 readonly data: UpDataStructsCreateItemData;2501 } & Struct;2502 readonly isCreateMultipleItems: boolean;2503 readonly asCreateMultipleItems: {2504 readonly collectionId: u32;2505 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2506 readonly itemsData: Vec<UpDataStructsCreateItemData>;2507 } & Struct;2508 readonly isSetCollectionProperties: boolean;2509 readonly asSetCollectionProperties: {2510 readonly collectionId: u32;2511 readonly properties: Vec<UpDataStructsProperty>;2512 } & Struct;2513 readonly isDeleteCollectionProperties: boolean;2514 readonly asDeleteCollectionProperties: {2515 readonly collectionId: u32;2516 readonly propertyKeys: Vec<Bytes>;2517 } & Struct;2518 readonly isSetTokenProperties: boolean;2519 readonly asSetTokenProperties: {2520 readonly collectionId: u32;2521 readonly tokenId: u32;2522 readonly properties: Vec<UpDataStructsProperty>;2523 } & Struct;2524 readonly isDeleteTokenProperties: boolean;2525 readonly asDeleteTokenProperties: {2526 readonly collectionId: u32;2527 readonly tokenId: u32;2528 readonly propertyKeys: Vec<Bytes>;2529 } & Struct;2530 readonly isSetTokenPropertyPermissions: boolean;2531 readonly asSetTokenPropertyPermissions: {2532 readonly collectionId: u32;2533 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2534 } & Struct;2535 readonly isCreateMultipleItemsEx: boolean;2536 readonly asCreateMultipleItemsEx: {2537 readonly collectionId: u32;2538 readonly data: UpDataStructsCreateItemExData;2539 } & Struct;2540 readonly isSetTransfersEnabledFlag: boolean;2541 readonly asSetTransfersEnabledFlag: {2542 readonly collectionId: u32;2543 readonly value: bool;2544 } & Struct;2545 readonly isBurnItem: boolean;2546 readonly asBurnItem: {2547 readonly collectionId: u32;2548 readonly itemId: u32;2549 readonly value: u128;2550 } & Struct;2551 readonly isBurnFrom: boolean;2552 readonly asBurnFrom: {2553 readonly collectionId: u32;2554 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2555 readonly itemId: u32;2556 readonly value: u128;2557 } & Struct;2558 readonly isTransfer: boolean;2559 readonly asTransfer: {2560 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2561 readonly collectionId: u32;2562 readonly itemId: u32;2563 readonly value: u128;2564 } & Struct;2565 readonly isApprove: boolean;2566 readonly asApprove: {2567 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2568 readonly collectionId: u32;2569 readonly itemId: u32;2570 readonly amount: u128;2571 } & Struct;2572 readonly isApproveFrom: boolean;2573 readonly asApproveFrom: {2574 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2575 readonly to: PalletEvmAccountBasicCrossAccountIdRepr;2576 readonly collectionId: u32;2577 readonly itemId: u32;2578 readonly amount: u128;2579 } & Struct;2580 readonly isTransferFrom: boolean;2581 readonly asTransferFrom: {2582 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2583 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2584 readonly collectionId: u32;2585 readonly itemId: u32;2586 readonly value: u128;2587 } & Struct;2588 readonly isSetCollectionLimits: boolean;2589 readonly asSetCollectionLimits: {2590 readonly collectionId: u32;2591 readonly newLimit: UpDataStructsCollectionLimits;2592 } & Struct;2593 readonly isSetCollectionPermissions: boolean;2594 readonly asSetCollectionPermissions: {2595 readonly collectionId: u32;2596 readonly newPermission: UpDataStructsCollectionPermissions;2597 } & Struct;2598 readonly isRepartition: boolean;2599 readonly asRepartition: {2600 readonly collectionId: u32;2601 readonly tokenId: u32;2602 readonly amount: u128;2603 } & Struct;2604 readonly isSetAllowanceForAll: boolean;2605 readonly asSetAllowanceForAll: {2606 readonly collectionId: u32;2607 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2608 readonly approve: bool;2609 } & Struct;2610 readonly isForceRepairCollection: boolean;2611 readonly asForceRepairCollection: {2612 readonly collectionId: u32;2613 } & Struct;2614 readonly isForceRepairItem: boolean;2615 readonly asForceRepairItem: {2616 readonly collectionId: u32;2617 readonly itemId: u32;2618 } & Struct;2619 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' | 'ApproveFrom' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';2620}26212622/** @name PalletUniqueError */2623export interface PalletUniqueError extends Enum {2624 readonly isCollectionDecimalPointLimitExceeded: boolean;2625 readonly isEmptyArgument: boolean;2626 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;2627 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';2628}26292630/** @name PalletXcmCall */2631export interface PalletXcmCall extends Enum {2632 readonly isSend: boolean;2633 readonly asSend: {2634 readonly dest: XcmVersionedMultiLocation;2635 readonly message: XcmVersionedXcm;2636 } & Struct;2637 readonly isTeleportAssets: boolean;2638 readonly asTeleportAssets: {2639 readonly dest: XcmVersionedMultiLocation;2640 readonly beneficiary: XcmVersionedMultiLocation;2641 readonly assets: XcmVersionedMultiAssets;2642 readonly feeAssetItem: u32;2643 } & Struct;2644 readonly isReserveTransferAssets: boolean;2645 readonly asReserveTransferAssets: {2646 readonly dest: XcmVersionedMultiLocation;2647 readonly beneficiary: XcmVersionedMultiLocation;2648 readonly assets: XcmVersionedMultiAssets;2649 readonly feeAssetItem: u32;2650 } & Struct;2651 readonly isExecute: boolean;2652 readonly asExecute: {2653 readonly message: XcmVersionedXcm;2654 readonly maxWeight: SpWeightsWeightV2Weight;2655 } & Struct;2656 readonly isForceXcmVersion: boolean;2657 readonly asForceXcmVersion: {2658 readonly location: XcmV3MultiLocation;2659 readonly xcmVersion: u32;2660 } & Struct;2661 readonly isForceDefaultXcmVersion: boolean;2662 readonly asForceDefaultXcmVersion: {2663 readonly maybeXcmVersion: Option<u32>;2664 } & Struct;2665 readonly isForceSubscribeVersionNotify: boolean;2666 readonly asForceSubscribeVersionNotify: {2667 readonly location: XcmVersionedMultiLocation;2668 } & Struct;2669 readonly isForceUnsubscribeVersionNotify: boolean;2670 readonly asForceUnsubscribeVersionNotify: {2671 readonly location: XcmVersionedMultiLocation;2672 } & Struct;2673 readonly isLimitedReserveTransferAssets: boolean;2674 readonly asLimitedReserveTransferAssets: {2675 readonly dest: XcmVersionedMultiLocation;2676 readonly beneficiary: XcmVersionedMultiLocation;2677 readonly assets: XcmVersionedMultiAssets;2678 readonly feeAssetItem: u32;2679 readonly weightLimit: XcmV3WeightLimit;2680 } & Struct;2681 readonly isLimitedTeleportAssets: boolean;2682 readonly asLimitedTeleportAssets: {2683 readonly dest: XcmVersionedMultiLocation;2684 readonly beneficiary: XcmVersionedMultiLocation;2685 readonly assets: XcmVersionedMultiAssets;2686 readonly feeAssetItem: u32;2687 readonly weightLimit: XcmV3WeightLimit;2688 } & Struct;2689 readonly isForceSuspension: boolean;2690 readonly asForceSuspension: {2691 readonly suspended: bool;2692 } & Struct;2693 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets' | 'ForceSuspension';2694}26952696/** @name PalletXcmError */2697export interface PalletXcmError extends Enum {2698 readonly isUnreachable: boolean;2699 readonly isSendFailure: boolean;2700 readonly isFiltered: boolean;2701 readonly isUnweighableMessage: boolean;2702 readonly isDestinationNotInvertible: boolean;2703 readonly isEmpty: boolean;2704 readonly isCannotReanchor: boolean;2705 readonly isTooManyAssets: boolean;2706 readonly isInvalidOrigin: boolean;2707 readonly isBadVersion: boolean;2708 readonly isBadLocation: boolean;2709 readonly isNoSubscription: boolean;2710 readonly isAlreadySubscribed: boolean;2711 readonly isInvalidAsset: boolean;2712 readonly isLowBalance: boolean;2713 readonly isTooManyLocks: boolean;2714 readonly isAccountNotSovereign: boolean;2715 readonly isFeesNotMet: boolean;2716 readonly isLockNotFound: boolean;2717 readonly isInUse: boolean;2718 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed' | 'InvalidAsset' | 'LowBalance' | 'TooManyLocks' | 'AccountNotSovereign' | 'FeesNotMet' | 'LockNotFound' | 'InUse';2719}27202721/** @name PalletXcmEvent */2722export interface PalletXcmEvent extends Enum {2723 readonly isAttempted: boolean;2724 readonly asAttempted: XcmV3TraitsOutcome;2725 readonly isSent: boolean;2726 readonly asSent: ITuple<[XcmV3MultiLocation, XcmV3MultiLocation, XcmV3Xcm]>;2727 readonly isUnexpectedResponse: boolean;2728 readonly asUnexpectedResponse: ITuple<[XcmV3MultiLocation, u64]>;2729 readonly isResponseReady: boolean;2730 readonly asResponseReady: ITuple<[u64, XcmV3Response]>;2731 readonly isNotified: boolean;2732 readonly asNotified: ITuple<[u64, u8, u8]>;2733 readonly isNotifyOverweight: boolean;2734 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;2735 readonly isNotifyDispatchError: boolean;2736 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;2737 readonly isNotifyDecodeFailed: boolean;2738 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;2739 readonly isInvalidResponder: boolean;2740 readonly asInvalidResponder: ITuple<[XcmV3MultiLocation, u64, Option<XcmV3MultiLocation>]>;2741 readonly isInvalidResponderVersion: boolean;2742 readonly asInvalidResponderVersion: ITuple<[XcmV3MultiLocation, u64]>;2743 readonly isResponseTaken: boolean;2744 readonly asResponseTaken: u64;2745 readonly isAssetsTrapped: boolean;2746 readonly asAssetsTrapped: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;2747 readonly isVersionChangeNotified: boolean;2748 readonly asVersionChangeNotified: ITuple<[XcmV3MultiLocation, u32, XcmV3MultiassetMultiAssets]>;2749 readonly isSupportedVersionChanged: boolean;2750 readonly asSupportedVersionChanged: ITuple<[XcmV3MultiLocation, u32]>;2751 readonly isNotifyTargetSendFail: boolean;2752 readonly asNotifyTargetSendFail: ITuple<[XcmV3MultiLocation, u64, XcmV3TraitsError]>;2753 readonly isNotifyTargetMigrationFail: boolean;2754 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;2755 readonly isInvalidQuerierVersion: boolean;2756 readonly asInvalidQuerierVersion: ITuple<[XcmV3MultiLocation, u64]>;2757 readonly isInvalidQuerier: boolean;2758 readonly asInvalidQuerier: ITuple<[XcmV3MultiLocation, u64, XcmV3MultiLocation, Option<XcmV3MultiLocation>]>;2759 readonly isVersionNotifyStarted: boolean;2760 readonly asVersionNotifyStarted: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;2761 readonly isVersionNotifyRequested: boolean;2762 readonly asVersionNotifyRequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;2763 readonly isVersionNotifyUnrequested: boolean;2764 readonly asVersionNotifyUnrequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;2765 readonly isFeesPaid: boolean;2766 readonly asFeesPaid: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;2767 readonly isAssetsClaimed: boolean;2768 readonly asAssetsClaimed: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;2769 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'InvalidQuerierVersion' | 'InvalidQuerier' | 'VersionNotifyStarted' | 'VersionNotifyRequested' | 'VersionNotifyUnrequested' | 'FeesPaid' | 'AssetsClaimed';2770}27712772/** @name PalletXcmQueryStatus */2773export interface PalletXcmQueryStatus extends Enum {2774 readonly isPending: boolean;2775 readonly asPending: {2776 readonly responder: XcmVersionedMultiLocation;2777 readonly maybeMatchQuerier: Option<XcmVersionedMultiLocation>;2778 readonly maybeNotify: Option<ITuple<[u8, u8]>>;2779 readonly timeout: u32;2780 } & Struct;2781 readonly isVersionNotifier: boolean;2782 readonly asVersionNotifier: {2783 readonly origin: XcmVersionedMultiLocation;2784 readonly isActive: bool;2785 } & Struct;2786 readonly isReady: boolean;2787 readonly asReady: {2788 readonly response: XcmVersionedResponse;2789 readonly at: u32;2790 } & Struct;2791 readonly type: 'Pending' | 'VersionNotifier' | 'Ready';2792}27932794/** @name PalletXcmRemoteLockedFungibleRecord */2795export interface PalletXcmRemoteLockedFungibleRecord extends Struct {2796 readonly amount: u128;2797 readonly owner: XcmVersionedMultiLocation;2798 readonly locker: XcmVersionedMultiLocation;2799 readonly users: u32;2800}28012802/** @name PalletXcmVersionMigrationStage */2803export interface PalletXcmVersionMigrationStage extends Enum {2804 readonly isMigrateSupportedVersion: boolean;2805 readonly isMigrateVersionNotifiers: boolean;2806 readonly isNotifyCurrentTargets: boolean;2807 readonly asNotifyCurrentTargets: Option<Bytes>;2808 readonly isMigrateAndNotifyOldTargets: boolean;2809 readonly type: 'MigrateSupportedVersion' | 'MigrateVersionNotifiers' | 'NotifyCurrentTargets' | 'MigrateAndNotifyOldTargets';2810}28112812/** @name ParachainInfoCall */2813export interface ParachainInfoCall extends Null {}28142815/** @name PhantomTypeUpDataStructs */2816export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpPovEstimateRpcPovInfo]>> {}28172818/** @name PolkadotCorePrimitivesInboundDownwardMessage */2819export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {2820 readonly sentAt: u32;2821 readonly msg: Bytes;2822}28232824/** @name PolkadotCorePrimitivesInboundHrmpMessage */2825export interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {2826 readonly sentAt: u32;2827 readonly data: Bytes;2828}28292830/** @name PolkadotCorePrimitivesOutboundHrmpMessage */2831export interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {2832 readonly recipient: u32;2833 readonly data: Bytes;2834}28352836/** @name PolkadotParachainPrimitivesXcmpMessageFormat */2837export interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {2838 readonly isConcatenatedVersionedXcm: boolean;2839 readonly isConcatenatedEncodedBlob: boolean;2840 readonly isSignals: boolean;2841 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2842}28432844/** @name PolkadotPrimitivesV4AbridgedHostConfiguration */2845export interface PolkadotPrimitivesV4AbridgedHostConfiguration extends Struct {2846 readonly maxCodeSize: u32;2847 readonly maxHeadDataSize: u32;2848 readonly maxUpwardQueueCount: u32;2849 readonly maxUpwardQueueSize: u32;2850 readonly maxUpwardMessageSize: u32;2851 readonly maxUpwardMessageNumPerCandidate: u32;2852 readonly hrmpMaxMessageNumPerCandidate: u32;2853 readonly validationUpgradeCooldown: u32;2854 readonly validationUpgradeDelay: u32;2855}28562857/** @name PolkadotPrimitivesV4AbridgedHrmpChannel */2858export interface PolkadotPrimitivesV4AbridgedHrmpChannel extends Struct {2859 readonly maxCapacity: u32;2860 readonly maxTotalSize: u32;2861 readonly maxMessageSize: u32;2862 readonly msgCount: u32;2863 readonly totalSize: u32;2864 readonly mqcHead: Option<H256>;2865}28662867/** @name PolkadotPrimitivesV4PersistedValidationData */2868export interface PolkadotPrimitivesV4PersistedValidationData extends Struct {2869 readonly parentHead: Bytes;2870 readonly relayParentNumber: u32;2871 readonly relayParentStorageRoot: H256;2872 readonly maxPovSize: u32;2873}28742875/** @name PolkadotPrimitivesV4UpgradeRestriction */2876export interface PolkadotPrimitivesV4UpgradeRestriction extends Enum {2877 readonly isPresent: boolean;2878 readonly type: 'Present';2879}28802881/** @name SpArithmeticArithmeticError */2882export interface SpArithmeticArithmeticError extends Enum {2883 readonly isUnderflow: boolean;2884 readonly isOverflow: boolean;2885 readonly isDivisionByZero: boolean;2886 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2887}28882889/** @name SpConsensusAuraSr25519AppSr25519Public */2890export interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}28912892/** @name SpCoreCryptoKeyTypeId */2893export interface SpCoreCryptoKeyTypeId extends U8aFixed {}28942895/** @name SpCoreEcdsaSignature */2896export interface SpCoreEcdsaSignature extends U8aFixed {}28972898/** @name SpCoreEd25519Signature */2899export interface SpCoreEd25519Signature extends U8aFixed {}29002901/** @name SpCoreSr25519Public */2902export interface SpCoreSr25519Public extends U8aFixed {}29032904/** @name SpCoreSr25519Signature */2905export interface SpCoreSr25519Signature extends U8aFixed {}29062907/** @name SpRuntimeDigest */2908export interface SpRuntimeDigest extends Struct {2909 readonly logs: Vec<SpRuntimeDigestDigestItem>;2910}29112912/** @name SpRuntimeDigestDigestItem */2913export interface SpRuntimeDigestDigestItem extends Enum {2914 readonly isOther: boolean;2915 readonly asOther: Bytes;2916 readonly isConsensus: boolean;2917 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;2918 readonly isSeal: boolean;2919 readonly asSeal: ITuple<[U8aFixed, Bytes]>;2920 readonly isPreRuntime: boolean;2921 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;2922 readonly isRuntimeEnvironmentUpdated: boolean;2923 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';2924}29252926/** @name SpRuntimeDispatchError */2927export interface SpRuntimeDispatchError extends Enum {2928 readonly isOther: boolean;2929 readonly isCannotLookup: boolean;2930 readonly isBadOrigin: boolean;2931 readonly isModule: boolean;2932 readonly asModule: SpRuntimeModuleError;2933 readonly isConsumerRemaining: boolean;2934 readonly isNoProviders: boolean;2935 readonly isTooManyConsumers: boolean;2936 readonly isToken: boolean;2937 readonly asToken: SpRuntimeTokenError;2938 readonly isArithmetic: boolean;2939 readonly asArithmetic: SpArithmeticArithmeticError;2940 readonly isTransactional: boolean;2941 readonly asTransactional: SpRuntimeTransactionalError;2942 readonly isExhausted: boolean;2943 readonly isCorruption: boolean;2944 readonly isUnavailable: boolean;2945 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';2946}29472948/** @name SpRuntimeModuleError */2949export interface SpRuntimeModuleError extends Struct {2950 readonly index: u8;2951 readonly error: U8aFixed;2952}29532954/** @name SpRuntimeMultiSignature */2955export interface SpRuntimeMultiSignature extends Enum {2956 readonly isEd25519: boolean;2957 readonly asEd25519: SpCoreEd25519Signature;2958 readonly isSr25519: boolean;2959 readonly asSr25519: SpCoreSr25519Signature;2960 readonly isEcdsa: boolean;2961 readonly asEcdsa: SpCoreEcdsaSignature;2962 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';2963}29642965/** @name SpRuntimeTokenError */2966export interface SpRuntimeTokenError extends Enum {2967 readonly isFundsUnavailable: boolean;2968 readonly isOnlyProvider: boolean;2969 readonly isBelowMinimum: boolean;2970 readonly isCannotCreate: boolean;2971 readonly isUnknownAsset: boolean;2972 readonly isFrozen: boolean;2973 readonly isUnsupported: boolean;2974 readonly isCannotCreateHold: boolean;2975 readonly isNotExpendable: boolean;2976 readonly type: 'FundsUnavailable' | 'OnlyProvider' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported' | 'CannotCreateHold' | 'NotExpendable';2977}29782979/** @name SpRuntimeTransactionalError */2980export interface SpRuntimeTransactionalError extends Enum {2981 readonly isLimitReached: boolean;2982 readonly isNoLayer: boolean;2983 readonly type: 'LimitReached' | 'NoLayer';2984}29852986/** @name SpRuntimeTransactionValidityInvalidTransaction */2987export interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {2988 readonly isCall: boolean;2989 readonly isPayment: boolean;2990 readonly isFuture: boolean;2991 readonly isStale: boolean;2992 readonly isBadProof: boolean;2993 readonly isAncientBirthBlock: boolean;2994 readonly isExhaustsResources: boolean;2995 readonly isCustom: boolean;2996 readonly asCustom: u8;2997 readonly isBadMandatory: boolean;2998 readonly isMandatoryValidation: boolean;2999 readonly isBadSigner: boolean;3000 readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';3001}30023003/** @name SpRuntimeTransactionValidityTransactionValidityError */3004export interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {3005 readonly isInvalid: boolean;3006 readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;3007 readonly isUnknown: boolean;3008 readonly asUnknown: SpRuntimeTransactionValidityUnknownTransaction;3009 readonly type: 'Invalid' | 'Unknown';3010}30113012/** @name SpRuntimeTransactionValidityUnknownTransaction */3013export interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {3014 readonly isCannotLookup: boolean;3015 readonly isNoUnsignedValidator: boolean;3016 readonly isCustom: boolean;3017 readonly asCustom: u8;3018 readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';3019}30203021/** @name SpTrieStorageProof */3022export interface SpTrieStorageProof extends Struct {3023 readonly trieNodes: BTreeSet<Bytes>;3024}30253026/** @name SpVersionRuntimeVersion */3027export interface SpVersionRuntimeVersion extends Struct {3028 readonly specName: Text;3029 readonly implName: Text;3030 readonly authoringVersion: u32;3031 readonly specVersion: u32;3032 readonly implVersion: u32;3033 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;3034 readonly transactionVersion: u32;3035 readonly stateVersion: u8;3036}30373038/** @name SpWeightsRuntimeDbWeight */3039export interface SpWeightsRuntimeDbWeight extends Struct {3040 readonly read: u64;3041 readonly write: u64;3042}30433044/** @name SpWeightsWeightV2Weight */3045export interface SpWeightsWeightV2Weight extends Struct {3046 readonly refTime: Compact<u64>;3047 readonly proofSize: Compact<u64>;3048}30493050/** @name UpDataStructsAccessMode */3051export interface UpDataStructsAccessMode extends Enum {3052 readonly isNormal: boolean;3053 readonly isAllowList: boolean;3054 readonly type: 'Normal' | 'AllowList';3055}30563057/** @name UpDataStructsCollection */3058export interface UpDataStructsCollection extends Struct {3059 readonly owner: AccountId32;3060 readonly mode: UpDataStructsCollectionMode;3061 readonly name: Vec<u16>;3062 readonly description: Vec<u16>;3063 readonly tokenPrefix: Bytes;3064 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3065 readonly limits: UpDataStructsCollectionLimits;3066 readonly permissions: UpDataStructsCollectionPermissions;3067 readonly flags: U8aFixed;3068}30693070/** @name UpDataStructsCollectionLimits */3071export interface UpDataStructsCollectionLimits extends Struct {3072 readonly accountTokenOwnershipLimit: Option<u32>;3073 readonly sponsoredDataSize: Option<u32>;3074 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;3075 readonly tokenLimit: Option<u32>;3076 readonly sponsorTransferTimeout: Option<u32>;3077 readonly sponsorApproveTimeout: Option<u32>;3078 readonly ownerCanTransfer: Option<bool>;3079 readonly ownerCanDestroy: Option<bool>;3080 readonly transfersEnabled: Option<bool>;3081}30823083/** @name UpDataStructsCollectionMode */3084export interface UpDataStructsCollectionMode extends Enum {3085 readonly isNft: boolean;3086 readonly isFungible: boolean;3087 readonly asFungible: u8;3088 readonly isReFungible: boolean;3089 readonly type: 'Nft' | 'Fungible' | 'ReFungible';3090}30913092/** @name UpDataStructsCollectionPermissions */3093export interface UpDataStructsCollectionPermissions extends Struct {3094 readonly access: Option<UpDataStructsAccessMode>;3095 readonly mintMode: Option<bool>;3096 readonly nesting: Option<UpDataStructsNestingPermissions>;3097}30983099/** @name UpDataStructsCollectionStats */3100export interface UpDataStructsCollectionStats extends Struct {3101 readonly created: u32;3102 readonly destroyed: u32;3103 readonly alive: u32;3104}31053106/** @name UpDataStructsCreateCollectionData */3107export interface UpDataStructsCreateCollectionData extends Struct {3108 readonly mode: UpDataStructsCollectionMode;3109 readonly access: Option<UpDataStructsAccessMode>;3110 readonly name: Vec<u16>;3111 readonly description: Vec<u16>;3112 readonly tokenPrefix: Bytes;3113 readonly pendingSponsor: Option<AccountId32>;3114 readonly limits: Option<UpDataStructsCollectionLimits>;3115 readonly permissions: Option<UpDataStructsCollectionPermissions>;3116 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3117 readonly properties: Vec<UpDataStructsProperty>;3118}31193120/** @name UpDataStructsCreateFungibleData */3121export interface UpDataStructsCreateFungibleData extends Struct {3122 readonly value: u128;3123}31243125/** @name UpDataStructsCreateItemData */3126export interface UpDataStructsCreateItemData extends Enum {3127 readonly isNft: boolean;3128 readonly asNft: UpDataStructsCreateNftData;3129 readonly isFungible: boolean;3130 readonly asFungible: UpDataStructsCreateFungibleData;3131 readonly isReFungible: boolean;3132 readonly asReFungible: UpDataStructsCreateReFungibleData;3133 readonly type: 'Nft' | 'Fungible' | 'ReFungible';3134}31353136/** @name UpDataStructsCreateItemExData */3137export interface UpDataStructsCreateItemExData extends Enum {3138 readonly isNft: boolean;3139 readonly asNft: Vec<UpDataStructsCreateNftExData>;3140 readonly isFungible: boolean;3141 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr,u128>;3142 readonly isRefungibleMultipleItems: boolean;3143 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;3144 readonly isRefungibleMultipleOwners: boolean;3145 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;3146 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';3147}31483149/** @name UpDataStructsCreateNftData */3150export interface UpDataStructsCreateNftData extends Struct {3151 readonly properties: Vec<UpDataStructsProperty>;3152}31533154/** @name UpDataStructsCreateNftExData */3155export interface UpDataStructsCreateNftExData extends Struct {3156 readonly properties: Vec<UpDataStructsProperty>;3157 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3158}31593160/** @name UpDataStructsCreateReFungibleData */3161export interface UpDataStructsCreateReFungibleData extends Struct {3162 readonly pieces: u128;3163 readonly properties: Vec<UpDataStructsProperty>;3164}31653166/** @name UpDataStructsCreateRefungibleExMultipleOwners */3167export interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {3168 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;3169 readonly properties: Vec<UpDataStructsProperty>;3170}31713172/** @name UpDataStructsCreateRefungibleExSingleOwner */3173export interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {3174 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;3175 readonly pieces: u128;3176 readonly properties: Vec<UpDataStructsProperty>;3177}31783179/** @name UpDataStructsNestingPermissions */3180export interface UpDataStructsNestingPermissions extends Struct {3181 readonly tokenOwner: bool;3182 readonly collectionAdmin: bool;3183 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;3184}31853186/** @name UpDataStructsOwnerRestrictedSet */3187export interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}31883189/** @name UpDataStructsProperties */3190export interface UpDataStructsProperties extends Struct {3191 readonly map: UpDataStructsPropertiesMapBoundedVec;3192 readonly consumedSpace: u32;3193 readonly reserved: u32;3194}31953196/** @name UpDataStructsPropertiesMapBoundedVec */3197export interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}31983199/** @name UpDataStructsPropertiesMapPropertyPermission */3200export interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}32013202/** @name UpDataStructsProperty */3203export interface UpDataStructsProperty extends Struct {3204 readonly key: Bytes;3205 readonly value: Bytes;3206}32073208/** @name UpDataStructsPropertyKeyPermission */3209export interface UpDataStructsPropertyKeyPermission extends Struct {3210 readonly key: Bytes;3211 readonly permission: UpDataStructsPropertyPermission;3212}32133214/** @name UpDataStructsPropertyPermission */3215export interface UpDataStructsPropertyPermission extends Struct {3216 readonly mutable: bool;3217 readonly collectionAdmin: bool;3218 readonly tokenOwner: bool;3219}32203221/** @name UpDataStructsPropertyScope */3222export interface UpDataStructsPropertyScope extends Enum {3223 readonly isNone: boolean;3224 readonly isRmrk: boolean;3225 readonly type: 'None' | 'Rmrk';3226}32273228/** @name UpDataStructsRpcCollection */3229export interface UpDataStructsRpcCollection extends Struct {3230 readonly owner: AccountId32;3231 readonly mode: UpDataStructsCollectionMode;3232 readonly name: Vec<u16>;3233 readonly description: Vec<u16>;3234 readonly tokenPrefix: Bytes;3235 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3236 readonly limits: UpDataStructsCollectionLimits;3237 readonly permissions: UpDataStructsCollectionPermissions;3238 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3239 readonly properties: Vec<UpDataStructsProperty>;3240 readonly readOnly: bool;3241 readonly flags: UpDataStructsRpcCollectionFlags;3242}32433244/** @name UpDataStructsRpcCollectionFlags */3245export interface UpDataStructsRpcCollectionFlags extends Struct {3246 readonly foreign: bool;3247 readonly erc721metadata: bool;3248}32493250/** @name UpDataStructsSponsoringRateLimit */3251export interface UpDataStructsSponsoringRateLimit extends Enum {3252 readonly isSponsoringDisabled: boolean;3253 readonly isBlocks: boolean;3254 readonly asBlocks: u32;3255 readonly type: 'SponsoringDisabled' | 'Blocks';3256}32573258/** @name UpDataStructsSponsorshipStateAccountId32 */3259export interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3260 readonly isDisabled: boolean;3261 readonly isUnconfirmed: boolean;3262 readonly asUnconfirmed: AccountId32;3263 readonly isConfirmed: boolean;3264 readonly asConfirmed: AccountId32;3265 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3266}32673268/** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr */3269export interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3270 readonly isDisabled: boolean;3271 readonly isUnconfirmed: boolean;3272 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3273 readonly isConfirmed: boolean;3274 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3275 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3276}32773278/** @name UpDataStructsTokenChild */3279export interface UpDataStructsTokenChild extends Struct {3280 readonly token: u32;3281 readonly collection: u32;3282}32833284/** @name UpDataStructsTokenData */3285export interface UpDataStructsTokenData extends Struct {3286 readonly properties: Vec<UpDataStructsProperty>;3287 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3288 readonly pieces: u128;3289}32903291/** @name UpPovEstimateRpcPovInfo */3292export interface UpPovEstimateRpcPovInfo extends Struct {3293 readonly proofSize: u64;3294 readonly compactProofSize: u64;3295 readonly compressedProofSize: u64;3296 readonly results: Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>;3297 readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;3298}32993300/** @name UpPovEstimateRpcTrieKeyValue */3301export interface UpPovEstimateRpcTrieKeyValue extends Struct {3302 readonly key: Bytes;3303 readonly value: Bytes;3304}33053306/** @name XcmDoubleEncoded */3307export interface XcmDoubleEncoded extends Struct {3308 readonly encoded: Bytes;3309}33103311/** @name XcmV2BodyId */3312export interface XcmV2BodyId extends Enum {3313 readonly isUnit: boolean;3314 readonly isNamed: boolean;3315 readonly asNamed: Bytes;3316 readonly isIndex: boolean;3317 readonly asIndex: Compact<u32>;3318 readonly isExecutive: boolean;3319 readonly isTechnical: boolean;3320 readonly isLegislative: boolean;3321 readonly isJudicial: boolean;3322 readonly isDefense: boolean;3323 readonly isAdministration: boolean;3324 readonly isTreasury: boolean;3325 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';3326}33273328/** @name XcmV2BodyPart */3329export interface XcmV2BodyPart extends Enum {3330 readonly isVoice: boolean;3331 readonly isMembers: boolean;3332 readonly asMembers: {3333 readonly count: Compact<u32>;3334 } & Struct;3335 readonly isFraction: boolean;3336 readonly asFraction: {3337 readonly nom: Compact<u32>;3338 readonly denom: Compact<u32>;3339 } & Struct;3340 readonly isAtLeastProportion: boolean;3341 readonly asAtLeastProportion: {3342 readonly nom: Compact<u32>;3343 readonly denom: Compact<u32>;3344 } & Struct;3345 readonly isMoreThanProportion: boolean;3346 readonly asMoreThanProportion: {3347 readonly nom: Compact<u32>;3348 readonly denom: Compact<u32>;3349 } & Struct;3350 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';3351}33523353/** @name XcmV2Instruction */3354export interface XcmV2Instruction extends Enum {3355 readonly isWithdrawAsset: boolean;3356 readonly asWithdrawAsset: XcmV2MultiassetMultiAssets;3357 readonly isReserveAssetDeposited: boolean;3358 readonly asReserveAssetDeposited: XcmV2MultiassetMultiAssets;3359 readonly isReceiveTeleportedAsset: boolean;3360 readonly asReceiveTeleportedAsset: XcmV2MultiassetMultiAssets;3361 readonly isQueryResponse: boolean;3362 readonly asQueryResponse: {3363 readonly queryId: Compact<u64>;3364 readonly response: XcmV2Response;3365 readonly maxWeight: Compact<u64>;3366 } & Struct;3367 readonly isTransferAsset: boolean;3368 readonly asTransferAsset: {3369 readonly assets: XcmV2MultiassetMultiAssets;3370 readonly beneficiary: XcmV2MultiLocation;3371 } & Struct;3372 readonly isTransferReserveAsset: boolean;3373 readonly asTransferReserveAsset: {3374 readonly assets: XcmV2MultiassetMultiAssets;3375 readonly dest: XcmV2MultiLocation;3376 readonly xcm: XcmV2Xcm;3377 } & Struct;3378 readonly isTransact: boolean;3379 readonly asTransact: {3380 readonly originType: XcmV2OriginKind;3381 readonly requireWeightAtMost: Compact<u64>;3382 readonly call: XcmDoubleEncoded;3383 } & Struct;3384 readonly isHrmpNewChannelOpenRequest: boolean;3385 readonly asHrmpNewChannelOpenRequest: {3386 readonly sender: Compact<u32>;3387 readonly maxMessageSize: Compact<u32>;3388 readonly maxCapacity: Compact<u32>;3389 } & Struct;3390 readonly isHrmpChannelAccepted: boolean;3391 readonly asHrmpChannelAccepted: {3392 readonly recipient: Compact<u32>;3393 } & Struct;3394 readonly isHrmpChannelClosing: boolean;3395 readonly asHrmpChannelClosing: {3396 readonly initiator: Compact<u32>;3397 readonly sender: Compact<u32>;3398 readonly recipient: Compact<u32>;3399 } & Struct;3400 readonly isClearOrigin: boolean;3401 readonly isDescendOrigin: boolean;3402 readonly asDescendOrigin: XcmV2MultilocationJunctions;3403 readonly isReportError: boolean;3404 readonly asReportError: {3405 readonly queryId: Compact<u64>;3406 readonly dest: XcmV2MultiLocation;3407 readonly maxResponseWeight: Compact<u64>;3408 } & Struct;3409 readonly isDepositAsset: boolean;3410 readonly asDepositAsset: {3411 readonly assets: XcmV2MultiassetMultiAssetFilter;3412 readonly maxAssets: Compact<u32>;3413 readonly beneficiary: XcmV2MultiLocation;3414 } & Struct;3415 readonly isDepositReserveAsset: boolean;3416 readonly asDepositReserveAsset: {3417 readonly assets: XcmV2MultiassetMultiAssetFilter;3418 readonly maxAssets: Compact<u32>;3419 readonly dest: XcmV2MultiLocation;3420 readonly xcm: XcmV2Xcm;3421 } & Struct;3422 readonly isExchangeAsset: boolean;3423 readonly asExchangeAsset: {3424 readonly give: XcmV2MultiassetMultiAssetFilter;3425 readonly receive: XcmV2MultiassetMultiAssets;3426 } & Struct;3427 readonly isInitiateReserveWithdraw: boolean;3428 readonly asInitiateReserveWithdraw: {3429 readonly assets: XcmV2MultiassetMultiAssetFilter;3430 readonly reserve: XcmV2MultiLocation;3431 readonly xcm: XcmV2Xcm;3432 } & Struct;3433 readonly isInitiateTeleport: boolean;3434 readonly asInitiateTeleport: {3435 readonly assets: XcmV2MultiassetMultiAssetFilter;3436 readonly dest: XcmV2MultiLocation;3437 readonly xcm: XcmV2Xcm;3438 } & Struct;3439 readonly isQueryHolding: boolean;3440 readonly asQueryHolding: {3441 readonly queryId: Compact<u64>;3442 readonly dest: XcmV2MultiLocation;3443 readonly assets: XcmV2MultiassetMultiAssetFilter;3444 readonly maxResponseWeight: Compact<u64>;3445 } & Struct;3446 readonly isBuyExecution: boolean;3447 readonly asBuyExecution: {3448 readonly fees: XcmV2MultiAsset;3449 readonly weightLimit: XcmV2WeightLimit;3450 } & Struct;3451 readonly isRefundSurplus: boolean;3452 readonly isSetErrorHandler: boolean;3453 readonly asSetErrorHandler: XcmV2Xcm;3454 readonly isSetAppendix: boolean;3455 readonly asSetAppendix: XcmV2Xcm;3456 readonly isClearError: boolean;3457 readonly isClaimAsset: boolean;3458 readonly asClaimAsset: {3459 readonly assets: XcmV2MultiassetMultiAssets;3460 readonly ticket: XcmV2MultiLocation;3461 } & Struct;3462 readonly isTrap: boolean;3463 readonly asTrap: Compact<u64>;3464 readonly isSubscribeVersion: boolean;3465 readonly asSubscribeVersion: {3466 readonly queryId: Compact<u64>;3467 readonly maxResponseWeight: Compact<u64>;3468 } & Struct;3469 readonly isUnsubscribeVersion: boolean;3470 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';3471}34723473/** @name XcmV2Junction */3474export interface XcmV2Junction extends Enum {3475 readonly isParachain: boolean;3476 readonly asParachain: Compact<u32>;3477 readonly isAccountId32: boolean;3478 readonly asAccountId32: {3479 readonly network: XcmV2NetworkId;3480 readonly id: U8aFixed;3481 } & Struct;3482 readonly isAccountIndex64: boolean;3483 readonly asAccountIndex64: {3484 readonly network: XcmV2NetworkId;3485 readonly index: Compact<u64>;3486 } & Struct;3487 readonly isAccountKey20: boolean;3488 readonly asAccountKey20: {3489 readonly network: XcmV2NetworkId;3490 readonly key: U8aFixed;3491 } & Struct;3492 readonly isPalletInstance: boolean;3493 readonly asPalletInstance: u8;3494 readonly isGeneralIndex: boolean;3495 readonly asGeneralIndex: Compact<u128>;3496 readonly isGeneralKey: boolean;3497 readonly asGeneralKey: Bytes;3498 readonly isOnlyChild: boolean;3499 readonly isPlurality: boolean;3500 readonly asPlurality: {3501 readonly id: XcmV2BodyId;3502 readonly part: XcmV2BodyPart;3503 } & Struct;3504 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';3505}35063507/** @name XcmV2MultiAsset */3508export interface XcmV2MultiAsset extends Struct {3509 readonly id: XcmV2MultiassetAssetId;3510 readonly fun: XcmV2MultiassetFungibility;3511}35123513/** @name XcmV2MultiassetAssetId */3514export interface XcmV2MultiassetAssetId extends Enum {3515 readonly isConcrete: boolean;3516 readonly asConcrete: XcmV2MultiLocation;3517 readonly isAbstract: boolean;3518 readonly asAbstract: Bytes;3519 readonly type: 'Concrete' | 'Abstract';3520}35213522/** @name XcmV2MultiassetAssetInstance */3523export interface XcmV2MultiassetAssetInstance extends Enum {3524 readonly isUndefined: boolean;3525 readonly isIndex: boolean;3526 readonly asIndex: Compact<u128>;3527 readonly isArray4: boolean;3528 readonly asArray4: U8aFixed;3529 readonly isArray8: boolean;3530 readonly asArray8: U8aFixed;3531 readonly isArray16: boolean;3532 readonly asArray16: U8aFixed;3533 readonly isArray32: boolean;3534 readonly asArray32: U8aFixed;3535 readonly isBlob: boolean;3536 readonly asBlob: Bytes;3537 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';3538}35393540/** @name XcmV2MultiassetFungibility */3541export interface XcmV2MultiassetFungibility extends Enum {3542 readonly isFungible: boolean;3543 readonly asFungible: Compact<u128>;3544 readonly isNonFungible: boolean;3545 readonly asNonFungible: XcmV2MultiassetAssetInstance;3546 readonly type: 'Fungible' | 'NonFungible';3547}35483549/** @name XcmV2MultiassetMultiAssetFilter */3550export interface XcmV2MultiassetMultiAssetFilter extends Enum {3551 readonly isDefinite: boolean;3552 readonly asDefinite: XcmV2MultiassetMultiAssets;3553 readonly isWild: boolean;3554 readonly asWild: XcmV2MultiassetWildMultiAsset;3555 readonly type: 'Definite' | 'Wild';3556}35573558/** @name XcmV2MultiassetMultiAssets */3559export interface XcmV2MultiassetMultiAssets extends Vec<XcmV2MultiAsset> {}35603561/** @name XcmV2MultiassetWildFungibility */3562export interface XcmV2MultiassetWildFungibility extends Enum {3563 readonly isFungible: boolean;3564 readonly isNonFungible: boolean;3565 readonly type: 'Fungible' | 'NonFungible';3566}35673568/** @name XcmV2MultiassetWildMultiAsset */3569export interface XcmV2MultiassetWildMultiAsset extends Enum {3570 readonly isAll: boolean;3571 readonly isAllOf: boolean;3572 readonly asAllOf: {3573 readonly id: XcmV2MultiassetAssetId;3574 readonly fun: XcmV2MultiassetWildFungibility;3575 } & Struct;3576 readonly type: 'All' | 'AllOf';3577}35783579/** @name XcmV2MultiLocation */3580export interface XcmV2MultiLocation extends Struct {3581 readonly parents: u8;3582 readonly interior: XcmV2MultilocationJunctions;3583}35843585/** @name XcmV2MultilocationJunctions */3586export interface XcmV2MultilocationJunctions extends Enum {3587 readonly isHere: boolean;3588 readonly isX1: boolean;3589 readonly asX1: XcmV2Junction;3590 readonly isX2: boolean;3591 readonly asX2: ITuple<[XcmV2Junction, XcmV2Junction]>;3592 readonly isX3: boolean;3593 readonly asX3: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction]>;3594 readonly isX4: boolean;3595 readonly asX4: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;3596 readonly isX5: boolean;3597 readonly asX5: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;3598 readonly isX6: boolean;3599 readonly asX6: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;3600 readonly isX7: boolean;3601 readonly asX7: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;3602 readonly isX8: boolean;3603 readonly asX8: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;3604 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3605}36063607/** @name XcmV2NetworkId */3608export interface XcmV2NetworkId extends Enum {3609 readonly isAny: boolean;3610 readonly isNamed: boolean;3611 readonly asNamed: Bytes;3612 readonly isPolkadot: boolean;3613 readonly isKusama: boolean;3614 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';3615}36163617/** @name XcmV2OriginKind */3618export interface XcmV2OriginKind extends Enum {3619 readonly isNative: boolean;3620 readonly isSovereignAccount: boolean;3621 readonly isSuperuser: boolean;3622 readonly isXcm: boolean;3623 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';3624}36253626/** @name XcmV2Response */3627export interface XcmV2Response extends Enum {3628 readonly isNull: boolean;3629 readonly isAssets: boolean;3630 readonly asAssets: XcmV2MultiassetMultiAssets;3631 readonly isExecutionResult: boolean;3632 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;3633 readonly isVersion: boolean;3634 readonly asVersion: u32;3635 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';3636}36373638/** @name XcmV2TraitsError */3639export interface XcmV2TraitsError extends Enum {3640 readonly isOverflow: boolean;3641 readonly isUnimplemented: boolean;3642 readonly isUntrustedReserveLocation: boolean;3643 readonly isUntrustedTeleportLocation: boolean;3644 readonly isMultiLocationFull: boolean;3645 readonly isMultiLocationNotInvertible: boolean;3646 readonly isBadOrigin: boolean;3647 readonly isInvalidLocation: boolean;3648 readonly isAssetNotFound: boolean;3649 readonly isFailedToTransactAsset: boolean;3650 readonly isNotWithdrawable: boolean;3651 readonly isLocationCannotHold: boolean;3652 readonly isExceedsMaxMessageSize: boolean;3653 readonly isDestinationUnsupported: boolean;3654 readonly isTransport: boolean;3655 readonly isUnroutable: boolean;3656 readonly isUnknownClaim: boolean;3657 readonly isFailedToDecode: boolean;3658 readonly isMaxWeightInvalid: boolean;3659 readonly isNotHoldingFees: boolean;3660 readonly isTooExpensive: boolean;3661 readonly isTrap: boolean;3662 readonly asTrap: u64;3663 readonly isUnhandledXcmVersion: boolean;3664 readonly isWeightLimitReached: boolean;3665 readonly asWeightLimitReached: u64;3666 readonly isBarrier: boolean;3667 readonly isWeightNotComputable: boolean;3668 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';3669}36703671/** @name XcmV2WeightLimit */3672export interface XcmV2WeightLimit extends Enum {3673 readonly isUnlimited: boolean;3674 readonly isLimited: boolean;3675 readonly asLimited: Compact<u64>;3676 readonly type: 'Unlimited' | 'Limited';3677}36783679/** @name XcmV2Xcm */3680export interface XcmV2Xcm extends Vec<XcmV2Instruction> {}36813682/** @name XcmV3Instruction */3683export interface XcmV3Instruction extends Enum {3684 readonly isWithdrawAsset: boolean;3685 readonly asWithdrawAsset: XcmV3MultiassetMultiAssets;3686 readonly isReserveAssetDeposited: boolean;3687 readonly asReserveAssetDeposited: XcmV3MultiassetMultiAssets;3688 readonly isReceiveTeleportedAsset: boolean;3689 readonly asReceiveTeleportedAsset: XcmV3MultiassetMultiAssets;3690 readonly isQueryResponse: boolean;3691 readonly asQueryResponse: {3692 readonly queryId: Compact<u64>;3693 readonly response: XcmV3Response;3694 readonly maxWeight: SpWeightsWeightV2Weight;3695 readonly querier: Option<XcmV3MultiLocation>;3696 } & Struct;3697 readonly isTransferAsset: boolean;3698 readonly asTransferAsset: {3699 readonly assets: XcmV3MultiassetMultiAssets;3700 readonly beneficiary: XcmV3MultiLocation;3701 } & Struct;3702 readonly isTransferReserveAsset: boolean;3703 readonly asTransferReserveAsset: {3704 readonly assets: XcmV3MultiassetMultiAssets;3705 readonly dest: XcmV3MultiLocation;3706 readonly xcm: XcmV3Xcm;3707 } & Struct;3708 readonly isTransact: boolean;3709 readonly asTransact: {3710 readonly originKind: XcmV2OriginKind;3711 readonly requireWeightAtMost: SpWeightsWeightV2Weight;3712 readonly call: XcmDoubleEncoded;3713 } & Struct;3714 readonly isHrmpNewChannelOpenRequest: boolean;3715 readonly asHrmpNewChannelOpenRequest: {3716 readonly sender: Compact<u32>;3717 readonly maxMessageSize: Compact<u32>;3718 readonly maxCapacity: Compact<u32>;3719 } & Struct;3720 readonly isHrmpChannelAccepted: boolean;3721 readonly asHrmpChannelAccepted: {3722 readonly recipient: Compact<u32>;3723 } & Struct;3724 readonly isHrmpChannelClosing: boolean;3725 readonly asHrmpChannelClosing: {3726 readonly initiator: Compact<u32>;3727 readonly sender: Compact<u32>;3728 readonly recipient: Compact<u32>;3729 } & Struct;3730 readonly isClearOrigin: boolean;3731 readonly isDescendOrigin: boolean;3732 readonly asDescendOrigin: XcmV3Junctions;3733 readonly isReportError: boolean;3734 readonly asReportError: XcmV3QueryResponseInfo;3735 readonly isDepositAsset: boolean;3736 readonly asDepositAsset: {3737 readonly assets: XcmV3MultiassetMultiAssetFilter;3738 readonly beneficiary: XcmV3MultiLocation;3739 } & Struct;3740 readonly isDepositReserveAsset: boolean;3741 readonly asDepositReserveAsset: {3742 readonly assets: XcmV3MultiassetMultiAssetFilter;3743 readonly dest: XcmV3MultiLocation;3744 readonly xcm: XcmV3Xcm;3745 } & Struct;3746 readonly isExchangeAsset: boolean;3747 readonly asExchangeAsset: {3748 readonly give: XcmV3MultiassetMultiAssetFilter;3749 readonly want: XcmV3MultiassetMultiAssets;3750 readonly maximal: bool;3751 } & Struct;3752 readonly isInitiateReserveWithdraw: boolean;3753 readonly asInitiateReserveWithdraw: {3754 readonly assets: XcmV3MultiassetMultiAssetFilter;3755 readonly reserve: XcmV3MultiLocation;3756 readonly xcm: XcmV3Xcm;3757 } & Struct;3758 readonly isInitiateTeleport: boolean;3759 readonly asInitiateTeleport: {3760 readonly assets: XcmV3MultiassetMultiAssetFilter;3761 readonly dest: XcmV3MultiLocation;3762 readonly xcm: XcmV3Xcm;3763 } & Struct;3764 readonly isReportHolding: boolean;3765 readonly asReportHolding: {3766 readonly responseInfo: XcmV3QueryResponseInfo;3767 readonly assets: XcmV3MultiassetMultiAssetFilter;3768 } & Struct;3769 readonly isBuyExecution: boolean;3770 readonly asBuyExecution: {3771 readonly fees: XcmV3MultiAsset;3772 readonly weightLimit: XcmV3WeightLimit;3773 } & Struct;3774 readonly isRefundSurplus: boolean;3775 readonly isSetErrorHandler: boolean;3776 readonly asSetErrorHandler: XcmV3Xcm;3777 readonly isSetAppendix: boolean;3778 readonly asSetAppendix: XcmV3Xcm;3779 readonly isClearError: boolean;3780 readonly isClaimAsset: boolean;3781 readonly asClaimAsset: {3782 readonly assets: XcmV3MultiassetMultiAssets;3783 readonly ticket: XcmV3MultiLocation;3784 } & Struct;3785 readonly isTrap: boolean;3786 readonly asTrap: Compact<u64>;3787 readonly isSubscribeVersion: boolean;3788 readonly asSubscribeVersion: {3789 readonly queryId: Compact<u64>;3790 readonly maxResponseWeight: SpWeightsWeightV2Weight;3791 } & Struct;3792 readonly isUnsubscribeVersion: boolean;3793 readonly isBurnAsset: boolean;3794 readonly asBurnAsset: XcmV3MultiassetMultiAssets;3795 readonly isExpectAsset: boolean;3796 readonly asExpectAsset: XcmV3MultiassetMultiAssets;3797 readonly isExpectOrigin: boolean;3798 readonly asExpectOrigin: Option<XcmV3MultiLocation>;3799 readonly isExpectError: boolean;3800 readonly asExpectError: Option<ITuple<[u32, XcmV3TraitsError]>>;3801 readonly isExpectTransactStatus: boolean;3802 readonly asExpectTransactStatus: XcmV3MaybeErrorCode;3803 readonly isQueryPallet: boolean;3804 readonly asQueryPallet: {3805 readonly moduleName: Bytes;3806 readonly responseInfo: XcmV3QueryResponseInfo;3807 } & Struct;3808 readonly isExpectPallet: boolean;3809 readonly asExpectPallet: {3810 readonly index: Compact<u32>;3811 readonly name: Bytes;3812 readonly moduleName: Bytes;3813 readonly crateMajor: Compact<u32>;3814 readonly minCrateMinor: Compact<u32>;3815 } & Struct;3816 readonly isReportTransactStatus: boolean;3817 readonly asReportTransactStatus: XcmV3QueryResponseInfo;3818 readonly isClearTransactStatus: boolean;3819 readonly isUniversalOrigin: boolean;3820 readonly asUniversalOrigin: XcmV3Junction;3821 readonly isExportMessage: boolean;3822 readonly asExportMessage: {3823 readonly network: XcmV3JunctionNetworkId;3824 readonly destination: XcmV3Junctions;3825 readonly xcm: XcmV3Xcm;3826 } & Struct;3827 readonly isLockAsset: boolean;3828 readonly asLockAsset: {3829 readonly asset: XcmV3MultiAsset;3830 readonly unlocker: XcmV3MultiLocation;3831 } & Struct;3832 readonly isUnlockAsset: boolean;3833 readonly asUnlockAsset: {3834 readonly asset: XcmV3MultiAsset;3835 readonly target: XcmV3MultiLocation;3836 } & Struct;3837 readonly isNoteUnlockable: boolean;3838 readonly asNoteUnlockable: {3839 readonly asset: XcmV3MultiAsset;3840 readonly owner: XcmV3MultiLocation;3841 } & Struct;3842 readonly isRequestUnlock: boolean;3843 readonly asRequestUnlock: {3844 readonly asset: XcmV3MultiAsset;3845 readonly locker: XcmV3MultiLocation;3846 } & Struct;3847 readonly isSetFeesMode: boolean;3848 readonly asSetFeesMode: {3849 readonly jitWithdraw: bool;3850 } & Struct;3851 readonly isSetTopic: boolean;3852 readonly asSetTopic: U8aFixed;3853 readonly isClearTopic: boolean;3854 readonly isAliasOrigin: boolean;3855 readonly asAliasOrigin: XcmV3MultiLocation;3856 readonly isUnpaidExecution: boolean;3857 readonly asUnpaidExecution: {3858 readonly weightLimit: XcmV3WeightLimit;3859 readonly checkOrigin: Option<XcmV3MultiLocation>;3860 } & Struct;3861 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'ReportHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion' | 'BurnAsset' | 'ExpectAsset' | 'ExpectOrigin' | 'ExpectError' | 'ExpectTransactStatus' | 'QueryPallet' | 'ExpectPallet' | 'ReportTransactStatus' | 'ClearTransactStatus' | 'UniversalOrigin' | 'ExportMessage' | 'LockAsset' | 'UnlockAsset' | 'NoteUnlockable' | 'RequestUnlock' | 'SetFeesMode' | 'SetTopic' | 'ClearTopic' | 'AliasOrigin' | 'UnpaidExecution';3862}38633864/** @name XcmV3Junction */3865export interface XcmV3Junction extends Enum {3866 readonly isParachain: boolean;3867 readonly asParachain: Compact<u32>;3868 readonly isAccountId32: boolean;3869 readonly asAccountId32: {3870 readonly network: Option<XcmV3JunctionNetworkId>;3871 readonly id: U8aFixed;3872 } & Struct;3873 readonly isAccountIndex64: boolean;3874 readonly asAccountIndex64: {3875 readonly network: Option<XcmV3JunctionNetworkId>;3876 readonly index: Compact<u64>;3877 } & Struct;3878 readonly isAccountKey20: boolean;3879 readonly asAccountKey20: {3880 readonly network: Option<XcmV3JunctionNetworkId>;3881 readonly key: U8aFixed;3882 } & Struct;3883 readonly isPalletInstance: boolean;3884 readonly asPalletInstance: u8;3885 readonly isGeneralIndex: boolean;3886 readonly asGeneralIndex: Compact<u128>;3887 readonly isGeneralKey: boolean;3888 readonly asGeneralKey: {3889 readonly length: u8;3890 readonly data: U8aFixed;3891 } & Struct;3892 readonly isOnlyChild: boolean;3893 readonly isPlurality: boolean;3894 readonly asPlurality: {3895 readonly id: XcmV3JunctionBodyId;3896 readonly part: XcmV3JunctionBodyPart;3897 } & Struct;3898 readonly isGlobalConsensus: boolean;3899 readonly asGlobalConsensus: XcmV3JunctionNetworkId;3900 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus';3901}39023903/** @name XcmV3JunctionBodyId */3904export interface XcmV3JunctionBodyId extends Enum {3905 readonly isUnit: boolean;3906 readonly isMoniker: boolean;3907 readonly asMoniker: U8aFixed;3908 readonly isIndex: boolean;3909 readonly asIndex: Compact<u32>;3910 readonly isExecutive: boolean;3911 readonly isTechnical: boolean;3912 readonly isLegislative: boolean;3913 readonly isJudicial: boolean;3914 readonly isDefense: boolean;3915 readonly isAdministration: boolean;3916 readonly isTreasury: boolean;3917 readonly type: 'Unit' | 'Moniker' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';3918}39193920/** @name XcmV3JunctionBodyPart */3921export interface XcmV3JunctionBodyPart extends Enum {3922 readonly isVoice: boolean;3923 readonly isMembers: boolean;3924 readonly asMembers: {3925 readonly count: Compact<u32>;3926 } & Struct;3927 readonly isFraction: boolean;3928 readonly asFraction: {3929 readonly nom: Compact<u32>;3930 readonly denom: Compact<u32>;3931 } & Struct;3932 readonly isAtLeastProportion: boolean;3933 readonly asAtLeastProportion: {3934 readonly nom: Compact<u32>;3935 readonly denom: Compact<u32>;3936 } & Struct;3937 readonly isMoreThanProportion: boolean;3938 readonly asMoreThanProportion: {3939 readonly nom: Compact<u32>;3940 readonly denom: Compact<u32>;3941 } & Struct;3942 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';3943}39443945/** @name XcmV3JunctionNetworkId */3946export interface XcmV3JunctionNetworkId extends Enum {3947 readonly isByGenesis: boolean;3948 readonly asByGenesis: U8aFixed;3949 readonly isByFork: boolean;3950 readonly asByFork: {3951 readonly blockNumber: u64;3952 readonly blockHash: U8aFixed;3953 } & Struct;3954 readonly isPolkadot: boolean;3955 readonly isKusama: boolean;3956 readonly isWestend: boolean;3957 readonly isRococo: boolean;3958 readonly isWococo: boolean;3959 readonly isEthereum: boolean;3960 readonly asEthereum: {3961 readonly chainId: Compact<u64>;3962 } & Struct;3963 readonly isBitcoinCore: boolean;3964 readonly isBitcoinCash: boolean;3965 readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash';3966}39673968/** @name XcmV3Junctions */3969export interface XcmV3Junctions extends Enum {3970 readonly isHere: boolean;3971 readonly isX1: boolean;3972 readonly asX1: XcmV3Junction;3973 readonly isX2: boolean;3974 readonly asX2: ITuple<[XcmV3Junction, XcmV3Junction]>;3975 readonly isX3: boolean;3976 readonly asX3: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction]>;3977 readonly isX4: boolean;3978 readonly asX4: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;3979 readonly isX5: boolean;3980 readonly asX5: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;3981 readonly isX6: boolean;3982 readonly asX6: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;3983 readonly isX7: boolean;3984 readonly asX7: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;3985 readonly isX8: boolean;3986 readonly asX8: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;3987 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';3988}39893990/** @name XcmV3MaybeErrorCode */3991export interface XcmV3MaybeErrorCode extends Enum {3992 readonly isSuccess: boolean;3993 readonly isError: boolean;3994 readonly asError: Bytes;3995 readonly isTruncatedError: boolean;3996 readonly asTruncatedError: Bytes;3997 readonly type: 'Success' | 'Error' | 'TruncatedError';3998}39994000/** @name XcmV3MultiAsset */4001export interface XcmV3MultiAsset extends Struct {4002 readonly id: XcmV3MultiassetAssetId;4003 readonly fun: XcmV3MultiassetFungibility;4004}40054006/** @name XcmV3MultiassetAssetId */4007export interface XcmV3MultiassetAssetId extends Enum {4008 readonly isConcrete: boolean;4009 readonly asConcrete: XcmV3MultiLocation;4010 readonly isAbstract: boolean;4011 readonly asAbstract: U8aFixed;4012 readonly type: 'Concrete' | 'Abstract';4013}40144015/** @name XcmV3MultiassetAssetInstance */4016export interface XcmV3MultiassetAssetInstance extends Enum {4017 readonly isUndefined: boolean;4018 readonly isIndex: boolean;4019 readonly asIndex: Compact<u128>;4020 readonly isArray4: boolean;4021 readonly asArray4: U8aFixed;4022 readonly isArray8: boolean;4023 readonly asArray8: U8aFixed;4024 readonly isArray16: boolean;4025 readonly asArray16: U8aFixed;4026 readonly isArray32: boolean;4027 readonly asArray32: U8aFixed;4028 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32';4029}40304031/** @name XcmV3MultiassetFungibility */4032export interface XcmV3MultiassetFungibility extends Enum {4033 readonly isFungible: boolean;4034 readonly asFungible: Compact<u128>;4035 readonly isNonFungible: boolean;4036 readonly asNonFungible: XcmV3MultiassetAssetInstance;4037 readonly type: 'Fungible' | 'NonFungible';4038}40394040/** @name XcmV3MultiassetMultiAssetFilter */4041export interface XcmV3MultiassetMultiAssetFilter extends Enum {4042 readonly isDefinite: boolean;4043 readonly asDefinite: XcmV3MultiassetMultiAssets;4044 readonly isWild: boolean;4045 readonly asWild: XcmV3MultiassetWildMultiAsset;4046 readonly type: 'Definite' | 'Wild';4047}40484049/** @name XcmV3MultiassetMultiAssets */4050export interface XcmV3MultiassetMultiAssets extends Vec<XcmV3MultiAsset> {}40514052/** @name XcmV3MultiassetWildFungibility */4053export interface XcmV3MultiassetWildFungibility extends Enum {4054 readonly isFungible: boolean;4055 readonly isNonFungible: boolean;4056 readonly type: 'Fungible' | 'NonFungible';4057}40584059/** @name XcmV3MultiassetWildMultiAsset */4060export interface XcmV3MultiassetWildMultiAsset extends Enum {4061 readonly isAll: boolean;4062 readonly isAllOf: boolean;4063 readonly asAllOf: {4064 readonly id: XcmV3MultiassetAssetId;4065 readonly fun: XcmV3MultiassetWildFungibility;4066 } & Struct;4067 readonly isAllCounted: boolean;4068 readonly asAllCounted: Compact<u32>;4069 readonly isAllOfCounted: boolean;4070 readonly asAllOfCounted: {4071 readonly id: XcmV3MultiassetAssetId;4072 readonly fun: XcmV3MultiassetWildFungibility;4073 readonly count: Compact<u32>;4074 } & Struct;4075 readonly type: 'All' | 'AllOf' | 'AllCounted' | 'AllOfCounted';4076}40774078/** @name XcmV3MultiLocation */4079export interface XcmV3MultiLocation extends Struct {4080 readonly parents: u8;4081 readonly interior: XcmV3Junctions;4082}40834084/** @name XcmV3PalletInfo */4085export interface XcmV3PalletInfo extends Struct {4086 readonly index: Compact<u32>;4087 readonly name: Bytes;4088 readonly moduleName: Bytes;4089 readonly major: Compact<u32>;4090 readonly minor: Compact<u32>;4091 readonly patch: Compact<u32>;4092}40934094/** @name XcmV3QueryResponseInfo */4095export interface XcmV3QueryResponseInfo extends Struct {4096 readonly destination: XcmV3MultiLocation;4097 readonly queryId: Compact<u64>;4098 readonly maxWeight: SpWeightsWeightV2Weight;4099}41004101/** @name XcmV3Response */4102export interface XcmV3Response extends Enum {4103 readonly isNull: boolean;4104 readonly isAssets: boolean;4105 readonly asAssets: XcmV3MultiassetMultiAssets;4106 readonly isExecutionResult: boolean;4107 readonly asExecutionResult: Option<ITuple<[u32, XcmV3TraitsError]>>;4108 readonly isVersion: boolean;4109 readonly asVersion: u32;4110 readonly isPalletsInfo: boolean;4111 readonly asPalletsInfo: Vec<XcmV3PalletInfo>;4112 readonly isDispatchResult: boolean;4113 readonly asDispatchResult: XcmV3MaybeErrorCode;4114 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version' | 'PalletsInfo' | 'DispatchResult';4115}41164117/** @name XcmV3TraitsError */4118export interface XcmV3TraitsError extends Enum {4119 readonly isOverflow: boolean;4120 readonly isUnimplemented: boolean;4121 readonly isUntrustedReserveLocation: boolean;4122 readonly isUntrustedTeleportLocation: boolean;4123 readonly isLocationFull: boolean;4124 readonly isLocationNotInvertible: boolean;4125 readonly isBadOrigin: boolean;4126 readonly isInvalidLocation: boolean;4127 readonly isAssetNotFound: boolean;4128 readonly isFailedToTransactAsset: boolean;4129 readonly isNotWithdrawable: boolean;4130 readonly isLocationCannotHold: boolean;4131 readonly isExceedsMaxMessageSize: boolean;4132 readonly isDestinationUnsupported: boolean;4133 readonly isTransport: boolean;4134 readonly isUnroutable: boolean;4135 readonly isUnknownClaim: boolean;4136 readonly isFailedToDecode: boolean;4137 readonly isMaxWeightInvalid: boolean;4138 readonly isNotHoldingFees: boolean;4139 readonly isTooExpensive: boolean;4140 readonly isTrap: boolean;4141 readonly asTrap: u64;4142 readonly isExpectationFalse: boolean;4143 readonly isPalletNotFound: boolean;4144 readonly isNameMismatch: boolean;4145 readonly isVersionIncompatible: boolean;4146 readonly isHoldingWouldOverflow: boolean;4147 readonly isExportError: boolean;4148 readonly isReanchorFailed: boolean;4149 readonly isNoDeal: boolean;4150 readonly isFeesNotMet: boolean;4151 readonly isLockError: boolean;4152 readonly isNoPermission: boolean;4153 readonly isUnanchored: boolean;4154 readonly isNotDepositable: boolean;4155 readonly isUnhandledXcmVersion: boolean;4156 readonly isWeightLimitReached: boolean;4157 readonly asWeightLimitReached: SpWeightsWeightV2Weight;4158 readonly isBarrier: boolean;4159 readonly isWeightNotComputable: boolean;4160 readonly isExceedsStackLimit: boolean;4161 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'LocationFull' | 'LocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'ExpectationFalse' | 'PalletNotFound' | 'NameMismatch' | 'VersionIncompatible' | 'HoldingWouldOverflow' | 'ExportError' | 'ReanchorFailed' | 'NoDeal' | 'FeesNotMet' | 'LockError' | 'NoPermission' | 'Unanchored' | 'NotDepositable' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable' | 'ExceedsStackLimit';4162}41634164/** @name XcmV3TraitsOutcome */4165export interface XcmV3TraitsOutcome extends Enum {4166 readonly isComplete: boolean;4167 readonly asComplete: SpWeightsWeightV2Weight;4168 readonly isIncomplete: boolean;4169 readonly asIncomplete: ITuple<[SpWeightsWeightV2Weight, XcmV3TraitsError]>;4170 readonly isError: boolean;4171 readonly asError: XcmV3TraitsError;4172 readonly type: 'Complete' | 'Incomplete' | 'Error';4173}41744175/** @name XcmV3WeightLimit */4176export interface XcmV3WeightLimit extends Enum {4177 readonly isUnlimited: boolean;4178 readonly isLimited: boolean;4179 readonly asLimited: SpWeightsWeightV2Weight;4180 readonly type: 'Unlimited' | 'Limited';4181}41824183/** @name XcmV3Xcm */4184export interface XcmV3Xcm extends Vec<XcmV3Instruction> {}41854186/** @name XcmVersionedAssetId */4187export interface XcmVersionedAssetId extends Enum {4188 readonly isV3: boolean;4189 readonly asV3: XcmV3MultiassetAssetId;4190 readonly type: 'V3';4191}41924193/** @name XcmVersionedMultiAsset */4194export interface XcmVersionedMultiAsset extends Enum {4195 readonly isV2: boolean;4196 readonly asV2: XcmV2MultiAsset;4197 readonly isV3: boolean;4198 readonly asV3: XcmV3MultiAsset;4199 readonly type: 'V2' | 'V3';4200}42014202/** @name XcmVersionedMultiAssets */4203export interface XcmVersionedMultiAssets extends Enum {4204 readonly isV2: boolean;4205 readonly asV2: XcmV2MultiassetMultiAssets;4206 readonly isV3: boolean;4207 readonly asV3: XcmV3MultiassetMultiAssets;4208 readonly type: 'V2' | 'V3';4209}42104211/** @name XcmVersionedMultiLocation */4212export interface XcmVersionedMultiLocation extends Enum {4213 readonly isV2: boolean;4214 readonly asV2: XcmV2MultiLocation;4215 readonly isV3: boolean;4216 readonly asV3: XcmV3MultiLocation;4217 readonly type: 'V2' | 'V3';4218}42194220/** @name XcmVersionedResponse */4221export interface XcmVersionedResponse extends Enum {4222 readonly isV2: boolean;4223 readonly asV2: XcmV2Response;4224 readonly isV3: boolean;4225 readonly asV3: XcmV3Response;4226 readonly type: 'V2' | 'V3';4227}42284229/** @name XcmVersionedXcm */4230export interface XcmVersionedXcm extends Enum {4231 readonly isV2: boolean;4232 readonly asV2: XcmV2Xcm;4233 readonly isV3: boolean;4234 readonly asV3: XcmV3Xcm;4235 readonly type: 'V2' | 'V3';4236}42374238export type PHANTOM_DEFAULT = 'default';tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -5,7 +5,7 @@
export default {
/**
- * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>
+ * Lookup3: frame_system::AccountInfo<Index, pallet_balances::types::AccountData<Balance>>
**/
FrameSystemAccountInfo: {
nonce: 'u32',
@@ -15,16 +15,16 @@
data: 'PalletBalancesAccountData'
},
/**
- * Lookup5: pallet_balances::AccountData<Balance>
+ * Lookup5: pallet_balances::types::AccountData<Balance>
**/
PalletBalancesAccountData: {
free: 'u128',
reserved: 'u128',
- miscFrozen: 'u128',
- feeFrozen: 'u128'
+ frozen: 'u128',
+ flags: 'u128'
},
/**
- * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
+ * Lookup8: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
**/
FrameSupportDispatchPerDispatchClassWeight: {
normal: 'SpWeightsWeightV2Weight',
@@ -32,20 +32,20 @@
mandatory: 'SpWeightsWeightV2Weight'
},
/**
- * Lookup8: sp_weights::weight_v2::Weight
+ * Lookup9: sp_weights::weight_v2::Weight
**/
SpWeightsWeightV2Weight: {
refTime: 'Compact<u64>',
proofSize: 'Compact<u64>'
},
/**
- * Lookup13: sp_runtime::generic::digest::Digest
+ * Lookup14: sp_runtime::generic::digest::Digest
**/
SpRuntimeDigest: {
logs: 'Vec<SpRuntimeDigestDigestItem>'
},
/**
- * Lookup15: sp_runtime::generic::digest::DigestItem
+ * Lookup16: sp_runtime::generic::digest::DigestItem
**/
SpRuntimeDigestDigestItem: {
_enum: {
@@ -61,7 +61,7 @@
}
},
/**
- * Lookup18: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>
+ * Lookup19: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>
**/
FrameSystemEventRecord: {
phase: 'FrameSystemPhase',
@@ -69,7 +69,7 @@
topics: 'Vec<H256>'
},
/**
- * Lookup20: frame_system::pallet::Event<T>
+ * Lookup21: frame_system::pallet::Event<T>
**/
FrameSystemEvent: {
_enum: {
@@ -97,7 +97,7 @@
}
},
/**
- * Lookup21: frame_support::dispatch::DispatchInfo
+ * Lookup22: frame_support::dispatch::DispatchInfo
**/
FrameSupportDispatchDispatchInfo: {
weight: 'SpWeightsWeightV2Weight',
@@ -105,19 +105,19 @@
paysFee: 'FrameSupportDispatchPays'
},
/**
- * Lookup22: frame_support::dispatch::DispatchClass
+ * Lookup23: frame_support::dispatch::DispatchClass
**/
FrameSupportDispatchDispatchClass: {
_enum: ['Normal', 'Operational', 'Mandatory']
},
/**
- * Lookup23: frame_support::dispatch::Pays
+ * Lookup24: frame_support::dispatch::Pays
**/
FrameSupportDispatchPays: {
_enum: ['Yes', 'No']
},
/**
- * Lookup24: sp_runtime::DispatchError
+ * Lookup25: sp_runtime::DispatchError
**/
SpRuntimeDispatchError: {
_enum: {
@@ -137,32 +137,32 @@
}
},
/**
- * Lookup25: sp_runtime::ModuleError
+ * Lookup26: sp_runtime::ModuleError
**/
SpRuntimeModuleError: {
index: 'u8',
error: '[u8;4]'
},
/**
- * Lookup26: sp_runtime::TokenError
+ * Lookup27: sp_runtime::TokenError
**/
SpRuntimeTokenError: {
- _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']
+ _enum: ['FundsUnavailable', 'OnlyProvider', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported', 'CannotCreateHold', 'NotExpendable']
},
/**
- * Lookup27: sp_arithmetic::ArithmeticError
+ * Lookup28: sp_arithmetic::ArithmeticError
**/
SpArithmeticArithmeticError: {
_enum: ['Underflow', 'Overflow', 'DivisionByZero']
},
/**
- * Lookup28: sp_runtime::TransactionalError
+ * Lookup29: sp_runtime::TransactionalError
**/
SpRuntimeTransactionalError: {
_enum: ['LimitReached', 'NoLayer']
},
/**
- * Lookup29: cumulus_pallet_parachain_system::pallet::Event<T>
+ * Lookup30: cumulus_pallet_parachain_system::pallet::Event<T>
**/
CumulusPalletParachainSystemEvent: {
_enum: {
@@ -187,7 +187,7 @@
}
},
/**
- * Lookup31: pallet_collator_selection::pallet::Event<T>
+ * Lookup32: pallet_collator_selection::pallet::Event<T>
**/
PalletCollatorSelectionEvent: {
_enum: {
@@ -214,7 +214,7 @@
}
},
/**
- * Lookup32: pallet_session::pallet::Event
+ * Lookup33: pallet_session::pallet::Event
**/
PalletSessionEvent: {
_enum: {
@@ -224,7 +224,7 @@
}
},
/**
- * Lookup33: pallet_balances::pallet::Event<T, I>
+ * Lookup34: pallet_balances::pallet::Event<T, I>
**/
PalletBalancesEvent: {
_enum: {
@@ -244,7 +244,6 @@
BalanceSet: {
who: 'AccountId32',
free: 'u128',
- reserved: 'u128',
},
Reserved: {
who: 'AccountId32',
@@ -270,18 +269,59 @@
},
Slashed: {
who: 'AccountId32',
+ amount: 'u128',
+ },
+ Minted: {
+ who: 'AccountId32',
+ amount: 'u128',
+ },
+ Burned: {
+ who: 'AccountId32',
+ amount: 'u128',
+ },
+ Suspended: {
+ who: 'AccountId32',
+ amount: 'u128',
+ },
+ Restored: {
+ who: 'AccountId32',
+ amount: 'u128',
+ },
+ Upgraded: {
+ who: 'AccountId32',
+ },
+ Issued: {
+ amount: 'u128',
+ },
+ Rescinded: {
+ amount: 'u128',
+ },
+ Locked: {
+ who: 'AccountId32',
+ amount: 'u128',
+ },
+ Unlocked: {
+ who: 'AccountId32',
+ amount: 'u128',
+ },
+ Frozen: {
+ who: 'AccountId32',
+ amount: 'u128',
+ },
+ Thawed: {
+ who: 'AccountId32',
amount: 'u128'
}
}
},
/**
- * Lookup34: frame_support::traits::tokens::misc::BalanceStatus
+ * Lookup35: frame_support::traits::tokens::misc::BalanceStatus
**/
FrameSupportTokensMiscBalanceStatus: {
_enum: ['Free', 'Reserved']
},
/**
- * Lookup35: pallet_transaction_payment::pallet::Event<T>
+ * Lookup36: pallet_transaction_payment::pallet::Event<T>
**/
PalletTransactionPaymentEvent: {
_enum: {
@@ -293,7 +333,7 @@
}
},
/**
- * Lookup36: pallet_treasury::pallet::Event<T, I>
+ * Lookup37: pallet_treasury::pallet::Event<T, I>
**/
PalletTreasuryEvent: {
_enum: {
@@ -333,7 +373,7 @@
}
},
/**
- * Lookup37: pallet_sudo::pallet::Event<T>
+ * Lookup38: pallet_sudo::pallet::Event<T>
**/
PalletSudoEvent: {
_enum: {
@@ -349,7 +389,7 @@
}
},
/**
- * Lookup41: orml_vesting::module::Event<T>
+ * Lookup42: orml_vesting::module::Event<T>
**/
OrmlVestingModuleEvent: {
_enum: {
@@ -368,7 +408,7 @@
}
},
/**
- * Lookup42: orml_vesting::VestingSchedule<BlockNumber, Balance>
+ * Lookup43: orml_vesting::VestingSchedule<BlockNumber, Balance>
**/
OrmlVestingVestingSchedule: {
start: 'u32',
@@ -377,7 +417,7 @@
perPeriod: 'Compact<u128>'
},
/**
- * Lookup44: orml_xtokens::module::Event<T>
+ * Lookup45: orml_xtokens::module::Event<T>
**/
OrmlXtokensModuleEvent: {
_enum: {
@@ -390,18 +430,18 @@
}
},
/**
- * Lookup45: xcm::v3::multiasset::MultiAssets
+ * Lookup46: xcm::v3::multiasset::MultiAssets
**/
XcmV3MultiassetMultiAssets: 'Vec<XcmV3MultiAsset>',
/**
- * Lookup47: xcm::v3::multiasset::MultiAsset
+ * Lookup48: xcm::v3::multiasset::MultiAsset
**/
XcmV3MultiAsset: {
id: 'XcmV3MultiassetAssetId',
fun: 'XcmV3MultiassetFungibility'
},
/**
- * Lookup48: xcm::v3::multiasset::AssetId
+ * Lookup49: xcm::v3::multiasset::AssetId
**/
XcmV3MultiassetAssetId: {
_enum: {
@@ -410,14 +450,14 @@
}
},
/**
- * Lookup49: xcm::v3::multilocation::MultiLocation
+ * Lookup50: xcm::v3::multilocation::MultiLocation
**/
XcmV3MultiLocation: {
parents: 'u8',
interior: 'XcmV3Junctions'
},
/**
- * Lookup50: xcm::v3::junctions::Junctions
+ * Lookup51: xcm::v3::junctions::Junctions
**/
XcmV3Junctions: {
_enum: {
@@ -433,7 +473,7 @@
}
},
/**
- * Lookup51: xcm::v3::junction::Junction
+ * Lookup52: xcm::v3::junction::Junction
**/
XcmV3Junction: {
_enum: {
@@ -465,7 +505,7 @@
}
},
/**
- * Lookup54: xcm::v3::junction::NetworkId
+ * Lookup55: xcm::v3::junction::NetworkId
**/
XcmV3JunctionNetworkId: {
_enum: {
@@ -487,7 +527,7 @@
}
},
/**
- * Lookup56: xcm::v3::junction::BodyId
+ * Lookup57: xcm::v3::junction::BodyId
**/
XcmV3JunctionBodyId: {
_enum: {
@@ -504,7 +544,7 @@
}
},
/**
- * Lookup57: xcm::v3::junction::BodyPart
+ * Lookup58: xcm::v3::junction::BodyPart
**/
XcmV3JunctionBodyPart: {
_enum: {
@@ -527,7 +567,7 @@
}
},
/**
- * Lookup58: xcm::v3::multiasset::Fungibility
+ * Lookup59: xcm::v3::multiasset::Fungibility
**/
XcmV3MultiassetFungibility: {
_enum: {
@@ -536,7 +576,7 @@
}
},
/**
- * Lookup59: xcm::v3::multiasset::AssetInstance
+ * Lookup60: xcm::v3::multiasset::AssetInstance
**/
XcmV3MultiassetAssetInstance: {
_enum: {
@@ -549,7 +589,7 @@
}
},
/**
- * Lookup62: orml_tokens::module::Event<T>
+ * Lookup63: orml_tokens::module::Event<T>
**/
OrmlTokensModuleEvent: {
_enum: {
@@ -636,7 +676,7 @@
}
},
/**
- * Lookup63: pallet_foreign_assets::AssetIds
+ * Lookup64: pallet_foreign_assets::AssetIds
**/
PalletForeignAssetsAssetIds: {
_enum: {
@@ -645,13 +685,13 @@
}
},
/**
- * Lookup64: pallet_foreign_assets::NativeCurrency
+ * Lookup65: pallet_foreign_assets::NativeCurrency
**/
PalletForeignAssetsNativeCurrency: {
_enum: ['Here', 'Parent']
},
/**
- * Lookup65: pallet_identity::pallet::Event<T>
+ * Lookup66: pallet_identity::pallet::Event<T>
**/
PalletIdentityEvent: {
_enum: {
@@ -708,7 +748,7 @@
}
},
/**
- * Lookup66: pallet_preimage::pallet::Event<T>
+ * Lookup67: pallet_preimage::pallet::Event<T>
**/
PalletPreimageEvent: {
_enum: {
@@ -733,7 +773,7 @@
}
},
/**
- * Lookup67: cumulus_pallet_xcmp_queue::pallet::Event<T>
+ * Lookup68: cumulus_pallet_xcmp_queue::pallet::Event<T>
**/
CumulusPalletXcmpQueueEvent: {
_enum: {
@@ -768,7 +808,7 @@
}
},
/**
- * Lookup68: xcm::v3::traits::Error
+ * Lookup69: xcm::v3::traits::Error
**/
XcmV3TraitsError: {
_enum: {
@@ -815,7 +855,7 @@
}
},
/**
- * Lookup70: pallet_xcm::pallet::Event<T>
+ * Lookup71: pallet_xcm::pallet::Event<T>
**/
PalletXcmEvent: {
_enum: {
@@ -845,7 +885,7 @@
}
},
/**
- * Lookup71: xcm::v3::traits::Outcome
+ * Lookup72: xcm::v3::traits::Outcome
**/
XcmV3TraitsOutcome: {
_enum: {
@@ -855,11 +895,11 @@
}
},
/**
- * Lookup72: xcm::v3::Xcm<Call>
+ * Lookup73: xcm::v3::Xcm<Call>
**/
XcmV3Xcm: 'Vec<XcmV3Instruction>',
/**
- * Lookup74: xcm::v3::Instruction<Call>
+ * Lookup75: xcm::v3::Instruction<Call>
**/
XcmV3Instruction: {
_enum: {
@@ -1001,7 +1041,7 @@
}
},
/**
- * Lookup75: xcm::v3::Response
+ * Lookup76: xcm::v3::Response
**/
XcmV3Response: {
_enum: {
@@ -1014,7 +1054,7 @@
}
},
/**
- * Lookup79: xcm::v3::PalletInfo
+ * Lookup80: xcm::v3::PalletInfo
**/
XcmV3PalletInfo: {
index: 'Compact<u32>',
@@ -1025,7 +1065,7 @@
patch: 'Compact<u32>'
},
/**
- * Lookup82: xcm::v3::MaybeErrorCode
+ * Lookup83: xcm::v3::MaybeErrorCode
**/
XcmV3MaybeErrorCode: {
_enum: {
@@ -1035,19 +1075,19 @@
}
},
/**
- * Lookup85: xcm::v2::OriginKind
+ * Lookup86: xcm::v2::OriginKind
**/
XcmV2OriginKind: {
_enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']
},
/**
- * Lookup86: xcm::double_encoded::DoubleEncoded<T>
+ * Lookup87: xcm::double_encoded::DoubleEncoded<T>
**/
XcmDoubleEncoded: {
encoded: 'Bytes'
},
/**
- * Lookup87: xcm::v3::QueryResponseInfo
+ * Lookup88: xcm::v3::QueryResponseInfo
**/
XcmV3QueryResponseInfo: {
destination: 'XcmV3MultiLocation',
@@ -1055,7 +1095,7 @@
maxWeight: 'SpWeightsWeightV2Weight'
},
/**
- * Lookup88: xcm::v3::multiasset::MultiAssetFilter
+ * Lookup89: xcm::v3::multiasset::MultiAssetFilter
**/
XcmV3MultiassetMultiAssetFilter: {
_enum: {
@@ -1064,7 +1104,7 @@
}
},
/**
- * Lookup89: xcm::v3::multiasset::WildMultiAsset
+ * Lookup90: xcm::v3::multiasset::WildMultiAsset
**/
XcmV3MultiassetWildMultiAsset: {
_enum: {
@@ -1082,13 +1122,13 @@
}
},
/**
- * Lookup90: xcm::v3::multiasset::WildFungibility
+ * Lookup91: xcm::v3::multiasset::WildFungibility
**/
XcmV3MultiassetWildFungibility: {
_enum: ['Fungible', 'NonFungible']
},
/**
- * Lookup92: xcm::v3::WeightLimit
+ * Lookup93: xcm::v3::WeightLimit
**/
XcmV3WeightLimit: {
_enum: {
@@ -1097,7 +1137,7 @@
}
},
/**
- * Lookup93: xcm::VersionedMultiAssets
+ * Lookup94: xcm::VersionedMultiAssets
**/
XcmVersionedMultiAssets: {
_enum: {
@@ -1108,18 +1148,18 @@
}
},
/**
- * Lookup94: xcm::v2::multiasset::MultiAssets
+ * Lookup95: xcm::v2::multiasset::MultiAssets
**/
XcmV2MultiassetMultiAssets: 'Vec<XcmV2MultiAsset>',
/**
- * Lookup96: xcm::v2::multiasset::MultiAsset
+ * Lookup97: xcm::v2::multiasset::MultiAsset
**/
XcmV2MultiAsset: {
id: 'XcmV2MultiassetAssetId',
fun: 'XcmV2MultiassetFungibility'
},
/**
- * Lookup97: xcm::v2::multiasset::AssetId
+ * Lookup98: xcm::v2::multiasset::AssetId
**/
XcmV2MultiassetAssetId: {
_enum: {
@@ -1128,14 +1168,14 @@
}
},
/**
- * Lookup98: xcm::v2::multilocation::MultiLocation
+ * Lookup99: xcm::v2::multilocation::MultiLocation
**/
XcmV2MultiLocation: {
parents: 'u8',
interior: 'XcmV2MultilocationJunctions'
},
/**
- * Lookup99: xcm::v2::multilocation::Junctions
+ * Lookup100: xcm::v2::multilocation::Junctions
**/
XcmV2MultilocationJunctions: {
_enum: {
@@ -1151,7 +1191,7 @@
}
},
/**
- * Lookup100: xcm::v2::junction::Junction
+ * Lookup101: xcm::v2::junction::Junction
**/
XcmV2Junction: {
_enum: {
@@ -1179,7 +1219,7 @@
}
},
/**
- * Lookup101: xcm::v2::NetworkId
+ * Lookup102: xcm::v2::NetworkId
**/
XcmV2NetworkId: {
_enum: {
@@ -1190,7 +1230,7 @@
}
},
/**
- * Lookup103: xcm::v2::BodyId
+ * Lookup104: xcm::v2::BodyId
**/
XcmV2BodyId: {
_enum: {
@@ -1207,7 +1247,7 @@
}
},
/**
- * Lookup104: xcm::v2::BodyPart
+ * Lookup105: xcm::v2::BodyPart
**/
XcmV2BodyPart: {
_enum: {
@@ -1230,7 +1270,7 @@
}
},
/**
- * Lookup105: xcm::v2::multiasset::Fungibility
+ * Lookup106: xcm::v2::multiasset::Fungibility
**/
XcmV2MultiassetFungibility: {
_enum: {
@@ -1239,7 +1279,7 @@
}
},
/**
- * Lookup106: xcm::v2::multiasset::AssetInstance
+ * Lookup107: xcm::v2::multiasset::AssetInstance
**/
XcmV2MultiassetAssetInstance: {
_enum: {
@@ -1253,7 +1293,7 @@
}
},
/**
- * Lookup107: xcm::VersionedMultiLocation
+ * Lookup108: xcm::VersionedMultiLocation
**/
XcmVersionedMultiLocation: {
_enum: {
@@ -1264,7 +1304,7 @@
}
},
/**
- * Lookup108: cumulus_pallet_xcm::pallet::Event<T>
+ * Lookup109: cumulus_pallet_xcm::pallet::Event<T>
**/
CumulusPalletXcmEvent: {
_enum: {
@@ -1274,7 +1314,7 @@
}
},
/**
- * Lookup109: cumulus_pallet_dmp_queue::pallet::Event<T>
+ * Lookup110: cumulus_pallet_dmp_queue::pallet::Event<T>
**/
CumulusPalletDmpQueueEvent: {
_enum: {
@@ -1308,7 +1348,7 @@
}
},
/**
- * Lookup110: pallet_configuration::pallet::Event<T>
+ * Lookup111: pallet_configuration::pallet::Event<T>
**/
PalletConfigurationEvent: {
_enum: {
@@ -1324,7 +1364,7 @@
}
},
/**
- * Lookup113: pallet_common::pallet::Event<T>
+ * Lookup114: pallet_common::pallet::Event<T>
**/
PalletCommonEvent: {
_enum: {
@@ -1353,7 +1393,7 @@
}
},
/**
- * Lookup116: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
+ * Lookup117: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
**/
PalletEvmAccountBasicCrossAccountIdRepr: {
_enum: {
@@ -1362,7 +1402,7 @@
}
},
/**
- * Lookup119: pallet_structure::pallet::Event<T>
+ * Lookup120: pallet_structure::pallet::Event<T>
**/
PalletStructureEvent: {
_enum: {
@@ -1370,7 +1410,7 @@
}
},
/**
- * Lookup120: pallet_app_promotion::pallet::Event<T>
+ * Lookup121: pallet_app_promotion::pallet::Event<T>
**/
PalletAppPromotionEvent: {
_enum: {
@@ -1381,7 +1421,7 @@
}
},
/**
- * Lookup121: pallet_foreign_assets::module::Event<T>
+ * Lookup122: pallet_foreign_assets::module::Event<T>
**/
PalletForeignAssetsModuleEvent: {
_enum: {
@@ -1406,7 +1446,7 @@
}
},
/**
- * Lookup122: pallet_foreign_assets::module::AssetMetadata<Balance>
+ * Lookup123: pallet_foreign_assets::module::AssetMetadata<Balance>
**/
PalletForeignAssetsModuleAssetMetadata: {
name: 'Bytes',
@@ -1415,7 +1455,7 @@
minimalBalance: 'u128'
},
/**
- * Lookup125: pallet_evm::pallet::Event<T>
+ * Lookup126: pallet_evm::pallet::Event<T>
**/
PalletEvmEvent: {
_enum: {
@@ -1437,7 +1477,7 @@
}
},
/**
- * Lookup126: ethereum::log::Log
+ * Lookup127: ethereum::log::Log
**/
EthereumLog: {
address: 'H160',
@@ -1445,7 +1485,7 @@
data: 'Bytes'
},
/**
- * Lookup128: pallet_ethereum::pallet::Event
+ * Lookup129: pallet_ethereum::pallet::Event
**/
PalletEthereumEvent: {
_enum: {
@@ -1453,12 +1493,13 @@
from: 'H160',
to: 'H160',
transactionHash: 'H256',
- exitReason: 'EvmCoreErrorExitReason'
+ exitReason: 'EvmCoreErrorExitReason',
+ extraData: 'Bytes'
}
}
},
/**
- * Lookup129: evm_core::error::ExitReason
+ * Lookup130: evm_core::error::ExitReason
**/
EvmCoreErrorExitReason: {
_enum: {
@@ -1469,13 +1510,13 @@
}
},
/**
- * Lookup130: evm_core::error::ExitSucceed
+ * Lookup131: evm_core::error::ExitSucceed
**/
EvmCoreErrorExitSucceed: {
_enum: ['Stopped', 'Returned', 'Suicided']
},
/**
- * Lookup131: evm_core::error::ExitError
+ * Lookup132: evm_core::error::ExitError
**/
EvmCoreErrorExitError: {
_enum: {
@@ -1498,13 +1539,13 @@
}
},
/**
- * Lookup135: evm_core::error::ExitRevert
+ * Lookup136: evm_core::error::ExitRevert
**/
EvmCoreErrorExitRevert: {
_enum: ['Reverted']
},
/**
- * Lookup136: evm_core::error::ExitFatal
+ * Lookup137: evm_core::error::ExitFatal
**/
EvmCoreErrorExitFatal: {
_enum: {
@@ -1515,7 +1556,7 @@
}
},
/**
- * Lookup137: pallet_evm_contract_helpers::pallet::Event<T>
+ * Lookup138: pallet_evm_contract_helpers::pallet::Event<T>
**/
PalletEvmContractHelpersEvent: {
_enum: {
@@ -1525,25 +1566,25 @@
}
},
/**
- * Lookup138: pallet_evm_migration::pallet::Event<T>
+ * Lookup139: pallet_evm_migration::pallet::Event<T>
**/
PalletEvmMigrationEvent: {
_enum: ['TestEvent']
},
/**
- * Lookup139: pallet_maintenance::pallet::Event<T>
+ * Lookup140: pallet_maintenance::pallet::Event<T>
**/
PalletMaintenanceEvent: {
_enum: ['MaintenanceEnabled', 'MaintenanceDisabled']
},
/**
- * Lookup140: pallet_test_utils::pallet::Event<T>
+ * Lookup141: pallet_test_utils::pallet::Event<T>
**/
PalletTestUtilsEvent: {
_enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']
},
/**
- * Lookup141: frame_system::Phase
+ * Lookup142: frame_system::Phase
**/
FrameSystemPhase: {
_enum: {
@@ -1553,14 +1594,14 @@
}
},
/**
- * Lookup144: frame_system::LastRuntimeUpgradeInfo
+ * Lookup145: frame_system::LastRuntimeUpgradeInfo
**/
FrameSystemLastRuntimeUpgradeInfo: {
specVersion: 'Compact<u32>',
specName: 'Text'
},
/**
- * Lookup145: frame_system::pallet::Call<T>
+ * Lookup146: frame_system::pallet::Call<T>
**/
FrameSystemCall: {
_enum: {
@@ -1595,7 +1636,7 @@
}
},
/**
- * Lookup149: frame_system::limits::BlockWeights
+ * Lookup150: frame_system::limits::BlockWeights
**/
FrameSystemLimitsBlockWeights: {
baseBlock: 'SpWeightsWeightV2Weight',
@@ -1603,7 +1644,7 @@
perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
},
/**
- * Lookup150: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
+ * Lookup151: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
**/
FrameSupportDispatchPerDispatchClassWeightsPerClass: {
normal: 'FrameSystemLimitsWeightsPerClass',
@@ -1611,7 +1652,7 @@
mandatory: 'FrameSystemLimitsWeightsPerClass'
},
/**
- * Lookup151: frame_system::limits::WeightsPerClass
+ * Lookup152: frame_system::limits::WeightsPerClass
**/
FrameSystemLimitsWeightsPerClass: {
baseExtrinsic: 'SpWeightsWeightV2Weight',
@@ -1620,13 +1661,13 @@
reserved: 'Option<SpWeightsWeightV2Weight>'
},
/**
- * Lookup153: frame_system::limits::BlockLength
+ * Lookup154: frame_system::limits::BlockLength
**/
FrameSystemLimitsBlockLength: {
max: 'FrameSupportDispatchPerDispatchClassU32'
},
/**
- * Lookup154: frame_support::dispatch::PerDispatchClass<T>
+ * Lookup155: frame_support::dispatch::PerDispatchClass<T>
**/
FrameSupportDispatchPerDispatchClassU32: {
normal: 'u32',
@@ -1634,14 +1675,14 @@
mandatory: 'u32'
},
/**
- * Lookup155: sp_weights::RuntimeDbWeight
+ * Lookup156: sp_weights::RuntimeDbWeight
**/
SpWeightsRuntimeDbWeight: {
read: 'u64',
write: 'u64'
},
/**
- * Lookup156: sp_version::RuntimeVersion
+ * Lookup157: sp_version::RuntimeVersion
**/
SpVersionRuntimeVersion: {
specName: 'Text',
@@ -1654,45 +1695,45 @@
stateVersion: 'u8'
},
/**
- * Lookup161: frame_system::pallet::Error<T>
+ * Lookup162: frame_system::pallet::Error<T>
**/
FrameSystemError: {
_enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
},
/**
- * Lookup162: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
+ * Lookup163: polkadot_primitives::v4::PersistedValidationData<primitive_types::H256, N>
**/
- PolkadotPrimitivesV2PersistedValidationData: {
+ PolkadotPrimitivesV4PersistedValidationData: {
parentHead: 'Bytes',
relayParentNumber: 'u32',
relayParentStorageRoot: 'H256',
maxPovSize: 'u32'
},
/**
- * Lookup165: polkadot_primitives::v2::UpgradeRestriction
+ * Lookup166: polkadot_primitives::v4::UpgradeRestriction
**/
- PolkadotPrimitivesV2UpgradeRestriction: {
+ PolkadotPrimitivesV4UpgradeRestriction: {
_enum: ['Present']
},
/**
- * Lookup166: sp_trie::storage_proof::StorageProof
+ * Lookup167: sp_trie::storage_proof::StorageProof
**/
SpTrieStorageProof: {
trieNodes: 'BTreeSet<Bytes>'
},
/**
- * Lookup168: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
+ * Lookup169: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
**/
CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
dmqMqcHead: 'H256',
relayDispatchQueueSize: '(u32,u32)',
- ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',
- egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
+ ingressChannels: 'Vec<(u32,PolkadotPrimitivesV4AbridgedHrmpChannel)>',
+ egressChannels: 'Vec<(u32,PolkadotPrimitivesV4AbridgedHrmpChannel)>'
},
/**
- * Lookup171: polkadot_primitives::v2::AbridgedHrmpChannel
+ * Lookup172: polkadot_primitives::v4::AbridgedHrmpChannel
**/
- PolkadotPrimitivesV2AbridgedHrmpChannel: {
+ PolkadotPrimitivesV4AbridgedHrmpChannel: {
maxCapacity: 'u32',
maxTotalSize: 'u32',
maxMessageSize: 'u32',
@@ -1701,9 +1742,9 @@
mqcHead: 'Option<H256>'
},
/**
- * Lookup173: polkadot_primitives::v2::AbridgedHostConfiguration
+ * Lookup174: polkadot_primitives::v4::AbridgedHostConfiguration
**/
- PolkadotPrimitivesV2AbridgedHostConfiguration: {
+ PolkadotPrimitivesV4AbridgedHostConfiguration: {
maxCodeSize: 'u32',
maxHeadDataSize: 'u32',
maxUpwardQueueCount: 'u32',
@@ -1715,15 +1756,22 @@
validationUpgradeDelay: 'u32'
},
/**
- * Lookup179: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
+ * Lookup180: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
**/
PolkadotCorePrimitivesOutboundHrmpMessage: {
recipient: 'u32',
data: 'Bytes'
},
/**
- * Lookup180: cumulus_pallet_parachain_system::pallet::Call<T>
+ * Lookup181: cumulus_pallet_parachain_system::CodeUpgradeAuthorization<T>
**/
+ CumulusPalletParachainSystemCodeUpgradeAuthorization: {
+ codeHash: 'H256',
+ checkVersion: 'bool'
+ },
+ /**
+ * Lookup182: cumulus_pallet_parachain_system::pallet::Call<T>
+ **/
CumulusPalletParachainSystemCall: {
_enum: {
set_validation_data: {
@@ -1734,6 +1782,7 @@
},
authorize_upgrade: {
codeHash: 'H256',
+ checkVersion: 'bool',
},
enact_authorized_upgrade: {
code: 'Bytes'
@@ -1741,40 +1790,40 @@
}
},
/**
- * Lookup181: cumulus_primitives_parachain_inherent::ParachainInherentData
+ * Lookup183: cumulus_primitives_parachain_inherent::ParachainInherentData
**/
CumulusPrimitivesParachainInherentParachainInherentData: {
- validationData: 'PolkadotPrimitivesV2PersistedValidationData',
+ validationData: 'PolkadotPrimitivesV4PersistedValidationData',
relayChainState: 'SpTrieStorageProof',
downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',
horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
},
/**
- * Lookup183: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
+ * Lookup185: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundDownwardMessage: {
sentAt: 'u32',
msg: 'Bytes'
},
/**
- * Lookup186: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
+ * Lookup188: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
**/
PolkadotCorePrimitivesInboundHrmpMessage: {
sentAt: 'u32',
data: 'Bytes'
},
/**
- * Lookup189: cumulus_pallet_parachain_system::pallet::Error<T>
+ * Lookup191: cumulus_pallet_parachain_system::pallet::Error<T>
**/
CumulusPalletParachainSystemError: {
_enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
},
/**
- * Lookup190: parachain_info::pallet::Call<T>
+ * Lookup192: parachain_info::pallet::Call<T>
**/
ParachainInfoCall: 'Null',
/**
- * Lookup193: pallet_collator_selection::pallet::Call<T>
+ * Lookup195: pallet_collator_selection::pallet::Call<T>
**/
PalletCollatorSelectionCall: {
_enum: {
@@ -1797,31 +1846,31 @@
}
},
/**
- * Lookup194: pallet_collator_selection::pallet::Error<T>
+ * Lookup196: pallet_collator_selection::pallet::Error<T>
**/
PalletCollatorSelectionError: {
_enum: ['TooManyCandidates', 'Unknown', 'Permission', 'AlreadyHoldingLicense', 'NoLicense', 'AlreadyCandidate', 'NotCandidate', 'TooManyInvulnerables', 'TooFewInvulnerables', 'AlreadyInvulnerable', 'NotInvulnerable', 'NoAssociatedValidatorId', 'ValidatorNotRegistered']
},
/**
- * Lookup197: opal_runtime::runtime_common::SessionKeys
+ * Lookup199: opal_runtime::runtime_common::SessionKeys
**/
OpalRuntimeRuntimeCommonSessionKeys: {
aura: 'SpConsensusAuraSr25519AppSr25519Public'
},
/**
- * Lookup198: sp_consensus_aura::sr25519::app_sr25519::Public
+ * Lookup200: sp_consensus_aura::sr25519::app_sr25519::Public
**/
SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',
/**
- * Lookup199: sp_core::sr25519::Public
+ * Lookup201: sp_core::sr25519::Public
**/
SpCoreSr25519Public: '[u8;32]',
/**
- * Lookup202: sp_core::crypto::KeyTypeId
+ * Lookup204: sp_core::crypto::KeyTypeId
**/
SpCoreCryptoKeyTypeId: '[u8;4]',
/**
- * Lookup203: pallet_session::pallet::Call<T>
+ * Lookup205: pallet_session::pallet::Call<T>
**/
PalletSessionCall: {
_enum: {
@@ -1836,13 +1885,13 @@
}
},
/**
- * Lookup204: pallet_session::pallet::Error<T>
+ * Lookup206: pallet_session::pallet::Error<T>
**/
PalletSessionError: {
_enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']
},
/**
- * Lookup209: pallet_balances::BalanceLock<Balance>
+ * Lookup211: pallet_balances::types::BalanceLock<Balance>
**/
PalletBalancesBalanceLock: {
id: '[u8;8]',
@@ -1850,31 +1899,38 @@
reasons: 'PalletBalancesReasons'
},
/**
- * Lookup210: pallet_balances::Reasons
+ * Lookup212: pallet_balances::types::Reasons
**/
PalletBalancesReasons: {
_enum: ['Fee', 'Misc', 'All']
},
/**
- * Lookup213: pallet_balances::ReserveData<ReserveIdentifier, Balance>
+ * Lookup215: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
**/
PalletBalancesReserveData: {
id: '[u8;16]',
amount: 'u128'
},
/**
- * Lookup215: pallet_balances::pallet::Call<T, I>
+ * Lookup218: pallet_balances::types::IdAmount<Id, Balance>
**/
+ PalletBalancesIdAmount: {
+ id: '[u8;16]',
+ amount: 'u128'
+ },
+ /**
+ * Lookup220: pallet_balances::pallet::Call<T, I>
+ **/
PalletBalancesCall: {
_enum: {
- transfer: {
+ transfer_allow_death: {
dest: 'MultiAddress',
value: 'Compact<u128>',
},
- set_balance: {
+ set_balance_deprecated: {
who: 'MultiAddress',
newFree: 'Compact<u128>',
- newReserved: 'Compact<u128>',
+ oldReserved: 'Compact<u128>',
},
force_transfer: {
source: 'MultiAddress',
@@ -1891,18 +1947,29 @@
},
force_unreserve: {
who: 'MultiAddress',
- amount: 'u128'
+ amount: 'u128',
+ },
+ upgrade_accounts: {
+ who: 'Vec<AccountId32>',
+ },
+ transfer: {
+ dest: 'MultiAddress',
+ value: 'Compact<u128>',
+ },
+ force_set_balance: {
+ who: 'MultiAddress',
+ newFree: 'Compact<u128>'
}
}
},
/**
- * Lookup218: pallet_balances::pallet::Error<T, I>
+ * Lookup223: pallet_balances::pallet::Error<T, I>
**/
PalletBalancesError: {
- _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
+ _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'Expendability', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves', 'TooManyHolds', 'TooManyFreezes']
},
/**
- * Lookup219: pallet_timestamp::pallet::Call<T>
+ * Lookup224: pallet_timestamp::pallet::Call<T>
**/
PalletTimestampCall: {
_enum: {
@@ -1912,13 +1979,13 @@
}
},
/**
- * Lookup221: pallet_transaction_payment::Releases
+ * Lookup226: pallet_transaction_payment::Releases
**/
PalletTransactionPaymentReleases: {
_enum: ['V1Ancient', 'V2']
},
/**
- * Lookup222: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
+ * Lookup227: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
**/
PalletTreasuryProposal: {
proposer: 'AccountId32',
@@ -1927,7 +1994,7 @@
bond: 'u128'
},
/**
- * Lookup224: pallet_treasury::pallet::Call<T, I>
+ * Lookup229: pallet_treasury::pallet::Call<T, I>
**/
PalletTreasuryCall: {
_enum: {
@@ -1951,17 +2018,17 @@
}
},
/**
- * Lookup226: frame_support::PalletId
+ * Lookup231: frame_support::PalletId
**/
FrameSupportPalletId: '[u8;8]',
/**
- * Lookup227: pallet_treasury::pallet::Error<T, I>
+ * Lookup232: pallet_treasury::pallet::Error<T, I>
**/
PalletTreasuryError: {
_enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
},
/**
- * Lookup228: pallet_sudo::pallet::Call<T>
+ * Lookup233: pallet_sudo::pallet::Call<T>
**/
PalletSudoCall: {
_enum: {
@@ -1985,7 +2052,7 @@
}
},
/**
- * Lookup230: orml_vesting::module::Call<T>
+ * Lookup235: orml_vesting::module::Call<T>
**/
OrmlVestingModuleCall: {
_enum: {
@@ -2004,7 +2071,7 @@
}
},
/**
- * Lookup232: orml_xtokens::module::Call<T>
+ * Lookup237: orml_xtokens::module::Call<T>
**/
OrmlXtokensModuleCall: {
_enum: {
@@ -2047,7 +2114,7 @@
}
},
/**
- * Lookup233: xcm::VersionedMultiAsset
+ * Lookup238: xcm::VersionedMultiAsset
**/
XcmVersionedMultiAsset: {
_enum: {
@@ -2058,7 +2125,7 @@
}
},
/**
- * Lookup236: orml_tokens::module::Call<T>
+ * Lookup241: orml_tokens::module::Call<T>
**/
OrmlTokensModuleCall: {
_enum: {
@@ -2092,7 +2159,7 @@
}
},
/**
- * Lookup237: pallet_identity::pallet::Call<T>
+ * Lookup242: pallet_identity::pallet::Call<T>
**/
PalletIdentityCall: {
_enum: {
@@ -2161,7 +2228,7 @@
}
},
/**
- * Lookup238: pallet_identity::types::IdentityInfo<FieldLimit>
+ * Lookup243: pallet_identity::types::IdentityInfo<FieldLimit>
**/
PalletIdentityIdentityInfo: {
additional: 'Vec<(Data,Data)>',
@@ -2175,7 +2242,7 @@
twitter: 'Data'
},
/**
- * Lookup274: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>
+ * Lookup279: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>
**/
PalletIdentityBitFlags: {
_bitLength: 64,
@@ -2189,13 +2256,13 @@
Twitter: 128
},
/**
- * Lookup275: pallet_identity::types::IdentityField
+ * Lookup280: pallet_identity::types::IdentityField
**/
PalletIdentityIdentityField: {
_enum: ['__Unused0', 'Display', 'Legal', '__Unused3', 'Web', '__Unused5', '__Unused6', '__Unused7', 'Riot', '__Unused9', '__Unused10', '__Unused11', '__Unused12', '__Unused13', '__Unused14', '__Unused15', 'Email', '__Unused17', '__Unused18', '__Unused19', '__Unused20', '__Unused21', '__Unused22', '__Unused23', '__Unused24', '__Unused25', '__Unused26', '__Unused27', '__Unused28', '__Unused29', '__Unused30', '__Unused31', 'PgpFingerprint', '__Unused33', '__Unused34', '__Unused35', '__Unused36', '__Unused37', '__Unused38', '__Unused39', '__Unused40', '__Unused41', '__Unused42', '__Unused43', '__Unused44', '__Unused45', '__Unused46', '__Unused47', '__Unused48', '__Unused49', '__Unused50', '__Unused51', '__Unused52', '__Unused53', '__Unused54', '__Unused55', '__Unused56', '__Unused57', '__Unused58', '__Unused59', '__Unused60', '__Unused61', '__Unused62', '__Unused63', 'Image', '__Unused65', '__Unused66', '__Unused67', '__Unused68', '__Unused69', '__Unused70', '__Unused71', '__Unused72', '__Unused73', '__Unused74', '__Unused75', '__Unused76', '__Unused77', '__Unused78', '__Unused79', '__Unused80', '__Unused81', '__Unused82', '__Unused83', '__Unused84', '__Unused85', '__Unused86', '__Unused87', '__Unused88', '__Unused89', '__Unused90', '__Unused91', '__Unused92', '__Unused93', '__Unused94', '__Unused95', '__Unused96', '__Unused97', '__Unused98', '__Unused99', '__Unused100', '__Unused101', '__Unused102', '__Unused103', '__Unused104', '__Unused105', '__Unused106', '__Unused107', '__Unused108', '__Unused109', '__Unused110', '__Unused111', '__Unused112', '__Unused113', '__Unused114', '__Unused115', '__Unused116', '__Unused117', '__Unused118', '__Unused119', '__Unused120', '__Unused121', '__Unused122', '__Unused123', '__Unused124', '__Unused125', '__Unused126', '__Unused127', 'Twitter']
},
/**
- * Lookup276: pallet_identity::types::Judgement<Balance>
+ * Lookup281: pallet_identity::types::Judgement<Balance>
**/
PalletIdentityJudgement: {
_enum: {
@@ -2209,7 +2276,7 @@
}
},
/**
- * Lookup279: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>
+ * Lookup284: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>
**/
PalletIdentityRegistration: {
judgements: 'Vec<(u32,PalletIdentityJudgement)>',
@@ -2217,7 +2284,7 @@
info: 'PalletIdentityIdentityInfo'
},
/**
- * Lookup287: pallet_preimage::pallet::Call<T>
+ * Lookup292: pallet_preimage::pallet::Call<T>
**/
PalletPreimageCall: {
_enum: {
@@ -2245,7 +2312,7 @@
}
},
/**
- * Lookup288: cumulus_pallet_xcmp_queue::pallet::Call<T>
+ * Lookup293: cumulus_pallet_xcmp_queue::pallet::Call<T>
**/
CumulusPalletXcmpQueueCall: {
_enum: {
@@ -2294,7 +2361,7 @@
}
},
/**
- * Lookup289: pallet_xcm::pallet::Call<T>
+ * Lookup294: pallet_xcm::pallet::Call<T>
**/
PalletXcmCall: {
_enum: {
@@ -2343,12 +2410,15 @@
beneficiary: 'XcmVersionedMultiLocation',
assets: 'XcmVersionedMultiAssets',
feeAssetItem: 'u32',
- weightLimit: 'XcmV3WeightLimit'
+ weightLimit: 'XcmV3WeightLimit',
+ },
+ force_suspension: {
+ suspended: 'bool'
}
}
},
/**
- * Lookup290: xcm::VersionedXcm<RuntimeCall>
+ * Lookup295: xcm::VersionedXcm<RuntimeCall>
**/
XcmVersionedXcm: {
_enum: {
@@ -2359,11 +2429,11 @@
}
},
/**
- * Lookup291: xcm::v2::Xcm<RuntimeCall>
+ * Lookup296: xcm::v2::Xcm<RuntimeCall>
**/
XcmV2Xcm: 'Vec<XcmV2Instruction>',
/**
- * Lookup293: xcm::v2::Instruction<RuntimeCall>
+ * Lookup298: xcm::v2::Instruction<RuntimeCall>
**/
XcmV2Instruction: {
_enum: {
@@ -2461,7 +2531,7 @@
}
},
/**
- * Lookup294: xcm::v2::Response
+ * Lookup299: xcm::v2::Response
**/
XcmV2Response: {
_enum: {
@@ -2472,7 +2542,7 @@
}
},
/**
- * Lookup297: xcm::v2::traits::Error
+ * Lookup302: xcm::v2::traits::Error
**/
XcmV2TraitsError: {
_enum: {
@@ -2505,7 +2575,7 @@
}
},
/**
- * Lookup298: xcm::v2::multiasset::MultiAssetFilter
+ * Lookup303: xcm::v2::multiasset::MultiAssetFilter
**/
XcmV2MultiassetMultiAssetFilter: {
_enum: {
@@ -2514,7 +2584,7 @@
}
},
/**
- * Lookup299: xcm::v2::multiasset::WildMultiAsset
+ * Lookup304: xcm::v2::multiasset::WildMultiAsset
**/
XcmV2MultiassetWildMultiAsset: {
_enum: {
@@ -2526,13 +2596,13 @@
}
},
/**
- * Lookup300: xcm::v2::multiasset::WildFungibility
+ * Lookup305: xcm::v2::multiasset::WildFungibility
**/
XcmV2MultiassetWildFungibility: {
_enum: ['Fungible', 'NonFungible']
},
/**
- * Lookup301: xcm::v2::WeightLimit
+ * Lookup306: xcm::v2::WeightLimit
**/
XcmV2WeightLimit: {
_enum: {
@@ -2541,11 +2611,11 @@
}
},
/**
- * Lookup310: cumulus_pallet_xcm::pallet::Call<T>
+ * Lookup315: cumulus_pallet_xcm::pallet::Call<T>
**/
CumulusPalletXcmCall: 'Null',
/**
- * Lookup311: cumulus_pallet_dmp_queue::pallet::Call<T>
+ * Lookup316: cumulus_pallet_dmp_queue::pallet::Call<T>
**/
CumulusPalletDmpQueueCall: {
_enum: {
@@ -2556,7 +2626,7 @@
}
},
/**
- * Lookup312: pallet_inflation::pallet::Call<T>
+ * Lookup317: pallet_inflation::pallet::Call<T>
**/
PalletInflationCall: {
_enum: {
@@ -2566,7 +2636,7 @@
}
},
/**
- * Lookup313: pallet_unique::Call<T>
+ * Lookup318: pallet_unique::pallet::Call<T>
**/
PalletUniqueCall: {
_enum: {
@@ -2717,7 +2787,7 @@
}
},
/**
- * Lookup318: up_data_structs::CollectionMode
+ * Lookup323: up_data_structs::CollectionMode
**/
UpDataStructsCollectionMode: {
_enum: {
@@ -2727,7 +2797,7 @@
}
},
/**
- * Lookup319: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
+ * Lookup324: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
**/
UpDataStructsCreateCollectionData: {
mode: 'UpDataStructsCollectionMode',
@@ -2742,13 +2812,13 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup321: up_data_structs::AccessMode
+ * Lookup326: up_data_structs::AccessMode
**/
UpDataStructsAccessMode: {
_enum: ['Normal', 'AllowList']
},
/**
- * Lookup323: up_data_structs::CollectionLimits
+ * Lookup328: up_data_structs::CollectionLimits
**/
UpDataStructsCollectionLimits: {
accountTokenOwnershipLimit: 'Option<u32>',
@@ -2762,7 +2832,7 @@
transfersEnabled: 'Option<bool>'
},
/**
- * Lookup325: up_data_structs::SponsoringRateLimit
+ * Lookup330: up_data_structs::SponsoringRateLimit
**/
UpDataStructsSponsoringRateLimit: {
_enum: {
@@ -2771,7 +2841,7 @@
}
},
/**
- * Lookup328: up_data_structs::CollectionPermissions
+ * Lookup333: up_data_structs::CollectionPermissions
**/
UpDataStructsCollectionPermissions: {
access: 'Option<UpDataStructsAccessMode>',
@@ -2779,7 +2849,7 @@
nesting: 'Option<UpDataStructsNestingPermissions>'
},
/**
- * Lookup330: up_data_structs::NestingPermissions
+ * Lookup335: up_data_structs::NestingPermissions
**/
UpDataStructsNestingPermissions: {
tokenOwner: 'bool',
@@ -2787,18 +2857,18 @@
restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
},
/**
- * Lookup332: up_data_structs::OwnerRestrictedSet
+ * Lookup337: up_data_structs::OwnerRestrictedSet
**/
UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
/**
- * Lookup337: up_data_structs::PropertyKeyPermission
+ * Lookup342: up_data_structs::PropertyKeyPermission
**/
UpDataStructsPropertyKeyPermission: {
key: 'Bytes',
permission: 'UpDataStructsPropertyPermission'
},
/**
- * Lookup338: up_data_structs::PropertyPermission
+ * Lookup343: up_data_structs::PropertyPermission
**/
UpDataStructsPropertyPermission: {
mutable: 'bool',
@@ -2806,14 +2876,14 @@
tokenOwner: 'bool'
},
/**
- * Lookup341: up_data_structs::Property
+ * Lookup346: up_data_structs::Property
**/
UpDataStructsProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup344: up_data_structs::CreateItemData
+ * Lookup349: up_data_structs::CreateItemData
**/
UpDataStructsCreateItemData: {
_enum: {
@@ -2823,26 +2893,26 @@
}
},
/**
- * Lookup345: up_data_structs::CreateNftData
+ * Lookup350: up_data_structs::CreateNftData
**/
UpDataStructsCreateNftData: {
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup346: up_data_structs::CreateFungibleData
+ * Lookup351: up_data_structs::CreateFungibleData
**/
UpDataStructsCreateFungibleData: {
value: 'u128'
},
/**
- * Lookup347: up_data_structs::CreateReFungibleData
+ * Lookup352: up_data_structs::CreateReFungibleData
**/
UpDataStructsCreateReFungibleData: {
pieces: 'u128',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup350: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup355: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateItemExData: {
_enum: {
@@ -2853,14 +2923,14 @@
}
},
/**
- * Lookup352: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup357: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateNftExData: {
properties: 'Vec<UpDataStructsProperty>',
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup359: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup364: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateRefungibleExSingleOwner: {
user: 'PalletEvmAccountBasicCrossAccountIdRepr',
@@ -2868,14 +2938,14 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup361: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup366: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsCreateRefungibleExMultipleOwners: {
users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup362: pallet_configuration::pallet::Call<T>
+ * Lookup367: pallet_configuration::pallet::Call<T>
**/
PalletConfigurationCall: {
_enum: {
@@ -2901,7 +2971,7 @@
}
},
/**
- * Lookup364: pallet_configuration::AppPromotionConfiguration<BlockNumber>
+ * Lookup369: pallet_configuration::AppPromotionConfiguration<BlockNumber>
**/
PalletConfigurationAppPromotionConfiguration: {
recalculationInterval: 'Option<u32>',
@@ -2910,15 +2980,11 @@
maxStakersPerCalculation: 'Option<u8>'
},
/**
- * Lookup368: pallet_template_transaction_payment::Call<T>
- **/
- PalletTemplateTransactionPaymentCall: 'Null',
- /**
- * Lookup369: pallet_structure::pallet::Call<T>
+ * Lookup373: pallet_structure::pallet::Call<T>
**/
PalletStructureCall: 'Null',
/**
- * Lookup370: pallet_app_promotion::pallet::Call<T>
+ * Lookup374: pallet_app_promotion::pallet::Call<T>
**/
PalletAppPromotionCall: {
_enum: {
@@ -2950,7 +3016,7 @@
}
},
/**
- * Lookup371: pallet_foreign_assets::module::Call<T>
+ * Lookup375: pallet_foreign_assets::module::Call<T>
**/
PalletForeignAssetsModuleCall: {
_enum: {
@@ -2967,7 +3033,7 @@
}
},
/**
- * Lookup372: pallet_evm::pallet::Call<T>
+ * Lookup376: pallet_evm::pallet::Call<T>
**/
PalletEvmCall: {
_enum: {
@@ -3010,7 +3076,7 @@
}
},
/**
- * Lookup378: pallet_ethereum::pallet::Call<T>
+ * Lookup382: pallet_ethereum::pallet::Call<T>
**/
PalletEthereumCall: {
_enum: {
@@ -3020,7 +3086,7 @@
}
},
/**
- * Lookup379: ethereum::transaction::TransactionV2
+ * Lookup383: ethereum::transaction::TransactionV2
**/
EthereumTransactionTransactionV2: {
_enum: {
@@ -3030,7 +3096,7 @@
}
},
/**
- * Lookup380: ethereum::transaction::LegacyTransaction
+ * Lookup384: ethereum::transaction::LegacyTransaction
**/
EthereumTransactionLegacyTransaction: {
nonce: 'U256',
@@ -3042,7 +3108,7 @@
signature: 'EthereumTransactionTransactionSignature'
},
/**
- * Lookup381: ethereum::transaction::TransactionAction
+ * Lookup385: ethereum::transaction::TransactionAction
**/
EthereumTransactionTransactionAction: {
_enum: {
@@ -3051,7 +3117,7 @@
}
},
/**
- * Lookup382: ethereum::transaction::TransactionSignature
+ * Lookup386: ethereum::transaction::TransactionSignature
**/
EthereumTransactionTransactionSignature: {
v: 'u64',
@@ -3059,7 +3125,7 @@
s: 'H256'
},
/**
- * Lookup384: ethereum::transaction::EIP2930Transaction
+ * Lookup388: ethereum::transaction::EIP2930Transaction
**/
EthereumTransactionEip2930Transaction: {
chainId: 'u64',
@@ -3075,14 +3141,14 @@
s: 'H256'
},
/**
- * Lookup386: ethereum::transaction::AccessListItem
+ * Lookup390: ethereum::transaction::AccessListItem
**/
EthereumTransactionAccessListItem: {
address: 'H160',
storageKeys: 'Vec<H256>'
},
/**
- * Lookup387: ethereum::transaction::EIP1559Transaction
+ * Lookup391: ethereum::transaction::EIP1559Transaction
**/
EthereumTransactionEip1559Transaction: {
chainId: 'u64',
@@ -3099,13 +3165,13 @@
s: 'H256'
},
/**
- * Lookup388: pallet_evm_coder_substrate::pallet::Call<T>
+ * Lookup392: pallet_evm_coder_substrate::pallet::Call<T>
**/
PalletEvmCoderSubstrateCall: {
_enum: ['empty_call']
},
/**
- * Lookup389: pallet_evm_contract_helpers::pallet::Call<T>
+ * Lookup393: pallet_evm_contract_helpers::pallet::Call<T>
**/
PalletEvmContractHelpersCall: {
_enum: {
@@ -3115,7 +3181,7 @@
}
},
/**
- * Lookup391: pallet_evm_migration::pallet::Call<T>
+ * Lookup395: pallet_evm_migration::pallet::Call<T>
**/
PalletEvmMigrationCall: {
_enum: {
@@ -3140,7 +3206,7 @@
}
},
/**
- * Lookup395: pallet_maintenance::pallet::Call<T>
+ * Lookup399: pallet_maintenance::pallet::Call<T>
**/
PalletMaintenanceCall: {
_enum: {
@@ -3156,7 +3222,7 @@
}
},
/**
- * Lookup396: pallet_test_utils::pallet::Call<T>
+ * Lookup400: pallet_test_utils::pallet::Call<T>
**/
PalletTestUtilsCall: {
_enum: {
@@ -3175,32 +3241,32 @@
}
},
/**
- * Lookup398: pallet_sudo::pallet::Error<T>
+ * Lookup402: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup400: orml_vesting::module::Error<T>
+ * Lookup404: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup401: orml_xtokens::module::Error<T>
+ * Lookup405: orml_xtokens::module::Error<T>
**/
OrmlXtokensModuleError: {
_enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
},
/**
- * Lookup404: orml_tokens::BalanceLock<Balance>
+ * Lookup408: orml_tokens::BalanceLock<Balance>
**/
OrmlTokensBalanceLock: {
id: '[u8;8]',
amount: 'u128'
},
/**
- * Lookup406: orml_tokens::AccountData<Balance>
+ * Lookup410: orml_tokens::AccountData<Balance>
**/
OrmlTokensAccountData: {
free: 'u128',
@@ -3208,20 +3274,20 @@
frozen: 'u128'
},
/**
- * Lookup408: orml_tokens::ReserveData<ReserveIdentifier, Balance>
+ * Lookup412: orml_tokens::ReserveData<ReserveIdentifier, Balance>
**/
OrmlTokensReserveData: {
id: 'Null',
amount: 'u128'
},
/**
- * Lookup410: orml_tokens::module::Error<T>
+ * Lookup414: orml_tokens::module::Error<T>
**/
OrmlTokensModuleError: {
_enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup415: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>
+ * Lookup419: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>
**/
PalletIdentityRegistrarInfo: {
account: 'AccountId32',
@@ -3229,13 +3295,13 @@
fields: 'PalletIdentityBitFlags'
},
/**
- * Lookup417: pallet_identity::pallet::Error<T>
+ * Lookup421: pallet_identity::pallet::Error<T>
**/
PalletIdentityError: {
_enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyFields', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed']
},
/**
- * Lookup418: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Balance>
+ * Lookup422: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Balance>
**/
PalletPreimageRequestStatus: {
_enum: {
@@ -3251,13 +3317,13 @@
}
},
/**
- * Lookup423: pallet_preimage::pallet::Error<T>
+ * Lookup427: pallet_preimage::pallet::Error<T>
**/
PalletPreimageError: {
_enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested']
},
/**
- * Lookup425: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup429: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -3265,19 +3331,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup426: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup430: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup429: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup433: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup432: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup436: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -3287,13 +3353,13 @@
lastIndex: 'u16'
},
/**
- * Lookup433: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup437: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup435: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup439: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
@@ -3304,13 +3370,13 @@
xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
},
/**
- * Lookup437: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup441: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup438: pallet_xcm::pallet::QueryStatus<BlockNumber>
+ * Lookup442: pallet_xcm::pallet::QueryStatus<BlockNumber>
**/
PalletXcmQueryStatus: {
_enum: {
@@ -3331,7 +3397,7 @@
}
},
/**
- * Lookup442: xcm::VersionedResponse
+ * Lookup446: xcm::VersionedResponse
**/
XcmVersionedResponse: {
_enum: {
@@ -3342,7 +3408,7 @@
}
},
/**
- * Lookup448: pallet_xcm::pallet::VersionMigrationStage
+ * Lookup452: pallet_xcm::pallet::VersionMigrationStage
**/
PalletXcmVersionMigrationStage: {
_enum: {
@@ -3353,7 +3419,7 @@
}
},
/**
- * Lookup451: xcm::VersionedAssetId
+ * Lookup455: xcm::VersionedAssetId
**/
XcmVersionedAssetId: {
_enum: {
@@ -3364,7 +3430,7 @@
}
},
/**
- * Lookup452: pallet_xcm::pallet::RemoteLockedFungibleRecord
+ * Lookup456: pallet_xcm::pallet::RemoteLockedFungibleRecord
**/
PalletXcmRemoteLockedFungibleRecord: {
amount: 'u128',
@@ -3373,23 +3439,23 @@
users: 'u32'
},
/**
- * Lookup456: pallet_xcm::pallet::Error<T>
+ * Lookup460: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed', 'InvalidAsset', 'LowBalance', 'TooManyLocks', 'AccountNotSovereign', 'FeesNotMet', 'LockNotFound', 'InUse']
},
/**
- * Lookup457: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup461: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup458: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup462: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
maxIndividual: 'SpWeightsWeightV2Weight'
},
/**
- * Lookup459: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup463: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -3397,25 +3463,25 @@
overweightCount: 'u64'
},
/**
- * Lookup462: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup466: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup466: pallet_unique::Error<T>
+ * Lookup470: pallet_unique::pallet::Error<T>
**/
PalletUniqueError: {
_enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
},
/**
- * Lookup467: pallet_configuration::pallet::Error<T>
+ * Lookup471: pallet_configuration::pallet::Error<T>
**/
PalletConfigurationError: {
_enum: ['InconsistentConfiguration']
},
/**
- * Lookup468: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ * Lookup472: up_data_structs::Collection<sp_core::crypto::AccountId32>
**/
UpDataStructsCollection: {
owner: 'AccountId32',
@@ -3429,7 +3495,7 @@
flags: '[u8;1]'
},
/**
- * Lookup469: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup473: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipStateAccountId32: {
_enum: {
@@ -3439,7 +3505,7 @@
}
},
/**
- * Lookup470: up_data_structs::Properties
+ * Lookup474: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -3447,15 +3513,15 @@
reserved: 'u32'
},
/**
- * Lookup471: up_data_structs::PropertiesMap<bounded_collections::bounded_vec::BoundedVec<T, S>>
+ * Lookup475: up_data_structs::PropertiesMap<bounded_collections::bounded_vec::BoundedVec<T, S>>
**/
UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
/**
- * Lookup476: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ * Lookup480: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
**/
UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
/**
- * Lookup483: up_data_structs::CollectionStats
+ * Lookup487: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -3463,18 +3529,18 @@
alive: 'u32'
},
/**
- * Lookup484: up_data_structs::TokenChild
+ * Lookup488: up_data_structs::TokenChild
**/
UpDataStructsTokenChild: {
token: 'u32',
collection: 'u32'
},
/**
- * Lookup485: PhantomType::up_data_structs<T>
+ * Lookup489: PhantomType::up_data_structs<T>
**/
PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,UpPovEstimateRpcPovInfo);0]',
/**
- * Lookup487: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup491: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
properties: 'Vec<UpDataStructsProperty>',
@@ -3482,7 +3548,7 @@
pieces: 'u128'
},
/**
- * Lookup489: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup493: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -3499,14 +3565,14 @@
flags: 'UpDataStructsRpcCollectionFlags'
},
/**
- * Lookup490: up_data_structs::RpcCollectionFlags
+ * Lookup494: up_data_structs::RpcCollectionFlags
**/
UpDataStructsRpcCollectionFlags: {
foreign: 'bool',
erc721metadata: 'bool'
},
/**
- * Lookup491: up_pov_estimate_rpc::PovInfo
+ * Lookup495: up_pov_estimate_rpc::PovInfo
**/
UpPovEstimateRpcPovInfo: {
proofSize: 'u64',
@@ -3516,7 +3582,7 @@
keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'
},
/**
- * Lookup494: sp_runtime::transaction_validity::TransactionValidityError
+ * Lookup498: sp_runtime::transaction_validity::TransactionValidityError
**/
SpRuntimeTransactionValidityTransactionValidityError: {
_enum: {
@@ -3525,7 +3591,7 @@
}
},
/**
- * Lookup495: sp_runtime::transaction_validity::InvalidTransaction
+ * Lookup499: sp_runtime::transaction_validity::InvalidTransaction
**/
SpRuntimeTransactionValidityInvalidTransaction: {
_enum: {
@@ -3543,7 +3609,7 @@
}
},
/**
- * Lookup496: sp_runtime::transaction_validity::UnknownTransaction
+ * Lookup500: sp_runtime::transaction_validity::UnknownTransaction
**/
SpRuntimeTransactionValidityUnknownTransaction: {
_enum: {
@@ -3553,74 +3619,74 @@
}
},
/**
- * Lookup498: up_pov_estimate_rpc::TrieKeyValue
+ * Lookup502: up_pov_estimate_rpc::TrieKeyValue
**/
UpPovEstimateRpcTrieKeyValue: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup500: pallet_common::pallet::Error<T>
+ * Lookup504: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
_enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsNotEthMirror', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']
},
/**
- * Lookup502: pallet_fungible::pallet::Error<T>
+ * Lookup506: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']
},
/**
- * Lookup507: pallet_refungible::pallet::Error<T>
+ * Lookup511: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup508: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup512: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup510: up_data_structs::PropertyScope
+ * Lookup514: up_data_structs::PropertyScope
**/
UpDataStructsPropertyScope: {
_enum: ['None', 'Rmrk']
},
/**
- * Lookup513: pallet_nonfungible::pallet::Error<T>
+ * Lookup517: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup514: pallet_structure::pallet::Error<T>
+ * Lookup518: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound', 'CantNestTokenUnderCollection']
},
/**
- * Lookup519: pallet_app_promotion::pallet::Error<T>
+ * Lookup523: pallet_app_promotion::pallet::Error<T>
**/
PalletAppPromotionError: {
_enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation', 'InsufficientStakedBalance']
},
/**
- * Lookup520: pallet_foreign_assets::module::Error<T>
+ * Lookup524: pallet_foreign_assets::module::Error<T>
**/
PalletForeignAssetsModuleError: {
_enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
},
/**
- * Lookup522: pallet_evm::pallet::Error<T>
+ * Lookup526: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']
},
/**
- * Lookup525: fp_rpc::TransactionStatus
+ * Lookup529: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -3632,11 +3698,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup527: ethbloom::Bloom
+ * Lookup531: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup529: ethereum::receipt::ReceiptV3
+ * Lookup533: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -3646,7 +3712,7 @@
}
},
/**
- * Lookup530: ethereum::receipt::EIP658ReceiptData
+ * Lookup534: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -3655,7 +3721,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup531: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup535: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -3663,7 +3729,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup532: ethereum::header::Header
+ * Lookup536: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -3683,23 +3749,23 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup533: ethereum_types::hash::H64
+ * Lookup537: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup538: pallet_ethereum::pallet::Error<T>
+ * Lookup542: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup539: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup543: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup540: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup544: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
_enum: {
@@ -3709,35 +3775,35 @@
}
},
/**
- * Lookup541: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup545: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup547: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup551: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
},
/**
- * Lookup548: pallet_evm_migration::pallet::Error<T>
+ * Lookup552: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
},
/**
- * Lookup549: pallet_maintenance::pallet::Error<T>
+ * Lookup553: pallet_maintenance::pallet::Error<T>
**/
PalletMaintenanceError: 'Null',
/**
- * Lookup550: pallet_test_utils::pallet::Error<T>
+ * Lookup554: pallet_test_utils::pallet::Error<T>
**/
PalletTestUtilsError: {
_enum: ['TestPalletDisabled', 'TriggerRollback']
},
/**
- * Lookup552: sp_runtime::MultiSignature
+ * Lookup556: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -3747,55 +3813,55 @@
}
},
/**
- * Lookup553: sp_core::ed25519::Signature
+ * Lookup557: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup555: sp_core::sr25519::Signature
+ * Lookup559: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup556: sp_core::ecdsa::Signature
+ * Lookup560: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup559: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup563: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup560: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+ * Lookup564: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: 'Null',
/**
- * Lookup561: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup565: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup564: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup568: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup565: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup569: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup566: opal_runtime::runtime_common::maintenance::CheckMaintenance
+ * Lookup570: opal_runtime::runtime_common::maintenance::CheckMaintenance
**/
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
/**
- * Lookup567: opal_runtime::runtime_common::identity::DisableIdentityCalls
+ * Lookup571: opal_runtime::runtime_common::identity::DisableIdentityCalls
**/
OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',
/**
- * Lookup568: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup572: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup569: opal_runtime::Runtime
+ * Lookup573: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup570: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup574: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
**/
PalletEthereumFakeTransactionFinalizer: 'Null'
};
tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, 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, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, 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, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, 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, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, 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, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, 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, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, 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, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -15,6 +15,7 @@
CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;
CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;
CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;
+ CumulusPalletParachainSystemCodeUpgradeAuthorization: CumulusPalletParachainSystemCodeUpgradeAuthorization;
CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;
CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;
CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;
@@ -98,6 +99,7 @@
PalletBalancesCall: PalletBalancesCall;
PalletBalancesError: PalletBalancesError;
PalletBalancesEvent: PalletBalancesEvent;
+ PalletBalancesIdAmount: PalletBalancesIdAmount;
PalletBalancesReasons: PalletBalancesReasons;
PalletBalancesReserveData: PalletBalancesReserveData;
PalletCollatorSelectionCall: PalletCollatorSelectionCall;
@@ -162,7 +164,6 @@
PalletSudoCall: PalletSudoCall;
PalletSudoError: PalletSudoError;
PalletSudoEvent: PalletSudoEvent;
- PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;
PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;
PalletTestUtilsCall: PalletTestUtilsCall;
PalletTestUtilsError: PalletTestUtilsError;
@@ -188,10 +189,10 @@
PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;
PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;
- PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;
- PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;
- PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;
- PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;
+ PolkadotPrimitivesV4AbridgedHostConfiguration: PolkadotPrimitivesV4AbridgedHostConfiguration;
+ PolkadotPrimitivesV4AbridgedHrmpChannel: PolkadotPrimitivesV4AbridgedHrmpChannel;
+ PolkadotPrimitivesV4PersistedValidationData: PolkadotPrimitivesV4PersistedValidationData;
+ PolkadotPrimitivesV4UpgradeRestriction: PolkadotPrimitivesV4UpgradeRestriction;
SpArithmeticArithmeticError: SpArithmeticArithmeticError;
SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -25,29 +25,29 @@
interface PalletBalancesAccountData extends Struct {
readonly free: u128;
readonly reserved: u128;
- readonly miscFrozen: u128;
- readonly feeFrozen: u128;
+ readonly frozen: u128;
+ readonly flags: u128;
}
- /** @name FrameSupportDispatchPerDispatchClassWeight (7) */
+ /** @name FrameSupportDispatchPerDispatchClassWeight (8) */
interface FrameSupportDispatchPerDispatchClassWeight extends Struct {
readonly normal: SpWeightsWeightV2Weight;
readonly operational: SpWeightsWeightV2Weight;
readonly mandatory: SpWeightsWeightV2Weight;
}
- /** @name SpWeightsWeightV2Weight (8) */
+ /** @name SpWeightsWeightV2Weight (9) */
interface SpWeightsWeightV2Weight extends Struct {
readonly refTime: Compact<u64>;
readonly proofSize: Compact<u64>;
}
- /** @name SpRuntimeDigest (13) */
+ /** @name SpRuntimeDigest (14) */
interface SpRuntimeDigest extends Struct {
readonly logs: Vec<SpRuntimeDigestDigestItem>;
}
- /** @name SpRuntimeDigestDigestItem (15) */
+ /** @name SpRuntimeDigestDigestItem (16) */
interface SpRuntimeDigestDigestItem extends Enum {
readonly isOther: boolean;
readonly asOther: Bytes;
@@ -61,14 +61,14 @@
readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';
}
- /** @name FrameSystemEventRecord (18) */
+ /** @name FrameSystemEventRecord (19) */
interface FrameSystemEventRecord extends Struct {
readonly phase: FrameSystemPhase;
readonly event: Event;
readonly topics: Vec<H256>;
}
- /** @name FrameSystemEvent (20) */
+ /** @name FrameSystemEvent (21) */
interface FrameSystemEvent extends Enum {
readonly isExtrinsicSuccess: boolean;
readonly asExtrinsicSuccess: {
@@ -96,14 +96,14 @@
readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
}
- /** @name FrameSupportDispatchDispatchInfo (21) */
+ /** @name FrameSupportDispatchDispatchInfo (22) */
interface FrameSupportDispatchDispatchInfo extends Struct {
readonly weight: SpWeightsWeightV2Weight;
readonly class: FrameSupportDispatchDispatchClass;
readonly paysFee: FrameSupportDispatchPays;
}
- /** @name FrameSupportDispatchDispatchClass (22) */
+ /** @name FrameSupportDispatchDispatchClass (23) */
interface FrameSupportDispatchDispatchClass extends Enum {
readonly isNormal: boolean;
readonly isOperational: boolean;
@@ -111,14 +111,14 @@
readonly type: 'Normal' | 'Operational' | 'Mandatory';
}
- /** @name FrameSupportDispatchPays (23) */
+ /** @name FrameSupportDispatchPays (24) */
interface FrameSupportDispatchPays extends Enum {
readonly isYes: boolean;
readonly isNo: boolean;
readonly type: 'Yes' | 'No';
}
- /** @name SpRuntimeDispatchError (24) */
+ /** @name SpRuntimeDispatchError (25) */
interface SpRuntimeDispatchError extends Enum {
readonly isOther: boolean;
readonly isCannotLookup: boolean;
@@ -140,25 +140,27 @@
readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';
}
- /** @name SpRuntimeModuleError (25) */
+ /** @name SpRuntimeModuleError (26) */
interface SpRuntimeModuleError extends Struct {
readonly index: u8;
readonly error: U8aFixed;
}
- /** @name SpRuntimeTokenError (26) */
+ /** @name SpRuntimeTokenError (27) */
interface SpRuntimeTokenError extends Enum {
- readonly isNoFunds: boolean;
- readonly isWouldDie: boolean;
+ readonly isFundsUnavailable: boolean;
+ readonly isOnlyProvider: boolean;
readonly isBelowMinimum: boolean;
readonly isCannotCreate: boolean;
readonly isUnknownAsset: boolean;
readonly isFrozen: boolean;
readonly isUnsupported: boolean;
- readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';
+ readonly isCannotCreateHold: boolean;
+ readonly isNotExpendable: boolean;
+ readonly type: 'FundsUnavailable' | 'OnlyProvider' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported' | 'CannotCreateHold' | 'NotExpendable';
}
- /** @name SpArithmeticArithmeticError (27) */
+ /** @name SpArithmeticArithmeticError (28) */
interface SpArithmeticArithmeticError extends Enum {
readonly isUnderflow: boolean;
readonly isOverflow: boolean;
@@ -166,14 +168,14 @@
readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
}
- /** @name SpRuntimeTransactionalError (28) */
+ /** @name SpRuntimeTransactionalError (29) */
interface SpRuntimeTransactionalError extends Enum {
readonly isLimitReached: boolean;
readonly isNoLayer: boolean;
readonly type: 'LimitReached' | 'NoLayer';
}
- /** @name CumulusPalletParachainSystemEvent (29) */
+ /** @name CumulusPalletParachainSystemEvent (30) */
interface CumulusPalletParachainSystemEvent extends Enum {
readonly isValidationFunctionStored: boolean;
readonly isValidationFunctionApplied: boolean;
@@ -201,7 +203,7 @@
readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed' | 'UpwardMessageSent';
}
- /** @name PalletCollatorSelectionEvent (31) */
+ /** @name PalletCollatorSelectionEvent (32) */
interface PalletCollatorSelectionEvent extends Enum {
readonly isInvulnerableAdded: boolean;
readonly asInvulnerableAdded: {
@@ -232,7 +234,7 @@
readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';
}
- /** @name PalletSessionEvent (32) */
+ /** @name PalletSessionEvent (33) */
interface PalletSessionEvent extends Enum {
readonly isNewSession: boolean;
readonly asNewSession: {
@@ -241,7 +243,7 @@
readonly type: 'NewSession';
}
- /** @name PalletBalancesEvent (33) */
+ /** @name PalletBalancesEvent (34) */
interface PalletBalancesEvent extends Enum {
readonly isEndowed: boolean;
readonly asEndowed: {
@@ -263,7 +265,6 @@
readonly asBalanceSet: {
readonly who: AccountId32;
readonly free: u128;
- readonly reserved: u128;
} & Struct;
readonly isReserved: boolean;
readonly asReserved: {
@@ -297,17 +298,69 @@
readonly who: AccountId32;
readonly amount: u128;
} & Struct;
- readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';
+ readonly isMinted: boolean;
+ readonly asMinted: {
+ readonly who: AccountId32;
+ readonly amount: u128;
+ } & Struct;
+ readonly isBurned: boolean;
+ readonly asBurned: {
+ readonly who: AccountId32;
+ readonly amount: u128;
+ } & Struct;
+ readonly isSuspended: boolean;
+ readonly asSuspended: {
+ readonly who: AccountId32;
+ readonly amount: u128;
+ } & Struct;
+ readonly isRestored: boolean;
+ readonly asRestored: {
+ readonly who: AccountId32;
+ readonly amount: u128;
+ } & Struct;
+ readonly isUpgraded: boolean;
+ readonly asUpgraded: {
+ readonly who: AccountId32;
+ } & Struct;
+ readonly isIssued: boolean;
+ readonly asIssued: {
+ readonly amount: u128;
+ } & Struct;
+ readonly isRescinded: boolean;
+ readonly asRescinded: {
+ readonly amount: u128;
+ } & Struct;
+ readonly isLocked: boolean;
+ readonly asLocked: {
+ readonly who: AccountId32;
+ readonly amount: u128;
+ } & Struct;
+ readonly isUnlocked: boolean;
+ readonly asUnlocked: {
+ readonly who: AccountId32;
+ readonly amount: u128;
+ } & Struct;
+ readonly isFrozen: boolean;
+ readonly asFrozen: {
+ readonly who: AccountId32;
+ readonly amount: u128;
+ } & Struct;
+ readonly isThawed: boolean;
+ readonly asThawed: {
+ readonly who: AccountId32;
+ readonly amount: u128;
+ } & Struct;
+ readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed';
}
- /** @name FrameSupportTokensMiscBalanceStatus (34) */
+ /** @name FrameSupportTokensMiscBalanceStatus (35) */
interface FrameSupportTokensMiscBalanceStatus extends Enum {
readonly isFree: boolean;
readonly isReserved: boolean;
readonly type: 'Free' | 'Reserved';
}
- /** @name PalletTransactionPaymentEvent (35) */
+ /** @name PalletTransactionPaymentEvent (36) */
interface PalletTransactionPaymentEvent extends Enum {
readonly isTransactionFeePaid: boolean;
readonly asTransactionFeePaid: {
@@ -318,7 +371,7 @@
readonly type: 'TransactionFeePaid';
}
- /** @name PalletTreasuryEvent (36) */
+ /** @name PalletTreasuryEvent (37) */
interface PalletTreasuryEvent extends Enum {
readonly isProposed: boolean;
readonly asProposed: {
@@ -365,7 +418,7 @@
readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive';
}
- /** @name PalletSudoEvent (37) */
+ /** @name PalletSudoEvent (38) */
interface PalletSudoEvent extends Enum {
readonly isSudid: boolean;
readonly asSudid: {
@@ -382,7 +435,7 @@
readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
}
- /** @name OrmlVestingModuleEvent (41) */
+ /** @name OrmlVestingModuleEvent (42) */
interface OrmlVestingModuleEvent extends Enum {
readonly isVestingScheduleAdded: boolean;
readonly asVestingScheduleAdded: {
@@ -402,7 +455,7 @@
readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
}
- /** @name OrmlVestingVestingSchedule (42) */
+ /** @name OrmlVestingVestingSchedule (43) */
interface OrmlVestingVestingSchedule extends Struct {
readonly start: u32;
readonly period: u32;
@@ -410,7 +463,7 @@
readonly perPeriod: Compact<u128>;
}
- /** @name OrmlXtokensModuleEvent (44) */
+ /** @name OrmlXtokensModuleEvent (45) */
interface OrmlXtokensModuleEvent extends Enum {
readonly isTransferredMultiAssets: boolean;
readonly asTransferredMultiAssets: {
@@ -422,16 +475,16 @@
readonly type: 'TransferredMultiAssets';
}
- /** @name XcmV3MultiassetMultiAssets (45) */
+ /** @name XcmV3MultiassetMultiAssets (46) */
interface XcmV3MultiassetMultiAssets extends Vec<XcmV3MultiAsset> {}
- /** @name XcmV3MultiAsset (47) */
+ /** @name XcmV3MultiAsset (48) */
interface XcmV3MultiAsset extends Struct {
readonly id: XcmV3MultiassetAssetId;
readonly fun: XcmV3MultiassetFungibility;
}
- /** @name XcmV3MultiassetAssetId (48) */
+ /** @name XcmV3MultiassetAssetId (49) */
interface XcmV3MultiassetAssetId extends Enum {
readonly isConcrete: boolean;
readonly asConcrete: XcmV3MultiLocation;
@@ -440,13 +493,13 @@
readonly type: 'Concrete' | 'Abstract';
}
- /** @name XcmV3MultiLocation (49) */
+ /** @name XcmV3MultiLocation (50) */
interface XcmV3MultiLocation extends Struct {
readonly parents: u8;
readonly interior: XcmV3Junctions;
}
- /** @name XcmV3Junctions (50) */
+ /** @name XcmV3Junctions (51) */
interface XcmV3Junctions extends Enum {
readonly isHere: boolean;
readonly isX1: boolean;
@@ -468,7 +521,7 @@
readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
}
- /** @name XcmV3Junction (51) */
+ /** @name XcmV3Junction (52) */
interface XcmV3Junction extends Enum {
readonly isParachain: boolean;
readonly asParachain: Compact<u32>;
@@ -507,7 +560,7 @@
readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus';
}
- /** @name XcmV3JunctionNetworkId (54) */
+ /** @name XcmV3JunctionNetworkId (55) */
interface XcmV3JunctionNetworkId extends Enum {
readonly isByGenesis: boolean;
readonly asByGenesis: U8aFixed;
@@ -530,7 +583,7 @@
readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash';
}
- /** @name XcmV3JunctionBodyId (56) */
+ /** @name XcmV3JunctionBodyId (57) */
interface XcmV3JunctionBodyId extends Enum {
readonly isUnit: boolean;
readonly isMoniker: boolean;
@@ -547,7 +600,7 @@
readonly type: 'Unit' | 'Moniker' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
}
- /** @name XcmV3JunctionBodyPart (57) */
+ /** @name XcmV3JunctionBodyPart (58) */
interface XcmV3JunctionBodyPart extends Enum {
readonly isVoice: boolean;
readonly isMembers: boolean;
@@ -572,7 +625,7 @@
readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
}
- /** @name XcmV3MultiassetFungibility (58) */
+ /** @name XcmV3MultiassetFungibility (59) */
interface XcmV3MultiassetFungibility extends Enum {
readonly isFungible: boolean;
readonly asFungible: Compact<u128>;
@@ -581,7 +634,7 @@
readonly type: 'Fungible' | 'NonFungible';
}
- /** @name XcmV3MultiassetAssetInstance (59) */
+ /** @name XcmV3MultiassetAssetInstance (60) */
interface XcmV3MultiassetAssetInstance extends Enum {
readonly isUndefined: boolean;
readonly isIndex: boolean;
@@ -597,7 +650,7 @@
readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32';
}
- /** @name OrmlTokensModuleEvent (62) */
+ /** @name OrmlTokensModuleEvent (63) */
interface OrmlTokensModuleEvent extends Enum {
readonly isEndowed: boolean;
readonly asEndowed: {
@@ -697,7 +750,7 @@
readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved' | 'Locked' | 'Unlocked';
}
- /** @name PalletForeignAssetsAssetIds (63) */
+ /** @name PalletForeignAssetsAssetIds (64) */
interface PalletForeignAssetsAssetIds extends Enum {
readonly isForeignAssetId: boolean;
readonly asForeignAssetId: u32;
@@ -706,14 +759,14 @@
readonly type: 'ForeignAssetId' | 'NativeAssetId';
}
- /** @name PalletForeignAssetsNativeCurrency (64) */
+ /** @name PalletForeignAssetsNativeCurrency (65) */
interface PalletForeignAssetsNativeCurrency extends Enum {
readonly isHere: boolean;
readonly isParent: boolean;
readonly type: 'Here' | 'Parent';
}
- /** @name PalletIdentityEvent (65) */
+ /** @name PalletIdentityEvent (66) */
interface PalletIdentityEvent extends Enum {
readonly isIdentitySet: boolean;
readonly asIdentitySet: {
@@ -781,7 +834,7 @@
readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked' | 'SubIdentitiesInserted';
}
- /** @name PalletPreimageEvent (66) */
+ /** @name PalletPreimageEvent (67) */
interface PalletPreimageEvent extends Enum {
readonly isNoted: boolean;
readonly asNoted: {
@@ -798,7 +851,7 @@
readonly type: 'Noted' | 'Requested' | 'Cleared';
}
- /** @name CumulusPalletXcmpQueueEvent (67) */
+ /** @name CumulusPalletXcmpQueueEvent (68) */
interface CumulusPalletXcmpQueueEvent extends Enum {
readonly isSuccess: boolean;
readonly asSuccess: {
@@ -838,7 +891,7 @@
readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
}
- /** @name XcmV3TraitsError (68) */
+ /** @name XcmV3TraitsError (69) */
interface XcmV3TraitsError extends Enum {
readonly isOverflow: boolean;
readonly isUnimplemented: boolean;
@@ -885,7 +938,7 @@
readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'LocationFull' | 'LocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'ExpectationFalse' | 'PalletNotFound' | 'NameMismatch' | 'VersionIncompatible' | 'HoldingWouldOverflow' | 'ExportError' | 'ReanchorFailed' | 'NoDeal' | 'FeesNotMet' | 'LockError' | 'NoPermission' | 'Unanchored' | 'NotDepositable' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable' | 'ExceedsStackLimit';
}
- /** @name PalletXcmEvent (70) */
+ /** @name PalletXcmEvent (71) */
interface PalletXcmEvent extends Enum {
readonly isAttempted: boolean;
readonly asAttempted: XcmV3TraitsOutcome;
@@ -936,7 +989,7 @@
readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'InvalidQuerierVersion' | 'InvalidQuerier' | 'VersionNotifyStarted' | 'VersionNotifyRequested' | 'VersionNotifyUnrequested' | 'FeesPaid' | 'AssetsClaimed';
}
- /** @name XcmV3TraitsOutcome (71) */
+ /** @name XcmV3TraitsOutcome (72) */
interface XcmV3TraitsOutcome extends Enum {
readonly isComplete: boolean;
readonly asComplete: SpWeightsWeightV2Weight;
@@ -947,10 +1000,10 @@
readonly type: 'Complete' | 'Incomplete' | 'Error';
}
- /** @name XcmV3Xcm (72) */
+ /** @name XcmV3Xcm (73) */
interface XcmV3Xcm extends Vec<XcmV3Instruction> {}
- /** @name XcmV3Instruction (74) */
+ /** @name XcmV3Instruction (75) */
interface XcmV3Instruction extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: XcmV3MultiassetMultiAssets;
@@ -1132,7 +1185,7 @@
readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'ReportHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion' | 'BurnAsset' | 'ExpectAsset' | 'ExpectOrigin' | 'ExpectError' | 'ExpectTransactStatus' | 'QueryPallet' | 'ExpectPallet' | 'ReportTransactStatus' | 'ClearTransactStatus' | 'UniversalOrigin' | 'ExportMessage' | 'LockAsset' | 'UnlockAsset' | 'NoteUnlockable' | 'RequestUnlock' | 'SetFeesMode' | 'SetTopic' | 'ClearTopic' | 'AliasOrigin' | 'UnpaidExecution';
}
- /** @name XcmV3Response (75) */
+ /** @name XcmV3Response (76) */
interface XcmV3Response extends Enum {
readonly isNull: boolean;
readonly isAssets: boolean;
@@ -1148,7 +1201,7 @@
readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version' | 'PalletsInfo' | 'DispatchResult';
}
- /** @name XcmV3PalletInfo (79) */
+ /** @name XcmV3PalletInfo (80) */
interface XcmV3PalletInfo extends Struct {
readonly index: Compact<u32>;
readonly name: Bytes;
@@ -1158,7 +1211,7 @@
readonly patch: Compact<u32>;
}
- /** @name XcmV3MaybeErrorCode (82) */
+ /** @name XcmV3MaybeErrorCode (83) */
interface XcmV3MaybeErrorCode extends Enum {
readonly isSuccess: boolean;
readonly isError: boolean;
@@ -1168,7 +1221,7 @@
readonly type: 'Success' | 'Error' | 'TruncatedError';
}
- /** @name XcmV2OriginKind (85) */
+ /** @name XcmV2OriginKind (86) */
interface XcmV2OriginKind extends Enum {
readonly isNative: boolean;
readonly isSovereignAccount: boolean;
@@ -1177,19 +1230,19 @@
readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';
}
- /** @name XcmDoubleEncoded (86) */
+ /** @name XcmDoubleEncoded (87) */
interface XcmDoubleEncoded extends Struct {
readonly encoded: Bytes;
}
- /** @name XcmV3QueryResponseInfo (87) */
+ /** @name XcmV3QueryResponseInfo (88) */
interface XcmV3QueryResponseInfo extends Struct {
readonly destination: XcmV3MultiLocation;
readonly queryId: Compact<u64>;
readonly maxWeight: SpWeightsWeightV2Weight;
}
- /** @name XcmV3MultiassetMultiAssetFilter (88) */
+ /** @name XcmV3MultiassetMultiAssetFilter (89) */
interface XcmV3MultiassetMultiAssetFilter extends Enum {
readonly isDefinite: boolean;
readonly asDefinite: XcmV3MultiassetMultiAssets;
@@ -1198,7 +1251,7 @@
readonly type: 'Definite' | 'Wild';
}
- /** @name XcmV3MultiassetWildMultiAsset (89) */
+ /** @name XcmV3MultiassetWildMultiAsset (90) */
interface XcmV3MultiassetWildMultiAsset extends Enum {
readonly isAll: boolean;
readonly isAllOf: boolean;
@@ -1217,14 +1270,14 @@
readonly type: 'All' | 'AllOf' | 'AllCounted' | 'AllOfCounted';
}
- /** @name XcmV3MultiassetWildFungibility (90) */
+ /** @name XcmV3MultiassetWildFungibility (91) */
interface XcmV3MultiassetWildFungibility extends Enum {
readonly isFungible: boolean;
readonly isNonFungible: boolean;
readonly type: 'Fungible' | 'NonFungible';
}
- /** @name XcmV3WeightLimit (92) */
+ /** @name XcmV3WeightLimit (93) */
interface XcmV3WeightLimit extends Enum {
readonly isUnlimited: boolean;
readonly isLimited: boolean;
@@ -1232,7 +1285,7 @@
readonly type: 'Unlimited' | 'Limited';
}
- /** @name XcmVersionedMultiAssets (93) */
+ /** @name XcmVersionedMultiAssets (94) */
interface XcmVersionedMultiAssets extends Enum {
readonly isV2: boolean;
readonly asV2: XcmV2MultiassetMultiAssets;
@@ -1241,16 +1294,16 @@
readonly type: 'V2' | 'V3';
}
- /** @name XcmV2MultiassetMultiAssets (94) */
+ /** @name XcmV2MultiassetMultiAssets (95) */
interface XcmV2MultiassetMultiAssets extends Vec<XcmV2MultiAsset> {}
- /** @name XcmV2MultiAsset (96) */
+ /** @name XcmV2MultiAsset (97) */
interface XcmV2MultiAsset extends Struct {
readonly id: XcmV2MultiassetAssetId;
readonly fun: XcmV2MultiassetFungibility;
}
- /** @name XcmV2MultiassetAssetId (97) */
+ /** @name XcmV2MultiassetAssetId (98) */
interface XcmV2MultiassetAssetId extends Enum {
readonly isConcrete: boolean;
readonly asConcrete: XcmV2MultiLocation;
@@ -1259,13 +1312,13 @@
readonly type: 'Concrete' | 'Abstract';
}
- /** @name XcmV2MultiLocation (98) */
+ /** @name XcmV2MultiLocation (99) */
interface XcmV2MultiLocation extends Struct {
readonly parents: u8;
readonly interior: XcmV2MultilocationJunctions;
}
- /** @name XcmV2MultilocationJunctions (99) */
+ /** @name XcmV2MultilocationJunctions (100) */
interface XcmV2MultilocationJunctions extends Enum {
readonly isHere: boolean;
readonly isX1: boolean;
@@ -1287,7 +1340,7 @@
readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
}
- /** @name XcmV2Junction (100) */
+ /** @name XcmV2Junction (101) */
interface XcmV2Junction extends Enum {
readonly isParachain: boolean;
readonly asParachain: Compact<u32>;
@@ -1321,7 +1374,7 @@
readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
}
- /** @name XcmV2NetworkId (101) */
+ /** @name XcmV2NetworkId (102) */
interface XcmV2NetworkId extends Enum {
readonly isAny: boolean;
readonly isNamed: boolean;
@@ -1331,7 +1384,7 @@
readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';
}
- /** @name XcmV2BodyId (103) */
+ /** @name XcmV2BodyId (104) */
interface XcmV2BodyId extends Enum {
readonly isUnit: boolean;
readonly isNamed: boolean;
@@ -1348,7 +1401,7 @@
readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
}
- /** @name XcmV2BodyPart (104) */
+ /** @name XcmV2BodyPart (105) */
interface XcmV2BodyPart extends Enum {
readonly isVoice: boolean;
readonly isMembers: boolean;
@@ -1373,7 +1426,7 @@
readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
}
- /** @name XcmV2MultiassetFungibility (105) */
+ /** @name XcmV2MultiassetFungibility (106) */
interface XcmV2MultiassetFungibility extends Enum {
readonly isFungible: boolean;
readonly asFungible: Compact<u128>;
@@ -1382,7 +1435,7 @@
readonly type: 'Fungible' | 'NonFungible';
}
- /** @name XcmV2MultiassetAssetInstance (106) */
+ /** @name XcmV2MultiassetAssetInstance (107) */
interface XcmV2MultiassetAssetInstance extends Enum {
readonly isUndefined: boolean;
readonly isIndex: boolean;
@@ -1400,7 +1453,7 @@
readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';
}
- /** @name XcmVersionedMultiLocation (107) */
+ /** @name XcmVersionedMultiLocation (108) */
interface XcmVersionedMultiLocation extends Enum {
readonly isV2: boolean;
readonly asV2: XcmV2MultiLocation;
@@ -1409,7 +1462,7 @@
readonly type: 'V2' | 'V3';
}
- /** @name CumulusPalletXcmEvent (108) */
+ /** @name CumulusPalletXcmEvent (109) */
interface CumulusPalletXcmEvent extends Enum {
readonly isInvalidFormat: boolean;
readonly asInvalidFormat: U8aFixed;
@@ -1420,7 +1473,7 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
}
- /** @name CumulusPalletDmpQueueEvent (109) */
+ /** @name CumulusPalletDmpQueueEvent (110) */
interface CumulusPalletDmpQueueEvent extends Enum {
readonly isInvalidFormat: boolean;
readonly asInvalidFormat: {
@@ -1459,7 +1512,7 @@
readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced' | 'MaxMessagesExhausted';
}
- /** @name PalletConfigurationEvent (110) */
+ /** @name PalletConfigurationEvent (111) */
interface PalletConfigurationEvent extends Enum {
readonly isNewDesiredCollators: boolean;
readonly asNewDesiredCollators: {
@@ -1476,7 +1529,7 @@
readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';
}
- /** @name PalletCommonEvent (113) */
+ /** @name PalletCommonEvent (114) */
interface PalletCommonEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -1525,7 +1578,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 (116) */
+ /** @name PalletEvmAccountBasicCrossAccountIdRepr (117) */
interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
readonly isSubstrate: boolean;
readonly asSubstrate: AccountId32;
@@ -1534,14 +1587,14 @@
readonly type: 'Substrate' | 'Ethereum';
}
- /** @name PalletStructureEvent (119) */
+ /** @name PalletStructureEvent (120) */
interface PalletStructureEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
readonly type: 'Executed';
}
- /** @name PalletAppPromotionEvent (120) */
+ /** @name PalletAppPromotionEvent (121) */
interface PalletAppPromotionEvent extends Enum {
readonly isStakingRecalculation: boolean;
readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
@@ -1554,7 +1607,7 @@
readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
}
- /** @name PalletForeignAssetsModuleEvent (121) */
+ /** @name PalletForeignAssetsModuleEvent (122) */
interface PalletForeignAssetsModuleEvent extends Enum {
readonly isForeignAssetRegistered: boolean;
readonly asForeignAssetRegistered: {
@@ -1581,7 +1634,7 @@
readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
}
- /** @name PalletForeignAssetsModuleAssetMetadata (122) */
+ /** @name PalletForeignAssetsModuleAssetMetadata (123) */
interface PalletForeignAssetsModuleAssetMetadata extends Struct {
readonly name: Bytes;
readonly symbol: Bytes;
@@ -1589,7 +1642,7 @@
readonly minimalBalance: u128;
}
- /** @name PalletEvmEvent (125) */
+ /** @name PalletEvmEvent (126) */
interface PalletEvmEvent extends Enum {
readonly isLog: boolean;
readonly asLog: {
@@ -1614,14 +1667,14 @@
readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
}
- /** @name EthereumLog (126) */
+ /** @name EthereumLog (127) */
interface EthereumLog extends Struct {
readonly address: H160;
readonly topics: Vec<H256>;
readonly data: Bytes;
}
- /** @name PalletEthereumEvent (128) */
+ /** @name PalletEthereumEvent (129) */
interface PalletEthereumEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: {
@@ -1629,11 +1682,12 @@
readonly to: H160;
readonly transactionHash: H256;
readonly exitReason: EvmCoreErrorExitReason;
+ readonly extraData: Bytes;
} & Struct;
readonly type: 'Executed';
}
- /** @name EvmCoreErrorExitReason (129) */
+ /** @name EvmCoreErrorExitReason (130) */
interface EvmCoreErrorExitReason extends Enum {
readonly isSucceed: boolean;
readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -1646,7 +1700,7 @@
readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
}
- /** @name EvmCoreErrorExitSucceed (130) */
+ /** @name EvmCoreErrorExitSucceed (131) */
interface EvmCoreErrorExitSucceed extends Enum {
readonly isStopped: boolean;
readonly isReturned: boolean;
@@ -1654,7 +1708,7 @@
readonly type: 'Stopped' | 'Returned' | 'Suicided';
}
- /** @name EvmCoreErrorExitError (131) */
+ /** @name EvmCoreErrorExitError (132) */
interface EvmCoreErrorExitError extends Enum {
readonly isStackUnderflow: boolean;
readonly isStackOverflow: boolean;
@@ -1676,13 +1730,13 @@
readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
}
- /** @name EvmCoreErrorExitRevert (135) */
+ /** @name EvmCoreErrorExitRevert (136) */
interface EvmCoreErrorExitRevert extends Enum {
readonly isReverted: boolean;
readonly type: 'Reverted';
}
- /** @name EvmCoreErrorExitFatal (136) */
+ /** @name EvmCoreErrorExitFatal (137) */
interface EvmCoreErrorExitFatal extends Enum {
readonly isNotSupported: boolean;
readonly isUnhandledInterrupt: boolean;
@@ -1693,7 +1747,7 @@
readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
}
- /** @name PalletEvmContractHelpersEvent (137) */
+ /** @name PalletEvmContractHelpersEvent (138) */
interface PalletEvmContractHelpersEvent extends Enum {
readonly isContractSponsorSet: boolean;
readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
@@ -1704,20 +1758,20 @@
readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
}
- /** @name PalletEvmMigrationEvent (138) */
+ /** @name PalletEvmMigrationEvent (139) */
interface PalletEvmMigrationEvent extends Enum {
readonly isTestEvent: boolean;
readonly type: 'TestEvent';
}
- /** @name PalletMaintenanceEvent (139) */
+ /** @name PalletMaintenanceEvent (140) */
interface PalletMaintenanceEvent extends Enum {
readonly isMaintenanceEnabled: boolean;
readonly isMaintenanceDisabled: boolean;
readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';
}
- /** @name PalletTestUtilsEvent (140) */
+ /** @name PalletTestUtilsEvent (141) */
interface PalletTestUtilsEvent extends Enum {
readonly isValueIsSet: boolean;
readonly isShouldRollback: boolean;
@@ -1725,7 +1779,7 @@
readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';
}
- /** @name FrameSystemPhase (141) */
+ /** @name FrameSystemPhase (142) */
interface FrameSystemPhase extends Enum {
readonly isApplyExtrinsic: boolean;
readonly asApplyExtrinsic: u32;
@@ -1734,13 +1788,13 @@
readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
}
- /** @name FrameSystemLastRuntimeUpgradeInfo (144) */
+ /** @name FrameSystemLastRuntimeUpgradeInfo (145) */
interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
readonly specVersion: Compact<u32>;
readonly specName: Text;
}
- /** @name FrameSystemCall (145) */
+ /** @name FrameSystemCall (146) */
interface FrameSystemCall extends Enum {
readonly isRemark: boolean;
readonly asRemark: {
@@ -1778,21 +1832,21 @@
readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
}
- /** @name FrameSystemLimitsBlockWeights (149) */
+ /** @name FrameSystemLimitsBlockWeights (150) */
interface FrameSystemLimitsBlockWeights extends Struct {
readonly baseBlock: SpWeightsWeightV2Weight;
readonly maxBlock: SpWeightsWeightV2Weight;
readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
}
- /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (150) */
+ /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (151) */
interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
readonly normal: FrameSystemLimitsWeightsPerClass;
readonly operational: FrameSystemLimitsWeightsPerClass;
readonly mandatory: FrameSystemLimitsWeightsPerClass;
}
- /** @name FrameSystemLimitsWeightsPerClass (151) */
+ /** @name FrameSystemLimitsWeightsPerClass (152) */
interface FrameSystemLimitsWeightsPerClass extends Struct {
readonly baseExtrinsic: SpWeightsWeightV2Weight;
readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
@@ -1800,25 +1854,25 @@
readonly reserved: Option<SpWeightsWeightV2Weight>;
}
- /** @name FrameSystemLimitsBlockLength (153) */
+ /** @name FrameSystemLimitsBlockLength (154) */
interface FrameSystemLimitsBlockLength extends Struct {
readonly max: FrameSupportDispatchPerDispatchClassU32;
}
- /** @name FrameSupportDispatchPerDispatchClassU32 (154) */
+ /** @name FrameSupportDispatchPerDispatchClassU32 (155) */
interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
readonly normal: u32;
readonly operational: u32;
readonly mandatory: u32;
}
- /** @name SpWeightsRuntimeDbWeight (155) */
+ /** @name SpWeightsRuntimeDbWeight (156) */
interface SpWeightsRuntimeDbWeight extends Struct {
readonly read: u64;
readonly write: u64;
}
- /** @name SpVersionRuntimeVersion (156) */
+ /** @name SpVersionRuntimeVersion (157) */
interface SpVersionRuntimeVersion extends Struct {
readonly specName: Text;
readonly implName: Text;
@@ -1830,7 +1884,7 @@
readonly stateVersion: u8;
}
- /** @name FrameSystemError (161) */
+ /** @name FrameSystemError (162) */
interface FrameSystemError extends Enum {
readonly isInvalidSpecName: boolean;
readonly isSpecVersionNeedsToIncrease: boolean;
@@ -1841,35 +1895,35 @@
readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
}
- /** @name PolkadotPrimitivesV2PersistedValidationData (162) */
- interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
+ /** @name PolkadotPrimitivesV4PersistedValidationData (163) */
+ interface PolkadotPrimitivesV4PersistedValidationData extends Struct {
readonly parentHead: Bytes;
readonly relayParentNumber: u32;
readonly relayParentStorageRoot: H256;
readonly maxPovSize: u32;
}
- /** @name PolkadotPrimitivesV2UpgradeRestriction (165) */
- interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
+ /** @name PolkadotPrimitivesV4UpgradeRestriction (166) */
+ interface PolkadotPrimitivesV4UpgradeRestriction extends Enum {
readonly isPresent: boolean;
readonly type: 'Present';
}
- /** @name SpTrieStorageProof (166) */
+ /** @name SpTrieStorageProof (167) */
interface SpTrieStorageProof extends Struct {
readonly trieNodes: BTreeSet<Bytes>;
}
- /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (168) */
+ /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (169) */
interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
readonly dmqMqcHead: H256;
readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
- readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
- readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
+ readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV4AbridgedHrmpChannel]>>;
+ readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV4AbridgedHrmpChannel]>>;
}
- /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (171) */
- interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
+ /** @name PolkadotPrimitivesV4AbridgedHrmpChannel (172) */
+ interface PolkadotPrimitivesV4AbridgedHrmpChannel extends Struct {
readonly maxCapacity: u32;
readonly maxTotalSize: u32;
readonly maxMessageSize: u32;
@@ -1878,8 +1932,8 @@
readonly mqcHead: Option<H256>;
}
- /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (173) */
- interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
+ /** @name PolkadotPrimitivesV4AbridgedHostConfiguration (174) */
+ interface PolkadotPrimitivesV4AbridgedHostConfiguration extends Struct {
readonly maxCodeSize: u32;
readonly maxHeadDataSize: u32;
readonly maxUpwardQueueCount: u32;
@@ -1891,13 +1945,19 @@
readonly validationUpgradeDelay: u32;
}
- /** @name PolkadotCorePrimitivesOutboundHrmpMessage (179) */
+ /** @name PolkadotCorePrimitivesOutboundHrmpMessage (180) */
interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
readonly recipient: u32;
readonly data: Bytes;
}
- /** @name CumulusPalletParachainSystemCall (180) */
+ /** @name CumulusPalletParachainSystemCodeUpgradeAuthorization (181) */
+ interface CumulusPalletParachainSystemCodeUpgradeAuthorization extends Struct {
+ readonly codeHash: H256;
+ readonly checkVersion: bool;
+ }
+
+ /** @name CumulusPalletParachainSystemCall (182) */
interface CumulusPalletParachainSystemCall extends Enum {
readonly isSetValidationData: boolean;
readonly asSetValidationData: {
@@ -1910,6 +1970,7 @@
readonly isAuthorizeUpgrade: boolean;
readonly asAuthorizeUpgrade: {
readonly codeHash: H256;
+ readonly checkVersion: bool;
} & Struct;
readonly isEnactAuthorizedUpgrade: boolean;
readonly asEnactAuthorizedUpgrade: {
@@ -1918,27 +1979,27 @@
readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
}
- /** @name CumulusPrimitivesParachainInherentParachainInherentData (181) */
+ /** @name CumulusPrimitivesParachainInherentParachainInherentData (183) */
interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
- readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
+ readonly validationData: PolkadotPrimitivesV4PersistedValidationData;
readonly relayChainState: SpTrieStorageProof;
readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;
readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
}
- /** @name PolkadotCorePrimitivesInboundDownwardMessage (183) */
+ /** @name PolkadotCorePrimitivesInboundDownwardMessage (185) */
interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
readonly sentAt: u32;
readonly msg: Bytes;
}
- /** @name PolkadotCorePrimitivesInboundHrmpMessage (186) */
+ /** @name PolkadotCorePrimitivesInboundHrmpMessage (188) */
interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
readonly sentAt: u32;
readonly data: Bytes;
}
- /** @name CumulusPalletParachainSystemError (189) */
+ /** @name CumulusPalletParachainSystemError (191) */
interface CumulusPalletParachainSystemError extends Enum {
readonly isOverlappingUpgrades: boolean;
readonly isProhibitedByPolkadot: boolean;
@@ -1951,10 +2012,10 @@
readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
}
- /** @name ParachainInfoCall (190) */
+ /** @name ParachainInfoCall (192) */
type ParachainInfoCall = Null;
- /** @name PalletCollatorSelectionCall (193) */
+ /** @name PalletCollatorSelectionCall (195) */
interface PalletCollatorSelectionCall extends Enum {
readonly isAddInvulnerable: boolean;
readonly asAddInvulnerable: {
@@ -1975,7 +2036,7 @@
readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';
}
- /** @name PalletCollatorSelectionError (194) */
+ /** @name PalletCollatorSelectionError (196) */
interface PalletCollatorSelectionError extends Enum {
readonly isTooManyCandidates: boolean;
readonly isUnknown: boolean;
@@ -1993,21 +2054,21 @@
readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';
}
- /** @name OpalRuntimeRuntimeCommonSessionKeys (197) */
+ /** @name OpalRuntimeRuntimeCommonSessionKeys (199) */
interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
readonly aura: SpConsensusAuraSr25519AppSr25519Public;
}
- /** @name SpConsensusAuraSr25519AppSr25519Public (198) */
+ /** @name SpConsensusAuraSr25519AppSr25519Public (200) */
interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}
- /** @name SpCoreSr25519Public (199) */
+ /** @name SpCoreSr25519Public (201) */
interface SpCoreSr25519Public extends U8aFixed {}
- /** @name SpCoreCryptoKeyTypeId (202) */
+ /** @name SpCoreCryptoKeyTypeId (204) */
interface SpCoreCryptoKeyTypeId extends U8aFixed {}
- /** @name PalletSessionCall (203) */
+ /** @name PalletSessionCall (205) */
interface PalletSessionCall extends Enum {
readonly isSetKeys: boolean;
readonly asSetKeys: {
@@ -2018,7 +2079,7 @@
readonly type: 'SetKeys' | 'PurgeKeys';
}
- /** @name PalletSessionError (204) */
+ /** @name PalletSessionError (206) */
interface PalletSessionError extends Enum {
readonly isInvalidProof: boolean;
readonly isNoAssociatedValidatorId: boolean;
@@ -2028,14 +2089,14 @@
readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
}
- /** @name PalletBalancesBalanceLock (209) */
+ /** @name PalletBalancesBalanceLock (211) */
interface PalletBalancesBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
readonly reasons: PalletBalancesReasons;
}
- /** @name PalletBalancesReasons (210) */
+ /** @name PalletBalancesReasons (212) */
interface PalletBalancesReasons extends Enum {
readonly isFee: boolean;
readonly isMisc: boolean;
@@ -2043,24 +2104,30 @@
readonly type: 'Fee' | 'Misc' | 'All';
}
- /** @name PalletBalancesReserveData (213) */
+ /** @name PalletBalancesReserveData (215) */
interface PalletBalancesReserveData extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name PalletBalancesCall (215) */
+ /** @name PalletBalancesIdAmount (218) */
+ interface PalletBalancesIdAmount extends Struct {
+ readonly id: U8aFixed;
+ readonly amount: u128;
+ }
+
+ /** @name PalletBalancesCall (220) */
interface PalletBalancesCall extends Enum {
- readonly isTransfer: boolean;
- readonly asTransfer: {
+ readonly isTransferAllowDeath: boolean;
+ readonly asTransferAllowDeath: {
readonly dest: MultiAddress;
readonly value: Compact<u128>;
} & Struct;
- readonly isSetBalance: boolean;
- readonly asSetBalance: {
+ readonly isSetBalanceDeprecated: boolean;
+ readonly asSetBalanceDeprecated: {
readonly who: MultiAddress;
readonly newFree: Compact<u128>;
- readonly newReserved: Compact<u128>;
+ readonly oldReserved: Compact<u128>;
} & Struct;
readonly isForceTransfer: boolean;
readonly asForceTransfer: {
@@ -2083,23 +2150,39 @@
readonly who: MultiAddress;
readonly amount: u128;
} & Struct;
- readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
+ readonly isUpgradeAccounts: boolean;
+ readonly asUpgradeAccounts: {
+ readonly who: Vec<AccountId32>;
+ } & Struct;
+ readonly isTransfer: boolean;
+ readonly asTransfer: {
+ readonly dest: MultiAddress;
+ readonly value: Compact<u128>;
+ } & Struct;
+ readonly isForceSetBalance: boolean;
+ readonly asForceSetBalance: {
+ readonly who: MultiAddress;
+ readonly newFree: Compact<u128>;
+ } & Struct;
+ readonly type: 'TransferAllowDeath' | 'SetBalanceDeprecated' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'Transfer' | 'ForceSetBalance';
}
- /** @name PalletBalancesError (218) */
+ /** @name PalletBalancesError (223) */
interface PalletBalancesError extends Enum {
readonly isVestingBalance: boolean;
readonly isLiquidityRestrictions: boolean;
readonly isInsufficientBalance: boolean;
readonly isExistentialDeposit: boolean;
- readonly isKeepAlive: boolean;
+ readonly isExpendability: boolean;
readonly isExistingVestingSchedule: boolean;
readonly isDeadAccount: boolean;
readonly isTooManyReserves: boolean;
- readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
+ readonly isTooManyHolds: boolean;
+ readonly isTooManyFreezes: boolean;
+ readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes';
}
- /** @name PalletTimestampCall (219) */
+ /** @name PalletTimestampCall (224) */
interface PalletTimestampCall extends Enum {
readonly isSet: boolean;
readonly asSet: {
@@ -2108,14 +2191,14 @@
readonly type: 'Set';
}
- /** @name PalletTransactionPaymentReleases (221) */
+ /** @name PalletTransactionPaymentReleases (226) */
interface PalletTransactionPaymentReleases extends Enum {
readonly isV1Ancient: boolean;
readonly isV2: boolean;
readonly type: 'V1Ancient' | 'V2';
}
- /** @name PalletTreasuryProposal (222) */
+ /** @name PalletTreasuryProposal (227) */
interface PalletTreasuryProposal extends Struct {
readonly proposer: AccountId32;
readonly value: u128;
@@ -2123,7 +2206,7 @@
readonly bond: u128;
}
- /** @name PalletTreasuryCall (224) */
+ /** @name PalletTreasuryCall (229) */
interface PalletTreasuryCall extends Enum {
readonly isProposeSpend: boolean;
readonly asProposeSpend: {
@@ -2150,10 +2233,10 @@
readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
}
- /** @name FrameSupportPalletId (226) */
+ /** @name FrameSupportPalletId (231) */
interface FrameSupportPalletId extends U8aFixed {}
- /** @name PalletTreasuryError (227) */
+ /** @name PalletTreasuryError (232) */
interface PalletTreasuryError extends Enum {
readonly isInsufficientProposersBalance: boolean;
readonly isInvalidIndex: boolean;
@@ -2163,7 +2246,7 @@
readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
}
- /** @name PalletSudoCall (228) */
+ /** @name PalletSudoCall (233) */
interface PalletSudoCall extends Enum {
readonly isSudo: boolean;
readonly asSudo: {
@@ -2186,7 +2269,7 @@
readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
}
- /** @name OrmlVestingModuleCall (230) */
+ /** @name OrmlVestingModuleCall (235) */
interface OrmlVestingModuleCall extends Enum {
readonly isClaim: boolean;
readonly isVestedTransfer: boolean;
@@ -2206,7 +2289,7 @@
readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
}
- /** @name OrmlXtokensModuleCall (232) */
+ /** @name OrmlXtokensModuleCall (237) */
interface OrmlXtokensModuleCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -2253,7 +2336,7 @@
readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
}
- /** @name XcmVersionedMultiAsset (233) */
+ /** @name XcmVersionedMultiAsset (238) */
interface XcmVersionedMultiAsset extends Enum {
readonly isV2: boolean;
readonly asV2: XcmV2MultiAsset;
@@ -2262,7 +2345,7 @@
readonly type: 'V2' | 'V3';
}
- /** @name OrmlTokensModuleCall (236) */
+ /** @name OrmlTokensModuleCall (241) */
interface OrmlTokensModuleCall extends Enum {
readonly isTransfer: boolean;
readonly asTransfer: {
@@ -2299,7 +2382,7 @@
readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
}
- /** @name PalletIdentityCall (237) */
+ /** @name PalletIdentityCall (242) */
interface PalletIdentityCall extends Enum {
readonly isAddRegistrar: boolean;
readonly asAddRegistrar: {
@@ -2379,7 +2462,7 @@
readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities' | 'ForceSetSubs';
}
- /** @name PalletIdentityIdentityInfo (238) */
+ /** @name PalletIdentityIdentityInfo (243) */
interface PalletIdentityIdentityInfo extends Struct {
readonly additional: Vec<ITuple<[Data, Data]>>;
readonly display: Data;
@@ -2392,7 +2475,7 @@
readonly twitter: Data;
}
- /** @name PalletIdentityBitFlags (274) */
+ /** @name PalletIdentityBitFlags (279) */
interface PalletIdentityBitFlags extends Set {
readonly isDisplay: boolean;
readonly isLegal: boolean;
@@ -2404,7 +2487,7 @@
readonly isTwitter: boolean;
}
- /** @name PalletIdentityIdentityField (275) */
+ /** @name PalletIdentityIdentityField (280) */
interface PalletIdentityIdentityField extends Enum {
readonly isDisplay: boolean;
readonly isLegal: boolean;
@@ -2417,7 +2500,7 @@
readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';
}
- /** @name PalletIdentityJudgement (276) */
+ /** @name PalletIdentityJudgement (281) */
interface PalletIdentityJudgement extends Enum {
readonly isUnknown: boolean;
readonly isFeePaid: boolean;
@@ -2430,14 +2513,14 @@
readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';
}
- /** @name PalletIdentityRegistration (279) */
+ /** @name PalletIdentityRegistration (284) */
interface PalletIdentityRegistration extends Struct {
readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
readonly deposit: u128;
readonly info: PalletIdentityIdentityInfo;
}
- /** @name PalletPreimageCall (287) */
+ /** @name PalletPreimageCall (292) */
interface PalletPreimageCall extends Enum {
readonly isNotePreimage: boolean;
readonly asNotePreimage: {
@@ -2458,7 +2541,7 @@
readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';
}
- /** @name CumulusPalletXcmpQueueCall (288) */
+ /** @name CumulusPalletXcmpQueueCall (293) */
interface CumulusPalletXcmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -2494,7 +2577,7 @@
readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
}
- /** @name PalletXcmCall (289) */
+ /** @name PalletXcmCall (294) */
interface PalletXcmCall extends Enum {
readonly isSend: boolean;
readonly asSend: {
@@ -2553,10 +2636,14 @@
readonly feeAssetItem: u32;
readonly weightLimit: XcmV3WeightLimit;
} & Struct;
- readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
+ readonly isForceSuspension: boolean;
+ readonly asForceSuspension: {
+ readonly suspended: bool;
+ } & Struct;
+ readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets' | 'ForceSuspension';
}
- /** @name XcmVersionedXcm (290) */
+ /** @name XcmVersionedXcm (295) */
interface XcmVersionedXcm extends Enum {
readonly isV2: boolean;
readonly asV2: XcmV2Xcm;
@@ -2565,10 +2652,10 @@
readonly type: 'V2' | 'V3';
}
- /** @name XcmV2Xcm (291) */
+ /** @name XcmV2Xcm (296) */
interface XcmV2Xcm extends Vec<XcmV2Instruction> {}
- /** @name XcmV2Instruction (293) */
+ /** @name XcmV2Instruction (298) */
interface XcmV2Instruction extends Enum {
readonly isWithdrawAsset: boolean;
readonly asWithdrawAsset: XcmV2MultiassetMultiAssets;
@@ -2688,7 +2775,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 (294) */
+ /** @name XcmV2Response (299) */
interface XcmV2Response extends Enum {
readonly isNull: boolean;
readonly isAssets: boolean;
@@ -2700,7 +2787,7 @@
readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';
}
- /** @name XcmV2TraitsError (297) */
+ /** @name XcmV2TraitsError (302) */
interface XcmV2TraitsError extends Enum {
readonly isOverflow: boolean;
readonly isUnimplemented: boolean;
@@ -2733,7 +2820,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 XcmV2MultiassetMultiAssetFilter (298) */
+ /** @name XcmV2MultiassetMultiAssetFilter (303) */
interface XcmV2MultiassetMultiAssetFilter extends Enum {
readonly isDefinite: boolean;
readonly asDefinite: XcmV2MultiassetMultiAssets;
@@ -2742,7 +2829,7 @@
readonly type: 'Definite' | 'Wild';
}
- /** @name XcmV2MultiassetWildMultiAsset (299) */
+ /** @name XcmV2MultiassetWildMultiAsset (304) */
interface XcmV2MultiassetWildMultiAsset extends Enum {
readonly isAll: boolean;
readonly isAllOf: boolean;
@@ -2753,14 +2840,14 @@
readonly type: 'All' | 'AllOf';
}
- /** @name XcmV2MultiassetWildFungibility (300) */
+ /** @name XcmV2MultiassetWildFungibility (305) */
interface XcmV2MultiassetWildFungibility extends Enum {
readonly isFungible: boolean;
readonly isNonFungible: boolean;
readonly type: 'Fungible' | 'NonFungible';
}
- /** @name XcmV2WeightLimit (301) */
+ /** @name XcmV2WeightLimit (306) */
interface XcmV2WeightLimit extends Enum {
readonly isUnlimited: boolean;
readonly isLimited: boolean;
@@ -2768,10 +2855,10 @@
readonly type: 'Unlimited' | 'Limited';
}
- /** @name CumulusPalletXcmCall (310) */
+ /** @name CumulusPalletXcmCall (315) */
type CumulusPalletXcmCall = Null;
- /** @name CumulusPalletDmpQueueCall (311) */
+ /** @name CumulusPalletDmpQueueCall (316) */
interface CumulusPalletDmpQueueCall extends Enum {
readonly isServiceOverweight: boolean;
readonly asServiceOverweight: {
@@ -2781,7 +2868,7 @@
readonly type: 'ServiceOverweight';
}
- /** @name PalletInflationCall (312) */
+ /** @name PalletInflationCall (317) */
interface PalletInflationCall extends Enum {
readonly isStartInflation: boolean;
readonly asStartInflation: {
@@ -2790,7 +2877,7 @@
readonly type: 'StartInflation';
}
- /** @name PalletUniqueCall (313) */
+ /** @name PalletUniqueCall (318) */
interface PalletUniqueCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -2971,7 +3058,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' | 'ApproveFrom' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';
}
- /** @name UpDataStructsCollectionMode (318) */
+ /** @name UpDataStructsCollectionMode (323) */
interface UpDataStructsCollectionMode extends Enum {
readonly isNft: boolean;
readonly isFungible: boolean;
@@ -2980,7 +3067,7 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateCollectionData (319) */
+ /** @name UpDataStructsCreateCollectionData (324) */
interface UpDataStructsCreateCollectionData extends Struct {
readonly mode: UpDataStructsCollectionMode;
readonly access: Option<UpDataStructsAccessMode>;
@@ -2994,14 +3081,14 @@
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsAccessMode (321) */
+ /** @name UpDataStructsAccessMode (326) */
interface UpDataStructsAccessMode extends Enum {
readonly isNormal: boolean;
readonly isAllowList: boolean;
readonly type: 'Normal' | 'AllowList';
}
- /** @name UpDataStructsCollectionLimits (323) */
+ /** @name UpDataStructsCollectionLimits (328) */
interface UpDataStructsCollectionLimits extends Struct {
readonly accountTokenOwnershipLimit: Option<u32>;
readonly sponsoredDataSize: Option<u32>;
@@ -3014,7 +3101,7 @@
readonly transfersEnabled: Option<bool>;
}
- /** @name UpDataStructsSponsoringRateLimit (325) */
+ /** @name UpDataStructsSponsoringRateLimit (330) */
interface UpDataStructsSponsoringRateLimit extends Enum {
readonly isSponsoringDisabled: boolean;
readonly isBlocks: boolean;
@@ -3022,43 +3109,43 @@
readonly type: 'SponsoringDisabled' | 'Blocks';
}
- /** @name UpDataStructsCollectionPermissions (328) */
+ /** @name UpDataStructsCollectionPermissions (333) */
interface UpDataStructsCollectionPermissions extends Struct {
readonly access: Option<UpDataStructsAccessMode>;
readonly mintMode: Option<bool>;
readonly nesting: Option<UpDataStructsNestingPermissions>;
}
- /** @name UpDataStructsNestingPermissions (330) */
+ /** @name UpDataStructsNestingPermissions (335) */
interface UpDataStructsNestingPermissions extends Struct {
readonly tokenOwner: bool;
readonly collectionAdmin: bool;
readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
}
- /** @name UpDataStructsOwnerRestrictedSet (332) */
+ /** @name UpDataStructsOwnerRestrictedSet (337) */
interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
- /** @name UpDataStructsPropertyKeyPermission (337) */
+ /** @name UpDataStructsPropertyKeyPermission (342) */
interface UpDataStructsPropertyKeyPermission extends Struct {
readonly key: Bytes;
readonly permission: UpDataStructsPropertyPermission;
}
- /** @name UpDataStructsPropertyPermission (338) */
+ /** @name UpDataStructsPropertyPermission (343) */
interface UpDataStructsPropertyPermission extends Struct {
readonly mutable: bool;
readonly collectionAdmin: bool;
readonly tokenOwner: bool;
}
- /** @name UpDataStructsProperty (341) */
+ /** @name UpDataStructsProperty (346) */
interface UpDataStructsProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name UpDataStructsCreateItemData (344) */
+ /** @name UpDataStructsCreateItemData (349) */
interface UpDataStructsCreateItemData extends Enum {
readonly isNft: boolean;
readonly asNft: UpDataStructsCreateNftData;
@@ -3069,23 +3156,23 @@
readonly type: 'Nft' | 'Fungible' | 'ReFungible';
}
- /** @name UpDataStructsCreateNftData (345) */
+ /** @name UpDataStructsCreateNftData (350) */
interface UpDataStructsCreateNftData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateFungibleData (346) */
+ /** @name UpDataStructsCreateFungibleData (351) */
interface UpDataStructsCreateFungibleData extends Struct {
readonly value: u128;
}
- /** @name UpDataStructsCreateReFungibleData (347) */
+ /** @name UpDataStructsCreateReFungibleData (352) */
interface UpDataStructsCreateReFungibleData extends Struct {
readonly pieces: u128;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateItemExData (350) */
+ /** @name UpDataStructsCreateItemExData (355) */
interface UpDataStructsCreateItemExData extends Enum {
readonly isNft: boolean;
readonly asNft: Vec<UpDataStructsCreateNftExData>;
@@ -3098,26 +3185,26 @@
readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
}
- /** @name UpDataStructsCreateNftExData (352) */
+ /** @name UpDataStructsCreateNftExData (357) */
interface UpDataStructsCreateNftExData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsCreateRefungibleExSingleOwner (359) */
+ /** @name UpDataStructsCreateRefungibleExSingleOwner (364) */
interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
readonly pieces: u128;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name UpDataStructsCreateRefungibleExMultipleOwners (361) */
+ /** @name UpDataStructsCreateRefungibleExMultipleOwners (366) */
interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name PalletConfigurationCall (362) */
+ /** @name PalletConfigurationCall (367) */
interface PalletConfigurationCall extends Enum {
readonly isSetWeightToFeeCoefficientOverride: boolean;
readonly asSetWeightToFeeCoefficientOverride: {
@@ -3146,21 +3233,18 @@
readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';
}
- /** @name PalletConfigurationAppPromotionConfiguration (364) */
+ /** @name PalletConfigurationAppPromotionConfiguration (369) */
interface PalletConfigurationAppPromotionConfiguration extends Struct {
readonly recalculationInterval: Option<u32>;
readonly pendingInterval: Option<u32>;
readonly intervalIncome: Option<Perbill>;
readonly maxStakersPerCalculation: Option<u8>;
}
-
- /** @name PalletTemplateTransactionPaymentCall (368) */
- type PalletTemplateTransactionPaymentCall = Null;
- /** @name PalletStructureCall (369) */
+ /** @name PalletStructureCall (373) */
type PalletStructureCall = Null;
- /** @name PalletAppPromotionCall (370) */
+ /** @name PalletAppPromotionCall (374) */
interface PalletAppPromotionCall extends Enum {
readonly isSetAdminAddress: boolean;
readonly asSetAdminAddress: {
@@ -3198,7 +3282,7 @@
readonly type: 'SetAdminAddress' | 'Stake' | 'UnstakeAll' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers' | 'UnstakePartial';
}
- /** @name PalletForeignAssetsModuleCall (371) */
+ /** @name PalletForeignAssetsModuleCall (375) */
interface PalletForeignAssetsModuleCall extends Enum {
readonly isRegisterForeignAsset: boolean;
readonly asRegisterForeignAsset: {
@@ -3215,7 +3299,7 @@
readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
}
- /** @name PalletEvmCall (372) */
+ /** @name PalletEvmCall (376) */
interface PalletEvmCall extends Enum {
readonly isWithdraw: boolean;
readonly asWithdraw: {
@@ -3260,7 +3344,7 @@
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
}
- /** @name PalletEthereumCall (378) */
+ /** @name PalletEthereumCall (382) */
interface PalletEthereumCall extends Enum {
readonly isTransact: boolean;
readonly asTransact: {
@@ -3269,7 +3353,7 @@
readonly type: 'Transact';
}
- /** @name EthereumTransactionTransactionV2 (379) */
+ /** @name EthereumTransactionTransactionV2 (383) */
interface EthereumTransactionTransactionV2 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -3280,7 +3364,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumTransactionLegacyTransaction (380) */
+ /** @name EthereumTransactionLegacyTransaction (384) */
interface EthereumTransactionLegacyTransaction extends Struct {
readonly nonce: U256;
readonly gasPrice: U256;
@@ -3291,7 +3375,7 @@
readonly signature: EthereumTransactionTransactionSignature;
}
- /** @name EthereumTransactionTransactionAction (381) */
+ /** @name EthereumTransactionTransactionAction (385) */
interface EthereumTransactionTransactionAction extends Enum {
readonly isCall: boolean;
readonly asCall: H160;
@@ -3299,14 +3383,14 @@
readonly type: 'Call' | 'Create';
}
- /** @name EthereumTransactionTransactionSignature (382) */
+ /** @name EthereumTransactionTransactionSignature (386) */
interface EthereumTransactionTransactionSignature extends Struct {
readonly v: u64;
readonly r: H256;
readonly s: H256;
}
- /** @name EthereumTransactionEip2930Transaction (384) */
+ /** @name EthereumTransactionEip2930Transaction (388) */
interface EthereumTransactionEip2930Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3321,13 +3405,13 @@
readonly s: H256;
}
- /** @name EthereumTransactionAccessListItem (386) */
+ /** @name EthereumTransactionAccessListItem (390) */
interface EthereumTransactionAccessListItem extends Struct {
readonly address: H160;
readonly storageKeys: Vec<H256>;
}
- /** @name EthereumTransactionEip1559Transaction (387) */
+ /** @name EthereumTransactionEip1559Transaction (391) */
interface EthereumTransactionEip1559Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3343,13 +3427,13 @@
readonly s: H256;
}
- /** @name PalletEvmCoderSubstrateCall (388) */
+ /** @name PalletEvmCoderSubstrateCall (392) */
interface PalletEvmCoderSubstrateCall extends Enum {
readonly isEmptyCall: boolean;
readonly type: 'EmptyCall';
}
- /** @name PalletEvmContractHelpersCall (389) */
+ /** @name PalletEvmContractHelpersCall (393) */
interface PalletEvmContractHelpersCall extends Enum {
readonly isMigrateFromSelfSponsoring: boolean;
readonly asMigrateFromSelfSponsoring: {
@@ -3358,7 +3442,7 @@
readonly type: 'MigrateFromSelfSponsoring';
}
- /** @name PalletEvmMigrationCall (391) */
+ /** @name PalletEvmMigrationCall (395) */
interface PalletEvmMigrationCall extends Enum {
readonly isBegin: boolean;
readonly asBegin: {
@@ -3386,7 +3470,7 @@
readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents' | 'RemoveRmrkData';
}
- /** @name PalletMaintenanceCall (395) */
+ /** @name PalletMaintenanceCall (399) */
interface PalletMaintenanceCall extends Enum {
readonly isEnable: boolean;
readonly isDisable: boolean;
@@ -3398,7 +3482,7 @@
readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';
}
- /** @name PalletTestUtilsCall (396) */
+ /** @name PalletTestUtilsCall (400) */
interface PalletTestUtilsCall extends Enum {
readonly isEnable: boolean;
readonly isSetTestValue: boolean;
@@ -3418,13 +3502,13 @@
readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';
}
- /** @name PalletSudoError (398) */
+ /** @name PalletSudoError (402) */
interface PalletSudoError extends Enum {
readonly isRequireSudo: boolean;
readonly type: 'RequireSudo';
}
- /** @name OrmlVestingModuleError (400) */
+ /** @name OrmlVestingModuleError (404) */
interface OrmlVestingModuleError extends Enum {
readonly isZeroVestingPeriod: boolean;
readonly isZeroVestingPeriodCount: boolean;
@@ -3435,7 +3519,7 @@
readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
}
- /** @name OrmlXtokensModuleError (401) */
+ /** @name OrmlXtokensModuleError (405) */
interface OrmlXtokensModuleError extends Enum {
readonly isAssetHasNoReserve: boolean;
readonly isNotCrossChainTransfer: boolean;
@@ -3459,26 +3543,26 @@
readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
}
- /** @name OrmlTokensBalanceLock (404) */
+ /** @name OrmlTokensBalanceLock (408) */
interface OrmlTokensBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name OrmlTokensAccountData (406) */
+ /** @name OrmlTokensAccountData (410) */
interface OrmlTokensAccountData extends Struct {
readonly free: u128;
readonly reserved: u128;
readonly frozen: u128;
}
- /** @name OrmlTokensReserveData (408) */
+ /** @name OrmlTokensReserveData (412) */
interface OrmlTokensReserveData extends Struct {
readonly id: Null;
readonly amount: u128;
}
- /** @name OrmlTokensModuleError (410) */
+ /** @name OrmlTokensModuleError (414) */
interface OrmlTokensModuleError extends Enum {
readonly isBalanceTooLow: boolean;
readonly isAmountIntoBalanceFailed: boolean;
@@ -3491,14 +3575,14 @@
readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name PalletIdentityRegistrarInfo (415) */
+ /** @name PalletIdentityRegistrarInfo (419) */
interface PalletIdentityRegistrarInfo extends Struct {
readonly account: AccountId32;
readonly fee: u128;
readonly fields: PalletIdentityBitFlags;
}
- /** @name PalletIdentityError (417) */
+ /** @name PalletIdentityError (421) */
interface PalletIdentityError extends Enum {
readonly isTooManySubAccounts: boolean;
readonly isNotFound: boolean;
@@ -3521,7 +3605,7 @@
readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';
}
- /** @name PalletPreimageRequestStatus (418) */
+ /** @name PalletPreimageRequestStatus (422) */
interface PalletPreimageRequestStatus extends Enum {
readonly isUnrequested: boolean;
readonly asUnrequested: {
@@ -3537,7 +3621,7 @@
readonly type: 'Unrequested' | 'Requested';
}
- /** @name PalletPreimageError (423) */
+ /** @name PalletPreimageError (427) */
interface PalletPreimageError extends Enum {
readonly isTooBig: boolean;
readonly isAlreadyNoted: boolean;
@@ -3548,21 +3632,21 @@
readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';
}
- /** @name CumulusPalletXcmpQueueInboundChannelDetails (425) */
+ /** @name CumulusPalletXcmpQueueInboundChannelDetails (429) */
interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
readonly sender: u32;
readonly state: CumulusPalletXcmpQueueInboundState;
readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
}
- /** @name CumulusPalletXcmpQueueInboundState (426) */
+ /** @name CumulusPalletXcmpQueueInboundState (430) */
interface CumulusPalletXcmpQueueInboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name PolkadotParachainPrimitivesXcmpMessageFormat (429) */
+ /** @name PolkadotParachainPrimitivesXcmpMessageFormat (433) */
interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
readonly isConcatenatedVersionedXcm: boolean;
readonly isConcatenatedEncodedBlob: boolean;
@@ -3570,7 +3654,7 @@
readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
}
- /** @name CumulusPalletXcmpQueueOutboundChannelDetails (432) */
+ /** @name CumulusPalletXcmpQueueOutboundChannelDetails (436) */
interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
readonly recipient: u32;
readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -3579,14 +3663,14 @@
readonly lastIndex: u16;
}
- /** @name CumulusPalletXcmpQueueOutboundState (433) */
+ /** @name CumulusPalletXcmpQueueOutboundState (437) */
interface CumulusPalletXcmpQueueOutboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name CumulusPalletXcmpQueueQueueConfigData (435) */
+ /** @name CumulusPalletXcmpQueueQueueConfigData (439) */
interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
readonly suspendThreshold: u32;
readonly dropThreshold: u32;
@@ -3596,7 +3680,7 @@
readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
}
- /** @name CumulusPalletXcmpQueueError (437) */
+ /** @name CumulusPalletXcmpQueueError (441) */
interface CumulusPalletXcmpQueueError extends Enum {
readonly isFailedToSend: boolean;
readonly isBadXcmOrigin: boolean;
@@ -3606,7 +3690,7 @@
readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
}
- /** @name PalletXcmQueryStatus (438) */
+ /** @name PalletXcmQueryStatus (442) */
interface PalletXcmQueryStatus extends Enum {
readonly isPending: boolean;
readonly asPending: {
@@ -3628,7 +3712,7 @@
readonly type: 'Pending' | 'VersionNotifier' | 'Ready';
}
- /** @name XcmVersionedResponse (442) */
+ /** @name XcmVersionedResponse (446) */
interface XcmVersionedResponse extends Enum {
readonly isV2: boolean;
readonly asV2: XcmV2Response;
@@ -3637,7 +3721,7 @@
readonly type: 'V2' | 'V3';
}
- /** @name PalletXcmVersionMigrationStage (448) */
+ /** @name PalletXcmVersionMigrationStage (452) */
interface PalletXcmVersionMigrationStage extends Enum {
readonly isMigrateSupportedVersion: boolean;
readonly isMigrateVersionNotifiers: boolean;
@@ -3647,14 +3731,14 @@
readonly type: 'MigrateSupportedVersion' | 'MigrateVersionNotifiers' | 'NotifyCurrentTargets' | 'MigrateAndNotifyOldTargets';
}
- /** @name XcmVersionedAssetId (451) */
+ /** @name XcmVersionedAssetId (455) */
interface XcmVersionedAssetId extends Enum {
readonly isV3: boolean;
readonly asV3: XcmV3MultiassetAssetId;
readonly type: 'V3';
}
- /** @name PalletXcmRemoteLockedFungibleRecord (452) */
+ /** @name PalletXcmRemoteLockedFungibleRecord (456) */
interface PalletXcmRemoteLockedFungibleRecord extends Struct {
readonly amount: u128;
readonly owner: XcmVersionedMultiLocation;
@@ -3662,7 +3746,7 @@
readonly users: u32;
}
- /** @name PalletXcmError (456) */
+ /** @name PalletXcmError (460) */
interface PalletXcmError extends Enum {
readonly isUnreachable: boolean;
readonly isSendFailure: boolean;
@@ -3687,29 +3771,29 @@
readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed' | 'InvalidAsset' | 'LowBalance' | 'TooManyLocks' | 'AccountNotSovereign' | 'FeesNotMet' | 'LockNotFound' | 'InUse';
}
- /** @name CumulusPalletXcmError (457) */
+ /** @name CumulusPalletXcmError (461) */
type CumulusPalletXcmError = Null;
- /** @name CumulusPalletDmpQueueConfigData (458) */
+ /** @name CumulusPalletDmpQueueConfigData (462) */
interface CumulusPalletDmpQueueConfigData extends Struct {
readonly maxIndividual: SpWeightsWeightV2Weight;
}
- /** @name CumulusPalletDmpQueuePageIndexData (459) */
+ /** @name CumulusPalletDmpQueuePageIndexData (463) */
interface CumulusPalletDmpQueuePageIndexData extends Struct {
readonly beginUsed: u32;
readonly endUsed: u32;
readonly overweightCount: u64;
}
- /** @name CumulusPalletDmpQueueError (462) */
+ /** @name CumulusPalletDmpQueueError (466) */
interface CumulusPalletDmpQueueError extends Enum {
readonly isUnknown: boolean;
readonly isOverLimit: boolean;
readonly type: 'Unknown' | 'OverLimit';
}
- /** @name PalletUniqueError (466) */
+ /** @name PalletUniqueError (470) */
interface PalletUniqueError extends Enum {
readonly isCollectionDecimalPointLimitExceeded: boolean;
readonly isEmptyArgument: boolean;
@@ -3717,13 +3801,13 @@
readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
}
- /** @name PalletConfigurationError (467) */
+ /** @name PalletConfigurationError (471) */
interface PalletConfigurationError extends Enum {
readonly isInconsistentConfiguration: boolean;
readonly type: 'InconsistentConfiguration';
}
- /** @name UpDataStructsCollection (468) */
+ /** @name UpDataStructsCollection (472) */
interface UpDataStructsCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3736,7 +3820,7 @@
readonly flags: U8aFixed;
}
- /** @name UpDataStructsSponsorshipStateAccountId32 (469) */
+ /** @name UpDataStructsSponsorshipStateAccountId32 (473) */
interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3746,43 +3830,43 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name UpDataStructsProperties (470) */
+ /** @name UpDataStructsProperties (474) */
interface UpDataStructsProperties extends Struct {
readonly map: UpDataStructsPropertiesMapBoundedVec;
readonly consumedSpace: u32;
readonly reserved: u32;
}
- /** @name UpDataStructsPropertiesMapBoundedVec (471) */
+ /** @name UpDataStructsPropertiesMapBoundedVec (475) */
interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
- /** @name UpDataStructsPropertiesMapPropertyPermission (476) */
+ /** @name UpDataStructsPropertiesMapPropertyPermission (480) */
interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
- /** @name UpDataStructsCollectionStats (483) */
+ /** @name UpDataStructsCollectionStats (487) */
interface UpDataStructsCollectionStats extends Struct {
readonly created: u32;
readonly destroyed: u32;
readonly alive: u32;
}
- /** @name UpDataStructsTokenChild (484) */
+ /** @name UpDataStructsTokenChild (488) */
interface UpDataStructsTokenChild extends Struct {
readonly token: u32;
readonly collection: u32;
}
- /** @name PhantomTypeUpDataStructs (485) */
+ /** @name PhantomTypeUpDataStructs (489) */
interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpPovEstimateRpcPovInfo]>> {}
- /** @name UpDataStructsTokenData (487) */
+ /** @name UpDataStructsTokenData (491) */
interface UpDataStructsTokenData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
readonly pieces: u128;
}
- /** @name UpDataStructsRpcCollection (489) */
+ /** @name UpDataStructsRpcCollection (493) */
interface UpDataStructsRpcCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3798,13 +3882,13 @@
readonly flags: UpDataStructsRpcCollectionFlags;
}
- /** @name UpDataStructsRpcCollectionFlags (490) */
+ /** @name UpDataStructsRpcCollectionFlags (494) */
interface UpDataStructsRpcCollectionFlags extends Struct {
readonly foreign: bool;
readonly erc721metadata: bool;
}
- /** @name UpPovEstimateRpcPovInfo (491) */
+ /** @name UpPovEstimateRpcPovInfo (495) */
interface UpPovEstimateRpcPovInfo extends Struct {
readonly proofSize: u64;
readonly compactProofSize: u64;
@@ -3813,7 +3897,7 @@
readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;
}
- /** @name SpRuntimeTransactionValidityTransactionValidityError (494) */
+ /** @name SpRuntimeTransactionValidityTransactionValidityError (498) */
interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {
readonly isInvalid: boolean;
readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;
@@ -3822,7 +3906,7 @@
readonly type: 'Invalid' | 'Unknown';
}
- /** @name SpRuntimeTransactionValidityInvalidTransaction (495) */
+ /** @name SpRuntimeTransactionValidityInvalidTransaction (499) */
interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {
readonly isCall: boolean;
readonly isPayment: boolean;
@@ -3839,7 +3923,7 @@
readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';
}
- /** @name SpRuntimeTransactionValidityUnknownTransaction (496) */
+ /** @name SpRuntimeTransactionValidityUnknownTransaction (500) */
interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {
readonly isCannotLookup: boolean;
readonly isNoUnsignedValidator: boolean;
@@ -3848,13 +3932,13 @@
readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';
}
- /** @name UpPovEstimateRpcTrieKeyValue (498) */
+ /** @name UpPovEstimateRpcTrieKeyValue (502) */
interface UpPovEstimateRpcTrieKeyValue extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name PalletCommonError (500) */
+ /** @name PalletCommonError (504) */
interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -3896,7 +3980,7 @@
readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsNotEthMirror' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
}
- /** @name PalletFungibleError (502) */
+ /** @name PalletFungibleError (506) */
interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -3908,7 +3992,7 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
}
- /** @name PalletRefungibleError (507) */
+ /** @name PalletRefungibleError (511) */
interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -3918,19 +4002,19 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (508) */
+ /** @name PalletNonfungibleItemData (512) */
interface PalletNonfungibleItemData extends Struct {
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsPropertyScope (510) */
+ /** @name UpDataStructsPropertyScope (514) */
interface UpDataStructsPropertyScope extends Enum {
readonly isNone: boolean;
readonly isRmrk: boolean;
readonly type: 'None' | 'Rmrk';
}
- /** @name PalletNonfungibleError (513) */
+ /** @name PalletNonfungibleError (517) */
interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3938,7 +4022,7 @@
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
}
- /** @name PalletStructureError (514) */
+ /** @name PalletStructureError (518) */
interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -3948,7 +4032,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound' | 'CantNestTokenUnderCollection';
}
- /** @name PalletAppPromotionError (519) */
+ /** @name PalletAppPromotionError (523) */
interface PalletAppPromotionError extends Enum {
readonly isAdminNotSet: boolean;
readonly isNoPermission: boolean;
@@ -3960,7 +4044,7 @@
readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation' | 'InsufficientStakedBalance';
}
- /** @name PalletForeignAssetsModuleError (520) */
+ /** @name PalletForeignAssetsModuleError (524) */
interface PalletForeignAssetsModuleError extends Enum {
readonly isBadLocation: boolean;
readonly isMultiLocationExisted: boolean;
@@ -3969,7 +4053,7 @@
readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
}
- /** @name PalletEvmError (522) */
+ /** @name PalletEvmError (526) */
interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -3985,7 +4069,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';
}
- /** @name FpRpcTransactionStatus (525) */
+ /** @name FpRpcTransactionStatus (529) */
interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -3996,10 +4080,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (527) */
+ /** @name EthbloomBloom (531) */
interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (529) */
+ /** @name EthereumReceiptReceiptV3 (533) */
interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -4010,7 +4094,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (530) */
+ /** @name EthereumReceiptEip658ReceiptData (534) */
interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -4018,14 +4102,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (531) */
+ /** @name EthereumBlock (535) */
interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (532) */
+ /** @name EthereumHeader (536) */
interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -4044,24 +4128,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (533) */
+ /** @name EthereumTypesHashH64 (537) */
interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (538) */
+ /** @name PalletEthereumError (542) */
interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (539) */
+ /** @name PalletEvmCoderSubstrateError (543) */
interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (540) */
+ /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (544) */
interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -4071,7 +4155,7 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (541) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (545) */
interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -4079,7 +4163,7 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (547) */
+ /** @name PalletEvmContractHelpersError (551) */
interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly isNoPendingSponsor: boolean;
@@ -4087,7 +4171,7 @@
readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
}
- /** @name PalletEvmMigrationError (548) */
+ /** @name PalletEvmMigrationError (552) */
interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
@@ -4095,17 +4179,17 @@
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
}
- /** @name PalletMaintenanceError (549) */
+ /** @name PalletMaintenanceError (553) */
type PalletMaintenanceError = Null;
- /** @name PalletTestUtilsError (550) */
+ /** @name PalletTestUtilsError (554) */
interface PalletTestUtilsError extends Enum {
readonly isTestPalletDisabled: boolean;
readonly isTriggerRollback: boolean;
readonly type: 'TestPalletDisabled' | 'TriggerRollback';
}
- /** @name SpRuntimeMultiSignature (552) */
+ /** @name SpRuntimeMultiSignature (556) */
interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -4116,43 +4200,43 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (553) */
+ /** @name SpCoreEd25519Signature (557) */
interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (555) */
+ /** @name SpCoreSr25519Signature (559) */
interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (556) */
+ /** @name SpCoreEcdsaSignature (560) */
interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (559) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (563) */
type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckTxVersion (560) */
+ /** @name FrameSystemExtensionsCheckTxVersion (564) */
type FrameSystemExtensionsCheckTxVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (561) */
+ /** @name FrameSystemExtensionsCheckGenesis (565) */
type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (564) */
+ /** @name FrameSystemExtensionsCheckNonce (568) */
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (565) */
+ /** @name FrameSystemExtensionsCheckWeight (569) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (566) */
+ /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (570) */
type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
- /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (567) */
+ /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (571) */
type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (568) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (572) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (569) */
+ /** @name OpalRuntimeRuntime (573) */
type OpalRuntimeRuntime = Null;
- /** @name PalletEthereumFakeTransactionFinalizer (570) */
+ /** @name PalletEthereumFakeTransactionFinalizer (574) */
type PalletEthereumFakeTransactionFinalizer = Null;
} // declare module