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.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/types/registry';78import 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';9import type { Data, StorageKey } from '@polkadot/types';10import 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';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';12import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';13import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';14import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';15import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';16import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';17import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';18import type { BeefyAuthoritySet, BeefyCommitment, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';19import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';20import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';21import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';22import type { BlockHash } from '@polkadot/types/interfaces/chain';23import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';24import type { StatementKind } from '@polkadot/types/interfaces/claims';25import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';26import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';27import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';29import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';30import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';31import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';32import type { BlockStats } from '@polkadot/types/interfaces/dev';33import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';34import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';35import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';36import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';37import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';38import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';39import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';40import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';41import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';42import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';43import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';44import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';45import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';46import type { NpApiError } from '@polkadot/types/interfaces/nompools';47import type { StorageKind } from '@polkadot/types/interfaces/offchain';48import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';49import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';50import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';51import type { Approvals } from '@polkadot/types/interfaces/poll';52import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';54import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';55import type { RpcMethods } from '@polkadot/types/interfaces/rpc';56import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';57import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';58import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';59import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';60import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';61import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';62import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';63import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';64import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ApplyExtrinsicResultPre6, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModulePre6, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorPre6, DispatchErrorPre6First, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchOutcomePre6, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, TransactionalError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';65import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';66import type { Multiplier } from '@polkadot/types/interfaces/txpayment';67import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';68import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';69import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';70import type { VestingInfo } from '@polkadot/types/interfaces/vesting';71import type { AssetInstance, AssetInstanceV0, AssetInstanceV1, AssetInstanceV2, BodyId, BodyPart, DoubleEncodedCall, Fungibility, FungibilityV0, FungibilityV1, FungibilityV2, InboundStatus, InstructionV2, InteriorMultiLocation, Junction, JunctionV0, JunctionV1, JunctionV2, Junctions, JunctionsV1, JunctionsV2, MultiAsset, MultiAssetFilter, MultiAssetFilterV1, MultiAssetFilterV2, MultiAssetV0, MultiAssetV1, MultiAssetV2, MultiAssets, MultiAssetsV1, MultiAssetsV2, MultiLocation, MultiLocationV0, MultiLocationV1, MultiLocationV2, NetworkId, OriginKindV0, OriginKindV1, OriginKindV2, OutboundStatus, Outcome, QueryId, QueryStatus, QueueConfigData, Response, ResponseV0, ResponseV1, ResponseV2, ResponseV2Error, ResponseV2Result, VersionMigrationStage, VersionedMultiAsset, VersionedMultiAssets, VersionedMultiLocation, VersionedResponse, VersionedXcm, WeightLimitV2, WildFungibility, WildFungibilityV0, WildFungibilityV1, WildFungibilityV2, WildMultiAsset, WildMultiAssetV1, WildMultiAssetV2, Xcm, XcmAssetId, XcmError, XcmErrorV0, XcmErrorV1, XcmErrorV2, XcmOrder, XcmOrderV0, XcmOrderV1, XcmOrderV2, XcmOrigin, XcmOriginKind, XcmV0, XcmV1, XcmV2, XcmVersion, XcmpMessageFormat } from '@polkadot/types/interfaces/xcm';7273declare module '@polkadot/types/types/registry' {74 interface InterfaceTypes {75 AbridgedCandidateReceipt: AbridgedCandidateReceipt;76 AbridgedHostConfiguration: AbridgedHostConfiguration;77 AbridgedHrmpChannel: AbridgedHrmpChannel;78 AccountData: AccountData;79 AccountId: AccountId;80 AccountId20: AccountId20;81 AccountId32: AccountId32;82 AccountId33: AccountId33;83 AccountIdOf: AccountIdOf;84 AccountIndex: AccountIndex;85 AccountInfo: AccountInfo;86 AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;87 AccountInfoWithProviders: AccountInfoWithProviders;88 AccountInfoWithRefCount: AccountInfoWithRefCount;89 AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;90 AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;91 AccountStatus: AccountStatus;92 AccountValidity: AccountValidity;93 AccountVote: AccountVote;94 AccountVoteSplit: AccountVoteSplit;95 AccountVoteStandard: AccountVoteStandard;96 ActiveEraInfo: ActiveEraInfo;97 ActiveGilt: ActiveGilt;98 ActiveGiltsTotal: ActiveGiltsTotal;99 ActiveIndex: ActiveIndex;100 ActiveRecovery: ActiveRecovery;101 Address: Address;102 AliveContractInfo: AliveContractInfo;103 AllowedSlots: AllowedSlots;104 AnySignature: AnySignature;105 ApiId: ApiId;106 ApplyExtrinsicResult: ApplyExtrinsicResult;107 ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;108 ApprovalFlag: ApprovalFlag;109 Approvals: Approvals;110 ArithmeticError: ArithmeticError;111 AssetApproval: AssetApproval;112 AssetApprovalKey: AssetApprovalKey;113 AssetBalance: AssetBalance;114 AssetDestroyWitness: AssetDestroyWitness;115 AssetDetails: AssetDetails;116 AssetId: AssetId;117 AssetInstance: AssetInstance;118 AssetInstanceV0: AssetInstanceV0;119 AssetInstanceV1: AssetInstanceV1;120 AssetInstanceV2: AssetInstanceV2;121 AssetMetadata: AssetMetadata;122 AssetOptions: AssetOptions;123 AssignmentId: AssignmentId;124 AssignmentKind: AssignmentKind;125 AttestedCandidate: AttestedCandidate;126 AuctionIndex: AuctionIndex;127 AuthIndex: AuthIndex;128 AuthorityDiscoveryId: AuthorityDiscoveryId;129 AuthorityId: AuthorityId;130 AuthorityIndex: AuthorityIndex;131 AuthorityList: AuthorityList;132 AuthoritySet: AuthoritySet;133 AuthoritySetChange: AuthoritySetChange;134 AuthoritySetChanges: AuthoritySetChanges;135 AuthoritySignature: AuthoritySignature;136 AuthorityWeight: AuthorityWeight;137 AvailabilityBitfield: AvailabilityBitfield;138 AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;139 BabeAuthorityWeight: BabeAuthorityWeight;140 BabeBlockWeight: BabeBlockWeight;141 BabeEpochConfiguration: BabeEpochConfiguration;142 BabeEquivocationProof: BabeEquivocationProof;143 BabeGenesisConfiguration: BabeGenesisConfiguration;144 BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;145 BabeWeight: BabeWeight;146 BackedCandidate: BackedCandidate;147 Balance: Balance;148 BalanceLock: BalanceLock;149 BalanceLockTo212: BalanceLockTo212;150 BalanceOf: BalanceOf;151 BalanceStatus: BalanceStatus;152 BeefyAuthoritySet: BeefyAuthoritySet;153 BeefyCommitment: BeefyCommitment;154 BeefyId: BeefyId;155 BeefyKey: BeefyKey;156 BeefyNextAuthoritySet: BeefyNextAuthoritySet;157 BeefyPayload: BeefyPayload;158 BeefyPayloadId: BeefyPayloadId;159 BeefySignedCommitment: BeefySignedCommitment;160 BenchmarkBatch: BenchmarkBatch;161 BenchmarkConfig: BenchmarkConfig;162 BenchmarkList: BenchmarkList;163 BenchmarkMetadata: BenchmarkMetadata;164 BenchmarkParameter: BenchmarkParameter;165 BenchmarkResult: BenchmarkResult;166 Bid: Bid;167 Bidder: Bidder;168 BidKind: BidKind;169 BitVec: BitVec;170 Block: Block;171 BlockAttestations: BlockAttestations;172 BlockHash: BlockHash;173 BlockLength: BlockLength;174 BlockNumber: BlockNumber;175 BlockNumberFor: BlockNumberFor;176 BlockNumberOf: BlockNumberOf;177 BlockStats: BlockStats;178 BlockTrace: BlockTrace;179 BlockTraceEvent: BlockTraceEvent;180 BlockTraceEventData: BlockTraceEventData;181 BlockTraceSpan: BlockTraceSpan;182 BlockV0: BlockV0;183 BlockV1: BlockV1;184 BlockV2: BlockV2;185 BlockWeights: BlockWeights;186 BodyId: BodyId;187 BodyPart: BodyPart;188 bool: bool;189 Bool: Bool;190 Bounty: Bounty;191 BountyIndex: BountyIndex;192 BountyStatus: BountyStatus;193 BountyStatusActive: BountyStatusActive;194 BountyStatusCuratorProposed: BountyStatusCuratorProposed;195 BountyStatusPendingPayout: BountyStatusPendingPayout;196 BridgedBlockHash: BridgedBlockHash;197 BridgedBlockNumber: BridgedBlockNumber;198 BridgedHeader: BridgedHeader;199 BridgeMessageId: BridgeMessageId;200 BufferedSessionChange: BufferedSessionChange;201 Bytes: Bytes;202 Call: Call;203 CallHash: CallHash;204 CallHashOf: CallHashOf;205 CallIndex: CallIndex;206 CallOrigin: CallOrigin;207 CandidateCommitments: CandidateCommitments;208 CandidateDescriptor: CandidateDescriptor;209 CandidateEvent: CandidateEvent;210 CandidateHash: CandidateHash;211 CandidateInfo: CandidateInfo;212 CandidatePendingAvailability: CandidatePendingAvailability;213 CandidateReceipt: CandidateReceipt;214 ChainId: ChainId;215 ChainProperties: ChainProperties;216 ChainType: ChainType;217 ChangesTrieConfiguration: ChangesTrieConfiguration;218 ChangesTrieSignal: ChangesTrieSignal;219 CheckInherentsResult: CheckInherentsResult;220 ClassDetails: ClassDetails;221 ClassId: ClassId;222 ClassMetadata: ClassMetadata;223 CodecHash: CodecHash;224 CodeHash: CodeHash;225 CodeSource: CodeSource;226 CodeUploadRequest: CodeUploadRequest;227 CodeUploadResult: CodeUploadResult;228 CodeUploadResultValue: CodeUploadResultValue;229 CollationInfo: CollationInfo;230 CollationInfoV1: CollationInfoV1;231 CollatorId: CollatorId;232 CollatorSignature: CollatorSignature;233 CollectiveOrigin: CollectiveOrigin;234 CommittedCandidateReceipt: CommittedCandidateReceipt;235 CompactAssignments: CompactAssignments;236 CompactAssignmentsTo257: CompactAssignmentsTo257;237 CompactAssignmentsTo265: CompactAssignmentsTo265;238 CompactAssignmentsWith16: CompactAssignmentsWith16;239 CompactAssignmentsWith24: CompactAssignmentsWith24;240 CompactScore: CompactScore;241 CompactScoreCompact: CompactScoreCompact;242 ConfigData: ConfigData;243 Consensus: Consensus;244 ConsensusEngineId: ConsensusEngineId;245 ConsumedWeight: ConsumedWeight;246 ContractCallFlags: ContractCallFlags;247 ContractCallRequest: ContractCallRequest;248 ContractConstructorSpecLatest: ContractConstructorSpecLatest;249 ContractConstructorSpecV0: ContractConstructorSpecV0;250 ContractConstructorSpecV1: ContractConstructorSpecV1;251 ContractConstructorSpecV2: ContractConstructorSpecV2;252 ContractConstructorSpecV3: ContractConstructorSpecV3;253 ContractContractSpecV0: ContractContractSpecV0;254 ContractContractSpecV1: ContractContractSpecV1;255 ContractContractSpecV2: ContractContractSpecV2;256 ContractContractSpecV3: ContractContractSpecV3;257 ContractContractSpecV4: ContractContractSpecV4;258 ContractCryptoHasher: ContractCryptoHasher;259 ContractDiscriminant: ContractDiscriminant;260 ContractDisplayName: ContractDisplayName;261 ContractEventParamSpecLatest: ContractEventParamSpecLatest;262 ContractEventParamSpecV0: ContractEventParamSpecV0;263 ContractEventParamSpecV2: ContractEventParamSpecV2;264 ContractEventSpecLatest: ContractEventSpecLatest;265 ContractEventSpecV0: ContractEventSpecV0;266 ContractEventSpecV1: ContractEventSpecV1;267 ContractEventSpecV2: ContractEventSpecV2;268 ContractExecResult: ContractExecResult;269 ContractExecResultOk: ContractExecResultOk;270 ContractExecResultResult: ContractExecResultResult;271 ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;272 ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;273 ContractExecResultTo255: ContractExecResultTo255;274 ContractExecResultTo260: ContractExecResultTo260;275 ContractExecResultTo267: ContractExecResultTo267;276 ContractInfo: ContractInfo;277 ContractInstantiateResult: ContractInstantiateResult;278 ContractInstantiateResultTo267: ContractInstantiateResultTo267;279 ContractInstantiateResultTo299: ContractInstantiateResultTo299;280 ContractLayoutArray: ContractLayoutArray;281 ContractLayoutCell: ContractLayoutCell;282 ContractLayoutEnum: ContractLayoutEnum;283 ContractLayoutHash: ContractLayoutHash;284 ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;285 ContractLayoutKey: ContractLayoutKey;286 ContractLayoutStruct: ContractLayoutStruct;287 ContractLayoutStructField: ContractLayoutStructField;288 ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;289 ContractMessageParamSpecV0: ContractMessageParamSpecV0;290 ContractMessageParamSpecV2: ContractMessageParamSpecV2;291 ContractMessageSpecLatest: ContractMessageSpecLatest;292 ContractMessageSpecV0: ContractMessageSpecV0;293 ContractMessageSpecV1: ContractMessageSpecV1;294 ContractMessageSpecV2: ContractMessageSpecV2;295 ContractMetadata: ContractMetadata;296 ContractMetadataLatest: ContractMetadataLatest;297 ContractMetadataV0: ContractMetadataV0;298 ContractMetadataV1: ContractMetadataV1;299 ContractMetadataV2: ContractMetadataV2;300 ContractMetadataV3: ContractMetadataV3;301 ContractMetadataV4: ContractMetadataV4;302 ContractProject: ContractProject;303 ContractProjectContract: ContractProjectContract;304 ContractProjectInfo: ContractProjectInfo;305 ContractProjectSource: ContractProjectSource;306 ContractProjectV0: ContractProjectV0;307 ContractReturnFlags: ContractReturnFlags;308 ContractSelector: ContractSelector;309 ContractStorageKey: ContractStorageKey;310 ContractStorageLayout: ContractStorageLayout;311 ContractTypeSpec: ContractTypeSpec;312 Conviction: Conviction;313 CoreAssignment: CoreAssignment;314 CoreIndex: CoreIndex;315 CoreOccupied: CoreOccupied;316 CoreState: CoreState;317 CrateVersion: CrateVersion;318 CreatedBlock: CreatedBlock;319 CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;320 CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;321 CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;322 CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;323 CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;324 CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;325 CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;326 CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;327 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;328 CumulusPalletXcmCall: CumulusPalletXcmCall;329 CumulusPalletXcmError: CumulusPalletXcmError;330 CumulusPalletXcmEvent: CumulusPalletXcmEvent;331 CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;332 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;333 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;334 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;335 CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;336 CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;337 CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;338 CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;339 CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;340 CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;341 Data: Data;342 DeferredOffenceOf: DeferredOffenceOf;343 DefunctVoter: DefunctVoter;344 DelayKind: DelayKind;345 DelayKindBest: DelayKindBest;346 Delegations: Delegations;347 DeletedContract: DeletedContract;348 DeliveredMessages: DeliveredMessages;349 DepositBalance: DepositBalance;350 DepositBalanceOf: DepositBalanceOf;351 DestroyWitness: DestroyWitness;352 Digest: Digest;353 DigestItem: DigestItem;354 DigestOf: DigestOf;355 DispatchClass: DispatchClass;356 DispatchError: DispatchError;357 DispatchErrorModule: DispatchErrorModule;358 DispatchErrorModulePre6: DispatchErrorModulePre6;359 DispatchErrorModuleU8: DispatchErrorModuleU8;360 DispatchErrorModuleU8a: DispatchErrorModuleU8a;361 DispatchErrorPre6: DispatchErrorPre6;362 DispatchErrorPre6First: DispatchErrorPre6First;363 DispatchErrorTo198: DispatchErrorTo198;364 DispatchFeePayment: DispatchFeePayment;365 DispatchInfo: DispatchInfo;366 DispatchInfoTo190: DispatchInfoTo190;367 DispatchInfoTo244: DispatchInfoTo244;368 DispatchOutcome: DispatchOutcome;369 DispatchOutcomePre6: DispatchOutcomePre6;370 DispatchResult: DispatchResult;371 DispatchResultOf: DispatchResultOf;372 DispatchResultTo198: DispatchResultTo198;373 DisputeLocation: DisputeLocation;374 DisputeResult: DisputeResult;375 DisputeState: DisputeState;376 DisputeStatement: DisputeStatement;377 DisputeStatementSet: DisputeStatementSet;378 DoubleEncodedCall: DoubleEncodedCall;379 DoubleVoteReport: DoubleVoteReport;380 DownwardMessage: DownwardMessage;381 EcdsaSignature: EcdsaSignature;382 Ed25519Signature: Ed25519Signature;383 EIP1559Transaction: EIP1559Transaction;384 EIP2930Transaction: EIP2930Transaction;385 ElectionCompute: ElectionCompute;386 ElectionPhase: ElectionPhase;387 ElectionResult: ElectionResult;388 ElectionScore: ElectionScore;389 ElectionSize: ElectionSize;390 ElectionStatus: ElectionStatus;391 EncodedFinalityProofs: EncodedFinalityProofs;392 EncodedJustification: EncodedJustification;393 Epoch: Epoch;394 EpochAuthorship: EpochAuthorship;395 Era: Era;396 EraIndex: EraIndex;397 EraPoints: EraPoints;398 EraRewardPoints: EraRewardPoints;399 EraRewards: EraRewards;400 ErrorMetadataLatest: ErrorMetadataLatest;401 ErrorMetadataV10: ErrorMetadataV10;402 ErrorMetadataV11: ErrorMetadataV11;403 ErrorMetadataV12: ErrorMetadataV12;404 ErrorMetadataV13: ErrorMetadataV13;405 ErrorMetadataV14: ErrorMetadataV14;406 ErrorMetadataV9: ErrorMetadataV9;407 EthAccessList: EthAccessList;408 EthAccessListItem: EthAccessListItem;409 EthAccount: EthAccount;410 EthAddress: EthAddress;411 EthBlock: EthBlock;412 EthBloom: EthBloom;413 EthbloomBloom: EthbloomBloom;414 EthCallRequest: EthCallRequest;415 EthereumAccountId: EthereumAccountId;416 EthereumAddress: EthereumAddress;417 EthereumBlock: EthereumBlock;418 EthereumHeader: EthereumHeader;419 EthereumLog: EthereumLog;420 EthereumLookupSource: EthereumLookupSource;421 EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;422 EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;423 EthereumSignature: EthereumSignature;424 EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;425 EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;426 EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;427 EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;428 EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;429 EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;430 EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;431 EthereumTypesHashH64: EthereumTypesHashH64;432 EthFeeHistory: EthFeeHistory;433 EthFilter: EthFilter;434 EthFilterAddress: EthFilterAddress;435 EthFilterChanges: EthFilterChanges;436 EthFilterTopic: EthFilterTopic;437 EthFilterTopicEntry: EthFilterTopicEntry;438 EthFilterTopicInner: EthFilterTopicInner;439 EthHeader: EthHeader;440 EthLog: EthLog;441 EthReceipt: EthReceipt;442 EthReceiptV0: EthReceiptV0;443 EthReceiptV3: EthReceiptV3;444 EthRichBlock: EthRichBlock;445 EthRichHeader: EthRichHeader;446 EthStorageProof: EthStorageProof;447 EthSubKind: EthSubKind;448 EthSubParams: EthSubParams;449 EthSubResult: EthSubResult;450 EthSyncInfo: EthSyncInfo;451 EthSyncStatus: EthSyncStatus;452 EthTransaction: EthTransaction;453 EthTransactionAction: EthTransactionAction;454 EthTransactionCondition: EthTransactionCondition;455 EthTransactionRequest: EthTransactionRequest;456 EthTransactionSignature: EthTransactionSignature;457 EthTransactionStatus: EthTransactionStatus;458 EthWork: EthWork;459 Event: Event;460 EventId: EventId;461 EventIndex: EventIndex;462 EventMetadataLatest: EventMetadataLatest;463 EventMetadataV10: EventMetadataV10;464 EventMetadataV11: EventMetadataV11;465 EventMetadataV12: EventMetadataV12;466 EventMetadataV13: EventMetadataV13;467 EventMetadataV14: EventMetadataV14;468 EventMetadataV9: EventMetadataV9;469 EventRecord: EventRecord;470 EvmAccount: EvmAccount;471 EvmCallInfo: EvmCallInfo;472 EvmCoreErrorExitError: EvmCoreErrorExitError;473 EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;474 EvmCoreErrorExitReason: EvmCoreErrorExitReason;475 EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;476 EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;477 EvmCreateInfo: EvmCreateInfo;478 EvmLog: EvmLog;479 EvmVicinity: EvmVicinity;480 ExecReturnValue: ExecReturnValue;481 ExitError: ExitError;482 ExitFatal: ExitFatal;483 ExitReason: ExitReason;484 ExitRevert: ExitRevert;485 ExitSucceed: ExitSucceed;486 ExplicitDisputeStatement: ExplicitDisputeStatement;487 Exposure: Exposure;488 ExtendedBalance: ExtendedBalance;489 Extrinsic: Extrinsic;490 ExtrinsicEra: ExtrinsicEra;491 ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;492 ExtrinsicMetadataV11: ExtrinsicMetadataV11;493 ExtrinsicMetadataV12: ExtrinsicMetadataV12;494 ExtrinsicMetadataV13: ExtrinsicMetadataV13;495 ExtrinsicMetadataV14: ExtrinsicMetadataV14;496 ExtrinsicOrHash: ExtrinsicOrHash;497 ExtrinsicPayload: ExtrinsicPayload;498 ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;499 ExtrinsicPayloadV4: ExtrinsicPayloadV4;500 ExtrinsicSignature: ExtrinsicSignature;501 ExtrinsicSignatureV4: ExtrinsicSignatureV4;502 ExtrinsicStatus: ExtrinsicStatus;503 ExtrinsicsWeight: ExtrinsicsWeight;504 ExtrinsicUnknown: ExtrinsicUnknown;505 ExtrinsicV4: ExtrinsicV4;506 f32: f32;507 F32: F32;508 f64: f64;509 F64: F64;510 FeeDetails: FeeDetails;511 Fixed128: Fixed128;512 Fixed64: Fixed64;513 FixedI128: FixedI128;514 FixedI64: FixedI64;515 FixedU128: FixedU128;516 FixedU64: FixedU64;517 Forcing: Forcing;518 ForkTreePendingChange: ForkTreePendingChange;519 ForkTreePendingChangeNode: ForkTreePendingChangeNode;520 FpRpcTransactionStatus: FpRpcTransactionStatus;521 FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;522 FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;523 FrameSupportDispatchPays: FrameSupportDispatchPays;524 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;525 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;526 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;527 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;528 FrameSupportPalletId: FrameSupportPalletId;529 FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;530 FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;531 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;532 FrameSystemAccountInfo: FrameSystemAccountInfo;533 FrameSystemCall: FrameSystemCall;534 FrameSystemError: FrameSystemError;535 FrameSystemEvent: FrameSystemEvent;536 FrameSystemEventRecord: FrameSystemEventRecord;537 FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;538 FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;539 FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;540 FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;541 FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;542 FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;543 FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;544 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;545 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;546 FrameSystemPhase: FrameSystemPhase;547 FullIdentification: FullIdentification;548 FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;549 FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;550 FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;551 FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;552 FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;553 FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;554 FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;555 FunctionMetadataLatest: FunctionMetadataLatest;556 FunctionMetadataV10: FunctionMetadataV10;557 FunctionMetadataV11: FunctionMetadataV11;558 FunctionMetadataV12: FunctionMetadataV12;559 FunctionMetadataV13: FunctionMetadataV13;560 FunctionMetadataV14: FunctionMetadataV14;561 FunctionMetadataV9: FunctionMetadataV9;562 FundIndex: FundIndex;563 FundInfo: FundInfo;564 Fungibility: Fungibility;565 FungibilityV0: FungibilityV0;566 FungibilityV1: FungibilityV1;567 FungibilityV2: FungibilityV2;568 Gas: Gas;569 GiltBid: GiltBid;570 GlobalValidationData: GlobalValidationData;571 GlobalValidationSchedule: GlobalValidationSchedule;572 GrandpaCommit: GrandpaCommit;573 GrandpaEquivocation: GrandpaEquivocation;574 GrandpaEquivocationProof: GrandpaEquivocationProof;575 GrandpaEquivocationValue: GrandpaEquivocationValue;576 GrandpaJustification: GrandpaJustification;577 GrandpaPrecommit: GrandpaPrecommit;578 GrandpaPrevote: GrandpaPrevote;579 GrandpaSignedPrecommit: GrandpaSignedPrecommit;580 GroupIndex: GroupIndex;581 GroupRotationInfo: GroupRotationInfo;582 H1024: H1024;583 H128: H128;584 H160: H160;585 H2048: H2048;586 H256: H256;587 H32: H32;588 H512: H512;589 H64: H64;590 Hash: Hash;591 HeadData: HeadData;592 Header: Header;593 HeaderPartial: HeaderPartial;594 Health: Health;595 Heartbeat: Heartbeat;596 HeartbeatTo244: HeartbeatTo244;597 HostConfiguration: HostConfiguration;598 HostFnWeights: HostFnWeights;599 HostFnWeightsTo264: HostFnWeightsTo264;600 HrmpChannel: HrmpChannel;601 HrmpChannelId: HrmpChannelId;602 HrmpOpenChannelRequest: HrmpOpenChannelRequest;603 i128: i128;604 I128: I128;605 i16: i16;606 I16: I16;607 i256: i256;608 I256: I256;609 i32: i32;610 I32: I32;611 I32F32: I32F32;612 i64: i64;613 I64: I64;614 i8: i8;615 I8: I8;616 IdentificationTuple: IdentificationTuple;617 IdentityFields: IdentityFields;618 IdentityInfo: IdentityInfo;619 IdentityInfoAdditional: IdentityInfoAdditional;620 IdentityInfoTo198: IdentityInfoTo198;621 IdentityJudgement: IdentityJudgement;622 ImmortalEra: ImmortalEra;623 ImportedAux: ImportedAux;624 InboundDownwardMessage: InboundDownwardMessage;625 InboundHrmpMessage: InboundHrmpMessage;626 InboundHrmpMessages: InboundHrmpMessages;627 InboundLaneData: InboundLaneData;628 InboundRelayer: InboundRelayer;629 InboundStatus: InboundStatus;630 IncludedBlocks: IncludedBlocks;631 InclusionFee: InclusionFee;632 IncomingParachain: IncomingParachain;633 IncomingParachainDeploy: IncomingParachainDeploy;634 IncomingParachainFixed: IncomingParachainFixed;635 Index: Index;636 IndicesLookupSource: IndicesLookupSource;637 IndividualExposure: IndividualExposure;638 InherentData: InherentData;639 InherentIdentifier: InherentIdentifier;640 InitializationData: InitializationData;641 InstanceDetails: InstanceDetails;642 InstanceId: InstanceId;643 InstanceMetadata: InstanceMetadata;644 InstantiateRequest: InstantiateRequest;645 InstantiateRequestV1: InstantiateRequestV1;646 InstantiateRequestV2: InstantiateRequestV2;647 InstantiateReturnValue: InstantiateReturnValue;648 InstantiateReturnValueOk: InstantiateReturnValueOk;649 InstantiateReturnValueTo267: InstantiateReturnValueTo267;650 InstructionV2: InstructionV2;651 InstructionWeights: InstructionWeights;652 InteriorMultiLocation: InteriorMultiLocation;653 InvalidDisputeStatementKind: InvalidDisputeStatementKind;654 InvalidTransaction: InvalidTransaction;655 Json: Json;656 Junction: Junction;657 Junctions: Junctions;658 JunctionsV1: JunctionsV1;659 JunctionsV2: JunctionsV2;660 JunctionV0: JunctionV0;661 JunctionV1: JunctionV1;662 JunctionV2: JunctionV2;663 Justification: Justification;664 JustificationNotification: JustificationNotification;665 Justifications: Justifications;666 Key: Key;667 KeyOwnerProof: KeyOwnerProof;668 Keys: Keys;669 KeyType: KeyType;670 KeyTypeId: KeyTypeId;671 KeyValue: KeyValue;672 KeyValueOption: KeyValueOption;673 Kind: Kind;674 LaneId: LaneId;675 LastContribution: LastContribution;676 LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;677 LeasePeriod: LeasePeriod;678 LeasePeriodOf: LeasePeriodOf;679 LegacyTransaction: LegacyTransaction;680 Limits: Limits;681 LimitsTo264: LimitsTo264;682 LocalValidationData: LocalValidationData;683 LockIdentifier: LockIdentifier;684 LookupSource: LookupSource;685 LookupTarget: LookupTarget;686 LotteryConfig: LotteryConfig;687 MaybeRandomness: MaybeRandomness;688 MaybeVrf: MaybeVrf;689 MemberCount: MemberCount;690 MembershipProof: MembershipProof;691 MessageData: MessageData;692 MessageId: MessageId;693 MessageIngestionType: MessageIngestionType;694 MessageKey: MessageKey;695 MessageNonce: MessageNonce;696 MessageQueueChain: MessageQueueChain;697 MessagesDeliveryProofOf: MessagesDeliveryProofOf;698 MessagesProofOf: MessagesProofOf;699 MessagingStateSnapshot: MessagingStateSnapshot;700 MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;701 MetadataAll: MetadataAll;702 MetadataLatest: MetadataLatest;703 MetadataV10: MetadataV10;704 MetadataV11: MetadataV11;705 MetadataV12: MetadataV12;706 MetadataV13: MetadataV13;707 MetadataV14: MetadataV14;708 MetadataV9: MetadataV9;709 MigrationStatusResult: MigrationStatusResult;710 MmrBatchProof: MmrBatchProof;711 MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;712 MmrError: MmrError;713 MmrLeafBatchProof: MmrLeafBatchProof;714 MmrLeafIndex: MmrLeafIndex;715 MmrLeafProof: MmrLeafProof;716 MmrNodeIndex: MmrNodeIndex;717 MmrProof: MmrProof;718 MmrRootHash: MmrRootHash;719 ModuleConstantMetadataV10: ModuleConstantMetadataV10;720 ModuleConstantMetadataV11: ModuleConstantMetadataV11;721 ModuleConstantMetadataV12: ModuleConstantMetadataV12;722 ModuleConstantMetadataV13: ModuleConstantMetadataV13;723 ModuleConstantMetadataV9: ModuleConstantMetadataV9;724 ModuleId: ModuleId;725 ModuleMetadataV10: ModuleMetadataV10;726 ModuleMetadataV11: ModuleMetadataV11;727 ModuleMetadataV12: ModuleMetadataV12;728 ModuleMetadataV13: ModuleMetadataV13;729 ModuleMetadataV9: ModuleMetadataV9;730 Moment: Moment;731 MomentOf: MomentOf;732 MoreAttestations: MoreAttestations;733 MortalEra: MortalEra;734 MultiAddress: MultiAddress;735 MultiAsset: MultiAsset;736 MultiAssetFilter: MultiAssetFilter;737 MultiAssetFilterV1: MultiAssetFilterV1;738 MultiAssetFilterV2: MultiAssetFilterV2;739 MultiAssets: MultiAssets;740 MultiAssetsV1: MultiAssetsV1;741 MultiAssetsV2: MultiAssetsV2;742 MultiAssetV0: MultiAssetV0;743 MultiAssetV1: MultiAssetV1;744 MultiAssetV2: MultiAssetV2;745 MultiDisputeStatementSet: MultiDisputeStatementSet;746 MultiLocation: MultiLocation;747 MultiLocationV0: MultiLocationV0;748 MultiLocationV1: MultiLocationV1;749 MultiLocationV2: MultiLocationV2;750 Multiplier: Multiplier;751 Multisig: Multisig;752 MultiSignature: MultiSignature;753 MultiSigner: MultiSigner;754 NetworkId: NetworkId;755 NetworkState: NetworkState;756 NetworkStatePeerset: NetworkStatePeerset;757 NetworkStatePeersetInfo: NetworkStatePeersetInfo;758 NewBidder: NewBidder;759 NextAuthority: NextAuthority;760 NextConfigDescriptor: NextConfigDescriptor;761 NextConfigDescriptorV1: NextConfigDescriptorV1;762 NodeRole: NodeRole;763 Nominations: Nominations;764 NominatorIndex: NominatorIndex;765 NominatorIndexCompact: NominatorIndexCompact;766 NotConnectedPeer: NotConnectedPeer;767 NpApiError: NpApiError;768 Null: Null;769 OccupiedCore: OccupiedCore;770 OccupiedCoreAssumption: OccupiedCoreAssumption;771 OffchainAccuracy: OffchainAccuracy;772 OffchainAccuracyCompact: OffchainAccuracyCompact;773 OffenceDetails: OffenceDetails;774 Offender: Offender;775 OldV1SessionInfo: OldV1SessionInfo;776 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;777 OpalRuntimeRuntime: OpalRuntimeRuntime;778 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;779 OpaqueCall: OpaqueCall;780 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;781 OpaqueMetadata: OpaqueMetadata;782 OpaqueMultiaddr: OpaqueMultiaddr;783 OpaqueNetworkState: OpaqueNetworkState;784 OpaquePeerId: OpaquePeerId;785 OpaqueTimeSlot: OpaqueTimeSlot;786 OpenTip: OpenTip;787 OpenTipFinderTo225: OpenTipFinderTo225;788 OpenTipTip: OpenTipTip;789 OpenTipTo225: OpenTipTo225;790 OperatingMode: OperatingMode;791 OptionBool: OptionBool;792 Origin: Origin;793 OriginCaller: OriginCaller;794 OriginKindV0: OriginKindV0;795 OriginKindV1: OriginKindV1;796 OriginKindV2: OriginKindV2;797 OrmlTokensAccountData: OrmlTokensAccountData;798 OrmlTokensBalanceLock: OrmlTokensBalanceLock;799 OrmlTokensModuleCall: OrmlTokensModuleCall;800 OrmlTokensModuleError: OrmlTokensModuleError;801 OrmlTokensModuleEvent: OrmlTokensModuleEvent;802 OrmlTokensReserveData: OrmlTokensReserveData;803 OrmlVestingModuleCall: OrmlVestingModuleCall;804 OrmlVestingModuleError: OrmlVestingModuleError;805 OrmlVestingModuleEvent: OrmlVestingModuleEvent;806 OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;807 OrmlXtokensModuleCall: OrmlXtokensModuleCall;808 OrmlXtokensModuleError: OrmlXtokensModuleError;809 OrmlXtokensModuleEvent: OrmlXtokensModuleEvent;810 OutboundHrmpMessage: OutboundHrmpMessage;811 OutboundLaneData: OutboundLaneData;812 OutboundMessageFee: OutboundMessageFee;813 OutboundPayload: OutboundPayload;814 OutboundStatus: OutboundStatus;815 Outcome: Outcome;816 OverweightIndex: OverweightIndex;817 Owner: Owner;818 PageCounter: PageCounter;819 PageIndexData: PageIndexData;820 PalletAppPromotionCall: PalletAppPromotionCall;821 PalletAppPromotionError: PalletAppPromotionError;822 PalletAppPromotionEvent: PalletAppPromotionEvent;823 PalletBalancesAccountData: PalletBalancesAccountData;824 PalletBalancesBalanceLock: PalletBalancesBalanceLock;825 PalletBalancesCall: PalletBalancesCall;826 PalletBalancesError: PalletBalancesError;827 PalletBalancesEvent: PalletBalancesEvent;828 PalletBalancesReasons: PalletBalancesReasons;829 PalletBalancesReleases: PalletBalancesReleases;830 PalletBalancesReserveData: PalletBalancesReserveData;831 PalletCallMetadataLatest: PalletCallMetadataLatest;832 PalletCallMetadataV14: PalletCallMetadataV14;833 PalletCommonError: PalletCommonError;834 PalletCommonEvent: PalletCommonEvent;835 PalletConfigurationCall: PalletConfigurationCall;836 PalletConstantMetadataLatest: PalletConstantMetadataLatest;837 PalletConstantMetadataV14: PalletConstantMetadataV14;838 PalletErrorMetadataLatest: PalletErrorMetadataLatest;839 PalletErrorMetadataV14: PalletErrorMetadataV14;840 PalletEthereumCall: PalletEthereumCall;841 PalletEthereumError: PalletEthereumError;842 PalletEthereumEvent: PalletEthereumEvent;843 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;844 PalletEthereumRawOrigin: PalletEthereumRawOrigin;845 PalletEventMetadataLatest: PalletEventMetadataLatest;846 PalletEventMetadataV14: PalletEventMetadataV14;847 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;848 PalletEvmCall: PalletEvmCall;849 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;850 PalletEvmContractHelpersError: PalletEvmContractHelpersError;851 PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;852 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;853 PalletEvmError: PalletEvmError;854 PalletEvmEvent: PalletEvmEvent;855 PalletEvmMigrationCall: PalletEvmMigrationCall;856 PalletEvmMigrationError: PalletEvmMigrationError;857 PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;858 PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;859 PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;860 PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;861 PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;862 PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;863 PalletFungibleError: PalletFungibleError;864 PalletId: PalletId;865 PalletInflationCall: PalletInflationCall;866 PalletMaintenanceCall: PalletMaintenanceCall;867 PalletMaintenanceError: PalletMaintenanceError;868 PalletMaintenanceEvent: PalletMaintenanceEvent;869 PalletMetadataLatest: PalletMetadataLatest;870 PalletMetadataV14: PalletMetadataV14;871 PalletNonfungibleError: PalletNonfungibleError;872 PalletNonfungibleItemData: PalletNonfungibleItemData;873 PalletRefungibleError: PalletRefungibleError;874 PalletRefungibleItemData: PalletRefungibleItemData;875 PalletRmrkCoreCall: PalletRmrkCoreCall;876 PalletRmrkCoreError: PalletRmrkCoreError;877 PalletRmrkCoreEvent: PalletRmrkCoreEvent;878 PalletRmrkEquipCall: PalletRmrkEquipCall;879 PalletRmrkEquipError: PalletRmrkEquipError;880 PalletRmrkEquipEvent: PalletRmrkEquipEvent;881 PalletsOrigin: PalletsOrigin;882 PalletStorageMetadataLatest: PalletStorageMetadataLatest;883 PalletStorageMetadataV14: PalletStorageMetadataV14;884 PalletStructureCall: PalletStructureCall;885 PalletStructureError: PalletStructureError;886 PalletStructureEvent: PalletStructureEvent;887 PalletSudoCall: PalletSudoCall;888 PalletSudoError: PalletSudoError;889 PalletSudoEvent: PalletSudoEvent;890 PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;891 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;892 PalletTestUtilsCall: PalletTestUtilsCall;893 PalletTestUtilsError: PalletTestUtilsError;894 PalletTestUtilsEvent: PalletTestUtilsEvent;895 PalletTimestampCall: PalletTimestampCall;896 PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;897 PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;898 PalletTreasuryCall: PalletTreasuryCall;899 PalletTreasuryError: PalletTreasuryError;900 PalletTreasuryEvent: PalletTreasuryEvent;901 PalletTreasuryProposal: PalletTreasuryProposal;902 PalletUniqueCall: PalletUniqueCall;903 PalletUniqueError: PalletUniqueError;904 PalletUniqueRawEvent: PalletUniqueRawEvent;905 PalletUniqueSchedulerCall: PalletUniqueSchedulerCall;906 PalletUniqueSchedulerError: PalletUniqueSchedulerError;907 PalletUniqueSchedulerEvent: PalletUniqueSchedulerEvent;908 PalletUniqueSchedulerScheduledV3: PalletUniqueSchedulerScheduledV3;909 PalletVersion: PalletVersion;910 PalletXcmCall: PalletXcmCall;911 PalletXcmError: PalletXcmError;912 PalletXcmEvent: PalletXcmEvent;913 PalletXcmOrigin: PalletXcmOrigin;914 ParachainDispatchOrigin: ParachainDispatchOrigin;915 ParachainInherentData: ParachainInherentData;916 ParachainProposal: ParachainProposal;917 ParachainsInherentData: ParachainsInherentData;918 ParaGenesisArgs: ParaGenesisArgs;919 ParaId: ParaId;920 ParaInfo: ParaInfo;921 ParaLifecycle: ParaLifecycle;922 Parameter: Parameter;923 ParaPastCodeMeta: ParaPastCodeMeta;924 ParaScheduling: ParaScheduling;925 ParathreadClaim: ParathreadClaim;926 ParathreadClaimQueue: ParathreadClaimQueue;927 ParathreadEntry: ParathreadEntry;928 ParaValidatorIndex: ParaValidatorIndex;929 Pays: Pays;930 Peer: Peer;931 PeerEndpoint: PeerEndpoint;932 PeerEndpointAddr: PeerEndpointAddr;933 PeerInfo: PeerInfo;934 PeerPing: PeerPing;935 PendingChange: PendingChange;936 PendingPause: PendingPause;937 PendingResume: PendingResume;938 Perbill: Perbill;939 Percent: Percent;940 PerDispatchClassU32: PerDispatchClassU32;941 PerDispatchClassWeight: PerDispatchClassWeight;942 PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;943 Period: Period;944 Permill: Permill;945 PermissionLatest: PermissionLatest;946 PermissionsV1: PermissionsV1;947 PermissionVersions: PermissionVersions;948 Perquintill: Perquintill;949 PersistedValidationData: PersistedValidationData;950 PerU16: PerU16;951 Phantom: Phantom;952 PhantomData: PhantomData;953 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;954 Phase: Phase;955 PhragmenScore: PhragmenScore;956 Points: Points;957 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;958 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;959 PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;960 PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;961 PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;962 PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;963 PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;964 PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;965 PortableType: PortableType;966 PortableTypeV14: PortableTypeV14;967 Precommits: Precommits;968 PrefabWasmModule: PrefabWasmModule;969 PrefixedStorageKey: PrefixedStorageKey;970 PreimageStatus: PreimageStatus;971 PreimageStatusAvailable: PreimageStatusAvailable;972 PreRuntime: PreRuntime;973 Prevotes: Prevotes;974 Priority: Priority;975 PriorLock: PriorLock;976 PropIndex: PropIndex;977 Proposal: Proposal;978 ProposalIndex: ProposalIndex;979 ProxyAnnouncement: ProxyAnnouncement;980 ProxyDefinition: ProxyDefinition;981 ProxyState: ProxyState;982 ProxyType: ProxyType;983 PvfCheckStatement: PvfCheckStatement;984 QueryId: QueryId;985 QueryStatus: QueryStatus;986 QueueConfigData: QueueConfigData;987 QueuedParathread: QueuedParathread;988 Randomness: Randomness;989 Raw: Raw;990 RawAuraPreDigest: RawAuraPreDigest;991 RawBabePreDigest: RawBabePreDigest;992 RawBabePreDigestCompat: RawBabePreDigestCompat;993 RawBabePreDigestPrimary: RawBabePreDigestPrimary;994 RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;995 RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;996 RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;997 RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;998 RawBabePreDigestTo159: RawBabePreDigestTo159;999 RawOrigin: RawOrigin;1000 RawSolution: RawSolution;1001 RawSolutionTo265: RawSolutionTo265;1002 RawSolutionWith16: RawSolutionWith16;1003 RawSolutionWith24: RawSolutionWith24;1004 RawVRFOutput: RawVRFOutput;1005 ReadProof: ReadProof;1006 ReadySolution: ReadySolution;1007 Reasons: Reasons;1008 RecoveryConfig: RecoveryConfig;1009 RefCount: RefCount;1010 RefCountTo259: RefCountTo259;1011 ReferendumIndex: ReferendumIndex;1012 ReferendumInfo: ReferendumInfo;1013 ReferendumInfoFinished: ReferendumInfoFinished;1014 ReferendumInfoTo239: ReferendumInfoTo239;1015 ReferendumStatus: ReferendumStatus;1016 RegisteredParachainInfo: RegisteredParachainInfo;1017 RegistrarIndex: RegistrarIndex;1018 RegistrarInfo: RegistrarInfo;1019 Registration: Registration;1020 RegistrationJudgement: RegistrationJudgement;1021 RegistrationTo198: RegistrationTo198;1022 RelayBlockNumber: RelayBlockNumber;1023 RelayChainBlockNumber: RelayChainBlockNumber;1024 RelayChainHash: RelayChainHash;1025 RelayerId: RelayerId;1026 RelayHash: RelayHash;1027 Releases: Releases;1028 Remark: Remark;1029 Renouncing: Renouncing;1030 RentProjection: RentProjection;1031 ReplacementTimes: ReplacementTimes;1032 ReportedRoundStates: ReportedRoundStates;1033 Reporter: Reporter;1034 ReportIdOf: ReportIdOf;1035 ReserveData: ReserveData;1036 ReserveIdentifier: ReserveIdentifier;1037 Response: Response;1038 ResponseV0: ResponseV0;1039 ResponseV1: ResponseV1;1040 ResponseV2: ResponseV2;1041 ResponseV2Error: ResponseV2Error;1042 ResponseV2Result: ResponseV2Result;1043 Retriable: Retriable;1044 RewardDestination: RewardDestination;1045 RewardPoint: RewardPoint;1046 RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;1047 RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;1048 RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;1049 RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;1050 RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;1051 RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;1052 RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;1053 RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;1054 RmrkTraitsPartPartType: RmrkTraitsPartPartType;1055 RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;1056 RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;1057 RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;1058 RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;1059 RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;1060 RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;1061 RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;1062 RmrkTraitsTheme: RmrkTraitsTheme;1063 RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;1064 RoundSnapshot: RoundSnapshot;1065 RoundState: RoundState;1066 RpcMethods: RpcMethods;1067 RuntimeDbWeight: RuntimeDbWeight;1068 RuntimeDispatchInfo: RuntimeDispatchInfo;1069 RuntimeVersion: RuntimeVersion;1070 RuntimeVersionApi: RuntimeVersionApi;1071 RuntimeVersionPartial: RuntimeVersionPartial;1072 RuntimeVersionPre3: RuntimeVersionPre3;1073 RuntimeVersionPre4: RuntimeVersionPre4;1074 Schedule: Schedule;1075 Scheduled: Scheduled;1076 ScheduledCore: ScheduledCore;1077 ScheduledTo254: ScheduledTo254;1078 SchedulePeriod: SchedulePeriod;1079 SchedulePriority: SchedulePriority;1080 ScheduleTo212: ScheduleTo212;1081 ScheduleTo258: ScheduleTo258;1082 ScheduleTo264: ScheduleTo264;1083 Scheduling: Scheduling;1084 ScrapedOnChainVotes: ScrapedOnChainVotes;1085 Seal: Seal;1086 SealV0: SealV0;1087 SeatHolder: SeatHolder;1088 SeedOf: SeedOf;1089 ServiceQuality: ServiceQuality;1090 SessionIndex: SessionIndex;1091 SessionInfo: SessionInfo;1092 SessionInfoValidatorGroup: SessionInfoValidatorGroup;1093 SessionKeys1: SessionKeys1;1094 SessionKeys10: SessionKeys10;1095 SessionKeys10B: SessionKeys10B;1096 SessionKeys2: SessionKeys2;1097 SessionKeys3: SessionKeys3;1098 SessionKeys4: SessionKeys4;1099 SessionKeys5: SessionKeys5;1100 SessionKeys6: SessionKeys6;1101 SessionKeys6B: SessionKeys6B;1102 SessionKeys7: SessionKeys7;1103 SessionKeys7B: SessionKeys7B;1104 SessionKeys8: SessionKeys8;1105 SessionKeys8B: SessionKeys8B;1106 SessionKeys9: SessionKeys9;1107 SessionKeys9B: SessionKeys9B;1108 SetId: SetId;1109 SetIndex: SetIndex;1110 Si0Field: Si0Field;1111 Si0LookupTypeId: Si0LookupTypeId;1112 Si0Path: Si0Path;1113 Si0Type: Si0Type;1114 Si0TypeDef: Si0TypeDef;1115 Si0TypeDefArray: Si0TypeDefArray;1116 Si0TypeDefBitSequence: Si0TypeDefBitSequence;1117 Si0TypeDefCompact: Si0TypeDefCompact;1118 Si0TypeDefComposite: Si0TypeDefComposite;1119 Si0TypeDefPhantom: Si0TypeDefPhantom;1120 Si0TypeDefPrimitive: Si0TypeDefPrimitive;1121 Si0TypeDefSequence: Si0TypeDefSequence;1122 Si0TypeDefTuple: Si0TypeDefTuple;1123 Si0TypeDefVariant: Si0TypeDefVariant;1124 Si0TypeParameter: Si0TypeParameter;1125 Si0Variant: Si0Variant;1126 Si1Field: Si1Field;1127 Si1LookupTypeId: Si1LookupTypeId;1128 Si1Path: Si1Path;1129 Si1Type: Si1Type;1130 Si1TypeDef: Si1TypeDef;1131 Si1TypeDefArray: Si1TypeDefArray;1132 Si1TypeDefBitSequence: Si1TypeDefBitSequence;1133 Si1TypeDefCompact: Si1TypeDefCompact;1134 Si1TypeDefComposite: Si1TypeDefComposite;1135 Si1TypeDefPrimitive: Si1TypeDefPrimitive;1136 Si1TypeDefSequence: Si1TypeDefSequence;1137 Si1TypeDefTuple: Si1TypeDefTuple;1138 Si1TypeDefVariant: Si1TypeDefVariant;1139 Si1TypeParameter: Si1TypeParameter;1140 Si1Variant: Si1Variant;1141 SiField: SiField;1142 Signature: Signature;1143 SignedAvailabilityBitfield: SignedAvailabilityBitfield;1144 SignedAvailabilityBitfields: SignedAvailabilityBitfields;1145 SignedBlock: SignedBlock;1146 SignedBlockWithJustification: SignedBlockWithJustification;1147 SignedBlockWithJustifications: SignedBlockWithJustifications;1148 SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1149 SignedExtensionMetadataV14: SignedExtensionMetadataV14;1150 SignedSubmission: SignedSubmission;1151 SignedSubmissionOf: SignedSubmissionOf;1152 SignedSubmissionTo276: SignedSubmissionTo276;1153 SignerPayload: SignerPayload;1154 SigningContext: SigningContext;1155 SiLookupTypeId: SiLookupTypeId;1156 SiPath: SiPath;1157 SiType: SiType;1158 SiTypeDef: SiTypeDef;1159 SiTypeDefArray: SiTypeDefArray;1160 SiTypeDefBitSequence: SiTypeDefBitSequence;1161 SiTypeDefCompact: SiTypeDefCompact;1162 SiTypeDefComposite: SiTypeDefComposite;1163 SiTypeDefPrimitive: SiTypeDefPrimitive;1164 SiTypeDefSequence: SiTypeDefSequence;1165 SiTypeDefTuple: SiTypeDefTuple;1166 SiTypeDefVariant: SiTypeDefVariant;1167 SiTypeParameter: SiTypeParameter;1168 SiVariant: SiVariant;1169 SlashingSpans: SlashingSpans;1170 SlashingSpansTo204: SlashingSpansTo204;1171 SlashJournalEntry: SlashJournalEntry;1172 Slot: Slot;1173 SlotDuration: SlotDuration;1174 SlotNumber: SlotNumber;1175 SlotRange: SlotRange;1176 SlotRange10: SlotRange10;1177 SocietyJudgement: SocietyJudgement;1178 SocietyVote: SocietyVote;1179 SolutionOrSnapshotSize: SolutionOrSnapshotSize;1180 SolutionSupport: SolutionSupport;1181 SolutionSupports: SolutionSupports;1182 SpanIndex: SpanIndex;1183 SpanRecord: SpanRecord;1184 SpCoreEcdsaSignature: SpCoreEcdsaSignature;1185 SpCoreEd25519Signature: SpCoreEd25519Signature;1186 SpCoreSr25519Signature: SpCoreSr25519Signature;1187 SpCoreVoid: SpCoreVoid;1188 SpecVersion: SpecVersion;1189 SpRuntimeArithmeticError: SpRuntimeArithmeticError;1190 SpRuntimeDigest: SpRuntimeDigest;1191 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1192 SpRuntimeDispatchError: SpRuntimeDispatchError;1193 SpRuntimeModuleError: SpRuntimeModuleError;1194 SpRuntimeMultiSignature: SpRuntimeMultiSignature;1195 SpRuntimeTokenError: SpRuntimeTokenError;1196 SpRuntimeTransactionalError: SpRuntimeTransactionalError;1197 SpTrieStorageProof: SpTrieStorageProof;1198 SpVersionRuntimeVersion: SpVersionRuntimeVersion;1199 SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;1200 Sr25519Signature: Sr25519Signature;1201 StakingLedger: StakingLedger;1202 StakingLedgerTo223: StakingLedgerTo223;1203 StakingLedgerTo240: StakingLedgerTo240;1204 Statement: Statement;1205 StatementKind: StatementKind;1206 StorageChangeSet: StorageChangeSet;1207 StorageData: StorageData;1208 StorageDeposit: StorageDeposit;1209 StorageEntryMetadataLatest: StorageEntryMetadataLatest;1210 StorageEntryMetadataV10: StorageEntryMetadataV10;1211 StorageEntryMetadataV11: StorageEntryMetadataV11;1212 StorageEntryMetadataV12: StorageEntryMetadataV12;1213 StorageEntryMetadataV13: StorageEntryMetadataV13;1214 StorageEntryMetadataV14: StorageEntryMetadataV14;1215 StorageEntryMetadataV9: StorageEntryMetadataV9;1216 StorageEntryModifierLatest: StorageEntryModifierLatest;1217 StorageEntryModifierV10: StorageEntryModifierV10;1218 StorageEntryModifierV11: StorageEntryModifierV11;1219 StorageEntryModifierV12: StorageEntryModifierV12;1220 StorageEntryModifierV13: StorageEntryModifierV13;1221 StorageEntryModifierV14: StorageEntryModifierV14;1222 StorageEntryModifierV9: StorageEntryModifierV9;1223 StorageEntryTypeLatest: StorageEntryTypeLatest;1224 StorageEntryTypeV10: StorageEntryTypeV10;1225 StorageEntryTypeV11: StorageEntryTypeV11;1226 StorageEntryTypeV12: StorageEntryTypeV12;1227 StorageEntryTypeV13: StorageEntryTypeV13;1228 StorageEntryTypeV14: StorageEntryTypeV14;1229 StorageEntryTypeV9: StorageEntryTypeV9;1230 StorageHasher: StorageHasher;1231 StorageHasherV10: StorageHasherV10;1232 StorageHasherV11: StorageHasherV11;1233 StorageHasherV12: StorageHasherV12;1234 StorageHasherV13: StorageHasherV13;1235 StorageHasherV14: StorageHasherV14;1236 StorageHasherV9: StorageHasherV9;1237 StorageInfo: StorageInfo;1238 StorageKey: StorageKey;1239 StorageKind: StorageKind;1240 StorageMetadataV10: StorageMetadataV10;1241 StorageMetadataV11: StorageMetadataV11;1242 StorageMetadataV12: StorageMetadataV12;1243 StorageMetadataV13: StorageMetadataV13;1244 StorageMetadataV9: StorageMetadataV9;1245 StorageProof: StorageProof;1246 StoredPendingChange: StoredPendingChange;1247 StoredState: StoredState;1248 StrikeCount: StrikeCount;1249 SubId: SubId;1250 SubmissionIndicesOf: SubmissionIndicesOf;1251 Supports: Supports;1252 SyncState: SyncState;1253 SystemInherentData: SystemInherentData;1254 SystemOrigin: SystemOrigin;1255 Tally: Tally;1256 TaskAddress: TaskAddress;1257 TAssetBalance: TAssetBalance;1258 TAssetDepositBalance: TAssetDepositBalance;1259 Text: Text;1260 Timepoint: Timepoint;1261 TokenError: TokenError;1262 TombstoneContractInfo: TombstoneContractInfo;1263 TraceBlockResponse: TraceBlockResponse;1264 TraceError: TraceError;1265 TransactionalError: TransactionalError;1266 TransactionInfo: TransactionInfo;1267 TransactionLongevity: TransactionLongevity;1268 TransactionPriority: TransactionPriority;1269 TransactionSource: TransactionSource;1270 TransactionStorageProof: TransactionStorageProof;1271 TransactionTag: TransactionTag;1272 TransactionV0: TransactionV0;1273 TransactionV1: TransactionV1;1274 TransactionV2: TransactionV2;1275 TransactionValidity: TransactionValidity;1276 TransactionValidityError: TransactionValidityError;1277 TransientValidationData: TransientValidationData;1278 TreasuryProposal: TreasuryProposal;1279 TrieId: TrieId;1280 TrieIndex: TrieIndex;1281 Type: Type;1282 u128: u128;1283 U128: U128;1284 u16: u16;1285 U16: U16;1286 u256: u256;1287 U256: U256;1288 u32: u32;1289 U32: U32;1290 U32F32: U32F32;1291 u64: u64;1292 U64: U64;1293 u8: u8;1294 U8: U8;1295 UnappliedSlash: UnappliedSlash;1296 UnappliedSlashOther: UnappliedSlashOther;1297 UncleEntryItem: UncleEntryItem;1298 UnknownTransaction: UnknownTransaction;1299 UnlockChunk: UnlockChunk;1300 UnrewardedRelayer: UnrewardedRelayer;1301 UnrewardedRelayersState: UnrewardedRelayersState;1302 UpDataStructsAccessMode: UpDataStructsAccessMode;1303 UpDataStructsCollection: UpDataStructsCollection;1304 UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1305 UpDataStructsCollectionMode: UpDataStructsCollectionMode;1306 UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1307 UpDataStructsCollectionStats: UpDataStructsCollectionStats;1308 UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1309 UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1310 UpDataStructsCreateItemData: UpDataStructsCreateItemData;1311 UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1312 UpDataStructsCreateNftData: UpDataStructsCreateNftData;1313 UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1314 UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1315 UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1316 UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1317 UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1318 UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1319 UpDataStructsProperties: UpDataStructsProperties;1320 UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1321 UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1322 UpDataStructsProperty: UpDataStructsProperty;1323 UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1324 UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1325 UpDataStructsPropertyScope: UpDataStructsPropertyScope;1326 UpDataStructsRpcCollection: UpDataStructsRpcCollection;1327 UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;1328 UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1329 UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1330 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1331 UpDataStructsTokenChild: UpDataStructsTokenChild;1332 UpDataStructsTokenData: UpDataStructsTokenData;1333 UpgradeGoAhead: UpgradeGoAhead;1334 UpgradeRestriction: UpgradeRestriction;1335 UpwardMessage: UpwardMessage;1336 usize: usize;1337 USize: USize;1338 ValidationCode: ValidationCode;1339 ValidationCodeHash: ValidationCodeHash;1340 ValidationData: ValidationData;1341 ValidationDataType: ValidationDataType;1342 ValidationFunctionParams: ValidationFunctionParams;1343 ValidatorCount: ValidatorCount;1344 ValidatorId: ValidatorId;1345 ValidatorIdOf: ValidatorIdOf;1346 ValidatorIndex: ValidatorIndex;1347 ValidatorIndexCompact: ValidatorIndexCompact;1348 ValidatorPrefs: ValidatorPrefs;1349 ValidatorPrefsTo145: ValidatorPrefsTo145;1350 ValidatorPrefsTo196: ValidatorPrefsTo196;1351 ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1352 ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1353 ValidatorSet: ValidatorSet;1354 ValidatorSetId: ValidatorSetId;1355 ValidatorSignature: ValidatorSignature;1356 ValidDisputeStatementKind: ValidDisputeStatementKind;1357 ValidityAttestation: ValidityAttestation;1358 ValidTransaction: ValidTransaction;1359 VecInboundHrmpMessage: VecInboundHrmpMessage;1360 VersionedMultiAsset: VersionedMultiAsset;1361 VersionedMultiAssets: VersionedMultiAssets;1362 VersionedMultiLocation: VersionedMultiLocation;1363 VersionedResponse: VersionedResponse;1364 VersionedXcm: VersionedXcm;1365 VersionMigrationStage: VersionMigrationStage;1366 VestingInfo: VestingInfo;1367 VestingSchedule: VestingSchedule;1368 Vote: Vote;1369 VoteIndex: VoteIndex;1370 Voter: Voter;1371 VoterInfo: VoterInfo;1372 Votes: Votes;1373 VotesTo230: VotesTo230;1374 VoteThreshold: VoteThreshold;1375 VoteWeight: VoteWeight;1376 Voting: Voting;1377 VotingDelegating: VotingDelegating;1378 VotingDirect: VotingDirect;1379 VotingDirectVote: VotingDirectVote;1380 VouchingStatus: VouchingStatus;1381 VrfData: VrfData;1382 VrfOutput: VrfOutput;1383 VrfProof: VrfProof;1384 Weight: Weight;1385 WeightLimitV2: WeightLimitV2;1386 WeightMultiplier: WeightMultiplier;1387 WeightPerClass: WeightPerClass;1388 WeightToFeeCoefficient: WeightToFeeCoefficient;1389 WeightV1: WeightV1;1390 WeightV2: WeightV2;1391 WildFungibility: WildFungibility;1392 WildFungibilityV0: WildFungibilityV0;1393 WildFungibilityV1: WildFungibilityV1;1394 WildFungibilityV2: WildFungibilityV2;1395 WildMultiAsset: WildMultiAsset;1396 WildMultiAssetV1: WildMultiAssetV1;1397 WildMultiAssetV2: WildMultiAssetV2;1398 WinnersData: WinnersData;1399 WinnersData10: WinnersData10;1400 WinnersDataTuple: WinnersDataTuple;1401 WinnersDataTuple10: WinnersDataTuple10;1402 WinningData: WinningData;1403 WinningData10: WinningData10;1404 WinningDataEntry: WinningDataEntry;1405 WithdrawReasons: WithdrawReasons;1406 Xcm: Xcm;1407 XcmAssetId: XcmAssetId;1408 XcmDoubleEncoded: XcmDoubleEncoded;1409 XcmError: XcmError;1410 XcmErrorV0: XcmErrorV0;1411 XcmErrorV1: XcmErrorV1;1412 XcmErrorV2: XcmErrorV2;1413 XcmOrder: XcmOrder;1414 XcmOrderV0: XcmOrderV0;1415 XcmOrderV1: XcmOrderV1;1416 XcmOrderV2: XcmOrderV2;1417 XcmOrigin: XcmOrigin;1418 XcmOriginKind: XcmOriginKind;1419 XcmpMessageFormat: XcmpMessageFormat;1420 XcmV0: XcmV0;1421 XcmV0Junction: XcmV0Junction;1422 XcmV0JunctionBodyId: XcmV0JunctionBodyId;1423 XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1424 XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1425 XcmV0MultiAsset: XcmV0MultiAsset;1426 XcmV0MultiLocation: XcmV0MultiLocation;1427 XcmV0Order: XcmV0Order;1428 XcmV0OriginKind: XcmV0OriginKind;1429 XcmV0Response: XcmV0Response;1430 XcmV0Xcm: XcmV0Xcm;1431 XcmV1: XcmV1;1432 XcmV1Junction: XcmV1Junction;1433 XcmV1MultiAsset: XcmV1MultiAsset;1434 XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1435 XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1436 XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1437 XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1438 XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1439 XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1440 XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1441 XcmV1MultiLocation: XcmV1MultiLocation;1442 XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1443 XcmV1Order: XcmV1Order;1444 XcmV1Response: XcmV1Response;1445 XcmV1Xcm: XcmV1Xcm;1446 XcmV2: XcmV2;1447 XcmV2Instruction: XcmV2Instruction;1448 XcmV2Response: XcmV2Response;1449 XcmV2TraitsError: XcmV2TraitsError;1450 XcmV2TraitsOutcome: XcmV2TraitsOutcome;1451 XcmV2WeightLimit: XcmV2WeightLimit;1452 XcmV2Xcm: XcmV2Xcm;1453 XcmVersion: XcmVersion;1454 XcmVersionedMultiAsset: XcmVersionedMultiAsset;1455 XcmVersionedMultiAssets: XcmVersionedMultiAssets;1456 XcmVersionedMultiLocation: XcmVersionedMultiLocation;1457 XcmVersionedXcm: XcmVersionedXcm;1458 } // InterfaceTypes1459} // 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/types/registry';78import 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';9import type { Data, StorageKey } from '@polkadot/types';10import 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';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';12import type { BlockAttestations, IncludedBlocks, MoreAttestations } from '@polkadot/types/interfaces/attestations';13import type { RawAuraPreDigest } from '@polkadot/types/interfaces/aura';14import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';15import type { UncleEntryItem } from '@polkadot/types/interfaces/authorship';16import type { AllowedSlots, BabeAuthorityWeight, BabeBlockWeight, BabeEpochConfiguration, BabeEquivocationProof, BabeGenesisConfiguration, BabeGenesisConfigurationV1, BabeWeight, Epoch, EpochAuthorship, MaybeRandomness, MaybeVrf, NextConfigDescriptor, NextConfigDescriptorV1, OpaqueKeyOwnershipProof, Randomness, RawBabePreDigest, RawBabePreDigestCompat, RawBabePreDigestPrimary, RawBabePreDigestPrimaryTo159, RawBabePreDigestSecondaryPlain, RawBabePreDigestSecondaryTo159, RawBabePreDigestSecondaryVRF, RawBabePreDigestTo159, SlotNumber, VrfData, VrfOutput, VrfProof } from '@polkadot/types/interfaces/babe';17import type { AccountData, BalanceLock, BalanceLockTo212, BalanceStatus, Reasons, ReserveData, ReserveIdentifier, VestingSchedule, WithdrawReasons } from '@polkadot/types/interfaces/balances';18import type { BeefyAuthoritySet, BeefyCommitment, BeefyId, BeefyNextAuthoritySet, BeefyPayload, BeefyPayloadId, BeefySignedCommitment, MmrRootHash, ValidatorSet, ValidatorSetId } from '@polkadot/types/interfaces/beefy';19import type { BenchmarkBatch, BenchmarkConfig, BenchmarkList, BenchmarkMetadata, BenchmarkParameter, BenchmarkResult } from '@polkadot/types/interfaces/benchmark';20import type { CheckInherentsResult, InherentData, InherentIdentifier } from '@polkadot/types/interfaces/blockbuilder';21import type { BridgeMessageId, BridgedBlockHash, BridgedBlockNumber, BridgedHeader, CallOrigin, ChainId, DeliveredMessages, DispatchFeePayment, InboundLaneData, InboundRelayer, InitializationData, LaneId, MessageData, MessageKey, MessageNonce, MessagesDeliveryProofOf, MessagesProofOf, OperatingMode, OutboundLaneData, OutboundMessageFee, OutboundPayload, Parameter, RelayerId, UnrewardedRelayer, UnrewardedRelayersState } from '@polkadot/types/interfaces/bridges';22import type { BlockHash } from '@polkadot/types/interfaces/chain';23import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';24import type { StatementKind } from '@polkadot/types/interfaces/claims';25import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';26import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';27import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';29import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';30import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';31import type { AccountVote, AccountVoteSplit, AccountVoteStandard, Conviction, Delegations, PreimageStatus, PreimageStatusAvailable, PriorLock, PropIndex, Proposal, ProxyState, ReferendumIndex, ReferendumInfo, ReferendumInfoFinished, ReferendumInfoTo239, ReferendumStatus, Tally, Voting, VotingDelegating, VotingDirect, VotingDirectVote } from '@polkadot/types/interfaces/democracy';32import type { BlockStats } from '@polkadot/types/interfaces/dev';33import type { ApprovalFlag, DefunctVoter, Renouncing, SetIndex, Vote, VoteIndex, VoteThreshold, VoterInfo } from '@polkadot/types/interfaces/elections';34import type { CreatedBlock, ImportedAux } from '@polkadot/types/interfaces/engine';35import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';36import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';37import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';38import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';39import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';40import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';41import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';42import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';43import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';44import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';45import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';46import type { NpApiError } from '@polkadot/types/interfaces/nompools';47import type { StorageKind } from '@polkadot/types/interfaces/offchain';48import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';49import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';50import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';51import type { Approvals } from '@polkadot/types/interfaces/poll';52import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';54import type { ActiveRecovery, RecoveryConfig } from '@polkadot/types/interfaces/recovery';55import type { RpcMethods } from '@polkadot/types/interfaces/rpc';56import type { AccountId, AccountId20, AccountId32, AccountId33, AccountIdOf, AccountIndex, Address, AssetId, Balance, BalanceOf, Block, BlockNumber, BlockNumberFor, BlockNumberOf, Call, CallHash, CallHashOf, ChangesTrieConfiguration, ChangesTrieSignal, CodecHash, Consensus, ConsensusEngineId, CrateVersion, Digest, DigestItem, EncodedJustification, ExtrinsicsWeight, Fixed128, Fixed64, FixedI128, FixedI64, FixedU128, FixedU64, H1024, H128, H160, H2048, H256, H32, H512, H64, Hash, Header, HeaderPartial, I32F32, Index, IndicesLookupSource, Justification, Justifications, KeyTypeId, KeyValue, LockIdentifier, LookupSource, LookupTarget, ModuleId, Moment, MultiAddress, MultiSigner, OpaqueCall, Origin, OriginCaller, PalletId, PalletVersion, PalletsOrigin, Pays, PerU16, Perbill, Percent, Permill, Perquintill, Phantom, PhantomData, PreRuntime, Releases, RuntimeDbWeight, Seal, SealV0, SignedBlock, SignedBlockWithJustification, SignedBlockWithJustifications, Slot, SlotDuration, StorageData, StorageInfo, StorageProof, TransactionInfo, TransactionLongevity, TransactionPriority, TransactionStorageProof, TransactionTag, U32F32, ValidatorId, ValidatorIdOf, Weight, WeightMultiplier, WeightV1, WeightV2 } from '@polkadot/types/interfaces/runtime';57import type { Si0Field, Si0LookupTypeId, Si0Path, Si0Type, Si0TypeDef, Si0TypeDefArray, Si0TypeDefBitSequence, Si0TypeDefCompact, Si0TypeDefComposite, Si0TypeDefPhantom, Si0TypeDefPrimitive, Si0TypeDefSequence, Si0TypeDefTuple, Si0TypeDefVariant, Si0TypeParameter, Si0Variant, Si1Field, Si1LookupTypeId, Si1Path, Si1Type, Si1TypeDef, Si1TypeDefArray, Si1TypeDefBitSequence, Si1TypeDefCompact, Si1TypeDefComposite, Si1TypeDefPrimitive, Si1TypeDefSequence, Si1TypeDefTuple, Si1TypeDefVariant, Si1TypeParameter, Si1Variant, SiField, SiLookupTypeId, SiPath, SiType, SiTypeDef, SiTypeDefArray, SiTypeDefBitSequence, SiTypeDefCompact, SiTypeDefComposite, SiTypeDefPrimitive, SiTypeDefSequence, SiTypeDefTuple, SiTypeDefVariant, SiTypeParameter, SiVariant } from '@polkadot/types/interfaces/scaleInfo';58import type { Period, Priority, SchedulePeriod, SchedulePriority, Scheduled, ScheduledTo254, TaskAddress } from '@polkadot/types/interfaces/scheduler';59import type { BeefyKey, FullIdentification, IdentificationTuple, Keys, MembershipProof, SessionIndex, SessionKeys1, SessionKeys10, SessionKeys10B, SessionKeys2, SessionKeys3, SessionKeys4, SessionKeys5, SessionKeys6, SessionKeys6B, SessionKeys7, SessionKeys7B, SessionKeys8, SessionKeys8B, SessionKeys9, SessionKeys9B, ValidatorCount } from '@polkadot/types/interfaces/session';60import type { Bid, BidKind, SocietyJudgement, SocietyVote, StrikeCount, VouchingStatus } from '@polkadot/types/interfaces/society';61import type { ActiveEraInfo, CompactAssignments, CompactAssignmentsTo257, CompactAssignmentsTo265, CompactAssignmentsWith16, CompactAssignmentsWith24, CompactScore, CompactScoreCompact, ElectionCompute, ElectionPhase, ElectionResult, ElectionScore, ElectionSize, ElectionStatus, EraIndex, EraPoints, EraRewardPoints, EraRewards, Exposure, ExtendedBalance, Forcing, IndividualExposure, KeyType, MomentOf, Nominations, NominatorIndex, NominatorIndexCompact, OffchainAccuracy, OffchainAccuracyCompact, PhragmenScore, Points, RawSolution, RawSolutionTo265, RawSolutionWith16, RawSolutionWith24, ReadySolution, RewardDestination, RewardPoint, RoundSnapshot, SeatHolder, SignedSubmission, SignedSubmissionOf, SignedSubmissionTo276, SlashJournalEntry, SlashingSpans, SlashingSpansTo204, SolutionOrSnapshotSize, SolutionSupport, SolutionSupports, SpanIndex, SpanRecord, StakingLedger, StakingLedgerTo223, StakingLedgerTo240, SubmissionIndicesOf, Supports, UnappliedSlash, UnappliedSlashOther, UnlockChunk, ValidatorIndex, ValidatorIndexCompact, ValidatorPrefs, ValidatorPrefsTo145, ValidatorPrefsTo196, ValidatorPrefsWithBlocked, ValidatorPrefsWithCommission, VoteWeight, Voter } from '@polkadot/types/interfaces/staking';62import type { ApiId, BlockTrace, BlockTraceEvent, BlockTraceEventData, BlockTraceSpan, KeyValueOption, MigrationStatusResult, ReadProof, RuntimeVersion, RuntimeVersionApi, RuntimeVersionPartial, RuntimeVersionPre3, RuntimeVersionPre4, SpecVersion, StorageChangeSet, TraceBlockResponse, TraceError } from '@polkadot/types/interfaces/state';63import type { WeightToFeeCoefficient } from '@polkadot/types/interfaces/support';64import type { AccountInfo, AccountInfoWithDualRefCount, AccountInfoWithProviders, AccountInfoWithRefCount, AccountInfoWithRefCountU8, AccountInfoWithTripleRefCount, ApplyExtrinsicResult, ApplyExtrinsicResultPre6, ArithmeticError, BlockLength, BlockWeights, ChainProperties, ChainType, ConsumedWeight, DigestOf, DispatchClass, DispatchError, DispatchErrorModule, DispatchErrorModulePre6, DispatchErrorModuleU8, DispatchErrorModuleU8a, DispatchErrorPre6, DispatchErrorPre6First, DispatchErrorTo198, DispatchInfo, DispatchInfoTo190, DispatchInfoTo244, DispatchOutcome, DispatchOutcomePre6, DispatchResult, DispatchResultOf, DispatchResultTo198, Event, EventId, EventIndex, EventRecord, Health, InvalidTransaction, Key, LastRuntimeUpgradeInfo, NetworkState, NetworkStatePeerset, NetworkStatePeersetInfo, NodeRole, NotConnectedPeer, Peer, PeerEndpoint, PeerEndpointAddr, PeerInfo, PeerPing, PerDispatchClassU32, PerDispatchClassWeight, PerDispatchClassWeightsPerClass, Phase, RawOrigin, RefCount, RefCountTo259, SyncState, SystemOrigin, TokenError, TransactionValidityError, TransactionalError, UnknownTransaction, WeightPerClass } from '@polkadot/types/interfaces/system';65import type { Bounty, BountyIndex, BountyStatus, BountyStatusActive, BountyStatusCuratorProposed, BountyStatusPendingPayout, OpenTip, OpenTipFinderTo225, OpenTipTip, OpenTipTo225, TreasuryProposal } from '@polkadot/types/interfaces/treasury';66import type { Multiplier } from '@polkadot/types/interfaces/txpayment';67import type { TransactionSource, TransactionValidity, ValidTransaction } from '@polkadot/types/interfaces/txqueue';68import type { ClassDetails, ClassId, ClassMetadata, DepositBalance, DepositBalanceOf, DestroyWitness, InstanceDetails, InstanceId, InstanceMetadata } from '@polkadot/types/interfaces/uniques';69import type { Multisig, Timepoint } from '@polkadot/types/interfaces/utility';70import type { VestingInfo } from '@polkadot/types/interfaces/vesting';71import type { AssetInstance, AssetInstanceV0, AssetInstanceV1, AssetInstanceV2, BodyId, BodyPart, DoubleEncodedCall, Fungibility, FungibilityV0, FungibilityV1, FungibilityV2, InboundStatus, InstructionV2, InteriorMultiLocation, Junction, JunctionV0, JunctionV1, JunctionV2, Junctions, JunctionsV1, JunctionsV2, MultiAsset, MultiAssetFilter, MultiAssetFilterV1, MultiAssetFilterV2, MultiAssetV0, MultiAssetV1, MultiAssetV2, MultiAssets, MultiAssetsV1, MultiAssetsV2, MultiLocation, MultiLocationV0, MultiLocationV1, MultiLocationV2, NetworkId, OriginKindV0, OriginKindV1, OriginKindV2, OutboundStatus, Outcome, QueryId, QueryStatus, QueueConfigData, Response, ResponseV0, ResponseV1, ResponseV2, ResponseV2Error, ResponseV2Result, VersionMigrationStage, VersionedMultiAsset, VersionedMultiAssets, VersionedMultiLocation, VersionedResponse, VersionedXcm, WeightLimitV2, WildFungibility, WildFungibilityV0, WildFungibilityV1, WildFungibilityV2, WildMultiAsset, WildMultiAssetV1, WildMultiAssetV2, Xcm, XcmAssetId, XcmError, XcmErrorV0, XcmErrorV1, XcmErrorV2, XcmOrder, XcmOrderV0, XcmOrderV1, XcmOrderV2, XcmOrigin, XcmOriginKind, XcmV0, XcmV1, XcmV2, XcmVersion, XcmpMessageFormat } from '@polkadot/types/interfaces/xcm';7273declare module '@polkadot/types/types/registry' {74 interface InterfaceTypes {75 AbridgedCandidateReceipt: AbridgedCandidateReceipt;76 AbridgedHostConfiguration: AbridgedHostConfiguration;77 AbridgedHrmpChannel: AbridgedHrmpChannel;78 AccountData: AccountData;79 AccountId: AccountId;80 AccountId20: AccountId20;81 AccountId32: AccountId32;82 AccountId33: AccountId33;83 AccountIdOf: AccountIdOf;84 AccountIndex: AccountIndex;85 AccountInfo: AccountInfo;86 AccountInfoWithDualRefCount: AccountInfoWithDualRefCount;87 AccountInfoWithProviders: AccountInfoWithProviders;88 AccountInfoWithRefCount: AccountInfoWithRefCount;89 AccountInfoWithRefCountU8: AccountInfoWithRefCountU8;90 AccountInfoWithTripleRefCount: AccountInfoWithTripleRefCount;91 AccountStatus: AccountStatus;92 AccountValidity: AccountValidity;93 AccountVote: AccountVote;94 AccountVoteSplit: AccountVoteSplit;95 AccountVoteStandard: AccountVoteStandard;96 ActiveEraInfo: ActiveEraInfo;97 ActiveGilt: ActiveGilt;98 ActiveGiltsTotal: ActiveGiltsTotal;99 ActiveIndex: ActiveIndex;100 ActiveRecovery: ActiveRecovery;101 Address: Address;102 AliveContractInfo: AliveContractInfo;103 AllowedSlots: AllowedSlots;104 AnySignature: AnySignature;105 ApiId: ApiId;106 ApplyExtrinsicResult: ApplyExtrinsicResult;107 ApplyExtrinsicResultPre6: ApplyExtrinsicResultPre6;108 ApprovalFlag: ApprovalFlag;109 Approvals: Approvals;110 ArithmeticError: ArithmeticError;111 AssetApproval: AssetApproval;112 AssetApprovalKey: AssetApprovalKey;113 AssetBalance: AssetBalance;114 AssetDestroyWitness: AssetDestroyWitness;115 AssetDetails: AssetDetails;116 AssetId: AssetId;117 AssetInstance: AssetInstance;118 AssetInstanceV0: AssetInstanceV0;119 AssetInstanceV1: AssetInstanceV1;120 AssetInstanceV2: AssetInstanceV2;121 AssetMetadata: AssetMetadata;122 AssetOptions: AssetOptions;123 AssignmentId: AssignmentId;124 AssignmentKind: AssignmentKind;125 AttestedCandidate: AttestedCandidate;126 AuctionIndex: AuctionIndex;127 AuthIndex: AuthIndex;128 AuthorityDiscoveryId: AuthorityDiscoveryId;129 AuthorityId: AuthorityId;130 AuthorityIndex: AuthorityIndex;131 AuthorityList: AuthorityList;132 AuthoritySet: AuthoritySet;133 AuthoritySetChange: AuthoritySetChange;134 AuthoritySetChanges: AuthoritySetChanges;135 AuthoritySignature: AuthoritySignature;136 AuthorityWeight: AuthorityWeight;137 AvailabilityBitfield: AvailabilityBitfield;138 AvailabilityBitfieldRecord: AvailabilityBitfieldRecord;139 BabeAuthorityWeight: BabeAuthorityWeight;140 BabeBlockWeight: BabeBlockWeight;141 BabeEpochConfiguration: BabeEpochConfiguration;142 BabeEquivocationProof: BabeEquivocationProof;143 BabeGenesisConfiguration: BabeGenesisConfiguration;144 BabeGenesisConfigurationV1: BabeGenesisConfigurationV1;145 BabeWeight: BabeWeight;146 BackedCandidate: BackedCandidate;147 Balance: Balance;148 BalanceLock: BalanceLock;149 BalanceLockTo212: BalanceLockTo212;150 BalanceOf: BalanceOf;151 BalanceStatus: BalanceStatus;152 BeefyAuthoritySet: BeefyAuthoritySet;153 BeefyCommitment: BeefyCommitment;154 BeefyId: BeefyId;155 BeefyKey: BeefyKey;156 BeefyNextAuthoritySet: BeefyNextAuthoritySet;157 BeefyPayload: BeefyPayload;158 BeefyPayloadId: BeefyPayloadId;159 BeefySignedCommitment: BeefySignedCommitment;160 BenchmarkBatch: BenchmarkBatch;161 BenchmarkConfig: BenchmarkConfig;162 BenchmarkList: BenchmarkList;163 BenchmarkMetadata: BenchmarkMetadata;164 BenchmarkParameter: BenchmarkParameter;165 BenchmarkResult: BenchmarkResult;166 Bid: Bid;167 Bidder: Bidder;168 BidKind: BidKind;169 BitVec: BitVec;170 Block: Block;171 BlockAttestations: BlockAttestations;172 BlockHash: BlockHash;173 BlockLength: BlockLength;174 BlockNumber: BlockNumber;175 BlockNumberFor: BlockNumberFor;176 BlockNumberOf: BlockNumberOf;177 BlockStats: BlockStats;178 BlockTrace: BlockTrace;179 BlockTraceEvent: BlockTraceEvent;180 BlockTraceEventData: BlockTraceEventData;181 BlockTraceSpan: BlockTraceSpan;182 BlockV0: BlockV0;183 BlockV1: BlockV1;184 BlockV2: BlockV2;185 BlockWeights: BlockWeights;186 BodyId: BodyId;187 BodyPart: BodyPart;188 bool: bool;189 Bool: Bool;190 Bounty: Bounty;191 BountyIndex: BountyIndex;192 BountyStatus: BountyStatus;193 BountyStatusActive: BountyStatusActive;194 BountyStatusCuratorProposed: BountyStatusCuratorProposed;195 BountyStatusPendingPayout: BountyStatusPendingPayout;196 BridgedBlockHash: BridgedBlockHash;197 BridgedBlockNumber: BridgedBlockNumber;198 BridgedHeader: BridgedHeader;199 BridgeMessageId: BridgeMessageId;200 BufferedSessionChange: BufferedSessionChange;201 Bytes: Bytes;202 Call: Call;203 CallHash: CallHash;204 CallHashOf: CallHashOf;205 CallIndex: CallIndex;206 CallOrigin: CallOrigin;207 CandidateCommitments: CandidateCommitments;208 CandidateDescriptor: CandidateDescriptor;209 CandidateEvent: CandidateEvent;210 CandidateHash: CandidateHash;211 CandidateInfo: CandidateInfo;212 CandidatePendingAvailability: CandidatePendingAvailability;213 CandidateReceipt: CandidateReceipt;214 ChainId: ChainId;215 ChainProperties: ChainProperties;216 ChainType: ChainType;217 ChangesTrieConfiguration: ChangesTrieConfiguration;218 ChangesTrieSignal: ChangesTrieSignal;219 CheckInherentsResult: CheckInherentsResult;220 ClassDetails: ClassDetails;221 ClassId: ClassId;222 ClassMetadata: ClassMetadata;223 CodecHash: CodecHash;224 CodeHash: CodeHash;225 CodeSource: CodeSource;226 CodeUploadRequest: CodeUploadRequest;227 CodeUploadResult: CodeUploadResult;228 CodeUploadResultValue: CodeUploadResultValue;229 CollationInfo: CollationInfo;230 CollationInfoV1: CollationInfoV1;231 CollatorId: CollatorId;232 CollatorSignature: CollatorSignature;233 CollectiveOrigin: CollectiveOrigin;234 CommittedCandidateReceipt: CommittedCandidateReceipt;235 CompactAssignments: CompactAssignments;236 CompactAssignmentsTo257: CompactAssignmentsTo257;237 CompactAssignmentsTo265: CompactAssignmentsTo265;238 CompactAssignmentsWith16: CompactAssignmentsWith16;239 CompactAssignmentsWith24: CompactAssignmentsWith24;240 CompactScore: CompactScore;241 CompactScoreCompact: CompactScoreCompact;242 ConfigData: ConfigData;243 Consensus: Consensus;244 ConsensusEngineId: ConsensusEngineId;245 ConsumedWeight: ConsumedWeight;246 ContractCallFlags: ContractCallFlags;247 ContractCallRequest: ContractCallRequest;248 ContractConstructorSpecLatest: ContractConstructorSpecLatest;249 ContractConstructorSpecV0: ContractConstructorSpecV0;250 ContractConstructorSpecV1: ContractConstructorSpecV1;251 ContractConstructorSpecV2: ContractConstructorSpecV2;252 ContractConstructorSpecV3: ContractConstructorSpecV3;253 ContractContractSpecV0: ContractContractSpecV0;254 ContractContractSpecV1: ContractContractSpecV1;255 ContractContractSpecV2: ContractContractSpecV2;256 ContractContractSpecV3: ContractContractSpecV3;257 ContractContractSpecV4: ContractContractSpecV4;258 ContractCryptoHasher: ContractCryptoHasher;259 ContractDiscriminant: ContractDiscriminant;260 ContractDisplayName: ContractDisplayName;261 ContractEventParamSpecLatest: ContractEventParamSpecLatest;262 ContractEventParamSpecV0: ContractEventParamSpecV0;263 ContractEventParamSpecV2: ContractEventParamSpecV2;264 ContractEventSpecLatest: ContractEventSpecLatest;265 ContractEventSpecV0: ContractEventSpecV0;266 ContractEventSpecV1: ContractEventSpecV1;267 ContractEventSpecV2: ContractEventSpecV2;268 ContractExecResult: ContractExecResult;269 ContractExecResultOk: ContractExecResultOk;270 ContractExecResultResult: ContractExecResultResult;271 ContractExecResultSuccessTo255: ContractExecResultSuccessTo255;272 ContractExecResultSuccessTo260: ContractExecResultSuccessTo260;273 ContractExecResultTo255: ContractExecResultTo255;274 ContractExecResultTo260: ContractExecResultTo260;275 ContractExecResultTo267: ContractExecResultTo267;276 ContractInfo: ContractInfo;277 ContractInstantiateResult: ContractInstantiateResult;278 ContractInstantiateResultTo267: ContractInstantiateResultTo267;279 ContractInstantiateResultTo299: ContractInstantiateResultTo299;280 ContractLayoutArray: ContractLayoutArray;281 ContractLayoutCell: ContractLayoutCell;282 ContractLayoutEnum: ContractLayoutEnum;283 ContractLayoutHash: ContractLayoutHash;284 ContractLayoutHashingStrategy: ContractLayoutHashingStrategy;285 ContractLayoutKey: ContractLayoutKey;286 ContractLayoutStruct: ContractLayoutStruct;287 ContractLayoutStructField: ContractLayoutStructField;288 ContractMessageParamSpecLatest: ContractMessageParamSpecLatest;289 ContractMessageParamSpecV0: ContractMessageParamSpecV0;290 ContractMessageParamSpecV2: ContractMessageParamSpecV2;291 ContractMessageSpecLatest: ContractMessageSpecLatest;292 ContractMessageSpecV0: ContractMessageSpecV0;293 ContractMessageSpecV1: ContractMessageSpecV1;294 ContractMessageSpecV2: ContractMessageSpecV2;295 ContractMetadata: ContractMetadata;296 ContractMetadataLatest: ContractMetadataLatest;297 ContractMetadataV0: ContractMetadataV0;298 ContractMetadataV1: ContractMetadataV1;299 ContractMetadataV2: ContractMetadataV2;300 ContractMetadataV3: ContractMetadataV3;301 ContractMetadataV4: ContractMetadataV4;302 ContractProject: ContractProject;303 ContractProjectContract: ContractProjectContract;304 ContractProjectInfo: ContractProjectInfo;305 ContractProjectSource: ContractProjectSource;306 ContractProjectV0: ContractProjectV0;307 ContractReturnFlags: ContractReturnFlags;308 ContractSelector: ContractSelector;309 ContractStorageKey: ContractStorageKey;310 ContractStorageLayout: ContractStorageLayout;311 ContractTypeSpec: ContractTypeSpec;312 Conviction: Conviction;313 CoreAssignment: CoreAssignment;314 CoreIndex: CoreIndex;315 CoreOccupied: CoreOccupied;316 CoreState: CoreState;317 CrateVersion: CrateVersion;318 CreatedBlock: CreatedBlock;319 CumulusPalletDmpQueueCall: CumulusPalletDmpQueueCall;320 CumulusPalletDmpQueueConfigData: CumulusPalletDmpQueueConfigData;321 CumulusPalletDmpQueueError: CumulusPalletDmpQueueError;322 CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;323 CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;324 CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;325 CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;326 CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;327 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;328 CumulusPalletXcmCall: CumulusPalletXcmCall;329 CumulusPalletXcmError: CumulusPalletXcmError;330 CumulusPalletXcmEvent: CumulusPalletXcmEvent;331 CumulusPalletXcmOrigin: CumulusPalletXcmOrigin;332 CumulusPalletXcmpQueueCall: CumulusPalletXcmpQueueCall;333 CumulusPalletXcmpQueueError: CumulusPalletXcmpQueueError;334 CumulusPalletXcmpQueueEvent: CumulusPalletXcmpQueueEvent;335 CumulusPalletXcmpQueueInboundChannelDetails: CumulusPalletXcmpQueueInboundChannelDetails;336 CumulusPalletXcmpQueueInboundState: CumulusPalletXcmpQueueInboundState;337 CumulusPalletXcmpQueueOutboundChannelDetails: CumulusPalletXcmpQueueOutboundChannelDetails;338 CumulusPalletXcmpQueueOutboundState: CumulusPalletXcmpQueueOutboundState;339 CumulusPalletXcmpQueueQueueConfigData: CumulusPalletXcmpQueueQueueConfigData;340 CumulusPrimitivesParachainInherentParachainInherentData: CumulusPrimitivesParachainInherentParachainInherentData;341 Data: Data;342 DeferredOffenceOf: DeferredOffenceOf;343 DefunctVoter: DefunctVoter;344 DelayKind: DelayKind;345 DelayKindBest: DelayKindBest;346 Delegations: Delegations;347 DeletedContract: DeletedContract;348 DeliveredMessages: DeliveredMessages;349 DepositBalance: DepositBalance;350 DepositBalanceOf: DepositBalanceOf;351 DestroyWitness: DestroyWitness;352 Digest: Digest;353 DigestItem: DigestItem;354 DigestOf: DigestOf;355 DispatchClass: DispatchClass;356 DispatchError: DispatchError;357 DispatchErrorModule: DispatchErrorModule;358 DispatchErrorModulePre6: DispatchErrorModulePre6;359 DispatchErrorModuleU8: DispatchErrorModuleU8;360 DispatchErrorModuleU8a: DispatchErrorModuleU8a;361 DispatchErrorPre6: DispatchErrorPre6;362 DispatchErrorPre6First: DispatchErrorPre6First;363 DispatchErrorTo198: DispatchErrorTo198;364 DispatchFeePayment: DispatchFeePayment;365 DispatchInfo: DispatchInfo;366 DispatchInfoTo190: DispatchInfoTo190;367 DispatchInfoTo244: DispatchInfoTo244;368 DispatchOutcome: DispatchOutcome;369 DispatchOutcomePre6: DispatchOutcomePre6;370 DispatchResult: DispatchResult;371 DispatchResultOf: DispatchResultOf;372 DispatchResultTo198: DispatchResultTo198;373 DisputeLocation: DisputeLocation;374 DisputeResult: DisputeResult;375 DisputeState: DisputeState;376 DisputeStatement: DisputeStatement;377 DisputeStatementSet: DisputeStatementSet;378 DoubleEncodedCall: DoubleEncodedCall;379 DoubleVoteReport: DoubleVoteReport;380 DownwardMessage: DownwardMessage;381 EcdsaSignature: EcdsaSignature;382 Ed25519Signature: Ed25519Signature;383 EIP1559Transaction: EIP1559Transaction;384 EIP2930Transaction: EIP2930Transaction;385 ElectionCompute: ElectionCompute;386 ElectionPhase: ElectionPhase;387 ElectionResult: ElectionResult;388 ElectionScore: ElectionScore;389 ElectionSize: ElectionSize;390 ElectionStatus: ElectionStatus;391 EncodedFinalityProofs: EncodedFinalityProofs;392 EncodedJustification: EncodedJustification;393 Epoch: Epoch;394 EpochAuthorship: EpochAuthorship;395 Era: Era;396 EraIndex: EraIndex;397 EraPoints: EraPoints;398 EraRewardPoints: EraRewardPoints;399 EraRewards: EraRewards;400 ErrorMetadataLatest: ErrorMetadataLatest;401 ErrorMetadataV10: ErrorMetadataV10;402 ErrorMetadataV11: ErrorMetadataV11;403 ErrorMetadataV12: ErrorMetadataV12;404 ErrorMetadataV13: ErrorMetadataV13;405 ErrorMetadataV14: ErrorMetadataV14;406 ErrorMetadataV9: ErrorMetadataV9;407 EthAccessList: EthAccessList;408 EthAccessListItem: EthAccessListItem;409 EthAccount: EthAccount;410 EthAddress: EthAddress;411 EthBlock: EthBlock;412 EthBloom: EthBloom;413 EthbloomBloom: EthbloomBloom;414 EthCallRequest: EthCallRequest;415 EthereumAccountId: EthereumAccountId;416 EthereumAddress: EthereumAddress;417 EthereumBlock: EthereumBlock;418 EthereumHeader: EthereumHeader;419 EthereumLog: EthereumLog;420 EthereumLookupSource: EthereumLookupSource;421 EthereumReceiptEip658ReceiptData: EthereumReceiptEip658ReceiptData;422 EthereumReceiptReceiptV3: EthereumReceiptReceiptV3;423 EthereumSignature: EthereumSignature;424 EthereumTransactionAccessListItem: EthereumTransactionAccessListItem;425 EthereumTransactionEip1559Transaction: EthereumTransactionEip1559Transaction;426 EthereumTransactionEip2930Transaction: EthereumTransactionEip2930Transaction;427 EthereumTransactionLegacyTransaction: EthereumTransactionLegacyTransaction;428 EthereumTransactionTransactionAction: EthereumTransactionTransactionAction;429 EthereumTransactionTransactionSignature: EthereumTransactionTransactionSignature;430 EthereumTransactionTransactionV2: EthereumTransactionTransactionV2;431 EthereumTypesHashH64: EthereumTypesHashH64;432 EthFeeHistory: EthFeeHistory;433 EthFilter: EthFilter;434 EthFilterAddress: EthFilterAddress;435 EthFilterChanges: EthFilterChanges;436 EthFilterTopic: EthFilterTopic;437 EthFilterTopicEntry: EthFilterTopicEntry;438 EthFilterTopicInner: EthFilterTopicInner;439 EthHeader: EthHeader;440 EthLog: EthLog;441 EthReceipt: EthReceipt;442 EthReceiptV0: EthReceiptV0;443 EthReceiptV3: EthReceiptV3;444 EthRichBlock: EthRichBlock;445 EthRichHeader: EthRichHeader;446 EthStorageProof: EthStorageProof;447 EthSubKind: EthSubKind;448 EthSubParams: EthSubParams;449 EthSubResult: EthSubResult;450 EthSyncInfo: EthSyncInfo;451 EthSyncStatus: EthSyncStatus;452 EthTransaction: EthTransaction;453 EthTransactionAction: EthTransactionAction;454 EthTransactionCondition: EthTransactionCondition;455 EthTransactionRequest: EthTransactionRequest;456 EthTransactionSignature: EthTransactionSignature;457 EthTransactionStatus: EthTransactionStatus;458 EthWork: EthWork;459 Event: Event;460 EventId: EventId;461 EventIndex: EventIndex;462 EventMetadataLatest: EventMetadataLatest;463 EventMetadataV10: EventMetadataV10;464 EventMetadataV11: EventMetadataV11;465 EventMetadataV12: EventMetadataV12;466 EventMetadataV13: EventMetadataV13;467 EventMetadataV14: EventMetadataV14;468 EventMetadataV9: EventMetadataV9;469 EventRecord: EventRecord;470 EvmAccount: EvmAccount;471 EvmCallInfo: EvmCallInfo;472 EvmCoreErrorExitError: EvmCoreErrorExitError;473 EvmCoreErrorExitFatal: EvmCoreErrorExitFatal;474 EvmCoreErrorExitReason: EvmCoreErrorExitReason;475 EvmCoreErrorExitRevert: EvmCoreErrorExitRevert;476 EvmCoreErrorExitSucceed: EvmCoreErrorExitSucceed;477 EvmCreateInfo: EvmCreateInfo;478 EvmLog: EvmLog;479 EvmVicinity: EvmVicinity;480 ExecReturnValue: ExecReturnValue;481 ExitError: ExitError;482 ExitFatal: ExitFatal;483 ExitReason: ExitReason;484 ExitRevert: ExitRevert;485 ExitSucceed: ExitSucceed;486 ExplicitDisputeStatement: ExplicitDisputeStatement;487 Exposure: Exposure;488 ExtendedBalance: ExtendedBalance;489 Extrinsic: Extrinsic;490 ExtrinsicEra: ExtrinsicEra;491 ExtrinsicMetadataLatest: ExtrinsicMetadataLatest;492 ExtrinsicMetadataV11: ExtrinsicMetadataV11;493 ExtrinsicMetadataV12: ExtrinsicMetadataV12;494 ExtrinsicMetadataV13: ExtrinsicMetadataV13;495 ExtrinsicMetadataV14: ExtrinsicMetadataV14;496 ExtrinsicOrHash: ExtrinsicOrHash;497 ExtrinsicPayload: ExtrinsicPayload;498 ExtrinsicPayloadUnknown: ExtrinsicPayloadUnknown;499 ExtrinsicPayloadV4: ExtrinsicPayloadV4;500 ExtrinsicSignature: ExtrinsicSignature;501 ExtrinsicSignatureV4: ExtrinsicSignatureV4;502 ExtrinsicStatus: ExtrinsicStatus;503 ExtrinsicsWeight: ExtrinsicsWeight;504 ExtrinsicUnknown: ExtrinsicUnknown;505 ExtrinsicV4: ExtrinsicV4;506 f32: f32;507 F32: F32;508 f64: f64;509 F64: F64;510 FeeDetails: FeeDetails;511 Fixed128: Fixed128;512 Fixed64: Fixed64;513 FixedI128: FixedI128;514 FixedI64: FixedI64;515 FixedU128: FixedU128;516 FixedU64: FixedU64;517 Forcing: Forcing;518 ForkTreePendingChange: ForkTreePendingChange;519 ForkTreePendingChangeNode: ForkTreePendingChangeNode;520 FpRpcTransactionStatus: FpRpcTransactionStatus;521 FrameSupportDispatchDispatchClass: FrameSupportDispatchDispatchClass;522 FrameSupportDispatchDispatchInfo: FrameSupportDispatchDispatchInfo;523 FrameSupportDispatchPays: FrameSupportDispatchPays;524 FrameSupportDispatchPerDispatchClassU32: FrameSupportDispatchPerDispatchClassU32;525 FrameSupportDispatchPerDispatchClassWeight: FrameSupportDispatchPerDispatchClassWeight;526 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;527 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;528 FrameSupportPalletId: FrameSupportPalletId;529 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;530 FrameSystemAccountInfo: FrameSystemAccountInfo;531 FrameSystemCall: FrameSystemCall;532 FrameSystemError: FrameSystemError;533 FrameSystemEvent: FrameSystemEvent;534 FrameSystemEventRecord: FrameSystemEventRecord;535 FrameSystemExtensionsCheckGenesis: FrameSystemExtensionsCheckGenesis;536 FrameSystemExtensionsCheckNonce: FrameSystemExtensionsCheckNonce;537 FrameSystemExtensionsCheckSpecVersion: FrameSystemExtensionsCheckSpecVersion;538 FrameSystemExtensionsCheckTxVersion: FrameSystemExtensionsCheckTxVersion;539 FrameSystemExtensionsCheckWeight: FrameSystemExtensionsCheckWeight;540 FrameSystemLastRuntimeUpgradeInfo: FrameSystemLastRuntimeUpgradeInfo;541 FrameSystemLimitsBlockLength: FrameSystemLimitsBlockLength;542 FrameSystemLimitsBlockWeights: FrameSystemLimitsBlockWeights;543 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;544 FrameSystemPhase: FrameSystemPhase;545 FullIdentification: FullIdentification;546 FunctionArgumentMetadataLatest: FunctionArgumentMetadataLatest;547 FunctionArgumentMetadataV10: FunctionArgumentMetadataV10;548 FunctionArgumentMetadataV11: FunctionArgumentMetadataV11;549 FunctionArgumentMetadataV12: FunctionArgumentMetadataV12;550 FunctionArgumentMetadataV13: FunctionArgumentMetadataV13;551 FunctionArgumentMetadataV14: FunctionArgumentMetadataV14;552 FunctionArgumentMetadataV9: FunctionArgumentMetadataV9;553 FunctionMetadataLatest: FunctionMetadataLatest;554 FunctionMetadataV10: FunctionMetadataV10;555 FunctionMetadataV11: FunctionMetadataV11;556 FunctionMetadataV12: FunctionMetadataV12;557 FunctionMetadataV13: FunctionMetadataV13;558 FunctionMetadataV14: FunctionMetadataV14;559 FunctionMetadataV9: FunctionMetadataV9;560 FundIndex: FundIndex;561 FundInfo: FundInfo;562 Fungibility: Fungibility;563 FungibilityV0: FungibilityV0;564 FungibilityV1: FungibilityV1;565 FungibilityV2: FungibilityV2;566 Gas: Gas;567 GiltBid: GiltBid;568 GlobalValidationData: GlobalValidationData;569 GlobalValidationSchedule: GlobalValidationSchedule;570 GrandpaCommit: GrandpaCommit;571 GrandpaEquivocation: GrandpaEquivocation;572 GrandpaEquivocationProof: GrandpaEquivocationProof;573 GrandpaEquivocationValue: GrandpaEquivocationValue;574 GrandpaJustification: GrandpaJustification;575 GrandpaPrecommit: GrandpaPrecommit;576 GrandpaPrevote: GrandpaPrevote;577 GrandpaSignedPrecommit: GrandpaSignedPrecommit;578 GroupIndex: GroupIndex;579 GroupRotationInfo: GroupRotationInfo;580 H1024: H1024;581 H128: H128;582 H160: H160;583 H2048: H2048;584 H256: H256;585 H32: H32;586 H512: H512;587 H64: H64;588 Hash: Hash;589 HeadData: HeadData;590 Header: Header;591 HeaderPartial: HeaderPartial;592 Health: Health;593 Heartbeat: Heartbeat;594 HeartbeatTo244: HeartbeatTo244;595 HostConfiguration: HostConfiguration;596 HostFnWeights: HostFnWeights;597 HostFnWeightsTo264: HostFnWeightsTo264;598 HrmpChannel: HrmpChannel;599 HrmpChannelId: HrmpChannelId;600 HrmpOpenChannelRequest: HrmpOpenChannelRequest;601 i128: i128;602 I128: I128;603 i16: i16;604 I16: I16;605 i256: i256;606 I256: I256;607 i32: i32;608 I32: I32;609 I32F32: I32F32;610 i64: i64;611 I64: I64;612 i8: i8;613 I8: I8;614 IdentificationTuple: IdentificationTuple;615 IdentityFields: IdentityFields;616 IdentityInfo: IdentityInfo;617 IdentityInfoAdditional: IdentityInfoAdditional;618 IdentityInfoTo198: IdentityInfoTo198;619 IdentityJudgement: IdentityJudgement;620 ImmortalEra: ImmortalEra;621 ImportedAux: ImportedAux;622 InboundDownwardMessage: InboundDownwardMessage;623 InboundHrmpMessage: InboundHrmpMessage;624 InboundHrmpMessages: InboundHrmpMessages;625 InboundLaneData: InboundLaneData;626 InboundRelayer: InboundRelayer;627 InboundStatus: InboundStatus;628 IncludedBlocks: IncludedBlocks;629 InclusionFee: InclusionFee;630 IncomingParachain: IncomingParachain;631 IncomingParachainDeploy: IncomingParachainDeploy;632 IncomingParachainFixed: IncomingParachainFixed;633 Index: Index;634 IndicesLookupSource: IndicesLookupSource;635 IndividualExposure: IndividualExposure;636 InherentData: InherentData;637 InherentIdentifier: InherentIdentifier;638 InitializationData: InitializationData;639 InstanceDetails: InstanceDetails;640 InstanceId: InstanceId;641 InstanceMetadata: InstanceMetadata;642 InstantiateRequest: InstantiateRequest;643 InstantiateRequestV1: InstantiateRequestV1;644 InstantiateRequestV2: InstantiateRequestV2;645 InstantiateReturnValue: InstantiateReturnValue;646 InstantiateReturnValueOk: InstantiateReturnValueOk;647 InstantiateReturnValueTo267: InstantiateReturnValueTo267;648 InstructionV2: InstructionV2;649 InstructionWeights: InstructionWeights;650 InteriorMultiLocation: InteriorMultiLocation;651 InvalidDisputeStatementKind: InvalidDisputeStatementKind;652 InvalidTransaction: InvalidTransaction;653 Json: Json;654 Junction: Junction;655 Junctions: Junctions;656 JunctionsV1: JunctionsV1;657 JunctionsV2: JunctionsV2;658 JunctionV0: JunctionV0;659 JunctionV1: JunctionV1;660 JunctionV2: JunctionV2;661 Justification: Justification;662 JustificationNotification: JustificationNotification;663 Justifications: Justifications;664 Key: Key;665 KeyOwnerProof: KeyOwnerProof;666 Keys: Keys;667 KeyType: KeyType;668 KeyTypeId: KeyTypeId;669 KeyValue: KeyValue;670 KeyValueOption: KeyValueOption;671 Kind: Kind;672 LaneId: LaneId;673 LastContribution: LastContribution;674 LastRuntimeUpgradeInfo: LastRuntimeUpgradeInfo;675 LeasePeriod: LeasePeriod;676 LeasePeriodOf: LeasePeriodOf;677 LegacyTransaction: LegacyTransaction;678 Limits: Limits;679 LimitsTo264: LimitsTo264;680 LocalValidationData: LocalValidationData;681 LockIdentifier: LockIdentifier;682 LookupSource: LookupSource;683 LookupTarget: LookupTarget;684 LotteryConfig: LotteryConfig;685 MaybeRandomness: MaybeRandomness;686 MaybeVrf: MaybeVrf;687 MemberCount: MemberCount;688 MembershipProof: MembershipProof;689 MessageData: MessageData;690 MessageId: MessageId;691 MessageIngestionType: MessageIngestionType;692 MessageKey: MessageKey;693 MessageNonce: MessageNonce;694 MessageQueueChain: MessageQueueChain;695 MessagesDeliveryProofOf: MessagesDeliveryProofOf;696 MessagesProofOf: MessagesProofOf;697 MessagingStateSnapshot: MessagingStateSnapshot;698 MessagingStateSnapshotEgressEntry: MessagingStateSnapshotEgressEntry;699 MetadataAll: MetadataAll;700 MetadataLatest: MetadataLatest;701 MetadataV10: MetadataV10;702 MetadataV11: MetadataV11;703 MetadataV12: MetadataV12;704 MetadataV13: MetadataV13;705 MetadataV14: MetadataV14;706 MetadataV9: MetadataV9;707 MigrationStatusResult: MigrationStatusResult;708 MmrBatchProof: MmrBatchProof;709 MmrEncodableOpaqueLeaf: MmrEncodableOpaqueLeaf;710 MmrError: MmrError;711 MmrLeafBatchProof: MmrLeafBatchProof;712 MmrLeafIndex: MmrLeafIndex;713 MmrLeafProof: MmrLeafProof;714 MmrNodeIndex: MmrNodeIndex;715 MmrProof: MmrProof;716 MmrRootHash: MmrRootHash;717 ModuleConstantMetadataV10: ModuleConstantMetadataV10;718 ModuleConstantMetadataV11: ModuleConstantMetadataV11;719 ModuleConstantMetadataV12: ModuleConstantMetadataV12;720 ModuleConstantMetadataV13: ModuleConstantMetadataV13;721 ModuleConstantMetadataV9: ModuleConstantMetadataV9;722 ModuleId: ModuleId;723 ModuleMetadataV10: ModuleMetadataV10;724 ModuleMetadataV11: ModuleMetadataV11;725 ModuleMetadataV12: ModuleMetadataV12;726 ModuleMetadataV13: ModuleMetadataV13;727 ModuleMetadataV9: ModuleMetadataV9;728 Moment: Moment;729 MomentOf: MomentOf;730 MoreAttestations: MoreAttestations;731 MortalEra: MortalEra;732 MultiAddress: MultiAddress;733 MultiAsset: MultiAsset;734 MultiAssetFilter: MultiAssetFilter;735 MultiAssetFilterV1: MultiAssetFilterV1;736 MultiAssetFilterV2: MultiAssetFilterV2;737 MultiAssets: MultiAssets;738 MultiAssetsV1: MultiAssetsV1;739 MultiAssetsV2: MultiAssetsV2;740 MultiAssetV0: MultiAssetV0;741 MultiAssetV1: MultiAssetV1;742 MultiAssetV2: MultiAssetV2;743 MultiDisputeStatementSet: MultiDisputeStatementSet;744 MultiLocation: MultiLocation;745 MultiLocationV0: MultiLocationV0;746 MultiLocationV1: MultiLocationV1;747 MultiLocationV2: MultiLocationV2;748 Multiplier: Multiplier;749 Multisig: Multisig;750 MultiSignature: MultiSignature;751 MultiSigner: MultiSigner;752 NetworkId: NetworkId;753 NetworkState: NetworkState;754 NetworkStatePeerset: NetworkStatePeerset;755 NetworkStatePeersetInfo: NetworkStatePeersetInfo;756 NewBidder: NewBidder;757 NextAuthority: NextAuthority;758 NextConfigDescriptor: NextConfigDescriptor;759 NextConfigDescriptorV1: NextConfigDescriptorV1;760 NodeRole: NodeRole;761 Nominations: Nominations;762 NominatorIndex: NominatorIndex;763 NominatorIndexCompact: NominatorIndexCompact;764 NotConnectedPeer: NotConnectedPeer;765 NpApiError: NpApiError;766 Null: Null;767 OccupiedCore: OccupiedCore;768 OccupiedCoreAssumption: OccupiedCoreAssumption;769 OffchainAccuracy: OffchainAccuracy;770 OffchainAccuracyCompact: OffchainAccuracyCompact;771 OffenceDetails: OffenceDetails;772 Offender: Offender;773 OldV1SessionInfo: OldV1SessionInfo;774 OpalRuntimeOriginCaller: OpalRuntimeOriginCaller;775 OpalRuntimeRuntime: OpalRuntimeRuntime;776 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;777 OpaqueCall: OpaqueCall;778 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;779 OpaqueMetadata: OpaqueMetadata;780 OpaqueMultiaddr: OpaqueMultiaddr;781 OpaqueNetworkState: OpaqueNetworkState;782 OpaquePeerId: OpaquePeerId;783 OpaqueTimeSlot: OpaqueTimeSlot;784 OpenTip: OpenTip;785 OpenTipFinderTo225: OpenTipFinderTo225;786 OpenTipTip: OpenTipTip;787 OpenTipTo225: OpenTipTo225;788 OperatingMode: OperatingMode;789 OptionBool: OptionBool;790 Origin: Origin;791 OriginCaller: OriginCaller;792 OriginKindV0: OriginKindV0;793 OriginKindV1: OriginKindV1;794 OriginKindV2: OriginKindV2;795 OrmlTokensAccountData: OrmlTokensAccountData;796 OrmlTokensBalanceLock: OrmlTokensBalanceLock;797 OrmlTokensModuleCall: OrmlTokensModuleCall;798 OrmlTokensModuleError: OrmlTokensModuleError;799 OrmlTokensModuleEvent: OrmlTokensModuleEvent;800 OrmlTokensReserveData: OrmlTokensReserveData;801 OrmlVestingModuleCall: OrmlVestingModuleCall;802 OrmlVestingModuleError: OrmlVestingModuleError;803 OrmlVestingModuleEvent: OrmlVestingModuleEvent;804 OrmlVestingVestingSchedule: OrmlVestingVestingSchedule;805 OrmlXtokensModuleCall: OrmlXtokensModuleCall;806 OrmlXtokensModuleError: OrmlXtokensModuleError;807 OrmlXtokensModuleEvent: OrmlXtokensModuleEvent;808 OutboundHrmpMessage: OutboundHrmpMessage;809 OutboundLaneData: OutboundLaneData;810 OutboundMessageFee: OutboundMessageFee;811 OutboundPayload: OutboundPayload;812 OutboundStatus: OutboundStatus;813 Outcome: Outcome;814 OverweightIndex: OverweightIndex;815 Owner: Owner;816 PageCounter: PageCounter;817 PageIndexData: PageIndexData;818 PalletAppPromotionCall: PalletAppPromotionCall;819 PalletAppPromotionError: PalletAppPromotionError;820 PalletAppPromotionEvent: PalletAppPromotionEvent;821 PalletBalancesAccountData: PalletBalancesAccountData;822 PalletBalancesBalanceLock: PalletBalancesBalanceLock;823 PalletBalancesCall: PalletBalancesCall;824 PalletBalancesError: PalletBalancesError;825 PalletBalancesEvent: PalletBalancesEvent;826 PalletBalancesReasons: PalletBalancesReasons;827 PalletBalancesReleases: PalletBalancesReleases;828 PalletBalancesReserveData: PalletBalancesReserveData;829 PalletCallMetadataLatest: PalletCallMetadataLatest;830 PalletCallMetadataV14: PalletCallMetadataV14;831 PalletCommonError: PalletCommonError;832 PalletCommonEvent: PalletCommonEvent;833 PalletConfigurationCall: PalletConfigurationCall;834 PalletConstantMetadataLatest: PalletConstantMetadataLatest;835 PalletConstantMetadataV14: PalletConstantMetadataV14;836 PalletErrorMetadataLatest: PalletErrorMetadataLatest;837 PalletErrorMetadataV14: PalletErrorMetadataV14;838 PalletEthereumCall: PalletEthereumCall;839 PalletEthereumError: PalletEthereumError;840 PalletEthereumEvent: PalletEthereumEvent;841 PalletEthereumFakeTransactionFinalizer: PalletEthereumFakeTransactionFinalizer;842 PalletEthereumRawOrigin: PalletEthereumRawOrigin;843 PalletEventMetadataLatest: PalletEventMetadataLatest;844 PalletEventMetadataV14: PalletEventMetadataV14;845 PalletEvmAccountBasicCrossAccountIdRepr: PalletEvmAccountBasicCrossAccountIdRepr;846 PalletEvmCall: PalletEvmCall;847 PalletEvmCoderSubstrateError: PalletEvmCoderSubstrateError;848 PalletEvmContractHelpersError: PalletEvmContractHelpersError;849 PalletEvmContractHelpersEvent: PalletEvmContractHelpersEvent;850 PalletEvmContractHelpersSponsoringModeT: PalletEvmContractHelpersSponsoringModeT;851 PalletEvmError: PalletEvmError;852 PalletEvmEvent: PalletEvmEvent;853 PalletEvmMigrationCall: PalletEvmMigrationCall;854 PalletEvmMigrationError: PalletEvmMigrationError;855 PalletEvmMigrationEvent: PalletEvmMigrationEvent;856 PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;857 PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;858 PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;859 PalletForeignAssetsModuleError: PalletForeignAssetsModuleError;860 PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;861 PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;862 PalletFungibleError: PalletFungibleError;863 PalletId: PalletId;864 PalletInflationCall: PalletInflationCall;865 PalletMaintenanceCall: PalletMaintenanceCall;866 PalletMaintenanceError: PalletMaintenanceError;867 PalletMaintenanceEvent: PalletMaintenanceEvent;868 PalletMetadataLatest: PalletMetadataLatest;869 PalletMetadataV14: PalletMetadataV14;870 PalletNonfungibleError: PalletNonfungibleError;871 PalletNonfungibleItemData: PalletNonfungibleItemData;872 PalletRefungibleError: PalletRefungibleError;873 PalletRefungibleItemData: PalletRefungibleItemData;874 PalletRmrkCoreCall: PalletRmrkCoreCall;875 PalletRmrkCoreError: PalletRmrkCoreError;876 PalletRmrkCoreEvent: PalletRmrkCoreEvent;877 PalletRmrkEquipCall: PalletRmrkEquipCall;878 PalletRmrkEquipError: PalletRmrkEquipError;879 PalletRmrkEquipEvent: PalletRmrkEquipEvent;880 PalletsOrigin: PalletsOrigin;881 PalletStorageMetadataLatest: PalletStorageMetadataLatest;882 PalletStorageMetadataV14: PalletStorageMetadataV14;883 PalletStructureCall: PalletStructureCall;884 PalletStructureError: PalletStructureError;885 PalletStructureEvent: PalletStructureEvent;886 PalletSudoCall: PalletSudoCall;887 PalletSudoError: PalletSudoError;888 PalletSudoEvent: PalletSudoEvent;889 PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;890 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;891 PalletTestUtilsCall: PalletTestUtilsCall;892 PalletTestUtilsError: PalletTestUtilsError;893 PalletTestUtilsEvent: PalletTestUtilsEvent;894 PalletTimestampCall: PalletTimestampCall;895 PalletTransactionPaymentEvent: PalletTransactionPaymentEvent;896 PalletTransactionPaymentReleases: PalletTransactionPaymentReleases;897 PalletTreasuryCall: PalletTreasuryCall;898 PalletTreasuryError: PalletTreasuryError;899 PalletTreasuryEvent: PalletTreasuryEvent;900 PalletTreasuryProposal: PalletTreasuryProposal;901 PalletUniqueCall: PalletUniqueCall;902 PalletUniqueError: PalletUniqueError;903 PalletUniqueRawEvent: PalletUniqueRawEvent;904 PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;905 PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;906 PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;907 PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;908 PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;909 PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;910 PalletVersion: PalletVersion;911 PalletXcmCall: PalletXcmCall;912 PalletXcmError: PalletXcmError;913 PalletXcmEvent: PalletXcmEvent;914 PalletXcmOrigin: PalletXcmOrigin;915 ParachainDispatchOrigin: ParachainDispatchOrigin;916 ParachainInherentData: ParachainInherentData;917 ParachainProposal: ParachainProposal;918 ParachainsInherentData: ParachainsInherentData;919 ParaGenesisArgs: ParaGenesisArgs;920 ParaId: ParaId;921 ParaInfo: ParaInfo;922 ParaLifecycle: ParaLifecycle;923 Parameter: Parameter;924 ParaPastCodeMeta: ParaPastCodeMeta;925 ParaScheduling: ParaScheduling;926 ParathreadClaim: ParathreadClaim;927 ParathreadClaimQueue: ParathreadClaimQueue;928 ParathreadEntry: ParathreadEntry;929 ParaValidatorIndex: ParaValidatorIndex;930 Pays: Pays;931 Peer: Peer;932 PeerEndpoint: PeerEndpoint;933 PeerEndpointAddr: PeerEndpointAddr;934 PeerInfo: PeerInfo;935 PeerPing: PeerPing;936 PendingChange: PendingChange;937 PendingPause: PendingPause;938 PendingResume: PendingResume;939 Perbill: Perbill;940 Percent: Percent;941 PerDispatchClassU32: PerDispatchClassU32;942 PerDispatchClassWeight: PerDispatchClassWeight;943 PerDispatchClassWeightsPerClass: PerDispatchClassWeightsPerClass;944 Period: Period;945 Permill: Permill;946 PermissionLatest: PermissionLatest;947 PermissionsV1: PermissionsV1;948 PermissionVersions: PermissionVersions;949 Perquintill: Perquintill;950 PersistedValidationData: PersistedValidationData;951 PerU16: PerU16;952 Phantom: Phantom;953 PhantomData: PhantomData;954 PhantomTypeUpDataStructs: PhantomTypeUpDataStructs;955 Phase: Phase;956 PhragmenScore: PhragmenScore;957 Points: Points;958 PolkadotCorePrimitivesInboundDownwardMessage: PolkadotCorePrimitivesInboundDownwardMessage;959 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;960 PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;961 PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;962 PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;963 PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;964 PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;965 PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;966 PortableType: PortableType;967 PortableTypeV14: PortableTypeV14;968 Precommits: Precommits;969 PrefabWasmModule: PrefabWasmModule;970 PrefixedStorageKey: PrefixedStorageKey;971 PreimageStatus: PreimageStatus;972 PreimageStatusAvailable: PreimageStatusAvailable;973 PreRuntime: PreRuntime;974 Prevotes: Prevotes;975 Priority: Priority;976 PriorLock: PriorLock;977 PropIndex: PropIndex;978 Proposal: Proposal;979 ProposalIndex: ProposalIndex;980 ProxyAnnouncement: ProxyAnnouncement;981 ProxyDefinition: ProxyDefinition;982 ProxyState: ProxyState;983 ProxyType: ProxyType;984 PvfCheckStatement: PvfCheckStatement;985 QueryId: QueryId;986 QueryStatus: QueryStatus;987 QueueConfigData: QueueConfigData;988 QueuedParathread: QueuedParathread;989 Randomness: Randomness;990 Raw: Raw;991 RawAuraPreDigest: RawAuraPreDigest;992 RawBabePreDigest: RawBabePreDigest;993 RawBabePreDigestCompat: RawBabePreDigestCompat;994 RawBabePreDigestPrimary: RawBabePreDigestPrimary;995 RawBabePreDigestPrimaryTo159: RawBabePreDigestPrimaryTo159;996 RawBabePreDigestSecondaryPlain: RawBabePreDigestSecondaryPlain;997 RawBabePreDigestSecondaryTo159: RawBabePreDigestSecondaryTo159;998 RawBabePreDigestSecondaryVRF: RawBabePreDigestSecondaryVRF;999 RawBabePreDigestTo159: RawBabePreDigestTo159;1000 RawOrigin: RawOrigin;1001 RawSolution: RawSolution;1002 RawSolutionTo265: RawSolutionTo265;1003 RawSolutionWith16: RawSolutionWith16;1004 RawSolutionWith24: RawSolutionWith24;1005 RawVRFOutput: RawVRFOutput;1006 ReadProof: ReadProof;1007 ReadySolution: ReadySolution;1008 Reasons: Reasons;1009 RecoveryConfig: RecoveryConfig;1010 RefCount: RefCount;1011 RefCountTo259: RefCountTo259;1012 ReferendumIndex: ReferendumIndex;1013 ReferendumInfo: ReferendumInfo;1014 ReferendumInfoFinished: ReferendumInfoFinished;1015 ReferendumInfoTo239: ReferendumInfoTo239;1016 ReferendumStatus: ReferendumStatus;1017 RegisteredParachainInfo: RegisteredParachainInfo;1018 RegistrarIndex: RegistrarIndex;1019 RegistrarInfo: RegistrarInfo;1020 Registration: Registration;1021 RegistrationJudgement: RegistrationJudgement;1022 RegistrationTo198: RegistrationTo198;1023 RelayBlockNumber: RelayBlockNumber;1024 RelayChainBlockNumber: RelayChainBlockNumber;1025 RelayChainHash: RelayChainHash;1026 RelayerId: RelayerId;1027 RelayHash: RelayHash;1028 Releases: Releases;1029 Remark: Remark;1030 Renouncing: Renouncing;1031 RentProjection: RentProjection;1032 ReplacementTimes: ReplacementTimes;1033 ReportedRoundStates: ReportedRoundStates;1034 Reporter: Reporter;1035 ReportIdOf: ReportIdOf;1036 ReserveData: ReserveData;1037 ReserveIdentifier: ReserveIdentifier;1038 Response: Response;1039 ResponseV0: ResponseV0;1040 ResponseV1: ResponseV1;1041 ResponseV2: ResponseV2;1042 ResponseV2Error: ResponseV2Error;1043 ResponseV2Result: ResponseV2Result;1044 Retriable: Retriable;1045 RewardDestination: RewardDestination;1046 RewardPoint: RewardPoint;1047 RmrkTraitsBaseBaseInfo: RmrkTraitsBaseBaseInfo;1048 RmrkTraitsCollectionCollectionInfo: RmrkTraitsCollectionCollectionInfo;1049 RmrkTraitsNftAccountIdOrCollectionNftTuple: RmrkTraitsNftAccountIdOrCollectionNftTuple;1050 RmrkTraitsNftNftChild: RmrkTraitsNftNftChild;1051 RmrkTraitsNftNftInfo: RmrkTraitsNftNftInfo;1052 RmrkTraitsNftRoyaltyInfo: RmrkTraitsNftRoyaltyInfo;1053 RmrkTraitsPartEquippableList: RmrkTraitsPartEquippableList;1054 RmrkTraitsPartFixedPart: RmrkTraitsPartFixedPart;1055 RmrkTraitsPartPartType: RmrkTraitsPartPartType;1056 RmrkTraitsPartSlotPart: RmrkTraitsPartSlotPart;1057 RmrkTraitsPropertyPropertyInfo: RmrkTraitsPropertyPropertyInfo;1058 RmrkTraitsResourceBasicResource: RmrkTraitsResourceBasicResource;1059 RmrkTraitsResourceComposableResource: RmrkTraitsResourceComposableResource;1060 RmrkTraitsResourceResourceInfo: RmrkTraitsResourceResourceInfo;1061 RmrkTraitsResourceResourceTypes: RmrkTraitsResourceResourceTypes;1062 RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;1063 RmrkTraitsTheme: RmrkTraitsTheme;1064 RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;1065 RoundSnapshot: RoundSnapshot;1066 RoundState: RoundState;1067 RpcMethods: RpcMethods;1068 RuntimeDbWeight: RuntimeDbWeight;1069 RuntimeDispatchInfo: RuntimeDispatchInfo;1070 RuntimeVersion: RuntimeVersion;1071 RuntimeVersionApi: RuntimeVersionApi;1072 RuntimeVersionPartial: RuntimeVersionPartial;1073 RuntimeVersionPre3: RuntimeVersionPre3;1074 RuntimeVersionPre4: RuntimeVersionPre4;1075 Schedule: Schedule;1076 Scheduled: Scheduled;1077 ScheduledCore: ScheduledCore;1078 ScheduledTo254: ScheduledTo254;1079 SchedulePeriod: SchedulePeriod;1080 SchedulePriority: SchedulePriority;1081 ScheduleTo212: ScheduleTo212;1082 ScheduleTo258: ScheduleTo258;1083 ScheduleTo264: ScheduleTo264;1084 Scheduling: Scheduling;1085 ScrapedOnChainVotes: ScrapedOnChainVotes;1086 Seal: Seal;1087 SealV0: SealV0;1088 SeatHolder: SeatHolder;1089 SeedOf: SeedOf;1090 ServiceQuality: ServiceQuality;1091 SessionIndex: SessionIndex;1092 SessionInfo: SessionInfo;1093 SessionInfoValidatorGroup: SessionInfoValidatorGroup;1094 SessionKeys1: SessionKeys1;1095 SessionKeys10: SessionKeys10;1096 SessionKeys10B: SessionKeys10B;1097 SessionKeys2: SessionKeys2;1098 SessionKeys3: SessionKeys3;1099 SessionKeys4: SessionKeys4;1100 SessionKeys5: SessionKeys5;1101 SessionKeys6: SessionKeys6;1102 SessionKeys6B: SessionKeys6B;1103 SessionKeys7: SessionKeys7;1104 SessionKeys7B: SessionKeys7B;1105 SessionKeys8: SessionKeys8;1106 SessionKeys8B: SessionKeys8B;1107 SessionKeys9: SessionKeys9;1108 SessionKeys9B: SessionKeys9B;1109 SetId: SetId;1110 SetIndex: SetIndex;1111 Si0Field: Si0Field;1112 Si0LookupTypeId: Si0LookupTypeId;1113 Si0Path: Si0Path;1114 Si0Type: Si0Type;1115 Si0TypeDef: Si0TypeDef;1116 Si0TypeDefArray: Si0TypeDefArray;1117 Si0TypeDefBitSequence: Si0TypeDefBitSequence;1118 Si0TypeDefCompact: Si0TypeDefCompact;1119 Si0TypeDefComposite: Si0TypeDefComposite;1120 Si0TypeDefPhantom: Si0TypeDefPhantom;1121 Si0TypeDefPrimitive: Si0TypeDefPrimitive;1122 Si0TypeDefSequence: Si0TypeDefSequence;1123 Si0TypeDefTuple: Si0TypeDefTuple;1124 Si0TypeDefVariant: Si0TypeDefVariant;1125 Si0TypeParameter: Si0TypeParameter;1126 Si0Variant: Si0Variant;1127 Si1Field: Si1Field;1128 Si1LookupTypeId: Si1LookupTypeId;1129 Si1Path: Si1Path;1130 Si1Type: Si1Type;1131 Si1TypeDef: Si1TypeDef;1132 Si1TypeDefArray: Si1TypeDefArray;1133 Si1TypeDefBitSequence: Si1TypeDefBitSequence;1134 Si1TypeDefCompact: Si1TypeDefCompact;1135 Si1TypeDefComposite: Si1TypeDefComposite;1136 Si1TypeDefPrimitive: Si1TypeDefPrimitive;1137 Si1TypeDefSequence: Si1TypeDefSequence;1138 Si1TypeDefTuple: Si1TypeDefTuple;1139 Si1TypeDefVariant: Si1TypeDefVariant;1140 Si1TypeParameter: Si1TypeParameter;1141 Si1Variant: Si1Variant;1142 SiField: SiField;1143 Signature: Signature;1144 SignedAvailabilityBitfield: SignedAvailabilityBitfield;1145 SignedAvailabilityBitfields: SignedAvailabilityBitfields;1146 SignedBlock: SignedBlock;1147 SignedBlockWithJustification: SignedBlockWithJustification;1148 SignedBlockWithJustifications: SignedBlockWithJustifications;1149 SignedExtensionMetadataLatest: SignedExtensionMetadataLatest;1150 SignedExtensionMetadataV14: SignedExtensionMetadataV14;1151 SignedSubmission: SignedSubmission;1152 SignedSubmissionOf: SignedSubmissionOf;1153 SignedSubmissionTo276: SignedSubmissionTo276;1154 SignerPayload: SignerPayload;1155 SigningContext: SigningContext;1156 SiLookupTypeId: SiLookupTypeId;1157 SiPath: SiPath;1158 SiType: SiType;1159 SiTypeDef: SiTypeDef;1160 SiTypeDefArray: SiTypeDefArray;1161 SiTypeDefBitSequence: SiTypeDefBitSequence;1162 SiTypeDefCompact: SiTypeDefCompact;1163 SiTypeDefComposite: SiTypeDefComposite;1164 SiTypeDefPrimitive: SiTypeDefPrimitive;1165 SiTypeDefSequence: SiTypeDefSequence;1166 SiTypeDefTuple: SiTypeDefTuple;1167 SiTypeDefVariant: SiTypeDefVariant;1168 SiTypeParameter: SiTypeParameter;1169 SiVariant: SiVariant;1170 SlashingSpans: SlashingSpans;1171 SlashingSpansTo204: SlashingSpansTo204;1172 SlashJournalEntry: SlashJournalEntry;1173 Slot: Slot;1174 SlotDuration: SlotDuration;1175 SlotNumber: SlotNumber;1176 SlotRange: SlotRange;1177 SlotRange10: SlotRange10;1178 SocietyJudgement: SocietyJudgement;1179 SocietyVote: SocietyVote;1180 SolutionOrSnapshotSize: SolutionOrSnapshotSize;1181 SolutionSupport: SolutionSupport;1182 SolutionSupports: SolutionSupports;1183 SpanIndex: SpanIndex;1184 SpanRecord: SpanRecord;1185 SpCoreEcdsaSignature: SpCoreEcdsaSignature;1186 SpCoreEd25519Signature: SpCoreEd25519Signature;1187 SpCoreSr25519Signature: SpCoreSr25519Signature;1188 SpCoreVoid: SpCoreVoid;1189 SpecVersion: SpecVersion;1190 SpRuntimeArithmeticError: SpRuntimeArithmeticError;1191 SpRuntimeDigest: SpRuntimeDigest;1192 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1193 SpRuntimeDispatchError: SpRuntimeDispatchError;1194 SpRuntimeModuleError: SpRuntimeModuleError;1195 SpRuntimeMultiSignature: SpRuntimeMultiSignature;1196 SpRuntimeTokenError: SpRuntimeTokenError;1197 SpRuntimeTransactionalError: SpRuntimeTransactionalError;1198 SpTrieStorageProof: SpTrieStorageProof;1199 SpVersionRuntimeVersion: SpVersionRuntimeVersion;1200 SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;1201 Sr25519Signature: Sr25519Signature;1202 StakingLedger: StakingLedger;1203 StakingLedgerTo223: StakingLedgerTo223;1204 StakingLedgerTo240: StakingLedgerTo240;1205 Statement: Statement;1206 StatementKind: StatementKind;1207 StorageChangeSet: StorageChangeSet;1208 StorageData: StorageData;1209 StorageDeposit: StorageDeposit;1210 StorageEntryMetadataLatest: StorageEntryMetadataLatest;1211 StorageEntryMetadataV10: StorageEntryMetadataV10;1212 StorageEntryMetadataV11: StorageEntryMetadataV11;1213 StorageEntryMetadataV12: StorageEntryMetadataV12;1214 StorageEntryMetadataV13: StorageEntryMetadataV13;1215 StorageEntryMetadataV14: StorageEntryMetadataV14;1216 StorageEntryMetadataV9: StorageEntryMetadataV9;1217 StorageEntryModifierLatest: StorageEntryModifierLatest;1218 StorageEntryModifierV10: StorageEntryModifierV10;1219 StorageEntryModifierV11: StorageEntryModifierV11;1220 StorageEntryModifierV12: StorageEntryModifierV12;1221 StorageEntryModifierV13: StorageEntryModifierV13;1222 StorageEntryModifierV14: StorageEntryModifierV14;1223 StorageEntryModifierV9: StorageEntryModifierV9;1224 StorageEntryTypeLatest: StorageEntryTypeLatest;1225 StorageEntryTypeV10: StorageEntryTypeV10;1226 StorageEntryTypeV11: StorageEntryTypeV11;1227 StorageEntryTypeV12: StorageEntryTypeV12;1228 StorageEntryTypeV13: StorageEntryTypeV13;1229 StorageEntryTypeV14: StorageEntryTypeV14;1230 StorageEntryTypeV9: StorageEntryTypeV9;1231 StorageHasher: StorageHasher;1232 StorageHasherV10: StorageHasherV10;1233 StorageHasherV11: StorageHasherV11;1234 StorageHasherV12: StorageHasherV12;1235 StorageHasherV13: StorageHasherV13;1236 StorageHasherV14: StorageHasherV14;1237 StorageHasherV9: StorageHasherV9;1238 StorageInfo: StorageInfo;1239 StorageKey: StorageKey;1240 StorageKind: StorageKind;1241 StorageMetadataV10: StorageMetadataV10;1242 StorageMetadataV11: StorageMetadataV11;1243 StorageMetadataV12: StorageMetadataV12;1244 StorageMetadataV13: StorageMetadataV13;1245 StorageMetadataV9: StorageMetadataV9;1246 StorageProof: StorageProof;1247 StoredPendingChange: StoredPendingChange;1248 StoredState: StoredState;1249 StrikeCount: StrikeCount;1250 SubId: SubId;1251 SubmissionIndicesOf: SubmissionIndicesOf;1252 Supports: Supports;1253 SyncState: SyncState;1254 SystemInherentData: SystemInherentData;1255 SystemOrigin: SystemOrigin;1256 Tally: Tally;1257 TaskAddress: TaskAddress;1258 TAssetBalance: TAssetBalance;1259 TAssetDepositBalance: TAssetDepositBalance;1260 Text: Text;1261 Timepoint: Timepoint;1262 TokenError: TokenError;1263 TombstoneContractInfo: TombstoneContractInfo;1264 TraceBlockResponse: TraceBlockResponse;1265 TraceError: TraceError;1266 TransactionalError: TransactionalError;1267 TransactionInfo: TransactionInfo;1268 TransactionLongevity: TransactionLongevity;1269 TransactionPriority: TransactionPriority;1270 TransactionSource: TransactionSource;1271 TransactionStorageProof: TransactionStorageProof;1272 TransactionTag: TransactionTag;1273 TransactionV0: TransactionV0;1274 TransactionV1: TransactionV1;1275 TransactionV2: TransactionV2;1276 TransactionValidity: TransactionValidity;1277 TransactionValidityError: TransactionValidityError;1278 TransientValidationData: TransientValidationData;1279 TreasuryProposal: TreasuryProposal;1280 TrieId: TrieId;1281 TrieIndex: TrieIndex;1282 Type: Type;1283 u128: u128;1284 U128: U128;1285 u16: u16;1286 U16: U16;1287 u256: u256;1288 U256: U256;1289 u32: u32;1290 U32: U32;1291 U32F32: U32F32;1292 u64: u64;1293 U64: U64;1294 u8: u8;1295 U8: U8;1296 UnappliedSlash: UnappliedSlash;1297 UnappliedSlashOther: UnappliedSlashOther;1298 UncleEntryItem: UncleEntryItem;1299 UnknownTransaction: UnknownTransaction;1300 UnlockChunk: UnlockChunk;1301 UnrewardedRelayer: UnrewardedRelayer;1302 UnrewardedRelayersState: UnrewardedRelayersState;1303 UpDataStructsAccessMode: UpDataStructsAccessMode;1304 UpDataStructsCollection: UpDataStructsCollection;1305 UpDataStructsCollectionLimits: UpDataStructsCollectionLimits;1306 UpDataStructsCollectionMode: UpDataStructsCollectionMode;1307 UpDataStructsCollectionPermissions: UpDataStructsCollectionPermissions;1308 UpDataStructsCollectionStats: UpDataStructsCollectionStats;1309 UpDataStructsCreateCollectionData: UpDataStructsCreateCollectionData;1310 UpDataStructsCreateFungibleData: UpDataStructsCreateFungibleData;1311 UpDataStructsCreateItemData: UpDataStructsCreateItemData;1312 UpDataStructsCreateItemExData: UpDataStructsCreateItemExData;1313 UpDataStructsCreateNftData: UpDataStructsCreateNftData;1314 UpDataStructsCreateNftExData: UpDataStructsCreateNftExData;1315 UpDataStructsCreateReFungibleData: UpDataStructsCreateReFungibleData;1316 UpDataStructsCreateRefungibleExMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;1317 UpDataStructsCreateRefungibleExSingleOwner: UpDataStructsCreateRefungibleExSingleOwner;1318 UpDataStructsNestingPermissions: UpDataStructsNestingPermissions;1319 UpDataStructsOwnerRestrictedSet: UpDataStructsOwnerRestrictedSet;1320 UpDataStructsProperties: UpDataStructsProperties;1321 UpDataStructsPropertiesMapBoundedVec: UpDataStructsPropertiesMapBoundedVec;1322 UpDataStructsPropertiesMapPropertyPermission: UpDataStructsPropertiesMapPropertyPermission;1323 UpDataStructsProperty: UpDataStructsProperty;1324 UpDataStructsPropertyKeyPermission: UpDataStructsPropertyKeyPermission;1325 UpDataStructsPropertyPermission: UpDataStructsPropertyPermission;1326 UpDataStructsPropertyScope: UpDataStructsPropertyScope;1327 UpDataStructsRpcCollection: UpDataStructsRpcCollection;1328 UpDataStructsRpcCollectionFlags: UpDataStructsRpcCollectionFlags;1329 UpDataStructsSponsoringRateLimit: UpDataStructsSponsoringRateLimit;1330 UpDataStructsSponsorshipStateAccountId32: UpDataStructsSponsorshipStateAccountId32;1331 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;1332 UpDataStructsTokenChild: UpDataStructsTokenChild;1333 UpDataStructsTokenData: UpDataStructsTokenData;1334 UpgradeGoAhead: UpgradeGoAhead;1335 UpgradeRestriction: UpgradeRestriction;1336 UpwardMessage: UpwardMessage;1337 usize: usize;1338 USize: USize;1339 ValidationCode: ValidationCode;1340 ValidationCodeHash: ValidationCodeHash;1341 ValidationData: ValidationData;1342 ValidationDataType: ValidationDataType;1343 ValidationFunctionParams: ValidationFunctionParams;1344 ValidatorCount: ValidatorCount;1345 ValidatorId: ValidatorId;1346 ValidatorIdOf: ValidatorIdOf;1347 ValidatorIndex: ValidatorIndex;1348 ValidatorIndexCompact: ValidatorIndexCompact;1349 ValidatorPrefs: ValidatorPrefs;1350 ValidatorPrefsTo145: ValidatorPrefsTo145;1351 ValidatorPrefsTo196: ValidatorPrefsTo196;1352 ValidatorPrefsWithBlocked: ValidatorPrefsWithBlocked;1353 ValidatorPrefsWithCommission: ValidatorPrefsWithCommission;1354 ValidatorSet: ValidatorSet;1355 ValidatorSetId: ValidatorSetId;1356 ValidatorSignature: ValidatorSignature;1357 ValidDisputeStatementKind: ValidDisputeStatementKind;1358 ValidityAttestation: ValidityAttestation;1359 ValidTransaction: ValidTransaction;1360 VecInboundHrmpMessage: VecInboundHrmpMessage;1361 VersionedMultiAsset: VersionedMultiAsset;1362 VersionedMultiAssets: VersionedMultiAssets;1363 VersionedMultiLocation: VersionedMultiLocation;1364 VersionedResponse: VersionedResponse;1365 VersionedXcm: VersionedXcm;1366 VersionMigrationStage: VersionMigrationStage;1367 VestingInfo: VestingInfo;1368 VestingSchedule: VestingSchedule;1369 Vote: Vote;1370 VoteIndex: VoteIndex;1371 Voter: Voter;1372 VoterInfo: VoterInfo;1373 Votes: Votes;1374 VotesTo230: VotesTo230;1375 VoteThreshold: VoteThreshold;1376 VoteWeight: VoteWeight;1377 Voting: Voting;1378 VotingDelegating: VotingDelegating;1379 VotingDirect: VotingDirect;1380 VotingDirectVote: VotingDirectVote;1381 VouchingStatus: VouchingStatus;1382 VrfData: VrfData;1383 VrfOutput: VrfOutput;1384 VrfProof: VrfProof;1385 Weight: Weight;1386 WeightLimitV2: WeightLimitV2;1387 WeightMultiplier: WeightMultiplier;1388 WeightPerClass: WeightPerClass;1389 WeightToFeeCoefficient: WeightToFeeCoefficient;1390 WeightV1: WeightV1;1391 WeightV2: WeightV2;1392 WildFungibility: WildFungibility;1393 WildFungibilityV0: WildFungibilityV0;1394 WildFungibilityV1: WildFungibilityV1;1395 WildFungibilityV2: WildFungibilityV2;1396 WildMultiAsset: WildMultiAsset;1397 WildMultiAssetV1: WildMultiAssetV1;1398 WildMultiAssetV2: WildMultiAssetV2;1399 WinnersData: WinnersData;1400 WinnersData10: WinnersData10;1401 WinnersDataTuple: WinnersDataTuple;1402 WinnersDataTuple10: WinnersDataTuple10;1403 WinningData: WinningData;1404 WinningData10: WinningData10;1405 WinningDataEntry: WinningDataEntry;1406 WithdrawReasons: WithdrawReasons;1407 Xcm: Xcm;1408 XcmAssetId: XcmAssetId;1409 XcmDoubleEncoded: XcmDoubleEncoded;1410 XcmError: XcmError;1411 XcmErrorV0: XcmErrorV0;1412 XcmErrorV1: XcmErrorV1;1413 XcmErrorV2: XcmErrorV2;1414 XcmOrder: XcmOrder;1415 XcmOrderV0: XcmOrderV0;1416 XcmOrderV1: XcmOrderV1;1417 XcmOrderV2: XcmOrderV2;1418 XcmOrigin: XcmOrigin;1419 XcmOriginKind: XcmOriginKind;1420 XcmpMessageFormat: XcmpMessageFormat;1421 XcmV0: XcmV0;1422 XcmV0Junction: XcmV0Junction;1423 XcmV0JunctionBodyId: XcmV0JunctionBodyId;1424 XcmV0JunctionBodyPart: XcmV0JunctionBodyPart;1425 XcmV0JunctionNetworkId: XcmV0JunctionNetworkId;1426 XcmV0MultiAsset: XcmV0MultiAsset;1427 XcmV0MultiLocation: XcmV0MultiLocation;1428 XcmV0Order: XcmV0Order;1429 XcmV0OriginKind: XcmV0OriginKind;1430 XcmV0Response: XcmV0Response;1431 XcmV0Xcm: XcmV0Xcm;1432 XcmV1: XcmV1;1433 XcmV1Junction: XcmV1Junction;1434 XcmV1MultiAsset: XcmV1MultiAsset;1435 XcmV1MultiassetAssetId: XcmV1MultiassetAssetId;1436 XcmV1MultiassetAssetInstance: XcmV1MultiassetAssetInstance;1437 XcmV1MultiassetFungibility: XcmV1MultiassetFungibility;1438 XcmV1MultiassetMultiAssetFilter: XcmV1MultiassetMultiAssetFilter;1439 XcmV1MultiassetMultiAssets: XcmV1MultiassetMultiAssets;1440 XcmV1MultiassetWildFungibility: XcmV1MultiassetWildFungibility;1441 XcmV1MultiassetWildMultiAsset: XcmV1MultiassetWildMultiAsset;1442 XcmV1MultiLocation: XcmV1MultiLocation;1443 XcmV1MultilocationJunctions: XcmV1MultilocationJunctions;1444 XcmV1Order: XcmV1Order;1445 XcmV1Response: XcmV1Response;1446 XcmV1Xcm: XcmV1Xcm;1447 XcmV2: XcmV2;1448 XcmV2Instruction: XcmV2Instruction;1449 XcmV2Response: XcmV2Response;1450 XcmV2TraitsError: XcmV2TraitsError;1451 XcmV2TraitsOutcome: XcmV2TraitsOutcome;1452 XcmV2WeightLimit: XcmV2WeightLimit;1453 XcmV2Xcm: XcmV2Xcm;1454 XcmVersion: XcmVersion;1455 XcmVersionedMultiAsset: XcmVersionedMultiAsset;1456 XcmVersionedMultiAssets: XcmVersionedMultiAssets;1457 XcmVersionedMultiLocation: XcmVersionedMultiLocation;1458 XcmVersionedXcm: XcmVersionedXcm;1459 } // InterfaceTypes1460} // declare moduletests/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.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -1132,8 +1132,8 @@
readonly type: 'Substrate' | 'Ethereum';
}
- /** @name PalletUniqueSchedulerEvent (93) */
- interface PalletUniqueSchedulerEvent extends Enum {
+ /** @name PalletUniqueSchedulerV2Event (93) */
+ interface PalletUniqueSchedulerV2Event extends Enum {
readonly isScheduled: boolean;
readonly asScheduled: {
readonly when: u32;
@@ -1144,35 +1144,31 @@
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';
- }
-
- /** @name FrameSupportScheduleLookupError (96) */
- interface FrameSupportScheduleLookupError extends Enum {
- readonly isUnknown: boolean;
- readonly isBadFormat: boolean;
- readonly type: 'Unknown' | 'BadFormat';
+ readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';
}
- /** @name PalletCommonEvent (97) */
+ /** @name PalletCommonEvent (96) */
interface PalletCommonEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
@@ -1199,14 +1195,14 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';
}
- /** @name PalletStructureEvent (100) */
+ /** @name PalletStructureEvent (99) */
interface PalletStructureEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
readonly type: 'Executed';
}
- /** @name PalletRmrkCoreEvent (101) */
+ /** @name PalletRmrkCoreEvent (100) */
interface PalletRmrkCoreEvent extends Enum {
readonly isCollectionCreated: boolean;
readonly asCollectionCreated: {
@@ -1296,7 +1292,7 @@
readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
}
- /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (102) */
+ /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */
interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
readonly isAccountId: boolean;
readonly asAccountId: AccountId32;
@@ -1305,7 +1301,7 @@
readonly type: 'AccountId' | 'CollectionAndNftTuple';
}
- /** @name PalletRmrkEquipEvent (107) */
+ /** @name PalletRmrkEquipEvent (106) */
interface PalletRmrkEquipEvent extends Enum {
readonly isBaseCreated: boolean;
readonly asBaseCreated: {
@@ -1320,7 +1316,7 @@
readonly type: 'BaseCreated' | 'EquippablesUpdated';
}
- /** @name PalletAppPromotionEvent (108) */
+ /** @name PalletAppPromotionEvent (107) */
interface PalletAppPromotionEvent extends Enum {
readonly isStakingRecalculation: boolean;
readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
@@ -1333,7 +1329,7 @@
readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
}
- /** @name PalletForeignAssetsModuleEvent (109) */
+ /** @name PalletForeignAssetsModuleEvent (108) */
interface PalletForeignAssetsModuleEvent extends Enum {
readonly isForeignAssetRegistered: boolean;
readonly asForeignAssetRegistered: {
@@ -1360,7 +1356,7 @@
readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
}
- /** @name PalletForeignAssetsModuleAssetMetadata (110) */
+ /** @name PalletForeignAssetsModuleAssetMetadata (109) */
interface PalletForeignAssetsModuleAssetMetadata extends Struct {
readonly name: Bytes;
readonly symbol: Bytes;
@@ -1368,7 +1364,7 @@
readonly minimalBalance: u128;
}
- /** @name PalletEvmEvent (111) */
+ /** @name PalletEvmEvent (110) */
interface PalletEvmEvent extends Enum {
readonly isLog: boolean;
readonly asLog: {
@@ -1393,14 +1389,14 @@
readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
}
- /** @name EthereumLog (112) */
+ /** @name EthereumLog (111) */
interface EthereumLog extends Struct {
readonly address: H160;
readonly topics: Vec<H256>;
readonly data: Bytes;
}
- /** @name PalletEthereumEvent (114) */
+ /** @name PalletEthereumEvent (113) */
interface PalletEthereumEvent extends Enum {
readonly isExecuted: boolean;
readonly asExecuted: {
@@ -1412,7 +1408,7 @@
readonly type: 'Executed';
}
- /** @name EvmCoreErrorExitReason (115) */
+ /** @name EvmCoreErrorExitReason (114) */
interface EvmCoreErrorExitReason extends Enum {
readonly isSucceed: boolean;
readonly asSucceed: EvmCoreErrorExitSucceed;
@@ -1425,7 +1421,7 @@
readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
}
- /** @name EvmCoreErrorExitSucceed (116) */
+ /** @name EvmCoreErrorExitSucceed (115) */
interface EvmCoreErrorExitSucceed extends Enum {
readonly isStopped: boolean;
readonly isReturned: boolean;
@@ -1433,7 +1429,7 @@
readonly type: 'Stopped' | 'Returned' | 'Suicided';
}
- /** @name EvmCoreErrorExitError (117) */
+ /** @name EvmCoreErrorExitError (116) */
interface EvmCoreErrorExitError extends Enum {
readonly isStackUnderflow: boolean;
readonly isStackOverflow: boolean;
@@ -1454,13 +1450,13 @@
readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
}
- /** @name EvmCoreErrorExitRevert (120) */
+ /** @name EvmCoreErrorExitRevert (119) */
interface EvmCoreErrorExitRevert extends Enum {
readonly isReverted: boolean;
readonly type: 'Reverted';
}
- /** @name EvmCoreErrorExitFatal (121) */
+ /** @name EvmCoreErrorExitFatal (120) */
interface EvmCoreErrorExitFatal extends Enum {
readonly isNotSupported: boolean;
readonly isUnhandledInterrupt: boolean;
@@ -1471,7 +1467,7 @@
readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
}
- /** @name PalletEvmContractHelpersEvent (122) */
+ /** @name PalletEvmContractHelpersEvent (121) */
interface PalletEvmContractHelpersEvent extends Enum {
readonly isContractSponsorSet: boolean;
readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
@@ -1482,6 +1478,12 @@
readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
}
+ /** @name PalletEvmMigrationEvent (122) */
+ interface PalletEvmMigrationEvent extends Enum {
+ readonly isTestEvent: boolean;
+ readonly type: 'TestEvent';
+ }
+
/** @name PalletMaintenanceEvent (123) */
interface PalletMaintenanceEvent extends Enum {
readonly isMaintenanceEnabled: boolean;
@@ -1493,7 +1495,8 @@
interface PalletTestUtilsEvent extends Enum {
readonly isValueIsSet: boolean;
readonly isShouldRollback: boolean;
- readonly type: 'ValueIsSet' | 'ShouldRollback';
+ readonly isBatchCompleted: boolean;
+ readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';
}
/** @name FrameSystemPhase (125) */
@@ -2685,46 +2688,56 @@
readonly properties: Vec<UpDataStructsProperty>;
}
- /** @name PalletUniqueSchedulerCall (284) */
- interface PalletUniqueSchedulerCall extends Enum {
+ /** @name PalletUniqueSchedulerV2Call (284) */
+ 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';
- }
-
- /** @name FrameSupportScheduleMaybeHashed (287) */
- interface FrameSupportScheduleMaybeHashed extends Enum {
- readonly isValue: boolean;
- readonly asValue: Call;
- readonly isHash: boolean;
- readonly asHash: H256;
- readonly type: 'Value' | 'Hash';
+ readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';
}
- /** @name PalletConfigurationCall (288) */
+ /** @name PalletConfigurationCall (287) */
interface PalletConfigurationCall extends Enum {
readonly isSetWeightToFeeCoefficientOverride: boolean;
readonly asSetWeightToFeeCoefficientOverride: {
@@ -2737,13 +2750,13 @@
readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';
}
- /** @name PalletTemplateTransactionPaymentCall (290) */
+ /** @name PalletTemplateTransactionPaymentCall (289) */
type PalletTemplateTransactionPaymentCall = Null;
- /** @name PalletStructureCall (291) */
+ /** @name PalletStructureCall (290) */
type PalletStructureCall = Null;
- /** @name PalletRmrkCoreCall (292) */
+ /** @name PalletRmrkCoreCall (291) */
interface PalletRmrkCoreCall extends Enum {
readonly isCreateCollection: boolean;
readonly asCreateCollection: {
@@ -2849,7 +2862,7 @@
readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
}
- /** @name RmrkTraitsResourceResourceTypes (298) */
+ /** @name RmrkTraitsResourceResourceTypes (297) */
interface RmrkTraitsResourceResourceTypes extends Enum {
readonly isBasic: boolean;
readonly asBasic: RmrkTraitsResourceBasicResource;
@@ -2860,7 +2873,7 @@
readonly type: 'Basic' | 'Composable' | 'Slot';
}
- /** @name RmrkTraitsResourceBasicResource (300) */
+ /** @name RmrkTraitsResourceBasicResource (299) */
interface RmrkTraitsResourceBasicResource extends Struct {
readonly src: Option<Bytes>;
readonly metadata: Option<Bytes>;
@@ -2868,7 +2881,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceComposableResource (302) */
+ /** @name RmrkTraitsResourceComposableResource (301) */
interface RmrkTraitsResourceComposableResource extends Struct {
readonly parts: Vec<u32>;
readonly base: u32;
@@ -2878,7 +2891,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name RmrkTraitsResourceSlotResource (303) */
+ /** @name RmrkTraitsResourceSlotResource (302) */
interface RmrkTraitsResourceSlotResource extends Struct {
readonly base: u32;
readonly src: Option<Bytes>;
@@ -2888,7 +2901,7 @@
readonly thumb: Option<Bytes>;
}
- /** @name PalletRmrkEquipCall (306) */
+ /** @name PalletRmrkEquipCall (305) */
interface PalletRmrkEquipCall extends Enum {
readonly isCreateBase: boolean;
readonly asCreateBase: {
@@ -2910,7 +2923,7 @@
readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
}
- /** @name RmrkTraitsPartPartType (309) */
+ /** @name RmrkTraitsPartPartType (308) */
interface RmrkTraitsPartPartType extends Enum {
readonly isFixedPart: boolean;
readonly asFixedPart: RmrkTraitsPartFixedPart;
@@ -2919,14 +2932,14 @@
readonly type: 'FixedPart' | 'SlotPart';
}
- /** @name RmrkTraitsPartFixedPart (311) */
+ /** @name RmrkTraitsPartFixedPart (310) */
interface RmrkTraitsPartFixedPart extends Struct {
readonly id: u32;
readonly z: u32;
readonly src: Bytes;
}
- /** @name RmrkTraitsPartSlotPart (312) */
+ /** @name RmrkTraitsPartSlotPart (311) */
interface RmrkTraitsPartSlotPart extends Struct {
readonly id: u32;
readonly equippable: RmrkTraitsPartEquippableList;
@@ -2934,7 +2947,7 @@
readonly z: u32;
}
- /** @name RmrkTraitsPartEquippableList (313) */
+ /** @name RmrkTraitsPartEquippableList (312) */
interface RmrkTraitsPartEquippableList extends Enum {
readonly isAll: boolean;
readonly isEmpty: boolean;
@@ -2943,20 +2956,20 @@
readonly type: 'All' | 'Empty' | 'Custom';
}
- /** @name RmrkTraitsTheme (315) */
+ /** @name RmrkTraitsTheme (314) */
interface RmrkTraitsTheme extends Struct {
readonly name: Bytes;
readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
readonly inherit: bool;
}
- /** @name RmrkTraitsThemeThemeProperty (317) */
+ /** @name RmrkTraitsThemeThemeProperty (316) */
interface RmrkTraitsThemeThemeProperty extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name PalletAppPromotionCall (319) */
+ /** @name PalletAppPromotionCall (318) */
interface PalletAppPromotionCall extends Enum {
readonly isSetAdminAddress: boolean;
readonly asSetAdminAddress: {
@@ -2990,7 +3003,7 @@
readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
}
- /** @name PalletForeignAssetsModuleCall (320) */
+ /** @name PalletForeignAssetsModuleCall (319) */
interface PalletForeignAssetsModuleCall extends Enum {
readonly isRegisterForeignAsset: boolean;
readonly asRegisterForeignAsset: {
@@ -3007,7 +3020,7 @@
readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
}
- /** @name PalletEvmCall (321) */
+ /** @name PalletEvmCall (320) */
interface PalletEvmCall extends Enum {
readonly isWithdraw: boolean;
readonly asWithdraw: {
@@ -3052,7 +3065,7 @@
readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
}
- /** @name PalletEthereumCall (327) */
+ /** @name PalletEthereumCall (326) */
interface PalletEthereumCall extends Enum {
readonly isTransact: boolean;
readonly asTransact: {
@@ -3061,7 +3074,7 @@
readonly type: 'Transact';
}
- /** @name EthereumTransactionTransactionV2 (328) */
+ /** @name EthereumTransactionTransactionV2 (327) */
interface EthereumTransactionTransactionV2 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumTransactionLegacyTransaction;
@@ -3072,7 +3085,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumTransactionLegacyTransaction (329) */
+ /** @name EthereumTransactionLegacyTransaction (328) */
interface EthereumTransactionLegacyTransaction extends Struct {
readonly nonce: U256;
readonly gasPrice: U256;
@@ -3083,7 +3096,7 @@
readonly signature: EthereumTransactionTransactionSignature;
}
- /** @name EthereumTransactionTransactionAction (330) */
+ /** @name EthereumTransactionTransactionAction (329) */
interface EthereumTransactionTransactionAction extends Enum {
readonly isCall: boolean;
readonly asCall: H160;
@@ -3091,14 +3104,14 @@
readonly type: 'Call' | 'Create';
}
- /** @name EthereumTransactionTransactionSignature (331) */
+ /** @name EthereumTransactionTransactionSignature (330) */
interface EthereumTransactionTransactionSignature extends Struct {
readonly v: u64;
readonly r: H256;
readonly s: H256;
}
- /** @name EthereumTransactionEip2930Transaction (333) */
+ /** @name EthereumTransactionEip2930Transaction (332) */
interface EthereumTransactionEip2930Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3113,13 +3126,13 @@
readonly s: H256;
}
- /** @name EthereumTransactionAccessListItem (335) */
+ /** @name EthereumTransactionAccessListItem (334) */
interface EthereumTransactionAccessListItem extends Struct {
readonly address: H160;
readonly storageKeys: Vec<H256>;
}
- /** @name EthereumTransactionEip1559Transaction (336) */
+ /** @name EthereumTransactionEip1559Transaction (335) */
interface EthereumTransactionEip1559Transaction extends Struct {
readonly chainId: u64;
readonly nonce: U256;
@@ -3135,7 +3148,7 @@
readonly s: H256;
}
- /** @name PalletEvmMigrationCall (337) */
+ /** @name PalletEvmMigrationCall (336) */
interface PalletEvmMigrationCall extends Enum {
readonly isBegin: boolean;
readonly asBegin: {
@@ -3151,7 +3164,15 @@
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 PalletMaintenanceCall (340) */
@@ -3179,16 +3200,20 @@
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 PalletSudoError (342) */
+ /** @name PalletSudoError (343) */
interface PalletSudoError extends Enum {
readonly isRequireSudo: boolean;
readonly type: 'RequireSudo';
}
- /** @name OrmlVestingModuleError (344) */
+ /** @name OrmlVestingModuleError (345) */
interface OrmlVestingModuleError extends Enum {
readonly isZeroVestingPeriod: boolean;
readonly isZeroVestingPeriodCount: boolean;
@@ -3199,7 +3224,7 @@
readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
}
- /** @name OrmlXtokensModuleError (345) */
+ /** @name OrmlXtokensModuleError (346) */
interface OrmlXtokensModuleError extends Enum {
readonly isAssetHasNoReserve: boolean;
readonly isNotCrossChainTransfer: boolean;
@@ -3223,26 +3248,26 @@
readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
}
- /** @name OrmlTokensBalanceLock (348) */
+ /** @name OrmlTokensBalanceLock (349) */
interface OrmlTokensBalanceLock extends Struct {
readonly id: U8aFixed;
readonly amount: u128;
}
- /** @name OrmlTokensAccountData (350) */
+ /** @name OrmlTokensAccountData (351) */
interface OrmlTokensAccountData extends Struct {
readonly free: u128;
readonly reserved: u128;
readonly frozen: u128;
}
- /** @name OrmlTokensReserveData (352) */
+ /** @name OrmlTokensReserveData (353) */
interface OrmlTokensReserveData extends Struct {
readonly id: Null;
readonly amount: u128;
}
- /** @name OrmlTokensModuleError (354) */
+ /** @name OrmlTokensModuleError (355) */
interface OrmlTokensModuleError extends Enum {
readonly isBalanceTooLow: boolean;
readonly isAmountIntoBalanceFailed: boolean;
@@ -3255,21 +3280,21 @@
readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
}
- /** @name CumulusPalletXcmpQueueInboundChannelDetails (356) */
+ /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */
interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
readonly sender: u32;
readonly state: CumulusPalletXcmpQueueInboundState;
readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
}
- /** @name CumulusPalletXcmpQueueInboundState (357) */
+ /** @name CumulusPalletXcmpQueueInboundState (358) */
interface CumulusPalletXcmpQueueInboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name PolkadotParachainPrimitivesXcmpMessageFormat (360) */
+ /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */
interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
readonly isConcatenatedVersionedXcm: boolean;
readonly isConcatenatedEncodedBlob: boolean;
@@ -3277,7 +3302,7 @@
readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
}
- /** @name CumulusPalletXcmpQueueOutboundChannelDetails (363) */
+ /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */
interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
readonly recipient: u32;
readonly state: CumulusPalletXcmpQueueOutboundState;
@@ -3286,14 +3311,14 @@
readonly lastIndex: u16;
}
- /** @name CumulusPalletXcmpQueueOutboundState (364) */
+ /** @name CumulusPalletXcmpQueueOutboundState (365) */
interface CumulusPalletXcmpQueueOutboundState extends Enum {
readonly isOk: boolean;
readonly isSuspended: boolean;
readonly type: 'Ok' | 'Suspended';
}
- /** @name CumulusPalletXcmpQueueQueueConfigData (366) */
+ /** @name CumulusPalletXcmpQueueQueueConfigData (367) */
interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
readonly suspendThreshold: u32;
readonly dropThreshold: u32;
@@ -3303,7 +3328,7 @@
readonly xcmpMaxIndividualWeight: Weight;
}
- /** @name CumulusPalletXcmpQueueError (368) */
+ /** @name CumulusPalletXcmpQueueError (369) */
interface CumulusPalletXcmpQueueError extends Enum {
readonly isFailedToSend: boolean;
readonly isBadXcmOrigin: boolean;
@@ -3313,7 +3338,7 @@
readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
}
- /** @name PalletXcmError (369) */
+ /** @name PalletXcmError (370) */
interface PalletXcmError extends Enum {
readonly isUnreachable: boolean;
readonly isSendFailure: boolean;
@@ -3331,29 +3356,29 @@
readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
}
- /** @name CumulusPalletXcmError (370) */
+ /** @name CumulusPalletXcmError (371) */
type CumulusPalletXcmError = Null;
- /** @name CumulusPalletDmpQueueConfigData (371) */
+ /** @name CumulusPalletDmpQueueConfigData (372) */
interface CumulusPalletDmpQueueConfigData extends Struct {
readonly maxIndividual: Weight;
}
- /** @name CumulusPalletDmpQueuePageIndexData (372) */
+ /** @name CumulusPalletDmpQueuePageIndexData (373) */
interface CumulusPalletDmpQueuePageIndexData extends Struct {
readonly beginUsed: u32;
readonly endUsed: u32;
readonly overweightCount: u64;
}
- /** @name CumulusPalletDmpQueueError (375) */
+ /** @name CumulusPalletDmpQueueError (376) */
interface CumulusPalletDmpQueueError extends Enum {
readonly isUnknown: boolean;
readonly isOverLimit: boolean;
readonly type: 'Unknown' | 'OverLimit';
}
- /** @name PalletUniqueError (379) */
+ /** @name PalletUniqueError (380) */
interface PalletUniqueError extends Enum {
readonly isCollectionDecimalPointLimitExceeded: boolean;
readonly isConfirmUnsetSponsorFail: boolean;
@@ -3362,16 +3387,34 @@
readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
}
- /** @name PalletUniqueSchedulerScheduledV3 (382) */
- interface PalletUniqueSchedulerScheduledV3 extends Struct {
+ /** @name PalletUniqueSchedulerV2BlockAgenda (381) */
+ interface PalletUniqueSchedulerV2BlockAgenda extends Struct {
+ readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;
+ readonly freePlaces: u32;
+ }
+
+ /** @name PalletUniqueSchedulerV2Scheduled (384) */
+ 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 OpalRuntimeOriginCaller (383) */
+ /** @name PalletUniqueSchedulerV2ScheduledCall (385) */
+ 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 OpalRuntimeOriginCaller (387) */
interface OpalRuntimeOriginCaller extends Enum {
readonly isSystem: boolean;
readonly asSystem: FrameSupportDispatchRawOrigin;
@@ -3385,7 +3428,7 @@
readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
}
- /** @name FrameSupportDispatchRawOrigin (384) */
+ /** @name FrameSupportDispatchRawOrigin (388) */
interface FrameSupportDispatchRawOrigin extends Enum {
readonly isRoot: boolean;
readonly isSigned: boolean;
@@ -3394,7 +3437,7 @@
readonly type: 'Root' | 'Signed' | 'None';
}
- /** @name PalletXcmOrigin (385) */
+ /** @name PalletXcmOrigin (389) */
interface PalletXcmOrigin extends Enum {
readonly isXcm: boolean;
readonly asXcm: XcmV1MultiLocation;
@@ -3403,7 +3446,7 @@
readonly type: 'Xcm' | 'Response';
}
- /** @name CumulusPalletXcmOrigin (386) */
+ /** @name CumulusPalletXcmOrigin (390) */
interface CumulusPalletXcmOrigin extends Enum {
readonly isRelay: boolean;
readonly isSiblingParachain: boolean;
@@ -3411,26 +3454,30 @@
readonly type: 'Relay' | 'SiblingParachain';
}
- /** @name PalletEthereumRawOrigin (387) */
+ /** @name PalletEthereumRawOrigin (391) */
interface PalletEthereumRawOrigin extends Enum {
readonly isEthereumTransaction: boolean;
readonly asEthereumTransaction: H160;
readonly type: 'EthereumTransaction';
}
- /** @name SpCoreVoid (388) */
+ /** @name SpCoreVoid (392) */
type SpCoreVoid = Null;
- /** @name PalletUniqueSchedulerError (389) */
- interface PalletUniqueSchedulerError extends Enum {
+ /** @name PalletUniqueSchedulerV2Error (394) */
+ 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 UpDataStructsCollection (390) */
+ /** @name UpDataStructsCollection (395) */
interface UpDataStructsCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3443,7 +3490,7 @@
readonly flags: U8aFixed;
}
- /** @name UpDataStructsSponsorshipStateAccountId32 (391) */
+ /** @name UpDataStructsSponsorshipStateAccountId32 (396) */
interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3453,43 +3500,43 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name UpDataStructsProperties (393) */
+ /** @name UpDataStructsProperties (398) */
interface UpDataStructsProperties extends Struct {
readonly map: UpDataStructsPropertiesMapBoundedVec;
readonly consumedSpace: u32;
readonly spaceLimit: u32;
}
- /** @name UpDataStructsPropertiesMapBoundedVec (394) */
+ /** @name UpDataStructsPropertiesMapBoundedVec (399) */
interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
- /** @name UpDataStructsPropertiesMapPropertyPermission (399) */
+ /** @name UpDataStructsPropertiesMapPropertyPermission (404) */
interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
- /** @name UpDataStructsCollectionStats (406) */
+ /** @name UpDataStructsCollectionStats (411) */
interface UpDataStructsCollectionStats extends Struct {
readonly created: u32;
readonly destroyed: u32;
readonly alive: u32;
}
- /** @name UpDataStructsTokenChild (407) */
+ /** @name UpDataStructsTokenChild (412) */
interface UpDataStructsTokenChild extends Struct {
readonly token: u32;
readonly collection: u32;
}
- /** @name PhantomTypeUpDataStructs (408) */
+ /** @name PhantomTypeUpDataStructs (413) */
interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
- /** @name UpDataStructsTokenData (410) */
+ /** @name UpDataStructsTokenData (415) */
interface UpDataStructsTokenData extends Struct {
readonly properties: Vec<UpDataStructsProperty>;
readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
readonly pieces: u128;
}
- /** @name UpDataStructsRpcCollection (412) */
+ /** @name UpDataStructsRpcCollection (417) */
interface UpDataStructsRpcCollection extends Struct {
readonly owner: AccountId32;
readonly mode: UpDataStructsCollectionMode;
@@ -3505,13 +3552,13 @@
readonly flags: UpDataStructsRpcCollectionFlags;
}
- /** @name UpDataStructsRpcCollectionFlags (413) */
+ /** @name UpDataStructsRpcCollectionFlags (418) */
interface UpDataStructsRpcCollectionFlags extends Struct {
readonly foreign: bool;
readonly erc721metadata: bool;
}
- /** @name RmrkTraitsCollectionCollectionInfo (414) */
+ /** @name RmrkTraitsCollectionCollectionInfo (419) */
interface RmrkTraitsCollectionCollectionInfo extends Struct {
readonly issuer: AccountId32;
readonly metadata: Bytes;
@@ -3520,7 +3567,7 @@
readonly nftsCount: u32;
}
- /** @name RmrkTraitsNftNftInfo (415) */
+ /** @name RmrkTraitsNftNftInfo (420) */
interface RmrkTraitsNftNftInfo extends Struct {
readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
@@ -3529,13 +3576,13 @@
readonly pending: bool;
}
- /** @name RmrkTraitsNftRoyaltyInfo (417) */
+ /** @name RmrkTraitsNftRoyaltyInfo (422) */
interface RmrkTraitsNftRoyaltyInfo extends Struct {
readonly recipient: AccountId32;
readonly amount: Permill;
}
- /** @name RmrkTraitsResourceResourceInfo (418) */
+ /** @name RmrkTraitsResourceResourceInfo (423) */
interface RmrkTraitsResourceResourceInfo extends Struct {
readonly id: u32;
readonly resource: RmrkTraitsResourceResourceTypes;
@@ -3543,26 +3590,26 @@
readonly pendingRemoval: bool;
}
- /** @name RmrkTraitsPropertyPropertyInfo (419) */
+ /** @name RmrkTraitsPropertyPropertyInfo (424) */
interface RmrkTraitsPropertyPropertyInfo extends Struct {
readonly key: Bytes;
readonly value: Bytes;
}
- /** @name RmrkTraitsBaseBaseInfo (420) */
+ /** @name RmrkTraitsBaseBaseInfo (425) */
interface RmrkTraitsBaseBaseInfo extends Struct {
readonly issuer: AccountId32;
readonly baseType: Bytes;
readonly symbol: Bytes;
}
- /** @name RmrkTraitsNftNftChild (421) */
+ /** @name RmrkTraitsNftNftChild (426) */
interface RmrkTraitsNftNftChild extends Struct {
readonly collectionId: u32;
readonly nftId: u32;
}
- /** @name PalletCommonError (423) */
+ /** @name PalletCommonError (428) */
interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -3601,7 +3648,7 @@
readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';
}
- /** @name PalletFungibleError (425) */
+ /** @name PalletFungibleError (430) */
interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -3611,12 +3658,12 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletRefungibleItemData (426) */
+ /** @name PalletRefungibleItemData (431) */
interface PalletRefungibleItemData extends Struct {
readonly constData: Bytes;
}
- /** @name PalletRefungibleError (431) */
+ /** @name PalletRefungibleError (436) */
interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -3626,19 +3673,19 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (432) */
+ /** @name PalletNonfungibleItemData (437) */
interface PalletNonfungibleItemData extends Struct {
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsPropertyScope (434) */
+ /** @name UpDataStructsPropertyScope (439) */
interface UpDataStructsPropertyScope extends Enum {
readonly isNone: boolean;
readonly isRmrk: boolean;
readonly type: 'None' | 'Rmrk';
}
- /** @name PalletNonfungibleError (436) */
+ /** @name PalletNonfungibleError (441) */
interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3646,7 +3693,7 @@
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
}
- /** @name PalletStructureError (437) */
+ /** @name PalletStructureError (442) */
interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -3655,7 +3702,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
}
- /** @name PalletRmrkCoreError (438) */
+ /** @name PalletRmrkCoreError (443) */
interface PalletRmrkCoreError extends Enum {
readonly isCorruptedCollectionType: boolean;
readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -3679,7 +3726,7 @@
readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
}
- /** @name PalletRmrkEquipError (440) */
+ /** @name PalletRmrkEquipError (445) */
interface PalletRmrkEquipError extends Enum {
readonly isPermissionError: boolean;
readonly isNoAvailableBaseId: boolean;
@@ -3691,7 +3738,7 @@
readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
}
- /** @name PalletAppPromotionError (446) */
+ /** @name PalletAppPromotionError (451) */
interface PalletAppPromotionError extends Enum {
readonly isAdminNotSet: boolean;
readonly isNoPermission: boolean;
@@ -3702,7 +3749,7 @@
readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
}
- /** @name PalletForeignAssetsModuleError (447) */
+ /** @name PalletForeignAssetsModuleError (452) */
interface PalletForeignAssetsModuleError extends Enum {
readonly isBadLocation: boolean;
readonly isMultiLocationExisted: boolean;
@@ -3711,7 +3758,7 @@
readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
}
- /** @name PalletEvmError (450) */
+ /** @name PalletEvmError (454) */
interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -3726,7 +3773,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';
}
- /** @name FpRpcTransactionStatus (453) */
+ /** @name FpRpcTransactionStatus (457) */
interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -3737,10 +3784,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (455) */
+ /** @name EthbloomBloom (459) */
interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (457) */
+ /** @name EthereumReceiptReceiptV3 (461) */
interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3751,7 +3798,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (458) */
+ /** @name EthereumReceiptEip658ReceiptData (462) */
interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -3759,14 +3806,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (459) */
+ /** @name EthereumBlock (463) */
interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (460) */
+ /** @name EthereumHeader (464) */
interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -3785,24 +3832,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (461) */
+ /** @name EthereumTypesHashH64 (465) */
interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (466) */
+ /** @name PalletEthereumError (470) */
interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (467) */
+ /** @name PalletEvmCoderSubstrateError (471) */
interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (468) */
+ /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (472) */
interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3812,7 +3859,7 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (469) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (473) */
interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -3820,7 +3867,7 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (475) */
+ /** @name PalletEvmContractHelpersError (479) */
interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly isNoPendingSponsor: boolean;
@@ -3828,24 +3875,25 @@
readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
}
- /** @name PalletEvmMigrationError (476) */
+ /** @name PalletEvmMigrationError (480) */
interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
- readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
+ readonly isBadEvent: boolean;
+ readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
}
- /** @name PalletMaintenanceError (477) */
+ /** @name PalletMaintenanceError (481) */
type PalletMaintenanceError = Null;
- /** @name PalletTestUtilsError (478) */
+ /** @name PalletTestUtilsError (482) */
interface PalletTestUtilsError extends Enum {
readonly isTestPalletDisabled: boolean;
readonly isTriggerRollback: boolean;
readonly type: 'TestPalletDisabled' | 'TriggerRollback';
}
- /** @name SpRuntimeMultiSignature (480) */
+ /** @name SpRuntimeMultiSignature (484) */
interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -3856,40 +3904,40 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (481) */
+ /** @name SpCoreEd25519Signature (485) */
interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (483) */
+ /** @name SpCoreSr25519Signature (487) */
interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (484) */
+ /** @name SpCoreEcdsaSignature (488) */
interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (487) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (491) */
type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckTxVersion (488) */
+ /** @name FrameSystemExtensionsCheckTxVersion (492) */
type FrameSystemExtensionsCheckTxVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (489) */
+ /** @name FrameSystemExtensionsCheckGenesis (493) */
type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (492) */
+ /** @name FrameSystemExtensionsCheckNonce (496) */
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (493) */
+ /** @name FrameSystemExtensionsCheckWeight (497) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (494) */
+ /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (498) */
type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (495) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (499) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (496) */
+ /** @name OpalRuntimeRuntime (500) */
type OpalRuntimeRuntime = Null;
- /** @name PalletEthereumFakeTransactionFinalizer (497) */
+ /** @name PalletEthereumFakeTransactionFinalizer (501) */
type PalletEthereumFakeTransactionFinalizer = Null;
} // declare module