difftreelog
feature/allowListedCross In the `Collection` solidity interface, the `allowed` function has been renamed to `allow_listed_cross`. The `EthCrossAccount` type is now used as `user` arg.
in: master
30 files changed
Cargo.lockdiffbeforeafterboth--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5912,7 +5912,7 @@
[[package]]
name = "pallet-common"
-version = "0.1.11"
+version = "0.1.12"
dependencies = [
"ethereum",
"evm-coder",
pallets/common/CHANGELOG.mddiffbeforeafterboth--- a/pallets/common/CHANGELOG.md
+++ b/pallets/common/CHANGELOG.md
@@ -4,7 +4,7 @@
<!-- bureaucrate goes here -->
-## [0.1.11] - 2022-11-16
+## [0.1.12] - 2022-11-16
### Changed
@@ -12,6 +12,14 @@
Removed method overload: single signature `(string, uint256)`
is used for both cases.
+## [0.1.11] - 2022-11-12
+
+### Changed
+
+- In the `Collection` solidity interface,
+ the `allowed` function has been renamed to `allow_listed_cross`.
+ Also `EthCrossAccount` type is now used as `user` arg.
+
## [0.1.10] - 2022-11-02
### Changed
pallets/common/Cargo.tomldiffbeforeafterboth--- a/pallets/common/Cargo.toml
+++ b/pallets/common/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "pallet-common"
-version = "0.1.11"
+version = "0.1.12"
license = "GPLv3"
edition = "2021"
pallets/common/src/erc.rsdiffbeforeafterboth--- a/pallets/common/src/erc.rs
+++ b/pallets/common/src/erc.rs
@@ -529,11 +529,9 @@
/// Checks that user allowed to operate with collection.
///
/// @param user User address to check.
- fn allowed(&self, user: address) -> Result<bool> {
- Ok(Pallet::<T>::allowed(
- self.id,
- T::CrossAccountId::from_eth(user),
- ))
+ fn allowlisted_cross(&self, user: EthCrossAccount) -> Result<bool> {
+ let user = user.into_sub_cross_account::<T>()?;
+ Ok(Pallet::<T>::allowed(self.id, user))
}
/// Add the user to the allowed list.
pallets/evm-contract-helpers/src/stubs/ContractHelpers.rawdiffbeforeafterbothbinary blob — no preview
pallets/fungible/src/stubs/UniqueFungible.rawdiffbeforeafterbothbinary blob — no preview
pallets/fungible/src/stubs/UniqueFungible.soldiffbeforeafterboth--- a/pallets/fungible/src/stubs/UniqueFungible.sol
+++ b/pallets/fungible/src/stubs/UniqueFungible.sol
@@ -18,7 +18,7 @@
}
/// @title A contract that allows you to work with collections.
-/// @dev the ERC-165 identifier for this interface is 0x8b91d192
+/// @dev the ERC-165 identifier for this interface is 0xcc1d80ca
contract Collection is Dummy, ERC165 {
// /// Set collection property.
// ///
@@ -269,9 +269,9 @@
/// Checks that user allowed to operate with collection.
///
/// @param user User address to check.
- /// @dev EVM selector for this function is: 0xd63a8e11,
- /// or in textual repr: allowed(address)
- function allowed(address user) public view returns (bool) {
+ /// @dev EVM selector for this function is: 0x91b6df49,
+ /// or in textual repr: allowlistedCross((address,uint256))
+ function allowlistedCross(EthCrossAccount memory user) public view returns (bool) {
require(false, stub_error);
user;
dummy;
pallets/nonfungible/src/stubs/UniqueNFT.rawdiffbeforeafterbothbinary blob — no preview
pallets/nonfungible/src/stubs/UniqueNFT.soldiffbeforeafterboth--- a/pallets/nonfungible/src/stubs/UniqueNFT.sol
+++ b/pallets/nonfungible/src/stubs/UniqueNFT.sol
@@ -119,7 +119,7 @@
}
/// @title A contract that allows you to work with collections.
-/// @dev the ERC-165 identifier for this interface is 0x8b91d192
+/// @dev the ERC-165 identifier for this interface is 0xcc1d80ca
contract Collection is Dummy, ERC165 {
// /// Set collection property.
// ///
@@ -370,9 +370,9 @@
/// Checks that user allowed to operate with collection.
///
/// @param user User address to check.
- /// @dev EVM selector for this function is: 0xd63a8e11,
- /// or in textual repr: allowed(address)
- function allowed(address user) public view returns (bool) {
+ /// @dev EVM selector for this function is: 0x91b6df49,
+ /// or in textual repr: allowlistedCross((address,uint256))
+ function allowlistedCross(EthCrossAccount memory user) public view returns (bool) {
require(false, stub_error);
user;
dummy;
pallets/refungible/src/stubs/UniqueRefungible.rawdiffbeforeafterbothbinary blob — no preview
pallets/refungible/src/stubs/UniqueRefungible.soldiffbeforeafterboth--- a/pallets/refungible/src/stubs/UniqueRefungible.sol
+++ b/pallets/refungible/src/stubs/UniqueRefungible.sol
@@ -119,7 +119,7 @@
}
/// @title A contract that allows you to work with collections.
-/// @dev the ERC-165 identifier for this interface is 0x8b91d192
+/// @dev the ERC-165 identifier for this interface is 0xcc1d80ca
contract Collection is Dummy, ERC165 {
// /// Set collection property.
// ///
@@ -370,9 +370,9 @@
/// Checks that user allowed to operate with collection.
///
/// @param user User address to check.
- /// @dev EVM selector for this function is: 0xd63a8e11,
- /// or in textual repr: allowed(address)
- function allowed(address user) public view returns (bool) {
+ /// @dev EVM selector for this function is: 0x91b6df49,
+ /// or in textual repr: allowlistedCross((address,uint256))
+ function allowlistedCross(EthCrossAccount memory user) public view returns (bool) {
require(false, stub_error);
user;
dummy;
pallets/refungible/src/stubs/UniqueRefungibleToken.rawdiffbeforeafterbothbinary blob — no preview
pallets/unique/src/eth/stubs/CollectionHelpers.rawdiffbeforeafterbothbinary blob — no preview
tests/src/eth/abi/fungible.jsondiffbeforeafterboth--- a/tests/src/eth/abi/fungible.json
+++ b/tests/src/eth/abi/fungible.json
@@ -95,9 +95,17 @@
},
{
"inputs": [
- { "internalType": "address", "name": "user", "type": "address" }
+ {
+ "components": [
+ { "internalType": "address", "name": "eth", "type": "address" },
+ { "internalType": "uint256", "name": "sub", "type": "uint256" }
+ ],
+ "internalType": "struct EthCrossAccount",
+ "name": "user",
+ "type": "tuple"
+ }
],
- "name": "allowed",
+ "name": "allowlistedCross",
"outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
"stateMutability": "view",
"type": "function"
tests/src/eth/abi/nonFungible.jsondiffbeforeafterboth--- a/tests/src/eth/abi/nonFungible.json
+++ b/tests/src/eth/abi/nonFungible.json
@@ -116,9 +116,17 @@
},
{
"inputs": [
- { "internalType": "address", "name": "user", "type": "address" }
+ {
+ "components": [
+ { "internalType": "address", "name": "eth", "type": "address" },
+ { "internalType": "uint256", "name": "sub", "type": "uint256" }
+ ],
+ "internalType": "struct EthCrossAccount",
+ "name": "user",
+ "type": "tuple"
+ }
],
- "name": "allowed",
+ "name": "allowlistedCross",
"outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
"stateMutability": "view",
"type": "function"
tests/src/eth/abi/reFungible.jsondiffbeforeafterboth--- a/tests/src/eth/abi/reFungible.json
+++ b/tests/src/eth/abi/reFungible.json
@@ -116,9 +116,17 @@
},
{
"inputs": [
- { "internalType": "address", "name": "user", "type": "address" }
+ {
+ "components": [
+ { "internalType": "address", "name": "eth", "type": "address" },
+ { "internalType": "uint256", "name": "sub", "type": "uint256" }
+ ],
+ "internalType": "struct EthCrossAccount",
+ "name": "user",
+ "type": "tuple"
+ }
],
- "name": "allowed",
+ "name": "allowlistedCross",
"outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
"stateMutability": "view",
"type": "function"
tests/src/eth/allowlist.test.tsdiffbeforeafterboth--- a/tests/src/eth/allowlist.test.ts
+++ b/tests/src/eth/allowlist.test.ts
@@ -78,16 +78,17 @@
itEth('Collection allowlist can be added and removed by [eth] address', async ({helper}) => {
const owner = await helper.eth.createAccountWithBalance(donor);
const user = helper.eth.createAccount();
-
+ const crossUser = helper.ethCrossAccount.fromAddress(user);
+
const {collectionAddress} = await helper.eth.createNFTCollection(owner, 'A', 'B', 'C');
const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'nft', owner, true);
- expect(await collectionEvm.methods.allowed(user).call({from: owner})).to.be.false;
+ expect(await collectionEvm.methods.allowlistedCross(crossUser).call({from: owner})).to.be.false;
await collectionEvm.methods.addToCollectionAllowList(user).send({from: owner});
- expect(await collectionEvm.methods.allowed(user).call({from: owner})).to.be.true;
+ expect(await collectionEvm.methods.allowlistedCross(crossUser).call({from: owner})).to.be.true;
await collectionEvm.methods.removeFromCollectionAllowList(user).send({from: owner});
- expect(await collectionEvm.methods.allowed(user).call({from: owner})).to.be.false;
+ expect(await collectionEvm.methods.allowlistedCross(crossUser).call({from: owner})).to.be.false;
});
itEth('Collection allowlist can be added and removed by [cross] address', async ({helper}) => {
@@ -101,9 +102,11 @@
expect(await helper.collection.allowed(collectionId, {Substrate: user.address})).to.be.false;
await collectionEvm.methods.addToCollectionAllowListCross(userCross).send({from: owner});
expect(await helper.collection.allowed(collectionId, {Substrate: user.address})).to.be.true;
+ expect(await collectionEvm.methods.allowlistedCross(userCross).call({from: owner})).to.be.true;
await collectionEvm.methods.removeFromCollectionAllowListCross(userCross).send({from: owner});
expect(await helper.collection.allowed(collectionId, {Substrate: user.address})).to.be.false;
+ expect(await collectionEvm.methods.allowlistedCross(userCross).call({from: owner})).to.be.false;
});
// Soft-deprecated
@@ -111,17 +114,18 @@
const owner = await helper.eth.createAccountWithBalance(donor);
const notOwner = await helper.eth.createAccountWithBalance(donor);
const user = helper.eth.createAccount();
+ const crossUser = helper.ethCrossAccount.fromAddress(user);
const {collectionAddress} = await helper.eth.createNFTCollection(owner, 'A', 'B', 'C');
const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'nft', owner, true);
- expect(await collectionEvm.methods.allowed(user).call({from: owner})).to.be.false;
+ expect(await collectionEvm.methods.allowlistedCross(crossUser).call({from: owner})).to.be.false;
await expect(collectionEvm.methods.addToCollectionAllowList(user).call({from: notOwner})).to.be.rejectedWith('NoPermission');
- expect(await collectionEvm.methods.allowed(user).call({from: owner})).to.be.false;
+ expect(await collectionEvm.methods.allowlistedCross(crossUser).call({from: owner})).to.be.false;
await collectionEvm.methods.addToCollectionAllowList(user).send({from: owner});
- expect(await collectionEvm.methods.allowed(user).call({from: owner})).to.be.true;
+ expect(await collectionEvm.methods.allowlistedCross(crossUser).call({from: owner})).to.be.true;
await expect(collectionEvm.methods.removeFromCollectionAllowList(user).call({from: notOwner})).to.be.rejectedWith('NoPermission');
- expect(await collectionEvm.methods.allowed(user).call({from: owner})).to.be.true;
+ expect(await collectionEvm.methods.allowlistedCross(crossUser).call({from: owner})).to.be.true;
});
itEth('Collection allowlist can not be add and remove [cross] address by not owner', async ({helper}) => {
tests/src/eth/api/UniqueFungible.soldiffbeforeafterboth--- a/tests/src/eth/api/UniqueFungible.sol
+++ b/tests/src/eth/api/UniqueFungible.sol
@@ -13,7 +13,7 @@
}
/// @title A contract that allows you to work with collections.
-/// @dev the ERC-165 identifier for this interface is 0x8b91d192
+/// @dev the ERC-165 identifier for this interface is 0xcc1d80ca
interface Collection is Dummy, ERC165 {
// /// Set collection property.
// ///
@@ -177,9 +177,9 @@
/// Checks that user allowed to operate with collection.
///
/// @param user User address to check.
- /// @dev EVM selector for this function is: 0xd63a8e11,
- /// or in textual repr: allowed(address)
- function allowed(address user) external view returns (bool);
+ /// @dev EVM selector for this function is: 0x91b6df49,
+ /// or in textual repr: allowlistedCross((address,uint256))
+ function allowlistedCross(EthCrossAccount memory user) external view returns (bool);
// /// Add the user to the allowed list.
// ///
tests/src/eth/api/UniqueNFT.soldiffbeforeafterboth--- a/tests/src/eth/api/UniqueNFT.sol
+++ b/tests/src/eth/api/UniqueNFT.sol
@@ -80,7 +80,7 @@
}
/// @title A contract that allows you to work with collections.
-/// @dev the ERC-165 identifier for this interface is 0x8b91d192
+/// @dev the ERC-165 identifier for this interface is 0xcc1d80ca
interface Collection is Dummy, ERC165 {
// /// Set collection property.
// ///
@@ -244,9 +244,9 @@
/// Checks that user allowed to operate with collection.
///
/// @param user User address to check.
- /// @dev EVM selector for this function is: 0xd63a8e11,
- /// or in textual repr: allowed(address)
- function allowed(address user) external view returns (bool);
+ /// @dev EVM selector for this function is: 0x91b6df49,
+ /// or in textual repr: allowlistedCross((address,uint256))
+ function allowlistedCross(EthCrossAccount memory user) external view returns (bool);
// /// Add the user to the allowed list.
// ///
tests/src/eth/api/UniqueRefungible.soldiffbeforeafterboth--- a/tests/src/eth/api/UniqueRefungible.sol
+++ b/tests/src/eth/api/UniqueRefungible.sol
@@ -80,7 +80,7 @@
}
/// @title A contract that allows you to work with collections.
-/// @dev the ERC-165 identifier for this interface is 0x8b91d192
+/// @dev the ERC-165 identifier for this interface is 0xcc1d80ca
interface Collection is Dummy, ERC165 {
// /// Set collection property.
// ///
@@ -244,9 +244,9 @@
/// Checks that user allowed to operate with collection.
///
/// @param user User address to check.
- /// @dev EVM selector for this function is: 0xd63a8e11,
- /// or in textual repr: allowed(address)
- function allowed(address user) external view returns (bool);
+ /// @dev EVM selector for this function is: 0x91b6df49,
+ /// or in textual repr: allowlistedCross((address,uint256))
+ function allowlistedCross(EthCrossAccount memory user) external view returns (bool);
// /// Add the user to the allowed list.
// ///
tests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -94,13 +94,11 @@
};
scheduler: {
/**
- * The maximum weight that may be scheduled per block for any dispatchables of less
- * priority than `schedule::HARD_DEADLINE`.
+ * The maximum weight that may be scheduled per block for any dispatchables.
**/
maximumWeight: Weight & AugmentedConst<ApiType>;
/**
* The maximum number of scheduled calls in the queue for a single block.
- * Not strictly enforced, but used for weight estimation.
**/
maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;
/**
tests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-errors.ts
+++ b/tests/src/interfaces/augment-api-errors.ts
@@ -337,6 +337,10 @@
**/
AccountNotEmpty: AugmentedError<ApiType>;
/**
+ * Failed to decode event bytes
+ **/
+ BadEvent: AugmentedError<ApiType>;
+ /**
* Generic error
**/
[key: string]: AugmentedError<ApiType>;
@@ -660,22 +664,38 @@
};
scheduler: {
/**
+ * There is no place for a new task in the agenda
+ **/
+ AgendaIsExhausted: AugmentedError<ApiType>;
+ /**
* Failed to schedule a call
**/
FailedToSchedule: AugmentedError<ApiType>;
/**
+ * Attempt to use a non-named function on a named task.
+ **/
+ Named: AugmentedError<ApiType>;
+ /**
* Cannot find the scheduled call.
**/
NotFound: AugmentedError<ApiType>;
/**
- * Reschedule failed because it does not change scheduled time.
+ * Scheduled call preimage is not found
+ **/
+ PreimageNotFound: AugmentedError<ApiType>;
+ /**
+ * Scheduled call is corrupted
**/
- RescheduleNoChange: AugmentedError<ApiType>;
+ ScheduledCallCorrupted: AugmentedError<ApiType>;
/**
* Given target block number is in the past.
**/
TargetBlockNumberInPast: AugmentedError<ApiType>;
/**
+ * Scheduled call is too big
+ **/
+ TooBigScheduledCall: AugmentedError<ApiType>;
+ /**
* Generic error
**/
[key: string]: 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
@@ -9,7 +9,7 @@
import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';
import type { ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';
-import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
+import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
@@ -256,6 +256,16 @@
**/
[key: string]: AugmentedEvent<ApiType>;
};
+ evmMigration: {
+ /**
+ * This event is used in benchmarking and can be used for tests
+ **/
+ TestEvent: AugmentedEvent<ApiType, []>;
+ /**
+ * Generic event
+ **/
+ [key: string]: AugmentedEvent<ApiType>;
+ };
foreignAssets: {
/**
* The asset registered.
@@ -471,7 +481,7 @@
/**
* The call for the provided hash was not found so the task has been aborted.
**/
- CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;
+ CallUnavailable: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
/**
* Canceled some task.
**/
@@ -481,9 +491,13 @@
**/
Dispatched: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError> }>;
/**
+ * The given task can never be executed since it is overweight.
+ **/
+ PermanentlyOverweight: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;
+ /**
* Scheduled task's priority has changed
**/
- PriorityChanged: AugmentedEvent<ApiType, [when: u32, index: u32, priority: u8], { when: u32, index: u32, priority: u8 }>;
+ PriorityChanged: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, priority: u8], { task: ITuple<[u32, u32]>, priority: u8 }>;
/**
* Scheduled some task.
**/
@@ -552,6 +566,7 @@
[key: string]: AugmentedEvent<ApiType>;
};
testUtils: {
+ BatchCompleted: AugmentedEvent<ApiType, []>;
ShouldRollback: AugmentedEvent<ApiType, []>;
ValueIsSet: AugmentedEvent<ApiType, []>;
/**
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -9,7 +9,7 @@
import type { BTreeMap, Bytes, Option, U256, U8aFixed, 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, Weight } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerScheduledV3, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerV2BlockAgenda, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
import type { Observable } from '@polkadot/types/types';
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
@@ -681,9 +681,14 @@
/**
* Items to be executed, indexed by the block number that they should be executed on.
**/
- agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<Option<PalletUniqueSchedulerScheduledV3>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
+ agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<PalletUniqueSchedulerV2BlockAgenda>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
/**
- * Lookup from identity to the block number and index of the task.
+ * It contains the block number from which we should service tasks.
+ * It's used for delaying the servicing of future blocks' agendas if we had overweight tasks.
+ **/
+ incompleteSince: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
+ /**
+ * Lookup from a name to the block number and index of the task.
**/
lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;
/**
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -9,7 +9,7 @@
import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';
-import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumTransactionTransactionV2, FrameSupportScheduleMaybeHashed, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
@@ -295,6 +295,14 @@
**/
finish: AugmentedSubmittable<(address: H160 | string | Uint8Array, code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H160, Bytes]>;
/**
+ * Create ethereum events attached to the fake transaction
+ **/
+ insertEthLogs: AugmentedSubmittable<(logs: Vec<EthereumLog> | (EthereumLog | { address?: any; topics?: any; data?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<EthereumLog>]>;
+ /**
+ * Create substrate events
+ **/
+ insertEvents: AugmentedSubmittable<(events: Vec<Bytes> | (Bytes | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Bytes>]>;
+ /**
* Insert items into contract storage, this method can be called
* multiple times
**/
@@ -831,22 +839,56 @@
};
scheduler: {
/**
+ * Cancel an anonymously scheduled task.
+ *
+ * The `T::OriginPrivilegeCmp` decides whether the given origin is allowed to cancel the task or not.
+ **/
+ cancel: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
+ /**
* Cancel a named scheduled task.
+ *
+ * The `T::OriginPrivilegeCmp` decides whether the given origin is allowed to cancel the task or not.
**/
cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;
+ /**
+ * Change a named task's priority.
+ *
+ * Only the `T::PrioritySetOrigin` is allowed to change the task's priority.
+ **/
changeNamedPriority: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, priority: u8 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u8]>;
/**
+ * Anonymously schedule a task.
+ *
+ * Only `T::ScheduleOrigin` is allowed to schedule a task.
+ * Only `T::PrioritySetOrigin` is allowed to set the task's priority.
+ **/
+ schedule: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
+ /**
+ * Anonymously schedule a task after a delay.
+ *
+ * # <weight>
+ * Same as [`schedule`].
+ * # </weight>
+ **/
+ scheduleAfter: AugmentedSubmittable<(after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
+ /**
* Schedule a named task.
+ *
+ * Only `T::ScheduleOrigin` is allowed to schedule a task.
+ * Only `T::PrioritySetOrigin` is allowed to set the task's priority.
**/
- scheduleNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: FrameSupportScheduleMaybeHashed | { Value: any } | { Hash: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, Option<u8>, FrameSupportScheduleMaybeHashed]>;
+ scheduleNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, when: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
/**
* Schedule a named task after a delay.
*
+ * Only `T::ScheduleOrigin` is allowed to schedule a task.
+ * Only `T::PrioritySetOrigin` is allowed to set the task's priority.
+ *
* # <weight>
* Same as [`schedule_named`](Self::schedule_named).
* # </weight>
**/
- scheduleNamedAfter: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: FrameSupportScheduleMaybeHashed | { Value: any } | { Hash: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, Option<u8>, FrameSupportScheduleMaybeHashed]>;
+ scheduleNamedAfter: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, after: u32 | AnyNumber | Uint8Array, maybePeriodic: Option<ITuple<[u32, u32]>> | null | Uint8Array | ITuple<[u32, u32]> | [u32 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], priority: Option<u8> | null | Uint8Array | u8 | AnyNumber, call: Call | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u32, Option<ITuple<[u32, u32]>>, Option<u8>, Call]>;
/**
* Generic tx
**/
@@ -986,6 +1028,7 @@
[key: string]: SubmittableExtrinsicFunction<ApiType>;
};
testUtils: {
+ batchAll: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Call>]>;
enable: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
incTestValue: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
justTakeFee: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
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, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, 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, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, 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, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
import type { Data, StorageKey } from '@polkadot/types';
import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
@@ -526,8 +526,6 @@
FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
FrameSupportPalletId: FrameSupportPalletId;
- FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;
- FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;
FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
FrameSystemAccountInfo: FrameSystemAccountInfo;
FrameSystemCall: FrameSystemCall;
@@ -854,6 +852,7 @@
PalletEvmEvent: PalletEvmEvent;
PalletEvmMigrationCall: PalletEvmMigrationCall;
PalletEvmMigrationError: PalletEvmMigrationError;
+ PalletEvmMigrationEvent: PalletEvmMigrationEvent;
PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;
PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;
PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;
@@ -902,10 +901,12 @@
PalletUniqueCall: PalletUniqueCall;
PalletUniqueError: PalletUniqueError;
PalletUniqueRawEvent: PalletUniqueRawEvent;
- PalletUniqueSchedulerCall: PalletUniqueSchedulerCall;
- PalletUniqueSchedulerError: PalletUniqueSchedulerError;
- PalletUniqueSchedulerEvent: PalletUniqueSchedulerEvent;
- PalletUniqueSchedulerScheduledV3: PalletUniqueSchedulerScheduledV3;
+ PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;
+ PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;
+ PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;
+ PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;
+ PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;
+ PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;
PalletVersion: PalletVersion;
PalletXcmCall: PalletXcmCall;
PalletXcmError: PalletXcmError;
tests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -556,22 +556,6 @@
/** @name FrameSupportPalletId */
export interface FrameSupportPalletId extends U8aFixed {}
-/** @name FrameSupportScheduleLookupError */
-export interface FrameSupportScheduleLookupError extends Enum {
- readonly isUnknown: boolean;
- readonly isBadFormat: boolean;
- readonly type: 'Unknown' | 'BadFormat';
-}
-
-/** @name FrameSupportScheduleMaybeHashed */
-export interface FrameSupportScheduleMaybeHashed extends Enum {
- readonly isValue: boolean;
- readonly asValue: Call;
- readonly isHash: boolean;
- readonly asHash: H256;
- readonly type: 'Value' | 'Hash';
-}
-
/** @name FrameSupportTokensMiscBalanceStatus */
export interface FrameSupportTokensMiscBalanceStatus extends Enum {
readonly isFree: boolean;
@@ -1510,16 +1494,31 @@
readonly address: H160;
readonly code: Bytes;
} & Struct;
- readonly type: 'Begin' | 'SetData' | 'Finish';
+ readonly isInsertEthLogs: boolean;
+ readonly asInsertEthLogs: {
+ readonly logs: Vec<EthereumLog>;
+ } & Struct;
+ readonly isInsertEvents: boolean;
+ readonly asInsertEvents: {
+ readonly events: Vec<Bytes>;
+ } & Struct;
+ readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';
}
/** @name PalletEvmMigrationError */
export interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
- readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
+ readonly isBadEvent: boolean;
+ readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
}
+/** @name PalletEvmMigrationEvent */
+export interface PalletEvmMigrationEvent extends Enum {
+ readonly isTestEvent: boolean;
+ readonly type: 'TestEvent';
+}
+
/** @name PalletForeignAssetsAssetIds */
export interface PalletForeignAssetsAssetIds extends Enum {
readonly isForeignAssetId: boolean;
@@ -2019,7 +2018,11 @@
readonly maxTestValue: u32;
} & Struct;
readonly isJustTakeFee: boolean;
- readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee';
+ readonly isBatchAll: boolean;
+ readonly asBatchAll: {
+ readonly calls: Vec<Call>;
+ } & Struct;
+ readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';
}
/** @name PalletTestUtilsError */
@@ -2033,7 +2036,8 @@
export interface PalletTestUtilsEvent extends Enum {
readonly isValueIsSet: boolean;
readonly isShouldRollback: boolean;
- readonly type: 'ValueIsSet' | 'ShouldRollback';
+ readonly isBatchCompleted: boolean;
+ readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';
}
/** @name PalletTimestampCall */
@@ -2342,47 +2346,76 @@
readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';
}
-/** @name PalletUniqueSchedulerCall */
-export interface PalletUniqueSchedulerCall extends Enum {
+/** @name PalletUniqueSchedulerV2BlockAgenda */
+export interface PalletUniqueSchedulerV2BlockAgenda extends Struct {
+ readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;
+ readonly freePlaces: u32;
+}
+
+/** @name PalletUniqueSchedulerV2Call */
+export interface PalletUniqueSchedulerV2Call extends Enum {
+ readonly isSchedule: boolean;
+ readonly asSchedule: {
+ readonly when: u32;
+ readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
+ readonly priority: Option<u8>;
+ readonly call: Call;
+ } & Struct;
+ readonly isCancel: boolean;
+ readonly asCancel: {
+ readonly when: u32;
+ readonly index: u32;
+ } & Struct;
readonly isScheduleNamed: boolean;
readonly asScheduleNamed: {
readonly id: U8aFixed;
readonly when: u32;
readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
readonly priority: Option<u8>;
- readonly call: FrameSupportScheduleMaybeHashed;
+ readonly call: Call;
} & Struct;
readonly isCancelNamed: boolean;
readonly asCancelNamed: {
readonly id: U8aFixed;
} & Struct;
+ readonly isScheduleAfter: boolean;
+ readonly asScheduleAfter: {
+ readonly after: u32;
+ readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
+ readonly priority: Option<u8>;
+ readonly call: Call;
+ } & Struct;
readonly isScheduleNamedAfter: boolean;
readonly asScheduleNamedAfter: {
readonly id: U8aFixed;
readonly after: u32;
readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
readonly priority: Option<u8>;
- readonly call: FrameSupportScheduleMaybeHashed;
+ readonly call: Call;
} & Struct;
readonly isChangeNamedPriority: boolean;
readonly asChangeNamedPriority: {
readonly id: U8aFixed;
readonly priority: u8;
} & Struct;
- readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';
+ readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';
}
-/** @name PalletUniqueSchedulerError */
-export interface PalletUniqueSchedulerError extends Enum {
+/** @name PalletUniqueSchedulerV2Error */
+export interface PalletUniqueSchedulerV2Error extends Enum {
readonly isFailedToSchedule: boolean;
+ readonly isAgendaIsExhausted: boolean;
+ readonly isScheduledCallCorrupted: boolean;
+ readonly isPreimageNotFound: boolean;
+ readonly isTooBigScheduledCall: boolean;
readonly isNotFound: boolean;
readonly isTargetBlockNumberInPast: boolean;
- readonly isRescheduleNoChange: boolean;
- readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';
+ readonly isNamed: boolean;
+ readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';
}
-/** @name PalletUniqueSchedulerEvent */
-export interface PalletUniqueSchedulerEvent extends Enum {
+/** @name PalletUniqueSchedulerV2Event */
+export interface PalletUniqueSchedulerV2Event extends Enum {
readonly isScheduled: boolean;
readonly asScheduled: {
readonly when: u32;
@@ -2393,36 +2426,51 @@
readonly when: u32;
readonly index: u32;
} & Struct;
+ readonly isDispatched: boolean;
+ readonly asDispatched: {
+ readonly task: ITuple<[u32, u32]>;
+ readonly id: Option<U8aFixed>;
+ readonly result: Result<Null, SpRuntimeDispatchError>;
+ } & Struct;
readonly isPriorityChanged: boolean;
readonly asPriorityChanged: {
- readonly when: u32;
- readonly index: u32;
+ readonly task: ITuple<[u32, u32]>;
readonly priority: u8;
} & Struct;
- readonly isDispatched: boolean;
- readonly asDispatched: {
+ readonly isCallUnavailable: boolean;
+ readonly asCallUnavailable: {
readonly task: ITuple<[u32, u32]>;
readonly id: Option<U8aFixed>;
- readonly result: Result<Null, SpRuntimeDispatchError>;
} & Struct;
- readonly isCallLookupFailed: boolean;
- readonly asCallLookupFailed: {
+ readonly isPermanentlyOverweight: boolean;
+ readonly asPermanentlyOverweight: {
readonly task: ITuple<[u32, u32]>;
readonly id: Option<U8aFixed>;
- readonly error: FrameSupportScheduleLookupError;
} & Struct;
- readonly type: 'Scheduled' | 'Canceled' | 'PriorityChanged' | 'Dispatched' | 'CallLookupFailed';
+ readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';
}
-/** @name PalletUniqueSchedulerScheduledV3 */
-export interface PalletUniqueSchedulerScheduledV3 extends Struct {
+/** @name PalletUniqueSchedulerV2Scheduled */
+export interface PalletUniqueSchedulerV2Scheduled extends Struct {
readonly maybeId: Option<U8aFixed>;
readonly priority: u8;
- readonly call: FrameSupportScheduleMaybeHashed;
+ readonly call: PalletUniqueSchedulerV2ScheduledCall;
readonly maybePeriodic: Option<ITuple<[u32, u32]>>;
readonly origin: OpalRuntimeOriginCaller;
}
+/** @name PalletUniqueSchedulerV2ScheduledCall */
+export interface PalletUniqueSchedulerV2ScheduledCall extends Enum {
+ readonly isInline: boolean;
+ readonly asInline: Bytes;
+ readonly isPreimageLookup: boolean;
+ readonly asPreimageLookup: {
+ readonly hash_: H256;
+ readonly unboundedLen: u32;
+ } & Struct;
+ readonly type: 'Inline' | 'PreimageLookup';
+}
+
/** @name PalletXcmCall */
export interface PalletXcmCall extends Enum {
readonly isSend: boolean;
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -1004,9 +1004,9 @@
}
},
/**
- * Lookup93: pallet_unique_scheduler::pallet::Event<T>
+ * Lookup93: pallet_unique_scheduler_v2::pallet::Event<T>
**/
- PalletUniqueSchedulerEvent: {
+ PalletUniqueSchedulerV2Event: {
_enum: {
Scheduled: {
when: 'u32',
@@ -1016,31 +1016,27 @@
when: 'u32',
index: 'u32',
},
+ Dispatched: {
+ task: '(u32,u32)',
+ id: 'Option<[u8;32]>',
+ result: 'Result<Null, SpRuntimeDispatchError>',
+ },
PriorityChanged: {
- when: 'u32',
- index: 'u32',
+ task: '(u32,u32)',
priority: 'u8',
},
- Dispatched: {
+ CallUnavailable: {
task: '(u32,u32)',
- id: 'Option<[u8;16]>',
- result: 'Result<Null, SpRuntimeDispatchError>',
+ id: 'Option<[u8;32]>',
},
- CallLookupFailed: {
+ PermanentlyOverweight: {
task: '(u32,u32)',
- id: 'Option<[u8;16]>',
- error: 'FrameSupportScheduleLookupError'
+ id: 'Option<[u8;32]>'
}
}
},
/**
- * Lookup96: frame_support::traits::schedule::LookupError
- **/
- FrameSupportScheduleLookupError: {
- _enum: ['Unknown', 'BadFormat']
- },
- /**
- * Lookup97: pallet_common::pallet::Event<T>
+ * Lookup96: pallet_common::pallet::Event<T>
**/
PalletCommonEvent: {
_enum: {
@@ -1058,7 +1054,7 @@
}
},
/**
- * Lookup100: pallet_structure::pallet::Event<T>
+ * Lookup99: pallet_structure::pallet::Event<T>
**/
PalletStructureEvent: {
_enum: {
@@ -1066,7 +1062,7 @@
}
},
/**
- * Lookup101: pallet_rmrk_core::pallet::Event<T>
+ * Lookup100: pallet_rmrk_core::pallet::Event<T>
**/
PalletRmrkCoreEvent: {
_enum: {
@@ -1143,7 +1139,7 @@
}
},
/**
- * Lookup102: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
+ * Lookup101: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
**/
RmrkTraitsNftAccountIdOrCollectionNftTuple: {
_enum: {
@@ -1152,7 +1148,7 @@
}
},
/**
- * Lookup107: pallet_rmrk_equip::pallet::Event<T>
+ * Lookup106: pallet_rmrk_equip::pallet::Event<T>
**/
PalletRmrkEquipEvent: {
_enum: {
@@ -1167,7 +1163,7 @@
}
},
/**
- * Lookup108: pallet_app_promotion::pallet::Event<T>
+ * Lookup107: pallet_app_promotion::pallet::Event<T>
**/
PalletAppPromotionEvent: {
_enum: {
@@ -1178,7 +1174,7 @@
}
},
/**
- * Lookup109: pallet_foreign_assets::module::Event<T>
+ * Lookup108: pallet_foreign_assets::module::Event<T>
**/
PalletForeignAssetsModuleEvent: {
_enum: {
@@ -1203,7 +1199,7 @@
}
},
/**
- * Lookup110: pallet_foreign_assets::module::AssetMetadata<Balance>
+ * Lookup109: pallet_foreign_assets::module::AssetMetadata<Balance>
**/
PalletForeignAssetsModuleAssetMetadata: {
name: 'Bytes',
@@ -1212,7 +1208,7 @@
minimalBalance: 'u128'
},
/**
- * Lookup111: pallet_evm::pallet::Event<T>
+ * Lookup110: pallet_evm::pallet::Event<T>
**/
PalletEvmEvent: {
_enum: {
@@ -1234,7 +1230,7 @@
}
},
/**
- * Lookup112: ethereum::log::Log
+ * Lookup111: ethereum::log::Log
**/
EthereumLog: {
address: 'H160',
@@ -1242,7 +1238,7 @@
data: 'Bytes'
},
/**
- * Lookup114: pallet_ethereum::pallet::Event
+ * Lookup113: pallet_ethereum::pallet::Event
**/
PalletEthereumEvent: {
_enum: {
@@ -1255,7 +1251,7 @@
}
},
/**
- * Lookup115: evm_core::error::ExitReason
+ * Lookup114: evm_core::error::ExitReason
**/
EvmCoreErrorExitReason: {
_enum: {
@@ -1266,13 +1262,13 @@
}
},
/**
- * Lookup116: evm_core::error::ExitSucceed
+ * Lookup115: evm_core::error::ExitSucceed
**/
EvmCoreErrorExitSucceed: {
_enum: ['Stopped', 'Returned', 'Suicided']
},
/**
- * Lookup117: evm_core::error::ExitError
+ * Lookup116: evm_core::error::ExitError
**/
EvmCoreErrorExitError: {
_enum: {
@@ -1294,13 +1290,13 @@
}
},
/**
- * Lookup120: evm_core::error::ExitRevert
+ * Lookup119: evm_core::error::ExitRevert
**/
EvmCoreErrorExitRevert: {
_enum: ['Reverted']
},
/**
- * Lookup121: evm_core::error::ExitFatal
+ * Lookup120: evm_core::error::ExitFatal
**/
EvmCoreErrorExitFatal: {
_enum: {
@@ -1311,7 +1307,7 @@
}
},
/**
- * Lookup122: pallet_evm_contract_helpers::pallet::Event<T>
+ * Lookup121: pallet_evm_contract_helpers::pallet::Event<T>
**/
PalletEvmContractHelpersEvent: {
_enum: {
@@ -1321,6 +1317,12 @@
}
},
/**
+ * Lookup122: pallet_evm_migration::pallet::Event<T>
+ **/
+ PalletEvmMigrationEvent: {
+ _enum: ['TestEvent']
+ },
+ /**
* Lookup123: pallet_maintenance::pallet::Event<T>
**/
PalletMaintenanceEvent: {
@@ -1330,7 +1332,7 @@
* Lookup124: pallet_test_utils::pallet::Event<T>
**/
PalletTestUtilsEvent: {
- _enum: ['ValueIsSet', 'ShouldRollback']
+ _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']
},
/**
* Lookup125: frame_system::Phase
@@ -2463,44 +2465,51 @@
properties: 'Vec<UpDataStructsProperty>'
},
/**
- * Lookup284: pallet_unique_scheduler::pallet::Call<T>
+ * Lookup284: pallet_unique_scheduler_v2::pallet::Call<T>
**/
- PalletUniqueSchedulerCall: {
+ PalletUniqueSchedulerV2Call: {
_enum: {
+ schedule: {
+ when: 'u32',
+ maybePeriodic: 'Option<(u32,u32)>',
+ priority: 'Option<u8>',
+ call: 'Call',
+ },
+ cancel: {
+ when: 'u32',
+ index: 'u32',
+ },
schedule_named: {
- id: '[u8;16]',
+ id: '[u8;32]',
when: 'u32',
maybePeriodic: 'Option<(u32,u32)>',
priority: 'Option<u8>',
- call: 'FrameSupportScheduleMaybeHashed',
+ call: 'Call',
},
cancel_named: {
- id: '[u8;16]',
+ id: '[u8;32]',
+ },
+ schedule_after: {
+ after: 'u32',
+ maybePeriodic: 'Option<(u32,u32)>',
+ priority: 'Option<u8>',
+ call: 'Call',
},
schedule_named_after: {
- id: '[u8;16]',
+ id: '[u8;32]',
after: 'u32',
maybePeriodic: 'Option<(u32,u32)>',
priority: 'Option<u8>',
- call: 'FrameSupportScheduleMaybeHashed',
+ call: 'Call',
},
change_named_priority: {
- id: '[u8;16]',
+ id: '[u8;32]',
priority: 'u8'
}
}
},
/**
- * Lookup287: frame_support::traits::schedule::MaybeHashed<opal_runtime::RuntimeCall, primitive_types::H256>
- **/
- FrameSupportScheduleMaybeHashed: {
- _enum: {
- Value: 'Call',
- Hash: 'H256'
- }
- },
- /**
- * Lookup288: pallet_configuration::pallet::Call<T>
+ * Lookup287: pallet_configuration::pallet::Call<T>
**/
PalletConfigurationCall: {
_enum: {
@@ -2513,15 +2522,15 @@
}
},
/**
- * Lookup290: pallet_template_transaction_payment::Call<T>
+ * Lookup289: pallet_template_transaction_payment::Call<T>
**/
PalletTemplateTransactionPaymentCall: 'Null',
/**
- * Lookup291: pallet_structure::pallet::Call<T>
+ * Lookup290: pallet_structure::pallet::Call<T>
**/
PalletStructureCall: 'Null',
/**
- * Lookup292: pallet_rmrk_core::pallet::Call<T>
+ * Lookup291: pallet_rmrk_core::pallet::Call<T>
**/
PalletRmrkCoreCall: {
_enum: {
@@ -2612,7 +2621,7 @@
}
},
/**
- * Lookup298: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup297: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceTypes: {
_enum: {
@@ -2622,7 +2631,7 @@
}
},
/**
- * Lookup300: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup299: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceBasicResource: {
src: 'Option<Bytes>',
@@ -2631,7 +2640,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup302: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup301: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceComposableResource: {
parts: 'Vec<u32>',
@@ -2642,7 +2651,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup303: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup302: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceSlotResource: {
base: 'u32',
@@ -2653,7 +2662,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup306: pallet_rmrk_equip::pallet::Call<T>
+ * Lookup305: pallet_rmrk_equip::pallet::Call<T>
**/
PalletRmrkEquipCall: {
_enum: {
@@ -2674,7 +2683,7 @@
}
},
/**
- * Lookup309: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup308: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartPartType: {
_enum: {
@@ -2683,7 +2692,7 @@
}
},
/**
- * Lookup311: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup310: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartFixedPart: {
id: 'u32',
@@ -2691,7 +2700,7 @@
src: 'Bytes'
},
/**
- * Lookup312: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup311: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartSlotPart: {
id: 'u32',
@@ -2700,7 +2709,7 @@
z: 'u32'
},
/**
- * Lookup313: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup312: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartEquippableList: {
_enum: {
@@ -2710,7 +2719,7 @@
}
},
/**
- * Lookup315: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
+ * Lookup314: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
**/
RmrkTraitsTheme: {
name: 'Bytes',
@@ -2718,14 +2727,14 @@
inherit: 'bool'
},
/**
- * Lookup317: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup316: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsThemeThemeProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup319: pallet_app_promotion::pallet::Call<T>
+ * Lookup318: pallet_app_promotion::pallet::Call<T>
**/
PalletAppPromotionCall: {
_enum: {
@@ -2754,7 +2763,7 @@
}
},
/**
- * Lookup320: pallet_foreign_assets::module::Call<T>
+ * Lookup319: pallet_foreign_assets::module::Call<T>
**/
PalletForeignAssetsModuleCall: {
_enum: {
@@ -2771,7 +2780,7 @@
}
},
/**
- * Lookup321: pallet_evm::pallet::Call<T>
+ * Lookup320: pallet_evm::pallet::Call<T>
**/
PalletEvmCall: {
_enum: {
@@ -2814,7 +2823,7 @@
}
},
/**
- * Lookup327: pallet_ethereum::pallet::Call<T>
+ * Lookup326: pallet_ethereum::pallet::Call<T>
**/
PalletEthereumCall: {
_enum: {
@@ -2824,7 +2833,7 @@
}
},
/**
- * Lookup328: ethereum::transaction::TransactionV2
+ * Lookup327: ethereum::transaction::TransactionV2
**/
EthereumTransactionTransactionV2: {
_enum: {
@@ -2834,7 +2843,7 @@
}
},
/**
- * Lookup329: ethereum::transaction::LegacyTransaction
+ * Lookup328: ethereum::transaction::LegacyTransaction
**/
EthereumTransactionLegacyTransaction: {
nonce: 'U256',
@@ -2846,7 +2855,7 @@
signature: 'EthereumTransactionTransactionSignature'
},
/**
- * Lookup330: ethereum::transaction::TransactionAction
+ * Lookup329: ethereum::transaction::TransactionAction
**/
EthereumTransactionTransactionAction: {
_enum: {
@@ -2855,7 +2864,7 @@
}
},
/**
- * Lookup331: ethereum::transaction::TransactionSignature
+ * Lookup330: ethereum::transaction::TransactionSignature
**/
EthereumTransactionTransactionSignature: {
v: 'u64',
@@ -2863,7 +2872,7 @@
s: 'H256'
},
/**
- * Lookup333: ethereum::transaction::EIP2930Transaction
+ * Lookup332: ethereum::transaction::EIP2930Transaction
**/
EthereumTransactionEip2930Transaction: {
chainId: 'u64',
@@ -2879,14 +2888,14 @@
s: 'H256'
},
/**
- * Lookup335: ethereum::transaction::AccessListItem
+ * Lookup334: ethereum::transaction::AccessListItem
**/
EthereumTransactionAccessListItem: {
address: 'H160',
storageKeys: 'Vec<H256>'
},
/**
- * Lookup336: ethereum::transaction::EIP1559Transaction
+ * Lookup335: ethereum::transaction::EIP1559Transaction
**/
EthereumTransactionEip1559Transaction: {
chainId: 'u64',
@@ -2903,7 +2912,7 @@
s: 'H256'
},
/**
- * Lookup337: pallet_evm_migration::pallet::Call<T>
+ * Lookup336: pallet_evm_migration::pallet::Call<T>
**/
PalletEvmMigrationCall: {
_enum: {
@@ -2916,7 +2925,13 @@
},
finish: {
address: 'H160',
- code: 'Bytes'
+ code: 'Bytes',
+ },
+ insert_eth_logs: {
+ logs: 'Vec<EthereumLog>',
+ },
+ insert_events: {
+ events: 'Vec<Bytes>'
}
}
},
@@ -2940,39 +2955,42 @@
},
inc_test_value: 'Null',
self_canceling_inc: {
- id: '[u8;16]',
+ id: '[u8;32]',
maxTestValue: 'u32',
},
- just_take_fee: 'Null'
+ just_take_fee: 'Null',
+ batch_all: {
+ calls: 'Vec<Call>'
+ }
}
},
/**
- * Lookup342: pallet_sudo::pallet::Error<T>
+ * Lookup343: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup344: orml_vesting::module::Error<T>
+ * Lookup345: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup345: orml_xtokens::module::Error<T>
+ * Lookup346: orml_xtokens::module::Error<T>
**/
OrmlXtokensModuleError: {
_enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
},
/**
- * Lookup348: orml_tokens::BalanceLock<Balance>
+ * Lookup349: orml_tokens::BalanceLock<Balance>
**/
OrmlTokensBalanceLock: {
id: '[u8;8]',
amount: 'u128'
},
/**
- * Lookup350: orml_tokens::AccountData<Balance>
+ * Lookup351: orml_tokens::AccountData<Balance>
**/
OrmlTokensAccountData: {
free: 'u128',
@@ -2980,20 +2998,20 @@
frozen: 'u128'
},
/**
- * Lookup352: orml_tokens::ReserveData<ReserveIdentifier, Balance>
+ * Lookup353: orml_tokens::ReserveData<ReserveIdentifier, Balance>
**/
OrmlTokensReserveData: {
id: 'Null',
amount: 'u128'
},
/**
- * Lookup354: orml_tokens::module::Error<T>
+ * Lookup355: orml_tokens::module::Error<T>
**/
OrmlTokensModuleError: {
_enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup356: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup357: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -3001,19 +3019,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup357: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup358: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup360: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup361: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup363: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup364: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -3023,13 +3041,13 @@
lastIndex: 'u16'
},
/**
- * Lookup364: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup365: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup366: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup367: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
@@ -3040,29 +3058,29 @@
xcmpMaxIndividualWeight: 'Weight'
},
/**
- * Lookup368: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup369: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup369: pallet_xcm::pallet::Error<T>
+ * Lookup370: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
},
/**
- * Lookup370: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup371: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup371: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup372: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
maxIndividual: 'Weight'
},
/**
- * Lookup372: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup373: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -3070,30 +3088,52 @@
overweightCount: 'u64'
},
/**
- * Lookup375: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup376: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup379: pallet_unique::Error<T>
+ * Lookup380: pallet_unique::Error<T>
**/
PalletUniqueError: {
_enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
},
/**
- * Lookup382: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::RuntimeCall, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
+ * Lookup381: pallet_unique_scheduler_v2::BlockAgenda<T>
+ **/
+ PalletUniqueSchedulerV2BlockAgenda: {
+ agenda: 'Vec<Option<PalletUniqueSchedulerV2Scheduled>>',
+ freePlaces: 'u32'
+ },
+ /**
+ * Lookup384: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
**/
- PalletUniqueSchedulerScheduledV3: {
- maybeId: 'Option<[u8;16]>',
+ PalletUniqueSchedulerV2Scheduled: {
+ maybeId: 'Option<[u8;32]>',
priority: 'u8',
- call: 'FrameSupportScheduleMaybeHashed',
+ call: 'PalletUniqueSchedulerV2ScheduledCall',
maybePeriodic: 'Option<(u32,u32)>',
origin: 'OpalRuntimeOriginCaller'
},
/**
- * Lookup383: opal_runtime::OriginCaller
+ * Lookup385: pallet_unique_scheduler_v2::ScheduledCall<T>
**/
+ PalletUniqueSchedulerV2ScheduledCall: {
+ _enum: {
+ Inline: 'Bytes',
+ PreimageLookup: {
+ _alias: {
+ hash_: 'hash',
+ },
+ hash_: 'H256',
+ unboundedLen: 'u32'
+ }
+ }
+ },
+ /**
+ * Lookup387: opal_runtime::OriginCaller
+ **/
OpalRuntimeOriginCaller: {
_enum: {
system: 'FrameSupportDispatchRawOrigin',
@@ -3201,7 +3241,7 @@
}
},
/**
- * Lookup384: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
+ * Lookup388: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
**/
FrameSupportDispatchRawOrigin: {
_enum: {
@@ -3211,7 +3251,7 @@
}
},
/**
- * Lookup385: pallet_xcm::pallet::Origin
+ * Lookup389: pallet_xcm::pallet::Origin
**/
PalletXcmOrigin: {
_enum: {
@@ -3220,7 +3260,7 @@
}
},
/**
- * Lookup386: cumulus_pallet_xcm::pallet::Origin
+ * Lookup390: cumulus_pallet_xcm::pallet::Origin
**/
CumulusPalletXcmOrigin: {
_enum: {
@@ -3229,7 +3269,7 @@
}
},
/**
- * Lookup387: pallet_ethereum::RawOrigin
+ * Lookup391: pallet_ethereum::RawOrigin
**/
PalletEthereumRawOrigin: {
_enum: {
@@ -3237,17 +3277,17 @@
}
},
/**
- * Lookup388: sp_core::Void
+ * Lookup392: sp_core::Void
**/
SpCoreVoid: 'Null',
/**
- * Lookup389: pallet_unique_scheduler::pallet::Error<T>
+ * Lookup394: pallet_unique_scheduler_v2::pallet::Error<T>
**/
- PalletUniqueSchedulerError: {
- _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']
+ PalletUniqueSchedulerV2Error: {
+ _enum: ['FailedToSchedule', 'AgendaIsExhausted', 'ScheduledCallCorrupted', 'PreimageNotFound', 'TooBigScheduledCall', 'NotFound', 'TargetBlockNumberInPast', 'Named']
},
/**
- * Lookup390: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ * Lookup395: up_data_structs::Collection<sp_core::crypto::AccountId32>
**/
UpDataStructsCollection: {
owner: 'AccountId32',
@@ -3261,7 +3301,7 @@
flags: '[u8;1]'
},
/**
- * Lookup391: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup396: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipStateAccountId32: {
_enum: {
@@ -3271,7 +3311,7 @@
}
},
/**
- * Lookup393: up_data_structs::Properties
+ * Lookup398: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -3279,15 +3319,15 @@
spaceLimit: 'u32'
},
/**
- * Lookup394: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup399: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
/**
- * Lookup399: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ * Lookup404: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
**/
UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
/**
- * Lookup406: up_data_structs::CollectionStats
+ * Lookup411: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -3295,18 +3335,18 @@
alive: 'u32'
},
/**
- * Lookup407: up_data_structs::TokenChild
+ * Lookup412: up_data_structs::TokenChild
**/
UpDataStructsTokenChild: {
token: 'u32',
collection: 'u32'
},
/**
- * Lookup408: PhantomType::up_data_structs<T>
+ * Lookup413: PhantomType::up_data_structs<T>
**/
PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
/**
- * Lookup410: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup415: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
properties: 'Vec<UpDataStructsProperty>',
@@ -3314,7 +3354,7 @@
pieces: 'u128'
},
/**
- * Lookup412: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup417: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -3331,14 +3371,14 @@
flags: 'UpDataStructsRpcCollectionFlags'
},
/**
- * Lookup413: up_data_structs::RpcCollectionFlags
+ * Lookup418: up_data_structs::RpcCollectionFlags
**/
UpDataStructsRpcCollectionFlags: {
foreign: 'bool',
erc721metadata: 'bool'
},
/**
- * Lookup414: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
+ * Lookup419: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
**/
RmrkTraitsCollectionCollectionInfo: {
issuer: 'AccountId32',
@@ -3348,7 +3388,7 @@
nftsCount: 'u32'
},
/**
- * Lookup415: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup420: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsNftNftInfo: {
owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -3358,14 +3398,14 @@
pending: 'bool'
},
/**
- * Lookup417: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+ * Lookup422: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
**/
RmrkTraitsNftRoyaltyInfo: {
recipient: 'AccountId32',
amount: 'Permill'
},
/**
- * Lookup418: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup423: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceInfo: {
id: 'u32',
@@ -3374,14 +3414,14 @@
pendingRemoval: 'bool'
},
/**
- * Lookup419: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup424: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPropertyPropertyInfo: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup420: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup425: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsBaseBaseInfo: {
issuer: 'AccountId32',
@@ -3389,92 +3429,92 @@
symbol: 'Bytes'
},
/**
- * Lookup421: rmrk_traits::nft::NftChild
+ * Lookup426: rmrk_traits::nft::NftChild
**/
RmrkTraitsNftNftChild: {
collectionId: 'u32',
nftId: 'u32'
},
/**
- * Lookup423: pallet_common::pallet::Error<T>
+ * Lookup428: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
_enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal']
},
/**
- * Lookup425: pallet_fungible::pallet::Error<T>
+ * Lookup430: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup426: pallet_refungible::ItemData
+ * Lookup431: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes'
},
/**
- * Lookup431: pallet_refungible::pallet::Error<T>
+ * Lookup436: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup432: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup437: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup434: up_data_structs::PropertyScope
+ * Lookup439: up_data_structs::PropertyScope
**/
UpDataStructsPropertyScope: {
_enum: ['None', 'Rmrk']
},
/**
- * Lookup436: pallet_nonfungible::pallet::Error<T>
+ * Lookup441: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup437: pallet_structure::pallet::Error<T>
+ * Lookup442: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
},
/**
- * Lookup438: pallet_rmrk_core::pallet::Error<T>
+ * Lookup443: pallet_rmrk_core::pallet::Error<T>
**/
PalletRmrkCoreError: {
_enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
},
/**
- * Lookup440: pallet_rmrk_equip::pallet::Error<T>
+ * Lookup445: pallet_rmrk_equip::pallet::Error<T>
**/
PalletRmrkEquipError: {
_enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
},
/**
- * Lookup446: pallet_app_promotion::pallet::Error<T>
+ * Lookup451: pallet_app_promotion::pallet::Error<T>
**/
PalletAppPromotionError: {
_enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
},
/**
- * Lookup447: pallet_foreign_assets::module::Error<T>
+ * Lookup452: pallet_foreign_assets::module::Error<T>
**/
PalletForeignAssetsModuleError: {
_enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
},
/**
- * Lookup450: pallet_evm::pallet::Error<T>
+ * Lookup454: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']
},
/**
- * Lookup453: fp_rpc::TransactionStatus
+ * Lookup457: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -3486,11 +3526,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup455: ethbloom::Bloom
+ * Lookup459: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup457: ethereum::receipt::ReceiptV3
+ * Lookup461: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -3500,7 +3540,7 @@
}
},
/**
- * Lookup458: ethereum::receipt::EIP658ReceiptData
+ * Lookup462: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -3509,7 +3549,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup459: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup463: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -3517,7 +3557,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup460: ethereum::header::Header
+ * Lookup464: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -3537,23 +3577,23 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup461: ethereum_types::hash::H64
+ * Lookup465: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup466: pallet_ethereum::pallet::Error<T>
+ * Lookup470: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup467: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup471: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup468: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup472: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
_enum: {
@@ -3563,35 +3603,35 @@
}
},
/**
- * Lookup469: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup473: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup475: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup479: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
},
/**
- * Lookup476: pallet_evm_migration::pallet::Error<T>
+ * Lookup480: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
- _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
+ _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
},
/**
- * Lookup477: pallet_maintenance::pallet::Error<T>
+ * Lookup481: pallet_maintenance::pallet::Error<T>
**/
PalletMaintenanceError: 'Null',
/**
- * Lookup478: pallet_test_utils::pallet::Error<T>
+ * Lookup482: pallet_test_utils::pallet::Error<T>
**/
PalletTestUtilsError: {
_enum: ['TestPalletDisabled', 'TriggerRollback']
},
/**
- * Lookup480: sp_runtime::MultiSignature
+ * Lookup484: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -3601,51 +3641,51 @@
}
},
/**
- * Lookup481: sp_core::ed25519::Signature
+ * Lookup485: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup483: sp_core::sr25519::Signature
+ * Lookup487: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup484: sp_core::ecdsa::Signature
+ * Lookup488: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup487: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup491: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup488: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+ * Lookup492: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: 'Null',
/**
- * Lookup489: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup493: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup492: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup496: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup493: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup497: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup494: opal_runtime::runtime_common::maintenance::CheckMaintenance
+ * Lookup498: opal_runtime::runtime_common::maintenance::CheckMaintenance
**/
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
/**
- * Lookup495: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup499: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup496: opal_runtime::Runtime
+ * Lookup500: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup497: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup501: 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, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerCall, PalletUniqueSchedulerError, PalletUniqueSchedulerEvent, PalletUniqueSchedulerScheduledV3, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, 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, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmOrigin, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReleases, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationCall, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEthereumRawOrigin, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletUniqueRawEvent, PalletUniqueSchedulerV2BlockAgenda, PalletUniqueSchedulerV2Call, PalletUniqueSchedulerV2Error, PalletUniqueSchedulerV2Event, PalletUniqueSchedulerV2Scheduled, PalletUniqueSchedulerV2ScheduledCall, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmOrigin, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpCoreVoid, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, 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, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -59,8 +59,6 @@
FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;
FrameSupportPalletId: FrameSupportPalletId;
- FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;
- FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;
FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;
FrameSystemAccountInfo: FrameSystemAccountInfo;
FrameSystemCall: FrameSystemCall;
@@ -122,6 +120,7 @@
PalletEvmEvent: PalletEvmEvent;
PalletEvmMigrationCall: PalletEvmMigrationCall;
PalletEvmMigrationError: PalletEvmMigrationError;
+ PalletEvmMigrationEvent: PalletEvmMigrationEvent;
PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;
PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;
PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;
@@ -164,10 +163,12 @@
PalletUniqueCall: PalletUniqueCall;
PalletUniqueError: PalletUniqueError;
PalletUniqueRawEvent: PalletUniqueRawEvent;
- PalletUniqueSchedulerCall: PalletUniqueSchedulerCall;
- PalletUniqueSchedulerError: PalletUniqueSchedulerError;
- PalletUniqueSchedulerEvent: PalletUniqueSchedulerEvent;
- PalletUniqueSchedulerScheduledV3: PalletUniqueSchedulerScheduledV3;
+ PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;
+ PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;
+ PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;
+ PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;
+ PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;
+ PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;
PalletXcmCall: PalletXcmCall;
PalletXcmError: PalletXcmError;
PalletXcmEvent: PalletXcmEvent;
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 { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { ITuple } from '@polkadot/types-codec/types';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';11import type { Event } from '@polkadot/types/interfaces/system';1213declare module '@polkadot/types/lookup' {14 /** @name FrameSystemAccountInfo (3) */15 interface FrameSystemAccountInfo extends Struct {16 readonly nonce: u32;17 readonly consumers: u32;18 readonly providers: u32;19 readonly sufficients: u32;20 readonly data: PalletBalancesAccountData;21 }2223 /** @name PalletBalancesAccountData (5) */24 interface PalletBalancesAccountData extends Struct {25 readonly free: u128;26 readonly reserved: u128;27 readonly miscFrozen: u128;28 readonly feeFrozen: u128;29 }3031 /** @name FrameSupportDispatchPerDispatchClassWeight (7) */32 interface FrameSupportDispatchPerDispatchClassWeight extends Struct {33 readonly normal: Weight;34 readonly operational: Weight;35 readonly mandatory: Weight;36 }3738 /** @name SpRuntimeDigest (12) */39 interface SpRuntimeDigest extends Struct {40 readonly logs: Vec<SpRuntimeDigestDigestItem>;41 }4243 /** @name SpRuntimeDigestDigestItem (14) */44 interface SpRuntimeDigestDigestItem extends Enum {45 readonly isOther: boolean;46 readonly asOther: Bytes;47 readonly isConsensus: boolean;48 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;49 readonly isSeal: boolean;50 readonly asSeal: ITuple<[U8aFixed, Bytes]>;51 readonly isPreRuntime: boolean;52 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;53 readonly isRuntimeEnvironmentUpdated: boolean;54 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';55 }5657 /** @name FrameSystemEventRecord (17) */58 interface FrameSystemEventRecord extends Struct {59 readonly phase: FrameSystemPhase;60 readonly event: Event;61 readonly topics: Vec<H256>;62 }6364 /** @name FrameSystemEvent (19) */65 interface FrameSystemEvent extends Enum {66 readonly isExtrinsicSuccess: boolean;67 readonly asExtrinsicSuccess: {68 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;69 } & Struct;70 readonly isExtrinsicFailed: boolean;71 readonly asExtrinsicFailed: {72 readonly dispatchError: SpRuntimeDispatchError;73 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;74 } & Struct;75 readonly isCodeUpdated: boolean;76 readonly isNewAccount: boolean;77 readonly asNewAccount: {78 readonly account: AccountId32;79 } & Struct;80 readonly isKilledAccount: boolean;81 readonly asKilledAccount: {82 readonly account: AccountId32;83 } & Struct;84 readonly isRemarked: boolean;85 readonly asRemarked: {86 readonly sender: AccountId32;87 readonly hash_: H256;88 } & Struct;89 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';90 }9192 /** @name FrameSupportDispatchDispatchInfo (20) */93 interface FrameSupportDispatchDispatchInfo extends Struct {94 readonly weight: Weight;95 readonly class: FrameSupportDispatchDispatchClass;96 readonly paysFee: FrameSupportDispatchPays;97 }9899 /** @name FrameSupportDispatchDispatchClass (21) */100 interface FrameSupportDispatchDispatchClass extends Enum {101 readonly isNormal: boolean;102 readonly isOperational: boolean;103 readonly isMandatory: boolean;104 readonly type: 'Normal' | 'Operational' | 'Mandatory';105 }106107 /** @name FrameSupportDispatchPays (22) */108 interface FrameSupportDispatchPays extends Enum {109 readonly isYes: boolean;110 readonly isNo: boolean;111 readonly type: 'Yes' | 'No';112 }113114 /** @name SpRuntimeDispatchError (23) */115 interface SpRuntimeDispatchError extends Enum {116 readonly isOther: boolean;117 readonly isCannotLookup: boolean;118 readonly isBadOrigin: boolean;119 readonly isModule: boolean;120 readonly asModule: SpRuntimeModuleError;121 readonly isConsumerRemaining: boolean;122 readonly isNoProviders: boolean;123 readonly isTooManyConsumers: boolean;124 readonly isToken: boolean;125 readonly asToken: SpRuntimeTokenError;126 readonly isArithmetic: boolean;127 readonly asArithmetic: SpRuntimeArithmeticError;128 readonly isTransactional: boolean;129 readonly asTransactional: SpRuntimeTransactionalError;130 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';131 }132133 /** @name SpRuntimeModuleError (24) */134 interface SpRuntimeModuleError extends Struct {135 readonly index: u8;136 readonly error: U8aFixed;137 }138139 /** @name SpRuntimeTokenError (25) */140 interface SpRuntimeTokenError extends Enum {141 readonly isNoFunds: boolean;142 readonly isWouldDie: boolean;143 readonly isBelowMinimum: boolean;144 readonly isCannotCreate: boolean;145 readonly isUnknownAsset: boolean;146 readonly isFrozen: boolean;147 readonly isUnsupported: boolean;148 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';149 }150151 /** @name SpRuntimeArithmeticError (26) */152 interface SpRuntimeArithmeticError extends Enum {153 readonly isUnderflow: boolean;154 readonly isOverflow: boolean;155 readonly isDivisionByZero: boolean;156 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';157 }158159 /** @name SpRuntimeTransactionalError (27) */160 interface SpRuntimeTransactionalError extends Enum {161 readonly isLimitReached: boolean;162 readonly isNoLayer: boolean;163 readonly type: 'LimitReached' | 'NoLayer';164 }165166 /** @name CumulusPalletParachainSystemEvent (28) */167 interface CumulusPalletParachainSystemEvent extends Enum {168 readonly isValidationFunctionStored: boolean;169 readonly isValidationFunctionApplied: boolean;170 readonly asValidationFunctionApplied: {171 readonly relayChainBlockNum: u32;172 } & Struct;173 readonly isValidationFunctionDiscarded: boolean;174 readonly isUpgradeAuthorized: boolean;175 readonly asUpgradeAuthorized: {176 readonly codeHash: H256;177 } & Struct;178 readonly isDownwardMessagesReceived: boolean;179 readonly asDownwardMessagesReceived: {180 readonly count: u32;181 } & Struct;182 readonly isDownwardMessagesProcessed: boolean;183 readonly asDownwardMessagesProcessed: {184 readonly weightUsed: Weight;185 readonly dmqHead: H256;186 } & Struct;187 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';188 }189190 /** @name PalletBalancesEvent (29) */191 interface PalletBalancesEvent extends Enum {192 readonly isEndowed: boolean;193 readonly asEndowed: {194 readonly account: AccountId32;195 readonly freeBalance: u128;196 } & Struct;197 readonly isDustLost: boolean;198 readonly asDustLost: {199 readonly account: AccountId32;200 readonly amount: u128;201 } & Struct;202 readonly isTransfer: boolean;203 readonly asTransfer: {204 readonly from: AccountId32;205 readonly to: AccountId32;206 readonly amount: u128;207 } & Struct;208 readonly isBalanceSet: boolean;209 readonly asBalanceSet: {210 readonly who: AccountId32;211 readonly free: u128;212 readonly reserved: u128;213 } & Struct;214 readonly isReserved: boolean;215 readonly asReserved: {216 readonly who: AccountId32;217 readonly amount: u128;218 } & Struct;219 readonly isUnreserved: boolean;220 readonly asUnreserved: {221 readonly who: AccountId32;222 readonly amount: u128;223 } & Struct;224 readonly isReserveRepatriated: boolean;225 readonly asReserveRepatriated: {226 readonly from: AccountId32;227 readonly to: AccountId32;228 readonly amount: u128;229 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;230 } & Struct;231 readonly isDeposit: boolean;232 readonly asDeposit: {233 readonly who: AccountId32;234 readonly amount: u128;235 } & Struct;236 readonly isWithdraw: boolean;237 readonly asWithdraw: {238 readonly who: AccountId32;239 readonly amount: u128;240 } & Struct;241 readonly isSlashed: boolean;242 readonly asSlashed: {243 readonly who: AccountId32;244 readonly amount: u128;245 } & Struct;246 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';247 }248249 /** @name FrameSupportTokensMiscBalanceStatus (30) */250 interface FrameSupportTokensMiscBalanceStatus extends Enum {251 readonly isFree: boolean;252 readonly isReserved: boolean;253 readonly type: 'Free' | 'Reserved';254 }255256 /** @name PalletTransactionPaymentEvent (31) */257 interface PalletTransactionPaymentEvent extends Enum {258 readonly isTransactionFeePaid: boolean;259 readonly asTransactionFeePaid: {260 readonly who: AccountId32;261 readonly actualFee: u128;262 readonly tip: u128;263 } & Struct;264 readonly type: 'TransactionFeePaid';265 }266267 /** @name PalletTreasuryEvent (32) */268 interface PalletTreasuryEvent extends Enum {269 readonly isProposed: boolean;270 readonly asProposed: {271 readonly proposalIndex: u32;272 } & Struct;273 readonly isSpending: boolean;274 readonly asSpending: {275 readonly budgetRemaining: u128;276 } & Struct;277 readonly isAwarded: boolean;278 readonly asAwarded: {279 readonly proposalIndex: u32;280 readonly award: u128;281 readonly account: AccountId32;282 } & Struct;283 readonly isRejected: boolean;284 readonly asRejected: {285 readonly proposalIndex: u32;286 readonly slashed: u128;287 } & Struct;288 readonly isBurnt: boolean;289 readonly asBurnt: {290 readonly burntFunds: u128;291 } & Struct;292 readonly isRollover: boolean;293 readonly asRollover: {294 readonly rolloverBalance: u128;295 } & Struct;296 readonly isDeposit: boolean;297 readonly asDeposit: {298 readonly value: u128;299 } & Struct;300 readonly isSpendApproved: boolean;301 readonly asSpendApproved: {302 readonly proposalIndex: u32;303 readonly amount: u128;304 readonly beneficiary: AccountId32;305 } & Struct;306 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';307 }308309 /** @name PalletSudoEvent (33) */310 interface PalletSudoEvent extends Enum {311 readonly isSudid: boolean;312 readonly asSudid: {313 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;314 } & Struct;315 readonly isKeyChanged: boolean;316 readonly asKeyChanged: {317 readonly oldSudoer: Option<AccountId32>;318 } & Struct;319 readonly isSudoAsDone: boolean;320 readonly asSudoAsDone: {321 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;322 } & Struct;323 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';324 }325326 /** @name OrmlVestingModuleEvent (37) */327 interface OrmlVestingModuleEvent extends Enum {328 readonly isVestingScheduleAdded: boolean;329 readonly asVestingScheduleAdded: {330 readonly from: AccountId32;331 readonly to: AccountId32;332 readonly vestingSchedule: OrmlVestingVestingSchedule;333 } & Struct;334 readonly isClaimed: boolean;335 readonly asClaimed: {336 readonly who: AccountId32;337 readonly amount: u128;338 } & Struct;339 readonly isVestingSchedulesUpdated: boolean;340 readonly asVestingSchedulesUpdated: {341 readonly who: AccountId32;342 } & Struct;343 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';344 }345346 /** @name OrmlVestingVestingSchedule (38) */347 interface OrmlVestingVestingSchedule extends Struct {348 readonly start: u32;349 readonly period: u32;350 readonly periodCount: u32;351 readonly perPeriod: Compact<u128>;352 }353354 /** @name OrmlXtokensModuleEvent (40) */355 interface OrmlXtokensModuleEvent extends Enum {356 readonly isTransferredMultiAssets: boolean;357 readonly asTransferredMultiAssets: {358 readonly sender: AccountId32;359 readonly assets: XcmV1MultiassetMultiAssets;360 readonly fee: XcmV1MultiAsset;361 readonly dest: XcmV1MultiLocation;362 } & Struct;363 readonly type: 'TransferredMultiAssets';364 }365366 /** @name XcmV1MultiassetMultiAssets (41) */367 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}368369 /** @name XcmV1MultiAsset (43) */370 interface XcmV1MultiAsset extends Struct {371 readonly id: XcmV1MultiassetAssetId;372 readonly fun: XcmV1MultiassetFungibility;373 }374375 /** @name XcmV1MultiassetAssetId (44) */376 interface XcmV1MultiassetAssetId extends Enum {377 readonly isConcrete: boolean;378 readonly asConcrete: XcmV1MultiLocation;379 readonly isAbstract: boolean;380 readonly asAbstract: Bytes;381 readonly type: 'Concrete' | 'Abstract';382 }383384 /** @name XcmV1MultiLocation (45) */385 interface XcmV1MultiLocation extends Struct {386 readonly parents: u8;387 readonly interior: XcmV1MultilocationJunctions;388 }389390 /** @name XcmV1MultilocationJunctions (46) */391 interface XcmV1MultilocationJunctions extends Enum {392 readonly isHere: boolean;393 readonly isX1: boolean;394 readonly asX1: XcmV1Junction;395 readonly isX2: boolean;396 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;397 readonly isX3: boolean;398 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;399 readonly isX4: boolean;400 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;401 readonly isX5: boolean;402 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;403 readonly isX6: boolean;404 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;405 readonly isX7: boolean;406 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;407 readonly isX8: boolean;408 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;409 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';410 }411412 /** @name XcmV1Junction (47) */413 interface XcmV1Junction extends Enum {414 readonly isParachain: boolean;415 readonly asParachain: Compact<u32>;416 readonly isAccountId32: boolean;417 readonly asAccountId32: {418 readonly network: XcmV0JunctionNetworkId;419 readonly id: U8aFixed;420 } & Struct;421 readonly isAccountIndex64: boolean;422 readonly asAccountIndex64: {423 readonly network: XcmV0JunctionNetworkId;424 readonly index: Compact<u64>;425 } & Struct;426 readonly isAccountKey20: boolean;427 readonly asAccountKey20: {428 readonly network: XcmV0JunctionNetworkId;429 readonly key: U8aFixed;430 } & Struct;431 readonly isPalletInstance: boolean;432 readonly asPalletInstance: u8;433 readonly isGeneralIndex: boolean;434 readonly asGeneralIndex: Compact<u128>;435 readonly isGeneralKey: boolean;436 readonly asGeneralKey: Bytes;437 readonly isOnlyChild: boolean;438 readonly isPlurality: boolean;439 readonly asPlurality: {440 readonly id: XcmV0JunctionBodyId;441 readonly part: XcmV0JunctionBodyPart;442 } & Struct;443 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';444 }445446 /** @name XcmV0JunctionNetworkId (49) */447 interface XcmV0JunctionNetworkId extends Enum {448 readonly isAny: boolean;449 readonly isNamed: boolean;450 readonly asNamed: Bytes;451 readonly isPolkadot: boolean;452 readonly isKusama: boolean;453 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';454 }455456 /** @name XcmV0JunctionBodyId (53) */457 interface XcmV0JunctionBodyId extends Enum {458 readonly isUnit: boolean;459 readonly isNamed: boolean;460 readonly asNamed: Bytes;461 readonly isIndex: boolean;462 readonly asIndex: Compact<u32>;463 readonly isExecutive: boolean;464 readonly isTechnical: boolean;465 readonly isLegislative: boolean;466 readonly isJudicial: boolean;467 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';468 }469470 /** @name XcmV0JunctionBodyPart (54) */471 interface XcmV0JunctionBodyPart extends Enum {472 readonly isVoice: boolean;473 readonly isMembers: boolean;474 readonly asMembers: {475 readonly count: Compact<u32>;476 } & Struct;477 readonly isFraction: boolean;478 readonly asFraction: {479 readonly nom: Compact<u32>;480 readonly denom: Compact<u32>;481 } & Struct;482 readonly isAtLeastProportion: boolean;483 readonly asAtLeastProportion: {484 readonly nom: Compact<u32>;485 readonly denom: Compact<u32>;486 } & Struct;487 readonly isMoreThanProportion: boolean;488 readonly asMoreThanProportion: {489 readonly nom: Compact<u32>;490 readonly denom: Compact<u32>;491 } & Struct;492 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';493 }494495 /** @name XcmV1MultiassetFungibility (55) */496 interface XcmV1MultiassetFungibility extends Enum {497 readonly isFungible: boolean;498 readonly asFungible: Compact<u128>;499 readonly isNonFungible: boolean;500 readonly asNonFungible: XcmV1MultiassetAssetInstance;501 readonly type: 'Fungible' | 'NonFungible';502 }503504 /** @name XcmV1MultiassetAssetInstance (56) */505 interface XcmV1MultiassetAssetInstance extends Enum {506 readonly isUndefined: boolean;507 readonly isIndex: boolean;508 readonly asIndex: Compact<u128>;509 readonly isArray4: boolean;510 readonly asArray4: U8aFixed;511 readonly isArray8: boolean;512 readonly asArray8: U8aFixed;513 readonly isArray16: boolean;514 readonly asArray16: U8aFixed;515 readonly isArray32: boolean;516 readonly asArray32: U8aFixed;517 readonly isBlob: boolean;518 readonly asBlob: Bytes;519 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';520 }521522 /** @name OrmlTokensModuleEvent (59) */523 interface OrmlTokensModuleEvent extends Enum {524 readonly isEndowed: boolean;525 readonly asEndowed: {526 readonly currencyId: PalletForeignAssetsAssetIds;527 readonly who: AccountId32;528 readonly amount: u128;529 } & Struct;530 readonly isDustLost: boolean;531 readonly asDustLost: {532 readonly currencyId: PalletForeignAssetsAssetIds;533 readonly who: AccountId32;534 readonly amount: u128;535 } & Struct;536 readonly isTransfer: boolean;537 readonly asTransfer: {538 readonly currencyId: PalletForeignAssetsAssetIds;539 readonly from: AccountId32;540 readonly to: AccountId32;541 readonly amount: u128;542 } & Struct;543 readonly isReserved: boolean;544 readonly asReserved: {545 readonly currencyId: PalletForeignAssetsAssetIds;546 readonly who: AccountId32;547 readonly amount: u128;548 } & Struct;549 readonly isUnreserved: boolean;550 readonly asUnreserved: {551 readonly currencyId: PalletForeignAssetsAssetIds;552 readonly who: AccountId32;553 readonly amount: u128;554 } & Struct;555 readonly isReserveRepatriated: boolean;556 readonly asReserveRepatriated: {557 readonly currencyId: PalletForeignAssetsAssetIds;558 readonly from: AccountId32;559 readonly to: AccountId32;560 readonly amount: u128;561 readonly status: FrameSupportTokensMiscBalanceStatus;562 } & Struct;563 readonly isBalanceSet: boolean;564 readonly asBalanceSet: {565 readonly currencyId: PalletForeignAssetsAssetIds;566 readonly who: AccountId32;567 readonly free: u128;568 readonly reserved: u128;569 } & Struct;570 readonly isTotalIssuanceSet: boolean;571 readonly asTotalIssuanceSet: {572 readonly currencyId: PalletForeignAssetsAssetIds;573 readonly amount: u128;574 } & Struct;575 readonly isWithdrawn: boolean;576 readonly asWithdrawn: {577 readonly currencyId: PalletForeignAssetsAssetIds;578 readonly who: AccountId32;579 readonly amount: u128;580 } & Struct;581 readonly isSlashed: boolean;582 readonly asSlashed: {583 readonly currencyId: PalletForeignAssetsAssetIds;584 readonly who: AccountId32;585 readonly freeAmount: u128;586 readonly reservedAmount: u128;587 } & Struct;588 readonly isDeposited: boolean;589 readonly asDeposited: {590 readonly currencyId: PalletForeignAssetsAssetIds;591 readonly who: AccountId32;592 readonly amount: u128;593 } & Struct;594 readonly isLockSet: boolean;595 readonly asLockSet: {596 readonly lockId: U8aFixed;597 readonly currencyId: PalletForeignAssetsAssetIds;598 readonly who: AccountId32;599 readonly amount: u128;600 } & Struct;601 readonly isLockRemoved: boolean;602 readonly asLockRemoved: {603 readonly lockId: U8aFixed;604 readonly currencyId: PalletForeignAssetsAssetIds;605 readonly who: AccountId32;606 } & Struct;607 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';608 }609610 /** @name PalletForeignAssetsAssetIds (60) */611 interface PalletForeignAssetsAssetIds extends Enum {612 readonly isForeignAssetId: boolean;613 readonly asForeignAssetId: u32;614 readonly isNativeAssetId: boolean;615 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;616 readonly type: 'ForeignAssetId' | 'NativeAssetId';617 }618619 /** @name PalletForeignAssetsNativeCurrency (61) */620 interface PalletForeignAssetsNativeCurrency extends Enum {621 readonly isHere: boolean;622 readonly isParent: boolean;623 readonly type: 'Here' | 'Parent';624 }625626 /** @name CumulusPalletXcmpQueueEvent (62) */627 interface CumulusPalletXcmpQueueEvent extends Enum {628 readonly isSuccess: boolean;629 readonly asSuccess: {630 readonly messageHash: Option<H256>;631 readonly weight: Weight;632 } & Struct;633 readonly isFail: boolean;634 readonly asFail: {635 readonly messageHash: Option<H256>;636 readonly error: XcmV2TraitsError;637 readonly weight: Weight;638 } & Struct;639 readonly isBadVersion: boolean;640 readonly asBadVersion: {641 readonly messageHash: Option<H256>;642 } & Struct;643 readonly isBadFormat: boolean;644 readonly asBadFormat: {645 readonly messageHash: Option<H256>;646 } & Struct;647 readonly isUpwardMessageSent: boolean;648 readonly asUpwardMessageSent: {649 readonly messageHash: Option<H256>;650 } & Struct;651 readonly isXcmpMessageSent: boolean;652 readonly asXcmpMessageSent: {653 readonly messageHash: Option<H256>;654 } & Struct;655 readonly isOverweightEnqueued: boolean;656 readonly asOverweightEnqueued: {657 readonly sender: u32;658 readonly sentAt: u32;659 readonly index: u64;660 readonly required: Weight;661 } & Struct;662 readonly isOverweightServiced: boolean;663 readonly asOverweightServiced: {664 readonly index: u64;665 readonly used: Weight;666 } & Struct;667 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';668 }669670 /** @name XcmV2TraitsError (64) */671 interface XcmV2TraitsError extends Enum {672 readonly isOverflow: boolean;673 readonly isUnimplemented: boolean;674 readonly isUntrustedReserveLocation: boolean;675 readonly isUntrustedTeleportLocation: boolean;676 readonly isMultiLocationFull: boolean;677 readonly isMultiLocationNotInvertible: boolean;678 readonly isBadOrigin: boolean;679 readonly isInvalidLocation: boolean;680 readonly isAssetNotFound: boolean;681 readonly isFailedToTransactAsset: boolean;682 readonly isNotWithdrawable: boolean;683 readonly isLocationCannotHold: boolean;684 readonly isExceedsMaxMessageSize: boolean;685 readonly isDestinationUnsupported: boolean;686 readonly isTransport: boolean;687 readonly isUnroutable: boolean;688 readonly isUnknownClaim: boolean;689 readonly isFailedToDecode: boolean;690 readonly isMaxWeightInvalid: boolean;691 readonly isNotHoldingFees: boolean;692 readonly isTooExpensive: boolean;693 readonly isTrap: boolean;694 readonly asTrap: u64;695 readonly isUnhandledXcmVersion: boolean;696 readonly isWeightLimitReached: boolean;697 readonly asWeightLimitReached: u64;698 readonly isBarrier: boolean;699 readonly isWeightNotComputable: boolean;700 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';701 }702703 /** @name PalletXcmEvent (66) */704 interface PalletXcmEvent extends Enum {705 readonly isAttempted: boolean;706 readonly asAttempted: XcmV2TraitsOutcome;707 readonly isSent: boolean;708 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;709 readonly isUnexpectedResponse: boolean;710 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;711 readonly isResponseReady: boolean;712 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;713 readonly isNotified: boolean;714 readonly asNotified: ITuple<[u64, u8, u8]>;715 readonly isNotifyOverweight: boolean;716 readonly asNotifyOverweight: ITuple<[u64, u8, u8, Weight, Weight]>;717 readonly isNotifyDispatchError: boolean;718 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;719 readonly isNotifyDecodeFailed: boolean;720 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;721 readonly isInvalidResponder: boolean;722 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;723 readonly isInvalidResponderVersion: boolean;724 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;725 readonly isResponseTaken: boolean;726 readonly asResponseTaken: u64;727 readonly isAssetsTrapped: boolean;728 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;729 readonly isVersionChangeNotified: boolean;730 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;731 readonly isSupportedVersionChanged: boolean;732 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;733 readonly isNotifyTargetSendFail: boolean;734 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;735 readonly isNotifyTargetMigrationFail: boolean;736 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;737 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';738 }739740 /** @name XcmV2TraitsOutcome (67) */741 interface XcmV2TraitsOutcome extends Enum {742 readonly isComplete: boolean;743 readonly asComplete: u64;744 readonly isIncomplete: boolean;745 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;746 readonly isError: boolean;747 readonly asError: XcmV2TraitsError;748 readonly type: 'Complete' | 'Incomplete' | 'Error';749 }750751 /** @name XcmV2Xcm (68) */752 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}753754 /** @name XcmV2Instruction (70) */755 interface XcmV2Instruction extends Enum {756 readonly isWithdrawAsset: boolean;757 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;758 readonly isReserveAssetDeposited: boolean;759 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;760 readonly isReceiveTeleportedAsset: boolean;761 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;762 readonly isQueryResponse: boolean;763 readonly asQueryResponse: {764 readonly queryId: Compact<u64>;765 readonly response: XcmV2Response;766 readonly maxWeight: Compact<u64>;767 } & Struct;768 readonly isTransferAsset: boolean;769 readonly asTransferAsset: {770 readonly assets: XcmV1MultiassetMultiAssets;771 readonly beneficiary: XcmV1MultiLocation;772 } & Struct;773 readonly isTransferReserveAsset: boolean;774 readonly asTransferReserveAsset: {775 readonly assets: XcmV1MultiassetMultiAssets;776 readonly dest: XcmV1MultiLocation;777 readonly xcm: XcmV2Xcm;778 } & Struct;779 readonly isTransact: boolean;780 readonly asTransact: {781 readonly originType: XcmV0OriginKind;782 readonly requireWeightAtMost: Compact<u64>;783 readonly call: XcmDoubleEncoded;784 } & Struct;785 readonly isHrmpNewChannelOpenRequest: boolean;786 readonly asHrmpNewChannelOpenRequest: {787 readonly sender: Compact<u32>;788 readonly maxMessageSize: Compact<u32>;789 readonly maxCapacity: Compact<u32>;790 } & Struct;791 readonly isHrmpChannelAccepted: boolean;792 readonly asHrmpChannelAccepted: {793 readonly recipient: Compact<u32>;794 } & Struct;795 readonly isHrmpChannelClosing: boolean;796 readonly asHrmpChannelClosing: {797 readonly initiator: Compact<u32>;798 readonly sender: Compact<u32>;799 readonly recipient: Compact<u32>;800 } & Struct;801 readonly isClearOrigin: boolean;802 readonly isDescendOrigin: boolean;803 readonly asDescendOrigin: XcmV1MultilocationJunctions;804 readonly isReportError: boolean;805 readonly asReportError: {806 readonly queryId: Compact<u64>;807 readonly dest: XcmV1MultiLocation;808 readonly maxResponseWeight: Compact<u64>;809 } & Struct;810 readonly isDepositAsset: boolean;811 readonly asDepositAsset: {812 readonly assets: XcmV1MultiassetMultiAssetFilter;813 readonly maxAssets: Compact<u32>;814 readonly beneficiary: XcmV1MultiLocation;815 } & Struct;816 readonly isDepositReserveAsset: boolean;817 readonly asDepositReserveAsset: {818 readonly assets: XcmV1MultiassetMultiAssetFilter;819 readonly maxAssets: Compact<u32>;820 readonly dest: XcmV1MultiLocation;821 readonly xcm: XcmV2Xcm;822 } & Struct;823 readonly isExchangeAsset: boolean;824 readonly asExchangeAsset: {825 readonly give: XcmV1MultiassetMultiAssetFilter;826 readonly receive: XcmV1MultiassetMultiAssets;827 } & Struct;828 readonly isInitiateReserveWithdraw: boolean;829 readonly asInitiateReserveWithdraw: {830 readonly assets: XcmV1MultiassetMultiAssetFilter;831 readonly reserve: XcmV1MultiLocation;832 readonly xcm: XcmV2Xcm;833 } & Struct;834 readonly isInitiateTeleport: boolean;835 readonly asInitiateTeleport: {836 readonly assets: XcmV1MultiassetMultiAssetFilter;837 readonly dest: XcmV1MultiLocation;838 readonly xcm: XcmV2Xcm;839 } & Struct;840 readonly isQueryHolding: boolean;841 readonly asQueryHolding: {842 readonly queryId: Compact<u64>;843 readonly dest: XcmV1MultiLocation;844 readonly assets: XcmV1MultiassetMultiAssetFilter;845 readonly maxResponseWeight: Compact<u64>;846 } & Struct;847 readonly isBuyExecution: boolean;848 readonly asBuyExecution: {849 readonly fees: XcmV1MultiAsset;850 readonly weightLimit: XcmV2WeightLimit;851 } & Struct;852 readonly isRefundSurplus: boolean;853 readonly isSetErrorHandler: boolean;854 readonly asSetErrorHandler: XcmV2Xcm;855 readonly isSetAppendix: boolean;856 readonly asSetAppendix: XcmV2Xcm;857 readonly isClearError: boolean;858 readonly isClaimAsset: boolean;859 readonly asClaimAsset: {860 readonly assets: XcmV1MultiassetMultiAssets;861 readonly ticket: XcmV1MultiLocation;862 } & Struct;863 readonly isTrap: boolean;864 readonly asTrap: Compact<u64>;865 readonly isSubscribeVersion: boolean;866 readonly asSubscribeVersion: {867 readonly queryId: Compact<u64>;868 readonly maxResponseWeight: Compact<u64>;869 } & Struct;870 readonly isUnsubscribeVersion: boolean;871 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';872 }873874 /** @name XcmV2Response (71) */875 interface XcmV2Response extends Enum {876 readonly isNull: boolean;877 readonly isAssets: boolean;878 readonly asAssets: XcmV1MultiassetMultiAssets;879 readonly isExecutionResult: boolean;880 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;881 readonly isVersion: boolean;882 readonly asVersion: u32;883 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';884 }885886 /** @name XcmV0OriginKind (74) */887 interface XcmV0OriginKind extends Enum {888 readonly isNative: boolean;889 readonly isSovereignAccount: boolean;890 readonly isSuperuser: boolean;891 readonly isXcm: boolean;892 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';893 }894895 /** @name XcmDoubleEncoded (75) */896 interface XcmDoubleEncoded extends Struct {897 readonly encoded: Bytes;898 }899900 /** @name XcmV1MultiassetMultiAssetFilter (76) */901 interface XcmV1MultiassetMultiAssetFilter extends Enum {902 readonly isDefinite: boolean;903 readonly asDefinite: XcmV1MultiassetMultiAssets;904 readonly isWild: boolean;905 readonly asWild: XcmV1MultiassetWildMultiAsset;906 readonly type: 'Definite' | 'Wild';907 }908909 /** @name XcmV1MultiassetWildMultiAsset (77) */910 interface XcmV1MultiassetWildMultiAsset extends Enum {911 readonly isAll: boolean;912 readonly isAllOf: boolean;913 readonly asAllOf: {914 readonly id: XcmV1MultiassetAssetId;915 readonly fun: XcmV1MultiassetWildFungibility;916 } & Struct;917 readonly type: 'All' | 'AllOf';918 }919920 /** @name XcmV1MultiassetWildFungibility (78) */921 interface XcmV1MultiassetWildFungibility extends Enum {922 readonly isFungible: boolean;923 readonly isNonFungible: boolean;924 readonly type: 'Fungible' | 'NonFungible';925 }926927 /** @name XcmV2WeightLimit (79) */928 interface XcmV2WeightLimit extends Enum {929 readonly isUnlimited: boolean;930 readonly isLimited: boolean;931 readonly asLimited: Compact<u64>;932 readonly type: 'Unlimited' | 'Limited';933 }934935 /** @name XcmVersionedMultiAssets (81) */936 interface XcmVersionedMultiAssets extends Enum {937 readonly isV0: boolean;938 readonly asV0: Vec<XcmV0MultiAsset>;939 readonly isV1: boolean;940 readonly asV1: XcmV1MultiassetMultiAssets;941 readonly type: 'V0' | 'V1';942 }943944 /** @name XcmV0MultiAsset (83) */945 interface XcmV0MultiAsset extends Enum {946 readonly isNone: boolean;947 readonly isAll: boolean;948 readonly isAllFungible: boolean;949 readonly isAllNonFungible: boolean;950 readonly isAllAbstractFungible: boolean;951 readonly asAllAbstractFungible: {952 readonly id: Bytes;953 } & Struct;954 readonly isAllAbstractNonFungible: boolean;955 readonly asAllAbstractNonFungible: {956 readonly class: Bytes;957 } & Struct;958 readonly isAllConcreteFungible: boolean;959 readonly asAllConcreteFungible: {960 readonly id: XcmV0MultiLocation;961 } & Struct;962 readonly isAllConcreteNonFungible: boolean;963 readonly asAllConcreteNonFungible: {964 readonly class: XcmV0MultiLocation;965 } & Struct;966 readonly isAbstractFungible: boolean;967 readonly asAbstractFungible: {968 readonly id: Bytes;969 readonly amount: Compact<u128>;970 } & Struct;971 readonly isAbstractNonFungible: boolean;972 readonly asAbstractNonFungible: {973 readonly class: Bytes;974 readonly instance: XcmV1MultiassetAssetInstance;975 } & Struct;976 readonly isConcreteFungible: boolean;977 readonly asConcreteFungible: {978 readonly id: XcmV0MultiLocation;979 readonly amount: Compact<u128>;980 } & Struct;981 readonly isConcreteNonFungible: boolean;982 readonly asConcreteNonFungible: {983 readonly class: XcmV0MultiLocation;984 readonly instance: XcmV1MultiassetAssetInstance;985 } & Struct;986 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';987 }988989 /** @name XcmV0MultiLocation (84) */990 interface XcmV0MultiLocation extends Enum {991 readonly isNull: boolean;992 readonly isX1: boolean;993 readonly asX1: XcmV0Junction;994 readonly isX2: boolean;995 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;996 readonly isX3: boolean;997 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;998 readonly isX4: boolean;999 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1000 readonly isX5: boolean;1001 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1002 readonly isX6: boolean;1003 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1004 readonly isX7: boolean;1005 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1006 readonly isX8: boolean;1007 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1008 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1009 }10101011 /** @name XcmV0Junction (85) */1012 interface XcmV0Junction extends Enum {1013 readonly isParent: boolean;1014 readonly isParachain: boolean;1015 readonly asParachain: Compact<u32>;1016 readonly isAccountId32: boolean;1017 readonly asAccountId32: {1018 readonly network: XcmV0JunctionNetworkId;1019 readonly id: U8aFixed;1020 } & Struct;1021 readonly isAccountIndex64: boolean;1022 readonly asAccountIndex64: {1023 readonly network: XcmV0JunctionNetworkId;1024 readonly index: Compact<u64>;1025 } & Struct;1026 readonly isAccountKey20: boolean;1027 readonly asAccountKey20: {1028 readonly network: XcmV0JunctionNetworkId;1029 readonly key: U8aFixed;1030 } & Struct;1031 readonly isPalletInstance: boolean;1032 readonly asPalletInstance: u8;1033 readonly isGeneralIndex: boolean;1034 readonly asGeneralIndex: Compact<u128>;1035 readonly isGeneralKey: boolean;1036 readonly asGeneralKey: Bytes;1037 readonly isOnlyChild: boolean;1038 readonly isPlurality: boolean;1039 readonly asPlurality: {1040 readonly id: XcmV0JunctionBodyId;1041 readonly part: XcmV0JunctionBodyPart;1042 } & Struct;1043 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1044 }10451046 /** @name XcmVersionedMultiLocation (86) */1047 interface XcmVersionedMultiLocation extends Enum {1048 readonly isV0: boolean;1049 readonly asV0: XcmV0MultiLocation;1050 readonly isV1: boolean;1051 readonly asV1: XcmV1MultiLocation;1052 readonly type: 'V0' | 'V1';1053 }10541055 /** @name CumulusPalletXcmEvent (87) */1056 interface CumulusPalletXcmEvent extends Enum {1057 readonly isInvalidFormat: boolean;1058 readonly asInvalidFormat: U8aFixed;1059 readonly isUnsupportedVersion: boolean;1060 readonly asUnsupportedVersion: U8aFixed;1061 readonly isExecutedDownward: boolean;1062 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;1063 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1064 }10651066 /** @name CumulusPalletDmpQueueEvent (88) */1067 interface CumulusPalletDmpQueueEvent extends Enum {1068 readonly isInvalidFormat: boolean;1069 readonly asInvalidFormat: {1070 readonly messageId: U8aFixed;1071 } & Struct;1072 readonly isUnsupportedVersion: boolean;1073 readonly asUnsupportedVersion: {1074 readonly messageId: U8aFixed;1075 } & Struct;1076 readonly isExecutedDownward: boolean;1077 readonly asExecutedDownward: {1078 readonly messageId: U8aFixed;1079 readonly outcome: XcmV2TraitsOutcome;1080 } & Struct;1081 readonly isWeightExhausted: boolean;1082 readonly asWeightExhausted: {1083 readonly messageId: U8aFixed;1084 readonly remainingWeight: Weight;1085 readonly requiredWeight: Weight;1086 } & Struct;1087 readonly isOverweightEnqueued: boolean;1088 readonly asOverweightEnqueued: {1089 readonly messageId: U8aFixed;1090 readonly overweightIndex: u64;1091 readonly requiredWeight: Weight;1092 } & Struct;1093 readonly isOverweightServiced: boolean;1094 readonly asOverweightServiced: {1095 readonly overweightIndex: u64;1096 readonly weightUsed: Weight;1097 } & Struct;1098 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1099 }11001101 /** @name PalletUniqueRawEvent (89) */1102 interface PalletUniqueRawEvent extends Enum {1103 readonly isCollectionSponsorRemoved: boolean;1104 readonly asCollectionSponsorRemoved: u32;1105 readonly isCollectionAdminAdded: boolean;1106 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1107 readonly isCollectionOwnedChanged: boolean;1108 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;1109 readonly isCollectionSponsorSet: boolean;1110 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1111 readonly isSponsorshipConfirmed: boolean;1112 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1113 readonly isCollectionAdminRemoved: boolean;1114 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1115 readonly isAllowListAddressRemoved: boolean;1116 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1117 readonly isAllowListAddressAdded: boolean;1118 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1119 readonly isCollectionLimitSet: boolean;1120 readonly asCollectionLimitSet: u32;1121 readonly isCollectionPermissionSet: boolean;1122 readonly asCollectionPermissionSet: u32;1123 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';1124 }11251126 /** @name PalletEvmAccountBasicCrossAccountIdRepr (90) */1127 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1128 readonly isSubstrate: boolean;1129 readonly asSubstrate: AccountId32;1130 readonly isEthereum: boolean;1131 readonly asEthereum: H160;1132 readonly type: 'Substrate' | 'Ethereum';1133 }11341135 /** @name PalletUniqueSchedulerEvent (93) */1136 interface PalletUniqueSchedulerEvent extends Enum {1137 readonly isScheduled: boolean;1138 readonly asScheduled: {1139 readonly when: u32;1140 readonly index: u32;1141 } & Struct;1142 readonly isCanceled: boolean;1143 readonly asCanceled: {1144 readonly when: u32;1145 readonly index: u32;1146 } & Struct;1147 readonly isPriorityChanged: boolean;1148 readonly asPriorityChanged: {1149 readonly when: u32;1150 readonly index: u32;1151 readonly priority: u8;1152 } & Struct;1153 readonly isDispatched: boolean;1154 readonly asDispatched: {1155 readonly task: ITuple<[u32, u32]>;1156 readonly id: Option<U8aFixed>;1157 readonly result: Result<Null, SpRuntimeDispatchError>;1158 } & Struct;1159 readonly isCallLookupFailed: boolean;1160 readonly asCallLookupFailed: {1161 readonly task: ITuple<[u32, u32]>;1162 readonly id: Option<U8aFixed>;1163 readonly error: FrameSupportScheduleLookupError;1164 } & Struct;1165 readonly type: 'Scheduled' | 'Canceled' | 'PriorityChanged' | 'Dispatched' | 'CallLookupFailed';1166 }11671168 /** @name FrameSupportScheduleLookupError (96) */1169 interface FrameSupportScheduleLookupError extends Enum {1170 readonly isUnknown: boolean;1171 readonly isBadFormat: boolean;1172 readonly type: 'Unknown' | 'BadFormat';1173 }11741175 /** @name PalletCommonEvent (97) */1176 interface PalletCommonEvent extends Enum {1177 readonly isCollectionCreated: boolean;1178 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1179 readonly isCollectionDestroyed: boolean;1180 readonly asCollectionDestroyed: u32;1181 readonly isItemCreated: boolean;1182 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1183 readonly isItemDestroyed: boolean;1184 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1185 readonly isTransfer: boolean;1186 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1187 readonly isApproved: boolean;1188 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1189 readonly isCollectionPropertySet: boolean;1190 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1191 readonly isCollectionPropertyDeleted: boolean;1192 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1193 readonly isTokenPropertySet: boolean;1194 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1195 readonly isTokenPropertyDeleted: boolean;1196 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1197 readonly isPropertyPermissionSet: boolean;1198 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1199 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';1200 }12011202 /** @name PalletStructureEvent (100) */1203 interface PalletStructureEvent extends Enum {1204 readonly isExecuted: boolean;1205 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1206 readonly type: 'Executed';1207 }12081209 /** @name PalletRmrkCoreEvent (101) */1210 interface PalletRmrkCoreEvent extends Enum {1211 readonly isCollectionCreated: boolean;1212 readonly asCollectionCreated: {1213 readonly issuer: AccountId32;1214 readonly collectionId: u32;1215 } & Struct;1216 readonly isCollectionDestroyed: boolean;1217 readonly asCollectionDestroyed: {1218 readonly issuer: AccountId32;1219 readonly collectionId: u32;1220 } & Struct;1221 readonly isIssuerChanged: boolean;1222 readonly asIssuerChanged: {1223 readonly oldIssuer: AccountId32;1224 readonly newIssuer: AccountId32;1225 readonly collectionId: u32;1226 } & Struct;1227 readonly isCollectionLocked: boolean;1228 readonly asCollectionLocked: {1229 readonly issuer: AccountId32;1230 readonly collectionId: u32;1231 } & Struct;1232 readonly isNftMinted: boolean;1233 readonly asNftMinted: {1234 readonly owner: AccountId32;1235 readonly collectionId: u32;1236 readonly nftId: u32;1237 } & Struct;1238 readonly isNftBurned: boolean;1239 readonly asNftBurned: {1240 readonly owner: AccountId32;1241 readonly nftId: u32;1242 } & Struct;1243 readonly isNftSent: boolean;1244 readonly asNftSent: {1245 readonly sender: AccountId32;1246 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1247 readonly collectionId: u32;1248 readonly nftId: u32;1249 readonly approvalRequired: bool;1250 } & Struct;1251 readonly isNftAccepted: boolean;1252 readonly asNftAccepted: {1253 readonly sender: AccountId32;1254 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1255 readonly collectionId: u32;1256 readonly nftId: u32;1257 } & Struct;1258 readonly isNftRejected: boolean;1259 readonly asNftRejected: {1260 readonly sender: AccountId32;1261 readonly collectionId: u32;1262 readonly nftId: u32;1263 } & Struct;1264 readonly isPropertySet: boolean;1265 readonly asPropertySet: {1266 readonly collectionId: u32;1267 readonly maybeNftId: Option<u32>;1268 readonly key: Bytes;1269 readonly value: Bytes;1270 } & Struct;1271 readonly isResourceAdded: boolean;1272 readonly asResourceAdded: {1273 readonly nftId: u32;1274 readonly resourceId: u32;1275 } & Struct;1276 readonly isResourceRemoval: boolean;1277 readonly asResourceRemoval: {1278 readonly nftId: u32;1279 readonly resourceId: u32;1280 } & Struct;1281 readonly isResourceAccepted: boolean;1282 readonly asResourceAccepted: {1283 readonly nftId: u32;1284 readonly resourceId: u32;1285 } & Struct;1286 readonly isResourceRemovalAccepted: boolean;1287 readonly asResourceRemovalAccepted: {1288 readonly nftId: u32;1289 readonly resourceId: u32;1290 } & Struct;1291 readonly isPrioritySet: boolean;1292 readonly asPrioritySet: {1293 readonly collectionId: u32;1294 readonly nftId: u32;1295 } & Struct;1296 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1297 }12981299 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (102) */1300 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1301 readonly isAccountId: boolean;1302 readonly asAccountId: AccountId32;1303 readonly isCollectionAndNftTuple: boolean;1304 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;1305 readonly type: 'AccountId' | 'CollectionAndNftTuple';1306 }13071308 /** @name PalletRmrkEquipEvent (107) */1309 interface PalletRmrkEquipEvent extends Enum {1310 readonly isBaseCreated: boolean;1311 readonly asBaseCreated: {1312 readonly issuer: AccountId32;1313 readonly baseId: u32;1314 } & Struct;1315 readonly isEquippablesUpdated: boolean;1316 readonly asEquippablesUpdated: {1317 readonly baseId: u32;1318 readonly slotId: u32;1319 } & Struct;1320 readonly type: 'BaseCreated' | 'EquippablesUpdated';1321 }13221323 /** @name PalletAppPromotionEvent (108) */1324 interface PalletAppPromotionEvent extends Enum {1325 readonly isStakingRecalculation: boolean;1326 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1327 readonly isStake: boolean;1328 readonly asStake: ITuple<[AccountId32, u128]>;1329 readonly isUnstake: boolean;1330 readonly asUnstake: ITuple<[AccountId32, u128]>;1331 readonly isSetAdmin: boolean;1332 readonly asSetAdmin: AccountId32;1333 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1334 }13351336 /** @name PalletForeignAssetsModuleEvent (109) */1337 interface PalletForeignAssetsModuleEvent extends Enum {1338 readonly isForeignAssetRegistered: boolean;1339 readonly asForeignAssetRegistered: {1340 readonly assetId: u32;1341 readonly assetAddress: XcmV1MultiLocation;1342 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1343 } & Struct;1344 readonly isForeignAssetUpdated: boolean;1345 readonly asForeignAssetUpdated: {1346 readonly assetId: u32;1347 readonly assetAddress: XcmV1MultiLocation;1348 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1349 } & Struct;1350 readonly isAssetRegistered: boolean;1351 readonly asAssetRegistered: {1352 readonly assetId: PalletForeignAssetsAssetIds;1353 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1354 } & Struct;1355 readonly isAssetUpdated: boolean;1356 readonly asAssetUpdated: {1357 readonly assetId: PalletForeignAssetsAssetIds;1358 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1359 } & Struct;1360 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1361 }13621363 /** @name PalletForeignAssetsModuleAssetMetadata (110) */1364 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1365 readonly name: Bytes;1366 readonly symbol: Bytes;1367 readonly decimals: u8;1368 readonly minimalBalance: u128;1369 }13701371 /** @name PalletEvmEvent (111) */1372 interface PalletEvmEvent extends Enum {1373 readonly isLog: boolean;1374 readonly asLog: {1375 readonly log: EthereumLog;1376 } & Struct;1377 readonly isCreated: boolean;1378 readonly asCreated: {1379 readonly address: H160;1380 } & Struct;1381 readonly isCreatedFailed: boolean;1382 readonly asCreatedFailed: {1383 readonly address: H160;1384 } & Struct;1385 readonly isExecuted: boolean;1386 readonly asExecuted: {1387 readonly address: H160;1388 } & Struct;1389 readonly isExecutedFailed: boolean;1390 readonly asExecutedFailed: {1391 readonly address: H160;1392 } & Struct;1393 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1394 }13951396 /** @name EthereumLog (112) */1397 interface EthereumLog extends Struct {1398 readonly address: H160;1399 readonly topics: Vec<H256>;1400 readonly data: Bytes;1401 }14021403 /** @name PalletEthereumEvent (114) */1404 interface PalletEthereumEvent extends Enum {1405 readonly isExecuted: boolean;1406 readonly asExecuted: {1407 readonly from: H160;1408 readonly to: H160;1409 readonly transactionHash: H256;1410 readonly exitReason: EvmCoreErrorExitReason;1411 } & Struct;1412 readonly type: 'Executed';1413 }14141415 /** @name EvmCoreErrorExitReason (115) */1416 interface EvmCoreErrorExitReason extends Enum {1417 readonly isSucceed: boolean;1418 readonly asSucceed: EvmCoreErrorExitSucceed;1419 readonly isError: boolean;1420 readonly asError: EvmCoreErrorExitError;1421 readonly isRevert: boolean;1422 readonly asRevert: EvmCoreErrorExitRevert;1423 readonly isFatal: boolean;1424 readonly asFatal: EvmCoreErrorExitFatal;1425 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1426 }14271428 /** @name EvmCoreErrorExitSucceed (116) */1429 interface EvmCoreErrorExitSucceed extends Enum {1430 readonly isStopped: boolean;1431 readonly isReturned: boolean;1432 readonly isSuicided: boolean;1433 readonly type: 'Stopped' | 'Returned' | 'Suicided';1434 }14351436 /** @name EvmCoreErrorExitError (117) */1437 interface EvmCoreErrorExitError extends Enum {1438 readonly isStackUnderflow: boolean;1439 readonly isStackOverflow: boolean;1440 readonly isInvalidJump: boolean;1441 readonly isInvalidRange: boolean;1442 readonly isDesignatedInvalid: boolean;1443 readonly isCallTooDeep: boolean;1444 readonly isCreateCollision: boolean;1445 readonly isCreateContractLimit: boolean;1446 readonly isOutOfOffset: boolean;1447 readonly isOutOfGas: boolean;1448 readonly isOutOfFund: boolean;1449 readonly isPcUnderflow: boolean;1450 readonly isCreateEmpty: boolean;1451 readonly isOther: boolean;1452 readonly asOther: Text;1453 readonly isInvalidCode: boolean;1454 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1455 }14561457 /** @name EvmCoreErrorExitRevert (120) */1458 interface EvmCoreErrorExitRevert extends Enum {1459 readonly isReverted: boolean;1460 readonly type: 'Reverted';1461 }14621463 /** @name EvmCoreErrorExitFatal (121) */1464 interface EvmCoreErrorExitFatal extends Enum {1465 readonly isNotSupported: boolean;1466 readonly isUnhandledInterrupt: boolean;1467 readonly isCallErrorAsFatal: boolean;1468 readonly asCallErrorAsFatal: EvmCoreErrorExitError;1469 readonly isOther: boolean;1470 readonly asOther: Text;1471 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1472 }14731474 /** @name PalletEvmContractHelpersEvent (122) */1475 interface PalletEvmContractHelpersEvent extends Enum {1476 readonly isContractSponsorSet: boolean;1477 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1478 readonly isContractSponsorshipConfirmed: boolean;1479 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1480 readonly isContractSponsorRemoved: boolean;1481 readonly asContractSponsorRemoved: H160;1482 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1483 }14841485 /** @name PalletMaintenanceEvent (123) */1486 interface PalletMaintenanceEvent extends Enum {1487 readonly isMaintenanceEnabled: boolean;1488 readonly isMaintenanceDisabled: boolean;1489 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1490 }14911492 /** @name PalletTestUtilsEvent (124) */1493 interface PalletTestUtilsEvent extends Enum {1494 readonly isValueIsSet: boolean;1495 readonly isShouldRollback: boolean;1496 readonly type: 'ValueIsSet' | 'ShouldRollback';1497 }14981499 /** @name FrameSystemPhase (125) */1500 interface FrameSystemPhase extends Enum {1501 readonly isApplyExtrinsic: boolean;1502 readonly asApplyExtrinsic: u32;1503 readonly isFinalization: boolean;1504 readonly isInitialization: boolean;1505 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1506 }15071508 /** @name FrameSystemLastRuntimeUpgradeInfo (127) */1509 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1510 readonly specVersion: Compact<u32>;1511 readonly specName: Text;1512 }15131514 /** @name FrameSystemCall (128) */1515 interface FrameSystemCall extends Enum {1516 readonly isFillBlock: boolean;1517 readonly asFillBlock: {1518 readonly ratio: Perbill;1519 } & Struct;1520 readonly isRemark: boolean;1521 readonly asRemark: {1522 readonly remark: Bytes;1523 } & Struct;1524 readonly isSetHeapPages: boolean;1525 readonly asSetHeapPages: {1526 readonly pages: u64;1527 } & Struct;1528 readonly isSetCode: boolean;1529 readonly asSetCode: {1530 readonly code: Bytes;1531 } & Struct;1532 readonly isSetCodeWithoutChecks: boolean;1533 readonly asSetCodeWithoutChecks: {1534 readonly code: Bytes;1535 } & Struct;1536 readonly isSetStorage: boolean;1537 readonly asSetStorage: {1538 readonly items: Vec<ITuple<[Bytes, Bytes]>>;1539 } & Struct;1540 readonly isKillStorage: boolean;1541 readonly asKillStorage: {1542 readonly keys_: Vec<Bytes>;1543 } & Struct;1544 readonly isKillPrefix: boolean;1545 readonly asKillPrefix: {1546 readonly prefix: Bytes;1547 readonly subkeys: u32;1548 } & Struct;1549 readonly isRemarkWithEvent: boolean;1550 readonly asRemarkWithEvent: {1551 readonly remark: Bytes;1552 } & Struct;1553 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1554 }15551556 /** @name FrameSystemLimitsBlockWeights (133) */1557 interface FrameSystemLimitsBlockWeights extends Struct {1558 readonly baseBlock: Weight;1559 readonly maxBlock: Weight;1560 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1561 }15621563 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (134) */1564 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1565 readonly normal: FrameSystemLimitsWeightsPerClass;1566 readonly operational: FrameSystemLimitsWeightsPerClass;1567 readonly mandatory: FrameSystemLimitsWeightsPerClass;1568 }15691570 /** @name FrameSystemLimitsWeightsPerClass (135) */1571 interface FrameSystemLimitsWeightsPerClass extends Struct {1572 readonly baseExtrinsic: Weight;1573 readonly maxExtrinsic: Option<Weight>;1574 readonly maxTotal: Option<Weight>;1575 readonly reserved: Option<Weight>;1576 }15771578 /** @name FrameSystemLimitsBlockLength (137) */1579 interface FrameSystemLimitsBlockLength extends Struct {1580 readonly max: FrameSupportDispatchPerDispatchClassU32;1581 }15821583 /** @name FrameSupportDispatchPerDispatchClassU32 (138) */1584 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1585 readonly normal: u32;1586 readonly operational: u32;1587 readonly mandatory: u32;1588 }15891590 /** @name SpWeightsRuntimeDbWeight (139) */1591 interface SpWeightsRuntimeDbWeight extends Struct {1592 readonly read: u64;1593 readonly write: u64;1594 }15951596 /** @name SpVersionRuntimeVersion (140) */1597 interface SpVersionRuntimeVersion extends Struct {1598 readonly specName: Text;1599 readonly implName: Text;1600 readonly authoringVersion: u32;1601 readonly specVersion: u32;1602 readonly implVersion: u32;1603 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1604 readonly transactionVersion: u32;1605 readonly stateVersion: u8;1606 }16071608 /** @name FrameSystemError (145) */1609 interface FrameSystemError extends Enum {1610 readonly isInvalidSpecName: boolean;1611 readonly isSpecVersionNeedsToIncrease: boolean;1612 readonly isFailedToExtractRuntimeVersion: boolean;1613 readonly isNonDefaultComposite: boolean;1614 readonly isNonZeroRefCount: boolean;1615 readonly isCallFiltered: boolean;1616 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1617 }16181619 /** @name PolkadotPrimitivesV2PersistedValidationData (146) */1620 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1621 readonly parentHead: Bytes;1622 readonly relayParentNumber: u32;1623 readonly relayParentStorageRoot: H256;1624 readonly maxPovSize: u32;1625 }16261627 /** @name PolkadotPrimitivesV2UpgradeRestriction (149) */1628 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1629 readonly isPresent: boolean;1630 readonly type: 'Present';1631 }16321633 /** @name SpTrieStorageProof (150) */1634 interface SpTrieStorageProof extends Struct {1635 readonly trieNodes: BTreeSet<Bytes>;1636 }16371638 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (152) */1639 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1640 readonly dmqMqcHead: H256;1641 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1642 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1643 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1644 }16451646 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (155) */1647 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1648 readonly maxCapacity: u32;1649 readonly maxTotalSize: u32;1650 readonly maxMessageSize: u32;1651 readonly msgCount: u32;1652 readonly totalSize: u32;1653 readonly mqcHead: Option<H256>;1654 }16551656 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (156) */1657 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1658 readonly maxCodeSize: u32;1659 readonly maxHeadDataSize: u32;1660 readonly maxUpwardQueueCount: u32;1661 readonly maxUpwardQueueSize: u32;1662 readonly maxUpwardMessageSize: u32;1663 readonly maxUpwardMessageNumPerCandidate: u32;1664 readonly hrmpMaxMessageNumPerCandidate: u32;1665 readonly validationUpgradeCooldown: u32;1666 readonly validationUpgradeDelay: u32;1667 }16681669 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (162) */1670 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1671 readonly recipient: u32;1672 readonly data: Bytes;1673 }16741675 /** @name CumulusPalletParachainSystemCall (163) */1676 interface CumulusPalletParachainSystemCall extends Enum {1677 readonly isSetValidationData: boolean;1678 readonly asSetValidationData: {1679 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;1680 } & Struct;1681 readonly isSudoSendUpwardMessage: boolean;1682 readonly asSudoSendUpwardMessage: {1683 readonly message: Bytes;1684 } & Struct;1685 readonly isAuthorizeUpgrade: boolean;1686 readonly asAuthorizeUpgrade: {1687 readonly codeHash: H256;1688 } & Struct;1689 readonly isEnactAuthorizedUpgrade: boolean;1690 readonly asEnactAuthorizedUpgrade: {1691 readonly code: Bytes;1692 } & Struct;1693 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1694 }16951696 /** @name CumulusPrimitivesParachainInherentParachainInherentData (164) */1697 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1698 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1699 readonly relayChainState: SpTrieStorageProof;1700 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1701 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1702 }17031704 /** @name PolkadotCorePrimitivesInboundDownwardMessage (166) */1705 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1706 readonly sentAt: u32;1707 readonly msg: Bytes;1708 }17091710 /** @name PolkadotCorePrimitivesInboundHrmpMessage (169) */1711 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1712 readonly sentAt: u32;1713 readonly data: Bytes;1714 }17151716 /** @name CumulusPalletParachainSystemError (172) */1717 interface CumulusPalletParachainSystemError extends Enum {1718 readonly isOverlappingUpgrades: boolean;1719 readonly isProhibitedByPolkadot: boolean;1720 readonly isTooBig: boolean;1721 readonly isValidationDataNotAvailable: boolean;1722 readonly isHostConfigurationNotAvailable: boolean;1723 readonly isNotScheduled: boolean;1724 readonly isNothingAuthorized: boolean;1725 readonly isUnauthorized: boolean;1726 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1727 }17281729 /** @name PalletBalancesBalanceLock (174) */1730 interface PalletBalancesBalanceLock extends Struct {1731 readonly id: U8aFixed;1732 readonly amount: u128;1733 readonly reasons: PalletBalancesReasons;1734 }17351736 /** @name PalletBalancesReasons (175) */1737 interface PalletBalancesReasons extends Enum {1738 readonly isFee: boolean;1739 readonly isMisc: boolean;1740 readonly isAll: boolean;1741 readonly type: 'Fee' | 'Misc' | 'All';1742 }17431744 /** @name PalletBalancesReserveData (178) */1745 interface PalletBalancesReserveData extends Struct {1746 readonly id: U8aFixed;1747 readonly amount: u128;1748 }17491750 /** @name PalletBalancesReleases (180) */1751 interface PalletBalancesReleases extends Enum {1752 readonly isV100: boolean;1753 readonly isV200: boolean;1754 readonly type: 'V100' | 'V200';1755 }17561757 /** @name PalletBalancesCall (181) */1758 interface PalletBalancesCall extends Enum {1759 readonly isTransfer: boolean;1760 readonly asTransfer: {1761 readonly dest: MultiAddress;1762 readonly value: Compact<u128>;1763 } & Struct;1764 readonly isSetBalance: boolean;1765 readonly asSetBalance: {1766 readonly who: MultiAddress;1767 readonly newFree: Compact<u128>;1768 readonly newReserved: Compact<u128>;1769 } & Struct;1770 readonly isForceTransfer: boolean;1771 readonly asForceTransfer: {1772 readonly source: MultiAddress;1773 readonly dest: MultiAddress;1774 readonly value: Compact<u128>;1775 } & Struct;1776 readonly isTransferKeepAlive: boolean;1777 readonly asTransferKeepAlive: {1778 readonly dest: MultiAddress;1779 readonly value: Compact<u128>;1780 } & Struct;1781 readonly isTransferAll: boolean;1782 readonly asTransferAll: {1783 readonly dest: MultiAddress;1784 readonly keepAlive: bool;1785 } & Struct;1786 readonly isForceUnreserve: boolean;1787 readonly asForceUnreserve: {1788 readonly who: MultiAddress;1789 readonly amount: u128;1790 } & Struct;1791 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1792 }17931794 /** @name PalletBalancesError (184) */1795 interface PalletBalancesError extends Enum {1796 readonly isVestingBalance: boolean;1797 readonly isLiquidityRestrictions: boolean;1798 readonly isInsufficientBalance: boolean;1799 readonly isExistentialDeposit: boolean;1800 readonly isKeepAlive: boolean;1801 readonly isExistingVestingSchedule: boolean;1802 readonly isDeadAccount: boolean;1803 readonly isTooManyReserves: boolean;1804 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1805 }18061807 /** @name PalletTimestampCall (186) */1808 interface PalletTimestampCall extends Enum {1809 readonly isSet: boolean;1810 readonly asSet: {1811 readonly now: Compact<u64>;1812 } & Struct;1813 readonly type: 'Set';1814 }18151816 /** @name PalletTransactionPaymentReleases (188) */1817 interface PalletTransactionPaymentReleases extends Enum {1818 readonly isV1Ancient: boolean;1819 readonly isV2: boolean;1820 readonly type: 'V1Ancient' | 'V2';1821 }18221823 /** @name PalletTreasuryProposal (189) */1824 interface PalletTreasuryProposal extends Struct {1825 readonly proposer: AccountId32;1826 readonly value: u128;1827 readonly beneficiary: AccountId32;1828 readonly bond: u128;1829 }18301831 /** @name PalletTreasuryCall (192) */1832 interface PalletTreasuryCall extends Enum {1833 readonly isProposeSpend: boolean;1834 readonly asProposeSpend: {1835 readonly value: Compact<u128>;1836 readonly beneficiary: MultiAddress;1837 } & Struct;1838 readonly isRejectProposal: boolean;1839 readonly asRejectProposal: {1840 readonly proposalId: Compact<u32>;1841 } & Struct;1842 readonly isApproveProposal: boolean;1843 readonly asApproveProposal: {1844 readonly proposalId: Compact<u32>;1845 } & Struct;1846 readonly isSpend: boolean;1847 readonly asSpend: {1848 readonly amount: Compact<u128>;1849 readonly beneficiary: MultiAddress;1850 } & Struct;1851 readonly isRemoveApproval: boolean;1852 readonly asRemoveApproval: {1853 readonly proposalId: Compact<u32>;1854 } & Struct;1855 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1856 }18571858 /** @name FrameSupportPalletId (195) */1859 interface FrameSupportPalletId extends U8aFixed {}18601861 /** @name PalletTreasuryError (196) */1862 interface PalletTreasuryError extends Enum {1863 readonly isInsufficientProposersBalance: boolean;1864 readonly isInvalidIndex: boolean;1865 readonly isTooManyApprovals: boolean;1866 readonly isInsufficientPermission: boolean;1867 readonly isProposalNotApproved: boolean;1868 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1869 }18701871 /** @name PalletSudoCall (197) */1872 interface PalletSudoCall extends Enum {1873 readonly isSudo: boolean;1874 readonly asSudo: {1875 readonly call: Call;1876 } & Struct;1877 readonly isSudoUncheckedWeight: boolean;1878 readonly asSudoUncheckedWeight: {1879 readonly call: Call;1880 readonly weight: Weight;1881 } & Struct;1882 readonly isSetKey: boolean;1883 readonly asSetKey: {1884 readonly new_: MultiAddress;1885 } & Struct;1886 readonly isSudoAs: boolean;1887 readonly asSudoAs: {1888 readonly who: MultiAddress;1889 readonly call: Call;1890 } & Struct;1891 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1892 }18931894 /** @name OrmlVestingModuleCall (199) */1895 interface OrmlVestingModuleCall extends Enum {1896 readonly isClaim: boolean;1897 readonly isVestedTransfer: boolean;1898 readonly asVestedTransfer: {1899 readonly dest: MultiAddress;1900 readonly schedule: OrmlVestingVestingSchedule;1901 } & Struct;1902 readonly isUpdateVestingSchedules: boolean;1903 readonly asUpdateVestingSchedules: {1904 readonly who: MultiAddress;1905 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;1906 } & Struct;1907 readonly isClaimFor: boolean;1908 readonly asClaimFor: {1909 readonly dest: MultiAddress;1910 } & Struct;1911 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1912 }19131914 /** @name OrmlXtokensModuleCall (201) */1915 interface OrmlXtokensModuleCall extends Enum {1916 readonly isTransfer: boolean;1917 readonly asTransfer: {1918 readonly currencyId: PalletForeignAssetsAssetIds;1919 readonly amount: u128;1920 readonly dest: XcmVersionedMultiLocation;1921 readonly destWeight: u64;1922 } & Struct;1923 readonly isTransferMultiasset: boolean;1924 readonly asTransferMultiasset: {1925 readonly asset: XcmVersionedMultiAsset;1926 readonly dest: XcmVersionedMultiLocation;1927 readonly destWeight: u64;1928 } & Struct;1929 readonly isTransferWithFee: boolean;1930 readonly asTransferWithFee: {1931 readonly currencyId: PalletForeignAssetsAssetIds;1932 readonly amount: u128;1933 readonly fee: u128;1934 readonly dest: XcmVersionedMultiLocation;1935 readonly destWeight: u64;1936 } & Struct;1937 readonly isTransferMultiassetWithFee: boolean;1938 readonly asTransferMultiassetWithFee: {1939 readonly asset: XcmVersionedMultiAsset;1940 readonly fee: XcmVersionedMultiAsset;1941 readonly dest: XcmVersionedMultiLocation;1942 readonly destWeight: u64;1943 } & Struct;1944 readonly isTransferMulticurrencies: boolean;1945 readonly asTransferMulticurrencies: {1946 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1947 readonly feeItem: u32;1948 readonly dest: XcmVersionedMultiLocation;1949 readonly destWeight: u64;1950 } & Struct;1951 readonly isTransferMultiassets: boolean;1952 readonly asTransferMultiassets: {1953 readonly assets: XcmVersionedMultiAssets;1954 readonly feeItem: u32;1955 readonly dest: XcmVersionedMultiLocation;1956 readonly destWeight: u64;1957 } & Struct;1958 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1959 }19601961 /** @name XcmVersionedMultiAsset (202) */1962 interface XcmVersionedMultiAsset extends Enum {1963 readonly isV0: boolean;1964 readonly asV0: XcmV0MultiAsset;1965 readonly isV1: boolean;1966 readonly asV1: XcmV1MultiAsset;1967 readonly type: 'V0' | 'V1';1968 }19691970 /** @name OrmlTokensModuleCall (205) */1971 interface OrmlTokensModuleCall extends Enum {1972 readonly isTransfer: boolean;1973 readonly asTransfer: {1974 readonly dest: MultiAddress;1975 readonly currencyId: PalletForeignAssetsAssetIds;1976 readonly amount: Compact<u128>;1977 } & Struct;1978 readonly isTransferAll: boolean;1979 readonly asTransferAll: {1980 readonly dest: MultiAddress;1981 readonly currencyId: PalletForeignAssetsAssetIds;1982 readonly keepAlive: bool;1983 } & Struct;1984 readonly isTransferKeepAlive: boolean;1985 readonly asTransferKeepAlive: {1986 readonly dest: MultiAddress;1987 readonly currencyId: PalletForeignAssetsAssetIds;1988 readonly amount: Compact<u128>;1989 } & Struct;1990 readonly isForceTransfer: boolean;1991 readonly asForceTransfer: {1992 readonly source: MultiAddress;1993 readonly dest: MultiAddress;1994 readonly currencyId: PalletForeignAssetsAssetIds;1995 readonly amount: Compact<u128>;1996 } & Struct;1997 readonly isSetBalance: boolean;1998 readonly asSetBalance: {1999 readonly who: MultiAddress;2000 readonly currencyId: PalletForeignAssetsAssetIds;2001 readonly newFree: Compact<u128>;2002 readonly newReserved: Compact<u128>;2003 } & Struct;2004 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';2005 }20062007 /** @name CumulusPalletXcmpQueueCall (206) */2008 interface CumulusPalletXcmpQueueCall extends Enum {2009 readonly isServiceOverweight: boolean;2010 readonly asServiceOverweight: {2011 readonly index: u64;2012 readonly weightLimit: Weight;2013 } & Struct;2014 readonly isSuspendXcmExecution: boolean;2015 readonly isResumeXcmExecution: boolean;2016 readonly isUpdateSuspendThreshold: boolean;2017 readonly asUpdateSuspendThreshold: {2018 readonly new_: u32;2019 } & Struct;2020 readonly isUpdateDropThreshold: boolean;2021 readonly asUpdateDropThreshold: {2022 readonly new_: u32;2023 } & Struct;2024 readonly isUpdateResumeThreshold: boolean;2025 readonly asUpdateResumeThreshold: {2026 readonly new_: u32;2027 } & Struct;2028 readonly isUpdateThresholdWeight: boolean;2029 readonly asUpdateThresholdWeight: {2030 readonly new_: Weight;2031 } & Struct;2032 readonly isUpdateWeightRestrictDecay: boolean;2033 readonly asUpdateWeightRestrictDecay: {2034 readonly new_: Weight;2035 } & Struct;2036 readonly isUpdateXcmpMaxIndividualWeight: boolean;2037 readonly asUpdateXcmpMaxIndividualWeight: {2038 readonly new_: Weight;2039 } & Struct;2040 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2041 }20422043 /** @name PalletXcmCall (207) */2044 interface PalletXcmCall extends Enum {2045 readonly isSend: boolean;2046 readonly asSend: {2047 readonly dest: XcmVersionedMultiLocation;2048 readonly message: XcmVersionedXcm;2049 } & Struct;2050 readonly isTeleportAssets: boolean;2051 readonly asTeleportAssets: {2052 readonly dest: XcmVersionedMultiLocation;2053 readonly beneficiary: XcmVersionedMultiLocation;2054 readonly assets: XcmVersionedMultiAssets;2055 readonly feeAssetItem: u32;2056 } & Struct;2057 readonly isReserveTransferAssets: boolean;2058 readonly asReserveTransferAssets: {2059 readonly dest: XcmVersionedMultiLocation;2060 readonly beneficiary: XcmVersionedMultiLocation;2061 readonly assets: XcmVersionedMultiAssets;2062 readonly feeAssetItem: u32;2063 } & Struct;2064 readonly isExecute: boolean;2065 readonly asExecute: {2066 readonly message: XcmVersionedXcm;2067 readonly maxWeight: Weight;2068 } & Struct;2069 readonly isForceXcmVersion: boolean;2070 readonly asForceXcmVersion: {2071 readonly location: XcmV1MultiLocation;2072 readonly xcmVersion: u32;2073 } & Struct;2074 readonly isForceDefaultXcmVersion: boolean;2075 readonly asForceDefaultXcmVersion: {2076 readonly maybeXcmVersion: Option<u32>;2077 } & Struct;2078 readonly isForceSubscribeVersionNotify: boolean;2079 readonly asForceSubscribeVersionNotify: {2080 readonly location: XcmVersionedMultiLocation;2081 } & Struct;2082 readonly isForceUnsubscribeVersionNotify: boolean;2083 readonly asForceUnsubscribeVersionNotify: {2084 readonly location: XcmVersionedMultiLocation;2085 } & Struct;2086 readonly isLimitedReserveTransferAssets: boolean;2087 readonly asLimitedReserveTransferAssets: {2088 readonly dest: XcmVersionedMultiLocation;2089 readonly beneficiary: XcmVersionedMultiLocation;2090 readonly assets: XcmVersionedMultiAssets;2091 readonly feeAssetItem: u32;2092 readonly weightLimit: XcmV2WeightLimit;2093 } & Struct;2094 readonly isLimitedTeleportAssets: boolean;2095 readonly asLimitedTeleportAssets: {2096 readonly dest: XcmVersionedMultiLocation;2097 readonly beneficiary: XcmVersionedMultiLocation;2098 readonly assets: XcmVersionedMultiAssets;2099 readonly feeAssetItem: u32;2100 readonly weightLimit: XcmV2WeightLimit;2101 } & Struct;2102 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2103 }21042105 /** @name XcmVersionedXcm (208) */2106 interface XcmVersionedXcm extends Enum {2107 readonly isV0: boolean;2108 readonly asV0: XcmV0Xcm;2109 readonly isV1: boolean;2110 readonly asV1: XcmV1Xcm;2111 readonly isV2: boolean;2112 readonly asV2: XcmV2Xcm;2113 readonly type: 'V0' | 'V1' | 'V2';2114 }21152116 /** @name XcmV0Xcm (209) */2117 interface XcmV0Xcm extends Enum {2118 readonly isWithdrawAsset: boolean;2119 readonly asWithdrawAsset: {2120 readonly assets: Vec<XcmV0MultiAsset>;2121 readonly effects: Vec<XcmV0Order>;2122 } & Struct;2123 readonly isReserveAssetDeposit: boolean;2124 readonly asReserveAssetDeposit: {2125 readonly assets: Vec<XcmV0MultiAsset>;2126 readonly effects: Vec<XcmV0Order>;2127 } & Struct;2128 readonly isTeleportAsset: boolean;2129 readonly asTeleportAsset: {2130 readonly assets: Vec<XcmV0MultiAsset>;2131 readonly effects: Vec<XcmV0Order>;2132 } & Struct;2133 readonly isQueryResponse: boolean;2134 readonly asQueryResponse: {2135 readonly queryId: Compact<u64>;2136 readonly response: XcmV0Response;2137 } & Struct;2138 readonly isTransferAsset: boolean;2139 readonly asTransferAsset: {2140 readonly assets: Vec<XcmV0MultiAsset>;2141 readonly dest: XcmV0MultiLocation;2142 } & Struct;2143 readonly isTransferReserveAsset: boolean;2144 readonly asTransferReserveAsset: {2145 readonly assets: Vec<XcmV0MultiAsset>;2146 readonly dest: XcmV0MultiLocation;2147 readonly effects: Vec<XcmV0Order>;2148 } & Struct;2149 readonly isTransact: boolean;2150 readonly asTransact: {2151 readonly originType: XcmV0OriginKind;2152 readonly requireWeightAtMost: u64;2153 readonly call: XcmDoubleEncoded;2154 } & Struct;2155 readonly isHrmpNewChannelOpenRequest: boolean;2156 readonly asHrmpNewChannelOpenRequest: {2157 readonly sender: Compact<u32>;2158 readonly maxMessageSize: Compact<u32>;2159 readonly maxCapacity: Compact<u32>;2160 } & Struct;2161 readonly isHrmpChannelAccepted: boolean;2162 readonly asHrmpChannelAccepted: {2163 readonly recipient: Compact<u32>;2164 } & Struct;2165 readonly isHrmpChannelClosing: boolean;2166 readonly asHrmpChannelClosing: {2167 readonly initiator: Compact<u32>;2168 readonly sender: Compact<u32>;2169 readonly recipient: Compact<u32>;2170 } & Struct;2171 readonly isRelayedFrom: boolean;2172 readonly asRelayedFrom: {2173 readonly who: XcmV0MultiLocation;2174 readonly message: XcmV0Xcm;2175 } & Struct;2176 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2177 }21782179 /** @name XcmV0Order (211) */2180 interface XcmV0Order extends Enum {2181 readonly isNull: boolean;2182 readonly isDepositAsset: boolean;2183 readonly asDepositAsset: {2184 readonly assets: Vec<XcmV0MultiAsset>;2185 readonly dest: XcmV0MultiLocation;2186 } & Struct;2187 readonly isDepositReserveAsset: boolean;2188 readonly asDepositReserveAsset: {2189 readonly assets: Vec<XcmV0MultiAsset>;2190 readonly dest: XcmV0MultiLocation;2191 readonly effects: Vec<XcmV0Order>;2192 } & Struct;2193 readonly isExchangeAsset: boolean;2194 readonly asExchangeAsset: {2195 readonly give: Vec<XcmV0MultiAsset>;2196 readonly receive: Vec<XcmV0MultiAsset>;2197 } & Struct;2198 readonly isInitiateReserveWithdraw: boolean;2199 readonly asInitiateReserveWithdraw: {2200 readonly assets: Vec<XcmV0MultiAsset>;2201 readonly reserve: XcmV0MultiLocation;2202 readonly effects: Vec<XcmV0Order>;2203 } & Struct;2204 readonly isInitiateTeleport: boolean;2205 readonly asInitiateTeleport: {2206 readonly assets: Vec<XcmV0MultiAsset>;2207 readonly dest: XcmV0MultiLocation;2208 readonly effects: Vec<XcmV0Order>;2209 } & Struct;2210 readonly isQueryHolding: boolean;2211 readonly asQueryHolding: {2212 readonly queryId: Compact<u64>;2213 readonly dest: XcmV0MultiLocation;2214 readonly assets: Vec<XcmV0MultiAsset>;2215 } & Struct;2216 readonly isBuyExecution: boolean;2217 readonly asBuyExecution: {2218 readonly fees: XcmV0MultiAsset;2219 readonly weight: u64;2220 readonly debt: u64;2221 readonly haltOnError: bool;2222 readonly xcm: Vec<XcmV0Xcm>;2223 } & Struct;2224 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2225 }22262227 /** @name XcmV0Response (213) */2228 interface XcmV0Response extends Enum {2229 readonly isAssets: boolean;2230 readonly asAssets: Vec<XcmV0MultiAsset>;2231 readonly type: 'Assets';2232 }22332234 /** @name XcmV1Xcm (214) */2235 interface XcmV1Xcm extends Enum {2236 readonly isWithdrawAsset: boolean;2237 readonly asWithdrawAsset: {2238 readonly assets: XcmV1MultiassetMultiAssets;2239 readonly effects: Vec<XcmV1Order>;2240 } & Struct;2241 readonly isReserveAssetDeposited: boolean;2242 readonly asReserveAssetDeposited: {2243 readonly assets: XcmV1MultiassetMultiAssets;2244 readonly effects: Vec<XcmV1Order>;2245 } & Struct;2246 readonly isReceiveTeleportedAsset: boolean;2247 readonly asReceiveTeleportedAsset: {2248 readonly assets: XcmV1MultiassetMultiAssets;2249 readonly effects: Vec<XcmV1Order>;2250 } & Struct;2251 readonly isQueryResponse: boolean;2252 readonly asQueryResponse: {2253 readonly queryId: Compact<u64>;2254 readonly response: XcmV1Response;2255 } & Struct;2256 readonly isTransferAsset: boolean;2257 readonly asTransferAsset: {2258 readonly assets: XcmV1MultiassetMultiAssets;2259 readonly beneficiary: XcmV1MultiLocation;2260 } & Struct;2261 readonly isTransferReserveAsset: boolean;2262 readonly asTransferReserveAsset: {2263 readonly assets: XcmV1MultiassetMultiAssets;2264 readonly dest: XcmV1MultiLocation;2265 readonly effects: Vec<XcmV1Order>;2266 } & Struct;2267 readonly isTransact: boolean;2268 readonly asTransact: {2269 readonly originType: XcmV0OriginKind;2270 readonly requireWeightAtMost: u64;2271 readonly call: XcmDoubleEncoded;2272 } & Struct;2273 readonly isHrmpNewChannelOpenRequest: boolean;2274 readonly asHrmpNewChannelOpenRequest: {2275 readonly sender: Compact<u32>;2276 readonly maxMessageSize: Compact<u32>;2277 readonly maxCapacity: Compact<u32>;2278 } & Struct;2279 readonly isHrmpChannelAccepted: boolean;2280 readonly asHrmpChannelAccepted: {2281 readonly recipient: Compact<u32>;2282 } & Struct;2283 readonly isHrmpChannelClosing: boolean;2284 readonly asHrmpChannelClosing: {2285 readonly initiator: Compact<u32>;2286 readonly sender: Compact<u32>;2287 readonly recipient: Compact<u32>;2288 } & Struct;2289 readonly isRelayedFrom: boolean;2290 readonly asRelayedFrom: {2291 readonly who: XcmV1MultilocationJunctions;2292 readonly message: XcmV1Xcm;2293 } & Struct;2294 readonly isSubscribeVersion: boolean;2295 readonly asSubscribeVersion: {2296 readonly queryId: Compact<u64>;2297 readonly maxResponseWeight: Compact<u64>;2298 } & Struct;2299 readonly isUnsubscribeVersion: boolean;2300 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2301 }23022303 /** @name XcmV1Order (216) */2304 interface XcmV1Order extends Enum {2305 readonly isNoop: boolean;2306 readonly isDepositAsset: boolean;2307 readonly asDepositAsset: {2308 readonly assets: XcmV1MultiassetMultiAssetFilter;2309 readonly maxAssets: u32;2310 readonly beneficiary: XcmV1MultiLocation;2311 } & Struct;2312 readonly isDepositReserveAsset: boolean;2313 readonly asDepositReserveAsset: {2314 readonly assets: XcmV1MultiassetMultiAssetFilter;2315 readonly maxAssets: u32;2316 readonly dest: XcmV1MultiLocation;2317 readonly effects: Vec<XcmV1Order>;2318 } & Struct;2319 readonly isExchangeAsset: boolean;2320 readonly asExchangeAsset: {2321 readonly give: XcmV1MultiassetMultiAssetFilter;2322 readonly receive: XcmV1MultiassetMultiAssets;2323 } & Struct;2324 readonly isInitiateReserveWithdraw: boolean;2325 readonly asInitiateReserveWithdraw: {2326 readonly assets: XcmV1MultiassetMultiAssetFilter;2327 readonly reserve: XcmV1MultiLocation;2328 readonly effects: Vec<XcmV1Order>;2329 } & Struct;2330 readonly isInitiateTeleport: boolean;2331 readonly asInitiateTeleport: {2332 readonly assets: XcmV1MultiassetMultiAssetFilter;2333 readonly dest: XcmV1MultiLocation;2334 readonly effects: Vec<XcmV1Order>;2335 } & Struct;2336 readonly isQueryHolding: boolean;2337 readonly asQueryHolding: {2338 readonly queryId: Compact<u64>;2339 readonly dest: XcmV1MultiLocation;2340 readonly assets: XcmV1MultiassetMultiAssetFilter;2341 } & Struct;2342 readonly isBuyExecution: boolean;2343 readonly asBuyExecution: {2344 readonly fees: XcmV1MultiAsset;2345 readonly weight: u64;2346 readonly debt: u64;2347 readonly haltOnError: bool;2348 readonly instructions: Vec<XcmV1Xcm>;2349 } & Struct;2350 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2351 }23522353 /** @name XcmV1Response (218) */2354 interface XcmV1Response extends Enum {2355 readonly isAssets: boolean;2356 readonly asAssets: XcmV1MultiassetMultiAssets;2357 readonly isVersion: boolean;2358 readonly asVersion: u32;2359 readonly type: 'Assets' | 'Version';2360 }23612362 /** @name CumulusPalletXcmCall (232) */2363 type CumulusPalletXcmCall = Null;23642365 /** @name CumulusPalletDmpQueueCall (233) */2366 interface CumulusPalletDmpQueueCall extends Enum {2367 readonly isServiceOverweight: boolean;2368 readonly asServiceOverweight: {2369 readonly index: u64;2370 readonly weightLimit: Weight;2371 } & Struct;2372 readonly type: 'ServiceOverweight';2373 }23742375 /** @name PalletInflationCall (234) */2376 interface PalletInflationCall extends Enum {2377 readonly isStartInflation: boolean;2378 readonly asStartInflation: {2379 readonly inflationStartRelayBlock: u32;2380 } & Struct;2381 readonly type: 'StartInflation';2382 }23832384 /** @name PalletUniqueCall (235) */2385 interface PalletUniqueCall extends Enum {2386 readonly isCreateCollection: boolean;2387 readonly asCreateCollection: {2388 readonly collectionName: Vec<u16>;2389 readonly collectionDescription: Vec<u16>;2390 readonly tokenPrefix: Bytes;2391 readonly mode: UpDataStructsCollectionMode;2392 } & Struct;2393 readonly isCreateCollectionEx: boolean;2394 readonly asCreateCollectionEx: {2395 readonly data: UpDataStructsCreateCollectionData;2396 } & Struct;2397 readonly isDestroyCollection: boolean;2398 readonly asDestroyCollection: {2399 readonly collectionId: u32;2400 } & Struct;2401 readonly isAddToAllowList: boolean;2402 readonly asAddToAllowList: {2403 readonly collectionId: u32;2404 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2405 } & Struct;2406 readonly isRemoveFromAllowList: boolean;2407 readonly asRemoveFromAllowList: {2408 readonly collectionId: u32;2409 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2410 } & Struct;2411 readonly isChangeCollectionOwner: boolean;2412 readonly asChangeCollectionOwner: {2413 readonly collectionId: u32;2414 readonly newOwner: AccountId32;2415 } & Struct;2416 readonly isAddCollectionAdmin: boolean;2417 readonly asAddCollectionAdmin: {2418 readonly collectionId: u32;2419 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2420 } & Struct;2421 readonly isRemoveCollectionAdmin: boolean;2422 readonly asRemoveCollectionAdmin: {2423 readonly collectionId: u32;2424 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2425 } & Struct;2426 readonly isSetCollectionSponsor: boolean;2427 readonly asSetCollectionSponsor: {2428 readonly collectionId: u32;2429 readonly newSponsor: AccountId32;2430 } & Struct;2431 readonly isConfirmSponsorship: boolean;2432 readonly asConfirmSponsorship: {2433 readonly collectionId: u32;2434 } & Struct;2435 readonly isRemoveCollectionSponsor: boolean;2436 readonly asRemoveCollectionSponsor: {2437 readonly collectionId: u32;2438 } & Struct;2439 readonly isCreateItem: boolean;2440 readonly asCreateItem: {2441 readonly collectionId: u32;2442 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2443 readonly data: UpDataStructsCreateItemData;2444 } & Struct;2445 readonly isCreateMultipleItems: boolean;2446 readonly asCreateMultipleItems: {2447 readonly collectionId: u32;2448 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2449 readonly itemsData: Vec<UpDataStructsCreateItemData>;2450 } & Struct;2451 readonly isSetCollectionProperties: boolean;2452 readonly asSetCollectionProperties: {2453 readonly collectionId: u32;2454 readonly properties: Vec<UpDataStructsProperty>;2455 } & Struct;2456 readonly isDeleteCollectionProperties: boolean;2457 readonly asDeleteCollectionProperties: {2458 readonly collectionId: u32;2459 readonly propertyKeys: Vec<Bytes>;2460 } & Struct;2461 readonly isSetTokenProperties: boolean;2462 readonly asSetTokenProperties: {2463 readonly collectionId: u32;2464 readonly tokenId: u32;2465 readonly properties: Vec<UpDataStructsProperty>;2466 } & Struct;2467 readonly isDeleteTokenProperties: boolean;2468 readonly asDeleteTokenProperties: {2469 readonly collectionId: u32;2470 readonly tokenId: u32;2471 readonly propertyKeys: Vec<Bytes>;2472 } & Struct;2473 readonly isSetTokenPropertyPermissions: boolean;2474 readonly asSetTokenPropertyPermissions: {2475 readonly collectionId: u32;2476 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2477 } & Struct;2478 readonly isCreateMultipleItemsEx: boolean;2479 readonly asCreateMultipleItemsEx: {2480 readonly collectionId: u32;2481 readonly data: UpDataStructsCreateItemExData;2482 } & Struct;2483 readonly isSetTransfersEnabledFlag: boolean;2484 readonly asSetTransfersEnabledFlag: {2485 readonly collectionId: u32;2486 readonly value: bool;2487 } & Struct;2488 readonly isBurnItem: boolean;2489 readonly asBurnItem: {2490 readonly collectionId: u32;2491 readonly itemId: u32;2492 readonly value: u128;2493 } & Struct;2494 readonly isBurnFrom: boolean;2495 readonly asBurnFrom: {2496 readonly collectionId: u32;2497 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2498 readonly itemId: u32;2499 readonly value: u128;2500 } & Struct;2501 readonly isTransfer: boolean;2502 readonly asTransfer: {2503 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2504 readonly collectionId: u32;2505 readonly itemId: u32;2506 readonly value: u128;2507 } & Struct;2508 readonly isApprove: boolean;2509 readonly asApprove: {2510 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2511 readonly collectionId: u32;2512 readonly itemId: u32;2513 readonly amount: u128;2514 } & Struct;2515 readonly isTransferFrom: boolean;2516 readonly asTransferFrom: {2517 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2518 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2519 readonly collectionId: u32;2520 readonly itemId: u32;2521 readonly value: u128;2522 } & Struct;2523 readonly isSetCollectionLimits: boolean;2524 readonly asSetCollectionLimits: {2525 readonly collectionId: u32;2526 readonly newLimit: UpDataStructsCollectionLimits;2527 } & Struct;2528 readonly isSetCollectionPermissions: boolean;2529 readonly asSetCollectionPermissions: {2530 readonly collectionId: u32;2531 readonly newPermission: UpDataStructsCollectionPermissions;2532 } & Struct;2533 readonly isRepartition: boolean;2534 readonly asRepartition: {2535 readonly collectionId: u32;2536 readonly tokenId: u32;2537 readonly amount: u128;2538 } & Struct;2539 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition';2540 }25412542 /** @name UpDataStructsCollectionMode (240) */2543 interface UpDataStructsCollectionMode extends Enum {2544 readonly isNft: boolean;2545 readonly isFungible: boolean;2546 readonly asFungible: u8;2547 readonly isReFungible: boolean;2548 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2549 }25502551 /** @name UpDataStructsCreateCollectionData (241) */2552 interface UpDataStructsCreateCollectionData extends Struct {2553 readonly mode: UpDataStructsCollectionMode;2554 readonly access: Option<UpDataStructsAccessMode>;2555 readonly name: Vec<u16>;2556 readonly description: Vec<u16>;2557 readonly tokenPrefix: Bytes;2558 readonly pendingSponsor: Option<AccountId32>;2559 readonly limits: Option<UpDataStructsCollectionLimits>;2560 readonly permissions: Option<UpDataStructsCollectionPermissions>;2561 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2562 readonly properties: Vec<UpDataStructsProperty>;2563 }25642565 /** @name UpDataStructsAccessMode (243) */2566 interface UpDataStructsAccessMode extends Enum {2567 readonly isNormal: boolean;2568 readonly isAllowList: boolean;2569 readonly type: 'Normal' | 'AllowList';2570 }25712572 /** @name UpDataStructsCollectionLimits (245) */2573 interface UpDataStructsCollectionLimits extends Struct {2574 readonly accountTokenOwnershipLimit: Option<u32>;2575 readonly sponsoredDataSize: Option<u32>;2576 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2577 readonly tokenLimit: Option<u32>;2578 readonly sponsorTransferTimeout: Option<u32>;2579 readonly sponsorApproveTimeout: Option<u32>;2580 readonly ownerCanTransfer: Option<bool>;2581 readonly ownerCanDestroy: Option<bool>;2582 readonly transfersEnabled: Option<bool>;2583 }25842585 /** @name UpDataStructsSponsoringRateLimit (247) */2586 interface UpDataStructsSponsoringRateLimit extends Enum {2587 readonly isSponsoringDisabled: boolean;2588 readonly isBlocks: boolean;2589 readonly asBlocks: u32;2590 readonly type: 'SponsoringDisabled' | 'Blocks';2591 }25922593 /** @name UpDataStructsCollectionPermissions (250) */2594 interface UpDataStructsCollectionPermissions extends Struct {2595 readonly access: Option<UpDataStructsAccessMode>;2596 readonly mintMode: Option<bool>;2597 readonly nesting: Option<UpDataStructsNestingPermissions>;2598 }25992600 /** @name UpDataStructsNestingPermissions (252) */2601 interface UpDataStructsNestingPermissions extends Struct {2602 readonly tokenOwner: bool;2603 readonly collectionAdmin: bool;2604 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2605 }26062607 /** @name UpDataStructsOwnerRestrictedSet (254) */2608 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}26092610 /** @name UpDataStructsPropertyKeyPermission (259) */2611 interface UpDataStructsPropertyKeyPermission extends Struct {2612 readonly key: Bytes;2613 readonly permission: UpDataStructsPropertyPermission;2614 }26152616 /** @name UpDataStructsPropertyPermission (260) */2617 interface UpDataStructsPropertyPermission extends Struct {2618 readonly mutable: bool;2619 readonly collectionAdmin: bool;2620 readonly tokenOwner: bool;2621 }26222623 /** @name UpDataStructsProperty (263) */2624 interface UpDataStructsProperty extends Struct {2625 readonly key: Bytes;2626 readonly value: Bytes;2627 }26282629 /** @name UpDataStructsCreateItemData (266) */2630 interface UpDataStructsCreateItemData extends Enum {2631 readonly isNft: boolean;2632 readonly asNft: UpDataStructsCreateNftData;2633 readonly isFungible: boolean;2634 readonly asFungible: UpDataStructsCreateFungibleData;2635 readonly isReFungible: boolean;2636 readonly asReFungible: UpDataStructsCreateReFungibleData;2637 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2638 }26392640 /** @name UpDataStructsCreateNftData (267) */2641 interface UpDataStructsCreateNftData extends Struct {2642 readonly properties: Vec<UpDataStructsProperty>;2643 }26442645 /** @name UpDataStructsCreateFungibleData (268) */2646 interface UpDataStructsCreateFungibleData extends Struct {2647 readonly value: u128;2648 }26492650 /** @name UpDataStructsCreateReFungibleData (269) */2651 interface UpDataStructsCreateReFungibleData extends Struct {2652 readonly pieces: u128;2653 readonly properties: Vec<UpDataStructsProperty>;2654 }26552656 /** @name UpDataStructsCreateItemExData (272) */2657 interface UpDataStructsCreateItemExData extends Enum {2658 readonly isNft: boolean;2659 readonly asNft: Vec<UpDataStructsCreateNftExData>;2660 readonly isFungible: boolean;2661 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2662 readonly isRefungibleMultipleItems: boolean;2663 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2664 readonly isRefungibleMultipleOwners: boolean;2665 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2666 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2667 }26682669 /** @name UpDataStructsCreateNftExData (274) */2670 interface UpDataStructsCreateNftExData extends Struct {2671 readonly properties: Vec<UpDataStructsProperty>;2672 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2673 }26742675 /** @name UpDataStructsCreateRefungibleExSingleOwner (281) */2676 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2677 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2678 readonly pieces: u128;2679 readonly properties: Vec<UpDataStructsProperty>;2680 }26812682 /** @name UpDataStructsCreateRefungibleExMultipleOwners (283) */2683 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2684 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2685 readonly properties: Vec<UpDataStructsProperty>;2686 }26872688 /** @name PalletUniqueSchedulerCall (284) */2689 interface PalletUniqueSchedulerCall extends Enum {2690 readonly isScheduleNamed: boolean;2691 readonly asScheduleNamed: {2692 readonly id: U8aFixed;2693 readonly when: u32;2694 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2695 readonly priority: Option<u8>;2696 readonly call: FrameSupportScheduleMaybeHashed;2697 } & Struct;2698 readonly isCancelNamed: boolean;2699 readonly asCancelNamed: {2700 readonly id: U8aFixed;2701 } & Struct;2702 readonly isScheduleNamedAfter: boolean;2703 readonly asScheduleNamedAfter: {2704 readonly id: U8aFixed;2705 readonly after: u32;2706 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2707 readonly priority: Option<u8>;2708 readonly call: FrameSupportScheduleMaybeHashed;2709 } & Struct;2710 readonly isChangeNamedPriority: boolean;2711 readonly asChangeNamedPriority: {2712 readonly id: U8aFixed;2713 readonly priority: u8;2714 } & Struct;2715 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2716 }27172718 /** @name FrameSupportScheduleMaybeHashed (287) */2719 interface FrameSupportScheduleMaybeHashed extends Enum {2720 readonly isValue: boolean;2721 readonly asValue: Call;2722 readonly isHash: boolean;2723 readonly asHash: H256;2724 readonly type: 'Value' | 'Hash';2725 }27262727 /** @name PalletConfigurationCall (288) */2728 interface PalletConfigurationCall extends Enum {2729 readonly isSetWeightToFeeCoefficientOverride: boolean;2730 readonly asSetWeightToFeeCoefficientOverride: {2731 readonly coeff: Option<u32>;2732 } & Struct;2733 readonly isSetMinGasPriceOverride: boolean;2734 readonly asSetMinGasPriceOverride: {2735 readonly coeff: Option<u64>;2736 } & Struct;2737 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2738 }27392740 /** @name PalletTemplateTransactionPaymentCall (290) */2741 type PalletTemplateTransactionPaymentCall = Null;27422743 /** @name PalletStructureCall (291) */2744 type PalletStructureCall = Null;27452746 /** @name PalletRmrkCoreCall (292) */2747 interface PalletRmrkCoreCall extends Enum {2748 readonly isCreateCollection: boolean;2749 readonly asCreateCollection: {2750 readonly metadata: Bytes;2751 readonly max: Option<u32>;2752 readonly symbol: Bytes;2753 } & Struct;2754 readonly isDestroyCollection: boolean;2755 readonly asDestroyCollection: {2756 readonly collectionId: u32;2757 } & Struct;2758 readonly isChangeCollectionIssuer: boolean;2759 readonly asChangeCollectionIssuer: {2760 readonly collectionId: u32;2761 readonly newIssuer: MultiAddress;2762 } & Struct;2763 readonly isLockCollection: boolean;2764 readonly asLockCollection: {2765 readonly collectionId: u32;2766 } & Struct;2767 readonly isMintNft: boolean;2768 readonly asMintNft: {2769 readonly owner: Option<AccountId32>;2770 readonly collectionId: u32;2771 readonly recipient: Option<AccountId32>;2772 readonly royaltyAmount: Option<Permill>;2773 readonly metadata: Bytes;2774 readonly transferable: bool;2775 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;2776 } & Struct;2777 readonly isBurnNft: boolean;2778 readonly asBurnNft: {2779 readonly collectionId: u32;2780 readonly nftId: u32;2781 readonly maxBurns: u32;2782 } & Struct;2783 readonly isSend: boolean;2784 readonly asSend: {2785 readonly rmrkCollectionId: u32;2786 readonly rmrkNftId: u32;2787 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2788 } & Struct;2789 readonly isAcceptNft: boolean;2790 readonly asAcceptNft: {2791 readonly rmrkCollectionId: u32;2792 readonly rmrkNftId: u32;2793 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2794 } & Struct;2795 readonly isRejectNft: boolean;2796 readonly asRejectNft: {2797 readonly rmrkCollectionId: u32;2798 readonly rmrkNftId: u32;2799 } & Struct;2800 readonly isAcceptResource: boolean;2801 readonly asAcceptResource: {2802 readonly rmrkCollectionId: u32;2803 readonly rmrkNftId: u32;2804 readonly resourceId: u32;2805 } & Struct;2806 readonly isAcceptResourceRemoval: boolean;2807 readonly asAcceptResourceRemoval: {2808 readonly rmrkCollectionId: u32;2809 readonly rmrkNftId: u32;2810 readonly resourceId: u32;2811 } & Struct;2812 readonly isSetProperty: boolean;2813 readonly asSetProperty: {2814 readonly rmrkCollectionId: Compact<u32>;2815 readonly maybeNftId: Option<u32>;2816 readonly key: Bytes;2817 readonly value: Bytes;2818 } & Struct;2819 readonly isSetPriority: boolean;2820 readonly asSetPriority: {2821 readonly rmrkCollectionId: u32;2822 readonly rmrkNftId: u32;2823 readonly priorities: Vec<u32>;2824 } & Struct;2825 readonly isAddBasicResource: boolean;2826 readonly asAddBasicResource: {2827 readonly rmrkCollectionId: u32;2828 readonly nftId: u32;2829 readonly resource: RmrkTraitsResourceBasicResource;2830 } & Struct;2831 readonly isAddComposableResource: boolean;2832 readonly asAddComposableResource: {2833 readonly rmrkCollectionId: u32;2834 readonly nftId: u32;2835 readonly resource: RmrkTraitsResourceComposableResource;2836 } & Struct;2837 readonly isAddSlotResource: boolean;2838 readonly asAddSlotResource: {2839 readonly rmrkCollectionId: u32;2840 readonly nftId: u32;2841 readonly resource: RmrkTraitsResourceSlotResource;2842 } & Struct;2843 readonly isRemoveResource: boolean;2844 readonly asRemoveResource: {2845 readonly rmrkCollectionId: u32;2846 readonly nftId: u32;2847 readonly resourceId: u32;2848 } & Struct;2849 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2850 }28512852 /** @name RmrkTraitsResourceResourceTypes (298) */2853 interface RmrkTraitsResourceResourceTypes extends Enum {2854 readonly isBasic: boolean;2855 readonly asBasic: RmrkTraitsResourceBasicResource;2856 readonly isComposable: boolean;2857 readonly asComposable: RmrkTraitsResourceComposableResource;2858 readonly isSlot: boolean;2859 readonly asSlot: RmrkTraitsResourceSlotResource;2860 readonly type: 'Basic' | 'Composable' | 'Slot';2861 }28622863 /** @name RmrkTraitsResourceBasicResource (300) */2864 interface RmrkTraitsResourceBasicResource extends Struct {2865 readonly src: Option<Bytes>;2866 readonly metadata: Option<Bytes>;2867 readonly license: Option<Bytes>;2868 readonly thumb: Option<Bytes>;2869 }28702871 /** @name RmrkTraitsResourceComposableResource (302) */2872 interface RmrkTraitsResourceComposableResource extends Struct {2873 readonly parts: Vec<u32>;2874 readonly base: u32;2875 readonly src: Option<Bytes>;2876 readonly metadata: Option<Bytes>;2877 readonly license: Option<Bytes>;2878 readonly thumb: Option<Bytes>;2879 }28802881 /** @name RmrkTraitsResourceSlotResource (303) */2882 interface RmrkTraitsResourceSlotResource extends Struct {2883 readonly base: u32;2884 readonly src: Option<Bytes>;2885 readonly metadata: Option<Bytes>;2886 readonly slot: u32;2887 readonly license: Option<Bytes>;2888 readonly thumb: Option<Bytes>;2889 }28902891 /** @name PalletRmrkEquipCall (306) */2892 interface PalletRmrkEquipCall extends Enum {2893 readonly isCreateBase: boolean;2894 readonly asCreateBase: {2895 readonly baseType: Bytes;2896 readonly symbol: Bytes;2897 readonly parts: Vec<RmrkTraitsPartPartType>;2898 } & Struct;2899 readonly isThemeAdd: boolean;2900 readonly asThemeAdd: {2901 readonly baseId: u32;2902 readonly theme: RmrkTraitsTheme;2903 } & Struct;2904 readonly isEquippable: boolean;2905 readonly asEquippable: {2906 readonly baseId: u32;2907 readonly slotId: u32;2908 readonly equippables: RmrkTraitsPartEquippableList;2909 } & Struct;2910 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2911 }29122913 /** @name RmrkTraitsPartPartType (309) */2914 interface RmrkTraitsPartPartType extends Enum {2915 readonly isFixedPart: boolean;2916 readonly asFixedPart: RmrkTraitsPartFixedPart;2917 readonly isSlotPart: boolean;2918 readonly asSlotPart: RmrkTraitsPartSlotPart;2919 readonly type: 'FixedPart' | 'SlotPart';2920 }29212922 /** @name RmrkTraitsPartFixedPart (311) */2923 interface RmrkTraitsPartFixedPart extends Struct {2924 readonly id: u32;2925 readonly z: u32;2926 readonly src: Bytes;2927 }29282929 /** @name RmrkTraitsPartSlotPart (312) */2930 interface RmrkTraitsPartSlotPart extends Struct {2931 readonly id: u32;2932 readonly equippable: RmrkTraitsPartEquippableList;2933 readonly src: Bytes;2934 readonly z: u32;2935 }29362937 /** @name RmrkTraitsPartEquippableList (313) */2938 interface RmrkTraitsPartEquippableList extends Enum {2939 readonly isAll: boolean;2940 readonly isEmpty: boolean;2941 readonly isCustom: boolean;2942 readonly asCustom: Vec<u32>;2943 readonly type: 'All' | 'Empty' | 'Custom';2944 }29452946 /** @name RmrkTraitsTheme (315) */2947 interface RmrkTraitsTheme extends Struct {2948 readonly name: Bytes;2949 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2950 readonly inherit: bool;2951 }29522953 /** @name RmrkTraitsThemeThemeProperty (317) */2954 interface RmrkTraitsThemeThemeProperty extends Struct {2955 readonly key: Bytes;2956 readonly value: Bytes;2957 }29582959 /** @name PalletAppPromotionCall (319) */2960 interface PalletAppPromotionCall extends Enum {2961 readonly isSetAdminAddress: boolean;2962 readonly asSetAdminAddress: {2963 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;2964 } & Struct;2965 readonly isStake: boolean;2966 readonly asStake: {2967 readonly amount: u128;2968 } & Struct;2969 readonly isUnstake: boolean;2970 readonly isSponsorCollection: boolean;2971 readonly asSponsorCollection: {2972 readonly collectionId: u32;2973 } & Struct;2974 readonly isStopSponsoringCollection: boolean;2975 readonly asStopSponsoringCollection: {2976 readonly collectionId: u32;2977 } & Struct;2978 readonly isSponsorContract: boolean;2979 readonly asSponsorContract: {2980 readonly contractId: H160;2981 } & Struct;2982 readonly isStopSponsoringContract: boolean;2983 readonly asStopSponsoringContract: {2984 readonly contractId: H160;2985 } & Struct;2986 readonly isPayoutStakers: boolean;2987 readonly asPayoutStakers: {2988 readonly stakersNumber: Option<u8>;2989 } & Struct;2990 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2991 }29922993 /** @name PalletForeignAssetsModuleCall (320) */2994 interface PalletForeignAssetsModuleCall extends Enum {2995 readonly isRegisterForeignAsset: boolean;2996 readonly asRegisterForeignAsset: {2997 readonly owner: AccountId32;2998 readonly location: XcmVersionedMultiLocation;2999 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3000 } & Struct;3001 readonly isUpdateForeignAsset: boolean;3002 readonly asUpdateForeignAsset: {3003 readonly foreignAssetId: u32;3004 readonly location: XcmVersionedMultiLocation;3005 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3006 } & Struct;3007 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3008 }30093010 /** @name PalletEvmCall (321) */3011 interface PalletEvmCall extends Enum {3012 readonly isWithdraw: boolean;3013 readonly asWithdraw: {3014 readonly address: H160;3015 readonly value: u128;3016 } & Struct;3017 readonly isCall: boolean;3018 readonly asCall: {3019 readonly source: H160;3020 readonly target: H160;3021 readonly input: Bytes;3022 readonly value: U256;3023 readonly gasLimit: u64;3024 readonly maxFeePerGas: U256;3025 readonly maxPriorityFeePerGas: Option<U256>;3026 readonly nonce: Option<U256>;3027 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3028 } & Struct;3029 readonly isCreate: boolean;3030 readonly asCreate: {3031 readonly source: H160;3032 readonly init: Bytes;3033 readonly value: U256;3034 readonly gasLimit: u64;3035 readonly maxFeePerGas: U256;3036 readonly maxPriorityFeePerGas: Option<U256>;3037 readonly nonce: Option<U256>;3038 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3039 } & Struct;3040 readonly isCreate2: boolean;3041 readonly asCreate2: {3042 readonly source: H160;3043 readonly init: Bytes;3044 readonly salt: H256;3045 readonly value: U256;3046 readonly gasLimit: u64;3047 readonly maxFeePerGas: U256;3048 readonly maxPriorityFeePerGas: Option<U256>;3049 readonly nonce: Option<U256>;3050 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3051 } & Struct;3052 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3053 }30543055 /** @name PalletEthereumCall (327) */3056 interface PalletEthereumCall extends Enum {3057 readonly isTransact: boolean;3058 readonly asTransact: {3059 readonly transaction: EthereumTransactionTransactionV2;3060 } & Struct;3061 readonly type: 'Transact';3062 }30633064 /** @name EthereumTransactionTransactionV2 (328) */3065 interface EthereumTransactionTransactionV2 extends Enum {3066 readonly isLegacy: boolean;3067 readonly asLegacy: EthereumTransactionLegacyTransaction;3068 readonly isEip2930: boolean;3069 readonly asEip2930: EthereumTransactionEip2930Transaction;3070 readonly isEip1559: boolean;3071 readonly asEip1559: EthereumTransactionEip1559Transaction;3072 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3073 }30743075 /** @name EthereumTransactionLegacyTransaction (329) */3076 interface EthereumTransactionLegacyTransaction extends Struct {3077 readonly nonce: U256;3078 readonly gasPrice: U256;3079 readonly gasLimit: U256;3080 readonly action: EthereumTransactionTransactionAction;3081 readonly value: U256;3082 readonly input: Bytes;3083 readonly signature: EthereumTransactionTransactionSignature;3084 }30853086 /** @name EthereumTransactionTransactionAction (330) */3087 interface EthereumTransactionTransactionAction extends Enum {3088 readonly isCall: boolean;3089 readonly asCall: H160;3090 readonly isCreate: boolean;3091 readonly type: 'Call' | 'Create';3092 }30933094 /** @name EthereumTransactionTransactionSignature (331) */3095 interface EthereumTransactionTransactionSignature extends Struct {3096 readonly v: u64;3097 readonly r: H256;3098 readonly s: H256;3099 }31003101 /** @name EthereumTransactionEip2930Transaction (333) */3102 interface EthereumTransactionEip2930Transaction extends Struct {3103 readonly chainId: u64;3104 readonly nonce: U256;3105 readonly gasPrice: U256;3106 readonly gasLimit: U256;3107 readonly action: EthereumTransactionTransactionAction;3108 readonly value: U256;3109 readonly input: Bytes;3110 readonly accessList: Vec<EthereumTransactionAccessListItem>;3111 readonly oddYParity: bool;3112 readonly r: H256;3113 readonly s: H256;3114 }31153116 /** @name EthereumTransactionAccessListItem (335) */3117 interface EthereumTransactionAccessListItem extends Struct {3118 readonly address: H160;3119 readonly storageKeys: Vec<H256>;3120 }31213122 /** @name EthereumTransactionEip1559Transaction (336) */3123 interface EthereumTransactionEip1559Transaction extends Struct {3124 readonly chainId: u64;3125 readonly nonce: U256;3126 readonly maxPriorityFeePerGas: U256;3127 readonly maxFeePerGas: U256;3128 readonly gasLimit: U256;3129 readonly action: EthereumTransactionTransactionAction;3130 readonly value: U256;3131 readonly input: Bytes;3132 readonly accessList: Vec<EthereumTransactionAccessListItem>;3133 readonly oddYParity: bool;3134 readonly r: H256;3135 readonly s: H256;3136 }31373138 /** @name PalletEvmMigrationCall (337) */3139 interface PalletEvmMigrationCall extends Enum {3140 readonly isBegin: boolean;3141 readonly asBegin: {3142 readonly address: H160;3143 } & Struct;3144 readonly isSetData: boolean;3145 readonly asSetData: {3146 readonly address: H160;3147 readonly data: Vec<ITuple<[H256, H256]>>;3148 } & Struct;3149 readonly isFinish: boolean;3150 readonly asFinish: {3151 readonly address: H160;3152 readonly code: Bytes;3153 } & Struct;3154 readonly type: 'Begin' | 'SetData' | 'Finish';3155 }31563157 /** @name PalletMaintenanceCall (340) */3158 interface PalletMaintenanceCall extends Enum {3159 readonly isEnable: boolean;3160 readonly isDisable: boolean;3161 readonly type: 'Enable' | 'Disable';3162 }31633164 /** @name PalletTestUtilsCall (341) */3165 interface PalletTestUtilsCall extends Enum {3166 readonly isEnable: boolean;3167 readonly isSetTestValue: boolean;3168 readonly asSetTestValue: {3169 readonly value: u32;3170 } & Struct;3171 readonly isSetTestValueAndRollback: boolean;3172 readonly asSetTestValueAndRollback: {3173 readonly value: u32;3174 } & Struct;3175 readonly isIncTestValue: boolean;3176 readonly isSelfCancelingInc: boolean;3177 readonly asSelfCancelingInc: {3178 readonly id: U8aFixed;3179 readonly maxTestValue: u32;3180 } & Struct;3181 readonly isJustTakeFee: boolean;3182 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee';3183 }31843185 /** @name PalletSudoError (342) */3186 interface PalletSudoError extends Enum {3187 readonly isRequireSudo: boolean;3188 readonly type: 'RequireSudo';3189 }31903191 /** @name OrmlVestingModuleError (344) */3192 interface OrmlVestingModuleError extends Enum {3193 readonly isZeroVestingPeriod: boolean;3194 readonly isZeroVestingPeriodCount: boolean;3195 readonly isInsufficientBalanceToLock: boolean;3196 readonly isTooManyVestingSchedules: boolean;3197 readonly isAmountLow: boolean;3198 readonly isMaxVestingSchedulesExceeded: boolean;3199 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3200 }32013202 /** @name OrmlXtokensModuleError (345) */3203 interface OrmlXtokensModuleError extends Enum {3204 readonly isAssetHasNoReserve: boolean;3205 readonly isNotCrossChainTransfer: boolean;3206 readonly isInvalidDest: boolean;3207 readonly isNotCrossChainTransferableCurrency: boolean;3208 readonly isUnweighableMessage: boolean;3209 readonly isXcmExecutionFailed: boolean;3210 readonly isCannotReanchor: boolean;3211 readonly isInvalidAncestry: boolean;3212 readonly isInvalidAsset: boolean;3213 readonly isDestinationNotInvertible: boolean;3214 readonly isBadVersion: boolean;3215 readonly isDistinctReserveForAssetAndFee: boolean;3216 readonly isZeroFee: boolean;3217 readonly isZeroAmount: boolean;3218 readonly isTooManyAssetsBeingSent: boolean;3219 readonly isAssetIndexNonExistent: boolean;3220 readonly isFeeNotEnough: boolean;3221 readonly isNotSupportedMultiLocation: boolean;3222 readonly isMinXcmFeeNotDefined: boolean;3223 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3224 }32253226 /** @name OrmlTokensBalanceLock (348) */3227 interface OrmlTokensBalanceLock extends Struct {3228 readonly id: U8aFixed;3229 readonly amount: u128;3230 }32313232 /** @name OrmlTokensAccountData (350) */3233 interface OrmlTokensAccountData extends Struct {3234 readonly free: u128;3235 readonly reserved: u128;3236 readonly frozen: u128;3237 }32383239 /** @name OrmlTokensReserveData (352) */3240 interface OrmlTokensReserveData extends Struct {3241 readonly id: Null;3242 readonly amount: u128;3243 }32443245 /** @name OrmlTokensModuleError (354) */3246 interface OrmlTokensModuleError extends Enum {3247 readonly isBalanceTooLow: boolean;3248 readonly isAmountIntoBalanceFailed: boolean;3249 readonly isLiquidityRestrictions: boolean;3250 readonly isMaxLocksExceeded: boolean;3251 readonly isKeepAlive: boolean;3252 readonly isExistentialDeposit: boolean;3253 readonly isDeadAccount: boolean;3254 readonly isTooManyReserves: boolean;3255 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3256 }32573258 /** @name CumulusPalletXcmpQueueInboundChannelDetails (356) */3259 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3260 readonly sender: u32;3261 readonly state: CumulusPalletXcmpQueueInboundState;3262 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3263 }32643265 /** @name CumulusPalletXcmpQueueInboundState (357) */3266 interface CumulusPalletXcmpQueueInboundState extends Enum {3267 readonly isOk: boolean;3268 readonly isSuspended: boolean;3269 readonly type: 'Ok' | 'Suspended';3270 }32713272 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (360) */3273 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3274 readonly isConcatenatedVersionedXcm: boolean;3275 readonly isConcatenatedEncodedBlob: boolean;3276 readonly isSignals: boolean;3277 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3278 }32793280 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (363) */3281 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3282 readonly recipient: u32;3283 readonly state: CumulusPalletXcmpQueueOutboundState;3284 readonly signalsExist: bool;3285 readonly firstIndex: u16;3286 readonly lastIndex: u16;3287 }32883289 /** @name CumulusPalletXcmpQueueOutboundState (364) */3290 interface CumulusPalletXcmpQueueOutboundState extends Enum {3291 readonly isOk: boolean;3292 readonly isSuspended: boolean;3293 readonly type: 'Ok' | 'Suspended';3294 }32953296 /** @name CumulusPalletXcmpQueueQueueConfigData (366) */3297 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3298 readonly suspendThreshold: u32;3299 readonly dropThreshold: u32;3300 readonly resumeThreshold: u32;3301 readonly thresholdWeight: Weight;3302 readonly weightRestrictDecay: Weight;3303 readonly xcmpMaxIndividualWeight: Weight;3304 }33053306 /** @name CumulusPalletXcmpQueueError (368) */3307 interface CumulusPalletXcmpQueueError extends Enum {3308 readonly isFailedToSend: boolean;3309 readonly isBadXcmOrigin: boolean;3310 readonly isBadXcm: boolean;3311 readonly isBadOverweightIndex: boolean;3312 readonly isWeightOverLimit: boolean;3313 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3314 }33153316 /** @name PalletXcmError (369) */3317 interface PalletXcmError extends Enum {3318 readonly isUnreachable: boolean;3319 readonly isSendFailure: boolean;3320 readonly isFiltered: boolean;3321 readonly isUnweighableMessage: boolean;3322 readonly isDestinationNotInvertible: boolean;3323 readonly isEmpty: boolean;3324 readonly isCannotReanchor: boolean;3325 readonly isTooManyAssets: boolean;3326 readonly isInvalidOrigin: boolean;3327 readonly isBadVersion: boolean;3328 readonly isBadLocation: boolean;3329 readonly isNoSubscription: boolean;3330 readonly isAlreadySubscribed: boolean;3331 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3332 }33333334 /** @name CumulusPalletXcmError (370) */3335 type CumulusPalletXcmError = Null;33363337 /** @name CumulusPalletDmpQueueConfigData (371) */3338 interface CumulusPalletDmpQueueConfigData extends Struct {3339 readonly maxIndividual: Weight;3340 }33413342 /** @name CumulusPalletDmpQueuePageIndexData (372) */3343 interface CumulusPalletDmpQueuePageIndexData extends Struct {3344 readonly beginUsed: u32;3345 readonly endUsed: u32;3346 readonly overweightCount: u64;3347 }33483349 /** @name CumulusPalletDmpQueueError (375) */3350 interface CumulusPalletDmpQueueError extends Enum {3351 readonly isUnknown: boolean;3352 readonly isOverLimit: boolean;3353 readonly type: 'Unknown' | 'OverLimit';3354 }33553356 /** @name PalletUniqueError (379) */3357 interface PalletUniqueError extends Enum {3358 readonly isCollectionDecimalPointLimitExceeded: boolean;3359 readonly isConfirmUnsetSponsorFail: boolean;3360 readonly isEmptyArgument: boolean;3361 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3362 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3363 }33643365 /** @name PalletUniqueSchedulerScheduledV3 (382) */3366 interface PalletUniqueSchedulerScheduledV3 extends Struct {3367 readonly maybeId: Option<U8aFixed>;3368 readonly priority: u8;3369 readonly call: FrameSupportScheduleMaybeHashed;3370 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3371 readonly origin: OpalRuntimeOriginCaller;3372 }33733374 /** @name OpalRuntimeOriginCaller (383) */3375 interface OpalRuntimeOriginCaller extends Enum {3376 readonly isSystem: boolean;3377 readonly asSystem: FrameSupportDispatchRawOrigin;3378 readonly isVoid: boolean;3379 readonly isPolkadotXcm: boolean;3380 readonly asPolkadotXcm: PalletXcmOrigin;3381 readonly isCumulusXcm: boolean;3382 readonly asCumulusXcm: CumulusPalletXcmOrigin;3383 readonly isEthereum: boolean;3384 readonly asEthereum: PalletEthereumRawOrigin;3385 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3386 }33873388 /** @name FrameSupportDispatchRawOrigin (384) */3389 interface FrameSupportDispatchRawOrigin extends Enum {3390 readonly isRoot: boolean;3391 readonly isSigned: boolean;3392 readonly asSigned: AccountId32;3393 readonly isNone: boolean;3394 readonly type: 'Root' | 'Signed' | 'None';3395 }33963397 /** @name PalletXcmOrigin (385) */3398 interface PalletXcmOrigin extends Enum {3399 readonly isXcm: boolean;3400 readonly asXcm: XcmV1MultiLocation;3401 readonly isResponse: boolean;3402 readonly asResponse: XcmV1MultiLocation;3403 readonly type: 'Xcm' | 'Response';3404 }34053406 /** @name CumulusPalletXcmOrigin (386) */3407 interface CumulusPalletXcmOrigin extends Enum {3408 readonly isRelay: boolean;3409 readonly isSiblingParachain: boolean;3410 readonly asSiblingParachain: u32;3411 readonly type: 'Relay' | 'SiblingParachain';3412 }34133414 /** @name PalletEthereumRawOrigin (387) */3415 interface PalletEthereumRawOrigin extends Enum {3416 readonly isEthereumTransaction: boolean;3417 readonly asEthereumTransaction: H160;3418 readonly type: 'EthereumTransaction';3419 }34203421 /** @name SpCoreVoid (388) */3422 type SpCoreVoid = Null;34233424 /** @name PalletUniqueSchedulerError (389) */3425 interface PalletUniqueSchedulerError extends Enum {3426 readonly isFailedToSchedule: boolean;3427 readonly isNotFound: boolean;3428 readonly isTargetBlockNumberInPast: boolean;3429 readonly isRescheduleNoChange: boolean;3430 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';3431 }34323433 /** @name UpDataStructsCollection (390) */3434 interface UpDataStructsCollection extends Struct {3435 readonly owner: AccountId32;3436 readonly mode: UpDataStructsCollectionMode;3437 readonly name: Vec<u16>;3438 readonly description: Vec<u16>;3439 readonly tokenPrefix: Bytes;3440 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3441 readonly limits: UpDataStructsCollectionLimits;3442 readonly permissions: UpDataStructsCollectionPermissions;3443 readonly flags: U8aFixed;3444 }34453446 /** @name UpDataStructsSponsorshipStateAccountId32 (391) */3447 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3448 readonly isDisabled: boolean;3449 readonly isUnconfirmed: boolean;3450 readonly asUnconfirmed: AccountId32;3451 readonly isConfirmed: boolean;3452 readonly asConfirmed: AccountId32;3453 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3454 }34553456 /** @name UpDataStructsProperties (393) */3457 interface UpDataStructsProperties extends Struct {3458 readonly map: UpDataStructsPropertiesMapBoundedVec;3459 readonly consumedSpace: u32;3460 readonly spaceLimit: u32;3461 }34623463 /** @name UpDataStructsPropertiesMapBoundedVec (394) */3464 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}34653466 /** @name UpDataStructsPropertiesMapPropertyPermission (399) */3467 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}34683469 /** @name UpDataStructsCollectionStats (406) */3470 interface UpDataStructsCollectionStats extends Struct {3471 readonly created: u32;3472 readonly destroyed: u32;3473 readonly alive: u32;3474 }34753476 /** @name UpDataStructsTokenChild (407) */3477 interface UpDataStructsTokenChild extends Struct {3478 readonly token: u32;3479 readonly collection: u32;3480 }34813482 /** @name PhantomTypeUpDataStructs (408) */3483 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}34843485 /** @name UpDataStructsTokenData (410) */3486 interface UpDataStructsTokenData extends Struct {3487 readonly properties: Vec<UpDataStructsProperty>;3488 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3489 readonly pieces: u128;3490 }34913492 /** @name UpDataStructsRpcCollection (412) */3493 interface UpDataStructsRpcCollection extends Struct {3494 readonly owner: AccountId32;3495 readonly mode: UpDataStructsCollectionMode;3496 readonly name: Vec<u16>;3497 readonly description: Vec<u16>;3498 readonly tokenPrefix: Bytes;3499 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3500 readonly limits: UpDataStructsCollectionLimits;3501 readonly permissions: UpDataStructsCollectionPermissions;3502 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3503 readonly properties: Vec<UpDataStructsProperty>;3504 readonly readOnly: bool;3505 readonly flags: UpDataStructsRpcCollectionFlags;3506 }35073508 /** @name UpDataStructsRpcCollectionFlags (413) */3509 interface UpDataStructsRpcCollectionFlags extends Struct {3510 readonly foreign: bool;3511 readonly erc721metadata: bool;3512 }35133514 /** @name RmrkTraitsCollectionCollectionInfo (414) */3515 interface RmrkTraitsCollectionCollectionInfo extends Struct {3516 readonly issuer: AccountId32;3517 readonly metadata: Bytes;3518 readonly max: Option<u32>;3519 readonly symbol: Bytes;3520 readonly nftsCount: u32;3521 }35223523 /** @name RmrkTraitsNftNftInfo (415) */3524 interface RmrkTraitsNftNftInfo extends Struct {3525 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3526 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3527 readonly metadata: Bytes;3528 readonly equipped: bool;3529 readonly pending: bool;3530 }35313532 /** @name RmrkTraitsNftRoyaltyInfo (417) */3533 interface RmrkTraitsNftRoyaltyInfo extends Struct {3534 readonly recipient: AccountId32;3535 readonly amount: Permill;3536 }35373538 /** @name RmrkTraitsResourceResourceInfo (418) */3539 interface RmrkTraitsResourceResourceInfo extends Struct {3540 readonly id: u32;3541 readonly resource: RmrkTraitsResourceResourceTypes;3542 readonly pending: bool;3543 readonly pendingRemoval: bool;3544 }35453546 /** @name RmrkTraitsPropertyPropertyInfo (419) */3547 interface RmrkTraitsPropertyPropertyInfo extends Struct {3548 readonly key: Bytes;3549 readonly value: Bytes;3550 }35513552 /** @name RmrkTraitsBaseBaseInfo (420) */3553 interface RmrkTraitsBaseBaseInfo extends Struct {3554 readonly issuer: AccountId32;3555 readonly baseType: Bytes;3556 readonly symbol: Bytes;3557 }35583559 /** @name RmrkTraitsNftNftChild (421) */3560 interface RmrkTraitsNftNftChild extends Struct {3561 readonly collectionId: u32;3562 readonly nftId: u32;3563 }35643565 /** @name PalletCommonError (423) */3566 interface PalletCommonError extends Enum {3567 readonly isCollectionNotFound: boolean;3568 readonly isMustBeTokenOwner: boolean;3569 readonly isNoPermission: boolean;3570 readonly isCantDestroyNotEmptyCollection: boolean;3571 readonly isPublicMintingNotAllowed: boolean;3572 readonly isAddressNotInAllowlist: boolean;3573 readonly isCollectionNameLimitExceeded: boolean;3574 readonly isCollectionDescriptionLimitExceeded: boolean;3575 readonly isCollectionTokenPrefixLimitExceeded: boolean;3576 readonly isTotalCollectionsLimitExceeded: boolean;3577 readonly isCollectionAdminCountExceeded: boolean;3578 readonly isCollectionLimitBoundsExceeded: boolean;3579 readonly isOwnerPermissionsCantBeReverted: boolean;3580 readonly isTransferNotAllowed: boolean;3581 readonly isAccountTokenLimitExceeded: boolean;3582 readonly isCollectionTokenLimitExceeded: boolean;3583 readonly isMetadataFlagFrozen: boolean;3584 readonly isTokenNotFound: boolean;3585 readonly isTokenValueTooLow: boolean;3586 readonly isApprovedValueTooLow: boolean;3587 readonly isCantApproveMoreThanOwned: boolean;3588 readonly isAddressIsZero: boolean;3589 readonly isUnsupportedOperation: boolean;3590 readonly isNotSufficientFounds: boolean;3591 readonly isUserIsNotAllowedToNest: boolean;3592 readonly isSourceCollectionIsNotAllowedToNest: boolean;3593 readonly isCollectionFieldSizeExceeded: boolean;3594 readonly isNoSpaceForProperty: boolean;3595 readonly isPropertyLimitReached: boolean;3596 readonly isPropertyKeyIsTooLong: boolean;3597 readonly isInvalidCharacterInPropertyKey: boolean;3598 readonly isEmptyPropertyKey: boolean;3599 readonly isCollectionIsExternal: boolean;3600 readonly isCollectionIsInternal: boolean;3601 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';3602 }36033604 /** @name PalletFungibleError (425) */3605 interface PalletFungibleError extends Enum {3606 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3607 readonly isFungibleItemsHaveNoId: boolean;3608 readonly isFungibleItemsDontHaveData: boolean;3609 readonly isFungibleDisallowsNesting: boolean;3610 readonly isSettingPropertiesNotAllowed: boolean;3611 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3612 }36133614 /** @name PalletRefungibleItemData (426) */3615 interface PalletRefungibleItemData extends Struct {3616 readonly constData: Bytes;3617 }36183619 /** @name PalletRefungibleError (431) */3620 interface PalletRefungibleError extends Enum {3621 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3622 readonly isWrongRefungiblePieces: boolean;3623 readonly isRepartitionWhileNotOwningAllPieces: boolean;3624 readonly isRefungibleDisallowsNesting: boolean;3625 readonly isSettingPropertiesNotAllowed: boolean;3626 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3627 }36283629 /** @name PalletNonfungibleItemData (432) */3630 interface PalletNonfungibleItemData extends Struct {3631 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3632 }36333634 /** @name UpDataStructsPropertyScope (434) */3635 interface UpDataStructsPropertyScope extends Enum {3636 readonly isNone: boolean;3637 readonly isRmrk: boolean;3638 readonly type: 'None' | 'Rmrk';3639 }36403641 /** @name PalletNonfungibleError (436) */3642 interface PalletNonfungibleError extends Enum {3643 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3644 readonly isNonfungibleItemsHaveNoAmount: boolean;3645 readonly isCantBurnNftWithChildren: boolean;3646 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3647 }36483649 /** @name PalletStructureError (437) */3650 interface PalletStructureError extends Enum {3651 readonly isOuroborosDetected: boolean;3652 readonly isDepthLimit: boolean;3653 readonly isBreadthLimit: boolean;3654 readonly isTokenNotFound: boolean;3655 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3656 }36573658 /** @name PalletRmrkCoreError (438) */3659 interface PalletRmrkCoreError extends Enum {3660 readonly isCorruptedCollectionType: boolean;3661 readonly isRmrkPropertyKeyIsTooLong: boolean;3662 readonly isRmrkPropertyValueIsTooLong: boolean;3663 readonly isRmrkPropertyIsNotFound: boolean;3664 readonly isUnableToDecodeRmrkData: boolean;3665 readonly isCollectionNotEmpty: boolean;3666 readonly isNoAvailableCollectionId: boolean;3667 readonly isNoAvailableNftId: boolean;3668 readonly isCollectionUnknown: boolean;3669 readonly isNoPermission: boolean;3670 readonly isNonTransferable: boolean;3671 readonly isCollectionFullOrLocked: boolean;3672 readonly isResourceDoesntExist: boolean;3673 readonly isCannotSendToDescendentOrSelf: boolean;3674 readonly isCannotAcceptNonOwnedNft: boolean;3675 readonly isCannotRejectNonOwnedNft: boolean;3676 readonly isCannotRejectNonPendingNft: boolean;3677 readonly isResourceNotPending: boolean;3678 readonly isNoAvailableResourceId: boolean;3679 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3680 }36813682 /** @name PalletRmrkEquipError (440) */3683 interface PalletRmrkEquipError extends Enum {3684 readonly isPermissionError: boolean;3685 readonly isNoAvailableBaseId: boolean;3686 readonly isNoAvailablePartId: boolean;3687 readonly isBaseDoesntExist: boolean;3688 readonly isNeedsDefaultThemeFirst: boolean;3689 readonly isPartDoesntExist: boolean;3690 readonly isNoEquippableOnFixedPart: boolean;3691 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3692 }36933694 /** @name PalletAppPromotionError (446) */3695 interface PalletAppPromotionError extends Enum {3696 readonly isAdminNotSet: boolean;3697 readonly isNoPermission: boolean;3698 readonly isNotSufficientFunds: boolean;3699 readonly isPendingForBlockOverflow: boolean;3700 readonly isSponsorNotSet: boolean;3701 readonly isIncorrectLockedBalanceOperation: boolean;3702 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3703 }37043705 /** @name PalletForeignAssetsModuleError (447) */3706 interface PalletForeignAssetsModuleError extends Enum {3707 readonly isBadLocation: boolean;3708 readonly isMultiLocationExisted: boolean;3709 readonly isAssetIdNotExists: boolean;3710 readonly isAssetIdExisted: boolean;3711 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3712 }37133714 /** @name PalletEvmError (450) */3715 interface PalletEvmError extends Enum {3716 readonly isBalanceLow: boolean;3717 readonly isFeeOverflow: boolean;3718 readonly isPaymentOverflow: boolean;3719 readonly isWithdrawFailed: boolean;3720 readonly isGasPriceTooLow: boolean;3721 readonly isInvalidNonce: boolean;3722 readonly isGasLimitTooLow: boolean;3723 readonly isGasLimitTooHigh: boolean;3724 readonly isUndefined: boolean;3725 readonly isReentrancy: boolean;3726 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3727 }37283729 /** @name FpRpcTransactionStatus (453) */3730 interface FpRpcTransactionStatus extends Struct {3731 readonly transactionHash: H256;3732 readonly transactionIndex: u32;3733 readonly from: H160;3734 readonly to: Option<H160>;3735 readonly contractAddress: Option<H160>;3736 readonly logs: Vec<EthereumLog>;3737 readonly logsBloom: EthbloomBloom;3738 }37393740 /** @name EthbloomBloom (455) */3741 interface EthbloomBloom extends U8aFixed {}37423743 /** @name EthereumReceiptReceiptV3 (457) */3744 interface EthereumReceiptReceiptV3 extends Enum {3745 readonly isLegacy: boolean;3746 readonly asLegacy: EthereumReceiptEip658ReceiptData;3747 readonly isEip2930: boolean;3748 readonly asEip2930: EthereumReceiptEip658ReceiptData;3749 readonly isEip1559: boolean;3750 readonly asEip1559: EthereumReceiptEip658ReceiptData;3751 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3752 }37533754 /** @name EthereumReceiptEip658ReceiptData (458) */3755 interface EthereumReceiptEip658ReceiptData extends Struct {3756 readonly statusCode: u8;3757 readonly usedGas: U256;3758 readonly logsBloom: EthbloomBloom;3759 readonly logs: Vec<EthereumLog>;3760 }37613762 /** @name EthereumBlock (459) */3763 interface EthereumBlock extends Struct {3764 readonly header: EthereumHeader;3765 readonly transactions: Vec<EthereumTransactionTransactionV2>;3766 readonly ommers: Vec<EthereumHeader>;3767 }37683769 /** @name EthereumHeader (460) */3770 interface EthereumHeader extends Struct {3771 readonly parentHash: H256;3772 readonly ommersHash: H256;3773 readonly beneficiary: H160;3774 readonly stateRoot: H256;3775 readonly transactionsRoot: H256;3776 readonly receiptsRoot: H256;3777 readonly logsBloom: EthbloomBloom;3778 readonly difficulty: U256;3779 readonly number: U256;3780 readonly gasLimit: U256;3781 readonly gasUsed: U256;3782 readonly timestamp: u64;3783 readonly extraData: Bytes;3784 readonly mixHash: H256;3785 readonly nonce: EthereumTypesHashH64;3786 }37873788 /** @name EthereumTypesHashH64 (461) */3789 interface EthereumTypesHashH64 extends U8aFixed {}37903791 /** @name PalletEthereumError (466) */3792 interface PalletEthereumError extends Enum {3793 readonly isInvalidSignature: boolean;3794 readonly isPreLogExists: boolean;3795 readonly type: 'InvalidSignature' | 'PreLogExists';3796 }37973798 /** @name PalletEvmCoderSubstrateError (467) */3799 interface PalletEvmCoderSubstrateError extends Enum {3800 readonly isOutOfGas: boolean;3801 readonly isOutOfFund: boolean;3802 readonly type: 'OutOfGas' | 'OutOfFund';3803 }38043805 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (468) */3806 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3807 readonly isDisabled: boolean;3808 readonly isUnconfirmed: boolean;3809 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3810 readonly isConfirmed: boolean;3811 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3812 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3813 }38143815 /** @name PalletEvmContractHelpersSponsoringModeT (469) */3816 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3817 readonly isDisabled: boolean;3818 readonly isAllowlisted: boolean;3819 readonly isGenerous: boolean;3820 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3821 }38223823 /** @name PalletEvmContractHelpersError (475) */3824 interface PalletEvmContractHelpersError extends Enum {3825 readonly isNoPermission: boolean;3826 readonly isNoPendingSponsor: boolean;3827 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3828 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3829 }38303831 /** @name PalletEvmMigrationError (476) */3832 interface PalletEvmMigrationError extends Enum {3833 readonly isAccountNotEmpty: boolean;3834 readonly isAccountIsNotMigrating: boolean;3835 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3836 }38373838 /** @name PalletMaintenanceError (477) */3839 type PalletMaintenanceError = Null;38403841 /** @name PalletTestUtilsError (478) */3842 interface PalletTestUtilsError extends Enum {3843 readonly isTestPalletDisabled: boolean;3844 readonly isTriggerRollback: boolean;3845 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3846 }38473848 /** @name SpRuntimeMultiSignature (480) */3849 interface SpRuntimeMultiSignature extends Enum {3850 readonly isEd25519: boolean;3851 readonly asEd25519: SpCoreEd25519Signature;3852 readonly isSr25519: boolean;3853 readonly asSr25519: SpCoreSr25519Signature;3854 readonly isEcdsa: boolean;3855 readonly asEcdsa: SpCoreEcdsaSignature;3856 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3857 }38583859 /** @name SpCoreEd25519Signature (481) */3860 interface SpCoreEd25519Signature extends U8aFixed {}38613862 /** @name SpCoreSr25519Signature (483) */3863 interface SpCoreSr25519Signature extends U8aFixed {}38643865 /** @name SpCoreEcdsaSignature (484) */3866 interface SpCoreEcdsaSignature extends U8aFixed {}38673868 /** @name FrameSystemExtensionsCheckSpecVersion (487) */3869 type FrameSystemExtensionsCheckSpecVersion = Null;38703871 /** @name FrameSystemExtensionsCheckTxVersion (488) */3872 type FrameSystemExtensionsCheckTxVersion = Null;38733874 /** @name FrameSystemExtensionsCheckGenesis (489) */3875 type FrameSystemExtensionsCheckGenesis = Null;38763877 /** @name FrameSystemExtensionsCheckNonce (492) */3878 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}38793880 /** @name FrameSystemExtensionsCheckWeight (493) */3881 type FrameSystemExtensionsCheckWeight = Null;38823883 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (494) */3884 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;38853886 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (495) */3887 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}38883889 /** @name OpalRuntimeRuntime (496) */3890 type OpalRuntimeRuntime = Null;38913892 /** @name PalletEthereumFakeTransactionFinalizer (497) */3893 type PalletEthereumFakeTransactionFinalizer = Null;38943895} // declare module1// 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 { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { ITuple } from '@polkadot/types-codec/types';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';11import type { Event } from '@polkadot/types/interfaces/system';1213declare module '@polkadot/types/lookup' {14 /** @name FrameSystemAccountInfo (3) */15 interface FrameSystemAccountInfo extends Struct {16 readonly nonce: u32;17 readonly consumers: u32;18 readonly providers: u32;19 readonly sufficients: u32;20 readonly data: PalletBalancesAccountData;21 }2223 /** @name PalletBalancesAccountData (5) */24 interface PalletBalancesAccountData extends Struct {25 readonly free: u128;26 readonly reserved: u128;27 readonly miscFrozen: u128;28 readonly feeFrozen: u128;29 }3031 /** @name FrameSupportDispatchPerDispatchClassWeight (7) */32 interface FrameSupportDispatchPerDispatchClassWeight extends Struct {33 readonly normal: Weight;34 readonly operational: Weight;35 readonly mandatory: Weight;36 }3738 /** @name SpRuntimeDigest (12) */39 interface SpRuntimeDigest extends Struct {40 readonly logs: Vec<SpRuntimeDigestDigestItem>;41 }4243 /** @name SpRuntimeDigestDigestItem (14) */44 interface SpRuntimeDigestDigestItem extends Enum {45 readonly isOther: boolean;46 readonly asOther: Bytes;47 readonly isConsensus: boolean;48 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;49 readonly isSeal: boolean;50 readonly asSeal: ITuple<[U8aFixed, Bytes]>;51 readonly isPreRuntime: boolean;52 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;53 readonly isRuntimeEnvironmentUpdated: boolean;54 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';55 }5657 /** @name FrameSystemEventRecord (17) */58 interface FrameSystemEventRecord extends Struct {59 readonly phase: FrameSystemPhase;60 readonly event: Event;61 readonly topics: Vec<H256>;62 }6364 /** @name FrameSystemEvent (19) */65 interface FrameSystemEvent extends Enum {66 readonly isExtrinsicSuccess: boolean;67 readonly asExtrinsicSuccess: {68 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;69 } & Struct;70 readonly isExtrinsicFailed: boolean;71 readonly asExtrinsicFailed: {72 readonly dispatchError: SpRuntimeDispatchError;73 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;74 } & Struct;75 readonly isCodeUpdated: boolean;76 readonly isNewAccount: boolean;77 readonly asNewAccount: {78 readonly account: AccountId32;79 } & Struct;80 readonly isKilledAccount: boolean;81 readonly asKilledAccount: {82 readonly account: AccountId32;83 } & Struct;84 readonly isRemarked: boolean;85 readonly asRemarked: {86 readonly sender: AccountId32;87 readonly hash_: H256;88 } & Struct;89 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';90 }9192 /** @name FrameSupportDispatchDispatchInfo (20) */93 interface FrameSupportDispatchDispatchInfo extends Struct {94 readonly weight: Weight;95 readonly class: FrameSupportDispatchDispatchClass;96 readonly paysFee: FrameSupportDispatchPays;97 }9899 /** @name FrameSupportDispatchDispatchClass (21) */100 interface FrameSupportDispatchDispatchClass extends Enum {101 readonly isNormal: boolean;102 readonly isOperational: boolean;103 readonly isMandatory: boolean;104 readonly type: 'Normal' | 'Operational' | 'Mandatory';105 }106107 /** @name FrameSupportDispatchPays (22) */108 interface FrameSupportDispatchPays extends Enum {109 readonly isYes: boolean;110 readonly isNo: boolean;111 readonly type: 'Yes' | 'No';112 }113114 /** @name SpRuntimeDispatchError (23) */115 interface SpRuntimeDispatchError extends Enum {116 readonly isOther: boolean;117 readonly isCannotLookup: boolean;118 readonly isBadOrigin: boolean;119 readonly isModule: boolean;120 readonly asModule: SpRuntimeModuleError;121 readonly isConsumerRemaining: boolean;122 readonly isNoProviders: boolean;123 readonly isTooManyConsumers: boolean;124 readonly isToken: boolean;125 readonly asToken: SpRuntimeTokenError;126 readonly isArithmetic: boolean;127 readonly asArithmetic: SpRuntimeArithmeticError;128 readonly isTransactional: boolean;129 readonly asTransactional: SpRuntimeTransactionalError;130 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional';131 }132133 /** @name SpRuntimeModuleError (24) */134 interface SpRuntimeModuleError extends Struct {135 readonly index: u8;136 readonly error: U8aFixed;137 }138139 /** @name SpRuntimeTokenError (25) */140 interface SpRuntimeTokenError extends Enum {141 readonly isNoFunds: boolean;142 readonly isWouldDie: boolean;143 readonly isBelowMinimum: boolean;144 readonly isCannotCreate: boolean;145 readonly isUnknownAsset: boolean;146 readonly isFrozen: boolean;147 readonly isUnsupported: boolean;148 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';149 }150151 /** @name SpRuntimeArithmeticError (26) */152 interface SpRuntimeArithmeticError extends Enum {153 readonly isUnderflow: boolean;154 readonly isOverflow: boolean;155 readonly isDivisionByZero: boolean;156 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';157 }158159 /** @name SpRuntimeTransactionalError (27) */160 interface SpRuntimeTransactionalError extends Enum {161 readonly isLimitReached: boolean;162 readonly isNoLayer: boolean;163 readonly type: 'LimitReached' | 'NoLayer';164 }165166 /** @name CumulusPalletParachainSystemEvent (28) */167 interface CumulusPalletParachainSystemEvent extends Enum {168 readonly isValidationFunctionStored: boolean;169 readonly isValidationFunctionApplied: boolean;170 readonly asValidationFunctionApplied: {171 readonly relayChainBlockNum: u32;172 } & Struct;173 readonly isValidationFunctionDiscarded: boolean;174 readonly isUpgradeAuthorized: boolean;175 readonly asUpgradeAuthorized: {176 readonly codeHash: H256;177 } & Struct;178 readonly isDownwardMessagesReceived: boolean;179 readonly asDownwardMessagesReceived: {180 readonly count: u32;181 } & Struct;182 readonly isDownwardMessagesProcessed: boolean;183 readonly asDownwardMessagesProcessed: {184 readonly weightUsed: Weight;185 readonly dmqHead: H256;186 } & Struct;187 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';188 }189190 /** @name PalletBalancesEvent (29) */191 interface PalletBalancesEvent extends Enum {192 readonly isEndowed: boolean;193 readonly asEndowed: {194 readonly account: AccountId32;195 readonly freeBalance: u128;196 } & Struct;197 readonly isDustLost: boolean;198 readonly asDustLost: {199 readonly account: AccountId32;200 readonly amount: u128;201 } & Struct;202 readonly isTransfer: boolean;203 readonly asTransfer: {204 readonly from: AccountId32;205 readonly to: AccountId32;206 readonly amount: u128;207 } & Struct;208 readonly isBalanceSet: boolean;209 readonly asBalanceSet: {210 readonly who: AccountId32;211 readonly free: u128;212 readonly reserved: u128;213 } & Struct;214 readonly isReserved: boolean;215 readonly asReserved: {216 readonly who: AccountId32;217 readonly amount: u128;218 } & Struct;219 readonly isUnreserved: boolean;220 readonly asUnreserved: {221 readonly who: AccountId32;222 readonly amount: u128;223 } & Struct;224 readonly isReserveRepatriated: boolean;225 readonly asReserveRepatriated: {226 readonly from: AccountId32;227 readonly to: AccountId32;228 readonly amount: u128;229 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;230 } & Struct;231 readonly isDeposit: boolean;232 readonly asDeposit: {233 readonly who: AccountId32;234 readonly amount: u128;235 } & Struct;236 readonly isWithdraw: boolean;237 readonly asWithdraw: {238 readonly who: AccountId32;239 readonly amount: u128;240 } & Struct;241 readonly isSlashed: boolean;242 readonly asSlashed: {243 readonly who: AccountId32;244 readonly amount: u128;245 } & Struct;246 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';247 }248249 /** @name FrameSupportTokensMiscBalanceStatus (30) */250 interface FrameSupportTokensMiscBalanceStatus extends Enum {251 readonly isFree: boolean;252 readonly isReserved: boolean;253 readonly type: 'Free' | 'Reserved';254 }255256 /** @name PalletTransactionPaymentEvent (31) */257 interface PalletTransactionPaymentEvent extends Enum {258 readonly isTransactionFeePaid: boolean;259 readonly asTransactionFeePaid: {260 readonly who: AccountId32;261 readonly actualFee: u128;262 readonly tip: u128;263 } & Struct;264 readonly type: 'TransactionFeePaid';265 }266267 /** @name PalletTreasuryEvent (32) */268 interface PalletTreasuryEvent extends Enum {269 readonly isProposed: boolean;270 readonly asProposed: {271 readonly proposalIndex: u32;272 } & Struct;273 readonly isSpending: boolean;274 readonly asSpending: {275 readonly budgetRemaining: u128;276 } & Struct;277 readonly isAwarded: boolean;278 readonly asAwarded: {279 readonly proposalIndex: u32;280 readonly award: u128;281 readonly account: AccountId32;282 } & Struct;283 readonly isRejected: boolean;284 readonly asRejected: {285 readonly proposalIndex: u32;286 readonly slashed: u128;287 } & Struct;288 readonly isBurnt: boolean;289 readonly asBurnt: {290 readonly burntFunds: u128;291 } & Struct;292 readonly isRollover: boolean;293 readonly asRollover: {294 readonly rolloverBalance: u128;295 } & Struct;296 readonly isDeposit: boolean;297 readonly asDeposit: {298 readonly value: u128;299 } & Struct;300 readonly isSpendApproved: boolean;301 readonly asSpendApproved: {302 readonly proposalIndex: u32;303 readonly amount: u128;304 readonly beneficiary: AccountId32;305 } & Struct;306 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';307 }308309 /** @name PalletSudoEvent (33) */310 interface PalletSudoEvent extends Enum {311 readonly isSudid: boolean;312 readonly asSudid: {313 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;314 } & Struct;315 readonly isKeyChanged: boolean;316 readonly asKeyChanged: {317 readonly oldSudoer: Option<AccountId32>;318 } & Struct;319 readonly isSudoAsDone: boolean;320 readonly asSudoAsDone: {321 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;322 } & Struct;323 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';324 }325326 /** @name OrmlVestingModuleEvent (37) */327 interface OrmlVestingModuleEvent extends Enum {328 readonly isVestingScheduleAdded: boolean;329 readonly asVestingScheduleAdded: {330 readonly from: AccountId32;331 readonly to: AccountId32;332 readonly vestingSchedule: OrmlVestingVestingSchedule;333 } & Struct;334 readonly isClaimed: boolean;335 readonly asClaimed: {336 readonly who: AccountId32;337 readonly amount: u128;338 } & Struct;339 readonly isVestingSchedulesUpdated: boolean;340 readonly asVestingSchedulesUpdated: {341 readonly who: AccountId32;342 } & Struct;343 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';344 }345346 /** @name OrmlVestingVestingSchedule (38) */347 interface OrmlVestingVestingSchedule extends Struct {348 readonly start: u32;349 readonly period: u32;350 readonly periodCount: u32;351 readonly perPeriod: Compact<u128>;352 }353354 /** @name OrmlXtokensModuleEvent (40) */355 interface OrmlXtokensModuleEvent extends Enum {356 readonly isTransferredMultiAssets: boolean;357 readonly asTransferredMultiAssets: {358 readonly sender: AccountId32;359 readonly assets: XcmV1MultiassetMultiAssets;360 readonly fee: XcmV1MultiAsset;361 readonly dest: XcmV1MultiLocation;362 } & Struct;363 readonly type: 'TransferredMultiAssets';364 }365366 /** @name XcmV1MultiassetMultiAssets (41) */367 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}368369 /** @name XcmV1MultiAsset (43) */370 interface XcmV1MultiAsset extends Struct {371 readonly id: XcmV1MultiassetAssetId;372 readonly fun: XcmV1MultiassetFungibility;373 }374375 /** @name XcmV1MultiassetAssetId (44) */376 interface XcmV1MultiassetAssetId extends Enum {377 readonly isConcrete: boolean;378 readonly asConcrete: XcmV1MultiLocation;379 readonly isAbstract: boolean;380 readonly asAbstract: Bytes;381 readonly type: 'Concrete' | 'Abstract';382 }383384 /** @name XcmV1MultiLocation (45) */385 interface XcmV1MultiLocation extends Struct {386 readonly parents: u8;387 readonly interior: XcmV1MultilocationJunctions;388 }389390 /** @name XcmV1MultilocationJunctions (46) */391 interface XcmV1MultilocationJunctions extends Enum {392 readonly isHere: boolean;393 readonly isX1: boolean;394 readonly asX1: XcmV1Junction;395 readonly isX2: boolean;396 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;397 readonly isX3: boolean;398 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;399 readonly isX4: boolean;400 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;401 readonly isX5: boolean;402 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;403 readonly isX6: boolean;404 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;405 readonly isX7: boolean;406 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;407 readonly isX8: boolean;408 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;409 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';410 }411412 /** @name XcmV1Junction (47) */413 interface XcmV1Junction extends Enum {414 readonly isParachain: boolean;415 readonly asParachain: Compact<u32>;416 readonly isAccountId32: boolean;417 readonly asAccountId32: {418 readonly network: XcmV0JunctionNetworkId;419 readonly id: U8aFixed;420 } & Struct;421 readonly isAccountIndex64: boolean;422 readonly asAccountIndex64: {423 readonly network: XcmV0JunctionNetworkId;424 readonly index: Compact<u64>;425 } & Struct;426 readonly isAccountKey20: boolean;427 readonly asAccountKey20: {428 readonly network: XcmV0JunctionNetworkId;429 readonly key: U8aFixed;430 } & Struct;431 readonly isPalletInstance: boolean;432 readonly asPalletInstance: u8;433 readonly isGeneralIndex: boolean;434 readonly asGeneralIndex: Compact<u128>;435 readonly isGeneralKey: boolean;436 readonly asGeneralKey: Bytes;437 readonly isOnlyChild: boolean;438 readonly isPlurality: boolean;439 readonly asPlurality: {440 readonly id: XcmV0JunctionBodyId;441 readonly part: XcmV0JunctionBodyPart;442 } & Struct;443 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';444 }445446 /** @name XcmV0JunctionNetworkId (49) */447 interface XcmV0JunctionNetworkId extends Enum {448 readonly isAny: boolean;449 readonly isNamed: boolean;450 readonly asNamed: Bytes;451 readonly isPolkadot: boolean;452 readonly isKusama: boolean;453 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';454 }455456 /** @name XcmV0JunctionBodyId (53) */457 interface XcmV0JunctionBodyId extends Enum {458 readonly isUnit: boolean;459 readonly isNamed: boolean;460 readonly asNamed: Bytes;461 readonly isIndex: boolean;462 readonly asIndex: Compact<u32>;463 readonly isExecutive: boolean;464 readonly isTechnical: boolean;465 readonly isLegislative: boolean;466 readonly isJudicial: boolean;467 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';468 }469470 /** @name XcmV0JunctionBodyPart (54) */471 interface XcmV0JunctionBodyPart extends Enum {472 readonly isVoice: boolean;473 readonly isMembers: boolean;474 readonly asMembers: {475 readonly count: Compact<u32>;476 } & Struct;477 readonly isFraction: boolean;478 readonly asFraction: {479 readonly nom: Compact<u32>;480 readonly denom: Compact<u32>;481 } & Struct;482 readonly isAtLeastProportion: boolean;483 readonly asAtLeastProportion: {484 readonly nom: Compact<u32>;485 readonly denom: Compact<u32>;486 } & Struct;487 readonly isMoreThanProportion: boolean;488 readonly asMoreThanProportion: {489 readonly nom: Compact<u32>;490 readonly denom: Compact<u32>;491 } & Struct;492 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';493 }494495 /** @name XcmV1MultiassetFungibility (55) */496 interface XcmV1MultiassetFungibility extends Enum {497 readonly isFungible: boolean;498 readonly asFungible: Compact<u128>;499 readonly isNonFungible: boolean;500 readonly asNonFungible: XcmV1MultiassetAssetInstance;501 readonly type: 'Fungible' | 'NonFungible';502 }503504 /** @name XcmV1MultiassetAssetInstance (56) */505 interface XcmV1MultiassetAssetInstance extends Enum {506 readonly isUndefined: boolean;507 readonly isIndex: boolean;508 readonly asIndex: Compact<u128>;509 readonly isArray4: boolean;510 readonly asArray4: U8aFixed;511 readonly isArray8: boolean;512 readonly asArray8: U8aFixed;513 readonly isArray16: boolean;514 readonly asArray16: U8aFixed;515 readonly isArray32: boolean;516 readonly asArray32: U8aFixed;517 readonly isBlob: boolean;518 readonly asBlob: Bytes;519 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';520 }521522 /** @name OrmlTokensModuleEvent (59) */523 interface OrmlTokensModuleEvent extends Enum {524 readonly isEndowed: boolean;525 readonly asEndowed: {526 readonly currencyId: PalletForeignAssetsAssetIds;527 readonly who: AccountId32;528 readonly amount: u128;529 } & Struct;530 readonly isDustLost: boolean;531 readonly asDustLost: {532 readonly currencyId: PalletForeignAssetsAssetIds;533 readonly who: AccountId32;534 readonly amount: u128;535 } & Struct;536 readonly isTransfer: boolean;537 readonly asTransfer: {538 readonly currencyId: PalletForeignAssetsAssetIds;539 readonly from: AccountId32;540 readonly to: AccountId32;541 readonly amount: u128;542 } & Struct;543 readonly isReserved: boolean;544 readonly asReserved: {545 readonly currencyId: PalletForeignAssetsAssetIds;546 readonly who: AccountId32;547 readonly amount: u128;548 } & Struct;549 readonly isUnreserved: boolean;550 readonly asUnreserved: {551 readonly currencyId: PalletForeignAssetsAssetIds;552 readonly who: AccountId32;553 readonly amount: u128;554 } & Struct;555 readonly isReserveRepatriated: boolean;556 readonly asReserveRepatriated: {557 readonly currencyId: PalletForeignAssetsAssetIds;558 readonly from: AccountId32;559 readonly to: AccountId32;560 readonly amount: u128;561 readonly status: FrameSupportTokensMiscBalanceStatus;562 } & Struct;563 readonly isBalanceSet: boolean;564 readonly asBalanceSet: {565 readonly currencyId: PalletForeignAssetsAssetIds;566 readonly who: AccountId32;567 readonly free: u128;568 readonly reserved: u128;569 } & Struct;570 readonly isTotalIssuanceSet: boolean;571 readonly asTotalIssuanceSet: {572 readonly currencyId: PalletForeignAssetsAssetIds;573 readonly amount: u128;574 } & Struct;575 readonly isWithdrawn: boolean;576 readonly asWithdrawn: {577 readonly currencyId: PalletForeignAssetsAssetIds;578 readonly who: AccountId32;579 readonly amount: u128;580 } & Struct;581 readonly isSlashed: boolean;582 readonly asSlashed: {583 readonly currencyId: PalletForeignAssetsAssetIds;584 readonly who: AccountId32;585 readonly freeAmount: u128;586 readonly reservedAmount: u128;587 } & Struct;588 readonly isDeposited: boolean;589 readonly asDeposited: {590 readonly currencyId: PalletForeignAssetsAssetIds;591 readonly who: AccountId32;592 readonly amount: u128;593 } & Struct;594 readonly isLockSet: boolean;595 readonly asLockSet: {596 readonly lockId: U8aFixed;597 readonly currencyId: PalletForeignAssetsAssetIds;598 readonly who: AccountId32;599 readonly amount: u128;600 } & Struct;601 readonly isLockRemoved: boolean;602 readonly asLockRemoved: {603 readonly lockId: U8aFixed;604 readonly currencyId: PalletForeignAssetsAssetIds;605 readonly who: AccountId32;606 } & Struct;607 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';608 }609610 /** @name PalletForeignAssetsAssetIds (60) */611 interface PalletForeignAssetsAssetIds extends Enum {612 readonly isForeignAssetId: boolean;613 readonly asForeignAssetId: u32;614 readonly isNativeAssetId: boolean;615 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;616 readonly type: 'ForeignAssetId' | 'NativeAssetId';617 }618619 /** @name PalletForeignAssetsNativeCurrency (61) */620 interface PalletForeignAssetsNativeCurrency extends Enum {621 readonly isHere: boolean;622 readonly isParent: boolean;623 readonly type: 'Here' | 'Parent';624 }625626 /** @name CumulusPalletXcmpQueueEvent (62) */627 interface CumulusPalletXcmpQueueEvent extends Enum {628 readonly isSuccess: boolean;629 readonly asSuccess: {630 readonly messageHash: Option<H256>;631 readonly weight: Weight;632 } & Struct;633 readonly isFail: boolean;634 readonly asFail: {635 readonly messageHash: Option<H256>;636 readonly error: XcmV2TraitsError;637 readonly weight: Weight;638 } & Struct;639 readonly isBadVersion: boolean;640 readonly asBadVersion: {641 readonly messageHash: Option<H256>;642 } & Struct;643 readonly isBadFormat: boolean;644 readonly asBadFormat: {645 readonly messageHash: Option<H256>;646 } & Struct;647 readonly isUpwardMessageSent: boolean;648 readonly asUpwardMessageSent: {649 readonly messageHash: Option<H256>;650 } & Struct;651 readonly isXcmpMessageSent: boolean;652 readonly asXcmpMessageSent: {653 readonly messageHash: Option<H256>;654 } & Struct;655 readonly isOverweightEnqueued: boolean;656 readonly asOverweightEnqueued: {657 readonly sender: u32;658 readonly sentAt: u32;659 readonly index: u64;660 readonly required: Weight;661 } & Struct;662 readonly isOverweightServiced: boolean;663 readonly asOverweightServiced: {664 readonly index: u64;665 readonly used: Weight;666 } & Struct;667 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';668 }669670 /** @name XcmV2TraitsError (64) */671 interface XcmV2TraitsError extends Enum {672 readonly isOverflow: boolean;673 readonly isUnimplemented: boolean;674 readonly isUntrustedReserveLocation: boolean;675 readonly isUntrustedTeleportLocation: boolean;676 readonly isMultiLocationFull: boolean;677 readonly isMultiLocationNotInvertible: boolean;678 readonly isBadOrigin: boolean;679 readonly isInvalidLocation: boolean;680 readonly isAssetNotFound: boolean;681 readonly isFailedToTransactAsset: boolean;682 readonly isNotWithdrawable: boolean;683 readonly isLocationCannotHold: boolean;684 readonly isExceedsMaxMessageSize: boolean;685 readonly isDestinationUnsupported: boolean;686 readonly isTransport: boolean;687 readonly isUnroutable: boolean;688 readonly isUnknownClaim: boolean;689 readonly isFailedToDecode: boolean;690 readonly isMaxWeightInvalid: boolean;691 readonly isNotHoldingFees: boolean;692 readonly isTooExpensive: boolean;693 readonly isTrap: boolean;694 readonly asTrap: u64;695 readonly isUnhandledXcmVersion: boolean;696 readonly isWeightLimitReached: boolean;697 readonly asWeightLimitReached: u64;698 readonly isBarrier: boolean;699 readonly isWeightNotComputable: boolean;700 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';701 }702703 /** @name PalletXcmEvent (66) */704 interface PalletXcmEvent extends Enum {705 readonly isAttempted: boolean;706 readonly asAttempted: XcmV2TraitsOutcome;707 readonly isSent: boolean;708 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;709 readonly isUnexpectedResponse: boolean;710 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;711 readonly isResponseReady: boolean;712 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;713 readonly isNotified: boolean;714 readonly asNotified: ITuple<[u64, u8, u8]>;715 readonly isNotifyOverweight: boolean;716 readonly asNotifyOverweight: ITuple<[u64, u8, u8, Weight, Weight]>;717 readonly isNotifyDispatchError: boolean;718 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;719 readonly isNotifyDecodeFailed: boolean;720 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;721 readonly isInvalidResponder: boolean;722 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;723 readonly isInvalidResponderVersion: boolean;724 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;725 readonly isResponseTaken: boolean;726 readonly asResponseTaken: u64;727 readonly isAssetsTrapped: boolean;728 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;729 readonly isVersionChangeNotified: boolean;730 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;731 readonly isSupportedVersionChanged: boolean;732 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;733 readonly isNotifyTargetSendFail: boolean;734 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;735 readonly isNotifyTargetMigrationFail: boolean;736 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;737 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail';738 }739740 /** @name XcmV2TraitsOutcome (67) */741 interface XcmV2TraitsOutcome extends Enum {742 readonly isComplete: boolean;743 readonly asComplete: u64;744 readonly isIncomplete: boolean;745 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;746 readonly isError: boolean;747 readonly asError: XcmV2TraitsError;748 readonly type: 'Complete' | 'Incomplete' | 'Error';749 }750751 /** @name XcmV2Xcm (68) */752 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}753754 /** @name XcmV2Instruction (70) */755 interface XcmV2Instruction extends Enum {756 readonly isWithdrawAsset: boolean;757 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;758 readonly isReserveAssetDeposited: boolean;759 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;760 readonly isReceiveTeleportedAsset: boolean;761 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;762 readonly isQueryResponse: boolean;763 readonly asQueryResponse: {764 readonly queryId: Compact<u64>;765 readonly response: XcmV2Response;766 readonly maxWeight: Compact<u64>;767 } & Struct;768 readonly isTransferAsset: boolean;769 readonly asTransferAsset: {770 readonly assets: XcmV1MultiassetMultiAssets;771 readonly beneficiary: XcmV1MultiLocation;772 } & Struct;773 readonly isTransferReserveAsset: boolean;774 readonly asTransferReserveAsset: {775 readonly assets: XcmV1MultiassetMultiAssets;776 readonly dest: XcmV1MultiLocation;777 readonly xcm: XcmV2Xcm;778 } & Struct;779 readonly isTransact: boolean;780 readonly asTransact: {781 readonly originType: XcmV0OriginKind;782 readonly requireWeightAtMost: Compact<u64>;783 readonly call: XcmDoubleEncoded;784 } & Struct;785 readonly isHrmpNewChannelOpenRequest: boolean;786 readonly asHrmpNewChannelOpenRequest: {787 readonly sender: Compact<u32>;788 readonly maxMessageSize: Compact<u32>;789 readonly maxCapacity: Compact<u32>;790 } & Struct;791 readonly isHrmpChannelAccepted: boolean;792 readonly asHrmpChannelAccepted: {793 readonly recipient: Compact<u32>;794 } & Struct;795 readonly isHrmpChannelClosing: boolean;796 readonly asHrmpChannelClosing: {797 readonly initiator: Compact<u32>;798 readonly sender: Compact<u32>;799 readonly recipient: Compact<u32>;800 } & Struct;801 readonly isClearOrigin: boolean;802 readonly isDescendOrigin: boolean;803 readonly asDescendOrigin: XcmV1MultilocationJunctions;804 readonly isReportError: boolean;805 readonly asReportError: {806 readonly queryId: Compact<u64>;807 readonly dest: XcmV1MultiLocation;808 readonly maxResponseWeight: Compact<u64>;809 } & Struct;810 readonly isDepositAsset: boolean;811 readonly asDepositAsset: {812 readonly assets: XcmV1MultiassetMultiAssetFilter;813 readonly maxAssets: Compact<u32>;814 readonly beneficiary: XcmV1MultiLocation;815 } & Struct;816 readonly isDepositReserveAsset: boolean;817 readonly asDepositReserveAsset: {818 readonly assets: XcmV1MultiassetMultiAssetFilter;819 readonly maxAssets: Compact<u32>;820 readonly dest: XcmV1MultiLocation;821 readonly xcm: XcmV2Xcm;822 } & Struct;823 readonly isExchangeAsset: boolean;824 readonly asExchangeAsset: {825 readonly give: XcmV1MultiassetMultiAssetFilter;826 readonly receive: XcmV1MultiassetMultiAssets;827 } & Struct;828 readonly isInitiateReserveWithdraw: boolean;829 readonly asInitiateReserveWithdraw: {830 readonly assets: XcmV1MultiassetMultiAssetFilter;831 readonly reserve: XcmV1MultiLocation;832 readonly xcm: XcmV2Xcm;833 } & Struct;834 readonly isInitiateTeleport: boolean;835 readonly asInitiateTeleport: {836 readonly assets: XcmV1MultiassetMultiAssetFilter;837 readonly dest: XcmV1MultiLocation;838 readonly xcm: XcmV2Xcm;839 } & Struct;840 readonly isQueryHolding: boolean;841 readonly asQueryHolding: {842 readonly queryId: Compact<u64>;843 readonly dest: XcmV1MultiLocation;844 readonly assets: XcmV1MultiassetMultiAssetFilter;845 readonly maxResponseWeight: Compact<u64>;846 } & Struct;847 readonly isBuyExecution: boolean;848 readonly asBuyExecution: {849 readonly fees: XcmV1MultiAsset;850 readonly weightLimit: XcmV2WeightLimit;851 } & Struct;852 readonly isRefundSurplus: boolean;853 readonly isSetErrorHandler: boolean;854 readonly asSetErrorHandler: XcmV2Xcm;855 readonly isSetAppendix: boolean;856 readonly asSetAppendix: XcmV2Xcm;857 readonly isClearError: boolean;858 readonly isClaimAsset: boolean;859 readonly asClaimAsset: {860 readonly assets: XcmV1MultiassetMultiAssets;861 readonly ticket: XcmV1MultiLocation;862 } & Struct;863 readonly isTrap: boolean;864 readonly asTrap: Compact<u64>;865 readonly isSubscribeVersion: boolean;866 readonly asSubscribeVersion: {867 readonly queryId: Compact<u64>;868 readonly maxResponseWeight: Compact<u64>;869 } & Struct;870 readonly isUnsubscribeVersion: boolean;871 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';872 }873874 /** @name XcmV2Response (71) */875 interface XcmV2Response extends Enum {876 readonly isNull: boolean;877 readonly isAssets: boolean;878 readonly asAssets: XcmV1MultiassetMultiAssets;879 readonly isExecutionResult: boolean;880 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;881 readonly isVersion: boolean;882 readonly asVersion: u32;883 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';884 }885886 /** @name XcmV0OriginKind (74) */887 interface XcmV0OriginKind extends Enum {888 readonly isNative: boolean;889 readonly isSovereignAccount: boolean;890 readonly isSuperuser: boolean;891 readonly isXcm: boolean;892 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';893 }894895 /** @name XcmDoubleEncoded (75) */896 interface XcmDoubleEncoded extends Struct {897 readonly encoded: Bytes;898 }899900 /** @name XcmV1MultiassetMultiAssetFilter (76) */901 interface XcmV1MultiassetMultiAssetFilter extends Enum {902 readonly isDefinite: boolean;903 readonly asDefinite: XcmV1MultiassetMultiAssets;904 readonly isWild: boolean;905 readonly asWild: XcmV1MultiassetWildMultiAsset;906 readonly type: 'Definite' | 'Wild';907 }908909 /** @name XcmV1MultiassetWildMultiAsset (77) */910 interface XcmV1MultiassetWildMultiAsset extends Enum {911 readonly isAll: boolean;912 readonly isAllOf: boolean;913 readonly asAllOf: {914 readonly id: XcmV1MultiassetAssetId;915 readonly fun: XcmV1MultiassetWildFungibility;916 } & Struct;917 readonly type: 'All' | 'AllOf';918 }919920 /** @name XcmV1MultiassetWildFungibility (78) */921 interface XcmV1MultiassetWildFungibility extends Enum {922 readonly isFungible: boolean;923 readonly isNonFungible: boolean;924 readonly type: 'Fungible' | 'NonFungible';925 }926927 /** @name XcmV2WeightLimit (79) */928 interface XcmV2WeightLimit extends Enum {929 readonly isUnlimited: boolean;930 readonly isLimited: boolean;931 readonly asLimited: Compact<u64>;932 readonly type: 'Unlimited' | 'Limited';933 }934935 /** @name XcmVersionedMultiAssets (81) */936 interface XcmVersionedMultiAssets extends Enum {937 readonly isV0: boolean;938 readonly asV0: Vec<XcmV0MultiAsset>;939 readonly isV1: boolean;940 readonly asV1: XcmV1MultiassetMultiAssets;941 readonly type: 'V0' | 'V1';942 }943944 /** @name XcmV0MultiAsset (83) */945 interface XcmV0MultiAsset extends Enum {946 readonly isNone: boolean;947 readonly isAll: boolean;948 readonly isAllFungible: boolean;949 readonly isAllNonFungible: boolean;950 readonly isAllAbstractFungible: boolean;951 readonly asAllAbstractFungible: {952 readonly id: Bytes;953 } & Struct;954 readonly isAllAbstractNonFungible: boolean;955 readonly asAllAbstractNonFungible: {956 readonly class: Bytes;957 } & Struct;958 readonly isAllConcreteFungible: boolean;959 readonly asAllConcreteFungible: {960 readonly id: XcmV0MultiLocation;961 } & Struct;962 readonly isAllConcreteNonFungible: boolean;963 readonly asAllConcreteNonFungible: {964 readonly class: XcmV0MultiLocation;965 } & Struct;966 readonly isAbstractFungible: boolean;967 readonly asAbstractFungible: {968 readonly id: Bytes;969 readonly amount: Compact<u128>;970 } & Struct;971 readonly isAbstractNonFungible: boolean;972 readonly asAbstractNonFungible: {973 readonly class: Bytes;974 readonly instance: XcmV1MultiassetAssetInstance;975 } & Struct;976 readonly isConcreteFungible: boolean;977 readonly asConcreteFungible: {978 readonly id: XcmV0MultiLocation;979 readonly amount: Compact<u128>;980 } & Struct;981 readonly isConcreteNonFungible: boolean;982 readonly asConcreteNonFungible: {983 readonly class: XcmV0MultiLocation;984 readonly instance: XcmV1MultiassetAssetInstance;985 } & Struct;986 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';987 }988989 /** @name XcmV0MultiLocation (84) */990 interface XcmV0MultiLocation extends Enum {991 readonly isNull: boolean;992 readonly isX1: boolean;993 readonly asX1: XcmV0Junction;994 readonly isX2: boolean;995 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;996 readonly isX3: boolean;997 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;998 readonly isX4: boolean;999 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1000 readonly isX5: boolean;1001 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1002 readonly isX6: boolean;1003 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1004 readonly isX7: boolean;1005 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1006 readonly isX8: boolean;1007 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1008 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1009 }10101011 /** @name XcmV0Junction (85) */1012 interface XcmV0Junction extends Enum {1013 readonly isParent: boolean;1014 readonly isParachain: boolean;1015 readonly asParachain: Compact<u32>;1016 readonly isAccountId32: boolean;1017 readonly asAccountId32: {1018 readonly network: XcmV0JunctionNetworkId;1019 readonly id: U8aFixed;1020 } & Struct;1021 readonly isAccountIndex64: boolean;1022 readonly asAccountIndex64: {1023 readonly network: XcmV0JunctionNetworkId;1024 readonly index: Compact<u64>;1025 } & Struct;1026 readonly isAccountKey20: boolean;1027 readonly asAccountKey20: {1028 readonly network: XcmV0JunctionNetworkId;1029 readonly key: U8aFixed;1030 } & Struct;1031 readonly isPalletInstance: boolean;1032 readonly asPalletInstance: u8;1033 readonly isGeneralIndex: boolean;1034 readonly asGeneralIndex: Compact<u128>;1035 readonly isGeneralKey: boolean;1036 readonly asGeneralKey: Bytes;1037 readonly isOnlyChild: boolean;1038 readonly isPlurality: boolean;1039 readonly asPlurality: {1040 readonly id: XcmV0JunctionBodyId;1041 readonly part: XcmV0JunctionBodyPart;1042 } & Struct;1043 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1044 }10451046 /** @name XcmVersionedMultiLocation (86) */1047 interface XcmVersionedMultiLocation extends Enum {1048 readonly isV0: boolean;1049 readonly asV0: XcmV0MultiLocation;1050 readonly isV1: boolean;1051 readonly asV1: XcmV1MultiLocation;1052 readonly type: 'V0' | 'V1';1053 }10541055 /** @name CumulusPalletXcmEvent (87) */1056 interface CumulusPalletXcmEvent extends Enum {1057 readonly isInvalidFormat: boolean;1058 readonly asInvalidFormat: U8aFixed;1059 readonly isUnsupportedVersion: boolean;1060 readonly asUnsupportedVersion: U8aFixed;1061 readonly isExecutedDownward: boolean;1062 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;1063 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1064 }10651066 /** @name CumulusPalletDmpQueueEvent (88) */1067 interface CumulusPalletDmpQueueEvent extends Enum {1068 readonly isInvalidFormat: boolean;1069 readonly asInvalidFormat: {1070 readonly messageId: U8aFixed;1071 } & Struct;1072 readonly isUnsupportedVersion: boolean;1073 readonly asUnsupportedVersion: {1074 readonly messageId: U8aFixed;1075 } & Struct;1076 readonly isExecutedDownward: boolean;1077 readonly asExecutedDownward: {1078 readonly messageId: U8aFixed;1079 readonly outcome: XcmV2TraitsOutcome;1080 } & Struct;1081 readonly isWeightExhausted: boolean;1082 readonly asWeightExhausted: {1083 readonly messageId: U8aFixed;1084 readonly remainingWeight: Weight;1085 readonly requiredWeight: Weight;1086 } & Struct;1087 readonly isOverweightEnqueued: boolean;1088 readonly asOverweightEnqueued: {1089 readonly messageId: U8aFixed;1090 readonly overweightIndex: u64;1091 readonly requiredWeight: Weight;1092 } & Struct;1093 readonly isOverweightServiced: boolean;1094 readonly asOverweightServiced: {1095 readonly overweightIndex: u64;1096 readonly weightUsed: Weight;1097 } & Struct;1098 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1099 }11001101 /** @name PalletUniqueRawEvent (89) */1102 interface PalletUniqueRawEvent extends Enum {1103 readonly isCollectionSponsorRemoved: boolean;1104 readonly asCollectionSponsorRemoved: u32;1105 readonly isCollectionAdminAdded: boolean;1106 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1107 readonly isCollectionOwnedChanged: boolean;1108 readonly asCollectionOwnedChanged: ITuple<[u32, AccountId32]>;1109 readonly isCollectionSponsorSet: boolean;1110 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1111 readonly isSponsorshipConfirmed: boolean;1112 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1113 readonly isCollectionAdminRemoved: boolean;1114 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1115 readonly isAllowListAddressRemoved: boolean;1116 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1117 readonly isAllowListAddressAdded: boolean;1118 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1119 readonly isCollectionLimitSet: boolean;1120 readonly asCollectionLimitSet: u32;1121 readonly isCollectionPermissionSet: boolean;1122 readonly asCollectionPermissionSet: u32;1123 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';1124 }11251126 /** @name PalletEvmAccountBasicCrossAccountIdRepr (90) */1127 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1128 readonly isSubstrate: boolean;1129 readonly asSubstrate: AccountId32;1130 readonly isEthereum: boolean;1131 readonly asEthereum: H160;1132 readonly type: 'Substrate' | 'Ethereum';1133 }11341135 /** @name PalletUniqueSchedulerV2Event (93) */1136 interface PalletUniqueSchedulerV2Event extends Enum {1137 readonly isScheduled: boolean;1138 readonly asScheduled: {1139 readonly when: u32;1140 readonly index: u32;1141 } & Struct;1142 readonly isCanceled: boolean;1143 readonly asCanceled: {1144 readonly when: u32;1145 readonly index: u32;1146 } & Struct;1147 readonly isDispatched: boolean;1148 readonly asDispatched: {1149 readonly task: ITuple<[u32, u32]>;1150 readonly id: Option<U8aFixed>;1151 readonly result: Result<Null, SpRuntimeDispatchError>;1152 } & Struct;1153 readonly isPriorityChanged: boolean;1154 readonly asPriorityChanged: {1155 readonly task: ITuple<[u32, u32]>;1156 readonly priority: u8;1157 } & Struct;1158 readonly isCallUnavailable: boolean;1159 readonly asCallUnavailable: {1160 readonly task: ITuple<[u32, u32]>;1161 readonly id: Option<U8aFixed>;1162 } & Struct;1163 readonly isPermanentlyOverweight: boolean;1164 readonly asPermanentlyOverweight: {1165 readonly task: ITuple<[u32, u32]>;1166 readonly id: Option<U8aFixed>;1167 } & Struct;1168 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';1169 }11701171 /** @name PalletCommonEvent (96) */1172 interface PalletCommonEvent extends Enum {1173 readonly isCollectionCreated: boolean;1174 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1175 readonly isCollectionDestroyed: boolean;1176 readonly asCollectionDestroyed: u32;1177 readonly isItemCreated: boolean;1178 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1179 readonly isItemDestroyed: boolean;1180 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1181 readonly isTransfer: boolean;1182 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1183 readonly isApproved: boolean;1184 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1185 readonly isCollectionPropertySet: boolean;1186 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1187 readonly isCollectionPropertyDeleted: boolean;1188 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1189 readonly isTokenPropertySet: boolean;1190 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1191 readonly isTokenPropertyDeleted: boolean;1192 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1193 readonly isPropertyPermissionSet: boolean;1194 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1195 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';1196 }11971198 /** @name PalletStructureEvent (99) */1199 interface PalletStructureEvent extends Enum {1200 readonly isExecuted: boolean;1201 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1202 readonly type: 'Executed';1203 }12041205 /** @name PalletRmrkCoreEvent (100) */1206 interface PalletRmrkCoreEvent extends Enum {1207 readonly isCollectionCreated: boolean;1208 readonly asCollectionCreated: {1209 readonly issuer: AccountId32;1210 readonly collectionId: u32;1211 } & Struct;1212 readonly isCollectionDestroyed: boolean;1213 readonly asCollectionDestroyed: {1214 readonly issuer: AccountId32;1215 readonly collectionId: u32;1216 } & Struct;1217 readonly isIssuerChanged: boolean;1218 readonly asIssuerChanged: {1219 readonly oldIssuer: AccountId32;1220 readonly newIssuer: AccountId32;1221 readonly collectionId: u32;1222 } & Struct;1223 readonly isCollectionLocked: boolean;1224 readonly asCollectionLocked: {1225 readonly issuer: AccountId32;1226 readonly collectionId: u32;1227 } & Struct;1228 readonly isNftMinted: boolean;1229 readonly asNftMinted: {1230 readonly owner: AccountId32;1231 readonly collectionId: u32;1232 readonly nftId: u32;1233 } & Struct;1234 readonly isNftBurned: boolean;1235 readonly asNftBurned: {1236 readonly owner: AccountId32;1237 readonly nftId: u32;1238 } & Struct;1239 readonly isNftSent: boolean;1240 readonly asNftSent: {1241 readonly sender: AccountId32;1242 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1243 readonly collectionId: u32;1244 readonly nftId: u32;1245 readonly approvalRequired: bool;1246 } & Struct;1247 readonly isNftAccepted: boolean;1248 readonly asNftAccepted: {1249 readonly sender: AccountId32;1250 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1251 readonly collectionId: u32;1252 readonly nftId: u32;1253 } & Struct;1254 readonly isNftRejected: boolean;1255 readonly asNftRejected: {1256 readonly sender: AccountId32;1257 readonly collectionId: u32;1258 readonly nftId: u32;1259 } & Struct;1260 readonly isPropertySet: boolean;1261 readonly asPropertySet: {1262 readonly collectionId: u32;1263 readonly maybeNftId: Option<u32>;1264 readonly key: Bytes;1265 readonly value: Bytes;1266 } & Struct;1267 readonly isResourceAdded: boolean;1268 readonly asResourceAdded: {1269 readonly nftId: u32;1270 readonly resourceId: u32;1271 } & Struct;1272 readonly isResourceRemoval: boolean;1273 readonly asResourceRemoval: {1274 readonly nftId: u32;1275 readonly resourceId: u32;1276 } & Struct;1277 readonly isResourceAccepted: boolean;1278 readonly asResourceAccepted: {1279 readonly nftId: u32;1280 readonly resourceId: u32;1281 } & Struct;1282 readonly isResourceRemovalAccepted: boolean;1283 readonly asResourceRemovalAccepted: {1284 readonly nftId: u32;1285 readonly resourceId: u32;1286 } & Struct;1287 readonly isPrioritySet: boolean;1288 readonly asPrioritySet: {1289 readonly collectionId: u32;1290 readonly nftId: u32;1291 } & Struct;1292 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1293 }12941295 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */1296 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1297 readonly isAccountId: boolean;1298 readonly asAccountId: AccountId32;1299 readonly isCollectionAndNftTuple: boolean;1300 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;1301 readonly type: 'AccountId' | 'CollectionAndNftTuple';1302 }13031304 /** @name PalletRmrkEquipEvent (106) */1305 interface PalletRmrkEquipEvent extends Enum {1306 readonly isBaseCreated: boolean;1307 readonly asBaseCreated: {1308 readonly issuer: AccountId32;1309 readonly baseId: u32;1310 } & Struct;1311 readonly isEquippablesUpdated: boolean;1312 readonly asEquippablesUpdated: {1313 readonly baseId: u32;1314 readonly slotId: u32;1315 } & Struct;1316 readonly type: 'BaseCreated' | 'EquippablesUpdated';1317 }13181319 /** @name PalletAppPromotionEvent (107) */1320 interface PalletAppPromotionEvent extends Enum {1321 readonly isStakingRecalculation: boolean;1322 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1323 readonly isStake: boolean;1324 readonly asStake: ITuple<[AccountId32, u128]>;1325 readonly isUnstake: boolean;1326 readonly asUnstake: ITuple<[AccountId32, u128]>;1327 readonly isSetAdmin: boolean;1328 readonly asSetAdmin: AccountId32;1329 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1330 }13311332 /** @name PalletForeignAssetsModuleEvent (108) */1333 interface PalletForeignAssetsModuleEvent extends Enum {1334 readonly isForeignAssetRegistered: boolean;1335 readonly asForeignAssetRegistered: {1336 readonly assetId: u32;1337 readonly assetAddress: XcmV1MultiLocation;1338 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1339 } & Struct;1340 readonly isForeignAssetUpdated: boolean;1341 readonly asForeignAssetUpdated: {1342 readonly assetId: u32;1343 readonly assetAddress: XcmV1MultiLocation;1344 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1345 } & Struct;1346 readonly isAssetRegistered: boolean;1347 readonly asAssetRegistered: {1348 readonly assetId: PalletForeignAssetsAssetIds;1349 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1350 } & Struct;1351 readonly isAssetUpdated: boolean;1352 readonly asAssetUpdated: {1353 readonly assetId: PalletForeignAssetsAssetIds;1354 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1355 } & Struct;1356 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1357 }13581359 /** @name PalletForeignAssetsModuleAssetMetadata (109) */1360 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1361 readonly name: Bytes;1362 readonly symbol: Bytes;1363 readonly decimals: u8;1364 readonly minimalBalance: u128;1365 }13661367 /** @name PalletEvmEvent (110) */1368 interface PalletEvmEvent extends Enum {1369 readonly isLog: boolean;1370 readonly asLog: {1371 readonly log: EthereumLog;1372 } & Struct;1373 readonly isCreated: boolean;1374 readonly asCreated: {1375 readonly address: H160;1376 } & Struct;1377 readonly isCreatedFailed: boolean;1378 readonly asCreatedFailed: {1379 readonly address: H160;1380 } & Struct;1381 readonly isExecuted: boolean;1382 readonly asExecuted: {1383 readonly address: H160;1384 } & Struct;1385 readonly isExecutedFailed: boolean;1386 readonly asExecutedFailed: {1387 readonly address: H160;1388 } & Struct;1389 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1390 }13911392 /** @name EthereumLog (111) */1393 interface EthereumLog extends Struct {1394 readonly address: H160;1395 readonly topics: Vec<H256>;1396 readonly data: Bytes;1397 }13981399 /** @name PalletEthereumEvent (113) */1400 interface PalletEthereumEvent extends Enum {1401 readonly isExecuted: boolean;1402 readonly asExecuted: {1403 readonly from: H160;1404 readonly to: H160;1405 readonly transactionHash: H256;1406 readonly exitReason: EvmCoreErrorExitReason;1407 } & Struct;1408 readonly type: 'Executed';1409 }14101411 /** @name EvmCoreErrorExitReason (114) */1412 interface EvmCoreErrorExitReason extends Enum {1413 readonly isSucceed: boolean;1414 readonly asSucceed: EvmCoreErrorExitSucceed;1415 readonly isError: boolean;1416 readonly asError: EvmCoreErrorExitError;1417 readonly isRevert: boolean;1418 readonly asRevert: EvmCoreErrorExitRevert;1419 readonly isFatal: boolean;1420 readonly asFatal: EvmCoreErrorExitFatal;1421 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1422 }14231424 /** @name EvmCoreErrorExitSucceed (115) */1425 interface EvmCoreErrorExitSucceed extends Enum {1426 readonly isStopped: boolean;1427 readonly isReturned: boolean;1428 readonly isSuicided: boolean;1429 readonly type: 'Stopped' | 'Returned' | 'Suicided';1430 }14311432 /** @name EvmCoreErrorExitError (116) */1433 interface EvmCoreErrorExitError extends Enum {1434 readonly isStackUnderflow: boolean;1435 readonly isStackOverflow: boolean;1436 readonly isInvalidJump: boolean;1437 readonly isInvalidRange: boolean;1438 readonly isDesignatedInvalid: boolean;1439 readonly isCallTooDeep: boolean;1440 readonly isCreateCollision: boolean;1441 readonly isCreateContractLimit: boolean;1442 readonly isOutOfOffset: boolean;1443 readonly isOutOfGas: boolean;1444 readonly isOutOfFund: boolean;1445 readonly isPcUnderflow: boolean;1446 readonly isCreateEmpty: boolean;1447 readonly isOther: boolean;1448 readonly asOther: Text;1449 readonly isInvalidCode: boolean;1450 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1451 }14521453 /** @name EvmCoreErrorExitRevert (119) */1454 interface EvmCoreErrorExitRevert extends Enum {1455 readonly isReverted: boolean;1456 readonly type: 'Reverted';1457 }14581459 /** @name EvmCoreErrorExitFatal (120) */1460 interface EvmCoreErrorExitFatal extends Enum {1461 readonly isNotSupported: boolean;1462 readonly isUnhandledInterrupt: boolean;1463 readonly isCallErrorAsFatal: boolean;1464 readonly asCallErrorAsFatal: EvmCoreErrorExitError;1465 readonly isOther: boolean;1466 readonly asOther: Text;1467 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1468 }14691470 /** @name PalletEvmContractHelpersEvent (121) */1471 interface PalletEvmContractHelpersEvent extends Enum {1472 readonly isContractSponsorSet: boolean;1473 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1474 readonly isContractSponsorshipConfirmed: boolean;1475 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1476 readonly isContractSponsorRemoved: boolean;1477 readonly asContractSponsorRemoved: H160;1478 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1479 }14801481 /** @name PalletEvmMigrationEvent (122) */1482 interface PalletEvmMigrationEvent extends Enum {1483 readonly isTestEvent: boolean;1484 readonly type: 'TestEvent';1485 }14861487 /** @name PalletMaintenanceEvent (123) */1488 interface PalletMaintenanceEvent extends Enum {1489 readonly isMaintenanceEnabled: boolean;1490 readonly isMaintenanceDisabled: boolean;1491 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1492 }14931494 /** @name PalletTestUtilsEvent (124) */1495 interface PalletTestUtilsEvent extends Enum {1496 readonly isValueIsSet: boolean;1497 readonly isShouldRollback: boolean;1498 readonly isBatchCompleted: boolean;1499 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1500 }15011502 /** @name FrameSystemPhase (125) */1503 interface FrameSystemPhase extends Enum {1504 readonly isApplyExtrinsic: boolean;1505 readonly asApplyExtrinsic: u32;1506 readonly isFinalization: boolean;1507 readonly isInitialization: boolean;1508 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1509 }15101511 /** @name FrameSystemLastRuntimeUpgradeInfo (127) */1512 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1513 readonly specVersion: Compact<u32>;1514 readonly specName: Text;1515 }15161517 /** @name FrameSystemCall (128) */1518 interface FrameSystemCall extends Enum {1519 readonly isFillBlock: boolean;1520 readonly asFillBlock: {1521 readonly ratio: Perbill;1522 } & Struct;1523 readonly isRemark: boolean;1524 readonly asRemark: {1525 readonly remark: Bytes;1526 } & Struct;1527 readonly isSetHeapPages: boolean;1528 readonly asSetHeapPages: {1529 readonly pages: u64;1530 } & Struct;1531 readonly isSetCode: boolean;1532 readonly asSetCode: {1533 readonly code: Bytes;1534 } & Struct;1535 readonly isSetCodeWithoutChecks: boolean;1536 readonly asSetCodeWithoutChecks: {1537 readonly code: Bytes;1538 } & Struct;1539 readonly isSetStorage: boolean;1540 readonly asSetStorage: {1541 readonly items: Vec<ITuple<[Bytes, Bytes]>>;1542 } & Struct;1543 readonly isKillStorage: boolean;1544 readonly asKillStorage: {1545 readonly keys_: Vec<Bytes>;1546 } & Struct;1547 readonly isKillPrefix: boolean;1548 readonly asKillPrefix: {1549 readonly prefix: Bytes;1550 readonly subkeys: u32;1551 } & Struct;1552 readonly isRemarkWithEvent: boolean;1553 readonly asRemarkWithEvent: {1554 readonly remark: Bytes;1555 } & Struct;1556 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1557 }15581559 /** @name FrameSystemLimitsBlockWeights (133) */1560 interface FrameSystemLimitsBlockWeights extends Struct {1561 readonly baseBlock: Weight;1562 readonly maxBlock: Weight;1563 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1564 }15651566 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (134) */1567 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1568 readonly normal: FrameSystemLimitsWeightsPerClass;1569 readonly operational: FrameSystemLimitsWeightsPerClass;1570 readonly mandatory: FrameSystemLimitsWeightsPerClass;1571 }15721573 /** @name FrameSystemLimitsWeightsPerClass (135) */1574 interface FrameSystemLimitsWeightsPerClass extends Struct {1575 readonly baseExtrinsic: Weight;1576 readonly maxExtrinsic: Option<Weight>;1577 readonly maxTotal: Option<Weight>;1578 readonly reserved: Option<Weight>;1579 }15801581 /** @name FrameSystemLimitsBlockLength (137) */1582 interface FrameSystemLimitsBlockLength extends Struct {1583 readonly max: FrameSupportDispatchPerDispatchClassU32;1584 }15851586 /** @name FrameSupportDispatchPerDispatchClassU32 (138) */1587 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1588 readonly normal: u32;1589 readonly operational: u32;1590 readonly mandatory: u32;1591 }15921593 /** @name SpWeightsRuntimeDbWeight (139) */1594 interface SpWeightsRuntimeDbWeight extends Struct {1595 readonly read: u64;1596 readonly write: u64;1597 }15981599 /** @name SpVersionRuntimeVersion (140) */1600 interface SpVersionRuntimeVersion extends Struct {1601 readonly specName: Text;1602 readonly implName: Text;1603 readonly authoringVersion: u32;1604 readonly specVersion: u32;1605 readonly implVersion: u32;1606 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1607 readonly transactionVersion: u32;1608 readonly stateVersion: u8;1609 }16101611 /** @name FrameSystemError (145) */1612 interface FrameSystemError extends Enum {1613 readonly isInvalidSpecName: boolean;1614 readonly isSpecVersionNeedsToIncrease: boolean;1615 readonly isFailedToExtractRuntimeVersion: boolean;1616 readonly isNonDefaultComposite: boolean;1617 readonly isNonZeroRefCount: boolean;1618 readonly isCallFiltered: boolean;1619 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1620 }16211622 /** @name PolkadotPrimitivesV2PersistedValidationData (146) */1623 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1624 readonly parentHead: Bytes;1625 readonly relayParentNumber: u32;1626 readonly relayParentStorageRoot: H256;1627 readonly maxPovSize: u32;1628 }16291630 /** @name PolkadotPrimitivesV2UpgradeRestriction (149) */1631 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1632 readonly isPresent: boolean;1633 readonly type: 'Present';1634 }16351636 /** @name SpTrieStorageProof (150) */1637 interface SpTrieStorageProof extends Struct {1638 readonly trieNodes: BTreeSet<Bytes>;1639 }16401641 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (152) */1642 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1643 readonly dmqMqcHead: H256;1644 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1645 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1646 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1647 }16481649 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (155) */1650 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1651 readonly maxCapacity: u32;1652 readonly maxTotalSize: u32;1653 readonly maxMessageSize: u32;1654 readonly msgCount: u32;1655 readonly totalSize: u32;1656 readonly mqcHead: Option<H256>;1657 }16581659 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (156) */1660 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1661 readonly maxCodeSize: u32;1662 readonly maxHeadDataSize: u32;1663 readonly maxUpwardQueueCount: u32;1664 readonly maxUpwardQueueSize: u32;1665 readonly maxUpwardMessageSize: u32;1666 readonly maxUpwardMessageNumPerCandidate: u32;1667 readonly hrmpMaxMessageNumPerCandidate: u32;1668 readonly validationUpgradeCooldown: u32;1669 readonly validationUpgradeDelay: u32;1670 }16711672 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (162) */1673 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1674 readonly recipient: u32;1675 readonly data: Bytes;1676 }16771678 /** @name CumulusPalletParachainSystemCall (163) */1679 interface CumulusPalletParachainSystemCall extends Enum {1680 readonly isSetValidationData: boolean;1681 readonly asSetValidationData: {1682 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;1683 } & Struct;1684 readonly isSudoSendUpwardMessage: boolean;1685 readonly asSudoSendUpwardMessage: {1686 readonly message: Bytes;1687 } & Struct;1688 readonly isAuthorizeUpgrade: boolean;1689 readonly asAuthorizeUpgrade: {1690 readonly codeHash: H256;1691 } & Struct;1692 readonly isEnactAuthorizedUpgrade: boolean;1693 readonly asEnactAuthorizedUpgrade: {1694 readonly code: Bytes;1695 } & Struct;1696 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1697 }16981699 /** @name CumulusPrimitivesParachainInherentParachainInherentData (164) */1700 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1701 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1702 readonly relayChainState: SpTrieStorageProof;1703 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1704 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1705 }17061707 /** @name PolkadotCorePrimitivesInboundDownwardMessage (166) */1708 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1709 readonly sentAt: u32;1710 readonly msg: Bytes;1711 }17121713 /** @name PolkadotCorePrimitivesInboundHrmpMessage (169) */1714 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1715 readonly sentAt: u32;1716 readonly data: Bytes;1717 }17181719 /** @name CumulusPalletParachainSystemError (172) */1720 interface CumulusPalletParachainSystemError extends Enum {1721 readonly isOverlappingUpgrades: boolean;1722 readonly isProhibitedByPolkadot: boolean;1723 readonly isTooBig: boolean;1724 readonly isValidationDataNotAvailable: boolean;1725 readonly isHostConfigurationNotAvailable: boolean;1726 readonly isNotScheduled: boolean;1727 readonly isNothingAuthorized: boolean;1728 readonly isUnauthorized: boolean;1729 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1730 }17311732 /** @name PalletBalancesBalanceLock (174) */1733 interface PalletBalancesBalanceLock extends Struct {1734 readonly id: U8aFixed;1735 readonly amount: u128;1736 readonly reasons: PalletBalancesReasons;1737 }17381739 /** @name PalletBalancesReasons (175) */1740 interface PalletBalancesReasons extends Enum {1741 readonly isFee: boolean;1742 readonly isMisc: boolean;1743 readonly isAll: boolean;1744 readonly type: 'Fee' | 'Misc' | 'All';1745 }17461747 /** @name PalletBalancesReserveData (178) */1748 interface PalletBalancesReserveData extends Struct {1749 readonly id: U8aFixed;1750 readonly amount: u128;1751 }17521753 /** @name PalletBalancesReleases (180) */1754 interface PalletBalancesReleases extends Enum {1755 readonly isV100: boolean;1756 readonly isV200: boolean;1757 readonly type: 'V100' | 'V200';1758 }17591760 /** @name PalletBalancesCall (181) */1761 interface PalletBalancesCall extends Enum {1762 readonly isTransfer: boolean;1763 readonly asTransfer: {1764 readonly dest: MultiAddress;1765 readonly value: Compact<u128>;1766 } & Struct;1767 readonly isSetBalance: boolean;1768 readonly asSetBalance: {1769 readonly who: MultiAddress;1770 readonly newFree: Compact<u128>;1771 readonly newReserved: Compact<u128>;1772 } & Struct;1773 readonly isForceTransfer: boolean;1774 readonly asForceTransfer: {1775 readonly source: MultiAddress;1776 readonly dest: MultiAddress;1777 readonly value: Compact<u128>;1778 } & Struct;1779 readonly isTransferKeepAlive: boolean;1780 readonly asTransferKeepAlive: {1781 readonly dest: MultiAddress;1782 readonly value: Compact<u128>;1783 } & Struct;1784 readonly isTransferAll: boolean;1785 readonly asTransferAll: {1786 readonly dest: MultiAddress;1787 readonly keepAlive: bool;1788 } & Struct;1789 readonly isForceUnreserve: boolean;1790 readonly asForceUnreserve: {1791 readonly who: MultiAddress;1792 readonly amount: u128;1793 } & Struct;1794 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1795 }17961797 /** @name PalletBalancesError (184) */1798 interface PalletBalancesError extends Enum {1799 readonly isVestingBalance: boolean;1800 readonly isLiquidityRestrictions: boolean;1801 readonly isInsufficientBalance: boolean;1802 readonly isExistentialDeposit: boolean;1803 readonly isKeepAlive: boolean;1804 readonly isExistingVestingSchedule: boolean;1805 readonly isDeadAccount: boolean;1806 readonly isTooManyReserves: boolean;1807 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1808 }18091810 /** @name PalletTimestampCall (186) */1811 interface PalletTimestampCall extends Enum {1812 readonly isSet: boolean;1813 readonly asSet: {1814 readonly now: Compact<u64>;1815 } & Struct;1816 readonly type: 'Set';1817 }18181819 /** @name PalletTransactionPaymentReleases (188) */1820 interface PalletTransactionPaymentReleases extends Enum {1821 readonly isV1Ancient: boolean;1822 readonly isV2: boolean;1823 readonly type: 'V1Ancient' | 'V2';1824 }18251826 /** @name PalletTreasuryProposal (189) */1827 interface PalletTreasuryProposal extends Struct {1828 readonly proposer: AccountId32;1829 readonly value: u128;1830 readonly beneficiary: AccountId32;1831 readonly bond: u128;1832 }18331834 /** @name PalletTreasuryCall (192) */1835 interface PalletTreasuryCall extends Enum {1836 readonly isProposeSpend: boolean;1837 readonly asProposeSpend: {1838 readonly value: Compact<u128>;1839 readonly beneficiary: MultiAddress;1840 } & Struct;1841 readonly isRejectProposal: boolean;1842 readonly asRejectProposal: {1843 readonly proposalId: Compact<u32>;1844 } & Struct;1845 readonly isApproveProposal: boolean;1846 readonly asApproveProposal: {1847 readonly proposalId: Compact<u32>;1848 } & Struct;1849 readonly isSpend: boolean;1850 readonly asSpend: {1851 readonly amount: Compact<u128>;1852 readonly beneficiary: MultiAddress;1853 } & Struct;1854 readonly isRemoveApproval: boolean;1855 readonly asRemoveApproval: {1856 readonly proposalId: Compact<u32>;1857 } & Struct;1858 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1859 }18601861 /** @name FrameSupportPalletId (195) */1862 interface FrameSupportPalletId extends U8aFixed {}18631864 /** @name PalletTreasuryError (196) */1865 interface PalletTreasuryError extends Enum {1866 readonly isInsufficientProposersBalance: boolean;1867 readonly isInvalidIndex: boolean;1868 readonly isTooManyApprovals: boolean;1869 readonly isInsufficientPermission: boolean;1870 readonly isProposalNotApproved: boolean;1871 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1872 }18731874 /** @name PalletSudoCall (197) */1875 interface PalletSudoCall extends Enum {1876 readonly isSudo: boolean;1877 readonly asSudo: {1878 readonly call: Call;1879 } & Struct;1880 readonly isSudoUncheckedWeight: boolean;1881 readonly asSudoUncheckedWeight: {1882 readonly call: Call;1883 readonly weight: Weight;1884 } & Struct;1885 readonly isSetKey: boolean;1886 readonly asSetKey: {1887 readonly new_: MultiAddress;1888 } & Struct;1889 readonly isSudoAs: boolean;1890 readonly asSudoAs: {1891 readonly who: MultiAddress;1892 readonly call: Call;1893 } & Struct;1894 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1895 }18961897 /** @name OrmlVestingModuleCall (199) */1898 interface OrmlVestingModuleCall extends Enum {1899 readonly isClaim: boolean;1900 readonly isVestedTransfer: boolean;1901 readonly asVestedTransfer: {1902 readonly dest: MultiAddress;1903 readonly schedule: OrmlVestingVestingSchedule;1904 } & Struct;1905 readonly isUpdateVestingSchedules: boolean;1906 readonly asUpdateVestingSchedules: {1907 readonly who: MultiAddress;1908 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;1909 } & Struct;1910 readonly isClaimFor: boolean;1911 readonly asClaimFor: {1912 readonly dest: MultiAddress;1913 } & Struct;1914 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1915 }19161917 /** @name OrmlXtokensModuleCall (201) */1918 interface OrmlXtokensModuleCall extends Enum {1919 readonly isTransfer: boolean;1920 readonly asTransfer: {1921 readonly currencyId: PalletForeignAssetsAssetIds;1922 readonly amount: u128;1923 readonly dest: XcmVersionedMultiLocation;1924 readonly destWeight: u64;1925 } & Struct;1926 readonly isTransferMultiasset: boolean;1927 readonly asTransferMultiasset: {1928 readonly asset: XcmVersionedMultiAsset;1929 readonly dest: XcmVersionedMultiLocation;1930 readonly destWeight: u64;1931 } & Struct;1932 readonly isTransferWithFee: boolean;1933 readonly asTransferWithFee: {1934 readonly currencyId: PalletForeignAssetsAssetIds;1935 readonly amount: u128;1936 readonly fee: u128;1937 readonly dest: XcmVersionedMultiLocation;1938 readonly destWeight: u64;1939 } & Struct;1940 readonly isTransferMultiassetWithFee: boolean;1941 readonly asTransferMultiassetWithFee: {1942 readonly asset: XcmVersionedMultiAsset;1943 readonly fee: XcmVersionedMultiAsset;1944 readonly dest: XcmVersionedMultiLocation;1945 readonly destWeight: u64;1946 } & Struct;1947 readonly isTransferMulticurrencies: boolean;1948 readonly asTransferMulticurrencies: {1949 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1950 readonly feeItem: u32;1951 readonly dest: XcmVersionedMultiLocation;1952 readonly destWeight: u64;1953 } & Struct;1954 readonly isTransferMultiassets: boolean;1955 readonly asTransferMultiassets: {1956 readonly assets: XcmVersionedMultiAssets;1957 readonly feeItem: u32;1958 readonly dest: XcmVersionedMultiLocation;1959 readonly destWeight: u64;1960 } & Struct;1961 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1962 }19631964 /** @name XcmVersionedMultiAsset (202) */1965 interface XcmVersionedMultiAsset extends Enum {1966 readonly isV0: boolean;1967 readonly asV0: XcmV0MultiAsset;1968 readonly isV1: boolean;1969 readonly asV1: XcmV1MultiAsset;1970 readonly type: 'V0' | 'V1';1971 }19721973 /** @name OrmlTokensModuleCall (205) */1974 interface OrmlTokensModuleCall extends Enum {1975 readonly isTransfer: boolean;1976 readonly asTransfer: {1977 readonly dest: MultiAddress;1978 readonly currencyId: PalletForeignAssetsAssetIds;1979 readonly amount: Compact<u128>;1980 } & Struct;1981 readonly isTransferAll: boolean;1982 readonly asTransferAll: {1983 readonly dest: MultiAddress;1984 readonly currencyId: PalletForeignAssetsAssetIds;1985 readonly keepAlive: bool;1986 } & Struct;1987 readonly isTransferKeepAlive: boolean;1988 readonly asTransferKeepAlive: {1989 readonly dest: MultiAddress;1990 readonly currencyId: PalletForeignAssetsAssetIds;1991 readonly amount: Compact<u128>;1992 } & Struct;1993 readonly isForceTransfer: boolean;1994 readonly asForceTransfer: {1995 readonly source: MultiAddress;1996 readonly dest: MultiAddress;1997 readonly currencyId: PalletForeignAssetsAssetIds;1998 readonly amount: Compact<u128>;1999 } & Struct;2000 readonly isSetBalance: boolean;2001 readonly asSetBalance: {2002 readonly who: MultiAddress;2003 readonly currencyId: PalletForeignAssetsAssetIds;2004 readonly newFree: Compact<u128>;2005 readonly newReserved: Compact<u128>;2006 } & Struct;2007 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';2008 }20092010 /** @name CumulusPalletXcmpQueueCall (206) */2011 interface CumulusPalletXcmpQueueCall extends Enum {2012 readonly isServiceOverweight: boolean;2013 readonly asServiceOverweight: {2014 readonly index: u64;2015 readonly weightLimit: Weight;2016 } & Struct;2017 readonly isSuspendXcmExecution: boolean;2018 readonly isResumeXcmExecution: boolean;2019 readonly isUpdateSuspendThreshold: boolean;2020 readonly asUpdateSuspendThreshold: {2021 readonly new_: u32;2022 } & Struct;2023 readonly isUpdateDropThreshold: boolean;2024 readonly asUpdateDropThreshold: {2025 readonly new_: u32;2026 } & Struct;2027 readonly isUpdateResumeThreshold: boolean;2028 readonly asUpdateResumeThreshold: {2029 readonly new_: u32;2030 } & Struct;2031 readonly isUpdateThresholdWeight: boolean;2032 readonly asUpdateThresholdWeight: {2033 readonly new_: Weight;2034 } & Struct;2035 readonly isUpdateWeightRestrictDecay: boolean;2036 readonly asUpdateWeightRestrictDecay: {2037 readonly new_: Weight;2038 } & Struct;2039 readonly isUpdateXcmpMaxIndividualWeight: boolean;2040 readonly asUpdateXcmpMaxIndividualWeight: {2041 readonly new_: Weight;2042 } & Struct;2043 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2044 }20452046 /** @name PalletXcmCall (207) */2047 interface PalletXcmCall extends Enum {2048 readonly isSend: boolean;2049 readonly asSend: {2050 readonly dest: XcmVersionedMultiLocation;2051 readonly message: XcmVersionedXcm;2052 } & Struct;2053 readonly isTeleportAssets: boolean;2054 readonly asTeleportAssets: {2055 readonly dest: XcmVersionedMultiLocation;2056 readonly beneficiary: XcmVersionedMultiLocation;2057 readonly assets: XcmVersionedMultiAssets;2058 readonly feeAssetItem: u32;2059 } & Struct;2060 readonly isReserveTransferAssets: boolean;2061 readonly asReserveTransferAssets: {2062 readonly dest: XcmVersionedMultiLocation;2063 readonly beneficiary: XcmVersionedMultiLocation;2064 readonly assets: XcmVersionedMultiAssets;2065 readonly feeAssetItem: u32;2066 } & Struct;2067 readonly isExecute: boolean;2068 readonly asExecute: {2069 readonly message: XcmVersionedXcm;2070 readonly maxWeight: Weight;2071 } & Struct;2072 readonly isForceXcmVersion: boolean;2073 readonly asForceXcmVersion: {2074 readonly location: XcmV1MultiLocation;2075 readonly xcmVersion: u32;2076 } & Struct;2077 readonly isForceDefaultXcmVersion: boolean;2078 readonly asForceDefaultXcmVersion: {2079 readonly maybeXcmVersion: Option<u32>;2080 } & Struct;2081 readonly isForceSubscribeVersionNotify: boolean;2082 readonly asForceSubscribeVersionNotify: {2083 readonly location: XcmVersionedMultiLocation;2084 } & Struct;2085 readonly isForceUnsubscribeVersionNotify: boolean;2086 readonly asForceUnsubscribeVersionNotify: {2087 readonly location: XcmVersionedMultiLocation;2088 } & Struct;2089 readonly isLimitedReserveTransferAssets: boolean;2090 readonly asLimitedReserveTransferAssets: {2091 readonly dest: XcmVersionedMultiLocation;2092 readonly beneficiary: XcmVersionedMultiLocation;2093 readonly assets: XcmVersionedMultiAssets;2094 readonly feeAssetItem: u32;2095 readonly weightLimit: XcmV2WeightLimit;2096 } & Struct;2097 readonly isLimitedTeleportAssets: boolean;2098 readonly asLimitedTeleportAssets: {2099 readonly dest: XcmVersionedMultiLocation;2100 readonly beneficiary: XcmVersionedMultiLocation;2101 readonly assets: XcmVersionedMultiAssets;2102 readonly feeAssetItem: u32;2103 readonly weightLimit: XcmV2WeightLimit;2104 } & Struct;2105 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2106 }21072108 /** @name XcmVersionedXcm (208) */2109 interface XcmVersionedXcm extends Enum {2110 readonly isV0: boolean;2111 readonly asV0: XcmV0Xcm;2112 readonly isV1: boolean;2113 readonly asV1: XcmV1Xcm;2114 readonly isV2: boolean;2115 readonly asV2: XcmV2Xcm;2116 readonly type: 'V0' | 'V1' | 'V2';2117 }21182119 /** @name XcmV0Xcm (209) */2120 interface XcmV0Xcm extends Enum {2121 readonly isWithdrawAsset: boolean;2122 readonly asWithdrawAsset: {2123 readonly assets: Vec<XcmV0MultiAsset>;2124 readonly effects: Vec<XcmV0Order>;2125 } & Struct;2126 readonly isReserveAssetDeposit: boolean;2127 readonly asReserveAssetDeposit: {2128 readonly assets: Vec<XcmV0MultiAsset>;2129 readonly effects: Vec<XcmV0Order>;2130 } & Struct;2131 readonly isTeleportAsset: boolean;2132 readonly asTeleportAsset: {2133 readonly assets: Vec<XcmV0MultiAsset>;2134 readonly effects: Vec<XcmV0Order>;2135 } & Struct;2136 readonly isQueryResponse: boolean;2137 readonly asQueryResponse: {2138 readonly queryId: Compact<u64>;2139 readonly response: XcmV0Response;2140 } & Struct;2141 readonly isTransferAsset: boolean;2142 readonly asTransferAsset: {2143 readonly assets: Vec<XcmV0MultiAsset>;2144 readonly dest: XcmV0MultiLocation;2145 } & Struct;2146 readonly isTransferReserveAsset: boolean;2147 readonly asTransferReserveAsset: {2148 readonly assets: Vec<XcmV0MultiAsset>;2149 readonly dest: XcmV0MultiLocation;2150 readonly effects: Vec<XcmV0Order>;2151 } & Struct;2152 readonly isTransact: boolean;2153 readonly asTransact: {2154 readonly originType: XcmV0OriginKind;2155 readonly requireWeightAtMost: u64;2156 readonly call: XcmDoubleEncoded;2157 } & Struct;2158 readonly isHrmpNewChannelOpenRequest: boolean;2159 readonly asHrmpNewChannelOpenRequest: {2160 readonly sender: Compact<u32>;2161 readonly maxMessageSize: Compact<u32>;2162 readonly maxCapacity: Compact<u32>;2163 } & Struct;2164 readonly isHrmpChannelAccepted: boolean;2165 readonly asHrmpChannelAccepted: {2166 readonly recipient: Compact<u32>;2167 } & Struct;2168 readonly isHrmpChannelClosing: boolean;2169 readonly asHrmpChannelClosing: {2170 readonly initiator: Compact<u32>;2171 readonly sender: Compact<u32>;2172 readonly recipient: Compact<u32>;2173 } & Struct;2174 readonly isRelayedFrom: boolean;2175 readonly asRelayedFrom: {2176 readonly who: XcmV0MultiLocation;2177 readonly message: XcmV0Xcm;2178 } & Struct;2179 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2180 }21812182 /** @name XcmV0Order (211) */2183 interface XcmV0Order extends Enum {2184 readonly isNull: boolean;2185 readonly isDepositAsset: boolean;2186 readonly asDepositAsset: {2187 readonly assets: Vec<XcmV0MultiAsset>;2188 readonly dest: XcmV0MultiLocation;2189 } & Struct;2190 readonly isDepositReserveAsset: boolean;2191 readonly asDepositReserveAsset: {2192 readonly assets: Vec<XcmV0MultiAsset>;2193 readonly dest: XcmV0MultiLocation;2194 readonly effects: Vec<XcmV0Order>;2195 } & Struct;2196 readonly isExchangeAsset: boolean;2197 readonly asExchangeAsset: {2198 readonly give: Vec<XcmV0MultiAsset>;2199 readonly receive: Vec<XcmV0MultiAsset>;2200 } & Struct;2201 readonly isInitiateReserveWithdraw: boolean;2202 readonly asInitiateReserveWithdraw: {2203 readonly assets: Vec<XcmV0MultiAsset>;2204 readonly reserve: XcmV0MultiLocation;2205 readonly effects: Vec<XcmV0Order>;2206 } & Struct;2207 readonly isInitiateTeleport: boolean;2208 readonly asInitiateTeleport: {2209 readonly assets: Vec<XcmV0MultiAsset>;2210 readonly dest: XcmV0MultiLocation;2211 readonly effects: Vec<XcmV0Order>;2212 } & Struct;2213 readonly isQueryHolding: boolean;2214 readonly asQueryHolding: {2215 readonly queryId: Compact<u64>;2216 readonly dest: XcmV0MultiLocation;2217 readonly assets: Vec<XcmV0MultiAsset>;2218 } & Struct;2219 readonly isBuyExecution: boolean;2220 readonly asBuyExecution: {2221 readonly fees: XcmV0MultiAsset;2222 readonly weight: u64;2223 readonly debt: u64;2224 readonly haltOnError: bool;2225 readonly xcm: Vec<XcmV0Xcm>;2226 } & Struct;2227 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2228 }22292230 /** @name XcmV0Response (213) */2231 interface XcmV0Response extends Enum {2232 readonly isAssets: boolean;2233 readonly asAssets: Vec<XcmV0MultiAsset>;2234 readonly type: 'Assets';2235 }22362237 /** @name XcmV1Xcm (214) */2238 interface XcmV1Xcm extends Enum {2239 readonly isWithdrawAsset: boolean;2240 readonly asWithdrawAsset: {2241 readonly assets: XcmV1MultiassetMultiAssets;2242 readonly effects: Vec<XcmV1Order>;2243 } & Struct;2244 readonly isReserveAssetDeposited: boolean;2245 readonly asReserveAssetDeposited: {2246 readonly assets: XcmV1MultiassetMultiAssets;2247 readonly effects: Vec<XcmV1Order>;2248 } & Struct;2249 readonly isReceiveTeleportedAsset: boolean;2250 readonly asReceiveTeleportedAsset: {2251 readonly assets: XcmV1MultiassetMultiAssets;2252 readonly effects: Vec<XcmV1Order>;2253 } & Struct;2254 readonly isQueryResponse: boolean;2255 readonly asQueryResponse: {2256 readonly queryId: Compact<u64>;2257 readonly response: XcmV1Response;2258 } & Struct;2259 readonly isTransferAsset: boolean;2260 readonly asTransferAsset: {2261 readonly assets: XcmV1MultiassetMultiAssets;2262 readonly beneficiary: XcmV1MultiLocation;2263 } & Struct;2264 readonly isTransferReserveAsset: boolean;2265 readonly asTransferReserveAsset: {2266 readonly assets: XcmV1MultiassetMultiAssets;2267 readonly dest: XcmV1MultiLocation;2268 readonly effects: Vec<XcmV1Order>;2269 } & Struct;2270 readonly isTransact: boolean;2271 readonly asTransact: {2272 readonly originType: XcmV0OriginKind;2273 readonly requireWeightAtMost: u64;2274 readonly call: XcmDoubleEncoded;2275 } & Struct;2276 readonly isHrmpNewChannelOpenRequest: boolean;2277 readonly asHrmpNewChannelOpenRequest: {2278 readonly sender: Compact<u32>;2279 readonly maxMessageSize: Compact<u32>;2280 readonly maxCapacity: Compact<u32>;2281 } & Struct;2282 readonly isHrmpChannelAccepted: boolean;2283 readonly asHrmpChannelAccepted: {2284 readonly recipient: Compact<u32>;2285 } & Struct;2286 readonly isHrmpChannelClosing: boolean;2287 readonly asHrmpChannelClosing: {2288 readonly initiator: Compact<u32>;2289 readonly sender: Compact<u32>;2290 readonly recipient: Compact<u32>;2291 } & Struct;2292 readonly isRelayedFrom: boolean;2293 readonly asRelayedFrom: {2294 readonly who: XcmV1MultilocationJunctions;2295 readonly message: XcmV1Xcm;2296 } & Struct;2297 readonly isSubscribeVersion: boolean;2298 readonly asSubscribeVersion: {2299 readonly queryId: Compact<u64>;2300 readonly maxResponseWeight: Compact<u64>;2301 } & Struct;2302 readonly isUnsubscribeVersion: boolean;2303 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2304 }23052306 /** @name XcmV1Order (216) */2307 interface XcmV1Order extends Enum {2308 readonly isNoop: boolean;2309 readonly isDepositAsset: boolean;2310 readonly asDepositAsset: {2311 readonly assets: XcmV1MultiassetMultiAssetFilter;2312 readonly maxAssets: u32;2313 readonly beneficiary: XcmV1MultiLocation;2314 } & Struct;2315 readonly isDepositReserveAsset: boolean;2316 readonly asDepositReserveAsset: {2317 readonly assets: XcmV1MultiassetMultiAssetFilter;2318 readonly maxAssets: u32;2319 readonly dest: XcmV1MultiLocation;2320 readonly effects: Vec<XcmV1Order>;2321 } & Struct;2322 readonly isExchangeAsset: boolean;2323 readonly asExchangeAsset: {2324 readonly give: XcmV1MultiassetMultiAssetFilter;2325 readonly receive: XcmV1MultiassetMultiAssets;2326 } & Struct;2327 readonly isInitiateReserveWithdraw: boolean;2328 readonly asInitiateReserveWithdraw: {2329 readonly assets: XcmV1MultiassetMultiAssetFilter;2330 readonly reserve: XcmV1MultiLocation;2331 readonly effects: Vec<XcmV1Order>;2332 } & Struct;2333 readonly isInitiateTeleport: boolean;2334 readonly asInitiateTeleport: {2335 readonly assets: XcmV1MultiassetMultiAssetFilter;2336 readonly dest: XcmV1MultiLocation;2337 readonly effects: Vec<XcmV1Order>;2338 } & Struct;2339 readonly isQueryHolding: boolean;2340 readonly asQueryHolding: {2341 readonly queryId: Compact<u64>;2342 readonly dest: XcmV1MultiLocation;2343 readonly assets: XcmV1MultiassetMultiAssetFilter;2344 } & Struct;2345 readonly isBuyExecution: boolean;2346 readonly asBuyExecution: {2347 readonly fees: XcmV1MultiAsset;2348 readonly weight: u64;2349 readonly debt: u64;2350 readonly haltOnError: bool;2351 readonly instructions: Vec<XcmV1Xcm>;2352 } & Struct;2353 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2354 }23552356 /** @name XcmV1Response (218) */2357 interface XcmV1Response extends Enum {2358 readonly isAssets: boolean;2359 readonly asAssets: XcmV1MultiassetMultiAssets;2360 readonly isVersion: boolean;2361 readonly asVersion: u32;2362 readonly type: 'Assets' | 'Version';2363 }23642365 /** @name CumulusPalletXcmCall (232) */2366 type CumulusPalletXcmCall = Null;23672368 /** @name CumulusPalletDmpQueueCall (233) */2369 interface CumulusPalletDmpQueueCall extends Enum {2370 readonly isServiceOverweight: boolean;2371 readonly asServiceOverweight: {2372 readonly index: u64;2373 readonly weightLimit: Weight;2374 } & Struct;2375 readonly type: 'ServiceOverweight';2376 }23772378 /** @name PalletInflationCall (234) */2379 interface PalletInflationCall extends Enum {2380 readonly isStartInflation: boolean;2381 readonly asStartInflation: {2382 readonly inflationStartRelayBlock: u32;2383 } & Struct;2384 readonly type: 'StartInflation';2385 }23862387 /** @name PalletUniqueCall (235) */2388 interface PalletUniqueCall extends Enum {2389 readonly isCreateCollection: boolean;2390 readonly asCreateCollection: {2391 readonly collectionName: Vec<u16>;2392 readonly collectionDescription: Vec<u16>;2393 readonly tokenPrefix: Bytes;2394 readonly mode: UpDataStructsCollectionMode;2395 } & Struct;2396 readonly isCreateCollectionEx: boolean;2397 readonly asCreateCollectionEx: {2398 readonly data: UpDataStructsCreateCollectionData;2399 } & Struct;2400 readonly isDestroyCollection: boolean;2401 readonly asDestroyCollection: {2402 readonly collectionId: u32;2403 } & Struct;2404 readonly isAddToAllowList: boolean;2405 readonly asAddToAllowList: {2406 readonly collectionId: u32;2407 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2408 } & Struct;2409 readonly isRemoveFromAllowList: boolean;2410 readonly asRemoveFromAllowList: {2411 readonly collectionId: u32;2412 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2413 } & Struct;2414 readonly isChangeCollectionOwner: boolean;2415 readonly asChangeCollectionOwner: {2416 readonly collectionId: u32;2417 readonly newOwner: AccountId32;2418 } & Struct;2419 readonly isAddCollectionAdmin: boolean;2420 readonly asAddCollectionAdmin: {2421 readonly collectionId: u32;2422 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2423 } & Struct;2424 readonly isRemoveCollectionAdmin: boolean;2425 readonly asRemoveCollectionAdmin: {2426 readonly collectionId: u32;2427 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2428 } & Struct;2429 readonly isSetCollectionSponsor: boolean;2430 readonly asSetCollectionSponsor: {2431 readonly collectionId: u32;2432 readonly newSponsor: AccountId32;2433 } & Struct;2434 readonly isConfirmSponsorship: boolean;2435 readonly asConfirmSponsorship: {2436 readonly collectionId: u32;2437 } & Struct;2438 readonly isRemoveCollectionSponsor: boolean;2439 readonly asRemoveCollectionSponsor: {2440 readonly collectionId: u32;2441 } & Struct;2442 readonly isCreateItem: boolean;2443 readonly asCreateItem: {2444 readonly collectionId: u32;2445 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2446 readonly data: UpDataStructsCreateItemData;2447 } & Struct;2448 readonly isCreateMultipleItems: boolean;2449 readonly asCreateMultipleItems: {2450 readonly collectionId: u32;2451 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2452 readonly itemsData: Vec<UpDataStructsCreateItemData>;2453 } & Struct;2454 readonly isSetCollectionProperties: boolean;2455 readonly asSetCollectionProperties: {2456 readonly collectionId: u32;2457 readonly properties: Vec<UpDataStructsProperty>;2458 } & Struct;2459 readonly isDeleteCollectionProperties: boolean;2460 readonly asDeleteCollectionProperties: {2461 readonly collectionId: u32;2462 readonly propertyKeys: Vec<Bytes>;2463 } & Struct;2464 readonly isSetTokenProperties: boolean;2465 readonly asSetTokenProperties: {2466 readonly collectionId: u32;2467 readonly tokenId: u32;2468 readonly properties: Vec<UpDataStructsProperty>;2469 } & Struct;2470 readonly isDeleteTokenProperties: boolean;2471 readonly asDeleteTokenProperties: {2472 readonly collectionId: u32;2473 readonly tokenId: u32;2474 readonly propertyKeys: Vec<Bytes>;2475 } & Struct;2476 readonly isSetTokenPropertyPermissions: boolean;2477 readonly asSetTokenPropertyPermissions: {2478 readonly collectionId: u32;2479 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2480 } & Struct;2481 readonly isCreateMultipleItemsEx: boolean;2482 readonly asCreateMultipleItemsEx: {2483 readonly collectionId: u32;2484 readonly data: UpDataStructsCreateItemExData;2485 } & Struct;2486 readonly isSetTransfersEnabledFlag: boolean;2487 readonly asSetTransfersEnabledFlag: {2488 readonly collectionId: u32;2489 readonly value: bool;2490 } & Struct;2491 readonly isBurnItem: boolean;2492 readonly asBurnItem: {2493 readonly collectionId: u32;2494 readonly itemId: u32;2495 readonly value: u128;2496 } & Struct;2497 readonly isBurnFrom: boolean;2498 readonly asBurnFrom: {2499 readonly collectionId: u32;2500 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2501 readonly itemId: u32;2502 readonly value: u128;2503 } & Struct;2504 readonly isTransfer: boolean;2505 readonly asTransfer: {2506 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2507 readonly collectionId: u32;2508 readonly itemId: u32;2509 readonly value: u128;2510 } & Struct;2511 readonly isApprove: boolean;2512 readonly asApprove: {2513 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2514 readonly collectionId: u32;2515 readonly itemId: u32;2516 readonly amount: u128;2517 } & Struct;2518 readonly isTransferFrom: boolean;2519 readonly asTransferFrom: {2520 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2521 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2522 readonly collectionId: u32;2523 readonly itemId: u32;2524 readonly value: u128;2525 } & Struct;2526 readonly isSetCollectionLimits: boolean;2527 readonly asSetCollectionLimits: {2528 readonly collectionId: u32;2529 readonly newLimit: UpDataStructsCollectionLimits;2530 } & Struct;2531 readonly isSetCollectionPermissions: boolean;2532 readonly asSetCollectionPermissions: {2533 readonly collectionId: u32;2534 readonly newPermission: UpDataStructsCollectionPermissions;2535 } & Struct;2536 readonly isRepartition: boolean;2537 readonly asRepartition: {2538 readonly collectionId: u32;2539 readonly tokenId: u32;2540 readonly amount: u128;2541 } & Struct;2542 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition';2543 }25442545 /** @name UpDataStructsCollectionMode (240) */2546 interface UpDataStructsCollectionMode extends Enum {2547 readonly isNft: boolean;2548 readonly isFungible: boolean;2549 readonly asFungible: u8;2550 readonly isReFungible: boolean;2551 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2552 }25532554 /** @name UpDataStructsCreateCollectionData (241) */2555 interface UpDataStructsCreateCollectionData extends Struct {2556 readonly mode: UpDataStructsCollectionMode;2557 readonly access: Option<UpDataStructsAccessMode>;2558 readonly name: Vec<u16>;2559 readonly description: Vec<u16>;2560 readonly tokenPrefix: Bytes;2561 readonly pendingSponsor: Option<AccountId32>;2562 readonly limits: Option<UpDataStructsCollectionLimits>;2563 readonly permissions: Option<UpDataStructsCollectionPermissions>;2564 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2565 readonly properties: Vec<UpDataStructsProperty>;2566 }25672568 /** @name UpDataStructsAccessMode (243) */2569 interface UpDataStructsAccessMode extends Enum {2570 readonly isNormal: boolean;2571 readonly isAllowList: boolean;2572 readonly type: 'Normal' | 'AllowList';2573 }25742575 /** @name UpDataStructsCollectionLimits (245) */2576 interface UpDataStructsCollectionLimits extends Struct {2577 readonly accountTokenOwnershipLimit: Option<u32>;2578 readonly sponsoredDataSize: Option<u32>;2579 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2580 readonly tokenLimit: Option<u32>;2581 readonly sponsorTransferTimeout: Option<u32>;2582 readonly sponsorApproveTimeout: Option<u32>;2583 readonly ownerCanTransfer: Option<bool>;2584 readonly ownerCanDestroy: Option<bool>;2585 readonly transfersEnabled: Option<bool>;2586 }25872588 /** @name UpDataStructsSponsoringRateLimit (247) */2589 interface UpDataStructsSponsoringRateLimit extends Enum {2590 readonly isSponsoringDisabled: boolean;2591 readonly isBlocks: boolean;2592 readonly asBlocks: u32;2593 readonly type: 'SponsoringDisabled' | 'Blocks';2594 }25952596 /** @name UpDataStructsCollectionPermissions (250) */2597 interface UpDataStructsCollectionPermissions extends Struct {2598 readonly access: Option<UpDataStructsAccessMode>;2599 readonly mintMode: Option<bool>;2600 readonly nesting: Option<UpDataStructsNestingPermissions>;2601 }26022603 /** @name UpDataStructsNestingPermissions (252) */2604 interface UpDataStructsNestingPermissions extends Struct {2605 readonly tokenOwner: bool;2606 readonly collectionAdmin: bool;2607 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2608 }26092610 /** @name UpDataStructsOwnerRestrictedSet (254) */2611 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}26122613 /** @name UpDataStructsPropertyKeyPermission (259) */2614 interface UpDataStructsPropertyKeyPermission extends Struct {2615 readonly key: Bytes;2616 readonly permission: UpDataStructsPropertyPermission;2617 }26182619 /** @name UpDataStructsPropertyPermission (260) */2620 interface UpDataStructsPropertyPermission extends Struct {2621 readonly mutable: bool;2622 readonly collectionAdmin: bool;2623 readonly tokenOwner: bool;2624 }26252626 /** @name UpDataStructsProperty (263) */2627 interface UpDataStructsProperty extends Struct {2628 readonly key: Bytes;2629 readonly value: Bytes;2630 }26312632 /** @name UpDataStructsCreateItemData (266) */2633 interface UpDataStructsCreateItemData extends Enum {2634 readonly isNft: boolean;2635 readonly asNft: UpDataStructsCreateNftData;2636 readonly isFungible: boolean;2637 readonly asFungible: UpDataStructsCreateFungibleData;2638 readonly isReFungible: boolean;2639 readonly asReFungible: UpDataStructsCreateReFungibleData;2640 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2641 }26422643 /** @name UpDataStructsCreateNftData (267) */2644 interface UpDataStructsCreateNftData extends Struct {2645 readonly properties: Vec<UpDataStructsProperty>;2646 }26472648 /** @name UpDataStructsCreateFungibleData (268) */2649 interface UpDataStructsCreateFungibleData extends Struct {2650 readonly value: u128;2651 }26522653 /** @name UpDataStructsCreateReFungibleData (269) */2654 interface UpDataStructsCreateReFungibleData extends Struct {2655 readonly pieces: u128;2656 readonly properties: Vec<UpDataStructsProperty>;2657 }26582659 /** @name UpDataStructsCreateItemExData (272) */2660 interface UpDataStructsCreateItemExData extends Enum {2661 readonly isNft: boolean;2662 readonly asNft: Vec<UpDataStructsCreateNftExData>;2663 readonly isFungible: boolean;2664 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2665 readonly isRefungibleMultipleItems: boolean;2666 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2667 readonly isRefungibleMultipleOwners: boolean;2668 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2669 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2670 }26712672 /** @name UpDataStructsCreateNftExData (274) */2673 interface UpDataStructsCreateNftExData extends Struct {2674 readonly properties: Vec<UpDataStructsProperty>;2675 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2676 }26772678 /** @name UpDataStructsCreateRefungibleExSingleOwner (281) */2679 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2680 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2681 readonly pieces: u128;2682 readonly properties: Vec<UpDataStructsProperty>;2683 }26842685 /** @name UpDataStructsCreateRefungibleExMultipleOwners (283) */2686 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2687 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2688 readonly properties: Vec<UpDataStructsProperty>;2689 }26902691 /** @name PalletUniqueSchedulerV2Call (284) */2692 interface PalletUniqueSchedulerV2Call extends Enum {2693 readonly isSchedule: boolean;2694 readonly asSchedule: {2695 readonly when: u32;2696 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2697 readonly priority: Option<u8>;2698 readonly call: Call;2699 } & Struct;2700 readonly isCancel: boolean;2701 readonly asCancel: {2702 readonly when: u32;2703 readonly index: u32;2704 } & Struct;2705 readonly isScheduleNamed: boolean;2706 readonly asScheduleNamed: {2707 readonly id: U8aFixed;2708 readonly when: u32;2709 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2710 readonly priority: Option<u8>;2711 readonly call: Call;2712 } & Struct;2713 readonly isCancelNamed: boolean;2714 readonly asCancelNamed: {2715 readonly id: U8aFixed;2716 } & Struct;2717 readonly isScheduleAfter: boolean;2718 readonly asScheduleAfter: {2719 readonly after: u32;2720 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2721 readonly priority: Option<u8>;2722 readonly call: Call;2723 } & Struct;2724 readonly isScheduleNamedAfter: boolean;2725 readonly asScheduleNamedAfter: {2726 readonly id: U8aFixed;2727 readonly after: u32;2728 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2729 readonly priority: Option<u8>;2730 readonly call: Call;2731 } & Struct;2732 readonly isChangeNamedPriority: boolean;2733 readonly asChangeNamedPriority: {2734 readonly id: U8aFixed;2735 readonly priority: u8;2736 } & Struct;2737 readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2738 }27392740 /** @name PalletConfigurationCall (287) */2741 interface PalletConfigurationCall extends Enum {2742 readonly isSetWeightToFeeCoefficientOverride: boolean;2743 readonly asSetWeightToFeeCoefficientOverride: {2744 readonly coeff: Option<u32>;2745 } & Struct;2746 readonly isSetMinGasPriceOverride: boolean;2747 readonly asSetMinGasPriceOverride: {2748 readonly coeff: Option<u64>;2749 } & Struct;2750 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2751 }27522753 /** @name PalletTemplateTransactionPaymentCall (289) */2754 type PalletTemplateTransactionPaymentCall = Null;27552756 /** @name PalletStructureCall (290) */2757 type PalletStructureCall = Null;27582759 /** @name PalletRmrkCoreCall (291) */2760 interface PalletRmrkCoreCall extends Enum {2761 readonly isCreateCollection: boolean;2762 readonly asCreateCollection: {2763 readonly metadata: Bytes;2764 readonly max: Option<u32>;2765 readonly symbol: Bytes;2766 } & Struct;2767 readonly isDestroyCollection: boolean;2768 readonly asDestroyCollection: {2769 readonly collectionId: u32;2770 } & Struct;2771 readonly isChangeCollectionIssuer: boolean;2772 readonly asChangeCollectionIssuer: {2773 readonly collectionId: u32;2774 readonly newIssuer: MultiAddress;2775 } & Struct;2776 readonly isLockCollection: boolean;2777 readonly asLockCollection: {2778 readonly collectionId: u32;2779 } & Struct;2780 readonly isMintNft: boolean;2781 readonly asMintNft: {2782 readonly owner: Option<AccountId32>;2783 readonly collectionId: u32;2784 readonly recipient: Option<AccountId32>;2785 readonly royaltyAmount: Option<Permill>;2786 readonly metadata: Bytes;2787 readonly transferable: bool;2788 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;2789 } & Struct;2790 readonly isBurnNft: boolean;2791 readonly asBurnNft: {2792 readonly collectionId: u32;2793 readonly nftId: u32;2794 readonly maxBurns: u32;2795 } & Struct;2796 readonly isSend: boolean;2797 readonly asSend: {2798 readonly rmrkCollectionId: u32;2799 readonly rmrkNftId: u32;2800 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2801 } & Struct;2802 readonly isAcceptNft: boolean;2803 readonly asAcceptNft: {2804 readonly rmrkCollectionId: u32;2805 readonly rmrkNftId: u32;2806 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2807 } & Struct;2808 readonly isRejectNft: boolean;2809 readonly asRejectNft: {2810 readonly rmrkCollectionId: u32;2811 readonly rmrkNftId: u32;2812 } & Struct;2813 readonly isAcceptResource: boolean;2814 readonly asAcceptResource: {2815 readonly rmrkCollectionId: u32;2816 readonly rmrkNftId: u32;2817 readonly resourceId: u32;2818 } & Struct;2819 readonly isAcceptResourceRemoval: boolean;2820 readonly asAcceptResourceRemoval: {2821 readonly rmrkCollectionId: u32;2822 readonly rmrkNftId: u32;2823 readonly resourceId: u32;2824 } & Struct;2825 readonly isSetProperty: boolean;2826 readonly asSetProperty: {2827 readonly rmrkCollectionId: Compact<u32>;2828 readonly maybeNftId: Option<u32>;2829 readonly key: Bytes;2830 readonly value: Bytes;2831 } & Struct;2832 readonly isSetPriority: boolean;2833 readonly asSetPriority: {2834 readonly rmrkCollectionId: u32;2835 readonly rmrkNftId: u32;2836 readonly priorities: Vec<u32>;2837 } & Struct;2838 readonly isAddBasicResource: boolean;2839 readonly asAddBasicResource: {2840 readonly rmrkCollectionId: u32;2841 readonly nftId: u32;2842 readonly resource: RmrkTraitsResourceBasicResource;2843 } & Struct;2844 readonly isAddComposableResource: boolean;2845 readonly asAddComposableResource: {2846 readonly rmrkCollectionId: u32;2847 readonly nftId: u32;2848 readonly resource: RmrkTraitsResourceComposableResource;2849 } & Struct;2850 readonly isAddSlotResource: boolean;2851 readonly asAddSlotResource: {2852 readonly rmrkCollectionId: u32;2853 readonly nftId: u32;2854 readonly resource: RmrkTraitsResourceSlotResource;2855 } & Struct;2856 readonly isRemoveResource: boolean;2857 readonly asRemoveResource: {2858 readonly rmrkCollectionId: u32;2859 readonly nftId: u32;2860 readonly resourceId: u32;2861 } & Struct;2862 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2863 }28642865 /** @name RmrkTraitsResourceResourceTypes (297) */2866 interface RmrkTraitsResourceResourceTypes extends Enum {2867 readonly isBasic: boolean;2868 readonly asBasic: RmrkTraitsResourceBasicResource;2869 readonly isComposable: boolean;2870 readonly asComposable: RmrkTraitsResourceComposableResource;2871 readonly isSlot: boolean;2872 readonly asSlot: RmrkTraitsResourceSlotResource;2873 readonly type: 'Basic' | 'Composable' | 'Slot';2874 }28752876 /** @name RmrkTraitsResourceBasicResource (299) */2877 interface RmrkTraitsResourceBasicResource extends Struct {2878 readonly src: Option<Bytes>;2879 readonly metadata: Option<Bytes>;2880 readonly license: Option<Bytes>;2881 readonly thumb: Option<Bytes>;2882 }28832884 /** @name RmrkTraitsResourceComposableResource (301) */2885 interface RmrkTraitsResourceComposableResource extends Struct {2886 readonly parts: Vec<u32>;2887 readonly base: u32;2888 readonly src: Option<Bytes>;2889 readonly metadata: Option<Bytes>;2890 readonly license: Option<Bytes>;2891 readonly thumb: Option<Bytes>;2892 }28932894 /** @name RmrkTraitsResourceSlotResource (302) */2895 interface RmrkTraitsResourceSlotResource extends Struct {2896 readonly base: u32;2897 readonly src: Option<Bytes>;2898 readonly metadata: Option<Bytes>;2899 readonly slot: u32;2900 readonly license: Option<Bytes>;2901 readonly thumb: Option<Bytes>;2902 }29032904 /** @name PalletRmrkEquipCall (305) */2905 interface PalletRmrkEquipCall extends Enum {2906 readonly isCreateBase: boolean;2907 readonly asCreateBase: {2908 readonly baseType: Bytes;2909 readonly symbol: Bytes;2910 readonly parts: Vec<RmrkTraitsPartPartType>;2911 } & Struct;2912 readonly isThemeAdd: boolean;2913 readonly asThemeAdd: {2914 readonly baseId: u32;2915 readonly theme: RmrkTraitsTheme;2916 } & Struct;2917 readonly isEquippable: boolean;2918 readonly asEquippable: {2919 readonly baseId: u32;2920 readonly slotId: u32;2921 readonly equippables: RmrkTraitsPartEquippableList;2922 } & Struct;2923 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2924 }29252926 /** @name RmrkTraitsPartPartType (308) */2927 interface RmrkTraitsPartPartType extends Enum {2928 readonly isFixedPart: boolean;2929 readonly asFixedPart: RmrkTraitsPartFixedPart;2930 readonly isSlotPart: boolean;2931 readonly asSlotPart: RmrkTraitsPartSlotPart;2932 readonly type: 'FixedPart' | 'SlotPart';2933 }29342935 /** @name RmrkTraitsPartFixedPart (310) */2936 interface RmrkTraitsPartFixedPart extends Struct {2937 readonly id: u32;2938 readonly z: u32;2939 readonly src: Bytes;2940 }29412942 /** @name RmrkTraitsPartSlotPart (311) */2943 interface RmrkTraitsPartSlotPart extends Struct {2944 readonly id: u32;2945 readonly equippable: RmrkTraitsPartEquippableList;2946 readonly src: Bytes;2947 readonly z: u32;2948 }29492950 /** @name RmrkTraitsPartEquippableList (312) */2951 interface RmrkTraitsPartEquippableList extends Enum {2952 readonly isAll: boolean;2953 readonly isEmpty: boolean;2954 readonly isCustom: boolean;2955 readonly asCustom: Vec<u32>;2956 readonly type: 'All' | 'Empty' | 'Custom';2957 }29582959 /** @name RmrkTraitsTheme (314) */2960 interface RmrkTraitsTheme extends Struct {2961 readonly name: Bytes;2962 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2963 readonly inherit: bool;2964 }29652966 /** @name RmrkTraitsThemeThemeProperty (316) */2967 interface RmrkTraitsThemeThemeProperty extends Struct {2968 readonly key: Bytes;2969 readonly value: Bytes;2970 }29712972 /** @name PalletAppPromotionCall (318) */2973 interface PalletAppPromotionCall extends Enum {2974 readonly isSetAdminAddress: boolean;2975 readonly asSetAdminAddress: {2976 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;2977 } & Struct;2978 readonly isStake: boolean;2979 readonly asStake: {2980 readonly amount: u128;2981 } & Struct;2982 readonly isUnstake: boolean;2983 readonly isSponsorCollection: boolean;2984 readonly asSponsorCollection: {2985 readonly collectionId: u32;2986 } & Struct;2987 readonly isStopSponsoringCollection: boolean;2988 readonly asStopSponsoringCollection: {2989 readonly collectionId: u32;2990 } & Struct;2991 readonly isSponsorContract: boolean;2992 readonly asSponsorContract: {2993 readonly contractId: H160;2994 } & Struct;2995 readonly isStopSponsoringContract: boolean;2996 readonly asStopSponsoringContract: {2997 readonly contractId: H160;2998 } & Struct;2999 readonly isPayoutStakers: boolean;3000 readonly asPayoutStakers: {3001 readonly stakersNumber: Option<u8>;3002 } & Struct;3003 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';3004 }30053006 /** @name PalletForeignAssetsModuleCall (319) */3007 interface PalletForeignAssetsModuleCall extends Enum {3008 readonly isRegisterForeignAsset: boolean;3009 readonly asRegisterForeignAsset: {3010 readonly owner: AccountId32;3011 readonly location: XcmVersionedMultiLocation;3012 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3013 } & Struct;3014 readonly isUpdateForeignAsset: boolean;3015 readonly asUpdateForeignAsset: {3016 readonly foreignAssetId: u32;3017 readonly location: XcmVersionedMultiLocation;3018 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3019 } & Struct;3020 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3021 }30223023 /** @name PalletEvmCall (320) */3024 interface PalletEvmCall extends Enum {3025 readonly isWithdraw: boolean;3026 readonly asWithdraw: {3027 readonly address: H160;3028 readonly value: u128;3029 } & Struct;3030 readonly isCall: boolean;3031 readonly asCall: {3032 readonly source: H160;3033 readonly target: H160;3034 readonly input: Bytes;3035 readonly value: U256;3036 readonly gasLimit: u64;3037 readonly maxFeePerGas: U256;3038 readonly maxPriorityFeePerGas: Option<U256>;3039 readonly nonce: Option<U256>;3040 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3041 } & Struct;3042 readonly isCreate: boolean;3043 readonly asCreate: {3044 readonly source: H160;3045 readonly init: Bytes;3046 readonly value: U256;3047 readonly gasLimit: u64;3048 readonly maxFeePerGas: U256;3049 readonly maxPriorityFeePerGas: Option<U256>;3050 readonly nonce: Option<U256>;3051 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3052 } & Struct;3053 readonly isCreate2: boolean;3054 readonly asCreate2: {3055 readonly source: H160;3056 readonly init: Bytes;3057 readonly salt: H256;3058 readonly value: U256;3059 readonly gasLimit: u64;3060 readonly maxFeePerGas: U256;3061 readonly maxPriorityFeePerGas: Option<U256>;3062 readonly nonce: Option<U256>;3063 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3064 } & Struct;3065 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3066 }30673068 /** @name PalletEthereumCall (326) */3069 interface PalletEthereumCall extends Enum {3070 readonly isTransact: boolean;3071 readonly asTransact: {3072 readonly transaction: EthereumTransactionTransactionV2;3073 } & Struct;3074 readonly type: 'Transact';3075 }30763077 /** @name EthereumTransactionTransactionV2 (327) */3078 interface EthereumTransactionTransactionV2 extends Enum {3079 readonly isLegacy: boolean;3080 readonly asLegacy: EthereumTransactionLegacyTransaction;3081 readonly isEip2930: boolean;3082 readonly asEip2930: EthereumTransactionEip2930Transaction;3083 readonly isEip1559: boolean;3084 readonly asEip1559: EthereumTransactionEip1559Transaction;3085 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3086 }30873088 /** @name EthereumTransactionLegacyTransaction (328) */3089 interface EthereumTransactionLegacyTransaction extends Struct {3090 readonly nonce: U256;3091 readonly gasPrice: U256;3092 readonly gasLimit: U256;3093 readonly action: EthereumTransactionTransactionAction;3094 readonly value: U256;3095 readonly input: Bytes;3096 readonly signature: EthereumTransactionTransactionSignature;3097 }30983099 /** @name EthereumTransactionTransactionAction (329) */3100 interface EthereumTransactionTransactionAction extends Enum {3101 readonly isCall: boolean;3102 readonly asCall: H160;3103 readonly isCreate: boolean;3104 readonly type: 'Call' | 'Create';3105 }31063107 /** @name EthereumTransactionTransactionSignature (330) */3108 interface EthereumTransactionTransactionSignature extends Struct {3109 readonly v: u64;3110 readonly r: H256;3111 readonly s: H256;3112 }31133114 /** @name EthereumTransactionEip2930Transaction (332) */3115 interface EthereumTransactionEip2930Transaction extends Struct {3116 readonly chainId: u64;3117 readonly nonce: U256;3118 readonly gasPrice: U256;3119 readonly gasLimit: U256;3120 readonly action: EthereumTransactionTransactionAction;3121 readonly value: U256;3122 readonly input: Bytes;3123 readonly accessList: Vec<EthereumTransactionAccessListItem>;3124 readonly oddYParity: bool;3125 readonly r: H256;3126 readonly s: H256;3127 }31283129 /** @name EthereumTransactionAccessListItem (334) */3130 interface EthereumTransactionAccessListItem extends Struct {3131 readonly address: H160;3132 readonly storageKeys: Vec<H256>;3133 }31343135 /** @name EthereumTransactionEip1559Transaction (335) */3136 interface EthereumTransactionEip1559Transaction extends Struct {3137 readonly chainId: u64;3138 readonly nonce: U256;3139 readonly maxPriorityFeePerGas: U256;3140 readonly maxFeePerGas: U256;3141 readonly gasLimit: U256;3142 readonly action: EthereumTransactionTransactionAction;3143 readonly value: U256;3144 readonly input: Bytes;3145 readonly accessList: Vec<EthereumTransactionAccessListItem>;3146 readonly oddYParity: bool;3147 readonly r: H256;3148 readonly s: H256;3149 }31503151 /** @name PalletEvmMigrationCall (336) */3152 interface PalletEvmMigrationCall extends Enum {3153 readonly isBegin: boolean;3154 readonly asBegin: {3155 readonly address: H160;3156 } & Struct;3157 readonly isSetData: boolean;3158 readonly asSetData: {3159 readonly address: H160;3160 readonly data: Vec<ITuple<[H256, H256]>>;3161 } & Struct;3162 readonly isFinish: boolean;3163 readonly asFinish: {3164 readonly address: H160;3165 readonly code: Bytes;3166 } & Struct;3167 readonly isInsertEthLogs: boolean;3168 readonly asInsertEthLogs: {3169 readonly logs: Vec<EthereumLog>;3170 } & Struct;3171 readonly isInsertEvents: boolean;3172 readonly asInsertEvents: {3173 readonly events: Vec<Bytes>;3174 } & Struct;3175 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3176 }31773178 /** @name PalletMaintenanceCall (340) */3179 interface PalletMaintenanceCall extends Enum {3180 readonly isEnable: boolean;3181 readonly isDisable: boolean;3182 readonly type: 'Enable' | 'Disable';3183 }31843185 /** @name PalletTestUtilsCall (341) */3186 interface PalletTestUtilsCall extends Enum {3187 readonly isEnable: boolean;3188 readonly isSetTestValue: boolean;3189 readonly asSetTestValue: {3190 readonly value: u32;3191 } & Struct;3192 readonly isSetTestValueAndRollback: boolean;3193 readonly asSetTestValueAndRollback: {3194 readonly value: u32;3195 } & Struct;3196 readonly isIncTestValue: boolean;3197 readonly isSelfCancelingInc: boolean;3198 readonly asSelfCancelingInc: {3199 readonly id: U8aFixed;3200 readonly maxTestValue: u32;3201 } & Struct;3202 readonly isJustTakeFee: boolean;3203 readonly isBatchAll: boolean;3204 readonly asBatchAll: {3205 readonly calls: Vec<Call>;3206 } & Struct;3207 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';3208 }32093210 /** @name PalletSudoError (343) */3211 interface PalletSudoError extends Enum {3212 readonly isRequireSudo: boolean;3213 readonly type: 'RequireSudo';3214 }32153216 /** @name OrmlVestingModuleError (345) */3217 interface OrmlVestingModuleError extends Enum {3218 readonly isZeroVestingPeriod: boolean;3219 readonly isZeroVestingPeriodCount: boolean;3220 readonly isInsufficientBalanceToLock: boolean;3221 readonly isTooManyVestingSchedules: boolean;3222 readonly isAmountLow: boolean;3223 readonly isMaxVestingSchedulesExceeded: boolean;3224 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3225 }32263227 /** @name OrmlXtokensModuleError (346) */3228 interface OrmlXtokensModuleError extends Enum {3229 readonly isAssetHasNoReserve: boolean;3230 readonly isNotCrossChainTransfer: boolean;3231 readonly isInvalidDest: boolean;3232 readonly isNotCrossChainTransferableCurrency: boolean;3233 readonly isUnweighableMessage: boolean;3234 readonly isXcmExecutionFailed: boolean;3235 readonly isCannotReanchor: boolean;3236 readonly isInvalidAncestry: boolean;3237 readonly isInvalidAsset: boolean;3238 readonly isDestinationNotInvertible: boolean;3239 readonly isBadVersion: boolean;3240 readonly isDistinctReserveForAssetAndFee: boolean;3241 readonly isZeroFee: boolean;3242 readonly isZeroAmount: boolean;3243 readonly isTooManyAssetsBeingSent: boolean;3244 readonly isAssetIndexNonExistent: boolean;3245 readonly isFeeNotEnough: boolean;3246 readonly isNotSupportedMultiLocation: boolean;3247 readonly isMinXcmFeeNotDefined: boolean;3248 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3249 }32503251 /** @name OrmlTokensBalanceLock (349) */3252 interface OrmlTokensBalanceLock extends Struct {3253 readonly id: U8aFixed;3254 readonly amount: u128;3255 }32563257 /** @name OrmlTokensAccountData (351) */3258 interface OrmlTokensAccountData extends Struct {3259 readonly free: u128;3260 readonly reserved: u128;3261 readonly frozen: u128;3262 }32633264 /** @name OrmlTokensReserveData (353) */3265 interface OrmlTokensReserveData extends Struct {3266 readonly id: Null;3267 readonly amount: u128;3268 }32693270 /** @name OrmlTokensModuleError (355) */3271 interface OrmlTokensModuleError extends Enum {3272 readonly isBalanceTooLow: boolean;3273 readonly isAmountIntoBalanceFailed: boolean;3274 readonly isLiquidityRestrictions: boolean;3275 readonly isMaxLocksExceeded: boolean;3276 readonly isKeepAlive: boolean;3277 readonly isExistentialDeposit: boolean;3278 readonly isDeadAccount: boolean;3279 readonly isTooManyReserves: boolean;3280 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3281 }32823283 /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */3284 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3285 readonly sender: u32;3286 readonly state: CumulusPalletXcmpQueueInboundState;3287 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3288 }32893290 /** @name CumulusPalletXcmpQueueInboundState (358) */3291 interface CumulusPalletXcmpQueueInboundState extends Enum {3292 readonly isOk: boolean;3293 readonly isSuspended: boolean;3294 readonly type: 'Ok' | 'Suspended';3295 }32963297 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */3298 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3299 readonly isConcatenatedVersionedXcm: boolean;3300 readonly isConcatenatedEncodedBlob: boolean;3301 readonly isSignals: boolean;3302 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3303 }33043305 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */3306 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3307 readonly recipient: u32;3308 readonly state: CumulusPalletXcmpQueueOutboundState;3309 readonly signalsExist: bool;3310 readonly firstIndex: u16;3311 readonly lastIndex: u16;3312 }33133314 /** @name CumulusPalletXcmpQueueOutboundState (365) */3315 interface CumulusPalletXcmpQueueOutboundState extends Enum {3316 readonly isOk: boolean;3317 readonly isSuspended: boolean;3318 readonly type: 'Ok' | 'Suspended';3319 }33203321 /** @name CumulusPalletXcmpQueueQueueConfigData (367) */3322 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3323 readonly suspendThreshold: u32;3324 readonly dropThreshold: u32;3325 readonly resumeThreshold: u32;3326 readonly thresholdWeight: Weight;3327 readonly weightRestrictDecay: Weight;3328 readonly xcmpMaxIndividualWeight: Weight;3329 }33303331 /** @name CumulusPalletXcmpQueueError (369) */3332 interface CumulusPalletXcmpQueueError extends Enum {3333 readonly isFailedToSend: boolean;3334 readonly isBadXcmOrigin: boolean;3335 readonly isBadXcm: boolean;3336 readonly isBadOverweightIndex: boolean;3337 readonly isWeightOverLimit: boolean;3338 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3339 }33403341 /** @name PalletXcmError (370) */3342 interface PalletXcmError extends Enum {3343 readonly isUnreachable: boolean;3344 readonly isSendFailure: boolean;3345 readonly isFiltered: boolean;3346 readonly isUnweighableMessage: boolean;3347 readonly isDestinationNotInvertible: boolean;3348 readonly isEmpty: boolean;3349 readonly isCannotReanchor: boolean;3350 readonly isTooManyAssets: boolean;3351 readonly isInvalidOrigin: boolean;3352 readonly isBadVersion: boolean;3353 readonly isBadLocation: boolean;3354 readonly isNoSubscription: boolean;3355 readonly isAlreadySubscribed: boolean;3356 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3357 }33583359 /** @name CumulusPalletXcmError (371) */3360 type CumulusPalletXcmError = Null;33613362 /** @name CumulusPalletDmpQueueConfigData (372) */3363 interface CumulusPalletDmpQueueConfigData extends Struct {3364 readonly maxIndividual: Weight;3365 }33663367 /** @name CumulusPalletDmpQueuePageIndexData (373) */3368 interface CumulusPalletDmpQueuePageIndexData extends Struct {3369 readonly beginUsed: u32;3370 readonly endUsed: u32;3371 readonly overweightCount: u64;3372 }33733374 /** @name CumulusPalletDmpQueueError (376) */3375 interface CumulusPalletDmpQueueError extends Enum {3376 readonly isUnknown: boolean;3377 readonly isOverLimit: boolean;3378 readonly type: 'Unknown' | 'OverLimit';3379 }33803381 /** @name PalletUniqueError (380) */3382 interface PalletUniqueError extends Enum {3383 readonly isCollectionDecimalPointLimitExceeded: boolean;3384 readonly isConfirmUnsetSponsorFail: boolean;3385 readonly isEmptyArgument: boolean;3386 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3387 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3388 }33893390 /** @name PalletUniqueSchedulerV2BlockAgenda (381) */3391 interface PalletUniqueSchedulerV2BlockAgenda extends Struct {3392 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;3393 readonly freePlaces: u32;3394 }33953396 /** @name PalletUniqueSchedulerV2Scheduled (384) */3397 interface PalletUniqueSchedulerV2Scheduled extends Struct {3398 readonly maybeId: Option<U8aFixed>;3399 readonly priority: u8;3400 readonly call: PalletUniqueSchedulerV2ScheduledCall;3401 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3402 readonly origin: OpalRuntimeOriginCaller;3403 }34043405 /** @name PalletUniqueSchedulerV2ScheduledCall (385) */3406 interface PalletUniqueSchedulerV2ScheduledCall extends Enum {3407 readonly isInline: boolean;3408 readonly asInline: Bytes;3409 readonly isPreimageLookup: boolean;3410 readonly asPreimageLookup: {3411 readonly hash_: H256;3412 readonly unboundedLen: u32;3413 } & Struct;3414 readonly type: 'Inline' | 'PreimageLookup';3415 }34163417 /** @name OpalRuntimeOriginCaller (387) */3418 interface OpalRuntimeOriginCaller extends Enum {3419 readonly isSystem: boolean;3420 readonly asSystem: FrameSupportDispatchRawOrigin;3421 readonly isVoid: boolean;3422 readonly isPolkadotXcm: boolean;3423 readonly asPolkadotXcm: PalletXcmOrigin;3424 readonly isCumulusXcm: boolean;3425 readonly asCumulusXcm: CumulusPalletXcmOrigin;3426 readonly isEthereum: boolean;3427 readonly asEthereum: PalletEthereumRawOrigin;3428 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3429 }34303431 /** @name FrameSupportDispatchRawOrigin (388) */3432 interface FrameSupportDispatchRawOrigin extends Enum {3433 readonly isRoot: boolean;3434 readonly isSigned: boolean;3435 readonly asSigned: AccountId32;3436 readonly isNone: boolean;3437 readonly type: 'Root' | 'Signed' | 'None';3438 }34393440 /** @name PalletXcmOrigin (389) */3441 interface PalletXcmOrigin extends Enum {3442 readonly isXcm: boolean;3443 readonly asXcm: XcmV1MultiLocation;3444 readonly isResponse: boolean;3445 readonly asResponse: XcmV1MultiLocation;3446 readonly type: 'Xcm' | 'Response';3447 }34483449 /** @name CumulusPalletXcmOrigin (390) */3450 interface CumulusPalletXcmOrigin extends Enum {3451 readonly isRelay: boolean;3452 readonly isSiblingParachain: boolean;3453 readonly asSiblingParachain: u32;3454 readonly type: 'Relay' | 'SiblingParachain';3455 }34563457 /** @name PalletEthereumRawOrigin (391) */3458 interface PalletEthereumRawOrigin extends Enum {3459 readonly isEthereumTransaction: boolean;3460 readonly asEthereumTransaction: H160;3461 readonly type: 'EthereumTransaction';3462 }34633464 /** @name SpCoreVoid (392) */3465 type SpCoreVoid = Null;34663467 /** @name PalletUniqueSchedulerV2Error (394) */3468 interface PalletUniqueSchedulerV2Error extends Enum {3469 readonly isFailedToSchedule: boolean;3470 readonly isAgendaIsExhausted: boolean;3471 readonly isScheduledCallCorrupted: boolean;3472 readonly isPreimageNotFound: boolean;3473 readonly isTooBigScheduledCall: boolean;3474 readonly isNotFound: boolean;3475 readonly isTargetBlockNumberInPast: boolean;3476 readonly isNamed: boolean;3477 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';3478 }34793480 /** @name UpDataStructsCollection (395) */3481 interface UpDataStructsCollection extends Struct {3482 readonly owner: AccountId32;3483 readonly mode: UpDataStructsCollectionMode;3484 readonly name: Vec<u16>;3485 readonly description: Vec<u16>;3486 readonly tokenPrefix: Bytes;3487 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3488 readonly limits: UpDataStructsCollectionLimits;3489 readonly permissions: UpDataStructsCollectionPermissions;3490 readonly flags: U8aFixed;3491 }34923493 /** @name UpDataStructsSponsorshipStateAccountId32 (396) */3494 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3495 readonly isDisabled: boolean;3496 readonly isUnconfirmed: boolean;3497 readonly asUnconfirmed: AccountId32;3498 readonly isConfirmed: boolean;3499 readonly asConfirmed: AccountId32;3500 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3501 }35023503 /** @name UpDataStructsProperties (398) */3504 interface UpDataStructsProperties extends Struct {3505 readonly map: UpDataStructsPropertiesMapBoundedVec;3506 readonly consumedSpace: u32;3507 readonly spaceLimit: u32;3508 }35093510 /** @name UpDataStructsPropertiesMapBoundedVec (399) */3511 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}35123513 /** @name UpDataStructsPropertiesMapPropertyPermission (404) */3514 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}35153516 /** @name UpDataStructsCollectionStats (411) */3517 interface UpDataStructsCollectionStats extends Struct {3518 readonly created: u32;3519 readonly destroyed: u32;3520 readonly alive: u32;3521 }35223523 /** @name UpDataStructsTokenChild (412) */3524 interface UpDataStructsTokenChild extends Struct {3525 readonly token: u32;3526 readonly collection: u32;3527 }35283529 /** @name PhantomTypeUpDataStructs (413) */3530 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}35313532 /** @name UpDataStructsTokenData (415) */3533 interface UpDataStructsTokenData extends Struct {3534 readonly properties: Vec<UpDataStructsProperty>;3535 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3536 readonly pieces: u128;3537 }35383539 /** @name UpDataStructsRpcCollection (417) */3540 interface UpDataStructsRpcCollection extends Struct {3541 readonly owner: AccountId32;3542 readonly mode: UpDataStructsCollectionMode;3543 readonly name: Vec<u16>;3544 readonly description: Vec<u16>;3545 readonly tokenPrefix: Bytes;3546 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3547 readonly limits: UpDataStructsCollectionLimits;3548 readonly permissions: UpDataStructsCollectionPermissions;3549 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3550 readonly properties: Vec<UpDataStructsProperty>;3551 readonly readOnly: bool;3552 readonly flags: UpDataStructsRpcCollectionFlags;3553 }35543555 /** @name UpDataStructsRpcCollectionFlags (418) */3556 interface UpDataStructsRpcCollectionFlags extends Struct {3557 readonly foreign: bool;3558 readonly erc721metadata: bool;3559 }35603561 /** @name RmrkTraitsCollectionCollectionInfo (419) */3562 interface RmrkTraitsCollectionCollectionInfo extends Struct {3563 readonly issuer: AccountId32;3564 readonly metadata: Bytes;3565 readonly max: Option<u32>;3566 readonly symbol: Bytes;3567 readonly nftsCount: u32;3568 }35693570 /** @name RmrkTraitsNftNftInfo (420) */3571 interface RmrkTraitsNftNftInfo extends Struct {3572 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3573 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3574 readonly metadata: Bytes;3575 readonly equipped: bool;3576 readonly pending: bool;3577 }35783579 /** @name RmrkTraitsNftRoyaltyInfo (422) */3580 interface RmrkTraitsNftRoyaltyInfo extends Struct {3581 readonly recipient: AccountId32;3582 readonly amount: Permill;3583 }35843585 /** @name RmrkTraitsResourceResourceInfo (423) */3586 interface RmrkTraitsResourceResourceInfo extends Struct {3587 readonly id: u32;3588 readonly resource: RmrkTraitsResourceResourceTypes;3589 readonly pending: bool;3590 readonly pendingRemoval: bool;3591 }35923593 /** @name RmrkTraitsPropertyPropertyInfo (424) */3594 interface RmrkTraitsPropertyPropertyInfo extends Struct {3595 readonly key: Bytes;3596 readonly value: Bytes;3597 }35983599 /** @name RmrkTraitsBaseBaseInfo (425) */3600 interface RmrkTraitsBaseBaseInfo extends Struct {3601 readonly issuer: AccountId32;3602 readonly baseType: Bytes;3603 readonly symbol: Bytes;3604 }36053606 /** @name RmrkTraitsNftNftChild (426) */3607 interface RmrkTraitsNftNftChild extends Struct {3608 readonly collectionId: u32;3609 readonly nftId: u32;3610 }36113612 /** @name PalletCommonError (428) */3613 interface PalletCommonError extends Enum {3614 readonly isCollectionNotFound: boolean;3615 readonly isMustBeTokenOwner: boolean;3616 readonly isNoPermission: boolean;3617 readonly isCantDestroyNotEmptyCollection: boolean;3618 readonly isPublicMintingNotAllowed: boolean;3619 readonly isAddressNotInAllowlist: boolean;3620 readonly isCollectionNameLimitExceeded: boolean;3621 readonly isCollectionDescriptionLimitExceeded: boolean;3622 readonly isCollectionTokenPrefixLimitExceeded: boolean;3623 readonly isTotalCollectionsLimitExceeded: boolean;3624 readonly isCollectionAdminCountExceeded: boolean;3625 readonly isCollectionLimitBoundsExceeded: boolean;3626 readonly isOwnerPermissionsCantBeReverted: boolean;3627 readonly isTransferNotAllowed: boolean;3628 readonly isAccountTokenLimitExceeded: boolean;3629 readonly isCollectionTokenLimitExceeded: boolean;3630 readonly isMetadataFlagFrozen: boolean;3631 readonly isTokenNotFound: boolean;3632 readonly isTokenValueTooLow: boolean;3633 readonly isApprovedValueTooLow: boolean;3634 readonly isCantApproveMoreThanOwned: boolean;3635 readonly isAddressIsZero: boolean;3636 readonly isUnsupportedOperation: boolean;3637 readonly isNotSufficientFounds: boolean;3638 readonly isUserIsNotAllowedToNest: boolean;3639 readonly isSourceCollectionIsNotAllowedToNest: boolean;3640 readonly isCollectionFieldSizeExceeded: boolean;3641 readonly isNoSpaceForProperty: boolean;3642 readonly isPropertyLimitReached: boolean;3643 readonly isPropertyKeyIsTooLong: boolean;3644 readonly isInvalidCharacterInPropertyKey: boolean;3645 readonly isEmptyPropertyKey: boolean;3646 readonly isCollectionIsExternal: boolean;3647 readonly isCollectionIsInternal: boolean;3648 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';3649 }36503651 /** @name PalletFungibleError (430) */3652 interface PalletFungibleError extends Enum {3653 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3654 readonly isFungibleItemsHaveNoId: boolean;3655 readonly isFungibleItemsDontHaveData: boolean;3656 readonly isFungibleDisallowsNesting: boolean;3657 readonly isSettingPropertiesNotAllowed: boolean;3658 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3659 }36603661 /** @name PalletRefungibleItemData (431) */3662 interface PalletRefungibleItemData extends Struct {3663 readonly constData: Bytes;3664 }36653666 /** @name PalletRefungibleError (436) */3667 interface PalletRefungibleError extends Enum {3668 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3669 readonly isWrongRefungiblePieces: boolean;3670 readonly isRepartitionWhileNotOwningAllPieces: boolean;3671 readonly isRefungibleDisallowsNesting: boolean;3672 readonly isSettingPropertiesNotAllowed: boolean;3673 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3674 }36753676 /** @name PalletNonfungibleItemData (437) */3677 interface PalletNonfungibleItemData extends Struct {3678 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3679 }36803681 /** @name UpDataStructsPropertyScope (439) */3682 interface UpDataStructsPropertyScope extends Enum {3683 readonly isNone: boolean;3684 readonly isRmrk: boolean;3685 readonly type: 'None' | 'Rmrk';3686 }36873688 /** @name PalletNonfungibleError (441) */3689 interface PalletNonfungibleError extends Enum {3690 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3691 readonly isNonfungibleItemsHaveNoAmount: boolean;3692 readonly isCantBurnNftWithChildren: boolean;3693 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3694 }36953696 /** @name PalletStructureError (442) */3697 interface PalletStructureError extends Enum {3698 readonly isOuroborosDetected: boolean;3699 readonly isDepthLimit: boolean;3700 readonly isBreadthLimit: boolean;3701 readonly isTokenNotFound: boolean;3702 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3703 }37043705 /** @name PalletRmrkCoreError (443) */3706 interface PalletRmrkCoreError extends Enum {3707 readonly isCorruptedCollectionType: boolean;3708 readonly isRmrkPropertyKeyIsTooLong: boolean;3709 readonly isRmrkPropertyValueIsTooLong: boolean;3710 readonly isRmrkPropertyIsNotFound: boolean;3711 readonly isUnableToDecodeRmrkData: boolean;3712 readonly isCollectionNotEmpty: boolean;3713 readonly isNoAvailableCollectionId: boolean;3714 readonly isNoAvailableNftId: boolean;3715 readonly isCollectionUnknown: boolean;3716 readonly isNoPermission: boolean;3717 readonly isNonTransferable: boolean;3718 readonly isCollectionFullOrLocked: boolean;3719 readonly isResourceDoesntExist: boolean;3720 readonly isCannotSendToDescendentOrSelf: boolean;3721 readonly isCannotAcceptNonOwnedNft: boolean;3722 readonly isCannotRejectNonOwnedNft: boolean;3723 readonly isCannotRejectNonPendingNft: boolean;3724 readonly isResourceNotPending: boolean;3725 readonly isNoAvailableResourceId: boolean;3726 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3727 }37283729 /** @name PalletRmrkEquipError (445) */3730 interface PalletRmrkEquipError extends Enum {3731 readonly isPermissionError: boolean;3732 readonly isNoAvailableBaseId: boolean;3733 readonly isNoAvailablePartId: boolean;3734 readonly isBaseDoesntExist: boolean;3735 readonly isNeedsDefaultThemeFirst: boolean;3736 readonly isPartDoesntExist: boolean;3737 readonly isNoEquippableOnFixedPart: boolean;3738 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3739 }37403741 /** @name PalletAppPromotionError (451) */3742 interface PalletAppPromotionError extends Enum {3743 readonly isAdminNotSet: boolean;3744 readonly isNoPermission: boolean;3745 readonly isNotSufficientFunds: boolean;3746 readonly isPendingForBlockOverflow: boolean;3747 readonly isSponsorNotSet: boolean;3748 readonly isIncorrectLockedBalanceOperation: boolean;3749 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3750 }37513752 /** @name PalletForeignAssetsModuleError (452) */3753 interface PalletForeignAssetsModuleError extends Enum {3754 readonly isBadLocation: boolean;3755 readonly isMultiLocationExisted: boolean;3756 readonly isAssetIdNotExists: boolean;3757 readonly isAssetIdExisted: boolean;3758 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3759 }37603761 /** @name PalletEvmError (454) */3762 interface PalletEvmError extends Enum {3763 readonly isBalanceLow: boolean;3764 readonly isFeeOverflow: boolean;3765 readonly isPaymentOverflow: boolean;3766 readonly isWithdrawFailed: boolean;3767 readonly isGasPriceTooLow: boolean;3768 readonly isInvalidNonce: boolean;3769 readonly isGasLimitTooLow: boolean;3770 readonly isGasLimitTooHigh: boolean;3771 readonly isUndefined: boolean;3772 readonly isReentrancy: boolean;3773 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3774 }37753776 /** @name FpRpcTransactionStatus (457) */3777 interface FpRpcTransactionStatus extends Struct {3778 readonly transactionHash: H256;3779 readonly transactionIndex: u32;3780 readonly from: H160;3781 readonly to: Option<H160>;3782 readonly contractAddress: Option<H160>;3783 readonly logs: Vec<EthereumLog>;3784 readonly logsBloom: EthbloomBloom;3785 }37863787 /** @name EthbloomBloom (459) */3788 interface EthbloomBloom extends U8aFixed {}37893790 /** @name EthereumReceiptReceiptV3 (461) */3791 interface EthereumReceiptReceiptV3 extends Enum {3792 readonly isLegacy: boolean;3793 readonly asLegacy: EthereumReceiptEip658ReceiptData;3794 readonly isEip2930: boolean;3795 readonly asEip2930: EthereumReceiptEip658ReceiptData;3796 readonly isEip1559: boolean;3797 readonly asEip1559: EthereumReceiptEip658ReceiptData;3798 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3799 }38003801 /** @name EthereumReceiptEip658ReceiptData (462) */3802 interface EthereumReceiptEip658ReceiptData extends Struct {3803 readonly statusCode: u8;3804 readonly usedGas: U256;3805 readonly logsBloom: EthbloomBloom;3806 readonly logs: Vec<EthereumLog>;3807 }38083809 /** @name EthereumBlock (463) */3810 interface EthereumBlock extends Struct {3811 readonly header: EthereumHeader;3812 readonly transactions: Vec<EthereumTransactionTransactionV2>;3813 readonly ommers: Vec<EthereumHeader>;3814 }38153816 /** @name EthereumHeader (464) */3817 interface EthereumHeader extends Struct {3818 readonly parentHash: H256;3819 readonly ommersHash: H256;3820 readonly beneficiary: H160;3821 readonly stateRoot: H256;3822 readonly transactionsRoot: H256;3823 readonly receiptsRoot: H256;3824 readonly logsBloom: EthbloomBloom;3825 readonly difficulty: U256;3826 readonly number: U256;3827 readonly gasLimit: U256;3828 readonly gasUsed: U256;3829 readonly timestamp: u64;3830 readonly extraData: Bytes;3831 readonly mixHash: H256;3832 readonly nonce: EthereumTypesHashH64;3833 }38343835 /** @name EthereumTypesHashH64 (465) */3836 interface EthereumTypesHashH64 extends U8aFixed {}38373838 /** @name PalletEthereumError (470) */3839 interface PalletEthereumError extends Enum {3840 readonly isInvalidSignature: boolean;3841 readonly isPreLogExists: boolean;3842 readonly type: 'InvalidSignature' | 'PreLogExists';3843 }38443845 /** @name PalletEvmCoderSubstrateError (471) */3846 interface PalletEvmCoderSubstrateError extends Enum {3847 readonly isOutOfGas: boolean;3848 readonly isOutOfFund: boolean;3849 readonly type: 'OutOfGas' | 'OutOfFund';3850 }38513852 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (472) */3853 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3854 readonly isDisabled: boolean;3855 readonly isUnconfirmed: boolean;3856 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3857 readonly isConfirmed: boolean;3858 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3859 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3860 }38613862 /** @name PalletEvmContractHelpersSponsoringModeT (473) */3863 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3864 readonly isDisabled: boolean;3865 readonly isAllowlisted: boolean;3866 readonly isGenerous: boolean;3867 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3868 }38693870 /** @name PalletEvmContractHelpersError (479) */3871 interface PalletEvmContractHelpersError extends Enum {3872 readonly isNoPermission: boolean;3873 readonly isNoPendingSponsor: boolean;3874 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3875 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3876 }38773878 /** @name PalletEvmMigrationError (480) */3879 interface PalletEvmMigrationError extends Enum {3880 readonly isAccountNotEmpty: boolean;3881 readonly isAccountIsNotMigrating: boolean;3882 readonly isBadEvent: boolean;3883 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3884 }38853886 /** @name PalletMaintenanceError (481) */3887 type PalletMaintenanceError = Null;38883889 /** @name PalletTestUtilsError (482) */3890 interface PalletTestUtilsError extends Enum {3891 readonly isTestPalletDisabled: boolean;3892 readonly isTriggerRollback: boolean;3893 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3894 }38953896 /** @name SpRuntimeMultiSignature (484) */3897 interface SpRuntimeMultiSignature extends Enum {3898 readonly isEd25519: boolean;3899 readonly asEd25519: SpCoreEd25519Signature;3900 readonly isSr25519: boolean;3901 readonly asSr25519: SpCoreSr25519Signature;3902 readonly isEcdsa: boolean;3903 readonly asEcdsa: SpCoreEcdsaSignature;3904 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3905 }39063907 /** @name SpCoreEd25519Signature (485) */3908 interface SpCoreEd25519Signature extends U8aFixed {}39093910 /** @name SpCoreSr25519Signature (487) */3911 interface SpCoreSr25519Signature extends U8aFixed {}39123913 /** @name SpCoreEcdsaSignature (488) */3914 interface SpCoreEcdsaSignature extends U8aFixed {}39153916 /** @name FrameSystemExtensionsCheckSpecVersion (491) */3917 type FrameSystemExtensionsCheckSpecVersion = Null;39183919 /** @name FrameSystemExtensionsCheckTxVersion (492) */3920 type FrameSystemExtensionsCheckTxVersion = Null;39213922 /** @name FrameSystemExtensionsCheckGenesis (493) */3923 type FrameSystemExtensionsCheckGenesis = Null;39243925 /** @name FrameSystemExtensionsCheckNonce (496) */3926 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}39273928 /** @name FrameSystemExtensionsCheckWeight (497) */3929 type FrameSystemExtensionsCheckWeight = Null;39303931 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (498) */3932 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;39333934 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (499) */3935 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}39363937 /** @name OpalRuntimeRuntime (500) */3938 type OpalRuntimeRuntime = Null;39393940 /** @name PalletEthereumFakeTransactionFinalizer (501) */3941 type PalletEthereumFakeTransactionFinalizer = Null;39423943} // declare module