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.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -88,6 +88,7 @@
readonly isAuthorizeUpgrade: boolean;
readonly asAuthorizeUpgrade: {
readonly codeHash: H256;
+ readonly checkVersion: bool;
} & Struct;
readonly isEnactAuthorizedUpgrade: boolean;
readonly asEnactAuthorizedUpgrade: {
@@ -96,6 +97,12 @@
readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
}
+/** @name CumulusPalletParachainSystemCodeUpgradeAuthorization */
+export interface CumulusPalletParachainSystemCodeUpgradeAuthorization extends Struct {
+ readonly codeHash: H256;
+ readonly checkVersion: bool;
+}
+
/** @name CumulusPalletParachainSystemError */
export interface CumulusPalletParachainSystemError extends Enum {
readonly isOverlappingUpgrades: boolean;
@@ -141,8 +148,8 @@
export 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 CumulusPalletXcmCall */
@@ -290,7 +297,7 @@
/** @name CumulusPrimitivesParachainInherentParachainInherentData */
export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
- readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
+ readonly validationData: PolkadotPrimitivesV4PersistedValidationData;
readonly relayChainState: SpTrieStorageProof;
readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;
readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
@@ -1087,8 +1094,8 @@
export interface PalletBalancesAccountData extends Struct {
readonly free: u128;
readonly reserved: u128;
- readonly miscFrozen: u128;
- readonly feeFrozen: u128;
+ readonly frozen: u128;
+ readonly flags: u128;
}
/** @name PalletBalancesBalanceLock */
@@ -1100,16 +1107,16 @@
/** @name PalletBalancesCall */
export 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: {
@@ -1132,7 +1139,21 @@
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 */
@@ -1141,11 +1162,13 @@
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 PalletBalancesEvent */
@@ -1170,7 +1193,6 @@
readonly asBalanceSet: {
readonly who: AccountId32;
readonly free: u128;
- readonly reserved: u128;
} & Struct;
readonly isReserved: boolean;
readonly asReserved: {
@@ -1204,7 +1226,65 @@
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 PalletBalancesIdAmount */
+export interface PalletBalancesIdAmount extends Struct {
+ readonly id: U8aFixed;
+ readonly amount: u128;
}
/** @name PalletBalancesReasons */
@@ -1466,6 +1546,7 @@
readonly to: H160;
readonly transactionHash: H256;
readonly exitReason: EvmCoreErrorExitReason;
+ readonly extraData: Bytes;
} & Struct;
readonly type: 'Executed';
}
@@ -2200,9 +2281,6 @@
readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
}
-/** @name PalletTemplateTransactionPaymentCall */
-export interface PalletTemplateTransactionPaymentCall extends Null {}
-
/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */
export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
@@ -2608,7 +2686,11 @@
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 PalletXcmError */
@@ -2759,8 +2841,8 @@
readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
}
-/** @name PolkadotPrimitivesV2AbridgedHostConfiguration */
-export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
+/** @name PolkadotPrimitivesV4AbridgedHostConfiguration */
+export interface PolkadotPrimitivesV4AbridgedHostConfiguration extends Struct {
readonly maxCodeSize: u32;
readonly maxHeadDataSize: u32;
readonly maxUpwardQueueCount: u32;
@@ -2772,8 +2854,8 @@
readonly validationUpgradeDelay: u32;
}
-/** @name PolkadotPrimitivesV2AbridgedHrmpChannel */
-export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
+/** @name PolkadotPrimitivesV4AbridgedHrmpChannel */
+export interface PolkadotPrimitivesV4AbridgedHrmpChannel extends Struct {
readonly maxCapacity: u32;
readonly maxTotalSize: u32;
readonly maxMessageSize: u32;
@@ -2782,16 +2864,16 @@
readonly mqcHead: Option<H256>;
}
-/** @name PolkadotPrimitivesV2PersistedValidationData */
-export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
+/** @name PolkadotPrimitivesV4PersistedValidationData */
+export interface PolkadotPrimitivesV4PersistedValidationData extends Struct {
readonly parentHead: Bytes;
readonly relayParentNumber: u32;
readonly relayParentStorageRoot: H256;
readonly maxPovSize: u32;
}
-/** @name PolkadotPrimitivesV2UpgradeRestriction */
-export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
+/** @name PolkadotPrimitivesV4UpgradeRestriction */
+export interface PolkadotPrimitivesV4UpgradeRestriction extends Enum {
readonly isPresent: boolean;
readonly type: 'Present';
}
@@ -2882,14 +2964,16 @@
/** @name SpRuntimeTokenError */
export 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 SpRuntimeTransactionalError */
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.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/lookup';78import type { Data } from '@polkadot/types';9import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Set, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';10import type { ITuple } from '@polkadot/types-codec/types';11import type { AccountId32, Call, H160, H256, MultiAddress, Perbill } from '@polkadot/types/interfaces/runtime';12import type { Event } from '@polkadot/types/interfaces/system';1314declare module '@polkadot/types/lookup' {15 /** @name FrameSystemAccountInfo (3) */16 interface FrameSystemAccountInfo extends Struct {17 readonly nonce: u32;18 readonly consumers: u32;19 readonly providers: u32;20 readonly sufficients: u32;21 readonly data: PalletBalancesAccountData;22 }2324 /** @name PalletBalancesAccountData (5) */25 interface PalletBalancesAccountData extends Struct {26 readonly free: u128;27 readonly reserved: u128;28 readonly miscFrozen: u128;29 readonly feeFrozen: u128;30 }3132 /** @name FrameSupportDispatchPerDispatchClassWeight (7) */33 interface FrameSupportDispatchPerDispatchClassWeight extends Struct {34 readonly normal: SpWeightsWeightV2Weight;35 readonly operational: SpWeightsWeightV2Weight;36 readonly mandatory: SpWeightsWeightV2Weight;37 }3839 /** @name SpWeightsWeightV2Weight (8) */40 interface SpWeightsWeightV2Weight extends Struct {41 readonly refTime: Compact<u64>;42 readonly proofSize: Compact<u64>;43 }4445 /** @name SpRuntimeDigest (13) */46 interface SpRuntimeDigest extends Struct {47 readonly logs: Vec<SpRuntimeDigestDigestItem>;48 }4950 /** @name SpRuntimeDigestDigestItem (15) */51 interface SpRuntimeDigestDigestItem extends Enum {52 readonly isOther: boolean;53 readonly asOther: Bytes;54 readonly isConsensus: boolean;55 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;56 readonly isSeal: boolean;57 readonly asSeal: ITuple<[U8aFixed, Bytes]>;58 readonly isPreRuntime: boolean;59 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;60 readonly isRuntimeEnvironmentUpdated: boolean;61 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';62 }6364 /** @name FrameSystemEventRecord (18) */65 interface FrameSystemEventRecord extends Struct {66 readonly phase: FrameSystemPhase;67 readonly event: Event;68 readonly topics: Vec<H256>;69 }7071 /** @name FrameSystemEvent (20) */72 interface FrameSystemEvent extends Enum {73 readonly isExtrinsicSuccess: boolean;74 readonly asExtrinsicSuccess: {75 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;76 } & Struct;77 readonly isExtrinsicFailed: boolean;78 readonly asExtrinsicFailed: {79 readonly dispatchError: SpRuntimeDispatchError;80 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;81 } & Struct;82 readonly isCodeUpdated: boolean;83 readonly isNewAccount: boolean;84 readonly asNewAccount: {85 readonly account: AccountId32;86 } & Struct;87 readonly isKilledAccount: boolean;88 readonly asKilledAccount: {89 readonly account: AccountId32;90 } & Struct;91 readonly isRemarked: boolean;92 readonly asRemarked: {93 readonly sender: AccountId32;94 readonly hash_: H256;95 } & Struct;96 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';97 }9899 /** @name FrameSupportDispatchDispatchInfo (21) */100 interface FrameSupportDispatchDispatchInfo extends Struct {101 readonly weight: SpWeightsWeightV2Weight;102 readonly class: FrameSupportDispatchDispatchClass;103 readonly paysFee: FrameSupportDispatchPays;104 }105106 /** @name FrameSupportDispatchDispatchClass (22) */107 interface FrameSupportDispatchDispatchClass extends Enum {108 readonly isNormal: boolean;109 readonly isOperational: boolean;110 readonly isMandatory: boolean;111 readonly type: 'Normal' | 'Operational' | 'Mandatory';112 }113114 /** @name FrameSupportDispatchPays (23) */115 interface FrameSupportDispatchPays extends Enum {116 readonly isYes: boolean;117 readonly isNo: boolean;118 readonly type: 'Yes' | 'No';119 }120121 /** @name SpRuntimeDispatchError (24) */122 interface SpRuntimeDispatchError extends Enum {123 readonly isOther: boolean;124 readonly isCannotLookup: boolean;125 readonly isBadOrigin: boolean;126 readonly isModule: boolean;127 readonly asModule: SpRuntimeModuleError;128 readonly isConsumerRemaining: boolean;129 readonly isNoProviders: boolean;130 readonly isTooManyConsumers: boolean;131 readonly isToken: boolean;132 readonly asToken: SpRuntimeTokenError;133 readonly isArithmetic: boolean;134 readonly asArithmetic: SpArithmeticArithmeticError;135 readonly isTransactional: boolean;136 readonly asTransactional: SpRuntimeTransactionalError;137 readonly isExhausted: boolean;138 readonly isCorruption: boolean;139 readonly isUnavailable: boolean;140 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';141 }142143 /** @name SpRuntimeModuleError (25) */144 interface SpRuntimeModuleError extends Struct {145 readonly index: u8;146 readonly error: U8aFixed;147 }148149 /** @name SpRuntimeTokenError (26) */150 interface SpRuntimeTokenError extends Enum {151 readonly isNoFunds: boolean;152 readonly isWouldDie: boolean;153 readonly isBelowMinimum: boolean;154 readonly isCannotCreate: boolean;155 readonly isUnknownAsset: boolean;156 readonly isFrozen: boolean;157 readonly isUnsupported: boolean;158 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';159 }160161 /** @name SpArithmeticArithmeticError (27) */162 interface SpArithmeticArithmeticError extends Enum {163 readonly isUnderflow: boolean;164 readonly isOverflow: boolean;165 readonly isDivisionByZero: boolean;166 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';167 }168169 /** @name SpRuntimeTransactionalError (28) */170 interface SpRuntimeTransactionalError extends Enum {171 readonly isLimitReached: boolean;172 readonly isNoLayer: boolean;173 readonly type: 'LimitReached' | 'NoLayer';174 }175176 /** @name CumulusPalletParachainSystemEvent (29) */177 interface CumulusPalletParachainSystemEvent extends Enum {178 readonly isValidationFunctionStored: boolean;179 readonly isValidationFunctionApplied: boolean;180 readonly asValidationFunctionApplied: {181 readonly relayChainBlockNum: u32;182 } & Struct;183 readonly isValidationFunctionDiscarded: boolean;184 readonly isUpgradeAuthorized: boolean;185 readonly asUpgradeAuthorized: {186 readonly codeHash: H256;187 } & Struct;188 readonly isDownwardMessagesReceived: boolean;189 readonly asDownwardMessagesReceived: {190 readonly count: u32;191 } & Struct;192 readonly isDownwardMessagesProcessed: boolean;193 readonly asDownwardMessagesProcessed: {194 readonly weightUsed: SpWeightsWeightV2Weight;195 readonly dmqHead: H256;196 } & Struct;197 readonly isUpwardMessageSent: boolean;198 readonly asUpwardMessageSent: {199 readonly messageHash: Option<U8aFixed>;200 } & Struct;201 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed' | 'UpwardMessageSent';202 }203204 /** @name PalletCollatorSelectionEvent (31) */205 interface PalletCollatorSelectionEvent extends Enum {206 readonly isInvulnerableAdded: boolean;207 readonly asInvulnerableAdded: {208 readonly invulnerable: AccountId32;209 } & Struct;210 readonly isInvulnerableRemoved: boolean;211 readonly asInvulnerableRemoved: {212 readonly invulnerable: AccountId32;213 } & Struct;214 readonly isLicenseObtained: boolean;215 readonly asLicenseObtained: {216 readonly accountId: AccountId32;217 readonly deposit: u128;218 } & Struct;219 readonly isLicenseReleased: boolean;220 readonly asLicenseReleased: {221 readonly accountId: AccountId32;222 readonly depositReturned: u128;223 } & Struct;224 readonly isCandidateAdded: boolean;225 readonly asCandidateAdded: {226 readonly accountId: AccountId32;227 } & Struct;228 readonly isCandidateRemoved: boolean;229 readonly asCandidateRemoved: {230 readonly accountId: AccountId32;231 } & Struct;232 readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';233 }234235 /** @name PalletSessionEvent (32) */236 interface PalletSessionEvent extends Enum {237 readonly isNewSession: boolean;238 readonly asNewSession: {239 readonly sessionIndex: u32;240 } & Struct;241 readonly type: 'NewSession';242 }243244 /** @name PalletBalancesEvent (33) */245 interface PalletBalancesEvent extends Enum {246 readonly isEndowed: boolean;247 readonly asEndowed: {248 readonly account: AccountId32;249 readonly freeBalance: u128;250 } & Struct;251 readonly isDustLost: boolean;252 readonly asDustLost: {253 readonly account: AccountId32;254 readonly amount: u128;255 } & Struct;256 readonly isTransfer: boolean;257 readonly asTransfer: {258 readonly from: AccountId32;259 readonly to: AccountId32;260 readonly amount: u128;261 } & Struct;262 readonly isBalanceSet: boolean;263 readonly asBalanceSet: {264 readonly who: AccountId32;265 readonly free: u128;266 readonly reserved: u128;267 } & Struct;268 readonly isReserved: boolean;269 readonly asReserved: {270 readonly who: AccountId32;271 readonly amount: u128;272 } & Struct;273 readonly isUnreserved: boolean;274 readonly asUnreserved: {275 readonly who: AccountId32;276 readonly amount: u128;277 } & Struct;278 readonly isReserveRepatriated: boolean;279 readonly asReserveRepatriated: {280 readonly from: AccountId32;281 readonly to: AccountId32;282 readonly amount: u128;283 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;284 } & Struct;285 readonly isDeposit: boolean;286 readonly asDeposit: {287 readonly who: AccountId32;288 readonly amount: u128;289 } & Struct;290 readonly isWithdraw: boolean;291 readonly asWithdraw: {292 readonly who: AccountId32;293 readonly amount: u128;294 } & Struct;295 readonly isSlashed: boolean;296 readonly asSlashed: {297 readonly who: AccountId32;298 readonly amount: u128;299 } & Struct;300 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';301 }302303 /** @name FrameSupportTokensMiscBalanceStatus (34) */304 interface FrameSupportTokensMiscBalanceStatus extends Enum {305 readonly isFree: boolean;306 readonly isReserved: boolean;307 readonly type: 'Free' | 'Reserved';308 }309310 /** @name PalletTransactionPaymentEvent (35) */311 interface PalletTransactionPaymentEvent extends Enum {312 readonly isTransactionFeePaid: boolean;313 readonly asTransactionFeePaid: {314 readonly who: AccountId32;315 readonly actualFee: u128;316 readonly tip: u128;317 } & Struct;318 readonly type: 'TransactionFeePaid';319 }320321 /** @name PalletTreasuryEvent (36) */322 interface PalletTreasuryEvent extends Enum {323 readonly isProposed: boolean;324 readonly asProposed: {325 readonly proposalIndex: u32;326 } & Struct;327 readonly isSpending: boolean;328 readonly asSpending: {329 readonly budgetRemaining: u128;330 } & Struct;331 readonly isAwarded: boolean;332 readonly asAwarded: {333 readonly proposalIndex: u32;334 readonly award: u128;335 readonly account: AccountId32;336 } & Struct;337 readonly isRejected: boolean;338 readonly asRejected: {339 readonly proposalIndex: u32;340 readonly slashed: u128;341 } & Struct;342 readonly isBurnt: boolean;343 readonly asBurnt: {344 readonly burntFunds: u128;345 } & Struct;346 readonly isRollover: boolean;347 readonly asRollover: {348 readonly rolloverBalance: u128;349 } & Struct;350 readonly isDeposit: boolean;351 readonly asDeposit: {352 readonly value: u128;353 } & Struct;354 readonly isSpendApproved: boolean;355 readonly asSpendApproved: {356 readonly proposalIndex: u32;357 readonly amount: u128;358 readonly beneficiary: AccountId32;359 } & Struct;360 readonly isUpdatedInactive: boolean;361 readonly asUpdatedInactive: {362 readonly reactivated: u128;363 readonly deactivated: u128;364 } & Struct;365 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive';366 }367368 /** @name PalletSudoEvent (37) */369 interface PalletSudoEvent extends Enum {370 readonly isSudid: boolean;371 readonly asSudid: {372 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;373 } & Struct;374 readonly isKeyChanged: boolean;375 readonly asKeyChanged: {376 readonly oldSudoer: Option<AccountId32>;377 } & Struct;378 readonly isSudoAsDone: boolean;379 readonly asSudoAsDone: {380 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;381 } & Struct;382 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';383 }384385 /** @name OrmlVestingModuleEvent (41) */386 interface OrmlVestingModuleEvent extends Enum {387 readonly isVestingScheduleAdded: boolean;388 readonly asVestingScheduleAdded: {389 readonly from: AccountId32;390 readonly to: AccountId32;391 readonly vestingSchedule: OrmlVestingVestingSchedule;392 } & Struct;393 readonly isClaimed: boolean;394 readonly asClaimed: {395 readonly who: AccountId32;396 readonly amount: u128;397 } & Struct;398 readonly isVestingSchedulesUpdated: boolean;399 readonly asVestingSchedulesUpdated: {400 readonly who: AccountId32;401 } & Struct;402 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';403 }404405 /** @name OrmlVestingVestingSchedule (42) */406 interface OrmlVestingVestingSchedule extends Struct {407 readonly start: u32;408 readonly period: u32;409 readonly periodCount: u32;410 readonly perPeriod: Compact<u128>;411 }412413 /** @name OrmlXtokensModuleEvent (44) */414 interface OrmlXtokensModuleEvent extends Enum {415 readonly isTransferredMultiAssets: boolean;416 readonly asTransferredMultiAssets: {417 readonly sender: AccountId32;418 readonly assets: XcmV3MultiassetMultiAssets;419 readonly fee: XcmV3MultiAsset;420 readonly dest: XcmV3MultiLocation;421 } & Struct;422 readonly type: 'TransferredMultiAssets';423 }424425 /** @name XcmV3MultiassetMultiAssets (45) */426 interface XcmV3MultiassetMultiAssets extends Vec<XcmV3MultiAsset> {}427428 /** @name XcmV3MultiAsset (47) */429 interface XcmV3MultiAsset extends Struct {430 readonly id: XcmV3MultiassetAssetId;431 readonly fun: XcmV3MultiassetFungibility;432 }433434 /** @name XcmV3MultiassetAssetId (48) */435 interface XcmV3MultiassetAssetId extends Enum {436 readonly isConcrete: boolean;437 readonly asConcrete: XcmV3MultiLocation;438 readonly isAbstract: boolean;439 readonly asAbstract: U8aFixed;440 readonly type: 'Concrete' | 'Abstract';441 }442443 /** @name XcmV3MultiLocation (49) */444 interface XcmV3MultiLocation extends Struct {445 readonly parents: u8;446 readonly interior: XcmV3Junctions;447 }448449 /** @name XcmV3Junctions (50) */450 interface XcmV3Junctions extends Enum {451 readonly isHere: boolean;452 readonly isX1: boolean;453 readonly asX1: XcmV3Junction;454 readonly isX2: boolean;455 readonly asX2: ITuple<[XcmV3Junction, XcmV3Junction]>;456 readonly isX3: boolean;457 readonly asX3: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction]>;458 readonly isX4: boolean;459 readonly asX4: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;460 readonly isX5: boolean;461 readonly asX5: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;462 readonly isX6: boolean;463 readonly asX6: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;464 readonly isX7: boolean;465 readonly asX7: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;466 readonly isX8: boolean;467 readonly asX8: ITuple<[XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction, XcmV3Junction]>;468 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';469 }470471 /** @name XcmV3Junction (51) */472 interface XcmV3Junction extends Enum {473 readonly isParachain: boolean;474 readonly asParachain: Compact<u32>;475 readonly isAccountId32: boolean;476 readonly asAccountId32: {477 readonly network: Option<XcmV3JunctionNetworkId>;478 readonly id: U8aFixed;479 } & Struct;480 readonly isAccountIndex64: boolean;481 readonly asAccountIndex64: {482 readonly network: Option<XcmV3JunctionNetworkId>;483 readonly index: Compact<u64>;484 } & Struct;485 readonly isAccountKey20: boolean;486 readonly asAccountKey20: {487 readonly network: Option<XcmV3JunctionNetworkId>;488 readonly key: U8aFixed;489 } & Struct;490 readonly isPalletInstance: boolean;491 readonly asPalletInstance: u8;492 readonly isGeneralIndex: boolean;493 readonly asGeneralIndex: Compact<u128>;494 readonly isGeneralKey: boolean;495 readonly asGeneralKey: {496 readonly length: u8;497 readonly data: U8aFixed;498 } & Struct;499 readonly isOnlyChild: boolean;500 readonly isPlurality: boolean;501 readonly asPlurality: {502 readonly id: XcmV3JunctionBodyId;503 readonly part: XcmV3JunctionBodyPart;504 } & Struct;505 readonly isGlobalConsensus: boolean;506 readonly asGlobalConsensus: XcmV3JunctionNetworkId;507 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus';508 }509510 /** @name XcmV3JunctionNetworkId (54) */511 interface XcmV3JunctionNetworkId extends Enum {512 readonly isByGenesis: boolean;513 readonly asByGenesis: U8aFixed;514 readonly isByFork: boolean;515 readonly asByFork: {516 readonly blockNumber: u64;517 readonly blockHash: U8aFixed;518 } & Struct;519 readonly isPolkadot: boolean;520 readonly isKusama: boolean;521 readonly isWestend: boolean;522 readonly isRococo: boolean;523 readonly isWococo: boolean;524 readonly isEthereum: boolean;525 readonly asEthereum: {526 readonly chainId: Compact<u64>;527 } & Struct;528 readonly isBitcoinCore: boolean;529 readonly isBitcoinCash: boolean;530 readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash';531 }532533 /** @name XcmV3JunctionBodyId (56) */534 interface XcmV3JunctionBodyId extends Enum {535 readonly isUnit: boolean;536 readonly isMoniker: boolean;537 readonly asMoniker: U8aFixed;538 readonly isIndex: boolean;539 readonly asIndex: Compact<u32>;540 readonly isExecutive: boolean;541 readonly isTechnical: boolean;542 readonly isLegislative: boolean;543 readonly isJudicial: boolean;544 readonly isDefense: boolean;545 readonly isAdministration: boolean;546 readonly isTreasury: boolean;547 readonly type: 'Unit' | 'Moniker' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';548 }549550 /** @name XcmV3JunctionBodyPart (57) */551 interface XcmV3JunctionBodyPart extends Enum {552 readonly isVoice: boolean;553 readonly isMembers: boolean;554 readonly asMembers: {555 readonly count: Compact<u32>;556 } & Struct;557 readonly isFraction: boolean;558 readonly asFraction: {559 readonly nom: Compact<u32>;560 readonly denom: Compact<u32>;561 } & Struct;562 readonly isAtLeastProportion: boolean;563 readonly asAtLeastProportion: {564 readonly nom: Compact<u32>;565 readonly denom: Compact<u32>;566 } & Struct;567 readonly isMoreThanProportion: boolean;568 readonly asMoreThanProportion: {569 readonly nom: Compact<u32>;570 readonly denom: Compact<u32>;571 } & Struct;572 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';573 }574575 /** @name XcmV3MultiassetFungibility (58) */576 interface XcmV3MultiassetFungibility extends Enum {577 readonly isFungible: boolean;578 readonly asFungible: Compact<u128>;579 readonly isNonFungible: boolean;580 readonly asNonFungible: XcmV3MultiassetAssetInstance;581 readonly type: 'Fungible' | 'NonFungible';582 }583584 /** @name XcmV3MultiassetAssetInstance (59) */585 interface XcmV3MultiassetAssetInstance extends Enum {586 readonly isUndefined: boolean;587 readonly isIndex: boolean;588 readonly asIndex: Compact<u128>;589 readonly isArray4: boolean;590 readonly asArray4: U8aFixed;591 readonly isArray8: boolean;592 readonly asArray8: U8aFixed;593 readonly isArray16: boolean;594 readonly asArray16: U8aFixed;595 readonly isArray32: boolean;596 readonly asArray32: U8aFixed;597 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32';598 }599600 /** @name OrmlTokensModuleEvent (62) */601 interface OrmlTokensModuleEvent extends Enum {602 readonly isEndowed: boolean;603 readonly asEndowed: {604 readonly currencyId: PalletForeignAssetsAssetIds;605 readonly who: AccountId32;606 readonly amount: u128;607 } & Struct;608 readonly isDustLost: boolean;609 readonly asDustLost: {610 readonly currencyId: PalletForeignAssetsAssetIds;611 readonly who: AccountId32;612 readonly amount: u128;613 } & Struct;614 readonly isTransfer: boolean;615 readonly asTransfer: {616 readonly currencyId: PalletForeignAssetsAssetIds;617 readonly from: AccountId32;618 readonly to: AccountId32;619 readonly amount: u128;620 } & Struct;621 readonly isReserved: boolean;622 readonly asReserved: {623 readonly currencyId: PalletForeignAssetsAssetIds;624 readonly who: AccountId32;625 readonly amount: u128;626 } & Struct;627 readonly isUnreserved: boolean;628 readonly asUnreserved: {629 readonly currencyId: PalletForeignAssetsAssetIds;630 readonly who: AccountId32;631 readonly amount: u128;632 } & Struct;633 readonly isReserveRepatriated: boolean;634 readonly asReserveRepatriated: {635 readonly currencyId: PalletForeignAssetsAssetIds;636 readonly from: AccountId32;637 readonly to: AccountId32;638 readonly amount: u128;639 readonly status: FrameSupportTokensMiscBalanceStatus;640 } & Struct;641 readonly isBalanceSet: boolean;642 readonly asBalanceSet: {643 readonly currencyId: PalletForeignAssetsAssetIds;644 readonly who: AccountId32;645 readonly free: u128;646 readonly reserved: u128;647 } & Struct;648 readonly isTotalIssuanceSet: boolean;649 readonly asTotalIssuanceSet: {650 readonly currencyId: PalletForeignAssetsAssetIds;651 readonly amount: u128;652 } & Struct;653 readonly isWithdrawn: boolean;654 readonly asWithdrawn: {655 readonly currencyId: PalletForeignAssetsAssetIds;656 readonly who: AccountId32;657 readonly amount: u128;658 } & Struct;659 readonly isSlashed: boolean;660 readonly asSlashed: {661 readonly currencyId: PalletForeignAssetsAssetIds;662 readonly who: AccountId32;663 readonly freeAmount: u128;664 readonly reservedAmount: u128;665 } & Struct;666 readonly isDeposited: boolean;667 readonly asDeposited: {668 readonly currencyId: PalletForeignAssetsAssetIds;669 readonly who: AccountId32;670 readonly amount: u128;671 } & Struct;672 readonly isLockSet: boolean;673 readonly asLockSet: {674 readonly lockId: U8aFixed;675 readonly currencyId: PalletForeignAssetsAssetIds;676 readonly who: AccountId32;677 readonly amount: u128;678 } & Struct;679 readonly isLockRemoved: boolean;680 readonly asLockRemoved: {681 readonly lockId: U8aFixed;682 readonly currencyId: PalletForeignAssetsAssetIds;683 readonly who: AccountId32;684 } & Struct;685 readonly isLocked: boolean;686 readonly asLocked: {687 readonly currencyId: PalletForeignAssetsAssetIds;688 readonly who: AccountId32;689 readonly amount: u128;690 } & Struct;691 readonly isUnlocked: boolean;692 readonly asUnlocked: {693 readonly currencyId: PalletForeignAssetsAssetIds;694 readonly who: AccountId32;695 readonly amount: u128;696 } & Struct;697 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved' | 'Locked' | 'Unlocked';698 }699700 /** @name PalletForeignAssetsAssetIds (63) */701 interface PalletForeignAssetsAssetIds extends Enum {702 readonly isForeignAssetId: boolean;703 readonly asForeignAssetId: u32;704 readonly isNativeAssetId: boolean;705 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;706 readonly type: 'ForeignAssetId' | 'NativeAssetId';707 }708709 /** @name PalletForeignAssetsNativeCurrency (64) */710 interface PalletForeignAssetsNativeCurrency extends Enum {711 readonly isHere: boolean;712 readonly isParent: boolean;713 readonly type: 'Here' | 'Parent';714 }715716 /** @name PalletIdentityEvent (65) */717 interface PalletIdentityEvent extends Enum {718 readonly isIdentitySet: boolean;719 readonly asIdentitySet: {720 readonly who: AccountId32;721 } & Struct;722 readonly isIdentityCleared: boolean;723 readonly asIdentityCleared: {724 readonly who: AccountId32;725 readonly deposit: u128;726 } & Struct;727 readonly isIdentityKilled: boolean;728 readonly asIdentityKilled: {729 readonly who: AccountId32;730 readonly deposit: u128;731 } & Struct;732 readonly isIdentitiesInserted: boolean;733 readonly asIdentitiesInserted: {734 readonly amount: u32;735 } & Struct;736 readonly isIdentitiesRemoved: boolean;737 readonly asIdentitiesRemoved: {738 readonly amount: u32;739 } & Struct;740 readonly isJudgementRequested: boolean;741 readonly asJudgementRequested: {742 readonly who: AccountId32;743 readonly registrarIndex: u32;744 } & Struct;745 readonly isJudgementUnrequested: boolean;746 readonly asJudgementUnrequested: {747 readonly who: AccountId32;748 readonly registrarIndex: u32;749 } & Struct;750 readonly isJudgementGiven: boolean;751 readonly asJudgementGiven: {752 readonly target: AccountId32;753 readonly registrarIndex: u32;754 } & Struct;755 readonly isRegistrarAdded: boolean;756 readonly asRegistrarAdded: {757 readonly registrarIndex: u32;758 } & Struct;759 readonly isSubIdentityAdded: boolean;760 readonly asSubIdentityAdded: {761 readonly sub: AccountId32;762 readonly main: AccountId32;763 readonly deposit: u128;764 } & Struct;765 readonly isSubIdentityRemoved: boolean;766 readonly asSubIdentityRemoved: {767 readonly sub: AccountId32;768 readonly main: AccountId32;769 readonly deposit: u128;770 } & Struct;771 readonly isSubIdentityRevoked: boolean;772 readonly asSubIdentityRevoked: {773 readonly sub: AccountId32;774 readonly main: AccountId32;775 readonly deposit: u128;776 } & Struct;777 readonly isSubIdentitiesInserted: boolean;778 readonly asSubIdentitiesInserted: {779 readonly amount: u32;780 } & Struct;781 readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked' | 'SubIdentitiesInserted';782 }783784 /** @name PalletPreimageEvent (66) */785 interface PalletPreimageEvent extends Enum {786 readonly isNoted: boolean;787 readonly asNoted: {788 readonly hash_: H256;789 } & Struct;790 readonly isRequested: boolean;791 readonly asRequested: {792 readonly hash_: H256;793 } & Struct;794 readonly isCleared: boolean;795 readonly asCleared: {796 readonly hash_: H256;797 } & Struct;798 readonly type: 'Noted' | 'Requested' | 'Cleared';799 }800801 /** @name CumulusPalletXcmpQueueEvent (67) */802 interface CumulusPalletXcmpQueueEvent extends Enum {803 readonly isSuccess: boolean;804 readonly asSuccess: {805 readonly messageHash: Option<U8aFixed>;806 readonly weight: SpWeightsWeightV2Weight;807 } & Struct;808 readonly isFail: boolean;809 readonly asFail: {810 readonly messageHash: Option<U8aFixed>;811 readonly error: XcmV3TraitsError;812 readonly weight: SpWeightsWeightV2Weight;813 } & Struct;814 readonly isBadVersion: boolean;815 readonly asBadVersion: {816 readonly messageHash: Option<U8aFixed>;817 } & Struct;818 readonly isBadFormat: boolean;819 readonly asBadFormat: {820 readonly messageHash: Option<U8aFixed>;821 } & Struct;822 readonly isXcmpMessageSent: boolean;823 readonly asXcmpMessageSent: {824 readonly messageHash: Option<U8aFixed>;825 } & Struct;826 readonly isOverweightEnqueued: boolean;827 readonly asOverweightEnqueued: {828 readonly sender: u32;829 readonly sentAt: u32;830 readonly index: u64;831 readonly required: SpWeightsWeightV2Weight;832 } & Struct;833 readonly isOverweightServiced: boolean;834 readonly asOverweightServiced: {835 readonly index: u64;836 readonly used: SpWeightsWeightV2Weight;837 } & Struct;838 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';839 }840841 /** @name XcmV3TraitsError (68) */842 interface XcmV3TraitsError extends Enum {843 readonly isOverflow: boolean;844 readonly isUnimplemented: boolean;845 readonly isUntrustedReserveLocation: boolean;846 readonly isUntrustedTeleportLocation: boolean;847 readonly isLocationFull: boolean;848 readonly isLocationNotInvertible: boolean;849 readonly isBadOrigin: boolean;850 readonly isInvalidLocation: boolean;851 readonly isAssetNotFound: boolean;852 readonly isFailedToTransactAsset: boolean;853 readonly isNotWithdrawable: boolean;854 readonly isLocationCannotHold: boolean;855 readonly isExceedsMaxMessageSize: boolean;856 readonly isDestinationUnsupported: boolean;857 readonly isTransport: boolean;858 readonly isUnroutable: boolean;859 readonly isUnknownClaim: boolean;860 readonly isFailedToDecode: boolean;861 readonly isMaxWeightInvalid: boolean;862 readonly isNotHoldingFees: boolean;863 readonly isTooExpensive: boolean;864 readonly isTrap: boolean;865 readonly asTrap: u64;866 readonly isExpectationFalse: boolean;867 readonly isPalletNotFound: boolean;868 readonly isNameMismatch: boolean;869 readonly isVersionIncompatible: boolean;870 readonly isHoldingWouldOverflow: boolean;871 readonly isExportError: boolean;872 readonly isReanchorFailed: boolean;873 readonly isNoDeal: boolean;874 readonly isFeesNotMet: boolean;875 readonly isLockError: boolean;876 readonly isNoPermission: boolean;877 readonly isUnanchored: boolean;878 readonly isNotDepositable: boolean;879 readonly isUnhandledXcmVersion: boolean;880 readonly isWeightLimitReached: boolean;881 readonly asWeightLimitReached: SpWeightsWeightV2Weight;882 readonly isBarrier: boolean;883 readonly isWeightNotComputable: boolean;884 readonly isExceedsStackLimit: boolean;885 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';886 }887888 /** @name PalletXcmEvent (70) */889 interface PalletXcmEvent extends Enum {890 readonly isAttempted: boolean;891 readonly asAttempted: XcmV3TraitsOutcome;892 readonly isSent: boolean;893 readonly asSent: ITuple<[XcmV3MultiLocation, XcmV3MultiLocation, XcmV3Xcm]>;894 readonly isUnexpectedResponse: boolean;895 readonly asUnexpectedResponse: ITuple<[XcmV3MultiLocation, u64]>;896 readonly isResponseReady: boolean;897 readonly asResponseReady: ITuple<[u64, XcmV3Response]>;898 readonly isNotified: boolean;899 readonly asNotified: ITuple<[u64, u8, u8]>;900 readonly isNotifyOverweight: boolean;901 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;902 readonly isNotifyDispatchError: boolean;903 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;904 readonly isNotifyDecodeFailed: boolean;905 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;906 readonly isInvalidResponder: boolean;907 readonly asInvalidResponder: ITuple<[XcmV3MultiLocation, u64, Option<XcmV3MultiLocation>]>;908 readonly isInvalidResponderVersion: boolean;909 readonly asInvalidResponderVersion: ITuple<[XcmV3MultiLocation, u64]>;910 readonly isResponseTaken: boolean;911 readonly asResponseTaken: u64;912 readonly isAssetsTrapped: boolean;913 readonly asAssetsTrapped: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;914 readonly isVersionChangeNotified: boolean;915 readonly asVersionChangeNotified: ITuple<[XcmV3MultiLocation, u32, XcmV3MultiassetMultiAssets]>;916 readonly isSupportedVersionChanged: boolean;917 readonly asSupportedVersionChanged: ITuple<[XcmV3MultiLocation, u32]>;918 readonly isNotifyTargetSendFail: boolean;919 readonly asNotifyTargetSendFail: ITuple<[XcmV3MultiLocation, u64, XcmV3TraitsError]>;920 readonly isNotifyTargetMigrationFail: boolean;921 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;922 readonly isInvalidQuerierVersion: boolean;923 readonly asInvalidQuerierVersion: ITuple<[XcmV3MultiLocation, u64]>;924 readonly isInvalidQuerier: boolean;925 readonly asInvalidQuerier: ITuple<[XcmV3MultiLocation, u64, XcmV3MultiLocation, Option<XcmV3MultiLocation>]>;926 readonly isVersionNotifyStarted: boolean;927 readonly asVersionNotifyStarted: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;928 readonly isVersionNotifyRequested: boolean;929 readonly asVersionNotifyRequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;930 readonly isVersionNotifyUnrequested: boolean;931 readonly asVersionNotifyUnrequested: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;932 readonly isFeesPaid: boolean;933 readonly asFeesPaid: ITuple<[XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;934 readonly isAssetsClaimed: boolean;935 readonly asAssetsClaimed: ITuple<[H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;936 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';937 }938939 /** @name XcmV3TraitsOutcome (71) */940 interface XcmV3TraitsOutcome extends Enum {941 readonly isComplete: boolean;942 readonly asComplete: SpWeightsWeightV2Weight;943 readonly isIncomplete: boolean;944 readonly asIncomplete: ITuple<[SpWeightsWeightV2Weight, XcmV3TraitsError]>;945 readonly isError: boolean;946 readonly asError: XcmV3TraitsError;947 readonly type: 'Complete' | 'Incomplete' | 'Error';948 }949950 /** @name XcmV3Xcm (72) */951 interface XcmV3Xcm extends Vec<XcmV3Instruction> {}952953 /** @name XcmV3Instruction (74) */954 interface XcmV3Instruction extends Enum {955 readonly isWithdrawAsset: boolean;956 readonly asWithdrawAsset: XcmV3MultiassetMultiAssets;957 readonly isReserveAssetDeposited: boolean;958 readonly asReserveAssetDeposited: XcmV3MultiassetMultiAssets;959 readonly isReceiveTeleportedAsset: boolean;960 readonly asReceiveTeleportedAsset: XcmV3MultiassetMultiAssets;961 readonly isQueryResponse: boolean;962 readonly asQueryResponse: {963 readonly queryId: Compact<u64>;964 readonly response: XcmV3Response;965 readonly maxWeight: SpWeightsWeightV2Weight;966 readonly querier: Option<XcmV3MultiLocation>;967 } & Struct;968 readonly isTransferAsset: boolean;969 readonly asTransferAsset: {970 readonly assets: XcmV3MultiassetMultiAssets;971 readonly beneficiary: XcmV3MultiLocation;972 } & Struct;973 readonly isTransferReserveAsset: boolean;974 readonly asTransferReserveAsset: {975 readonly assets: XcmV3MultiassetMultiAssets;976 readonly dest: XcmV3MultiLocation;977 readonly xcm: XcmV3Xcm;978 } & Struct;979 readonly isTransact: boolean;980 readonly asTransact: {981 readonly originKind: XcmV2OriginKind;982 readonly requireWeightAtMost: SpWeightsWeightV2Weight;983 readonly call: XcmDoubleEncoded;984 } & Struct;985 readonly isHrmpNewChannelOpenRequest: boolean;986 readonly asHrmpNewChannelOpenRequest: {987 readonly sender: Compact<u32>;988 readonly maxMessageSize: Compact<u32>;989 readonly maxCapacity: Compact<u32>;990 } & Struct;991 readonly isHrmpChannelAccepted: boolean;992 readonly asHrmpChannelAccepted: {993 readonly recipient: Compact<u32>;994 } & Struct;995 readonly isHrmpChannelClosing: boolean;996 readonly asHrmpChannelClosing: {997 readonly initiator: Compact<u32>;998 readonly sender: Compact<u32>;999 readonly recipient: Compact<u32>;1000 } & Struct;1001 readonly isClearOrigin: boolean;1002 readonly isDescendOrigin: boolean;1003 readonly asDescendOrigin: XcmV3Junctions;1004 readonly isReportError: boolean;1005 readonly asReportError: XcmV3QueryResponseInfo;1006 readonly isDepositAsset: boolean;1007 readonly asDepositAsset: {1008 readonly assets: XcmV3MultiassetMultiAssetFilter;1009 readonly beneficiary: XcmV3MultiLocation;1010 } & Struct;1011 readonly isDepositReserveAsset: boolean;1012 readonly asDepositReserveAsset: {1013 readonly assets: XcmV3MultiassetMultiAssetFilter;1014 readonly dest: XcmV3MultiLocation;1015 readonly xcm: XcmV3Xcm;1016 } & Struct;1017 readonly isExchangeAsset: boolean;1018 readonly asExchangeAsset: {1019 readonly give: XcmV3MultiassetMultiAssetFilter;1020 readonly want: XcmV3MultiassetMultiAssets;1021 readonly maximal: bool;1022 } & Struct;1023 readonly isInitiateReserveWithdraw: boolean;1024 readonly asInitiateReserveWithdraw: {1025 readonly assets: XcmV3MultiassetMultiAssetFilter;1026 readonly reserve: XcmV3MultiLocation;1027 readonly xcm: XcmV3Xcm;1028 } & Struct;1029 readonly isInitiateTeleport: boolean;1030 readonly asInitiateTeleport: {1031 readonly assets: XcmV3MultiassetMultiAssetFilter;1032 readonly dest: XcmV3MultiLocation;1033 readonly xcm: XcmV3Xcm;1034 } & Struct;1035 readonly isReportHolding: boolean;1036 readonly asReportHolding: {1037 readonly responseInfo: XcmV3QueryResponseInfo;1038 readonly assets: XcmV3MultiassetMultiAssetFilter;1039 } & Struct;1040 readonly isBuyExecution: boolean;1041 readonly asBuyExecution: {1042 readonly fees: XcmV3MultiAsset;1043 readonly weightLimit: XcmV3WeightLimit;1044 } & Struct;1045 readonly isRefundSurplus: boolean;1046 readonly isSetErrorHandler: boolean;1047 readonly asSetErrorHandler: XcmV3Xcm;1048 readonly isSetAppendix: boolean;1049 readonly asSetAppendix: XcmV3Xcm;1050 readonly isClearError: boolean;1051 readonly isClaimAsset: boolean;1052 readonly asClaimAsset: {1053 readonly assets: XcmV3MultiassetMultiAssets;1054 readonly ticket: XcmV3MultiLocation;1055 } & Struct;1056 readonly isTrap: boolean;1057 readonly asTrap: Compact<u64>;1058 readonly isSubscribeVersion: boolean;1059 readonly asSubscribeVersion: {1060 readonly queryId: Compact<u64>;1061 readonly maxResponseWeight: SpWeightsWeightV2Weight;1062 } & Struct;1063 readonly isUnsubscribeVersion: boolean;1064 readonly isBurnAsset: boolean;1065 readonly asBurnAsset: XcmV3MultiassetMultiAssets;1066 readonly isExpectAsset: boolean;1067 readonly asExpectAsset: XcmV3MultiassetMultiAssets;1068 readonly isExpectOrigin: boolean;1069 readonly asExpectOrigin: Option<XcmV3MultiLocation>;1070 readonly isExpectError: boolean;1071 readonly asExpectError: Option<ITuple<[u32, XcmV3TraitsError]>>;1072 readonly isExpectTransactStatus: boolean;1073 readonly asExpectTransactStatus: XcmV3MaybeErrorCode;1074 readonly isQueryPallet: boolean;1075 readonly asQueryPallet: {1076 readonly moduleName: Bytes;1077 readonly responseInfo: XcmV3QueryResponseInfo;1078 } & Struct;1079 readonly isExpectPallet: boolean;1080 readonly asExpectPallet: {1081 readonly index: Compact<u32>;1082 readonly name: Bytes;1083 readonly moduleName: Bytes;1084 readonly crateMajor: Compact<u32>;1085 readonly minCrateMinor: Compact<u32>;1086 } & Struct;1087 readonly isReportTransactStatus: boolean;1088 readonly asReportTransactStatus: XcmV3QueryResponseInfo;1089 readonly isClearTransactStatus: boolean;1090 readonly isUniversalOrigin: boolean;1091 readonly asUniversalOrigin: XcmV3Junction;1092 readonly isExportMessage: boolean;1093 readonly asExportMessage: {1094 readonly network: XcmV3JunctionNetworkId;1095 readonly destination: XcmV3Junctions;1096 readonly xcm: XcmV3Xcm;1097 } & Struct;1098 readonly isLockAsset: boolean;1099 readonly asLockAsset: {1100 readonly asset: XcmV3MultiAsset;1101 readonly unlocker: XcmV3MultiLocation;1102 } & Struct;1103 readonly isUnlockAsset: boolean;1104 readonly asUnlockAsset: {1105 readonly asset: XcmV3MultiAsset;1106 readonly target: XcmV3MultiLocation;1107 } & Struct;1108 readonly isNoteUnlockable: boolean;1109 readonly asNoteUnlockable: {1110 readonly asset: XcmV3MultiAsset;1111 readonly owner: XcmV3MultiLocation;1112 } & Struct;1113 readonly isRequestUnlock: boolean;1114 readonly asRequestUnlock: {1115 readonly asset: XcmV3MultiAsset;1116 readonly locker: XcmV3MultiLocation;1117 } & Struct;1118 readonly isSetFeesMode: boolean;1119 readonly asSetFeesMode: {1120 readonly jitWithdraw: bool;1121 } & Struct;1122 readonly isSetTopic: boolean;1123 readonly asSetTopic: U8aFixed;1124 readonly isClearTopic: boolean;1125 readonly isAliasOrigin: boolean;1126 readonly asAliasOrigin: XcmV3MultiLocation;1127 readonly isUnpaidExecution: boolean;1128 readonly asUnpaidExecution: {1129 readonly weightLimit: XcmV3WeightLimit;1130 readonly checkOrigin: Option<XcmV3MultiLocation>;1131 } & Struct;1132 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';1133 }11341135 /** @name XcmV3Response (75) */1136 interface XcmV3Response extends Enum {1137 readonly isNull: boolean;1138 readonly isAssets: boolean;1139 readonly asAssets: XcmV3MultiassetMultiAssets;1140 readonly isExecutionResult: boolean;1141 readonly asExecutionResult: Option<ITuple<[u32, XcmV3TraitsError]>>;1142 readonly isVersion: boolean;1143 readonly asVersion: u32;1144 readonly isPalletsInfo: boolean;1145 readonly asPalletsInfo: Vec<XcmV3PalletInfo>;1146 readonly isDispatchResult: boolean;1147 readonly asDispatchResult: XcmV3MaybeErrorCode;1148 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version' | 'PalletsInfo' | 'DispatchResult';1149 }11501151 /** @name XcmV3PalletInfo (79) */1152 interface XcmV3PalletInfo extends Struct {1153 readonly index: Compact<u32>;1154 readonly name: Bytes;1155 readonly moduleName: Bytes;1156 readonly major: Compact<u32>;1157 readonly minor: Compact<u32>;1158 readonly patch: Compact<u32>;1159 }11601161 /** @name XcmV3MaybeErrorCode (82) */1162 interface XcmV3MaybeErrorCode extends Enum {1163 readonly isSuccess: boolean;1164 readonly isError: boolean;1165 readonly asError: Bytes;1166 readonly isTruncatedError: boolean;1167 readonly asTruncatedError: Bytes;1168 readonly type: 'Success' | 'Error' | 'TruncatedError';1169 }11701171 /** @name XcmV2OriginKind (85) */1172 interface XcmV2OriginKind extends Enum {1173 readonly isNative: boolean;1174 readonly isSovereignAccount: boolean;1175 readonly isSuperuser: boolean;1176 readonly isXcm: boolean;1177 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';1178 }11791180 /** @name XcmDoubleEncoded (86) */1181 interface XcmDoubleEncoded extends Struct {1182 readonly encoded: Bytes;1183 }11841185 /** @name XcmV3QueryResponseInfo (87) */1186 interface XcmV3QueryResponseInfo extends Struct {1187 readonly destination: XcmV3MultiLocation;1188 readonly queryId: Compact<u64>;1189 readonly maxWeight: SpWeightsWeightV2Weight;1190 }11911192 /** @name XcmV3MultiassetMultiAssetFilter (88) */1193 interface XcmV3MultiassetMultiAssetFilter extends Enum {1194 readonly isDefinite: boolean;1195 readonly asDefinite: XcmV3MultiassetMultiAssets;1196 readonly isWild: boolean;1197 readonly asWild: XcmV3MultiassetWildMultiAsset;1198 readonly type: 'Definite' | 'Wild';1199 }12001201 /** @name XcmV3MultiassetWildMultiAsset (89) */1202 interface XcmV3MultiassetWildMultiAsset extends Enum {1203 readonly isAll: boolean;1204 readonly isAllOf: boolean;1205 readonly asAllOf: {1206 readonly id: XcmV3MultiassetAssetId;1207 readonly fun: XcmV3MultiassetWildFungibility;1208 } & Struct;1209 readonly isAllCounted: boolean;1210 readonly asAllCounted: Compact<u32>;1211 readonly isAllOfCounted: boolean;1212 readonly asAllOfCounted: {1213 readonly id: XcmV3MultiassetAssetId;1214 readonly fun: XcmV3MultiassetWildFungibility;1215 readonly count: Compact<u32>;1216 } & Struct;1217 readonly type: 'All' | 'AllOf' | 'AllCounted' | 'AllOfCounted';1218 }12191220 /** @name XcmV3MultiassetWildFungibility (90) */1221 interface XcmV3MultiassetWildFungibility extends Enum {1222 readonly isFungible: boolean;1223 readonly isNonFungible: boolean;1224 readonly type: 'Fungible' | 'NonFungible';1225 }12261227 /** @name XcmV3WeightLimit (92) */1228 interface XcmV3WeightLimit extends Enum {1229 readonly isUnlimited: boolean;1230 readonly isLimited: boolean;1231 readonly asLimited: SpWeightsWeightV2Weight;1232 readonly type: 'Unlimited' | 'Limited';1233 }12341235 /** @name XcmVersionedMultiAssets (93) */1236 interface XcmVersionedMultiAssets extends Enum {1237 readonly isV2: boolean;1238 readonly asV2: XcmV2MultiassetMultiAssets;1239 readonly isV3: boolean;1240 readonly asV3: XcmV3MultiassetMultiAssets;1241 readonly type: 'V2' | 'V3';1242 }12431244 /** @name XcmV2MultiassetMultiAssets (94) */1245 interface XcmV2MultiassetMultiAssets extends Vec<XcmV2MultiAsset> {}12461247 /** @name XcmV2MultiAsset (96) */1248 interface XcmV2MultiAsset extends Struct {1249 readonly id: XcmV2MultiassetAssetId;1250 readonly fun: XcmV2MultiassetFungibility;1251 }12521253 /** @name XcmV2MultiassetAssetId (97) */1254 interface XcmV2MultiassetAssetId extends Enum {1255 readonly isConcrete: boolean;1256 readonly asConcrete: XcmV2MultiLocation;1257 readonly isAbstract: boolean;1258 readonly asAbstract: Bytes;1259 readonly type: 'Concrete' | 'Abstract';1260 }12611262 /** @name XcmV2MultiLocation (98) */1263 interface XcmV2MultiLocation extends Struct {1264 readonly parents: u8;1265 readonly interior: XcmV2MultilocationJunctions;1266 }12671268 /** @name XcmV2MultilocationJunctions (99) */1269 interface XcmV2MultilocationJunctions extends Enum {1270 readonly isHere: boolean;1271 readonly isX1: boolean;1272 readonly asX1: XcmV2Junction;1273 readonly isX2: boolean;1274 readonly asX2: ITuple<[XcmV2Junction, XcmV2Junction]>;1275 readonly isX3: boolean;1276 readonly asX3: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction]>;1277 readonly isX4: boolean;1278 readonly asX4: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;1279 readonly isX5: boolean;1280 readonly asX5: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;1281 readonly isX6: boolean;1282 readonly asX6: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;1283 readonly isX7: boolean;1284 readonly asX7: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;1285 readonly isX8: boolean;1286 readonly asX8: ITuple<[XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction, XcmV2Junction]>;1287 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1288 }12891290 /** @name XcmV2Junction (100) */1291 interface XcmV2Junction extends Enum {1292 readonly isParachain: boolean;1293 readonly asParachain: Compact<u32>;1294 readonly isAccountId32: boolean;1295 readonly asAccountId32: {1296 readonly network: XcmV2NetworkId;1297 readonly id: U8aFixed;1298 } & Struct;1299 readonly isAccountIndex64: boolean;1300 readonly asAccountIndex64: {1301 readonly network: XcmV2NetworkId;1302 readonly index: Compact<u64>;1303 } & Struct;1304 readonly isAccountKey20: boolean;1305 readonly asAccountKey20: {1306 readonly network: XcmV2NetworkId;1307 readonly key: U8aFixed;1308 } & Struct;1309 readonly isPalletInstance: boolean;1310 readonly asPalletInstance: u8;1311 readonly isGeneralIndex: boolean;1312 readonly asGeneralIndex: Compact<u128>;1313 readonly isGeneralKey: boolean;1314 readonly asGeneralKey: Bytes;1315 readonly isOnlyChild: boolean;1316 readonly isPlurality: boolean;1317 readonly asPlurality: {1318 readonly id: XcmV2BodyId;1319 readonly part: XcmV2BodyPart;1320 } & Struct;1321 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1322 }13231324 /** @name XcmV2NetworkId (101) */1325 interface XcmV2NetworkId extends Enum {1326 readonly isAny: boolean;1327 readonly isNamed: boolean;1328 readonly asNamed: Bytes;1329 readonly isPolkadot: boolean;1330 readonly isKusama: boolean;1331 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';1332 }13331334 /** @name XcmV2BodyId (103) */1335 interface XcmV2BodyId extends Enum {1336 readonly isUnit: boolean;1337 readonly isNamed: boolean;1338 readonly asNamed: Bytes;1339 readonly isIndex: boolean;1340 readonly asIndex: Compact<u32>;1341 readonly isExecutive: boolean;1342 readonly isTechnical: boolean;1343 readonly isLegislative: boolean;1344 readonly isJudicial: boolean;1345 readonly isDefense: boolean;1346 readonly isAdministration: boolean;1347 readonly isTreasury: boolean;1348 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';1349 }13501351 /** @name XcmV2BodyPart (104) */1352 interface XcmV2BodyPart extends Enum {1353 readonly isVoice: boolean;1354 readonly isMembers: boolean;1355 readonly asMembers: {1356 readonly count: Compact<u32>;1357 } & Struct;1358 readonly isFraction: boolean;1359 readonly asFraction: {1360 readonly nom: Compact<u32>;1361 readonly denom: Compact<u32>;1362 } & Struct;1363 readonly isAtLeastProportion: boolean;1364 readonly asAtLeastProportion: {1365 readonly nom: Compact<u32>;1366 readonly denom: Compact<u32>;1367 } & Struct;1368 readonly isMoreThanProportion: boolean;1369 readonly asMoreThanProportion: {1370 readonly nom: Compact<u32>;1371 readonly denom: Compact<u32>;1372 } & Struct;1373 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';1374 }13751376 /** @name XcmV2MultiassetFungibility (105) */1377 interface XcmV2MultiassetFungibility extends Enum {1378 readonly isFungible: boolean;1379 readonly asFungible: Compact<u128>;1380 readonly isNonFungible: boolean;1381 readonly asNonFungible: XcmV2MultiassetAssetInstance;1382 readonly type: 'Fungible' | 'NonFungible';1383 }13841385 /** @name XcmV2MultiassetAssetInstance (106) */1386 interface XcmV2MultiassetAssetInstance extends Enum {1387 readonly isUndefined: boolean;1388 readonly isIndex: boolean;1389 readonly asIndex: Compact<u128>;1390 readonly isArray4: boolean;1391 readonly asArray4: U8aFixed;1392 readonly isArray8: boolean;1393 readonly asArray8: U8aFixed;1394 readonly isArray16: boolean;1395 readonly asArray16: U8aFixed;1396 readonly isArray32: boolean;1397 readonly asArray32: U8aFixed;1398 readonly isBlob: boolean;1399 readonly asBlob: Bytes;1400 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';1401 }14021403 /** @name XcmVersionedMultiLocation (107) */1404 interface XcmVersionedMultiLocation extends Enum {1405 readonly isV2: boolean;1406 readonly asV2: XcmV2MultiLocation;1407 readonly isV3: boolean;1408 readonly asV3: XcmV3MultiLocation;1409 readonly type: 'V2' | 'V3';1410 }14111412 /** @name CumulusPalletXcmEvent (108) */1413 interface CumulusPalletXcmEvent extends Enum {1414 readonly isInvalidFormat: boolean;1415 readonly asInvalidFormat: U8aFixed;1416 readonly isUnsupportedVersion: boolean;1417 readonly asUnsupportedVersion: U8aFixed;1418 readonly isExecutedDownward: boolean;1419 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV3TraitsOutcome]>;1420 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1421 }14221423 /** @name CumulusPalletDmpQueueEvent (109) */1424 interface CumulusPalletDmpQueueEvent extends Enum {1425 readonly isInvalidFormat: boolean;1426 readonly asInvalidFormat: {1427 readonly messageId: U8aFixed;1428 } & Struct;1429 readonly isUnsupportedVersion: boolean;1430 readonly asUnsupportedVersion: {1431 readonly messageId: U8aFixed;1432 } & Struct;1433 readonly isExecutedDownward: boolean;1434 readonly asExecutedDownward: {1435 readonly messageId: U8aFixed;1436 readonly outcome: XcmV3TraitsOutcome;1437 } & Struct;1438 readonly isWeightExhausted: boolean;1439 readonly asWeightExhausted: {1440 readonly messageId: U8aFixed;1441 readonly remainingWeight: SpWeightsWeightV2Weight;1442 readonly requiredWeight: SpWeightsWeightV2Weight;1443 } & Struct;1444 readonly isOverweightEnqueued: boolean;1445 readonly asOverweightEnqueued: {1446 readonly messageId: U8aFixed;1447 readonly overweightIndex: u64;1448 readonly requiredWeight: SpWeightsWeightV2Weight;1449 } & Struct;1450 readonly isOverweightServiced: boolean;1451 readonly asOverweightServiced: {1452 readonly overweightIndex: u64;1453 readonly weightUsed: SpWeightsWeightV2Weight;1454 } & Struct;1455 readonly isMaxMessagesExhausted: boolean;1456 readonly asMaxMessagesExhausted: {1457 readonly messageId: U8aFixed;1458 } & Struct;1459 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced' | 'MaxMessagesExhausted';1460 }14611462 /** @name PalletConfigurationEvent (110) */1463 interface PalletConfigurationEvent extends Enum {1464 readonly isNewDesiredCollators: boolean;1465 readonly asNewDesiredCollators: {1466 readonly desiredCollators: Option<u32>;1467 } & Struct;1468 readonly isNewCollatorLicenseBond: boolean;1469 readonly asNewCollatorLicenseBond: {1470 readonly bondCost: Option<u128>;1471 } & Struct;1472 readonly isNewCollatorKickThreshold: boolean;1473 readonly asNewCollatorKickThreshold: {1474 readonly lengthInBlocks: Option<u32>;1475 } & Struct;1476 readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';1477 }14781479 /** @name PalletCommonEvent (113) */1480 interface PalletCommonEvent extends Enum {1481 readonly isCollectionCreated: boolean;1482 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1483 readonly isCollectionDestroyed: boolean;1484 readonly asCollectionDestroyed: u32;1485 readonly isItemCreated: boolean;1486 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1487 readonly isItemDestroyed: boolean;1488 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1489 readonly isTransfer: boolean;1490 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1491 readonly isApproved: boolean;1492 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1493 readonly isApprovedForAll: boolean;1494 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1495 readonly isCollectionPropertySet: boolean;1496 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1497 readonly isCollectionPropertyDeleted: boolean;1498 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1499 readonly isTokenPropertySet: boolean;1500 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1501 readonly isTokenPropertyDeleted: boolean;1502 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1503 readonly isPropertyPermissionSet: boolean;1504 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1505 readonly isAllowListAddressAdded: boolean;1506 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1507 readonly isAllowListAddressRemoved: boolean;1508 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1509 readonly isCollectionAdminAdded: boolean;1510 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1511 readonly isCollectionAdminRemoved: boolean;1512 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1513 readonly isCollectionLimitSet: boolean;1514 readonly asCollectionLimitSet: u32;1515 readonly isCollectionOwnerChanged: boolean;1516 readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1517 readonly isCollectionPermissionSet: boolean;1518 readonly asCollectionPermissionSet: u32;1519 readonly isCollectionSponsorSet: boolean;1520 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1521 readonly isSponsorshipConfirmed: boolean;1522 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1523 readonly isCollectionSponsorRemoved: boolean;1524 readonly asCollectionSponsorRemoved: u32;1525 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1526 }15271528 /** @name PalletEvmAccountBasicCrossAccountIdRepr (116) */1529 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1530 readonly isSubstrate: boolean;1531 readonly asSubstrate: AccountId32;1532 readonly isEthereum: boolean;1533 readonly asEthereum: H160;1534 readonly type: 'Substrate' | 'Ethereum';1535 }15361537 /** @name PalletStructureEvent (119) */1538 interface PalletStructureEvent extends Enum {1539 readonly isExecuted: boolean;1540 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1541 readonly type: 'Executed';1542 }15431544 /** @name PalletAppPromotionEvent (120) */1545 interface PalletAppPromotionEvent extends Enum {1546 readonly isStakingRecalculation: boolean;1547 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1548 readonly isStake: boolean;1549 readonly asStake: ITuple<[AccountId32, u128]>;1550 readonly isUnstake: boolean;1551 readonly asUnstake: ITuple<[AccountId32, u128]>;1552 readonly isSetAdmin: boolean;1553 readonly asSetAdmin: AccountId32;1554 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1555 }15561557 /** @name PalletForeignAssetsModuleEvent (121) */1558 interface PalletForeignAssetsModuleEvent extends Enum {1559 readonly isForeignAssetRegistered: boolean;1560 readonly asForeignAssetRegistered: {1561 readonly assetId: u32;1562 readonly assetAddress: XcmV3MultiLocation;1563 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1564 } & Struct;1565 readonly isForeignAssetUpdated: boolean;1566 readonly asForeignAssetUpdated: {1567 readonly assetId: u32;1568 readonly assetAddress: XcmV3MultiLocation;1569 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1570 } & Struct;1571 readonly isAssetRegistered: boolean;1572 readonly asAssetRegistered: {1573 readonly assetId: PalletForeignAssetsAssetIds;1574 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1575 } & Struct;1576 readonly isAssetUpdated: boolean;1577 readonly asAssetUpdated: {1578 readonly assetId: PalletForeignAssetsAssetIds;1579 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1580 } & Struct;1581 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1582 }15831584 /** @name PalletForeignAssetsModuleAssetMetadata (122) */1585 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1586 readonly name: Bytes;1587 readonly symbol: Bytes;1588 readonly decimals: u8;1589 readonly minimalBalance: u128;1590 }15911592 /** @name PalletEvmEvent (125) */1593 interface PalletEvmEvent extends Enum {1594 readonly isLog: boolean;1595 readonly asLog: {1596 readonly log: EthereumLog;1597 } & Struct;1598 readonly isCreated: boolean;1599 readonly asCreated: {1600 readonly address: H160;1601 } & Struct;1602 readonly isCreatedFailed: boolean;1603 readonly asCreatedFailed: {1604 readonly address: H160;1605 } & Struct;1606 readonly isExecuted: boolean;1607 readonly asExecuted: {1608 readonly address: H160;1609 } & Struct;1610 readonly isExecutedFailed: boolean;1611 readonly asExecutedFailed: {1612 readonly address: H160;1613 } & Struct;1614 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1615 }16161617 /** @name EthereumLog (126) */1618 interface EthereumLog extends Struct {1619 readonly address: H160;1620 readonly topics: Vec<H256>;1621 readonly data: Bytes;1622 }16231624 /** @name PalletEthereumEvent (128) */1625 interface PalletEthereumEvent extends Enum {1626 readonly isExecuted: boolean;1627 readonly asExecuted: {1628 readonly from: H160;1629 readonly to: H160;1630 readonly transactionHash: H256;1631 readonly exitReason: EvmCoreErrorExitReason;1632 } & Struct;1633 readonly type: 'Executed';1634 }16351636 /** @name EvmCoreErrorExitReason (129) */1637 interface EvmCoreErrorExitReason extends Enum {1638 readonly isSucceed: boolean;1639 readonly asSucceed: EvmCoreErrorExitSucceed;1640 readonly isError: boolean;1641 readonly asError: EvmCoreErrorExitError;1642 readonly isRevert: boolean;1643 readonly asRevert: EvmCoreErrorExitRevert;1644 readonly isFatal: boolean;1645 readonly asFatal: EvmCoreErrorExitFatal;1646 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1647 }16481649 /** @name EvmCoreErrorExitSucceed (130) */1650 interface EvmCoreErrorExitSucceed extends Enum {1651 readonly isStopped: boolean;1652 readonly isReturned: boolean;1653 readonly isSuicided: boolean;1654 readonly type: 'Stopped' | 'Returned' | 'Suicided';1655 }16561657 /** @name EvmCoreErrorExitError (131) */1658 interface EvmCoreErrorExitError extends Enum {1659 readonly isStackUnderflow: boolean;1660 readonly isStackOverflow: boolean;1661 readonly isInvalidJump: boolean;1662 readonly isInvalidRange: boolean;1663 readonly isDesignatedInvalid: boolean;1664 readonly isCallTooDeep: boolean;1665 readonly isCreateCollision: boolean;1666 readonly isCreateContractLimit: boolean;1667 readonly isOutOfOffset: boolean;1668 readonly isOutOfGas: boolean;1669 readonly isOutOfFund: boolean;1670 readonly isPcUnderflow: boolean;1671 readonly isCreateEmpty: boolean;1672 readonly isOther: boolean;1673 readonly asOther: Text;1674 readonly isInvalidCode: boolean;1675 readonly asInvalidCode: u8;1676 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1677 }16781679 /** @name EvmCoreErrorExitRevert (135) */1680 interface EvmCoreErrorExitRevert extends Enum {1681 readonly isReverted: boolean;1682 readonly type: 'Reverted';1683 }16841685 /** @name EvmCoreErrorExitFatal (136) */1686 interface EvmCoreErrorExitFatal extends Enum {1687 readonly isNotSupported: boolean;1688 readonly isUnhandledInterrupt: boolean;1689 readonly isCallErrorAsFatal: boolean;1690 readonly asCallErrorAsFatal: EvmCoreErrorExitError;1691 readonly isOther: boolean;1692 readonly asOther: Text;1693 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1694 }16951696 /** @name PalletEvmContractHelpersEvent (137) */1697 interface PalletEvmContractHelpersEvent extends Enum {1698 readonly isContractSponsorSet: boolean;1699 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1700 readonly isContractSponsorshipConfirmed: boolean;1701 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1702 readonly isContractSponsorRemoved: boolean;1703 readonly asContractSponsorRemoved: H160;1704 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1705 }17061707 /** @name PalletEvmMigrationEvent (138) */1708 interface PalletEvmMigrationEvent extends Enum {1709 readonly isTestEvent: boolean;1710 readonly type: 'TestEvent';1711 }17121713 /** @name PalletMaintenanceEvent (139) */1714 interface PalletMaintenanceEvent extends Enum {1715 readonly isMaintenanceEnabled: boolean;1716 readonly isMaintenanceDisabled: boolean;1717 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1718 }17191720 /** @name PalletTestUtilsEvent (140) */1721 interface PalletTestUtilsEvent extends Enum {1722 readonly isValueIsSet: boolean;1723 readonly isShouldRollback: boolean;1724 readonly isBatchCompleted: boolean;1725 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1726 }17271728 /** @name FrameSystemPhase (141) */1729 interface FrameSystemPhase extends Enum {1730 readonly isApplyExtrinsic: boolean;1731 readonly asApplyExtrinsic: u32;1732 readonly isFinalization: boolean;1733 readonly isInitialization: boolean;1734 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1735 }17361737 /** @name FrameSystemLastRuntimeUpgradeInfo (144) */1738 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1739 readonly specVersion: Compact<u32>;1740 readonly specName: Text;1741 }17421743 /** @name FrameSystemCall (145) */1744 interface FrameSystemCall extends Enum {1745 readonly isRemark: boolean;1746 readonly asRemark: {1747 readonly remark: Bytes;1748 } & Struct;1749 readonly isSetHeapPages: boolean;1750 readonly asSetHeapPages: {1751 readonly pages: u64;1752 } & Struct;1753 readonly isSetCode: boolean;1754 readonly asSetCode: {1755 readonly code: Bytes;1756 } & Struct;1757 readonly isSetCodeWithoutChecks: boolean;1758 readonly asSetCodeWithoutChecks: {1759 readonly code: Bytes;1760 } & Struct;1761 readonly isSetStorage: boolean;1762 readonly asSetStorage: {1763 readonly items: Vec<ITuple<[Bytes, Bytes]>>;1764 } & Struct;1765 readonly isKillStorage: boolean;1766 readonly asKillStorage: {1767 readonly keys_: Vec<Bytes>;1768 } & Struct;1769 readonly isKillPrefix: boolean;1770 readonly asKillPrefix: {1771 readonly prefix: Bytes;1772 readonly subkeys: u32;1773 } & Struct;1774 readonly isRemarkWithEvent: boolean;1775 readonly asRemarkWithEvent: {1776 readonly remark: Bytes;1777 } & Struct;1778 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1779 }17801781 /** @name FrameSystemLimitsBlockWeights (149) */1782 interface FrameSystemLimitsBlockWeights extends Struct {1783 readonly baseBlock: SpWeightsWeightV2Weight;1784 readonly maxBlock: SpWeightsWeightV2Weight;1785 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1786 }17871788 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (150) */1789 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1790 readonly normal: FrameSystemLimitsWeightsPerClass;1791 readonly operational: FrameSystemLimitsWeightsPerClass;1792 readonly mandatory: FrameSystemLimitsWeightsPerClass;1793 }17941795 /** @name FrameSystemLimitsWeightsPerClass (151) */1796 interface FrameSystemLimitsWeightsPerClass extends Struct {1797 readonly baseExtrinsic: SpWeightsWeightV2Weight;1798 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1799 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1800 readonly reserved: Option<SpWeightsWeightV2Weight>;1801 }18021803 /** @name FrameSystemLimitsBlockLength (153) */1804 interface FrameSystemLimitsBlockLength extends Struct {1805 readonly max: FrameSupportDispatchPerDispatchClassU32;1806 }18071808 /** @name FrameSupportDispatchPerDispatchClassU32 (154) */1809 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1810 readonly normal: u32;1811 readonly operational: u32;1812 readonly mandatory: u32;1813 }18141815 /** @name SpWeightsRuntimeDbWeight (155) */1816 interface SpWeightsRuntimeDbWeight extends Struct {1817 readonly read: u64;1818 readonly write: u64;1819 }18201821 /** @name SpVersionRuntimeVersion (156) */1822 interface SpVersionRuntimeVersion extends Struct {1823 readonly specName: Text;1824 readonly implName: Text;1825 readonly authoringVersion: u32;1826 readonly specVersion: u32;1827 readonly implVersion: u32;1828 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1829 readonly transactionVersion: u32;1830 readonly stateVersion: u8;1831 }18321833 /** @name FrameSystemError (161) */1834 interface FrameSystemError extends Enum {1835 readonly isInvalidSpecName: boolean;1836 readonly isSpecVersionNeedsToIncrease: boolean;1837 readonly isFailedToExtractRuntimeVersion: boolean;1838 readonly isNonDefaultComposite: boolean;1839 readonly isNonZeroRefCount: boolean;1840 readonly isCallFiltered: boolean;1841 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1842 }18431844 /** @name PolkadotPrimitivesV2PersistedValidationData (162) */1845 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1846 readonly parentHead: Bytes;1847 readonly relayParentNumber: u32;1848 readonly relayParentStorageRoot: H256;1849 readonly maxPovSize: u32;1850 }18511852 /** @name PolkadotPrimitivesV2UpgradeRestriction (165) */1853 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1854 readonly isPresent: boolean;1855 readonly type: 'Present';1856 }18571858 /** @name SpTrieStorageProof (166) */1859 interface SpTrieStorageProof extends Struct {1860 readonly trieNodes: BTreeSet<Bytes>;1861 }18621863 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (168) */1864 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1865 readonly dmqMqcHead: H256;1866 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1867 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1868 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1869 }18701871 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (171) */1872 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1873 readonly maxCapacity: u32;1874 readonly maxTotalSize: u32;1875 readonly maxMessageSize: u32;1876 readonly msgCount: u32;1877 readonly totalSize: u32;1878 readonly mqcHead: Option<H256>;1879 }18801881 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (173) */1882 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1883 readonly maxCodeSize: u32;1884 readonly maxHeadDataSize: u32;1885 readonly maxUpwardQueueCount: u32;1886 readonly maxUpwardQueueSize: u32;1887 readonly maxUpwardMessageSize: u32;1888 readonly maxUpwardMessageNumPerCandidate: u32;1889 readonly hrmpMaxMessageNumPerCandidate: u32;1890 readonly validationUpgradeCooldown: u32;1891 readonly validationUpgradeDelay: u32;1892 }18931894 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (179) */1895 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1896 readonly recipient: u32;1897 readonly data: Bytes;1898 }18991900 /** @name CumulusPalletParachainSystemCall (180) */1901 interface CumulusPalletParachainSystemCall extends Enum {1902 readonly isSetValidationData: boolean;1903 readonly asSetValidationData: {1904 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;1905 } & Struct;1906 readonly isSudoSendUpwardMessage: boolean;1907 readonly asSudoSendUpwardMessage: {1908 readonly message: Bytes;1909 } & Struct;1910 readonly isAuthorizeUpgrade: boolean;1911 readonly asAuthorizeUpgrade: {1912 readonly codeHash: H256;1913 } & Struct;1914 readonly isEnactAuthorizedUpgrade: boolean;1915 readonly asEnactAuthorizedUpgrade: {1916 readonly code: Bytes;1917 } & Struct;1918 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1919 }19201921 /** @name CumulusPrimitivesParachainInherentParachainInherentData (181) */1922 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1923 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1924 readonly relayChainState: SpTrieStorageProof;1925 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1926 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1927 }19281929 /** @name PolkadotCorePrimitivesInboundDownwardMessage (183) */1930 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1931 readonly sentAt: u32;1932 readonly msg: Bytes;1933 }19341935 /** @name PolkadotCorePrimitivesInboundHrmpMessage (186) */1936 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1937 readonly sentAt: u32;1938 readonly data: Bytes;1939 }19401941 /** @name CumulusPalletParachainSystemError (189) */1942 interface CumulusPalletParachainSystemError extends Enum {1943 readonly isOverlappingUpgrades: boolean;1944 readonly isProhibitedByPolkadot: boolean;1945 readonly isTooBig: boolean;1946 readonly isValidationDataNotAvailable: boolean;1947 readonly isHostConfigurationNotAvailable: boolean;1948 readonly isNotScheduled: boolean;1949 readonly isNothingAuthorized: boolean;1950 readonly isUnauthorized: boolean;1951 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1952 }19531954 /** @name ParachainInfoCall (190) */1955 type ParachainInfoCall = Null;19561957 /** @name PalletCollatorSelectionCall (193) */1958 interface PalletCollatorSelectionCall extends Enum {1959 readonly isAddInvulnerable: boolean;1960 readonly asAddInvulnerable: {1961 readonly new_: AccountId32;1962 } & Struct;1963 readonly isRemoveInvulnerable: boolean;1964 readonly asRemoveInvulnerable: {1965 readonly who: AccountId32;1966 } & Struct;1967 readonly isGetLicense: boolean;1968 readonly isOnboard: boolean;1969 readonly isOffboard: boolean;1970 readonly isReleaseLicense: boolean;1971 readonly isForceReleaseLicense: boolean;1972 readonly asForceReleaseLicense: {1973 readonly who: AccountId32;1974 } & Struct;1975 readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';1976 }19771978 /** @name PalletCollatorSelectionError (194) */1979 interface PalletCollatorSelectionError extends Enum {1980 readonly isTooManyCandidates: boolean;1981 readonly isUnknown: boolean;1982 readonly isPermission: boolean;1983 readonly isAlreadyHoldingLicense: boolean;1984 readonly isNoLicense: boolean;1985 readonly isAlreadyCandidate: boolean;1986 readonly isNotCandidate: boolean;1987 readonly isTooManyInvulnerables: boolean;1988 readonly isTooFewInvulnerables: boolean;1989 readonly isAlreadyInvulnerable: boolean;1990 readonly isNotInvulnerable: boolean;1991 readonly isNoAssociatedValidatorId: boolean;1992 readonly isValidatorNotRegistered: boolean;1993 readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';1994 }19951996 /** @name OpalRuntimeRuntimeCommonSessionKeys (197) */1997 interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {1998 readonly aura: SpConsensusAuraSr25519AppSr25519Public;1999 }20002001 /** @name SpConsensusAuraSr25519AppSr25519Public (198) */2002 interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}20032004 /** @name SpCoreSr25519Public (199) */2005 interface SpCoreSr25519Public extends U8aFixed {}20062007 /** @name SpCoreCryptoKeyTypeId (202) */2008 interface SpCoreCryptoKeyTypeId extends U8aFixed {}20092010 /** @name PalletSessionCall (203) */2011 interface PalletSessionCall extends Enum {2012 readonly isSetKeys: boolean;2013 readonly asSetKeys: {2014 readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;2015 readonly proof: Bytes;2016 } & Struct;2017 readonly isPurgeKeys: boolean;2018 readonly type: 'SetKeys' | 'PurgeKeys';2019 }20202021 /** @name PalletSessionError (204) */2022 interface PalletSessionError extends Enum {2023 readonly isInvalidProof: boolean;2024 readonly isNoAssociatedValidatorId: boolean;2025 readonly isDuplicatedKey: boolean;2026 readonly isNoKeys: boolean;2027 readonly isNoAccount: boolean;2028 readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';2029 }20302031 /** @name PalletBalancesBalanceLock (209) */2032 interface PalletBalancesBalanceLock extends Struct {2033 readonly id: U8aFixed;2034 readonly amount: u128;2035 readonly reasons: PalletBalancesReasons;2036 }20372038 /** @name PalletBalancesReasons (210) */2039 interface PalletBalancesReasons extends Enum {2040 readonly isFee: boolean;2041 readonly isMisc: boolean;2042 readonly isAll: boolean;2043 readonly type: 'Fee' | 'Misc' | 'All';2044 }20452046 /** @name PalletBalancesReserveData (213) */2047 interface PalletBalancesReserveData extends Struct {2048 readonly id: U8aFixed;2049 readonly amount: u128;2050 }20512052 /** @name PalletBalancesCall (215) */2053 interface PalletBalancesCall extends Enum {2054 readonly isTransfer: boolean;2055 readonly asTransfer: {2056 readonly dest: MultiAddress;2057 readonly value: Compact<u128>;2058 } & Struct;2059 readonly isSetBalance: boolean;2060 readonly asSetBalance: {2061 readonly who: MultiAddress;2062 readonly newFree: Compact<u128>;2063 readonly newReserved: Compact<u128>;2064 } & Struct;2065 readonly isForceTransfer: boolean;2066 readonly asForceTransfer: {2067 readonly source: MultiAddress;2068 readonly dest: MultiAddress;2069 readonly value: Compact<u128>;2070 } & Struct;2071 readonly isTransferKeepAlive: boolean;2072 readonly asTransferKeepAlive: {2073 readonly dest: MultiAddress;2074 readonly value: Compact<u128>;2075 } & Struct;2076 readonly isTransferAll: boolean;2077 readonly asTransferAll: {2078 readonly dest: MultiAddress;2079 readonly keepAlive: bool;2080 } & Struct;2081 readonly isForceUnreserve: boolean;2082 readonly asForceUnreserve: {2083 readonly who: MultiAddress;2084 readonly amount: u128;2085 } & Struct;2086 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';2087 }20882089 /** @name PalletBalancesError (218) */2090 interface PalletBalancesError extends Enum {2091 readonly isVestingBalance: boolean;2092 readonly isLiquidityRestrictions: boolean;2093 readonly isInsufficientBalance: boolean;2094 readonly isExistentialDeposit: boolean;2095 readonly isKeepAlive: boolean;2096 readonly isExistingVestingSchedule: boolean;2097 readonly isDeadAccount: boolean;2098 readonly isTooManyReserves: boolean;2099 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';2100 }21012102 /** @name PalletTimestampCall (219) */2103 interface PalletTimestampCall extends Enum {2104 readonly isSet: boolean;2105 readonly asSet: {2106 readonly now: Compact<u64>;2107 } & Struct;2108 readonly type: 'Set';2109 }21102111 /** @name PalletTransactionPaymentReleases (221) */2112 interface PalletTransactionPaymentReleases extends Enum {2113 readonly isV1Ancient: boolean;2114 readonly isV2: boolean;2115 readonly type: 'V1Ancient' | 'V2';2116 }21172118 /** @name PalletTreasuryProposal (222) */2119 interface PalletTreasuryProposal extends Struct {2120 readonly proposer: AccountId32;2121 readonly value: u128;2122 readonly beneficiary: AccountId32;2123 readonly bond: u128;2124 }21252126 /** @name PalletTreasuryCall (224) */2127 interface PalletTreasuryCall extends Enum {2128 readonly isProposeSpend: boolean;2129 readonly asProposeSpend: {2130 readonly value: Compact<u128>;2131 readonly beneficiary: MultiAddress;2132 } & Struct;2133 readonly isRejectProposal: boolean;2134 readonly asRejectProposal: {2135 readonly proposalId: Compact<u32>;2136 } & Struct;2137 readonly isApproveProposal: boolean;2138 readonly asApproveProposal: {2139 readonly proposalId: Compact<u32>;2140 } & Struct;2141 readonly isSpend: boolean;2142 readonly asSpend: {2143 readonly amount: Compact<u128>;2144 readonly beneficiary: MultiAddress;2145 } & Struct;2146 readonly isRemoveApproval: boolean;2147 readonly asRemoveApproval: {2148 readonly proposalId: Compact<u32>;2149 } & Struct;2150 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';2151 }21522153 /** @name FrameSupportPalletId (226) */2154 interface FrameSupportPalletId extends U8aFixed {}21552156 /** @name PalletTreasuryError (227) */2157 interface PalletTreasuryError extends Enum {2158 readonly isInsufficientProposersBalance: boolean;2159 readonly isInvalidIndex: boolean;2160 readonly isTooManyApprovals: boolean;2161 readonly isInsufficientPermission: boolean;2162 readonly isProposalNotApproved: boolean;2163 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';2164 }21652166 /** @name PalletSudoCall (228) */2167 interface PalletSudoCall extends Enum {2168 readonly isSudo: boolean;2169 readonly asSudo: {2170 readonly call: Call;2171 } & Struct;2172 readonly isSudoUncheckedWeight: boolean;2173 readonly asSudoUncheckedWeight: {2174 readonly call: Call;2175 readonly weight: SpWeightsWeightV2Weight;2176 } & Struct;2177 readonly isSetKey: boolean;2178 readonly asSetKey: {2179 readonly new_: MultiAddress;2180 } & Struct;2181 readonly isSudoAs: boolean;2182 readonly asSudoAs: {2183 readonly who: MultiAddress;2184 readonly call: Call;2185 } & Struct;2186 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';2187 }21882189 /** @name OrmlVestingModuleCall (230) */2190 interface OrmlVestingModuleCall extends Enum {2191 readonly isClaim: boolean;2192 readonly isVestedTransfer: boolean;2193 readonly asVestedTransfer: {2194 readonly dest: MultiAddress;2195 readonly schedule: OrmlVestingVestingSchedule;2196 } & Struct;2197 readonly isUpdateVestingSchedules: boolean;2198 readonly asUpdateVestingSchedules: {2199 readonly who: MultiAddress;2200 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;2201 } & Struct;2202 readonly isClaimFor: boolean;2203 readonly asClaimFor: {2204 readonly dest: MultiAddress;2205 } & Struct;2206 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';2207 }22082209 /** @name OrmlXtokensModuleCall (232) */2210 interface OrmlXtokensModuleCall extends Enum {2211 readonly isTransfer: boolean;2212 readonly asTransfer: {2213 readonly currencyId: PalletForeignAssetsAssetIds;2214 readonly amount: u128;2215 readonly dest: XcmVersionedMultiLocation;2216 readonly destWeightLimit: XcmV3WeightLimit;2217 } & Struct;2218 readonly isTransferMultiasset: boolean;2219 readonly asTransferMultiasset: {2220 readonly asset: XcmVersionedMultiAsset;2221 readonly dest: XcmVersionedMultiLocation;2222 readonly destWeightLimit: XcmV3WeightLimit;2223 } & Struct;2224 readonly isTransferWithFee: boolean;2225 readonly asTransferWithFee: {2226 readonly currencyId: PalletForeignAssetsAssetIds;2227 readonly amount: u128;2228 readonly fee: u128;2229 readonly dest: XcmVersionedMultiLocation;2230 readonly destWeightLimit: XcmV3WeightLimit;2231 } & Struct;2232 readonly isTransferMultiassetWithFee: boolean;2233 readonly asTransferMultiassetWithFee: {2234 readonly asset: XcmVersionedMultiAsset;2235 readonly fee: XcmVersionedMultiAsset;2236 readonly dest: XcmVersionedMultiLocation;2237 readonly destWeightLimit: XcmV3WeightLimit;2238 } & Struct;2239 readonly isTransferMulticurrencies: boolean;2240 readonly asTransferMulticurrencies: {2241 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;2242 readonly feeItem: u32;2243 readonly dest: XcmVersionedMultiLocation;2244 readonly destWeightLimit: XcmV3WeightLimit;2245 } & Struct;2246 readonly isTransferMultiassets: boolean;2247 readonly asTransferMultiassets: {2248 readonly assets: XcmVersionedMultiAssets;2249 readonly feeItem: u32;2250 readonly dest: XcmVersionedMultiLocation;2251 readonly destWeightLimit: XcmV3WeightLimit;2252 } & Struct;2253 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';2254 }22552256 /** @name XcmVersionedMultiAsset (233) */2257 interface XcmVersionedMultiAsset extends Enum {2258 readonly isV2: boolean;2259 readonly asV2: XcmV2MultiAsset;2260 readonly isV3: boolean;2261 readonly asV3: XcmV3MultiAsset;2262 readonly type: 'V2' | 'V3';2263 }22642265 /** @name OrmlTokensModuleCall (236) */2266 interface OrmlTokensModuleCall extends Enum {2267 readonly isTransfer: boolean;2268 readonly asTransfer: {2269 readonly dest: MultiAddress;2270 readonly currencyId: PalletForeignAssetsAssetIds;2271 readonly amount: Compact<u128>;2272 } & Struct;2273 readonly isTransferAll: boolean;2274 readonly asTransferAll: {2275 readonly dest: MultiAddress;2276 readonly currencyId: PalletForeignAssetsAssetIds;2277 readonly keepAlive: bool;2278 } & Struct;2279 readonly isTransferKeepAlive: boolean;2280 readonly asTransferKeepAlive: {2281 readonly dest: MultiAddress;2282 readonly currencyId: PalletForeignAssetsAssetIds;2283 readonly amount: Compact<u128>;2284 } & Struct;2285 readonly isForceTransfer: boolean;2286 readonly asForceTransfer: {2287 readonly source: MultiAddress;2288 readonly dest: MultiAddress;2289 readonly currencyId: PalletForeignAssetsAssetIds;2290 readonly amount: Compact<u128>;2291 } & Struct;2292 readonly isSetBalance: boolean;2293 readonly asSetBalance: {2294 readonly who: MultiAddress;2295 readonly currencyId: PalletForeignAssetsAssetIds;2296 readonly newFree: Compact<u128>;2297 readonly newReserved: Compact<u128>;2298 } & Struct;2299 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';2300 }23012302 /** @name PalletIdentityCall (237) */2303 interface PalletIdentityCall extends Enum {2304 readonly isAddRegistrar: boolean;2305 readonly asAddRegistrar: {2306 readonly account: MultiAddress;2307 } & Struct;2308 readonly isSetIdentity: boolean;2309 readonly asSetIdentity: {2310 readonly info: PalletIdentityIdentityInfo;2311 } & Struct;2312 readonly isSetSubs: boolean;2313 readonly asSetSubs: {2314 readonly subs: Vec<ITuple<[AccountId32, Data]>>;2315 } & Struct;2316 readonly isClearIdentity: boolean;2317 readonly isRequestJudgement: boolean;2318 readonly asRequestJudgement: {2319 readonly regIndex: Compact<u32>;2320 readonly maxFee: Compact<u128>;2321 } & Struct;2322 readonly isCancelRequest: boolean;2323 readonly asCancelRequest: {2324 readonly regIndex: u32;2325 } & Struct;2326 readonly isSetFee: boolean;2327 readonly asSetFee: {2328 readonly index: Compact<u32>;2329 readonly fee: Compact<u128>;2330 } & Struct;2331 readonly isSetAccountId: boolean;2332 readonly asSetAccountId: {2333 readonly index: Compact<u32>;2334 readonly new_: MultiAddress;2335 } & Struct;2336 readonly isSetFields: boolean;2337 readonly asSetFields: {2338 readonly index: Compact<u32>;2339 readonly fields: PalletIdentityBitFlags;2340 } & Struct;2341 readonly isProvideJudgement: boolean;2342 readonly asProvideJudgement: {2343 readonly regIndex: Compact<u32>;2344 readonly target: MultiAddress;2345 readonly judgement: PalletIdentityJudgement;2346 readonly identity: H256;2347 } & Struct;2348 readonly isKillIdentity: boolean;2349 readonly asKillIdentity: {2350 readonly target: MultiAddress;2351 } & Struct;2352 readonly isAddSub: boolean;2353 readonly asAddSub: {2354 readonly sub: MultiAddress;2355 readonly data: Data;2356 } & Struct;2357 readonly isRenameSub: boolean;2358 readonly asRenameSub: {2359 readonly sub: MultiAddress;2360 readonly data: Data;2361 } & Struct;2362 readonly isRemoveSub: boolean;2363 readonly asRemoveSub: {2364 readonly sub: MultiAddress;2365 } & Struct;2366 readonly isQuitSub: boolean;2367 readonly isForceInsertIdentities: boolean;2368 readonly asForceInsertIdentities: {2369 readonly identities: Vec<ITuple<[AccountId32, PalletIdentityRegistration]>>;2370 } & Struct;2371 readonly isForceRemoveIdentities: boolean;2372 readonly asForceRemoveIdentities: {2373 readonly identities: Vec<AccountId32>;2374 } & Struct;2375 readonly isForceSetSubs: boolean;2376 readonly asForceSetSubs: {2377 readonly subs: Vec<ITuple<[AccountId32, ITuple<[u128, Vec<ITuple<[AccountId32, Data]>>]>]>>;2378 } & Struct;2379 readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities' | 'ForceSetSubs';2380 }23812382 /** @name PalletIdentityIdentityInfo (238) */2383 interface PalletIdentityIdentityInfo extends Struct {2384 readonly additional: Vec<ITuple<[Data, Data]>>;2385 readonly display: Data;2386 readonly legal: Data;2387 readonly web: Data;2388 readonly riot: Data;2389 readonly email: Data;2390 readonly pgpFingerprint: Option<U8aFixed>;2391 readonly image: Data;2392 readonly twitter: Data;2393 }23942395 /** @name PalletIdentityBitFlags (274) */2396 interface PalletIdentityBitFlags extends Set {2397 readonly isDisplay: boolean;2398 readonly isLegal: boolean;2399 readonly isWeb: boolean;2400 readonly isRiot: boolean;2401 readonly isEmail: boolean;2402 readonly isPgpFingerprint: boolean;2403 readonly isImage: boolean;2404 readonly isTwitter: boolean;2405 }24062407 /** @name PalletIdentityIdentityField (275) */2408 interface PalletIdentityIdentityField extends Enum {2409 readonly isDisplay: boolean;2410 readonly isLegal: boolean;2411 readonly isWeb: boolean;2412 readonly isRiot: boolean;2413 readonly isEmail: boolean;2414 readonly isPgpFingerprint: boolean;2415 readonly isImage: boolean;2416 readonly isTwitter: boolean;2417 readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';2418 }24192420 /** @name PalletIdentityJudgement (276) */2421 interface PalletIdentityJudgement extends Enum {2422 readonly isUnknown: boolean;2423 readonly isFeePaid: boolean;2424 readonly asFeePaid: u128;2425 readonly isReasonable: boolean;2426 readonly isKnownGood: boolean;2427 readonly isOutOfDate: boolean;2428 readonly isLowQuality: boolean;2429 readonly isErroneous: boolean;2430 readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';2431 }24322433 /** @name PalletIdentityRegistration (279) */2434 interface PalletIdentityRegistration extends Struct {2435 readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;2436 readonly deposit: u128;2437 readonly info: PalletIdentityIdentityInfo;2438 }24392440 /** @name PalletPreimageCall (287) */2441 interface PalletPreimageCall extends Enum {2442 readonly isNotePreimage: boolean;2443 readonly asNotePreimage: {2444 readonly bytes: Bytes;2445 } & Struct;2446 readonly isUnnotePreimage: boolean;2447 readonly asUnnotePreimage: {2448 readonly hash_: H256;2449 } & Struct;2450 readonly isRequestPreimage: boolean;2451 readonly asRequestPreimage: {2452 readonly hash_: H256;2453 } & Struct;2454 readonly isUnrequestPreimage: boolean;2455 readonly asUnrequestPreimage: {2456 readonly hash_: H256;2457 } & Struct;2458 readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';2459 }24602461 /** @name CumulusPalletXcmpQueueCall (288) */2462 interface CumulusPalletXcmpQueueCall extends Enum {2463 readonly isServiceOverweight: boolean;2464 readonly asServiceOverweight: {2465 readonly index: u64;2466 readonly weightLimit: SpWeightsWeightV2Weight;2467 } & Struct;2468 readonly isSuspendXcmExecution: boolean;2469 readonly isResumeXcmExecution: boolean;2470 readonly isUpdateSuspendThreshold: boolean;2471 readonly asUpdateSuspendThreshold: {2472 readonly new_: u32;2473 } & Struct;2474 readonly isUpdateDropThreshold: boolean;2475 readonly asUpdateDropThreshold: {2476 readonly new_: u32;2477 } & Struct;2478 readonly isUpdateResumeThreshold: boolean;2479 readonly asUpdateResumeThreshold: {2480 readonly new_: u32;2481 } & Struct;2482 readonly isUpdateThresholdWeight: boolean;2483 readonly asUpdateThresholdWeight: {2484 readonly new_: SpWeightsWeightV2Weight;2485 } & Struct;2486 readonly isUpdateWeightRestrictDecay: boolean;2487 readonly asUpdateWeightRestrictDecay: {2488 readonly new_: SpWeightsWeightV2Weight;2489 } & Struct;2490 readonly isUpdateXcmpMaxIndividualWeight: boolean;2491 readonly asUpdateXcmpMaxIndividualWeight: {2492 readonly new_: SpWeightsWeightV2Weight;2493 } & Struct;2494 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2495 }24962497 /** @name PalletXcmCall (289) */2498 interface PalletXcmCall extends Enum {2499 readonly isSend: boolean;2500 readonly asSend: {2501 readonly dest: XcmVersionedMultiLocation;2502 readonly message: XcmVersionedXcm;2503 } & Struct;2504 readonly isTeleportAssets: boolean;2505 readonly asTeleportAssets: {2506 readonly dest: XcmVersionedMultiLocation;2507 readonly beneficiary: XcmVersionedMultiLocation;2508 readonly assets: XcmVersionedMultiAssets;2509 readonly feeAssetItem: u32;2510 } & Struct;2511 readonly isReserveTransferAssets: boolean;2512 readonly asReserveTransferAssets: {2513 readonly dest: XcmVersionedMultiLocation;2514 readonly beneficiary: XcmVersionedMultiLocation;2515 readonly assets: XcmVersionedMultiAssets;2516 readonly feeAssetItem: u32;2517 } & Struct;2518 readonly isExecute: boolean;2519 readonly asExecute: {2520 readonly message: XcmVersionedXcm;2521 readonly maxWeight: SpWeightsWeightV2Weight;2522 } & Struct;2523 readonly isForceXcmVersion: boolean;2524 readonly asForceXcmVersion: {2525 readonly location: XcmV3MultiLocation;2526 readonly xcmVersion: u32;2527 } & Struct;2528 readonly isForceDefaultXcmVersion: boolean;2529 readonly asForceDefaultXcmVersion: {2530 readonly maybeXcmVersion: Option<u32>;2531 } & Struct;2532 readonly isForceSubscribeVersionNotify: boolean;2533 readonly asForceSubscribeVersionNotify: {2534 readonly location: XcmVersionedMultiLocation;2535 } & Struct;2536 readonly isForceUnsubscribeVersionNotify: boolean;2537 readonly asForceUnsubscribeVersionNotify: {2538 readonly location: XcmVersionedMultiLocation;2539 } & Struct;2540 readonly isLimitedReserveTransferAssets: boolean;2541 readonly asLimitedReserveTransferAssets: {2542 readonly dest: XcmVersionedMultiLocation;2543 readonly beneficiary: XcmVersionedMultiLocation;2544 readonly assets: XcmVersionedMultiAssets;2545 readonly feeAssetItem: u32;2546 readonly weightLimit: XcmV3WeightLimit;2547 } & Struct;2548 readonly isLimitedTeleportAssets: boolean;2549 readonly asLimitedTeleportAssets: {2550 readonly dest: XcmVersionedMultiLocation;2551 readonly beneficiary: XcmVersionedMultiLocation;2552 readonly assets: XcmVersionedMultiAssets;2553 readonly feeAssetItem: u32;2554 readonly weightLimit: XcmV3WeightLimit;2555 } & Struct;2556 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2557 }25582559 /** @name XcmVersionedXcm (290) */2560 interface XcmVersionedXcm extends Enum {2561 readonly isV2: boolean;2562 readonly asV2: XcmV2Xcm;2563 readonly isV3: boolean;2564 readonly asV3: XcmV3Xcm;2565 readonly type: 'V2' | 'V3';2566 }25672568 /** @name XcmV2Xcm (291) */2569 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}25702571 /** @name XcmV2Instruction (293) */2572 interface XcmV2Instruction extends Enum {2573 readonly isWithdrawAsset: boolean;2574 readonly asWithdrawAsset: XcmV2MultiassetMultiAssets;2575 readonly isReserveAssetDeposited: boolean;2576 readonly asReserveAssetDeposited: XcmV2MultiassetMultiAssets;2577 readonly isReceiveTeleportedAsset: boolean;2578 readonly asReceiveTeleportedAsset: XcmV2MultiassetMultiAssets;2579 readonly isQueryResponse: boolean;2580 readonly asQueryResponse: {2581 readonly queryId: Compact<u64>;2582 readonly response: XcmV2Response;2583 readonly maxWeight: Compact<u64>;2584 } & Struct;2585 readonly isTransferAsset: boolean;2586 readonly asTransferAsset: {2587 readonly assets: XcmV2MultiassetMultiAssets;2588 readonly beneficiary: XcmV2MultiLocation;2589 } & Struct;2590 readonly isTransferReserveAsset: boolean;2591 readonly asTransferReserveAsset: {2592 readonly assets: XcmV2MultiassetMultiAssets;2593 readonly dest: XcmV2MultiLocation;2594 readonly xcm: XcmV2Xcm;2595 } & Struct;2596 readonly isTransact: boolean;2597 readonly asTransact: {2598 readonly originType: XcmV2OriginKind;2599 readonly requireWeightAtMost: Compact<u64>;2600 readonly call: XcmDoubleEncoded;2601 } & Struct;2602 readonly isHrmpNewChannelOpenRequest: boolean;2603 readonly asHrmpNewChannelOpenRequest: {2604 readonly sender: Compact<u32>;2605 readonly maxMessageSize: Compact<u32>;2606 readonly maxCapacity: Compact<u32>;2607 } & Struct;2608 readonly isHrmpChannelAccepted: boolean;2609 readonly asHrmpChannelAccepted: {2610 readonly recipient: Compact<u32>;2611 } & Struct;2612 readonly isHrmpChannelClosing: boolean;2613 readonly asHrmpChannelClosing: {2614 readonly initiator: Compact<u32>;2615 readonly sender: Compact<u32>;2616 readonly recipient: Compact<u32>;2617 } & Struct;2618 readonly isClearOrigin: boolean;2619 readonly isDescendOrigin: boolean;2620 readonly asDescendOrigin: XcmV2MultilocationJunctions;2621 readonly isReportError: boolean;2622 readonly asReportError: {2623 readonly queryId: Compact<u64>;2624 readonly dest: XcmV2MultiLocation;2625 readonly maxResponseWeight: Compact<u64>;2626 } & Struct;2627 readonly isDepositAsset: boolean;2628 readonly asDepositAsset: {2629 readonly assets: XcmV2MultiassetMultiAssetFilter;2630 readonly maxAssets: Compact<u32>;2631 readonly beneficiary: XcmV2MultiLocation;2632 } & Struct;2633 readonly isDepositReserveAsset: boolean;2634 readonly asDepositReserveAsset: {2635 readonly assets: XcmV2MultiassetMultiAssetFilter;2636 readonly maxAssets: Compact<u32>;2637 readonly dest: XcmV2MultiLocation;2638 readonly xcm: XcmV2Xcm;2639 } & Struct;2640 readonly isExchangeAsset: boolean;2641 readonly asExchangeAsset: {2642 readonly give: XcmV2MultiassetMultiAssetFilter;2643 readonly receive: XcmV2MultiassetMultiAssets;2644 } & Struct;2645 readonly isInitiateReserveWithdraw: boolean;2646 readonly asInitiateReserveWithdraw: {2647 readonly assets: XcmV2MultiassetMultiAssetFilter;2648 readonly reserve: XcmV2MultiLocation;2649 readonly xcm: XcmV2Xcm;2650 } & Struct;2651 readonly isInitiateTeleport: boolean;2652 readonly asInitiateTeleport: {2653 readonly assets: XcmV2MultiassetMultiAssetFilter;2654 readonly dest: XcmV2MultiLocation;2655 readonly xcm: XcmV2Xcm;2656 } & Struct;2657 readonly isQueryHolding: boolean;2658 readonly asQueryHolding: {2659 readonly queryId: Compact<u64>;2660 readonly dest: XcmV2MultiLocation;2661 readonly assets: XcmV2MultiassetMultiAssetFilter;2662 readonly maxResponseWeight: Compact<u64>;2663 } & Struct;2664 readonly isBuyExecution: boolean;2665 readonly asBuyExecution: {2666 readonly fees: XcmV2MultiAsset;2667 readonly weightLimit: XcmV2WeightLimit;2668 } & Struct;2669 readonly isRefundSurplus: boolean;2670 readonly isSetErrorHandler: boolean;2671 readonly asSetErrorHandler: XcmV2Xcm;2672 readonly isSetAppendix: boolean;2673 readonly asSetAppendix: XcmV2Xcm;2674 readonly isClearError: boolean;2675 readonly isClaimAsset: boolean;2676 readonly asClaimAsset: {2677 readonly assets: XcmV2MultiassetMultiAssets;2678 readonly ticket: XcmV2MultiLocation;2679 } & Struct;2680 readonly isTrap: boolean;2681 readonly asTrap: Compact<u64>;2682 readonly isSubscribeVersion: boolean;2683 readonly asSubscribeVersion: {2684 readonly queryId: Compact<u64>;2685 readonly maxResponseWeight: Compact<u64>;2686 } & Struct;2687 readonly isUnsubscribeVersion: boolean;2688 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';2689 }26902691 /** @name XcmV2Response (294) */2692 interface XcmV2Response extends Enum {2693 readonly isNull: boolean;2694 readonly isAssets: boolean;2695 readonly asAssets: XcmV2MultiassetMultiAssets;2696 readonly isExecutionResult: boolean;2697 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;2698 readonly isVersion: boolean;2699 readonly asVersion: u32;2700 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';2701 }27022703 /** @name XcmV2TraitsError (297) */2704 interface XcmV2TraitsError extends Enum {2705 readonly isOverflow: boolean;2706 readonly isUnimplemented: boolean;2707 readonly isUntrustedReserveLocation: boolean;2708 readonly isUntrustedTeleportLocation: boolean;2709 readonly isMultiLocationFull: boolean;2710 readonly isMultiLocationNotInvertible: boolean;2711 readonly isBadOrigin: boolean;2712 readonly isInvalidLocation: boolean;2713 readonly isAssetNotFound: boolean;2714 readonly isFailedToTransactAsset: boolean;2715 readonly isNotWithdrawable: boolean;2716 readonly isLocationCannotHold: boolean;2717 readonly isExceedsMaxMessageSize: boolean;2718 readonly isDestinationUnsupported: boolean;2719 readonly isTransport: boolean;2720 readonly isUnroutable: boolean;2721 readonly isUnknownClaim: boolean;2722 readonly isFailedToDecode: boolean;2723 readonly isMaxWeightInvalid: boolean;2724 readonly isNotHoldingFees: boolean;2725 readonly isTooExpensive: boolean;2726 readonly isTrap: boolean;2727 readonly asTrap: u64;2728 readonly isUnhandledXcmVersion: boolean;2729 readonly isWeightLimitReached: boolean;2730 readonly asWeightLimitReached: u64;2731 readonly isBarrier: boolean;2732 readonly isWeightNotComputable: boolean;2733 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';2734 }27352736 /** @name XcmV2MultiassetMultiAssetFilter (298) */2737 interface XcmV2MultiassetMultiAssetFilter extends Enum {2738 readonly isDefinite: boolean;2739 readonly asDefinite: XcmV2MultiassetMultiAssets;2740 readonly isWild: boolean;2741 readonly asWild: XcmV2MultiassetWildMultiAsset;2742 readonly type: 'Definite' | 'Wild';2743 }27442745 /** @name XcmV2MultiassetWildMultiAsset (299) */2746 interface XcmV2MultiassetWildMultiAsset extends Enum {2747 readonly isAll: boolean;2748 readonly isAllOf: boolean;2749 readonly asAllOf: {2750 readonly id: XcmV2MultiassetAssetId;2751 readonly fun: XcmV2MultiassetWildFungibility;2752 } & Struct;2753 readonly type: 'All' | 'AllOf';2754 }27552756 /** @name XcmV2MultiassetWildFungibility (300) */2757 interface XcmV2MultiassetWildFungibility extends Enum {2758 readonly isFungible: boolean;2759 readonly isNonFungible: boolean;2760 readonly type: 'Fungible' | 'NonFungible';2761 }27622763 /** @name XcmV2WeightLimit (301) */2764 interface XcmV2WeightLimit extends Enum {2765 readonly isUnlimited: boolean;2766 readonly isLimited: boolean;2767 readonly asLimited: Compact<u64>;2768 readonly type: 'Unlimited' | 'Limited';2769 }27702771 /** @name CumulusPalletXcmCall (310) */2772 type CumulusPalletXcmCall = Null;27732774 /** @name CumulusPalletDmpQueueCall (311) */2775 interface CumulusPalletDmpQueueCall extends Enum {2776 readonly isServiceOverweight: boolean;2777 readonly asServiceOverweight: {2778 readonly index: u64;2779 readonly weightLimit: SpWeightsWeightV2Weight;2780 } & Struct;2781 readonly type: 'ServiceOverweight';2782 }27832784 /** @name PalletInflationCall (312) */2785 interface PalletInflationCall extends Enum {2786 readonly isStartInflation: boolean;2787 readonly asStartInflation: {2788 readonly inflationStartRelayBlock: u32;2789 } & Struct;2790 readonly type: 'StartInflation';2791 }27922793 /** @name PalletUniqueCall (313) */2794 interface PalletUniqueCall extends Enum {2795 readonly isCreateCollection: boolean;2796 readonly asCreateCollection: {2797 readonly collectionName: Vec<u16>;2798 readonly collectionDescription: Vec<u16>;2799 readonly tokenPrefix: Bytes;2800 readonly mode: UpDataStructsCollectionMode;2801 } & Struct;2802 readonly isCreateCollectionEx: boolean;2803 readonly asCreateCollectionEx: {2804 readonly data: UpDataStructsCreateCollectionData;2805 } & Struct;2806 readonly isDestroyCollection: boolean;2807 readonly asDestroyCollection: {2808 readonly collectionId: u32;2809 } & Struct;2810 readonly isAddToAllowList: boolean;2811 readonly asAddToAllowList: {2812 readonly collectionId: u32;2813 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2814 } & Struct;2815 readonly isRemoveFromAllowList: boolean;2816 readonly asRemoveFromAllowList: {2817 readonly collectionId: u32;2818 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2819 } & Struct;2820 readonly isChangeCollectionOwner: boolean;2821 readonly asChangeCollectionOwner: {2822 readonly collectionId: u32;2823 readonly newOwner: AccountId32;2824 } & Struct;2825 readonly isAddCollectionAdmin: boolean;2826 readonly asAddCollectionAdmin: {2827 readonly collectionId: u32;2828 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2829 } & Struct;2830 readonly isRemoveCollectionAdmin: boolean;2831 readonly asRemoveCollectionAdmin: {2832 readonly collectionId: u32;2833 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2834 } & Struct;2835 readonly isSetCollectionSponsor: boolean;2836 readonly asSetCollectionSponsor: {2837 readonly collectionId: u32;2838 readonly newSponsor: AccountId32;2839 } & Struct;2840 readonly isConfirmSponsorship: boolean;2841 readonly asConfirmSponsorship: {2842 readonly collectionId: u32;2843 } & Struct;2844 readonly isRemoveCollectionSponsor: boolean;2845 readonly asRemoveCollectionSponsor: {2846 readonly collectionId: u32;2847 } & Struct;2848 readonly isCreateItem: boolean;2849 readonly asCreateItem: {2850 readonly collectionId: u32;2851 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2852 readonly data: UpDataStructsCreateItemData;2853 } & Struct;2854 readonly isCreateMultipleItems: boolean;2855 readonly asCreateMultipleItems: {2856 readonly collectionId: u32;2857 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2858 readonly itemsData: Vec<UpDataStructsCreateItemData>;2859 } & Struct;2860 readonly isSetCollectionProperties: boolean;2861 readonly asSetCollectionProperties: {2862 readonly collectionId: u32;2863 readonly properties: Vec<UpDataStructsProperty>;2864 } & Struct;2865 readonly isDeleteCollectionProperties: boolean;2866 readonly asDeleteCollectionProperties: {2867 readonly collectionId: u32;2868 readonly propertyKeys: Vec<Bytes>;2869 } & Struct;2870 readonly isSetTokenProperties: boolean;2871 readonly asSetTokenProperties: {2872 readonly collectionId: u32;2873 readonly tokenId: u32;2874 readonly properties: Vec<UpDataStructsProperty>;2875 } & Struct;2876 readonly isDeleteTokenProperties: boolean;2877 readonly asDeleteTokenProperties: {2878 readonly collectionId: u32;2879 readonly tokenId: u32;2880 readonly propertyKeys: Vec<Bytes>;2881 } & Struct;2882 readonly isSetTokenPropertyPermissions: boolean;2883 readonly asSetTokenPropertyPermissions: {2884 readonly collectionId: u32;2885 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2886 } & Struct;2887 readonly isCreateMultipleItemsEx: boolean;2888 readonly asCreateMultipleItemsEx: {2889 readonly collectionId: u32;2890 readonly data: UpDataStructsCreateItemExData;2891 } & Struct;2892 readonly isSetTransfersEnabledFlag: boolean;2893 readonly asSetTransfersEnabledFlag: {2894 readonly collectionId: u32;2895 readonly value: bool;2896 } & Struct;2897 readonly isBurnItem: boolean;2898 readonly asBurnItem: {2899 readonly collectionId: u32;2900 readonly itemId: u32;2901 readonly value: u128;2902 } & Struct;2903 readonly isBurnFrom: boolean;2904 readonly asBurnFrom: {2905 readonly collectionId: u32;2906 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2907 readonly itemId: u32;2908 readonly value: u128;2909 } & Struct;2910 readonly isTransfer: boolean;2911 readonly asTransfer: {2912 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2913 readonly collectionId: u32;2914 readonly itemId: u32;2915 readonly value: u128;2916 } & Struct;2917 readonly isApprove: boolean;2918 readonly asApprove: {2919 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2920 readonly collectionId: u32;2921 readonly itemId: u32;2922 readonly amount: u128;2923 } & Struct;2924 readonly isApproveFrom: boolean;2925 readonly asApproveFrom: {2926 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2927 readonly to: PalletEvmAccountBasicCrossAccountIdRepr;2928 readonly collectionId: u32;2929 readonly itemId: u32;2930 readonly amount: u128;2931 } & Struct;2932 readonly isTransferFrom: boolean;2933 readonly asTransferFrom: {2934 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2935 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2936 readonly collectionId: u32;2937 readonly itemId: u32;2938 readonly value: u128;2939 } & Struct;2940 readonly isSetCollectionLimits: boolean;2941 readonly asSetCollectionLimits: {2942 readonly collectionId: u32;2943 readonly newLimit: UpDataStructsCollectionLimits;2944 } & Struct;2945 readonly isSetCollectionPermissions: boolean;2946 readonly asSetCollectionPermissions: {2947 readonly collectionId: u32;2948 readonly newPermission: UpDataStructsCollectionPermissions;2949 } & Struct;2950 readonly isRepartition: boolean;2951 readonly asRepartition: {2952 readonly collectionId: u32;2953 readonly tokenId: u32;2954 readonly amount: u128;2955 } & Struct;2956 readonly isSetAllowanceForAll: boolean;2957 readonly asSetAllowanceForAll: {2958 readonly collectionId: u32;2959 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2960 readonly approve: bool;2961 } & Struct;2962 readonly isForceRepairCollection: boolean;2963 readonly asForceRepairCollection: {2964 readonly collectionId: u32;2965 } & Struct;2966 readonly isForceRepairItem: boolean;2967 readonly asForceRepairItem: {2968 readonly collectionId: u32;2969 readonly itemId: u32;2970 } & Struct;2971 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';2972 }29732974 /** @name UpDataStructsCollectionMode (318) */2975 interface UpDataStructsCollectionMode extends Enum {2976 readonly isNft: boolean;2977 readonly isFungible: boolean;2978 readonly asFungible: u8;2979 readonly isReFungible: boolean;2980 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2981 }29822983 /** @name UpDataStructsCreateCollectionData (319) */2984 interface UpDataStructsCreateCollectionData extends Struct {2985 readonly mode: UpDataStructsCollectionMode;2986 readonly access: Option<UpDataStructsAccessMode>;2987 readonly name: Vec<u16>;2988 readonly description: Vec<u16>;2989 readonly tokenPrefix: Bytes;2990 readonly pendingSponsor: Option<AccountId32>;2991 readonly limits: Option<UpDataStructsCollectionLimits>;2992 readonly permissions: Option<UpDataStructsCollectionPermissions>;2993 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2994 readonly properties: Vec<UpDataStructsProperty>;2995 }29962997 /** @name UpDataStructsAccessMode (321) */2998 interface UpDataStructsAccessMode extends Enum {2999 readonly isNormal: boolean;3000 readonly isAllowList: boolean;3001 readonly type: 'Normal' | 'AllowList';3002 }30033004 /** @name UpDataStructsCollectionLimits (323) */3005 interface UpDataStructsCollectionLimits extends Struct {3006 readonly accountTokenOwnershipLimit: Option<u32>;3007 readonly sponsoredDataSize: Option<u32>;3008 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;3009 readonly tokenLimit: Option<u32>;3010 readonly sponsorTransferTimeout: Option<u32>;3011 readonly sponsorApproveTimeout: Option<u32>;3012 readonly ownerCanTransfer: Option<bool>;3013 readonly ownerCanDestroy: Option<bool>;3014 readonly transfersEnabled: Option<bool>;3015 }30163017 /** @name UpDataStructsSponsoringRateLimit (325) */3018 interface UpDataStructsSponsoringRateLimit extends Enum {3019 readonly isSponsoringDisabled: boolean;3020 readonly isBlocks: boolean;3021 readonly asBlocks: u32;3022 readonly type: 'SponsoringDisabled' | 'Blocks';3023 }30243025 /** @name UpDataStructsCollectionPermissions (328) */3026 interface UpDataStructsCollectionPermissions extends Struct {3027 readonly access: Option<UpDataStructsAccessMode>;3028 readonly mintMode: Option<bool>;3029 readonly nesting: Option<UpDataStructsNestingPermissions>;3030 }30313032 /** @name UpDataStructsNestingPermissions (330) */3033 interface UpDataStructsNestingPermissions extends Struct {3034 readonly tokenOwner: bool;3035 readonly collectionAdmin: bool;3036 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;3037 }30383039 /** @name UpDataStructsOwnerRestrictedSet (332) */3040 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}30413042 /** @name UpDataStructsPropertyKeyPermission (337) */3043 interface UpDataStructsPropertyKeyPermission extends Struct {3044 readonly key: Bytes;3045 readonly permission: UpDataStructsPropertyPermission;3046 }30473048 /** @name UpDataStructsPropertyPermission (338) */3049 interface UpDataStructsPropertyPermission extends Struct {3050 readonly mutable: bool;3051 readonly collectionAdmin: bool;3052 readonly tokenOwner: bool;3053 }30543055 /** @name UpDataStructsProperty (341) */3056 interface UpDataStructsProperty extends Struct {3057 readonly key: Bytes;3058 readonly value: Bytes;3059 }30603061 /** @name UpDataStructsCreateItemData (344) */3062 interface UpDataStructsCreateItemData extends Enum {3063 readonly isNft: boolean;3064 readonly asNft: UpDataStructsCreateNftData;3065 readonly isFungible: boolean;3066 readonly asFungible: UpDataStructsCreateFungibleData;3067 readonly isReFungible: boolean;3068 readonly asReFungible: UpDataStructsCreateReFungibleData;3069 readonly type: 'Nft' | 'Fungible' | 'ReFungible';3070 }30713072 /** @name UpDataStructsCreateNftData (345) */3073 interface UpDataStructsCreateNftData extends Struct {3074 readonly properties: Vec<UpDataStructsProperty>;3075 }30763077 /** @name UpDataStructsCreateFungibleData (346) */3078 interface UpDataStructsCreateFungibleData extends Struct {3079 readonly value: u128;3080 }30813082 /** @name UpDataStructsCreateReFungibleData (347) */3083 interface UpDataStructsCreateReFungibleData extends Struct {3084 readonly pieces: u128;3085 readonly properties: Vec<UpDataStructsProperty>;3086 }30873088 /** @name UpDataStructsCreateItemExData (350) */3089 interface UpDataStructsCreateItemExData extends Enum {3090 readonly isNft: boolean;3091 readonly asNft: Vec<UpDataStructsCreateNftExData>;3092 readonly isFungible: boolean;3093 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;3094 readonly isRefungibleMultipleItems: boolean;3095 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;3096 readonly isRefungibleMultipleOwners: boolean;3097 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;3098 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';3099 }31003101 /** @name UpDataStructsCreateNftExData (352) */3102 interface UpDataStructsCreateNftExData extends Struct {3103 readonly properties: Vec<UpDataStructsProperty>;3104 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3105 }31063107 /** @name UpDataStructsCreateRefungibleExSingleOwner (359) */3108 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {3109 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;3110 readonly pieces: u128;3111 readonly properties: Vec<UpDataStructsProperty>;3112 }31133114 /** @name UpDataStructsCreateRefungibleExMultipleOwners (361) */3115 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {3116 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;3117 readonly properties: Vec<UpDataStructsProperty>;3118 }31193120 /** @name PalletConfigurationCall (362) */3121 interface PalletConfigurationCall extends Enum {3122 readonly isSetWeightToFeeCoefficientOverride: boolean;3123 readonly asSetWeightToFeeCoefficientOverride: {3124 readonly coeff: Option<u64>;3125 } & Struct;3126 readonly isSetMinGasPriceOverride: boolean;3127 readonly asSetMinGasPriceOverride: {3128 readonly coeff: Option<u64>;3129 } & Struct;3130 readonly isSetAppPromotionConfigurationOverride: boolean;3131 readonly asSetAppPromotionConfigurationOverride: {3132 readonly configuration: PalletConfigurationAppPromotionConfiguration;3133 } & Struct;3134 readonly isSetCollatorSelectionDesiredCollators: boolean;3135 readonly asSetCollatorSelectionDesiredCollators: {3136 readonly max: Option<u32>;3137 } & Struct;3138 readonly isSetCollatorSelectionLicenseBond: boolean;3139 readonly asSetCollatorSelectionLicenseBond: {3140 readonly amount: Option<u128>;3141 } & Struct;3142 readonly isSetCollatorSelectionKickThreshold: boolean;3143 readonly asSetCollatorSelectionKickThreshold: {3144 readonly threshold: Option<u32>;3145 } & Struct;3146 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';3147 }31483149 /** @name PalletConfigurationAppPromotionConfiguration (364) */3150 interface PalletConfigurationAppPromotionConfiguration extends Struct {3151 readonly recalculationInterval: Option<u32>;3152 readonly pendingInterval: Option<u32>;3153 readonly intervalIncome: Option<Perbill>;3154 readonly maxStakersPerCalculation: Option<u8>;3155 }31563157 /** @name PalletTemplateTransactionPaymentCall (368) */3158 type PalletTemplateTransactionPaymentCall = Null;31593160 /** @name PalletStructureCall (369) */3161 type PalletStructureCall = Null;31623163 /** @name PalletAppPromotionCall (370) */3164 interface PalletAppPromotionCall extends Enum {3165 readonly isSetAdminAddress: boolean;3166 readonly asSetAdminAddress: {3167 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;3168 } & Struct;3169 readonly isStake: boolean;3170 readonly asStake: {3171 readonly amount: u128;3172 } & Struct;3173 readonly isUnstakeAll: boolean;3174 readonly isSponsorCollection: boolean;3175 readonly asSponsorCollection: {3176 readonly collectionId: u32;3177 } & Struct;3178 readonly isStopSponsoringCollection: boolean;3179 readonly asStopSponsoringCollection: {3180 readonly collectionId: u32;3181 } & Struct;3182 readonly isSponsorContract: boolean;3183 readonly asSponsorContract: {3184 readonly contractId: H160;3185 } & Struct;3186 readonly isStopSponsoringContract: boolean;3187 readonly asStopSponsoringContract: {3188 readonly contractId: H160;3189 } & Struct;3190 readonly isPayoutStakers: boolean;3191 readonly asPayoutStakers: {3192 readonly stakersNumber: Option<u8>;3193 } & Struct;3194 readonly isUnstakePartial: boolean;3195 readonly asUnstakePartial: {3196 readonly amount: u128;3197 } & Struct;3198 readonly type: 'SetAdminAddress' | 'Stake' | 'UnstakeAll' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers' | 'UnstakePartial';3199 }32003201 /** @name PalletForeignAssetsModuleCall (371) */3202 interface PalletForeignAssetsModuleCall extends Enum {3203 readonly isRegisterForeignAsset: boolean;3204 readonly asRegisterForeignAsset: {3205 readonly owner: AccountId32;3206 readonly location: XcmVersionedMultiLocation;3207 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3208 } & Struct;3209 readonly isUpdateForeignAsset: boolean;3210 readonly asUpdateForeignAsset: {3211 readonly foreignAssetId: u32;3212 readonly location: XcmVersionedMultiLocation;3213 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3214 } & Struct;3215 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3216 }32173218 /** @name PalletEvmCall (372) */3219 interface PalletEvmCall extends Enum {3220 readonly isWithdraw: boolean;3221 readonly asWithdraw: {3222 readonly address: H160;3223 readonly value: u128;3224 } & Struct;3225 readonly isCall: boolean;3226 readonly asCall: {3227 readonly source: H160;3228 readonly target: H160;3229 readonly input: Bytes;3230 readonly value: U256;3231 readonly gasLimit: u64;3232 readonly maxFeePerGas: U256;3233 readonly maxPriorityFeePerGas: Option<U256>;3234 readonly nonce: Option<U256>;3235 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3236 } & Struct;3237 readonly isCreate: boolean;3238 readonly asCreate: {3239 readonly source: H160;3240 readonly init: Bytes;3241 readonly value: U256;3242 readonly gasLimit: u64;3243 readonly maxFeePerGas: U256;3244 readonly maxPriorityFeePerGas: Option<U256>;3245 readonly nonce: Option<U256>;3246 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3247 } & Struct;3248 readonly isCreate2: boolean;3249 readonly asCreate2: {3250 readonly source: H160;3251 readonly init: Bytes;3252 readonly salt: H256;3253 readonly value: U256;3254 readonly gasLimit: u64;3255 readonly maxFeePerGas: U256;3256 readonly maxPriorityFeePerGas: Option<U256>;3257 readonly nonce: Option<U256>;3258 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3259 } & Struct;3260 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3261 }32623263 /** @name PalletEthereumCall (378) */3264 interface PalletEthereumCall extends Enum {3265 readonly isTransact: boolean;3266 readonly asTransact: {3267 readonly transaction: EthereumTransactionTransactionV2;3268 } & Struct;3269 readonly type: 'Transact';3270 }32713272 /** @name EthereumTransactionTransactionV2 (379) */3273 interface EthereumTransactionTransactionV2 extends Enum {3274 readonly isLegacy: boolean;3275 readonly asLegacy: EthereumTransactionLegacyTransaction;3276 readonly isEip2930: boolean;3277 readonly asEip2930: EthereumTransactionEip2930Transaction;3278 readonly isEip1559: boolean;3279 readonly asEip1559: EthereumTransactionEip1559Transaction;3280 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3281 }32823283 /** @name EthereumTransactionLegacyTransaction (380) */3284 interface EthereumTransactionLegacyTransaction extends Struct {3285 readonly nonce: U256;3286 readonly gasPrice: U256;3287 readonly gasLimit: U256;3288 readonly action: EthereumTransactionTransactionAction;3289 readonly value: U256;3290 readonly input: Bytes;3291 readonly signature: EthereumTransactionTransactionSignature;3292 }32933294 /** @name EthereumTransactionTransactionAction (381) */3295 interface EthereumTransactionTransactionAction extends Enum {3296 readonly isCall: boolean;3297 readonly asCall: H160;3298 readonly isCreate: boolean;3299 readonly type: 'Call' | 'Create';3300 }33013302 /** @name EthereumTransactionTransactionSignature (382) */3303 interface EthereumTransactionTransactionSignature extends Struct {3304 readonly v: u64;3305 readonly r: H256;3306 readonly s: H256;3307 }33083309 /** @name EthereumTransactionEip2930Transaction (384) */3310 interface EthereumTransactionEip2930Transaction extends Struct {3311 readonly chainId: u64;3312 readonly nonce: U256;3313 readonly gasPrice: U256;3314 readonly gasLimit: U256;3315 readonly action: EthereumTransactionTransactionAction;3316 readonly value: U256;3317 readonly input: Bytes;3318 readonly accessList: Vec<EthereumTransactionAccessListItem>;3319 readonly oddYParity: bool;3320 readonly r: H256;3321 readonly s: H256;3322 }33233324 /** @name EthereumTransactionAccessListItem (386) */3325 interface EthereumTransactionAccessListItem extends Struct {3326 readonly address: H160;3327 readonly storageKeys: Vec<H256>;3328 }33293330 /** @name EthereumTransactionEip1559Transaction (387) */3331 interface EthereumTransactionEip1559Transaction extends Struct {3332 readonly chainId: u64;3333 readonly nonce: U256;3334 readonly maxPriorityFeePerGas: U256;3335 readonly maxFeePerGas: U256;3336 readonly gasLimit: U256;3337 readonly action: EthereumTransactionTransactionAction;3338 readonly value: U256;3339 readonly input: Bytes;3340 readonly accessList: Vec<EthereumTransactionAccessListItem>;3341 readonly oddYParity: bool;3342 readonly r: H256;3343 readonly s: H256;3344 }33453346 /** @name PalletEvmCoderSubstrateCall (388) */3347 interface PalletEvmCoderSubstrateCall extends Enum {3348 readonly isEmptyCall: boolean;3349 readonly type: 'EmptyCall';3350 }33513352 /** @name PalletEvmContractHelpersCall (389) */3353 interface PalletEvmContractHelpersCall extends Enum {3354 readonly isMigrateFromSelfSponsoring: boolean;3355 readonly asMigrateFromSelfSponsoring: {3356 readonly addresses: Vec<H160>;3357 } & Struct;3358 readonly type: 'MigrateFromSelfSponsoring';3359 }33603361 /** @name PalletEvmMigrationCall (391) */3362 interface PalletEvmMigrationCall extends Enum {3363 readonly isBegin: boolean;3364 readonly asBegin: {3365 readonly address: H160;3366 } & Struct;3367 readonly isSetData: boolean;3368 readonly asSetData: {3369 readonly address: H160;3370 readonly data: Vec<ITuple<[H256, H256]>>;3371 } & Struct;3372 readonly isFinish: boolean;3373 readonly asFinish: {3374 readonly address: H160;3375 readonly code: Bytes;3376 } & Struct;3377 readonly isInsertEthLogs: boolean;3378 readonly asInsertEthLogs: {3379 readonly logs: Vec<EthereumLog>;3380 } & Struct;3381 readonly isInsertEvents: boolean;3382 readonly asInsertEvents: {3383 readonly events: Vec<Bytes>;3384 } & Struct;3385 readonly isRemoveRmrkData: boolean;3386 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents' | 'RemoveRmrkData';3387 }33883389 /** @name PalletMaintenanceCall (395) */3390 interface PalletMaintenanceCall extends Enum {3391 readonly isEnable: boolean;3392 readonly isDisable: boolean;3393 readonly isExecutePreimage: boolean;3394 readonly asExecutePreimage: {3395 readonly hash_: H256;3396 readonly weightBound: SpWeightsWeightV2Weight;3397 } & Struct;3398 readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';3399 }34003401 /** @name PalletTestUtilsCall (396) */3402 interface PalletTestUtilsCall extends Enum {3403 readonly isEnable: boolean;3404 readonly isSetTestValue: boolean;3405 readonly asSetTestValue: {3406 readonly value: u32;3407 } & Struct;3408 readonly isSetTestValueAndRollback: boolean;3409 readonly asSetTestValueAndRollback: {3410 readonly value: u32;3411 } & Struct;3412 readonly isIncTestValue: boolean;3413 readonly isJustTakeFee: boolean;3414 readonly isBatchAll: boolean;3415 readonly asBatchAll: {3416 readonly calls: Vec<Call>;3417 } & Struct;3418 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';3419 }34203421 /** @name PalletSudoError (398) */3422 interface PalletSudoError extends Enum {3423 readonly isRequireSudo: boolean;3424 readonly type: 'RequireSudo';3425 }34263427 /** @name OrmlVestingModuleError (400) */3428 interface OrmlVestingModuleError extends Enum {3429 readonly isZeroVestingPeriod: boolean;3430 readonly isZeroVestingPeriodCount: boolean;3431 readonly isInsufficientBalanceToLock: boolean;3432 readonly isTooManyVestingSchedules: boolean;3433 readonly isAmountLow: boolean;3434 readonly isMaxVestingSchedulesExceeded: boolean;3435 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3436 }34373438 /** @name OrmlXtokensModuleError (401) */3439 interface OrmlXtokensModuleError extends Enum {3440 readonly isAssetHasNoReserve: boolean;3441 readonly isNotCrossChainTransfer: boolean;3442 readonly isInvalidDest: boolean;3443 readonly isNotCrossChainTransferableCurrency: boolean;3444 readonly isUnweighableMessage: boolean;3445 readonly isXcmExecutionFailed: boolean;3446 readonly isCannotReanchor: boolean;3447 readonly isInvalidAncestry: boolean;3448 readonly isInvalidAsset: boolean;3449 readonly isDestinationNotInvertible: boolean;3450 readonly isBadVersion: boolean;3451 readonly isDistinctReserveForAssetAndFee: boolean;3452 readonly isZeroFee: boolean;3453 readonly isZeroAmount: boolean;3454 readonly isTooManyAssetsBeingSent: boolean;3455 readonly isAssetIndexNonExistent: boolean;3456 readonly isFeeNotEnough: boolean;3457 readonly isNotSupportedMultiLocation: boolean;3458 readonly isMinXcmFeeNotDefined: boolean;3459 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3460 }34613462 /** @name OrmlTokensBalanceLock (404) */3463 interface OrmlTokensBalanceLock extends Struct {3464 readonly id: U8aFixed;3465 readonly amount: u128;3466 }34673468 /** @name OrmlTokensAccountData (406) */3469 interface OrmlTokensAccountData extends Struct {3470 readonly free: u128;3471 readonly reserved: u128;3472 readonly frozen: u128;3473 }34743475 /** @name OrmlTokensReserveData (408) */3476 interface OrmlTokensReserveData extends Struct {3477 readonly id: Null;3478 readonly amount: u128;3479 }34803481 /** @name OrmlTokensModuleError (410) */3482 interface OrmlTokensModuleError extends Enum {3483 readonly isBalanceTooLow: boolean;3484 readonly isAmountIntoBalanceFailed: boolean;3485 readonly isLiquidityRestrictions: boolean;3486 readonly isMaxLocksExceeded: boolean;3487 readonly isKeepAlive: boolean;3488 readonly isExistentialDeposit: boolean;3489 readonly isDeadAccount: boolean;3490 readonly isTooManyReserves: boolean;3491 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3492 }34933494 /** @name PalletIdentityRegistrarInfo (415) */3495 interface PalletIdentityRegistrarInfo extends Struct {3496 readonly account: AccountId32;3497 readonly fee: u128;3498 readonly fields: PalletIdentityBitFlags;3499 }35003501 /** @name PalletIdentityError (417) */3502 interface PalletIdentityError extends Enum {3503 readonly isTooManySubAccounts: boolean;3504 readonly isNotFound: boolean;3505 readonly isNotNamed: boolean;3506 readonly isEmptyIndex: boolean;3507 readonly isFeeChanged: boolean;3508 readonly isNoIdentity: boolean;3509 readonly isStickyJudgement: boolean;3510 readonly isJudgementGiven: boolean;3511 readonly isInvalidJudgement: boolean;3512 readonly isInvalidIndex: boolean;3513 readonly isInvalidTarget: boolean;3514 readonly isTooManyFields: boolean;3515 readonly isTooManyRegistrars: boolean;3516 readonly isAlreadyClaimed: boolean;3517 readonly isNotSub: boolean;3518 readonly isNotOwned: boolean;3519 readonly isJudgementForDifferentIdentity: boolean;3520 readonly isJudgementPaymentFailed: boolean;3521 readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';3522 }35233524 /** @name PalletPreimageRequestStatus (418) */3525 interface PalletPreimageRequestStatus extends Enum {3526 readonly isUnrequested: boolean;3527 readonly asUnrequested: {3528 readonly deposit: ITuple<[AccountId32, u128]>;3529 readonly len: u32;3530 } & Struct;3531 readonly isRequested: boolean;3532 readonly asRequested: {3533 readonly deposit: Option<ITuple<[AccountId32, u128]>>;3534 readonly count: u32;3535 readonly len: Option<u32>;3536 } & Struct;3537 readonly type: 'Unrequested' | 'Requested';3538 }35393540 /** @name PalletPreimageError (423) */3541 interface PalletPreimageError extends Enum {3542 readonly isTooBig: boolean;3543 readonly isAlreadyNoted: boolean;3544 readonly isNotAuthorized: boolean;3545 readonly isNotNoted: boolean;3546 readonly isRequested: boolean;3547 readonly isNotRequested: boolean;3548 readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';3549 }35503551 /** @name CumulusPalletXcmpQueueInboundChannelDetails (425) */3552 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3553 readonly sender: u32;3554 readonly state: CumulusPalletXcmpQueueInboundState;3555 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3556 }35573558 /** @name CumulusPalletXcmpQueueInboundState (426) */3559 interface CumulusPalletXcmpQueueInboundState extends Enum {3560 readonly isOk: boolean;3561 readonly isSuspended: boolean;3562 readonly type: 'Ok' | 'Suspended';3563 }35643565 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (429) */3566 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3567 readonly isConcatenatedVersionedXcm: boolean;3568 readonly isConcatenatedEncodedBlob: boolean;3569 readonly isSignals: boolean;3570 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3571 }35723573 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (432) */3574 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3575 readonly recipient: u32;3576 readonly state: CumulusPalletXcmpQueueOutboundState;3577 readonly signalsExist: bool;3578 readonly firstIndex: u16;3579 readonly lastIndex: u16;3580 }35813582 /** @name CumulusPalletXcmpQueueOutboundState (433) */3583 interface CumulusPalletXcmpQueueOutboundState extends Enum {3584 readonly isOk: boolean;3585 readonly isSuspended: boolean;3586 readonly type: 'Ok' | 'Suspended';3587 }35883589 /** @name CumulusPalletXcmpQueueQueueConfigData (435) */3590 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3591 readonly suspendThreshold: u32;3592 readonly dropThreshold: u32;3593 readonly resumeThreshold: u32;3594 readonly thresholdWeight: SpWeightsWeightV2Weight;3595 readonly weightRestrictDecay: SpWeightsWeightV2Weight;3596 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3597 }35983599 /** @name CumulusPalletXcmpQueueError (437) */3600 interface CumulusPalletXcmpQueueError extends Enum {3601 readonly isFailedToSend: boolean;3602 readonly isBadXcmOrigin: boolean;3603 readonly isBadXcm: boolean;3604 readonly isBadOverweightIndex: boolean;3605 readonly isWeightOverLimit: boolean;3606 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3607 }36083609 /** @name PalletXcmQueryStatus (438) */3610 interface PalletXcmQueryStatus extends Enum {3611 readonly isPending: boolean;3612 readonly asPending: {3613 readonly responder: XcmVersionedMultiLocation;3614 readonly maybeMatchQuerier: Option<XcmVersionedMultiLocation>;3615 readonly maybeNotify: Option<ITuple<[u8, u8]>>;3616 readonly timeout: u32;3617 } & Struct;3618 readonly isVersionNotifier: boolean;3619 readonly asVersionNotifier: {3620 readonly origin: XcmVersionedMultiLocation;3621 readonly isActive: bool;3622 } & Struct;3623 readonly isReady: boolean;3624 readonly asReady: {3625 readonly response: XcmVersionedResponse;3626 readonly at: u32;3627 } & Struct;3628 readonly type: 'Pending' | 'VersionNotifier' | 'Ready';3629 }36303631 /** @name XcmVersionedResponse (442) */3632 interface XcmVersionedResponse extends Enum {3633 readonly isV2: boolean;3634 readonly asV2: XcmV2Response;3635 readonly isV3: boolean;3636 readonly asV3: XcmV3Response;3637 readonly type: 'V2' | 'V3';3638 }36393640 /** @name PalletXcmVersionMigrationStage (448) */3641 interface PalletXcmVersionMigrationStage extends Enum {3642 readonly isMigrateSupportedVersion: boolean;3643 readonly isMigrateVersionNotifiers: boolean;3644 readonly isNotifyCurrentTargets: boolean;3645 readonly asNotifyCurrentTargets: Option<Bytes>;3646 readonly isMigrateAndNotifyOldTargets: boolean;3647 readonly type: 'MigrateSupportedVersion' | 'MigrateVersionNotifiers' | 'NotifyCurrentTargets' | 'MigrateAndNotifyOldTargets';3648 }36493650 /** @name XcmVersionedAssetId (451) */3651 interface XcmVersionedAssetId extends Enum {3652 readonly isV3: boolean;3653 readonly asV3: XcmV3MultiassetAssetId;3654 readonly type: 'V3';3655 }36563657 /** @name PalletXcmRemoteLockedFungibleRecord (452) */3658 interface PalletXcmRemoteLockedFungibleRecord extends Struct {3659 readonly amount: u128;3660 readonly owner: XcmVersionedMultiLocation;3661 readonly locker: XcmVersionedMultiLocation;3662 readonly users: u32;3663 }36643665 /** @name PalletXcmError (456) */3666 interface PalletXcmError extends Enum {3667 readonly isUnreachable: boolean;3668 readonly isSendFailure: boolean;3669 readonly isFiltered: boolean;3670 readonly isUnweighableMessage: boolean;3671 readonly isDestinationNotInvertible: boolean;3672 readonly isEmpty: boolean;3673 readonly isCannotReanchor: boolean;3674 readonly isTooManyAssets: boolean;3675 readonly isInvalidOrigin: boolean;3676 readonly isBadVersion: boolean;3677 readonly isBadLocation: boolean;3678 readonly isNoSubscription: boolean;3679 readonly isAlreadySubscribed: boolean;3680 readonly isInvalidAsset: boolean;3681 readonly isLowBalance: boolean;3682 readonly isTooManyLocks: boolean;3683 readonly isAccountNotSovereign: boolean;3684 readonly isFeesNotMet: boolean;3685 readonly isLockNotFound: boolean;3686 readonly isInUse: boolean;3687 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed' | 'InvalidAsset' | 'LowBalance' | 'TooManyLocks' | 'AccountNotSovereign' | 'FeesNotMet' | 'LockNotFound' | 'InUse';3688 }36893690 /** @name CumulusPalletXcmError (457) */3691 type CumulusPalletXcmError = Null;36923693 /** @name CumulusPalletDmpQueueConfigData (458) */3694 interface CumulusPalletDmpQueueConfigData extends Struct {3695 readonly maxIndividual: SpWeightsWeightV2Weight;3696 }36973698 /** @name CumulusPalletDmpQueuePageIndexData (459) */3699 interface CumulusPalletDmpQueuePageIndexData extends Struct {3700 readonly beginUsed: u32;3701 readonly endUsed: u32;3702 readonly overweightCount: u64;3703 }37043705 /** @name CumulusPalletDmpQueueError (462) */3706 interface CumulusPalletDmpQueueError extends Enum {3707 readonly isUnknown: boolean;3708 readonly isOverLimit: boolean;3709 readonly type: 'Unknown' | 'OverLimit';3710 }37113712 /** @name PalletUniqueError (466) */3713 interface PalletUniqueError extends Enum {3714 readonly isCollectionDecimalPointLimitExceeded: boolean;3715 readonly isEmptyArgument: boolean;3716 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3717 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3718 }37193720 /** @name PalletConfigurationError (467) */3721 interface PalletConfigurationError extends Enum {3722 readonly isInconsistentConfiguration: boolean;3723 readonly type: 'InconsistentConfiguration';3724 }37253726 /** @name UpDataStructsCollection (468) */3727 interface UpDataStructsCollection extends Struct {3728 readonly owner: AccountId32;3729 readonly mode: UpDataStructsCollectionMode;3730 readonly name: Vec<u16>;3731 readonly description: Vec<u16>;3732 readonly tokenPrefix: Bytes;3733 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3734 readonly limits: UpDataStructsCollectionLimits;3735 readonly permissions: UpDataStructsCollectionPermissions;3736 readonly flags: U8aFixed;3737 }37383739 /** @name UpDataStructsSponsorshipStateAccountId32 (469) */3740 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3741 readonly isDisabled: boolean;3742 readonly isUnconfirmed: boolean;3743 readonly asUnconfirmed: AccountId32;3744 readonly isConfirmed: boolean;3745 readonly asConfirmed: AccountId32;3746 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3747 }37483749 /** @name UpDataStructsProperties (470) */3750 interface UpDataStructsProperties extends Struct {3751 readonly map: UpDataStructsPropertiesMapBoundedVec;3752 readonly consumedSpace: u32;3753 readonly reserved: u32;3754 }37553756 /** @name UpDataStructsPropertiesMapBoundedVec (471) */3757 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}37583759 /** @name UpDataStructsPropertiesMapPropertyPermission (476) */3760 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}37613762 /** @name UpDataStructsCollectionStats (483) */3763 interface UpDataStructsCollectionStats extends Struct {3764 readonly created: u32;3765 readonly destroyed: u32;3766 readonly alive: u32;3767 }37683769 /** @name UpDataStructsTokenChild (484) */3770 interface UpDataStructsTokenChild extends Struct {3771 readonly token: u32;3772 readonly collection: u32;3773 }37743775 /** @name PhantomTypeUpDataStructs (485) */3776 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpPovEstimateRpcPovInfo]>> {}37773778 /** @name UpDataStructsTokenData (487) */3779 interface UpDataStructsTokenData extends Struct {3780 readonly properties: Vec<UpDataStructsProperty>;3781 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3782 readonly pieces: u128;3783 }37843785 /** @name UpDataStructsRpcCollection (489) */3786 interface UpDataStructsRpcCollection extends Struct {3787 readonly owner: AccountId32;3788 readonly mode: UpDataStructsCollectionMode;3789 readonly name: Vec<u16>;3790 readonly description: Vec<u16>;3791 readonly tokenPrefix: Bytes;3792 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3793 readonly limits: UpDataStructsCollectionLimits;3794 readonly permissions: UpDataStructsCollectionPermissions;3795 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3796 readonly properties: Vec<UpDataStructsProperty>;3797 readonly readOnly: bool;3798 readonly flags: UpDataStructsRpcCollectionFlags;3799 }38003801 /** @name UpDataStructsRpcCollectionFlags (490) */3802 interface UpDataStructsRpcCollectionFlags extends Struct {3803 readonly foreign: bool;3804 readonly erc721metadata: bool;3805 }38063807 /** @name UpPovEstimateRpcPovInfo (491) */3808 interface UpPovEstimateRpcPovInfo extends Struct {3809 readonly proofSize: u64;3810 readonly compactProofSize: u64;3811 readonly compressedProofSize: u64;3812 readonly results: Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>;3813 readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;3814 }38153816 /** @name SpRuntimeTransactionValidityTransactionValidityError (494) */3817 interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {3818 readonly isInvalid: boolean;3819 readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;3820 readonly isUnknown: boolean;3821 readonly asUnknown: SpRuntimeTransactionValidityUnknownTransaction;3822 readonly type: 'Invalid' | 'Unknown';3823 }38243825 /** @name SpRuntimeTransactionValidityInvalidTransaction (495) */3826 interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {3827 readonly isCall: boolean;3828 readonly isPayment: boolean;3829 readonly isFuture: boolean;3830 readonly isStale: boolean;3831 readonly isBadProof: boolean;3832 readonly isAncientBirthBlock: boolean;3833 readonly isExhaustsResources: boolean;3834 readonly isCustom: boolean;3835 readonly asCustom: u8;3836 readonly isBadMandatory: boolean;3837 readonly isMandatoryValidation: boolean;3838 readonly isBadSigner: boolean;3839 readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';3840 }38413842 /** @name SpRuntimeTransactionValidityUnknownTransaction (496) */3843 interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {3844 readonly isCannotLookup: boolean;3845 readonly isNoUnsignedValidator: boolean;3846 readonly isCustom: boolean;3847 readonly asCustom: u8;3848 readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';3849 }38503851 /** @name UpPovEstimateRpcTrieKeyValue (498) */3852 interface UpPovEstimateRpcTrieKeyValue extends Struct {3853 readonly key: Bytes;3854 readonly value: Bytes;3855 }38563857 /** @name PalletCommonError (500) */3858 interface PalletCommonError extends Enum {3859 readonly isCollectionNotFound: boolean;3860 readonly isMustBeTokenOwner: boolean;3861 readonly isNoPermission: boolean;3862 readonly isCantDestroyNotEmptyCollection: boolean;3863 readonly isPublicMintingNotAllowed: boolean;3864 readonly isAddressNotInAllowlist: boolean;3865 readonly isCollectionNameLimitExceeded: boolean;3866 readonly isCollectionDescriptionLimitExceeded: boolean;3867 readonly isCollectionTokenPrefixLimitExceeded: boolean;3868 readonly isTotalCollectionsLimitExceeded: boolean;3869 readonly isCollectionAdminCountExceeded: boolean;3870 readonly isCollectionLimitBoundsExceeded: boolean;3871 readonly isOwnerPermissionsCantBeReverted: boolean;3872 readonly isTransferNotAllowed: boolean;3873 readonly isAccountTokenLimitExceeded: boolean;3874 readonly isCollectionTokenLimitExceeded: boolean;3875 readonly isMetadataFlagFrozen: boolean;3876 readonly isTokenNotFound: boolean;3877 readonly isTokenValueTooLow: boolean;3878 readonly isApprovedValueTooLow: boolean;3879 readonly isCantApproveMoreThanOwned: boolean;3880 readonly isAddressIsNotEthMirror: boolean;3881 readonly isAddressIsZero: boolean;3882 readonly isUnsupportedOperation: boolean;3883 readonly isNotSufficientFounds: boolean;3884 readonly isUserIsNotAllowedToNest: boolean;3885 readonly isSourceCollectionIsNotAllowedToNest: boolean;3886 readonly isCollectionFieldSizeExceeded: boolean;3887 readonly isNoSpaceForProperty: boolean;3888 readonly isPropertyLimitReached: boolean;3889 readonly isPropertyKeyIsTooLong: boolean;3890 readonly isInvalidCharacterInPropertyKey: boolean;3891 readonly isEmptyPropertyKey: boolean;3892 readonly isCollectionIsExternal: boolean;3893 readonly isCollectionIsInternal: boolean;3894 readonly isConfirmSponsorshipFail: boolean;3895 readonly isUserIsNotCollectionAdmin: boolean;3896 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';3897 }38983899 /** @name PalletFungibleError (502) */3900 interface PalletFungibleError extends Enum {3901 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3902 readonly isFungibleItemsHaveNoId: boolean;3903 readonly isFungibleItemsDontHaveData: boolean;3904 readonly isFungibleDisallowsNesting: boolean;3905 readonly isSettingPropertiesNotAllowed: boolean;3906 readonly isSettingAllowanceForAllNotAllowed: boolean;3907 readonly isFungibleTokensAreAlwaysValid: boolean;3908 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';3909 }39103911 /** @name PalletRefungibleError (507) */3912 interface PalletRefungibleError extends Enum {3913 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3914 readonly isWrongRefungiblePieces: boolean;3915 readonly isRepartitionWhileNotOwningAllPieces: boolean;3916 readonly isRefungibleDisallowsNesting: boolean;3917 readonly isSettingPropertiesNotAllowed: boolean;3918 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3919 }39203921 /** @name PalletNonfungibleItemData (508) */3922 interface PalletNonfungibleItemData extends Struct {3923 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3924 }39253926 /** @name UpDataStructsPropertyScope (510) */3927 interface UpDataStructsPropertyScope extends Enum {3928 readonly isNone: boolean;3929 readonly isRmrk: boolean;3930 readonly type: 'None' | 'Rmrk';3931 }39323933 /** @name PalletNonfungibleError (513) */3934 interface PalletNonfungibleError extends Enum {3935 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3936 readonly isNonfungibleItemsHaveNoAmount: boolean;3937 readonly isCantBurnNftWithChildren: boolean;3938 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3939 }39403941 /** @name PalletStructureError (514) */3942 interface PalletStructureError extends Enum {3943 readonly isOuroborosDetected: boolean;3944 readonly isDepthLimit: boolean;3945 readonly isBreadthLimit: boolean;3946 readonly isTokenNotFound: boolean;3947 readonly isCantNestTokenUnderCollection: boolean;3948 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound' | 'CantNestTokenUnderCollection';3949 }39503951 /** @name PalletAppPromotionError (519) */3952 interface PalletAppPromotionError extends Enum {3953 readonly isAdminNotSet: boolean;3954 readonly isNoPermission: boolean;3955 readonly isNotSufficientFunds: boolean;3956 readonly isPendingForBlockOverflow: boolean;3957 readonly isSponsorNotSet: boolean;3958 readonly isIncorrectLockedBalanceOperation: boolean;3959 readonly isInsufficientStakedBalance: boolean;3960 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation' | 'InsufficientStakedBalance';3961 }39623963 /** @name PalletForeignAssetsModuleError (520) */3964 interface PalletForeignAssetsModuleError extends Enum {3965 readonly isBadLocation: boolean;3966 readonly isMultiLocationExisted: boolean;3967 readonly isAssetIdNotExists: boolean;3968 readonly isAssetIdExisted: boolean;3969 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3970 }39713972 /** @name PalletEvmError (522) */3973 interface PalletEvmError extends Enum {3974 readonly isBalanceLow: boolean;3975 readonly isFeeOverflow: boolean;3976 readonly isPaymentOverflow: boolean;3977 readonly isWithdrawFailed: boolean;3978 readonly isGasPriceTooLow: boolean;3979 readonly isInvalidNonce: boolean;3980 readonly isGasLimitTooLow: boolean;3981 readonly isGasLimitTooHigh: boolean;3982 readonly isUndefined: boolean;3983 readonly isReentrancy: boolean;3984 readonly isTransactionMustComeFromEOA: boolean;3985 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';3986 }39873988 /** @name FpRpcTransactionStatus (525) */3989 interface FpRpcTransactionStatus extends Struct {3990 readonly transactionHash: H256;3991 readonly transactionIndex: u32;3992 readonly from: H160;3993 readonly to: Option<H160>;3994 readonly contractAddress: Option<H160>;3995 readonly logs: Vec<EthereumLog>;3996 readonly logsBloom: EthbloomBloom;3997 }39983999 /** @name EthbloomBloom (527) */4000 interface EthbloomBloom extends U8aFixed {}40014002 /** @name EthereumReceiptReceiptV3 (529) */4003 interface EthereumReceiptReceiptV3 extends Enum {4004 readonly isLegacy: boolean;4005 readonly asLegacy: EthereumReceiptEip658ReceiptData;4006 readonly isEip2930: boolean;4007 readonly asEip2930: EthereumReceiptEip658ReceiptData;4008 readonly isEip1559: boolean;4009 readonly asEip1559: EthereumReceiptEip658ReceiptData;4010 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';4011 }40124013 /** @name EthereumReceiptEip658ReceiptData (530) */4014 interface EthereumReceiptEip658ReceiptData extends Struct {4015 readonly statusCode: u8;4016 readonly usedGas: U256;4017 readonly logsBloom: EthbloomBloom;4018 readonly logs: Vec<EthereumLog>;4019 }40204021 /** @name EthereumBlock (531) */4022 interface EthereumBlock extends Struct {4023 readonly header: EthereumHeader;4024 readonly transactions: Vec<EthereumTransactionTransactionV2>;4025 readonly ommers: Vec<EthereumHeader>;4026 }40274028 /** @name EthereumHeader (532) */4029 interface EthereumHeader extends Struct {4030 readonly parentHash: H256;4031 readonly ommersHash: H256;4032 readonly beneficiary: H160;4033 readonly stateRoot: H256;4034 readonly transactionsRoot: H256;4035 readonly receiptsRoot: H256;4036 readonly logsBloom: EthbloomBloom;4037 readonly difficulty: U256;4038 readonly number: U256;4039 readonly gasLimit: U256;4040 readonly gasUsed: U256;4041 readonly timestamp: u64;4042 readonly extraData: Bytes;4043 readonly mixHash: H256;4044 readonly nonce: EthereumTypesHashH64;4045 }40464047 /** @name EthereumTypesHashH64 (533) */4048 interface EthereumTypesHashH64 extends U8aFixed {}40494050 /** @name PalletEthereumError (538) */4051 interface PalletEthereumError extends Enum {4052 readonly isInvalidSignature: boolean;4053 readonly isPreLogExists: boolean;4054 readonly type: 'InvalidSignature' | 'PreLogExists';4055 }40564057 /** @name PalletEvmCoderSubstrateError (539) */4058 interface PalletEvmCoderSubstrateError extends Enum {4059 readonly isOutOfGas: boolean;4060 readonly isOutOfFund: boolean;4061 readonly type: 'OutOfGas' | 'OutOfFund';4062 }40634064 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (540) */4065 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {4066 readonly isDisabled: boolean;4067 readonly isUnconfirmed: boolean;4068 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;4069 readonly isConfirmed: boolean;4070 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;4071 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';4072 }40734074 /** @name PalletEvmContractHelpersSponsoringModeT (541) */4075 interface PalletEvmContractHelpersSponsoringModeT extends Enum {4076 readonly isDisabled: boolean;4077 readonly isAllowlisted: boolean;4078 readonly isGenerous: boolean;4079 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';4080 }40814082 /** @name PalletEvmContractHelpersError (547) */4083 interface PalletEvmContractHelpersError extends Enum {4084 readonly isNoPermission: boolean;4085 readonly isNoPendingSponsor: boolean;4086 readonly isTooManyMethodsHaveSponsoredLimit: boolean;4087 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';4088 }40894090 /** @name PalletEvmMigrationError (548) */4091 interface PalletEvmMigrationError extends Enum {4092 readonly isAccountNotEmpty: boolean;4093 readonly isAccountIsNotMigrating: boolean;4094 readonly isBadEvent: boolean;4095 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';4096 }40974098 /** @name PalletMaintenanceError (549) */4099 type PalletMaintenanceError = Null;41004101 /** @name PalletTestUtilsError (550) */4102 interface PalletTestUtilsError extends Enum {4103 readonly isTestPalletDisabled: boolean;4104 readonly isTriggerRollback: boolean;4105 readonly type: 'TestPalletDisabled' | 'TriggerRollback';4106 }41074108 /** @name SpRuntimeMultiSignature (552) */4109 interface SpRuntimeMultiSignature extends Enum {4110 readonly isEd25519: boolean;4111 readonly asEd25519: SpCoreEd25519Signature;4112 readonly isSr25519: boolean;4113 readonly asSr25519: SpCoreSr25519Signature;4114 readonly isEcdsa: boolean;4115 readonly asEcdsa: SpCoreEcdsaSignature;4116 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';4117 }41184119 /** @name SpCoreEd25519Signature (553) */4120 interface SpCoreEd25519Signature extends U8aFixed {}41214122 /** @name SpCoreSr25519Signature (555) */4123 interface SpCoreSr25519Signature extends U8aFixed {}41244125 /** @name SpCoreEcdsaSignature (556) */4126 interface SpCoreEcdsaSignature extends U8aFixed {}41274128 /** @name FrameSystemExtensionsCheckSpecVersion (559) */4129 type FrameSystemExtensionsCheckSpecVersion = Null;41304131 /** @name FrameSystemExtensionsCheckTxVersion (560) */4132 type FrameSystemExtensionsCheckTxVersion = Null;41334134 /** @name FrameSystemExtensionsCheckGenesis (561) */4135 type FrameSystemExtensionsCheckGenesis = Null;41364137 /** @name FrameSystemExtensionsCheckNonce (564) */4138 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}41394140 /** @name FrameSystemExtensionsCheckWeight (565) */4141 type FrameSystemExtensionsCheckWeight = Null;41424143 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (566) */4144 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;41454146 /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (567) */4147 type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;41484149 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (568) */4150 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}41514152 /** @name OpalRuntimeRuntime (569) */4153 type OpalRuntimeRuntime = Null;41544155 /** @name PalletEthereumFakeTransactionFinalizer (570) */4156 type PalletEthereumFakeTransactionFinalizer = Null;41574158} // declare module