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.lockdiffbeforeafterboth591259125913[[package]]5913[[package]]5914name = "pallet-common"5914name = "pallet-common"5915version = "0.1.11"5915version = "0.1.12"5916dependencies = [5916dependencies = [5917 "ethereum",5917 "ethereum",5918 "evm-coder",5918 "evm-coder",pallets/common/CHANGELOG.mddiffbeforeafterboth445<!-- bureaucrate goes here -->5<!-- bureaucrate goes here -->667## [0.1.11] - 2022-11-167## [0.1.12] - 2022-11-16889### Changed9### Changed101011- Behavior of the `setCollectionLimit` method.11- Behavior of the `setCollectionLimit` method.12 Removed method overload: single signature `(string, uint256)`12 Removed method overload: single signature `(string, uint256)`13 is used for both cases.13 is used for both cases.141415## [0.1.11] - 2022-11-121617### Changed1819- In the `Collection` solidity interface,20 the `allowed` function has been renamed to `allow_listed_cross`.21 Also `EthCrossAccount` type is now used as `user` arg.2215## [0.1.10] - 2022-11-0223## [0.1.10] - 2022-11-02162417### Changed25### Changedpallets/common/Cargo.tomldiffbeforeafterboth1[package]1[package]2name = "pallet-common"2name = "pallet-common"3version = "0.1.11"3version = "0.1.12"4license = "GPLv3"4license = "GPLv3"5edition = "2021"5edition = "2021"66pallets/common/src/erc.rsdiffbeforeafterboth529 /// Checks that user allowed to operate with collection.529 /// Checks that user allowed to operate with collection.530 ///530 ///531 /// @param user User address to check.531 /// @param user User address to check.532 fn allowed(&self, user: address) -> Result<bool> {532 fn allowlisted_cross(&self, user: EthCrossAccount) -> Result<bool> {533 let user = user.into_sub_cross_account::<T>()?;533 Ok(Pallet::<T>::allowed(534 Ok(Pallet::<T>::allowed(self.id, user))534 self.id,535 T::CrossAccountId::from_eth(user),536 ))537 }535 }538536pallets/evm-contract-helpers/src/stubs/ContractHelpers.rawdiffbeforeafterbothbinary blob — no preview
pallets/fungible/src/stubs/UniqueFungible.rawdiffbeforeafterbothbinary blob — no preview
pallets/fungible/src/stubs/UniqueFungible.soldiffbeforeafterboth18}18}191920/// @title A contract that allows you to work with collections.20/// @title A contract that allows you to work with collections.21/// @dev the ERC-165 identifier for this interface is 0x8b91d19221/// @dev the ERC-165 identifier for this interface is 0xcc1d80ca22contract Collection is Dummy, ERC165 {22contract Collection is Dummy, ERC165 {23 // /// Set collection property.23 // /// Set collection property.24 // ///24 // ///269 /// Checks that user allowed to operate with collection.269 /// Checks that user allowed to operate with collection.270 ///270 ///271 /// @param user User address to check.271 /// @param user User address to check.272 /// @dev EVM selector for this function is: 0xd63a8e11,272 /// @dev EVM selector for this function is: 0x91b6df49,273 /// or in textual repr: allowed(address)273 /// or in textual repr: allowlistedCross((address,uint256))274 function allowed(address user) public view returns (bool) {274 function allowlistedCross(EthCrossAccount memory user) public view returns (bool) {275 require(false, stub_error);275 require(false, stub_error);276 user;276 user;277 dummy;277 dummy;pallets/nonfungible/src/stubs/UniqueNFT.rawdiffbeforeafterbothbinary blob — no preview
pallets/nonfungible/src/stubs/UniqueNFT.soldiffbeforeafterboth119}119}120120121/// @title A contract that allows you to work with collections.121/// @title A contract that allows you to work with collections.122/// @dev the ERC-165 identifier for this interface is 0x8b91d192122/// @dev the ERC-165 identifier for this interface is 0xcc1d80ca123contract Collection is Dummy, ERC165 {123contract Collection is Dummy, ERC165 {124 // /// Set collection property.124 // /// Set collection property.125 // ///125 // ///370 /// Checks that user allowed to operate with collection.370 /// Checks that user allowed to operate with collection.371 ///371 ///372 /// @param user User address to check.372 /// @param user User address to check.373 /// @dev EVM selector for this function is: 0xd63a8e11,373 /// @dev EVM selector for this function is: 0x91b6df49,374 /// or in textual repr: allowed(address)374 /// or in textual repr: allowlistedCross((address,uint256))375 function allowed(address user) public view returns (bool) {375 function allowlistedCross(EthCrossAccount memory user) public view returns (bool) {376 require(false, stub_error);376 require(false, stub_error);377 user;377 user;378 dummy;378 dummy;pallets/refungible/src/stubs/UniqueRefungible.rawdiffbeforeafterbothbinary blob — no preview
pallets/refungible/src/stubs/UniqueRefungible.soldiffbeforeafterboth119}119}120120121/// @title A contract that allows you to work with collections.121/// @title A contract that allows you to work with collections.122/// @dev the ERC-165 identifier for this interface is 0x8b91d192122/// @dev the ERC-165 identifier for this interface is 0xcc1d80ca123contract Collection is Dummy, ERC165 {123contract Collection is Dummy, ERC165 {124 // /// Set collection property.124 // /// Set collection property.125 // ///125 // ///370 /// Checks that user allowed to operate with collection.370 /// Checks that user allowed to operate with collection.371 ///371 ///372 /// @param user User address to check.372 /// @param user User address to check.373 /// @dev EVM selector for this function is: 0xd63a8e11,373 /// @dev EVM selector for this function is: 0x91b6df49,374 /// or in textual repr: allowed(address)374 /// or in textual repr: allowlistedCross((address,uint256))375 function allowed(address user) public view returns (bool) {375 function allowlistedCross(EthCrossAccount memory user) public view returns (bool) {376 require(false, stub_error);376 require(false, stub_error);377 user;377 user;378 dummy;378 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.jsondiffbeforeafterboth95 },95 },96 {96 {97 "inputs": [97 "inputs": [98 { "internalType": "address", "name": "user", "type": "address" }98 {99 "components": [100 { "internalType": "address", "name": "eth", "type": "address" },101 { "internalType": "uint256", "name": "sub", "type": "uint256" }102 ],103 "internalType": "struct EthCrossAccount",104 "name": "user",105 "type": "tuple"106 }99 ],107 ],100 "name": "allowed",108 "name": "allowlistedCross",101 "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],109 "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],102 "stateMutability": "view",110 "stateMutability": "view",103 "type": "function"111 "type": "function"tests/src/eth/abi/nonFungible.jsondiffbeforeafterboth116 },116 },117 {117 {118 "inputs": [118 "inputs": [119 { "internalType": "address", "name": "user", "type": "address" }119 {120 "components": [121 { "internalType": "address", "name": "eth", "type": "address" },122 { "internalType": "uint256", "name": "sub", "type": "uint256" }123 ],124 "internalType": "struct EthCrossAccount",125 "name": "user",126 "type": "tuple"127 }120 ],128 ],121 "name": "allowed",129 "name": "allowlistedCross",122 "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],130 "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],123 "stateMutability": "view",131 "stateMutability": "view",124 "type": "function"132 "type": "function"tests/src/eth/abi/reFungible.jsondiffbeforeafterboth116 },116 },117 {117 {118 "inputs": [118 "inputs": [119 { "internalType": "address", "name": "user", "type": "address" }119 {120 "components": [121 { "internalType": "address", "name": "eth", "type": "address" },122 { "internalType": "uint256", "name": "sub", "type": "uint256" }123 ],124 "internalType": "struct EthCrossAccount",125 "name": "user",126 "type": "tuple"127 }120 ],128 ],121 "name": "allowed",129 "name": "allowlistedCross",122 "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],130 "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],123 "stateMutability": "view",131 "stateMutability": "view",124 "type": "function"132 "type": "function"tests/src/eth/allowlist.test.tsdiffbeforeafterboth78 itEth('Collection allowlist can be added and removed by [eth] address', async ({helper}) => {78 itEth('Collection allowlist can be added and removed by [eth] address', async ({helper}) => {79 const owner = await helper.eth.createAccountWithBalance(donor);79 const owner = await helper.eth.createAccountWithBalance(donor);80 const user = helper.eth.createAccount();80 const user = helper.eth.createAccount();8181 const crossUser = helper.ethCrossAccount.fromAddress(user);82 82 const {collectionAddress} = await helper.eth.createNFTCollection(owner, 'A', 'B', 'C');83 const {collectionAddress} = await helper.eth.createNFTCollection(owner, 'A', 'B', 'C');83 const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'nft', owner, true);84 const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'nft', owner, true);848585 expect(await collectionEvm.methods.allowed(user).call({from: owner})).to.be.false;86 expect(await collectionEvm.methods.allowlistedCross(crossUser).call({from: owner})).to.be.false;86 await collectionEvm.methods.addToCollectionAllowList(user).send({from: owner});87 await collectionEvm.methods.addToCollectionAllowList(user).send({from: owner});87 expect(await collectionEvm.methods.allowed(user).call({from: owner})).to.be.true;88 expect(await collectionEvm.methods.allowlistedCross(crossUser).call({from: owner})).to.be.true;888989 await collectionEvm.methods.removeFromCollectionAllowList(user).send({from: owner});90 await collectionEvm.methods.removeFromCollectionAllowList(user).send({from: owner});90 expect(await collectionEvm.methods.allowed(user).call({from: owner})).to.be.false;91 expect(await collectionEvm.methods.allowlistedCross(crossUser).call({from: owner})).to.be.false;91 });92 });929393 itEth('Collection allowlist can be added and removed by [cross] address', async ({helper}) => {94 itEth('Collection allowlist can be added and removed by [cross] address', async ({helper}) => {101 expect(await helper.collection.allowed(collectionId, {Substrate: user.address})).to.be.false;102 expect(await helper.collection.allowed(collectionId, {Substrate: user.address})).to.be.false;102 await collectionEvm.methods.addToCollectionAllowListCross(userCross).send({from: owner});103 await collectionEvm.methods.addToCollectionAllowListCross(userCross).send({from: owner});103 expect(await helper.collection.allowed(collectionId, {Substrate: user.address})).to.be.true;104 expect(await helper.collection.allowed(collectionId, {Substrate: user.address})).to.be.true;104 105 expect(await collectionEvm.methods.allowlistedCross(userCross).call({from: owner})).to.be.true;106 105 await collectionEvm.methods.removeFromCollectionAllowListCross(userCross).send({from: owner});107 await collectionEvm.methods.removeFromCollectionAllowListCross(userCross).send({from: owner});106 expect(await helper.collection.allowed(collectionId, {Substrate: user.address})).to.be.false;108 expect(await helper.collection.allowed(collectionId, {Substrate: user.address})).to.be.false;109 expect(await collectionEvm.methods.allowlistedCross(userCross).call({from: owner})).to.be.false;107 });110 });108111109 // Soft-deprecated112 // Soft-deprecated110 itEth('Collection allowlist can not be add and remove [eth] address by not owner', async ({helper}) => {113 itEth('Collection allowlist can not be add and remove [eth] address by not owner', async ({helper}) => {111 const owner = await helper.eth.createAccountWithBalance(donor);114 const owner = await helper.eth.createAccountWithBalance(donor);112 const notOwner = await helper.eth.createAccountWithBalance(donor);115 const notOwner = await helper.eth.createAccountWithBalance(donor);113 const user = helper.eth.createAccount();116 const user = helper.eth.createAccount();117 const crossUser = helper.ethCrossAccount.fromAddress(user);114118115 const {collectionAddress} = await helper.eth.createNFTCollection(owner, 'A', 'B', 'C');119 const {collectionAddress} = await helper.eth.createNFTCollection(owner, 'A', 'B', 'C');116 const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'nft', owner, true);120 const collectionEvm = helper.ethNativeContract.collection(collectionAddress, 'nft', owner, true);117121118 expect(await collectionEvm.methods.allowed(user).call({from: owner})).to.be.false;122 expect(await collectionEvm.methods.allowlistedCross(crossUser).call({from: owner})).to.be.false;119 await expect(collectionEvm.methods.addToCollectionAllowList(user).call({from: notOwner})).to.be.rejectedWith('NoPermission');123 await expect(collectionEvm.methods.addToCollectionAllowList(user).call({from: notOwner})).to.be.rejectedWith('NoPermission');120 expect(await collectionEvm.methods.allowed(user).call({from: owner})).to.be.false;124 expect(await collectionEvm.methods.allowlistedCross(crossUser).call({from: owner})).to.be.false;121 await collectionEvm.methods.addToCollectionAllowList(user).send({from: owner});125 await collectionEvm.methods.addToCollectionAllowList(user).send({from: owner});122 expect(await collectionEvm.methods.allowed(user).call({from: owner})).to.be.true;126 expect(await collectionEvm.methods.allowlistedCross(crossUser).call({from: owner})).to.be.true;123 await expect(collectionEvm.methods.removeFromCollectionAllowList(user).call({from: notOwner})).to.be.rejectedWith('NoPermission');127 await expect(collectionEvm.methods.removeFromCollectionAllowList(user).call({from: notOwner})).to.be.rejectedWith('NoPermission');124 expect(await collectionEvm.methods.allowed(user).call({from: owner})).to.be.true;128 expect(await collectionEvm.methods.allowlistedCross(crossUser).call({from: owner})).to.be.true;125 });129 });126130127 itEth('Collection allowlist can not be add and remove [cross] address by not owner', async ({helper}) => {131 itEth('Collection allowlist can not be add and remove [cross] address by not owner', async ({helper}) => {tests/src/eth/api/UniqueFungible.soldiffbeforeafterboth13}13}141415/// @title A contract that allows you to work with collections.15/// @title A contract that allows you to work with collections.16/// @dev the ERC-165 identifier for this interface is 0x8b91d19216/// @dev the ERC-165 identifier for this interface is 0xcc1d80ca17interface Collection is Dummy, ERC165 {17interface Collection is Dummy, ERC165 {18 // /// Set collection property.18 // /// Set collection property.19 // ///19 // ///177 /// Checks that user allowed to operate with collection.177 /// Checks that user allowed to operate with collection.178 ///178 ///179 /// @param user User address to check.179 /// @param user User address to check.180 /// @dev EVM selector for this function is: 0xd63a8e11,180 /// @dev EVM selector for this function is: 0x91b6df49,181 /// or in textual repr: allowed(address)181 /// or in textual repr: allowlistedCross((address,uint256))182 function allowed(address user) external view returns (bool);182 function allowlistedCross(EthCrossAccount memory user) external view returns (bool);183183184 // /// Add the user to the allowed list.184 // /// Add the user to the allowed list.185 // ///185 // ///tests/src/eth/api/UniqueNFT.soldiffbeforeafterboth80}80}818182/// @title A contract that allows you to work with collections.82/// @title A contract that allows you to work with collections.83/// @dev the ERC-165 identifier for this interface is 0x8b91d19283/// @dev the ERC-165 identifier for this interface is 0xcc1d80ca84interface Collection is Dummy, ERC165 {84interface Collection is Dummy, ERC165 {85 // /// Set collection property.85 // /// Set collection property.86 // ///86 // ///244 /// Checks that user allowed to operate with collection.244 /// Checks that user allowed to operate with collection.245 ///245 ///246 /// @param user User address to check.246 /// @param user User address to check.247 /// @dev EVM selector for this function is: 0xd63a8e11,247 /// @dev EVM selector for this function is: 0x91b6df49,248 /// or in textual repr: allowed(address)248 /// or in textual repr: allowlistedCross((address,uint256))249 function allowed(address user) external view returns (bool);249 function allowlistedCross(EthCrossAccount memory user) external view returns (bool);250250251 // /// Add the user to the allowed list.251 // /// Add the user to the allowed list.252 // ///252 // ///tests/src/eth/api/UniqueRefungible.soldiffbeforeafterboth80}80}818182/// @title A contract that allows you to work with collections.82/// @title A contract that allows you to work with collections.83/// @dev the ERC-165 identifier for this interface is 0x8b91d19283/// @dev the ERC-165 identifier for this interface is 0xcc1d80ca84interface Collection is Dummy, ERC165 {84interface Collection is Dummy, ERC165 {85 // /// Set collection property.85 // /// Set collection property.86 // ///86 // ///244 /// Checks that user allowed to operate with collection.244 /// Checks that user allowed to operate with collection.245 ///245 ///246 /// @param user User address to check.246 /// @param user User address to check.247 /// @dev EVM selector for this function is: 0xd63a8e11,247 /// @dev EVM selector for this function is: 0x91b6df49,248 /// or in textual repr: allowed(address)248 /// or in textual repr: allowlistedCross((address,uint256))249 function allowed(address user) external view returns (bool);249 function allowlistedCross(EthCrossAccount memory user) external view returns (bool);250250251 // /// Add the user to the allowed list.251 // /// Add the user to the allowed list.252 // ///252 // ///tests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth93 [key: string]: Codec;93 [key: string]: Codec;94 };94 };95 scheduler: {95 scheduler: {96 /**96 /**97 * The maximum weight that may be scheduled per block for any dispatchables of less97 * The maximum weight that may be scheduled per block for any dispatchables.98 * priority than `schedule::HARD_DEADLINE`.98 **/99 **/100 maximumWeight: Weight & AugmentedConst<ApiType>;99 maximumWeight: Weight & AugmentedConst<ApiType>;101 /**100 /**102 * The maximum number of scheduled calls in the queue for a single block.101 * The maximum number of scheduled calls in the queue for a single block.103 * Not strictly enforced, but used for weight estimation.102 **/104 **/105 maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;103 maxScheduledPerBlock: u32 & AugmentedConst<ApiType>;106 /**104 /**107 * Generic const105 * Generic consttests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth336 * Can only migrate to empty address.336 * Can only migrate to empty address.337 **/337 **/338 AccountNotEmpty: AugmentedError<ApiType>;338 AccountNotEmpty: AugmentedError<ApiType>;339 /**340 * Failed to decode event bytes341 **/342 BadEvent: AugmentedError<ApiType>;339 /**343 /**340 * Generic error344 * Generic error341 **/345 **/659 [key: string]: AugmentedError<ApiType>;663 [key: string]: AugmentedError<ApiType>;660 };664 };661 scheduler: {665 scheduler: {666 /**667 * There is no place for a new task in the agenda668 **/669 AgendaIsExhausted: AugmentedError<ApiType>;662 /**670 /**663 * Failed to schedule a call671 * Failed to schedule a call664 **/672 **/665 FailedToSchedule: AugmentedError<ApiType>;673 FailedToSchedule: AugmentedError<ApiType>;674 /**675 * Attempt to use a non-named function on a named task.676 **/677 Named: AugmentedError<ApiType>;666 /**678 /**667 * Cannot find the scheduled call.679 * Cannot find the scheduled call.668 **/680 **/669 NotFound: AugmentedError<ApiType>;681 NotFound: AugmentedError<ApiType>;670 /**682 /**671 * Reschedule failed because it does not change scheduled time.683 * Scheduled call preimage is not found672 **/684 **/673 RescheduleNoChange: AugmentedError<ApiType>;685 PreimageNotFound: AugmentedError<ApiType>;686 /**687 * Scheduled call is corrupted688 **/689 ScheduledCallCorrupted: AugmentedError<ApiType>;674 /**690 /**675 * Given target block number is in the past.691 * Given target block number is in the past.676 **/692 **/677 TargetBlockNumberInPast: AugmentedError<ApiType>;693 TargetBlockNumberInPast: AugmentedError<ApiType>;694 /**695 * Scheduled call is too big696 **/697 TooBigScheduledCall: AugmentedError<ApiType>;678 /**698 /**679 * Generic error699 * Generic error680 **/700 **/tests/src/interfaces/augment-api-events.tsdiffbeforeafterboth9import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';9import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';10import type { ITuple } from '@polkadot/types-codec/types';10import type { ITuple } from '@polkadot/types-codec/types';11import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';11import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';12import 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';12import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';131314export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;14export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;1515256 **/256 **/257 [key: string]: AugmentedEvent<ApiType>;257 [key: string]: AugmentedEvent<ApiType>;258 };258 };259 evmMigration: {260 /**261 * This event is used in benchmarking and can be used for tests262 **/263 TestEvent: AugmentedEvent<ApiType, []>;264 /**265 * Generic event266 **/267 [key: string]: AugmentedEvent<ApiType>;268 };259 foreignAssets: {269 foreignAssets: {260 /**270 /**261 * The asset registered.271 * The asset registered.471 /**481 /**472 * The call for the provided hash was not found so the task has been aborted.482 * The call for the provided hash was not found so the task has been aborted.473 **/483 **/474 CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;484 CallUnavailable: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;475 /**485 /**476 * Canceled some task.486 * Canceled some task.477 **/487 **/480 * Dispatched some task.490 * Dispatched some task.481 **/491 **/482 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> }>;492 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> }>;493 /**494 * The given task can never be executed since it is overweight.495 **/496 PermanentlyOverweight: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;483 /**497 /**484 * Scheduled task's priority has changed498 * Scheduled task's priority has changed485 **/499 **/486 PriorityChanged: AugmentedEvent<ApiType, [when: u32, index: u32, priority: u8], { when: u32, index: u32, priority: u8 }>;500 PriorityChanged: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, priority: u8], { task: ITuple<[u32, u32]>, priority: u8 }>;487 /**501 /**488 * Scheduled some task.502 * Scheduled some task.489 **/503 **/552 [key: string]: AugmentedEvent<ApiType>;566 [key: string]: AugmentedEvent<ApiType>;553 };567 };554 testUtils: {568 testUtils: {569 BatchCompleted: AugmentedEvent<ApiType, []>;555 ShouldRollback: AugmentedEvent<ApiType, []>;570 ShouldRollback: AugmentedEvent<ApiType, []>;556 ValueIsSet: AugmentedEvent<ApiType, []>;571 ValueIsSet: AugmentedEvent<ApiType, []>;557 /**572 /**tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth9import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { BTreeMap, Bytes, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';10import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';10import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';11import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';11import type { AccountId32, H160, H256, Weight } from '@polkadot/types/interfaces/runtime';12import 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';12import 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';13import type { Observable } from '@polkadot/types/types';13import type { Observable } from '@polkadot/types/types';141415export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;15export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;681 /**681 /**682 * Items to be executed, indexed by the block number that they should be executed on.682 * Items to be executed, indexed by the block number that they should be executed on.683 **/683 **/684 agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<Option<PalletUniqueSchedulerScheduledV3>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;684 agenda: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<PalletUniqueSchedulerV2BlockAgenda>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;685 /**686 * It contains the block number from which we should service tasks.687 * It's used for delaying the servicing of future blocks' agendas if we had overweight tasks.688 **/689 incompleteSince: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;685 /**690 /**686 * Lookup from identity to the block number and index of the task.691 * Lookup from a name to the block number and index of the task.687 **/692 **/688 lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;693 lookup: AugmentedQuery<ApiType, (arg: U8aFixed | string | Uint8Array) => Observable<Option<ITuple<[u32, u32]>>>, [U8aFixed]> & QueryableStorageEntry<ApiType, [U8aFixed]>;689 /**694 /**690 * Generic query695 * Generic querytests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth9import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { Bytes, Compact, Option, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';10import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';10import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';11import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';11import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill, Weight } from '@polkadot/types/interfaces/runtime';12import 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';12import 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';131314export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;14export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;15export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;15export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;294 * after this call.294 * after this call.295 **/295 **/296 finish: AugmentedSubmittable<(address: H160 | string | Uint8Array, code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H160, Bytes]>;296 finish: AugmentedSubmittable<(address: H160 | string | Uint8Array, code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H160, Bytes]>;297 /**298 * Create ethereum events attached to the fake transaction299 **/300 insertEthLogs: AugmentedSubmittable<(logs: Vec<EthereumLog> | (EthereumLog | { address?: any; topics?: any; data?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<EthereumLog>]>;301 /**302 * Create substrate events303 **/304 insertEvents: AugmentedSubmittable<(events: Vec<Bytes> | (Bytes | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Bytes>]>;297 /**305 /**298 * Insert items into contract storage, this method can be called306 * Insert items into contract storage, this method can be called299 * multiple times307 * multiple times830 [key: string]: SubmittableExtrinsicFunction<ApiType>;838 [key: string]: SubmittableExtrinsicFunction<ApiType>;831 };839 };832 scheduler: {840 scheduler: {833 /**841 /**834 * Cancel a named scheduled task.842 * Cancel an anonymously scheduled task.835 **/843 * 844 * The `T::OriginPrivilegeCmp` decides whether the given origin is allowed to cancel the task or not.845 **/846 cancel: AugmentedSubmittable<(when: u32 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;847 /**848 * Cancel a named scheduled task.849 * 850 * The `T::OriginPrivilegeCmp` decides whether the given origin is allowed to cancel the task or not.851 **/836 cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;852 cancelNamed: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed]>;853 /**854 * Change a named task's priority.855 * 856 * Only the `T::PrioritySetOrigin` is allowed to change the task's priority.857 **/837 changeNamedPriority: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, priority: u8 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u8]>;858 changeNamedPriority: AugmentedSubmittable<(id: U8aFixed | string | Uint8Array, priority: u8 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [U8aFixed, u8]>;838 /**859 /**839 * Schedule a named task.860 * Anonymously schedule a task.840 **/861 * 862 * Only `T::ScheduleOrigin` is allowed to schedule a task.863 * Only `T::PrioritySetOrigin` is allowed to set the task's priority.864 **/865 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]>;866 /**867 * Anonymously schedule a task after a delay.868 * 869 * # <weight>870 * Same as [`schedule`].871 * # </weight>872 **/873 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]>;874 /**875 * Schedule a named task.876 * 877 * Only `T::ScheduleOrigin` is allowed to schedule a task.878 * Only `T::PrioritySetOrigin` is allowed to set the task's priority.879 **/841 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]>;880 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]>;842 /**881 /**843 * Schedule a named task after a delay.882 * Schedule a named task after a delay.844 * 883 * 845 * # <weight>884 * Only `T::ScheduleOrigin` is allowed to schedule a task.885 * Only `T::PrioritySetOrigin` is allowed to set the task's priority.886 * 887 * # <weight>846 * Same as [`schedule_named`](Self::schedule_named).888 * Same as [`schedule_named`](Self::schedule_named).847 * # </weight>889 * # </weight>848 **/890 **/849 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]>;891 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]>;850 /**892 /**851 * Generic tx893 * Generic tx852 **/894 **/986 [key: string]: SubmittableExtrinsicFunction<ApiType>;1028 [key: string]: SubmittableExtrinsicFunction<ApiType>;987 };1029 };988 testUtils: {1030 testUtils: {1031 batchAll: AugmentedSubmittable<(calls: Vec<Call> | (Call | IMethod | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<Call>]>;989 enable: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;1032 enable: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;990 incTestValue: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;1033 incTestValue: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;991 justTakeFee: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;1034 justTakeFee: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;tests/src/interfaces/augment-types.tsdiffbeforeafterboth5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';778import 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';8import 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';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';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';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';526 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;526 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;527 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;527 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;528 FrameSupportPalletId: FrameSupportPalletId;528 FrameSupportPalletId: FrameSupportPalletId;529 FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;530 FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;531 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;529 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;532 FrameSystemAccountInfo: FrameSystemAccountInfo;530 FrameSystemAccountInfo: FrameSystemAccountInfo;533 FrameSystemCall: FrameSystemCall;531 FrameSystemCall: FrameSystemCall;854 PalletEvmEvent: PalletEvmEvent;852 PalletEvmEvent: PalletEvmEvent;855 PalletEvmMigrationCall: PalletEvmMigrationCall;853 PalletEvmMigrationCall: PalletEvmMigrationCall;856 PalletEvmMigrationError: PalletEvmMigrationError;854 PalletEvmMigrationError: PalletEvmMigrationError;855 PalletEvmMigrationEvent: PalletEvmMigrationEvent;857 PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;856 PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;858 PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;857 PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;859 PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;858 PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;902 PalletUniqueCall: PalletUniqueCall;901 PalletUniqueCall: PalletUniqueCall;903 PalletUniqueError: PalletUniqueError;902 PalletUniqueError: PalletUniqueError;904 PalletUniqueRawEvent: PalletUniqueRawEvent;903 PalletUniqueRawEvent: PalletUniqueRawEvent;905 PalletUniqueSchedulerCall: PalletUniqueSchedulerCall;904 PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;906 PalletUniqueSchedulerError: PalletUniqueSchedulerError;905 PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;907 PalletUniqueSchedulerEvent: PalletUniqueSchedulerEvent;906 PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;908 PalletUniqueSchedulerScheduledV3: PalletUniqueSchedulerScheduledV3;907 PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;908 PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;909 PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;909 PalletVersion: PalletVersion;910 PalletVersion: PalletVersion;910 PalletXcmCall: PalletXcmCall;911 PalletXcmCall: PalletXcmCall;911 PalletXcmError: PalletXcmError;912 PalletXcmError: PalletXcmError;tests/src/interfaces/default/types.tsdiffbeforeafterboth556/** @name FrameSupportPalletId */556/** @name FrameSupportPalletId */557export interface FrameSupportPalletId extends U8aFixed {}557export interface FrameSupportPalletId extends U8aFixed {}558559/** @name FrameSupportScheduleLookupError */560export interface FrameSupportScheduleLookupError extends Enum {561 readonly isUnknown: boolean;562 readonly isBadFormat: boolean;563 readonly type: 'Unknown' | 'BadFormat';564}565566/** @name FrameSupportScheduleMaybeHashed */567export interface FrameSupportScheduleMaybeHashed extends Enum {568 readonly isValue: boolean;569 readonly asValue: Call;570 readonly isHash: boolean;571 readonly asHash: H256;572 readonly type: 'Value' | 'Hash';573}574558575/** @name FrameSupportTokensMiscBalanceStatus */559/** @name FrameSupportTokensMiscBalanceStatus */576export interface FrameSupportTokensMiscBalanceStatus extends Enum {560export interface FrameSupportTokensMiscBalanceStatus extends Enum {1510 readonly address: H160;1494 readonly address: H160;1511 readonly code: Bytes;1495 readonly code: Bytes;1512 } & Struct;1496 } & Struct;1497 readonly isInsertEthLogs: boolean;1498 readonly asInsertEthLogs: {1499 readonly logs: Vec<EthereumLog>;1500 } & Struct;1501 readonly isInsertEvents: boolean;1502 readonly asInsertEvents: {1503 readonly events: Vec<Bytes>;1504 } & Struct;1513 readonly type: 'Begin' | 'SetData' | 'Finish';1505 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';1514}1506}151515071516/** @name PalletEvmMigrationError */1508/** @name PalletEvmMigrationError */1517export interface PalletEvmMigrationError extends Enum {1509export interface PalletEvmMigrationError extends Enum {1518 readonly isAccountNotEmpty: boolean;1510 readonly isAccountNotEmpty: boolean;1519 readonly isAccountIsNotMigrating: boolean;1511 readonly isAccountIsNotMigrating: boolean;1512 readonly isBadEvent: boolean;1520 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';1513 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';1521}1514}15151516/** @name PalletEvmMigrationEvent */1517export interface PalletEvmMigrationEvent extends Enum {1518 readonly isTestEvent: boolean;1519 readonly type: 'TestEvent';1520}152215211523/** @name PalletForeignAssetsAssetIds */1522/** @name PalletForeignAssetsAssetIds */1524export interface PalletForeignAssetsAssetIds extends Enum {1523export interface PalletForeignAssetsAssetIds extends Enum {2019 readonly maxTestValue: u32;2018 readonly maxTestValue: u32;2020 } & Struct;2019 } & Struct;2021 readonly isJustTakeFee: boolean;2020 readonly isJustTakeFee: boolean;2021 readonly isBatchAll: boolean;2022 readonly asBatchAll: {2023 readonly calls: Vec<Call>;2024 } & Struct;2022 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee';2025 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';2023}2026}202420272025/** @name PalletTestUtilsError */2028/** @name PalletTestUtilsError */2033export interface PalletTestUtilsEvent extends Enum {2036export interface PalletTestUtilsEvent extends Enum {2034 readonly isValueIsSet: boolean;2037 readonly isValueIsSet: boolean;2035 readonly isShouldRollback: boolean;2038 readonly isShouldRollback: boolean;2039 readonly isBatchCompleted: boolean;2036 readonly type: 'ValueIsSet' | 'ShouldRollback';2040 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';2037}2041}203820422039/** @name PalletTimestampCall */2043/** @name PalletTimestampCall */2342 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';2346 readonly type: 'CollectionSponsorRemoved' | 'CollectionAdminAdded' | 'CollectionOwnedChanged' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionAdminRemoved' | 'AllowListAddressRemoved' | 'AllowListAddressAdded' | 'CollectionLimitSet' | 'CollectionPermissionSet';2343}2347}23482349/** @name PalletUniqueSchedulerV2BlockAgenda */2350export interface PalletUniqueSchedulerV2BlockAgenda extends Struct {2351 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;2352 readonly freePlaces: u32;2353}234423542345/** @name PalletUniqueSchedulerCall */2355/** @name PalletUniqueSchedulerV2Call */2346export interface PalletUniqueSchedulerCall extends Enum {2356export interface PalletUniqueSchedulerV2Call extends Enum {2357 readonly isSchedule: boolean;2358 readonly asSchedule: {2359 readonly when: u32;2360 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2361 readonly priority: Option<u8>;2362 readonly call: Call;2363 } & Struct;2364 readonly isCancel: boolean;2365 readonly asCancel: {2366 readonly when: u32;2367 readonly index: u32;2368 } & Struct;2347 readonly isScheduleNamed: boolean;2369 readonly isScheduleNamed: boolean;2348 readonly asScheduleNamed: {2370 readonly asScheduleNamed: {2349 readonly id: U8aFixed;2371 readonly id: U8aFixed;2350 readonly when: u32;2372 readonly when: u32;2351 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2373 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2352 readonly priority: Option<u8>;2374 readonly priority: Option<u8>;2353 readonly call: FrameSupportScheduleMaybeHashed;2375 readonly call: Call;2354 } & Struct;2376 } & Struct;2355 readonly isCancelNamed: boolean;2377 readonly isCancelNamed: boolean;2356 readonly asCancelNamed: {2378 readonly asCancelNamed: {2357 readonly id: U8aFixed;2379 readonly id: U8aFixed;2358 } & Struct;2380 } & Struct;2381 readonly isScheduleAfter: boolean;2382 readonly asScheduleAfter: {2383 readonly after: u32;2384 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2385 readonly priority: Option<u8>;2386 readonly call: Call;2387 } & Struct;2359 readonly isScheduleNamedAfter: boolean;2388 readonly isScheduleNamedAfter: boolean;2360 readonly asScheduleNamedAfter: {2389 readonly asScheduleNamedAfter: {2361 readonly id: U8aFixed;2390 readonly id: U8aFixed;2362 readonly after: u32;2391 readonly after: u32;2363 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2392 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2364 readonly priority: Option<u8>;2393 readonly priority: Option<u8>;2365 readonly call: FrameSupportScheduleMaybeHashed;2394 readonly call: Call;2366 } & Struct;2395 } & Struct;2367 readonly isChangeNamedPriority: boolean;2396 readonly isChangeNamedPriority: boolean;2368 readonly asChangeNamedPriority: {2397 readonly asChangeNamedPriority: {2369 readonly id: U8aFixed;2398 readonly id: U8aFixed;2370 readonly priority: u8;2399 readonly priority: u8;2371 } & Struct;2400 } & Struct;2372 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2401 readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2373}2402}237424032375/** @name PalletUniqueSchedulerError */2404/** @name PalletUniqueSchedulerV2Error */2376export interface PalletUniqueSchedulerError extends Enum {2405export interface PalletUniqueSchedulerV2Error extends Enum {2377 readonly isFailedToSchedule: boolean;2406 readonly isFailedToSchedule: boolean;2407 readonly isAgendaIsExhausted: boolean;2408 readonly isScheduledCallCorrupted: boolean;2409 readonly isPreimageNotFound: boolean;2410 readonly isTooBigScheduledCall: boolean;2378 readonly isNotFound: boolean;2411 readonly isNotFound: boolean;2379 readonly isTargetBlockNumberInPast: boolean;2412 readonly isTargetBlockNumberInPast: boolean;2380 readonly isRescheduleNoChange: boolean;2413 readonly isNamed: boolean;2381 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';2414 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';2382}2415}238324162384/** @name PalletUniqueSchedulerEvent */2417/** @name PalletUniqueSchedulerV2Event */2385export interface PalletUniqueSchedulerEvent extends Enum {2418export interface PalletUniqueSchedulerV2Event extends Enum {2386 readonly isScheduled: boolean;2419 readonly isScheduled: boolean;2387 readonly asScheduled: {2420 readonly asScheduled: {2388 readonly when: u32;2421 readonly when: u32;2393 readonly when: u32;2426 readonly when: u32;2394 readonly index: u32;2427 readonly index: u32;2395 } & Struct;2428 } & Struct;2429 readonly isDispatched: boolean;2430 readonly asDispatched: {2431 readonly task: ITuple<[u32, u32]>;2432 readonly id: Option<U8aFixed>;2433 readonly result: Result<Null, SpRuntimeDispatchError>;2434 } & Struct;2396 readonly isPriorityChanged: boolean;2435 readonly isPriorityChanged: boolean;2397 readonly asPriorityChanged: {2436 readonly asPriorityChanged: {2398 readonly when: u32;2437 readonly task: ITuple<[u32, u32]>;2399 readonly index: u32;2400 readonly priority: u8;2438 readonly priority: u8;2401 } & Struct;2439 } & Struct;2402 readonly isDispatched: boolean;2440 readonly isCallUnavailable: boolean;2403 readonly asDispatched: {2441 readonly asCallUnavailable: {2404 readonly task: ITuple<[u32, u32]>;2442 readonly task: ITuple<[u32, u32]>;2405 readonly id: Option<U8aFixed>;2443 readonly id: Option<U8aFixed>;2406 readonly result: Result<Null, SpRuntimeDispatchError>;2407 } & Struct;2444 } & Struct;2408 readonly isCallLookupFailed: boolean;2445 readonly isPermanentlyOverweight: boolean;2409 readonly asCallLookupFailed: {2446 readonly asPermanentlyOverweight: {2410 readonly task: ITuple<[u32, u32]>;2447 readonly task: ITuple<[u32, u32]>;2411 readonly id: Option<U8aFixed>;2448 readonly id: Option<U8aFixed>;2412 readonly error: FrameSupportScheduleLookupError;2413 } & Struct;2449 } & Struct;2414 readonly type: 'Scheduled' | 'Canceled' | 'PriorityChanged' | 'Dispatched' | 'CallLookupFailed';2450 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';2415}2451}241624522417/** @name PalletUniqueSchedulerScheduledV3 */2453/** @name PalletUniqueSchedulerV2Scheduled */2418export interface PalletUniqueSchedulerScheduledV3 extends Struct {2454export interface PalletUniqueSchedulerV2Scheduled extends Struct {2419 readonly maybeId: Option<U8aFixed>;2455 readonly maybeId: Option<U8aFixed>;2420 readonly priority: u8;2456 readonly priority: u8;2421 readonly call: FrameSupportScheduleMaybeHashed;2457 readonly call: PalletUniqueSchedulerV2ScheduledCall;2422 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2458 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2423 readonly origin: OpalRuntimeOriginCaller;2459 readonly origin: OpalRuntimeOriginCaller;2424}2460}24612462/** @name PalletUniqueSchedulerV2ScheduledCall */2463export interface PalletUniqueSchedulerV2ScheduledCall extends Enum {2464 readonly isInline: boolean;2465 readonly asInline: Bytes;2466 readonly isPreimageLookup: boolean;2467 readonly asPreimageLookup: {2468 readonly hash_: H256;2469 readonly unboundedLen: u32;2470 } & Struct;2471 readonly type: 'Inline' | 'PreimageLookup';2472}242524732426/** @name PalletXcmCall */2474/** @name PalletXcmCall */2427export interface PalletXcmCall extends Enum {2475export interface PalletXcmCall extends Enum {tests/src/interfaces/lookup.tsdiffbeforeafterboth1003 Ethereum: 'H160'1003 Ethereum: 'H160'1004 }1004 }1005 },1005 },1006 /**1006 /**1007 * Lookup93: pallet_unique_scheduler::pallet::Event<T>1007 * Lookup93: pallet_unique_scheduler_v2::pallet::Event<T>1008 **/1008 **/1009 PalletUniqueSchedulerEvent: {1009 PalletUniqueSchedulerV2Event: {1010 _enum: {1010 _enum: {1011 Scheduled: {1011 Scheduled: {1012 when: 'u32',1012 when: 'u32',1016 when: 'u32',1016 when: 'u32',1017 index: 'u32',1017 index: 'u32',1018 },1018 },1019 Dispatched: {1020 task: '(u32,u32)',1021 id: 'Option<[u8;32]>',1022 result: 'Result<Null, SpRuntimeDispatchError>',1023 },1019 PriorityChanged: {1024 PriorityChanged: {1020 when: 'u32',1025 task: '(u32,u32)',1021 index: 'u32',1022 priority: 'u8',1026 priority: 'u8',1023 },1027 },1024 Dispatched: {1028 CallUnavailable: {1025 task: '(u32,u32)',1029 task: '(u32,u32)',1026 id: 'Option<[u8;16]>',1030 id: 'Option<[u8;32]>',1027 result: 'Result<Null, SpRuntimeDispatchError>',1028 },1031 },1029 CallLookupFailed: {1032 PermanentlyOverweight: {1030 task: '(u32,u32)',1033 task: '(u32,u32)',1031 id: 'Option<[u8;16]>',1034 id: 'Option<[u8;32]>'1032 error: 'FrameSupportScheduleLookupError'1033 }1035 }1034 }1036 }1035 },1037 },1036 /**1037 * Lookup96: frame_support::traits::schedule::LookupError1038 **/1039 FrameSupportScheduleLookupError: {1040 _enum: ['Unknown', 'BadFormat']1041 },1042 /**1038 /**1043 * Lookup97: pallet_common::pallet::Event<T>1039 * Lookup96: pallet_common::pallet::Event<T>1044 **/1040 **/1045 PalletCommonEvent: {1041 PalletCommonEvent: {1046 _enum: {1042 _enum: {1047 CollectionCreated: '(u32,u8,AccountId32)',1043 CollectionCreated: '(u32,u8,AccountId32)',1057 PropertyPermissionSet: '(u32,Bytes)'1053 PropertyPermissionSet: '(u32,Bytes)'1058 }1054 }1059 },1055 },1060 /**1056 /**1061 * Lookup100: pallet_structure::pallet::Event<T>1057 * Lookup99: pallet_structure::pallet::Event<T>1062 **/1058 **/1063 PalletStructureEvent: {1059 PalletStructureEvent: {1064 _enum: {1060 _enum: {1065 Executed: 'Result<Null, SpRuntimeDispatchError>'1061 Executed: 'Result<Null, SpRuntimeDispatchError>'1066 }1062 }1067 },1063 },1068 /**1064 /**1069 * Lookup101: pallet_rmrk_core::pallet::Event<T>1065 * Lookup100: pallet_rmrk_core::pallet::Event<T>1070 **/1066 **/1071 PalletRmrkCoreEvent: {1067 PalletRmrkCoreEvent: {1072 _enum: {1068 _enum: {1073 CollectionCreated: {1069 CollectionCreated: {1142 }1138 }1143 }1139 }1144 },1140 },1145 /**1141 /**1146 * Lookup102: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1142 * Lookup101: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1147 **/1143 **/1148 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1144 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1149 _enum: {1145 _enum: {1150 AccountId: 'AccountId32',1146 AccountId: 'AccountId32',1151 CollectionAndNftTuple: '(u32,u32)'1147 CollectionAndNftTuple: '(u32,u32)'1152 }1148 }1153 },1149 },1154 /**1150 /**1155 * Lookup107: pallet_rmrk_equip::pallet::Event<T>1151 * Lookup106: pallet_rmrk_equip::pallet::Event<T>1156 **/1152 **/1157 PalletRmrkEquipEvent: {1153 PalletRmrkEquipEvent: {1158 _enum: {1154 _enum: {1159 BaseCreated: {1155 BaseCreated: {1166 }1162 }1167 }1163 }1168 },1164 },1169 /**1165 /**1170 * Lookup108: pallet_app_promotion::pallet::Event<T>1166 * Lookup107: pallet_app_promotion::pallet::Event<T>1171 **/1167 **/1172 PalletAppPromotionEvent: {1168 PalletAppPromotionEvent: {1173 _enum: {1169 _enum: {1174 StakingRecalculation: '(AccountId32,u128,u128)',1170 StakingRecalculation: '(AccountId32,u128,u128)',1177 SetAdmin: 'AccountId32'1173 SetAdmin: 'AccountId32'1178 }1174 }1179 },1175 },1180 /**1176 /**1181 * Lookup109: pallet_foreign_assets::module::Event<T>1177 * Lookup108: pallet_foreign_assets::module::Event<T>1182 **/1178 **/1183 PalletForeignAssetsModuleEvent: {1179 PalletForeignAssetsModuleEvent: {1184 _enum: {1180 _enum: {1185 ForeignAssetRegistered: {1181 ForeignAssetRegistered: {1202 }1198 }1203 }1199 }1204 },1200 },1205 /**1201 /**1206 * Lookup110: pallet_foreign_assets::module::AssetMetadata<Balance>1202 * Lookup109: pallet_foreign_assets::module::AssetMetadata<Balance>1207 **/1203 **/1208 PalletForeignAssetsModuleAssetMetadata: {1204 PalletForeignAssetsModuleAssetMetadata: {1209 name: 'Bytes',1205 name: 'Bytes',1210 symbol: 'Bytes',1206 symbol: 'Bytes',1211 decimals: 'u8',1207 decimals: 'u8',1212 minimalBalance: 'u128'1208 minimalBalance: 'u128'1213 },1209 },1214 /**1210 /**1215 * Lookup111: pallet_evm::pallet::Event<T>1211 * Lookup110: pallet_evm::pallet::Event<T>1216 **/1212 **/1217 PalletEvmEvent: {1213 PalletEvmEvent: {1218 _enum: {1214 _enum: {1219 Log: {1215 Log: {1233 }1229 }1234 }1230 }1235 },1231 },1236 /**1232 /**1237 * Lookup112: ethereum::log::Log1233 * Lookup111: ethereum::log::Log1238 **/1234 **/1239 EthereumLog: {1235 EthereumLog: {1240 address: 'H160',1236 address: 'H160',1241 topics: 'Vec<H256>',1237 topics: 'Vec<H256>',1242 data: 'Bytes'1238 data: 'Bytes'1243 },1239 },1244 /**1240 /**1245 * Lookup114: pallet_ethereum::pallet::Event1241 * Lookup113: pallet_ethereum::pallet::Event1246 **/1242 **/1247 PalletEthereumEvent: {1243 PalletEthereumEvent: {1248 _enum: {1244 _enum: {1249 Executed: {1245 Executed: {1254 }1250 }1255 }1251 }1256 },1252 },1257 /**1253 /**1258 * Lookup115: evm_core::error::ExitReason1254 * Lookup114: evm_core::error::ExitReason1259 **/1255 **/1260 EvmCoreErrorExitReason: {1256 EvmCoreErrorExitReason: {1261 _enum: {1257 _enum: {1262 Succeed: 'EvmCoreErrorExitSucceed',1258 Succeed: 'EvmCoreErrorExitSucceed',1265 Fatal: 'EvmCoreErrorExitFatal'1261 Fatal: 'EvmCoreErrorExitFatal'1266 }1262 }1267 },1263 },1268 /**1264 /**1269 * Lookup116: evm_core::error::ExitSucceed1265 * Lookup115: evm_core::error::ExitSucceed1270 **/1266 **/1271 EvmCoreErrorExitSucceed: {1267 EvmCoreErrorExitSucceed: {1272 _enum: ['Stopped', 'Returned', 'Suicided']1268 _enum: ['Stopped', 'Returned', 'Suicided']1273 },1269 },1274 /**1270 /**1275 * Lookup117: evm_core::error::ExitError1271 * Lookup116: evm_core::error::ExitError1276 **/1272 **/1277 EvmCoreErrorExitError: {1273 EvmCoreErrorExitError: {1278 _enum: {1274 _enum: {1279 StackUnderflow: 'Null',1275 StackUnderflow: 'Null',1293 InvalidCode: 'Null'1289 InvalidCode: 'Null'1294 }1290 }1295 },1291 },1296 /**1292 /**1297 * Lookup120: evm_core::error::ExitRevert1293 * Lookup119: evm_core::error::ExitRevert1298 **/1294 **/1299 EvmCoreErrorExitRevert: {1295 EvmCoreErrorExitRevert: {1300 _enum: ['Reverted']1296 _enum: ['Reverted']1301 },1297 },1302 /**1298 /**1303 * Lookup121: evm_core::error::ExitFatal1299 * Lookup120: evm_core::error::ExitFatal1304 **/1300 **/1305 EvmCoreErrorExitFatal: {1301 EvmCoreErrorExitFatal: {1306 _enum: {1302 _enum: {1307 NotSupported: 'Null',1303 NotSupported: 'Null',1310 Other: 'Text'1306 Other: 'Text'1311 }1307 }1312 },1308 },1313 /**1309 /**1314 * Lookup122: pallet_evm_contract_helpers::pallet::Event<T>1310 * Lookup121: pallet_evm_contract_helpers::pallet::Event<T>1315 **/1311 **/1316 PalletEvmContractHelpersEvent: {1312 PalletEvmContractHelpersEvent: {1317 _enum: {1313 _enum: {1318 ContractSponsorSet: '(H160,AccountId32)',1314 ContractSponsorSet: '(H160,AccountId32)',1319 ContractSponsorshipConfirmed: '(H160,AccountId32)',1315 ContractSponsorshipConfirmed: '(H160,AccountId32)',1320 ContractSponsorRemoved: 'H160'1316 ContractSponsorRemoved: 'H160'1321 }1317 }1322 },1318 },1319 /**1320 * Lookup122: pallet_evm_migration::pallet::Event<T>1321 **/1322 PalletEvmMigrationEvent: {1323 _enum: ['TestEvent']1324 },1323 /**1325 /**1324 * Lookup123: pallet_maintenance::pallet::Event<T>1326 * Lookup123: pallet_maintenance::pallet::Event<T>1325 **/1327 **/1330 * Lookup124: pallet_test_utils::pallet::Event<T>1332 * Lookup124: pallet_test_utils::pallet::Event<T>1331 **/1333 **/1332 PalletTestUtilsEvent: {1334 PalletTestUtilsEvent: {1333 _enum: ['ValueIsSet', 'ShouldRollback']1335 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1334 },1336 },1335 /**1337 /**1336 * Lookup125: frame_system::Phase1338 * Lookup125: frame_system::Phase2462 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2464 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2463 properties: 'Vec<UpDataStructsProperty>'2465 properties: 'Vec<UpDataStructsProperty>'2464 },2466 },2465 /**2467 /**2466 * Lookup284: pallet_unique_scheduler::pallet::Call<T>2468 * Lookup284: pallet_unique_scheduler_v2::pallet::Call<T>2467 **/2469 **/2468 PalletUniqueSchedulerCall: {2470 PalletUniqueSchedulerV2Call: {2469 _enum: {2471 _enum: {2472 schedule: {2473 when: 'u32',2474 maybePeriodic: 'Option<(u32,u32)>',2475 priority: 'Option<u8>',2476 call: 'Call',2477 },2478 cancel: {2479 when: 'u32',2480 index: 'u32',2481 },2470 schedule_named: {2482 schedule_named: {2471 id: '[u8;16]',2483 id: '[u8;32]',2472 when: 'u32',2484 when: 'u32',2473 maybePeriodic: 'Option<(u32,u32)>',2485 maybePeriodic: 'Option<(u32,u32)>',2474 priority: 'Option<u8>',2486 priority: 'Option<u8>',2475 call: 'FrameSupportScheduleMaybeHashed',2487 call: 'Call',2476 },2488 },2477 cancel_named: {2489 cancel_named: {2478 id: '[u8;16]',2490 id: '[u8;32]',2479 },2491 },2492 schedule_after: {2493 after: 'u32',2494 maybePeriodic: 'Option<(u32,u32)>',2495 priority: 'Option<u8>',2496 call: 'Call',2497 },2480 schedule_named_after: {2498 schedule_named_after: {2481 id: '[u8;16]',2499 id: '[u8;32]',2482 after: 'u32',2500 after: 'u32',2483 maybePeriodic: 'Option<(u32,u32)>',2501 maybePeriodic: 'Option<(u32,u32)>',2484 priority: 'Option<u8>',2502 priority: 'Option<u8>',2485 call: 'FrameSupportScheduleMaybeHashed',2503 call: 'Call',2486 },2504 },2487 change_named_priority: {2505 change_named_priority: {2488 id: '[u8;16]',2506 id: '[u8;32]',2489 priority: 'u8'2507 priority: 'u8'2490 }2508 }2491 }2509 }2492 },2510 },2493 /**2494 * Lookup287: frame_support::traits::schedule::MaybeHashed<opal_runtime::RuntimeCall, primitive_types::H256>2495 **/2496 FrameSupportScheduleMaybeHashed: {2497 _enum: {2498 Value: 'Call',2499 Hash: 'H256'2500 }2501 },2502 /**2511 /**2503 * Lookup288: pallet_configuration::pallet::Call<T>2512 * Lookup287: pallet_configuration::pallet::Call<T>2504 **/2513 **/2505 PalletConfigurationCall: {2514 PalletConfigurationCall: {2506 _enum: {2515 _enum: {2507 set_weight_to_fee_coefficient_override: {2516 set_weight_to_fee_coefficient_override: {2512 }2521 }2513 }2522 }2514 },2523 },2515 /**2524 /**2516 * Lookup290: pallet_template_transaction_payment::Call<T>2525 * Lookup289: pallet_template_transaction_payment::Call<T>2517 **/2526 **/2518 PalletTemplateTransactionPaymentCall: 'Null',2527 PalletTemplateTransactionPaymentCall: 'Null',2519 /**2528 /**2520 * Lookup291: pallet_structure::pallet::Call<T>2529 * Lookup290: pallet_structure::pallet::Call<T>2521 **/2530 **/2522 PalletStructureCall: 'Null',2531 PalletStructureCall: 'Null',2523 /**2532 /**2524 * Lookup292: pallet_rmrk_core::pallet::Call<T>2533 * Lookup291: pallet_rmrk_core::pallet::Call<T>2525 **/2534 **/2526 PalletRmrkCoreCall: {2535 PalletRmrkCoreCall: {2527 _enum: {2536 _enum: {2528 create_collection: {2537 create_collection: {2611 }2620 }2612 }2621 }2613 },2622 },2614 /**2623 /**2615 * Lookup298: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2624 * Lookup297: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2616 **/2625 **/2617 RmrkTraitsResourceResourceTypes: {2626 RmrkTraitsResourceResourceTypes: {2618 _enum: {2627 _enum: {2619 Basic: 'RmrkTraitsResourceBasicResource',2628 Basic: 'RmrkTraitsResourceBasicResource',2620 Composable: 'RmrkTraitsResourceComposableResource',2629 Composable: 'RmrkTraitsResourceComposableResource',2621 Slot: 'RmrkTraitsResourceSlotResource'2630 Slot: 'RmrkTraitsResourceSlotResource'2622 }2631 }2623 },2632 },2624 /**2633 /**2625 * Lookup300: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2634 * Lookup299: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2626 **/2635 **/2627 RmrkTraitsResourceBasicResource: {2636 RmrkTraitsResourceBasicResource: {2628 src: 'Option<Bytes>',2637 src: 'Option<Bytes>',2629 metadata: 'Option<Bytes>',2638 metadata: 'Option<Bytes>',2630 license: 'Option<Bytes>',2639 license: 'Option<Bytes>',2631 thumb: 'Option<Bytes>'2640 thumb: 'Option<Bytes>'2632 },2641 },2633 /**2642 /**2634 * Lookup302: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2643 * Lookup301: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2635 **/2644 **/2636 RmrkTraitsResourceComposableResource: {2645 RmrkTraitsResourceComposableResource: {2637 parts: 'Vec<u32>',2646 parts: 'Vec<u32>',2638 base: 'u32',2647 base: 'u32',2641 license: 'Option<Bytes>',2650 license: 'Option<Bytes>',2642 thumb: 'Option<Bytes>'2651 thumb: 'Option<Bytes>'2643 },2652 },2644 /**2653 /**2645 * Lookup303: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2654 * Lookup302: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2646 **/2655 **/2647 RmrkTraitsResourceSlotResource: {2656 RmrkTraitsResourceSlotResource: {2648 base: 'u32',2657 base: 'u32',2649 src: 'Option<Bytes>',2658 src: 'Option<Bytes>',2652 license: 'Option<Bytes>',2661 license: 'Option<Bytes>',2653 thumb: 'Option<Bytes>'2662 thumb: 'Option<Bytes>'2654 },2663 },2655 /**2664 /**2656 * Lookup306: pallet_rmrk_equip::pallet::Call<T>2665 * Lookup305: pallet_rmrk_equip::pallet::Call<T>2657 **/2666 **/2658 PalletRmrkEquipCall: {2667 PalletRmrkEquipCall: {2659 _enum: {2668 _enum: {2660 create_base: {2669 create_base: {2673 }2682 }2674 }2683 }2675 },2684 },2676 /**2685 /**2677 * Lookup309: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2686 * Lookup308: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2678 **/2687 **/2679 RmrkTraitsPartPartType: {2688 RmrkTraitsPartPartType: {2680 _enum: {2689 _enum: {2681 FixedPart: 'RmrkTraitsPartFixedPart',2690 FixedPart: 'RmrkTraitsPartFixedPart',2682 SlotPart: 'RmrkTraitsPartSlotPart'2691 SlotPart: 'RmrkTraitsPartSlotPart'2683 }2692 }2684 },2693 },2685 /**2694 /**2686 * Lookup311: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2695 * Lookup310: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2687 **/2696 **/2688 RmrkTraitsPartFixedPart: {2697 RmrkTraitsPartFixedPart: {2689 id: 'u32',2698 id: 'u32',2690 z: 'u32',2699 z: 'u32',2691 src: 'Bytes'2700 src: 'Bytes'2692 },2701 },2693 /**2702 /**2694 * Lookup312: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2703 * Lookup311: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2695 **/2704 **/2696 RmrkTraitsPartSlotPart: {2705 RmrkTraitsPartSlotPart: {2697 id: 'u32',2706 id: 'u32',2698 equippable: 'RmrkTraitsPartEquippableList',2707 equippable: 'RmrkTraitsPartEquippableList',2699 src: 'Bytes',2708 src: 'Bytes',2700 z: 'u32'2709 z: 'u32'2701 },2710 },2702 /**2711 /**2703 * Lookup313: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2712 * Lookup312: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2704 **/2713 **/2705 RmrkTraitsPartEquippableList: {2714 RmrkTraitsPartEquippableList: {2706 _enum: {2715 _enum: {2707 All: 'Null',2716 All: 'Null',2708 Empty: 'Null',2717 Empty: 'Null',2709 Custom: 'Vec<u32>'2718 Custom: 'Vec<u32>'2710 }2719 }2711 },2720 },2712 /**2721 /**2713 * 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>>2722 * 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>>2714 **/2723 **/2715 RmrkTraitsTheme: {2724 RmrkTraitsTheme: {2716 name: 'Bytes',2725 name: 'Bytes',2717 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2726 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2718 inherit: 'bool'2727 inherit: 'bool'2719 },2728 },2720 /**2729 /**2721 * Lookup317: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2730 * Lookup316: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2722 **/2731 **/2723 RmrkTraitsThemeThemeProperty: {2732 RmrkTraitsThemeThemeProperty: {2724 key: 'Bytes',2733 key: 'Bytes',2725 value: 'Bytes'2734 value: 'Bytes'2726 },2735 },2727 /**2736 /**2728 * Lookup319: pallet_app_promotion::pallet::Call<T>2737 * Lookup318: pallet_app_promotion::pallet::Call<T>2729 **/2738 **/2730 PalletAppPromotionCall: {2739 PalletAppPromotionCall: {2731 _enum: {2740 _enum: {2732 set_admin_address: {2741 set_admin_address: {2753 }2762 }2754 }2763 }2755 },2764 },2756 /**2765 /**2757 * Lookup320: pallet_foreign_assets::module::Call<T>2766 * Lookup319: pallet_foreign_assets::module::Call<T>2758 **/2767 **/2759 PalletForeignAssetsModuleCall: {2768 PalletForeignAssetsModuleCall: {2760 _enum: {2769 _enum: {2761 register_foreign_asset: {2770 register_foreign_asset: {2770 }2779 }2771 }2780 }2772 },2781 },2773 /**2782 /**2774 * Lookup321: pallet_evm::pallet::Call<T>2783 * Lookup320: pallet_evm::pallet::Call<T>2775 **/2784 **/2776 PalletEvmCall: {2785 PalletEvmCall: {2777 _enum: {2786 _enum: {2778 withdraw: {2787 withdraw: {2813 }2822 }2814 }2823 }2815 },2824 },2816 /**2825 /**2817 * Lookup327: pallet_ethereum::pallet::Call<T>2826 * Lookup326: pallet_ethereum::pallet::Call<T>2818 **/2827 **/2819 PalletEthereumCall: {2828 PalletEthereumCall: {2820 _enum: {2829 _enum: {2821 transact: {2830 transact: {2822 transaction: 'EthereumTransactionTransactionV2'2831 transaction: 'EthereumTransactionTransactionV2'2823 }2832 }2824 }2833 }2825 },2834 },2826 /**2835 /**2827 * Lookup328: ethereum::transaction::TransactionV22836 * Lookup327: ethereum::transaction::TransactionV22828 **/2837 **/2829 EthereumTransactionTransactionV2: {2838 EthereumTransactionTransactionV2: {2830 _enum: {2839 _enum: {2831 Legacy: 'EthereumTransactionLegacyTransaction',2840 Legacy: 'EthereumTransactionLegacyTransaction',2832 EIP2930: 'EthereumTransactionEip2930Transaction',2841 EIP2930: 'EthereumTransactionEip2930Transaction',2833 EIP1559: 'EthereumTransactionEip1559Transaction'2842 EIP1559: 'EthereumTransactionEip1559Transaction'2834 }2843 }2835 },2844 },2836 /**2845 /**2837 * Lookup329: ethereum::transaction::LegacyTransaction2846 * Lookup328: ethereum::transaction::LegacyTransaction2838 **/2847 **/2839 EthereumTransactionLegacyTransaction: {2848 EthereumTransactionLegacyTransaction: {2840 nonce: 'U256',2849 nonce: 'U256',2841 gasPrice: 'U256',2850 gasPrice: 'U256',2845 input: 'Bytes',2854 input: 'Bytes',2846 signature: 'EthereumTransactionTransactionSignature'2855 signature: 'EthereumTransactionTransactionSignature'2847 },2856 },2848 /**2857 /**2849 * Lookup330: ethereum::transaction::TransactionAction2858 * Lookup329: ethereum::transaction::TransactionAction2850 **/2859 **/2851 EthereumTransactionTransactionAction: {2860 EthereumTransactionTransactionAction: {2852 _enum: {2861 _enum: {2853 Call: 'H160',2862 Call: 'H160',2854 Create: 'Null'2863 Create: 'Null'2855 }2864 }2856 },2865 },2857 /**2866 /**2858 * Lookup331: ethereum::transaction::TransactionSignature2867 * Lookup330: ethereum::transaction::TransactionSignature2859 **/2868 **/2860 EthereumTransactionTransactionSignature: {2869 EthereumTransactionTransactionSignature: {2861 v: 'u64',2870 v: 'u64',2862 r: 'H256',2871 r: 'H256',2863 s: 'H256'2872 s: 'H256'2864 },2873 },2865 /**2874 /**2866 * Lookup333: ethereum::transaction::EIP2930Transaction2875 * Lookup332: ethereum::transaction::EIP2930Transaction2867 **/2876 **/2868 EthereumTransactionEip2930Transaction: {2877 EthereumTransactionEip2930Transaction: {2869 chainId: 'u64',2878 chainId: 'u64',2870 nonce: 'U256',2879 nonce: 'U256',2878 r: 'H256',2887 r: 'H256',2879 s: 'H256'2888 s: 'H256'2880 },2889 },2881 /**2890 /**2882 * Lookup335: ethereum::transaction::AccessListItem2891 * Lookup334: ethereum::transaction::AccessListItem2883 **/2892 **/2884 EthereumTransactionAccessListItem: {2893 EthereumTransactionAccessListItem: {2885 address: 'H160',2894 address: 'H160',2886 storageKeys: 'Vec<H256>'2895 storageKeys: 'Vec<H256>'2887 },2896 },2888 /**2897 /**2889 * Lookup336: ethereum::transaction::EIP1559Transaction2898 * Lookup335: ethereum::transaction::EIP1559Transaction2890 **/2899 **/2891 EthereumTransactionEip1559Transaction: {2900 EthereumTransactionEip1559Transaction: {2892 chainId: 'u64',2901 chainId: 'u64',2893 nonce: 'U256',2902 nonce: 'U256',2902 r: 'H256',2911 r: 'H256',2903 s: 'H256'2912 s: 'H256'2904 },2913 },2905 /**2914 /**2906 * Lookup337: pallet_evm_migration::pallet::Call<T>2915 * Lookup336: pallet_evm_migration::pallet::Call<T>2907 **/2916 **/2908 PalletEvmMigrationCall: {2917 PalletEvmMigrationCall: {2909 _enum: {2918 _enum: {2910 begin: {2919 begin: {2917 finish: {2926 finish: {2918 address: 'H160',2927 address: 'H160',2919 code: 'Bytes'2928 code: 'Bytes',2920 }2929 },2930 insert_eth_logs: {2931 logs: 'Vec<EthereumLog>',2932 },2933 insert_events: {2934 events: 'Vec<Bytes>'2935 }2921 }2936 }2922 },2937 },2923 /**2938 /**2940 },2955 },2941 inc_test_value: 'Null',2956 inc_test_value: 'Null',2942 self_canceling_inc: {2957 self_canceling_inc: {2943 id: '[u8;16]',2958 id: '[u8;32]',2944 maxTestValue: 'u32',2959 maxTestValue: 'u32',2945 },2960 },2946 just_take_fee: 'Null'2961 just_take_fee: 'Null',2962 batch_all: {2963 calls: 'Vec<Call>'2964 }2947 }2965 }2948 },2966 },2949 /**2967 /**2950 * Lookup342: pallet_sudo::pallet::Error<T>2968 * Lookup343: pallet_sudo::pallet::Error<T>2951 **/2969 **/2952 PalletSudoError: {2970 PalletSudoError: {2953 _enum: ['RequireSudo']2971 _enum: ['RequireSudo']2954 },2972 },2955 /**2973 /**2956 * Lookup344: orml_vesting::module::Error<T>2974 * Lookup345: orml_vesting::module::Error<T>2957 **/2975 **/2958 OrmlVestingModuleError: {2976 OrmlVestingModuleError: {2959 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2977 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2960 },2978 },2961 /**2979 /**2962 * Lookup345: orml_xtokens::module::Error<T>2980 * Lookup346: orml_xtokens::module::Error<T>2963 **/2981 **/2964 OrmlXtokensModuleError: {2982 OrmlXtokensModuleError: {2965 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2983 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2966 },2984 },2967 /**2985 /**2968 * Lookup348: orml_tokens::BalanceLock<Balance>2986 * Lookup349: orml_tokens::BalanceLock<Balance>2969 **/2987 **/2970 OrmlTokensBalanceLock: {2988 OrmlTokensBalanceLock: {2971 id: '[u8;8]',2989 id: '[u8;8]',2972 amount: 'u128'2990 amount: 'u128'2973 },2991 },2974 /**2992 /**2975 * Lookup350: orml_tokens::AccountData<Balance>2993 * Lookup351: orml_tokens::AccountData<Balance>2976 **/2994 **/2977 OrmlTokensAccountData: {2995 OrmlTokensAccountData: {2978 free: 'u128',2996 free: 'u128',2979 reserved: 'u128',2997 reserved: 'u128',2980 frozen: 'u128'2998 frozen: 'u128'2981 },2999 },2982 /**3000 /**2983 * Lookup352: orml_tokens::ReserveData<ReserveIdentifier, Balance>3001 * Lookup353: orml_tokens::ReserveData<ReserveIdentifier, Balance>2984 **/3002 **/2985 OrmlTokensReserveData: {3003 OrmlTokensReserveData: {2986 id: 'Null',3004 id: 'Null',2987 amount: 'u128'3005 amount: 'u128'2988 },3006 },2989 /**3007 /**2990 * Lookup354: orml_tokens::module::Error<T>3008 * Lookup355: orml_tokens::module::Error<T>2991 **/3009 **/2992 OrmlTokensModuleError: {3010 OrmlTokensModuleError: {2993 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']3011 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']2994 },3012 },2995 /**3013 /**2996 * Lookup356: cumulus_pallet_xcmp_queue::InboundChannelDetails3014 * Lookup357: cumulus_pallet_xcmp_queue::InboundChannelDetails2997 **/3015 **/2998 CumulusPalletXcmpQueueInboundChannelDetails: {3016 CumulusPalletXcmpQueueInboundChannelDetails: {2999 sender: 'u32',3017 sender: 'u32',3000 state: 'CumulusPalletXcmpQueueInboundState',3018 state: 'CumulusPalletXcmpQueueInboundState',3001 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'3019 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'3002 },3020 },3003 /**3021 /**3004 * Lookup357: cumulus_pallet_xcmp_queue::InboundState3022 * Lookup358: cumulus_pallet_xcmp_queue::InboundState3005 **/3023 **/3006 CumulusPalletXcmpQueueInboundState: {3024 CumulusPalletXcmpQueueInboundState: {3007 _enum: ['Ok', 'Suspended']3025 _enum: ['Ok', 'Suspended']3008 },3026 },3009 /**3027 /**3010 * Lookup360: polkadot_parachain::primitives::XcmpMessageFormat3028 * Lookup361: polkadot_parachain::primitives::XcmpMessageFormat3011 **/3029 **/3012 PolkadotParachainPrimitivesXcmpMessageFormat: {3030 PolkadotParachainPrimitivesXcmpMessageFormat: {3013 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3031 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3014 },3032 },3015 /**3033 /**3016 * Lookup363: cumulus_pallet_xcmp_queue::OutboundChannelDetails3034 * Lookup364: cumulus_pallet_xcmp_queue::OutboundChannelDetails3017 **/3035 **/3018 CumulusPalletXcmpQueueOutboundChannelDetails: {3036 CumulusPalletXcmpQueueOutboundChannelDetails: {3019 recipient: 'u32',3037 recipient: 'u32',3020 state: 'CumulusPalletXcmpQueueOutboundState',3038 state: 'CumulusPalletXcmpQueueOutboundState',3021 signalsExist: 'bool',3039 signalsExist: 'bool',3022 firstIndex: 'u16',3040 firstIndex: 'u16',3023 lastIndex: 'u16'3041 lastIndex: 'u16'3024 },3042 },3025 /**3043 /**3026 * Lookup364: cumulus_pallet_xcmp_queue::OutboundState3044 * Lookup365: cumulus_pallet_xcmp_queue::OutboundState3027 **/3045 **/3028 CumulusPalletXcmpQueueOutboundState: {3046 CumulusPalletXcmpQueueOutboundState: {3029 _enum: ['Ok', 'Suspended']3047 _enum: ['Ok', 'Suspended']3030 },3048 },3031 /**3049 /**3032 * Lookup366: cumulus_pallet_xcmp_queue::QueueConfigData3050 * Lookup367: cumulus_pallet_xcmp_queue::QueueConfigData3033 **/3051 **/3034 CumulusPalletXcmpQueueQueueConfigData: {3052 CumulusPalletXcmpQueueQueueConfigData: {3035 suspendThreshold: 'u32',3053 suspendThreshold: 'u32',3036 dropThreshold: 'u32',3054 dropThreshold: 'u32',3039 weightRestrictDecay: 'Weight',3057 weightRestrictDecay: 'Weight',3040 xcmpMaxIndividualWeight: 'Weight'3058 xcmpMaxIndividualWeight: 'Weight'3041 },3059 },3042 /**3060 /**3043 * Lookup368: cumulus_pallet_xcmp_queue::pallet::Error<T>3061 * Lookup369: cumulus_pallet_xcmp_queue::pallet::Error<T>3044 **/3062 **/3045 CumulusPalletXcmpQueueError: {3063 CumulusPalletXcmpQueueError: {3046 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3064 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3047 },3065 },3048 /**3066 /**3049 * Lookup369: pallet_xcm::pallet::Error<T>3067 * Lookup370: pallet_xcm::pallet::Error<T>3050 **/3068 **/3051 PalletXcmError: {3069 PalletXcmError: {3052 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3070 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3053 },3071 },3054 /**3072 /**3055 * Lookup370: cumulus_pallet_xcm::pallet::Error<T>3073 * Lookup371: cumulus_pallet_xcm::pallet::Error<T>3056 **/3074 **/3057 CumulusPalletXcmError: 'Null',3075 CumulusPalletXcmError: 'Null',3058 /**3076 /**3059 * Lookup371: cumulus_pallet_dmp_queue::ConfigData3077 * Lookup372: cumulus_pallet_dmp_queue::ConfigData3060 **/3078 **/3061 CumulusPalletDmpQueueConfigData: {3079 CumulusPalletDmpQueueConfigData: {3062 maxIndividual: 'Weight'3080 maxIndividual: 'Weight'3063 },3081 },3064 /**3082 /**3065 * Lookup372: cumulus_pallet_dmp_queue::PageIndexData3083 * Lookup373: cumulus_pallet_dmp_queue::PageIndexData3066 **/3084 **/3067 CumulusPalletDmpQueuePageIndexData: {3085 CumulusPalletDmpQueuePageIndexData: {3068 beginUsed: 'u32',3086 beginUsed: 'u32',3069 endUsed: 'u32',3087 endUsed: 'u32',3070 overweightCount: 'u64'3088 overweightCount: 'u64'3071 },3089 },3072 /**3090 /**3073 * Lookup375: cumulus_pallet_dmp_queue::pallet::Error<T>3091 * Lookup376: cumulus_pallet_dmp_queue::pallet::Error<T>3074 **/3092 **/3075 CumulusPalletDmpQueueError: {3093 CumulusPalletDmpQueueError: {3076 _enum: ['Unknown', 'OverLimit']3094 _enum: ['Unknown', 'OverLimit']3077 },3095 },3078 /**3096 /**3079 * Lookup379: pallet_unique::Error<T>3097 * Lookup380: pallet_unique::Error<T>3080 **/3098 **/3081 PalletUniqueError: {3099 PalletUniqueError: {3082 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3100 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3083 },3101 },3102 /**3103 * Lookup381: pallet_unique_scheduler_v2::BlockAgenda<T>3104 **/3105 PalletUniqueSchedulerV2BlockAgenda: {3106 agenda: 'Vec<Option<PalletUniqueSchedulerV2Scheduled>>',3107 freePlaces: 'u32'3108 },3084 /**3109 /**3085 * Lookup382: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::RuntimeCall, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>3110 * Lookup384: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>3086 **/3111 **/3087 PalletUniqueSchedulerScheduledV3: {3112 PalletUniqueSchedulerV2Scheduled: {3088 maybeId: 'Option<[u8;16]>',3113 maybeId: 'Option<[u8;32]>',3089 priority: 'u8',3114 priority: 'u8',3090 call: 'FrameSupportScheduleMaybeHashed',3115 call: 'PalletUniqueSchedulerV2ScheduledCall',3091 maybePeriodic: 'Option<(u32,u32)>',3116 maybePeriodic: 'Option<(u32,u32)>',3092 origin: 'OpalRuntimeOriginCaller'3117 origin: 'OpalRuntimeOriginCaller'3093 },3118 },3119 /**3120 * Lookup385: pallet_unique_scheduler_v2::ScheduledCall<T>3121 **/3122 PalletUniqueSchedulerV2ScheduledCall: {3123 _enum: {3124 Inline: 'Bytes',3125 PreimageLookup: {3126 _alias: {3127 hash_: 'hash',3128 },3129 hash_: 'H256',3130 unboundedLen: 'u32'3131 }3132 }3133 },3094 /**3134 /**3095 * Lookup383: opal_runtime::OriginCaller3135 * Lookup387: opal_runtime::OriginCaller3096 **/3136 **/3097 OpalRuntimeOriginCaller: {3137 OpalRuntimeOriginCaller: {3098 _enum: {3138 _enum: {3099 system: 'FrameSupportDispatchRawOrigin',3139 system: 'FrameSupportDispatchRawOrigin',3200 Ethereum: 'PalletEthereumRawOrigin'3240 Ethereum: 'PalletEthereumRawOrigin'3201 }3241 }3202 },3242 },3203 /**3243 /**3204 * Lookup384: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>3244 * Lookup388: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>3205 **/3245 **/3206 FrameSupportDispatchRawOrigin: {3246 FrameSupportDispatchRawOrigin: {3207 _enum: {3247 _enum: {3208 Root: 'Null',3248 Root: 'Null',3209 Signed: 'AccountId32',3249 Signed: 'AccountId32',3210 None: 'Null'3250 None: 'Null'3211 }3251 }3212 },3252 },3213 /**3253 /**3214 * Lookup385: pallet_xcm::pallet::Origin3254 * Lookup389: pallet_xcm::pallet::Origin3215 **/3255 **/3216 PalletXcmOrigin: {3256 PalletXcmOrigin: {3217 _enum: {3257 _enum: {3218 Xcm: 'XcmV1MultiLocation',3258 Xcm: 'XcmV1MultiLocation',3219 Response: 'XcmV1MultiLocation'3259 Response: 'XcmV1MultiLocation'3220 }3260 }3221 },3261 },3222 /**3262 /**3223 * Lookup386: cumulus_pallet_xcm::pallet::Origin3263 * Lookup390: cumulus_pallet_xcm::pallet::Origin3224 **/3264 **/3225 CumulusPalletXcmOrigin: {3265 CumulusPalletXcmOrigin: {3226 _enum: {3266 _enum: {3227 Relay: 'Null',3267 Relay: 'Null',3228 SiblingParachain: 'u32'3268 SiblingParachain: 'u32'3229 }3269 }3230 },3270 },3231 /**3271 /**3232 * Lookup387: pallet_ethereum::RawOrigin3272 * Lookup391: pallet_ethereum::RawOrigin3233 **/3273 **/3234 PalletEthereumRawOrigin: {3274 PalletEthereumRawOrigin: {3235 _enum: {3275 _enum: {3236 EthereumTransaction: 'H160'3276 EthereumTransaction: 'H160'3237 }3277 }3238 },3278 },3239 /**3279 /**3240 * Lookup388: sp_core::Void3280 * Lookup392: sp_core::Void3241 **/3281 **/3242 SpCoreVoid: 'Null',3282 SpCoreVoid: 'Null',3243 /**3283 /**3244 * Lookup389: pallet_unique_scheduler::pallet::Error<T>3284 * Lookup394: pallet_unique_scheduler_v2::pallet::Error<T>3245 **/3285 **/3246 PalletUniqueSchedulerError: {3286 PalletUniqueSchedulerV2Error: {3247 _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']3287 _enum: ['FailedToSchedule', 'AgendaIsExhausted', 'ScheduledCallCorrupted', 'PreimageNotFound', 'TooBigScheduledCall', 'NotFound', 'TargetBlockNumberInPast', 'Named']3248 },3288 },3249 /**3289 /**3250 * Lookup390: up_data_structs::Collection<sp_core::crypto::AccountId32>3290 * Lookup395: up_data_structs::Collection<sp_core::crypto::AccountId32>3251 **/3291 **/3252 UpDataStructsCollection: {3292 UpDataStructsCollection: {3253 owner: 'AccountId32',3293 owner: 'AccountId32',3254 mode: 'UpDataStructsCollectionMode',3294 mode: 'UpDataStructsCollectionMode',3260 permissions: 'UpDataStructsCollectionPermissions',3300 permissions: 'UpDataStructsCollectionPermissions',3261 flags: '[u8;1]'3301 flags: '[u8;1]'3262 },3302 },3263 /**3303 /**3264 * Lookup391: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3304 * Lookup396: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3265 **/3305 **/3266 UpDataStructsSponsorshipStateAccountId32: {3306 UpDataStructsSponsorshipStateAccountId32: {3267 _enum: {3307 _enum: {3268 Disabled: 'Null',3308 Disabled: 'Null',3269 Unconfirmed: 'AccountId32',3309 Unconfirmed: 'AccountId32',3270 Confirmed: 'AccountId32'3310 Confirmed: 'AccountId32'3271 }3311 }3272 },3312 },3273 /**3313 /**3274 * Lookup393: up_data_structs::Properties3314 * Lookup398: up_data_structs::Properties3275 **/3315 **/3276 UpDataStructsProperties: {3316 UpDataStructsProperties: {3277 map: 'UpDataStructsPropertiesMapBoundedVec',3317 map: 'UpDataStructsPropertiesMapBoundedVec',3278 consumedSpace: 'u32',3318 consumedSpace: 'u32',3279 spaceLimit: 'u32'3319 spaceLimit: 'u32'3280 },3320 },3281 /**3321 /**3282 * Lookup394: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3322 * Lookup399: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3283 **/3323 **/3284 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3324 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3285 /**3325 /**3286 * Lookup399: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3326 * Lookup404: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3287 **/3327 **/3288 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3328 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3289 /**3329 /**3290 * Lookup406: up_data_structs::CollectionStats3330 * Lookup411: up_data_structs::CollectionStats3291 **/3331 **/3292 UpDataStructsCollectionStats: {3332 UpDataStructsCollectionStats: {3293 created: 'u32',3333 created: 'u32',3294 destroyed: 'u32',3334 destroyed: 'u32',3295 alive: 'u32'3335 alive: 'u32'3296 },3336 },3297 /**3337 /**3298 * Lookup407: up_data_structs::TokenChild3338 * Lookup412: up_data_structs::TokenChild3299 **/3339 **/3300 UpDataStructsTokenChild: {3340 UpDataStructsTokenChild: {3301 token: 'u32',3341 token: 'u32',3302 collection: 'u32'3342 collection: 'u32'3303 },3343 },3304 /**3344 /**3305 * Lookup408: PhantomType::up_data_structs<T>3345 * Lookup413: PhantomType::up_data_structs<T>3306 **/3346 **/3307 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3347 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3308 /**3348 /**3309 * Lookup410: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3349 * Lookup415: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3310 **/3350 **/3311 UpDataStructsTokenData: {3351 UpDataStructsTokenData: {3312 properties: 'Vec<UpDataStructsProperty>',3352 properties: 'Vec<UpDataStructsProperty>',3313 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3353 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3314 pieces: 'u128'3354 pieces: 'u128'3315 },3355 },3316 /**3356 /**3317 * Lookup412: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3357 * Lookup417: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3318 **/3358 **/3319 UpDataStructsRpcCollection: {3359 UpDataStructsRpcCollection: {3320 owner: 'AccountId32',3360 owner: 'AccountId32',3321 mode: 'UpDataStructsCollectionMode',3361 mode: 'UpDataStructsCollectionMode',3330 readOnly: 'bool',3370 readOnly: 'bool',3331 flags: 'UpDataStructsRpcCollectionFlags'3371 flags: 'UpDataStructsRpcCollectionFlags'3332 },3372 },3333 /**3373 /**3334 * Lookup413: up_data_structs::RpcCollectionFlags3374 * Lookup418: up_data_structs::RpcCollectionFlags3335 **/3375 **/3336 UpDataStructsRpcCollectionFlags: {3376 UpDataStructsRpcCollectionFlags: {3337 foreign: 'bool',3377 foreign: 'bool',3338 erc721metadata: 'bool'3378 erc721metadata: 'bool'3339 },3379 },3340 /**3380 /**3341 * 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>3381 * 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>3342 **/3382 **/3343 RmrkTraitsCollectionCollectionInfo: {3383 RmrkTraitsCollectionCollectionInfo: {3344 issuer: 'AccountId32',3384 issuer: 'AccountId32',3345 metadata: 'Bytes',3385 metadata: 'Bytes',3346 max: 'Option<u32>',3386 max: 'Option<u32>',3347 symbol: 'Bytes',3387 symbol: 'Bytes',3348 nftsCount: 'u32'3388 nftsCount: 'u32'3349 },3389 },3350 /**3390 /**3351 * Lookup415: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3391 * Lookup420: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3352 **/3392 **/3353 RmrkTraitsNftNftInfo: {3393 RmrkTraitsNftNftInfo: {3354 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3394 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3355 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3395 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3356 metadata: 'Bytes',3396 metadata: 'Bytes',3357 equipped: 'bool',3397 equipped: 'bool',3358 pending: 'bool'3398 pending: 'bool'3359 },3399 },3360 /**3400 /**3361 * Lookup417: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3401 * Lookup422: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3362 **/3402 **/3363 RmrkTraitsNftRoyaltyInfo: {3403 RmrkTraitsNftRoyaltyInfo: {3364 recipient: 'AccountId32',3404 recipient: 'AccountId32',3365 amount: 'Permill'3405 amount: 'Permill'3366 },3406 },3367 /**3407 /**3368 * Lookup418: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3408 * Lookup423: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3369 **/3409 **/3370 RmrkTraitsResourceResourceInfo: {3410 RmrkTraitsResourceResourceInfo: {3371 id: 'u32',3411 id: 'u32',3372 resource: 'RmrkTraitsResourceResourceTypes',3412 resource: 'RmrkTraitsResourceResourceTypes',3373 pending: 'bool',3413 pending: 'bool',3374 pendingRemoval: 'bool'3414 pendingRemoval: 'bool'3375 },3415 },3376 /**3416 /**3377 * Lookup419: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3417 * Lookup424: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3378 **/3418 **/3379 RmrkTraitsPropertyPropertyInfo: {3419 RmrkTraitsPropertyPropertyInfo: {3380 key: 'Bytes',3420 key: 'Bytes',3381 value: 'Bytes'3421 value: 'Bytes'3382 },3422 },3383 /**3423 /**3384 * Lookup420: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3424 * Lookup425: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3385 **/3425 **/3386 RmrkTraitsBaseBaseInfo: {3426 RmrkTraitsBaseBaseInfo: {3387 issuer: 'AccountId32',3427 issuer: 'AccountId32',3388 baseType: 'Bytes',3428 baseType: 'Bytes',3389 symbol: 'Bytes'3429 symbol: 'Bytes'3390 },3430 },3391 /**3431 /**3392 * Lookup421: rmrk_traits::nft::NftChild3432 * Lookup426: rmrk_traits::nft::NftChild3393 **/3433 **/3394 RmrkTraitsNftNftChild: {3434 RmrkTraitsNftNftChild: {3395 collectionId: 'u32',3435 collectionId: 'u32',3396 nftId: 'u32'3436 nftId: 'u32'3397 },3437 },3398 /**3438 /**3399 * Lookup423: pallet_common::pallet::Error<T>3439 * Lookup428: pallet_common::pallet::Error<T>3400 **/3440 **/3401 PalletCommonError: {3441 PalletCommonError: {3402 _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']3442 _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']3403 },3443 },3404 /**3444 /**3405 * Lookup425: pallet_fungible::pallet::Error<T>3445 * Lookup430: pallet_fungible::pallet::Error<T>3406 **/3446 **/3407 PalletFungibleError: {3447 PalletFungibleError: {3408 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3448 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3409 },3449 },3410 /**3450 /**3411 * Lookup426: pallet_refungible::ItemData3451 * Lookup431: pallet_refungible::ItemData3412 **/3452 **/3413 PalletRefungibleItemData: {3453 PalletRefungibleItemData: {3414 constData: 'Bytes'3454 constData: 'Bytes'3415 },3455 },3416 /**3456 /**3417 * Lookup431: pallet_refungible::pallet::Error<T>3457 * Lookup436: pallet_refungible::pallet::Error<T>3418 **/3458 **/3419 PalletRefungibleError: {3459 PalletRefungibleError: {3420 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3460 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3421 },3461 },3422 /**3462 /**3423 * Lookup432: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3463 * Lookup437: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3424 **/3464 **/3425 PalletNonfungibleItemData: {3465 PalletNonfungibleItemData: {3426 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3466 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3427 },3467 },3428 /**3468 /**3429 * Lookup434: up_data_structs::PropertyScope3469 * Lookup439: up_data_structs::PropertyScope3430 **/3470 **/3431 UpDataStructsPropertyScope: {3471 UpDataStructsPropertyScope: {3432 _enum: ['None', 'Rmrk']3472 _enum: ['None', 'Rmrk']3433 },3473 },3434 /**3474 /**3435 * Lookup436: pallet_nonfungible::pallet::Error<T>3475 * Lookup441: pallet_nonfungible::pallet::Error<T>3436 **/3476 **/3437 PalletNonfungibleError: {3477 PalletNonfungibleError: {3438 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3478 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3439 },3479 },3440 /**3480 /**3441 * Lookup437: pallet_structure::pallet::Error<T>3481 * Lookup442: pallet_structure::pallet::Error<T>3442 **/3482 **/3443 PalletStructureError: {3483 PalletStructureError: {3444 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3484 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3445 },3485 },3446 /**3486 /**3447 * Lookup438: pallet_rmrk_core::pallet::Error<T>3487 * Lookup443: pallet_rmrk_core::pallet::Error<T>3448 **/3488 **/3449 PalletRmrkCoreError: {3489 PalletRmrkCoreError: {3450 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3490 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3451 },3491 },3452 /**3492 /**3453 * Lookup440: pallet_rmrk_equip::pallet::Error<T>3493 * Lookup445: pallet_rmrk_equip::pallet::Error<T>3454 **/3494 **/3455 PalletRmrkEquipError: {3495 PalletRmrkEquipError: {3456 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3496 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3457 },3497 },3458 /**3498 /**3459 * Lookup446: pallet_app_promotion::pallet::Error<T>3499 * Lookup451: pallet_app_promotion::pallet::Error<T>3460 **/3500 **/3461 PalletAppPromotionError: {3501 PalletAppPromotionError: {3462 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3502 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3463 },3503 },3464 /**3504 /**3465 * Lookup447: pallet_foreign_assets::module::Error<T>3505 * Lookup452: pallet_foreign_assets::module::Error<T>3466 **/3506 **/3467 PalletForeignAssetsModuleError: {3507 PalletForeignAssetsModuleError: {3468 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3508 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3469 },3509 },3470 /**3510 /**3471 * Lookup450: pallet_evm::pallet::Error<T>3511 * Lookup454: pallet_evm::pallet::Error<T>3472 **/3512 **/3473 PalletEvmError: {3513 PalletEvmError: {3474 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']3514 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']3475 },3515 },3476 /**3516 /**3477 * Lookup453: fp_rpc::TransactionStatus3517 * Lookup457: fp_rpc::TransactionStatus3478 **/3518 **/3479 FpRpcTransactionStatus: {3519 FpRpcTransactionStatus: {3480 transactionHash: 'H256',3520 transactionHash: 'H256',3481 transactionIndex: 'u32',3521 transactionIndex: 'u32',3485 logs: 'Vec<EthereumLog>',3525 logs: 'Vec<EthereumLog>',3486 logsBloom: 'EthbloomBloom'3526 logsBloom: 'EthbloomBloom'3487 },3527 },3488 /**3528 /**3489 * Lookup455: ethbloom::Bloom3529 * Lookup459: ethbloom::Bloom3490 **/3530 **/3491 EthbloomBloom: '[u8;256]',3531 EthbloomBloom: '[u8;256]',3492 /**3532 /**3493 * Lookup457: ethereum::receipt::ReceiptV33533 * Lookup461: ethereum::receipt::ReceiptV33494 **/3534 **/3495 EthereumReceiptReceiptV3: {3535 EthereumReceiptReceiptV3: {3496 _enum: {3536 _enum: {3497 Legacy: 'EthereumReceiptEip658ReceiptData',3537 Legacy: 'EthereumReceiptEip658ReceiptData',3498 EIP2930: 'EthereumReceiptEip658ReceiptData',3538 EIP2930: 'EthereumReceiptEip658ReceiptData',3499 EIP1559: 'EthereumReceiptEip658ReceiptData'3539 EIP1559: 'EthereumReceiptEip658ReceiptData'3500 }3540 }3501 },3541 },3502 /**3542 /**3503 * Lookup458: ethereum::receipt::EIP658ReceiptData3543 * Lookup462: ethereum::receipt::EIP658ReceiptData3504 **/3544 **/3505 EthereumReceiptEip658ReceiptData: {3545 EthereumReceiptEip658ReceiptData: {3506 statusCode: 'u8',3546 statusCode: 'u8',3507 usedGas: 'U256',3547 usedGas: 'U256',3508 logsBloom: 'EthbloomBloom',3548 logsBloom: 'EthbloomBloom',3509 logs: 'Vec<EthereumLog>'3549 logs: 'Vec<EthereumLog>'3510 },3550 },3511 /**3551 /**3512 * Lookup459: ethereum::block::Block<ethereum::transaction::TransactionV2>3552 * Lookup463: ethereum::block::Block<ethereum::transaction::TransactionV2>3513 **/3553 **/3514 EthereumBlock: {3554 EthereumBlock: {3515 header: 'EthereumHeader',3555 header: 'EthereumHeader',3516 transactions: 'Vec<EthereumTransactionTransactionV2>',3556 transactions: 'Vec<EthereumTransactionTransactionV2>',3517 ommers: 'Vec<EthereumHeader>'3557 ommers: 'Vec<EthereumHeader>'3518 },3558 },3519 /**3559 /**3520 * Lookup460: ethereum::header::Header3560 * Lookup464: ethereum::header::Header3521 **/3561 **/3522 EthereumHeader: {3562 EthereumHeader: {3523 parentHash: 'H256',3563 parentHash: 'H256',3524 ommersHash: 'H256',3564 ommersHash: 'H256',3536 mixHash: 'H256',3576 mixHash: 'H256',3537 nonce: 'EthereumTypesHashH64'3577 nonce: 'EthereumTypesHashH64'3538 },3578 },3539 /**3579 /**3540 * Lookup461: ethereum_types::hash::H643580 * Lookup465: ethereum_types::hash::H643541 **/3581 **/3542 EthereumTypesHashH64: '[u8;8]',3582 EthereumTypesHashH64: '[u8;8]',3543 /**3583 /**3544 * Lookup466: pallet_ethereum::pallet::Error<T>3584 * Lookup470: pallet_ethereum::pallet::Error<T>3545 **/3585 **/3546 PalletEthereumError: {3586 PalletEthereumError: {3547 _enum: ['InvalidSignature', 'PreLogExists']3587 _enum: ['InvalidSignature', 'PreLogExists']3548 },3588 },3549 /**3589 /**3550 * Lookup467: pallet_evm_coder_substrate::pallet::Error<T>3590 * Lookup471: pallet_evm_coder_substrate::pallet::Error<T>3551 **/3591 **/3552 PalletEvmCoderSubstrateError: {3592 PalletEvmCoderSubstrateError: {3553 _enum: ['OutOfGas', 'OutOfFund']3593 _enum: ['OutOfGas', 'OutOfFund']3554 },3594 },3555 /**3595 /**3556 * Lookup468: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3596 * Lookup472: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3557 **/3597 **/3558 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3598 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3559 _enum: {3599 _enum: {3560 Disabled: 'Null',3600 Disabled: 'Null',3561 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3601 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3562 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3602 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3563 }3603 }3564 },3604 },3565 /**3605 /**3566 * Lookup469: pallet_evm_contract_helpers::SponsoringModeT3606 * Lookup473: pallet_evm_contract_helpers::SponsoringModeT3567 **/3607 **/3568 PalletEvmContractHelpersSponsoringModeT: {3608 PalletEvmContractHelpersSponsoringModeT: {3569 _enum: ['Disabled', 'Allowlisted', 'Generous']3609 _enum: ['Disabled', 'Allowlisted', 'Generous']3570 },3610 },3571 /**3611 /**3572 * Lookup475: pallet_evm_contract_helpers::pallet::Error<T>3612 * Lookup479: pallet_evm_contract_helpers::pallet::Error<T>3573 **/3613 **/3574 PalletEvmContractHelpersError: {3614 PalletEvmContractHelpersError: {3575 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3615 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3576 },3616 },3577 /**3617 /**3578 * Lookup476: pallet_evm_migration::pallet::Error<T>3618 * Lookup480: pallet_evm_migration::pallet::Error<T>3579 **/3619 **/3580 PalletEvmMigrationError: {3620 PalletEvmMigrationError: {3581 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']3621 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3582 },3622 },3583 /**3623 /**3584 * Lookup477: pallet_maintenance::pallet::Error<T>3624 * Lookup481: pallet_maintenance::pallet::Error<T>3585 **/3625 **/3586 PalletMaintenanceError: 'Null',3626 PalletMaintenanceError: 'Null',3587 /**3627 /**3588 * Lookup478: pallet_test_utils::pallet::Error<T>3628 * Lookup482: pallet_test_utils::pallet::Error<T>3589 **/3629 **/3590 PalletTestUtilsError: {3630 PalletTestUtilsError: {3591 _enum: ['TestPalletDisabled', 'TriggerRollback']3631 _enum: ['TestPalletDisabled', 'TriggerRollback']3592 },3632 },3593 /**3633 /**3594 * Lookup480: sp_runtime::MultiSignature3634 * Lookup484: sp_runtime::MultiSignature3595 **/3635 **/3596 SpRuntimeMultiSignature: {3636 SpRuntimeMultiSignature: {3597 _enum: {3637 _enum: {3598 Ed25519: 'SpCoreEd25519Signature',3638 Ed25519: 'SpCoreEd25519Signature',3599 Sr25519: 'SpCoreSr25519Signature',3639 Sr25519: 'SpCoreSr25519Signature',3600 Ecdsa: 'SpCoreEcdsaSignature'3640 Ecdsa: 'SpCoreEcdsaSignature'3601 }3641 }3602 },3642 },3603 /**3643 /**3604 * Lookup481: sp_core::ed25519::Signature3644 * Lookup485: sp_core::ed25519::Signature3605 **/3645 **/3606 SpCoreEd25519Signature: '[u8;64]',3646 SpCoreEd25519Signature: '[u8;64]',3607 /**3647 /**3608 * Lookup483: sp_core::sr25519::Signature3648 * Lookup487: sp_core::sr25519::Signature3609 **/3649 **/3610 SpCoreSr25519Signature: '[u8;64]',3650 SpCoreSr25519Signature: '[u8;64]',3611 /**3651 /**3612 * Lookup484: sp_core::ecdsa::Signature3652 * Lookup488: sp_core::ecdsa::Signature3613 **/3653 **/3614 SpCoreEcdsaSignature: '[u8;65]',3654 SpCoreEcdsaSignature: '[u8;65]',3615 /**3655 /**3616 * Lookup487: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3656 * Lookup491: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3617 **/3657 **/3618 FrameSystemExtensionsCheckSpecVersion: 'Null',3658 FrameSystemExtensionsCheckSpecVersion: 'Null',3619 /**3659 /**3620 * Lookup488: frame_system::extensions::check_tx_version::CheckTxVersion<T>3660 * Lookup492: frame_system::extensions::check_tx_version::CheckTxVersion<T>3621 **/3661 **/3622 FrameSystemExtensionsCheckTxVersion: 'Null',3662 FrameSystemExtensionsCheckTxVersion: 'Null',3623 /**3663 /**3624 * Lookup489: frame_system::extensions::check_genesis::CheckGenesis<T>3664 * Lookup493: frame_system::extensions::check_genesis::CheckGenesis<T>3625 **/3665 **/3626 FrameSystemExtensionsCheckGenesis: 'Null',3666 FrameSystemExtensionsCheckGenesis: 'Null',3627 /**3667 /**3628 * Lookup492: frame_system::extensions::check_nonce::CheckNonce<T>3668 * Lookup496: frame_system::extensions::check_nonce::CheckNonce<T>3629 **/3669 **/3630 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3670 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3631 /**3671 /**3632 * Lookup493: frame_system::extensions::check_weight::CheckWeight<T>3672 * Lookup497: frame_system::extensions::check_weight::CheckWeight<T>3633 **/3673 **/3634 FrameSystemExtensionsCheckWeight: 'Null',3674 FrameSystemExtensionsCheckWeight: 'Null',3635 /**3675 /**3636 * Lookup494: opal_runtime::runtime_common::maintenance::CheckMaintenance3676 * Lookup498: opal_runtime::runtime_common::maintenance::CheckMaintenance3637 **/3677 **/3638 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3678 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3639 /**3679 /**3640 * Lookup495: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3680 * Lookup499: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3641 **/3681 **/3642 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3682 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3643 /**3683 /**3644 * Lookup496: opal_runtime::Runtime3684 * Lookup500: opal_runtime::Runtime3645 **/3685 **/3646 OpalRuntimeRuntime: 'Null',3686 OpalRuntimeRuntime: 'Null',3647 /**3687 /**3648 * Lookup497: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3688 * Lookup501: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3649 **/3689 **/3650 PalletEthereumFakeTransactionFinalizer: 'Null'3690 PalletEthereumFakeTransactionFinalizer: 'Null'3651};3691};36523692tests/src/interfaces/registry.tsdiffbeforeafterboth5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';778import 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';8import 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';9910declare module '@polkadot/types/types/registry' {10declare module '@polkadot/types/types/registry' {11 interface InterfaceTypes {11 interface InterfaceTypes {59 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;59 FrameSupportDispatchPerDispatchClassWeightsPerClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;60 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;60 FrameSupportDispatchRawOrigin: FrameSupportDispatchRawOrigin;61 FrameSupportPalletId: FrameSupportPalletId;61 FrameSupportPalletId: FrameSupportPalletId;62 FrameSupportScheduleLookupError: FrameSupportScheduleLookupError;63 FrameSupportScheduleMaybeHashed: FrameSupportScheduleMaybeHashed;64 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;62 FrameSupportTokensMiscBalanceStatus: FrameSupportTokensMiscBalanceStatus;65 FrameSystemAccountInfo: FrameSystemAccountInfo;63 FrameSystemAccountInfo: FrameSystemAccountInfo;66 FrameSystemCall: FrameSystemCall;64 FrameSystemCall: FrameSystemCall;122 PalletEvmEvent: PalletEvmEvent;120 PalletEvmEvent: PalletEvmEvent;123 PalletEvmMigrationCall: PalletEvmMigrationCall;121 PalletEvmMigrationCall: PalletEvmMigrationCall;124 PalletEvmMigrationError: PalletEvmMigrationError;122 PalletEvmMigrationError: PalletEvmMigrationError;123 PalletEvmMigrationEvent: PalletEvmMigrationEvent;125 PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;124 PalletForeignAssetsAssetIds: PalletForeignAssetsAssetIds;126 PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;125 PalletForeignAssetsModuleAssetMetadata: PalletForeignAssetsModuleAssetMetadata;127 PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;126 PalletForeignAssetsModuleCall: PalletForeignAssetsModuleCall;164 PalletUniqueCall: PalletUniqueCall;163 PalletUniqueCall: PalletUniqueCall;165 PalletUniqueError: PalletUniqueError;164 PalletUniqueError: PalletUniqueError;166 PalletUniqueRawEvent: PalletUniqueRawEvent;165 PalletUniqueRawEvent: PalletUniqueRawEvent;167 PalletUniqueSchedulerCall: PalletUniqueSchedulerCall;166 PalletUniqueSchedulerV2BlockAgenda: PalletUniqueSchedulerV2BlockAgenda;168 PalletUniqueSchedulerError: PalletUniqueSchedulerError;167 PalletUniqueSchedulerV2Call: PalletUniqueSchedulerV2Call;169 PalletUniqueSchedulerEvent: PalletUniqueSchedulerEvent;168 PalletUniqueSchedulerV2Error: PalletUniqueSchedulerV2Error;170 PalletUniqueSchedulerScheduledV3: PalletUniqueSchedulerScheduledV3;169 PalletUniqueSchedulerV2Event: PalletUniqueSchedulerV2Event;170 PalletUniqueSchedulerV2Scheduled: PalletUniqueSchedulerV2Scheduled;171 PalletUniqueSchedulerV2ScheduledCall: PalletUniqueSchedulerV2ScheduledCall;171 PalletXcmCall: PalletXcmCall;172 PalletXcmCall: PalletXcmCall;172 PalletXcmError: PalletXcmError;173 PalletXcmError: PalletXcmError;173 PalletXcmEvent: PalletXcmEvent;174 PalletXcmEvent: PalletXcmEvent;tests/src/interfaces/types-lookup.tsdiffbeforeafterboth1132 readonly type: 'Substrate' | 'Ethereum';1132 readonly type: 'Substrate' | 'Ethereum';1133 }1133 }113411341135 /** @name PalletUniqueSchedulerEvent (93) */1135 /** @name PalletUniqueSchedulerV2Event (93) */1136 interface PalletUniqueSchedulerEvent extends Enum {1136 interface PalletUniqueSchedulerV2Event extends Enum {1137 readonly isScheduled: boolean;1137 readonly isScheduled: boolean;1138 readonly asScheduled: {1138 readonly asScheduled: {1139 readonly when: u32;1139 readonly when: u32;1144 readonly when: u32;1144 readonly when: u32;1145 readonly index: u32;1145 readonly index: u32;1146 } & Struct;1146 } & Struct;1147 readonly isDispatched: boolean;1148 readonly asDispatched: {1149 readonly task: ITuple<[u32, u32]>;1150 readonly id: Option<U8aFixed>;1151 readonly result: Result<Null, SpRuntimeDispatchError>;1152 } & Struct;1147 readonly isPriorityChanged: boolean;1153 readonly isPriorityChanged: boolean;1148 readonly asPriorityChanged: {1154 readonly asPriorityChanged: {1149 readonly when: u32;1155 readonly task: ITuple<[u32, u32]>;1150 readonly index: u32;1151 readonly priority: u8;1156 readonly priority: u8;1152 } & Struct;1157 } & Struct;1153 readonly isDispatched: boolean;1158 readonly isCallUnavailable: boolean;1154 readonly asDispatched: {1159 readonly asCallUnavailable: {1155 readonly task: ITuple<[u32, u32]>;1160 readonly task: ITuple<[u32, u32]>;1156 readonly id: Option<U8aFixed>;1161 readonly id: Option<U8aFixed>;1157 readonly result: Result<Null, SpRuntimeDispatchError>;1158 } & Struct;1162 } & Struct;1159 readonly isCallLookupFailed: boolean;1163 readonly isPermanentlyOverweight: boolean;1160 readonly asCallLookupFailed: {1164 readonly asPermanentlyOverweight: {1161 readonly task: ITuple<[u32, u32]>;1165 readonly task: ITuple<[u32, u32]>;1162 readonly id: Option<U8aFixed>;1166 readonly id: Option<U8aFixed>;1163 readonly error: FrameSupportScheduleLookupError;1164 } & Struct;1167 } & Struct;1165 readonly type: 'Scheduled' | 'Canceled' | 'PriorityChanged' | 'Dispatched' | 'CallLookupFailed';1168 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';1166 }1169 }11671168 /** @name FrameSupportScheduleLookupError (96) */1169 interface FrameSupportScheduleLookupError extends Enum {1170 readonly isUnknown: boolean;1171 readonly isBadFormat: boolean;1172 readonly type: 'Unknown' | 'BadFormat';1173 }117411701175 /** @name PalletCommonEvent (97) */1171 /** @name PalletCommonEvent (96) */1176 interface PalletCommonEvent extends Enum {1172 interface PalletCommonEvent extends Enum {1177 readonly isCollectionCreated: boolean;1173 readonly isCollectionCreated: boolean;1178 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1174 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1199 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';1195 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet';1200 }1196 }120111971202 /** @name PalletStructureEvent (100) */1198 /** @name PalletStructureEvent (99) */1203 interface PalletStructureEvent extends Enum {1199 interface PalletStructureEvent extends Enum {1204 readonly isExecuted: boolean;1200 readonly isExecuted: boolean;1205 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1201 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1206 readonly type: 'Executed';1202 readonly type: 'Executed';1207 }1203 }120812041209 /** @name PalletRmrkCoreEvent (101) */1205 /** @name PalletRmrkCoreEvent (100) */1210 interface PalletRmrkCoreEvent extends Enum {1206 interface PalletRmrkCoreEvent extends Enum {1211 readonly isCollectionCreated: boolean;1207 readonly isCollectionCreated: boolean;1212 readonly asCollectionCreated: {1208 readonly asCollectionCreated: {1296 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1292 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1297 }1293 }129812941299 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (102) */1295 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */1300 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1296 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1301 readonly isAccountId: boolean;1297 readonly isAccountId: boolean;1302 readonly asAccountId: AccountId32;1298 readonly asAccountId: AccountId32;1305 readonly type: 'AccountId' | 'CollectionAndNftTuple';1301 readonly type: 'AccountId' | 'CollectionAndNftTuple';1306 }1302 }130713031308 /** @name PalletRmrkEquipEvent (107) */1304 /** @name PalletRmrkEquipEvent (106) */1309 interface PalletRmrkEquipEvent extends Enum {1305 interface PalletRmrkEquipEvent extends Enum {1310 readonly isBaseCreated: boolean;1306 readonly isBaseCreated: boolean;1311 readonly asBaseCreated: {1307 readonly asBaseCreated: {1320 readonly type: 'BaseCreated' | 'EquippablesUpdated';1316 readonly type: 'BaseCreated' | 'EquippablesUpdated';1321 }1317 }132213181323 /** @name PalletAppPromotionEvent (108) */1319 /** @name PalletAppPromotionEvent (107) */1324 interface PalletAppPromotionEvent extends Enum {1320 interface PalletAppPromotionEvent extends Enum {1325 readonly isStakingRecalculation: boolean;1321 readonly isStakingRecalculation: boolean;1326 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1322 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1333 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1329 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1334 }1330 }133513311336 /** @name PalletForeignAssetsModuleEvent (109) */1332 /** @name PalletForeignAssetsModuleEvent (108) */1337 interface PalletForeignAssetsModuleEvent extends Enum {1333 interface PalletForeignAssetsModuleEvent extends Enum {1338 readonly isForeignAssetRegistered: boolean;1334 readonly isForeignAssetRegistered: boolean;1339 readonly asForeignAssetRegistered: {1335 readonly asForeignAssetRegistered: {1360 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1356 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1361 }1357 }136213581363 /** @name PalletForeignAssetsModuleAssetMetadata (110) */1359 /** @name PalletForeignAssetsModuleAssetMetadata (109) */1364 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1360 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1365 readonly name: Bytes;1361 readonly name: Bytes;1366 readonly symbol: Bytes;1362 readonly symbol: Bytes;1367 readonly decimals: u8;1363 readonly decimals: u8;1368 readonly minimalBalance: u128;1364 readonly minimalBalance: u128;1369 }1365 }137013661371 /** @name PalletEvmEvent (111) */1367 /** @name PalletEvmEvent (110) */1372 interface PalletEvmEvent extends Enum {1368 interface PalletEvmEvent extends Enum {1373 readonly isLog: boolean;1369 readonly isLog: boolean;1374 readonly asLog: {1370 readonly asLog: {1393 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1389 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1394 }1390 }139513911396 /** @name EthereumLog (112) */1392 /** @name EthereumLog (111) */1397 interface EthereumLog extends Struct {1393 interface EthereumLog extends Struct {1398 readonly address: H160;1394 readonly address: H160;1399 readonly topics: Vec<H256>;1395 readonly topics: Vec<H256>;1400 readonly data: Bytes;1396 readonly data: Bytes;1401 }1397 }140213981403 /** @name PalletEthereumEvent (114) */1399 /** @name PalletEthereumEvent (113) */1404 interface PalletEthereumEvent extends Enum {1400 interface PalletEthereumEvent extends Enum {1405 readonly isExecuted: boolean;1401 readonly isExecuted: boolean;1406 readonly asExecuted: {1402 readonly asExecuted: {1412 readonly type: 'Executed';1408 readonly type: 'Executed';1413 }1409 }141414101415 /** @name EvmCoreErrorExitReason (115) */1411 /** @name EvmCoreErrorExitReason (114) */1416 interface EvmCoreErrorExitReason extends Enum {1412 interface EvmCoreErrorExitReason extends Enum {1417 readonly isSucceed: boolean;1413 readonly isSucceed: boolean;1418 readonly asSucceed: EvmCoreErrorExitSucceed;1414 readonly asSucceed: EvmCoreErrorExitSucceed;1425 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1421 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1426 }1422 }142714231428 /** @name EvmCoreErrorExitSucceed (116) */1424 /** @name EvmCoreErrorExitSucceed (115) */1429 interface EvmCoreErrorExitSucceed extends Enum {1425 interface EvmCoreErrorExitSucceed extends Enum {1430 readonly isStopped: boolean;1426 readonly isStopped: boolean;1431 readonly isReturned: boolean;1427 readonly isReturned: boolean;1432 readonly isSuicided: boolean;1428 readonly isSuicided: boolean;1433 readonly type: 'Stopped' | 'Returned' | 'Suicided';1429 readonly type: 'Stopped' | 'Returned' | 'Suicided';1434 }1430 }143514311436 /** @name EvmCoreErrorExitError (117) */1432 /** @name EvmCoreErrorExitError (116) */1437 interface EvmCoreErrorExitError extends Enum {1433 interface EvmCoreErrorExitError extends Enum {1438 readonly isStackUnderflow: boolean;1434 readonly isStackUnderflow: boolean;1439 readonly isStackOverflow: boolean;1435 readonly isStackOverflow: boolean;1454 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1450 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1455 }1451 }145614521457 /** @name EvmCoreErrorExitRevert (120) */1453 /** @name EvmCoreErrorExitRevert (119) */1458 interface EvmCoreErrorExitRevert extends Enum {1454 interface EvmCoreErrorExitRevert extends Enum {1459 readonly isReverted: boolean;1455 readonly isReverted: boolean;1460 readonly type: 'Reverted';1456 readonly type: 'Reverted';1461 }1457 }146214581463 /** @name EvmCoreErrorExitFatal (121) */1459 /** @name EvmCoreErrorExitFatal (120) */1464 interface EvmCoreErrorExitFatal extends Enum {1460 interface EvmCoreErrorExitFatal extends Enum {1465 readonly isNotSupported: boolean;1461 readonly isNotSupported: boolean;1466 readonly isUnhandledInterrupt: boolean;1462 readonly isUnhandledInterrupt: boolean;1471 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1467 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1472 }1468 }147314691474 /** @name PalletEvmContractHelpersEvent (122) */1470 /** @name PalletEvmContractHelpersEvent (121) */1475 interface PalletEvmContractHelpersEvent extends Enum {1471 interface PalletEvmContractHelpersEvent extends Enum {1476 readonly isContractSponsorSet: boolean;1472 readonly isContractSponsorSet: boolean;1477 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1473 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1482 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1478 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1483 }1479 }14801481 /** @name PalletEvmMigrationEvent (122) */1482 interface PalletEvmMigrationEvent extends Enum {1483 readonly isTestEvent: boolean;1484 readonly type: 'TestEvent';1485 }148414861485 /** @name PalletMaintenanceEvent (123) */1487 /** @name PalletMaintenanceEvent (123) */1486 interface PalletMaintenanceEvent extends Enum {1488 interface PalletMaintenanceEvent extends Enum {1493 interface PalletTestUtilsEvent extends Enum {1495 interface PalletTestUtilsEvent extends Enum {1494 readonly isValueIsSet: boolean;1496 readonly isValueIsSet: boolean;1495 readonly isShouldRollback: boolean;1497 readonly isShouldRollback: boolean;1498 readonly isBatchCompleted: boolean;1496 readonly type: 'ValueIsSet' | 'ShouldRollback';1499 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1497 }1500 }149815011499 /** @name FrameSystemPhase (125) */1502 /** @name FrameSystemPhase (125) */2685 readonly properties: Vec<UpDataStructsProperty>;2688 readonly properties: Vec<UpDataStructsProperty>;2686 }2689 }268726902688 /** @name PalletUniqueSchedulerCall (284) */2691 /** @name PalletUniqueSchedulerV2Call (284) */2689 interface PalletUniqueSchedulerCall extends Enum {2692 interface PalletUniqueSchedulerV2Call extends Enum {2693 readonly isSchedule: boolean;2694 readonly asSchedule: {2695 readonly when: u32;2696 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2697 readonly priority: Option<u8>;2698 readonly call: Call;2699 } & Struct;2700 readonly isCancel: boolean;2701 readonly asCancel: {2702 readonly when: u32;2703 readonly index: u32;2704 } & Struct;2690 readonly isScheduleNamed: boolean;2705 readonly isScheduleNamed: boolean;2691 readonly asScheduleNamed: {2706 readonly asScheduleNamed: {2692 readonly id: U8aFixed;2707 readonly id: U8aFixed;2693 readonly when: u32;2708 readonly when: u32;2694 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2709 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2695 readonly priority: Option<u8>;2710 readonly priority: Option<u8>;2696 readonly call: FrameSupportScheduleMaybeHashed;2711 readonly call: Call;2697 } & Struct;2712 } & Struct;2698 readonly isCancelNamed: boolean;2713 readonly isCancelNamed: boolean;2699 readonly asCancelNamed: {2714 readonly asCancelNamed: {2700 readonly id: U8aFixed;2715 readonly id: U8aFixed;2701 } & Struct;2716 } & Struct;2717 readonly isScheduleAfter: boolean;2718 readonly asScheduleAfter: {2719 readonly after: u32;2720 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2721 readonly priority: Option<u8>;2722 readonly call: Call;2723 } & Struct;2702 readonly isScheduleNamedAfter: boolean;2724 readonly isScheduleNamedAfter: boolean;2703 readonly asScheduleNamedAfter: {2725 readonly asScheduleNamedAfter: {2704 readonly id: U8aFixed;2726 readonly id: U8aFixed;2705 readonly after: u32;2727 readonly after: u32;2706 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2728 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2707 readonly priority: Option<u8>;2729 readonly priority: Option<u8>;2708 readonly call: FrameSupportScheduleMaybeHashed;2730 readonly call: Call;2709 } & Struct;2731 } & Struct;2710 readonly isChangeNamedPriority: boolean;2732 readonly isChangeNamedPriority: boolean;2711 readonly asChangeNamedPriority: {2733 readonly asChangeNamedPriority: {2712 readonly id: U8aFixed;2734 readonly id: U8aFixed;2713 readonly priority: u8;2735 readonly priority: u8;2714 } & Struct;2736 } & Struct;2715 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2737 readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2716 }2738 }27172718 /** @name FrameSupportScheduleMaybeHashed (287) */2719 interface FrameSupportScheduleMaybeHashed extends Enum {2720 readonly isValue: boolean;2721 readonly asValue: Call;2722 readonly isHash: boolean;2723 readonly asHash: H256;2724 readonly type: 'Value' | 'Hash';2725 }272627392727 /** @name PalletConfigurationCall (288) */2740 /** @name PalletConfigurationCall (287) */2728 interface PalletConfigurationCall extends Enum {2741 interface PalletConfigurationCall extends Enum {2729 readonly isSetWeightToFeeCoefficientOverride: boolean;2742 readonly isSetWeightToFeeCoefficientOverride: boolean;2730 readonly asSetWeightToFeeCoefficientOverride: {2743 readonly asSetWeightToFeeCoefficientOverride: {2737 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2750 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2738 }2751 }273927522740 /** @name PalletTemplateTransactionPaymentCall (290) */2753 /** @name PalletTemplateTransactionPaymentCall (289) */2741 type PalletTemplateTransactionPaymentCall = Null;2754 type PalletTemplateTransactionPaymentCall = Null;274227552743 /** @name PalletStructureCall (291) */2756 /** @name PalletStructureCall (290) */2744 type PalletStructureCall = Null;2757 type PalletStructureCall = Null;274527582746 /** @name PalletRmrkCoreCall (292) */2759 /** @name PalletRmrkCoreCall (291) */2747 interface PalletRmrkCoreCall extends Enum {2760 interface PalletRmrkCoreCall extends Enum {2748 readonly isCreateCollection: boolean;2761 readonly isCreateCollection: boolean;2749 readonly asCreateCollection: {2762 readonly asCreateCollection: {2849 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2862 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2850 }2863 }285128642852 /** @name RmrkTraitsResourceResourceTypes (298) */2865 /** @name RmrkTraitsResourceResourceTypes (297) */2853 interface RmrkTraitsResourceResourceTypes extends Enum {2866 interface RmrkTraitsResourceResourceTypes extends Enum {2854 readonly isBasic: boolean;2867 readonly isBasic: boolean;2855 readonly asBasic: RmrkTraitsResourceBasicResource;2868 readonly asBasic: RmrkTraitsResourceBasicResource;2860 readonly type: 'Basic' | 'Composable' | 'Slot';2873 readonly type: 'Basic' | 'Composable' | 'Slot';2861 }2874 }286228752863 /** @name RmrkTraitsResourceBasicResource (300) */2876 /** @name RmrkTraitsResourceBasicResource (299) */2864 interface RmrkTraitsResourceBasicResource extends Struct {2877 interface RmrkTraitsResourceBasicResource extends Struct {2865 readonly src: Option<Bytes>;2878 readonly src: Option<Bytes>;2866 readonly metadata: Option<Bytes>;2879 readonly metadata: Option<Bytes>;2867 readonly license: Option<Bytes>;2880 readonly license: Option<Bytes>;2868 readonly thumb: Option<Bytes>;2881 readonly thumb: Option<Bytes>;2869 }2882 }287028832871 /** @name RmrkTraitsResourceComposableResource (302) */2884 /** @name RmrkTraitsResourceComposableResource (301) */2872 interface RmrkTraitsResourceComposableResource extends Struct {2885 interface RmrkTraitsResourceComposableResource extends Struct {2873 readonly parts: Vec<u32>;2886 readonly parts: Vec<u32>;2874 readonly base: u32;2887 readonly base: u32;2878 readonly thumb: Option<Bytes>;2891 readonly thumb: Option<Bytes>;2879 }2892 }288028932881 /** @name RmrkTraitsResourceSlotResource (303) */2894 /** @name RmrkTraitsResourceSlotResource (302) */2882 interface RmrkTraitsResourceSlotResource extends Struct {2895 interface RmrkTraitsResourceSlotResource extends Struct {2883 readonly base: u32;2896 readonly base: u32;2884 readonly src: Option<Bytes>;2897 readonly src: Option<Bytes>;2888 readonly thumb: Option<Bytes>;2901 readonly thumb: Option<Bytes>;2889 }2902 }289029032891 /** @name PalletRmrkEquipCall (306) */2904 /** @name PalletRmrkEquipCall (305) */2892 interface PalletRmrkEquipCall extends Enum {2905 interface PalletRmrkEquipCall extends Enum {2893 readonly isCreateBase: boolean;2906 readonly isCreateBase: boolean;2894 readonly asCreateBase: {2907 readonly asCreateBase: {2910 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2923 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2911 }2924 }291229252913 /** @name RmrkTraitsPartPartType (309) */2926 /** @name RmrkTraitsPartPartType (308) */2914 interface RmrkTraitsPartPartType extends Enum {2927 interface RmrkTraitsPartPartType extends Enum {2915 readonly isFixedPart: boolean;2928 readonly isFixedPart: boolean;2916 readonly asFixedPart: RmrkTraitsPartFixedPart;2929 readonly asFixedPart: RmrkTraitsPartFixedPart;2919 readonly type: 'FixedPart' | 'SlotPart';2932 readonly type: 'FixedPart' | 'SlotPart';2920 }2933 }292129342922 /** @name RmrkTraitsPartFixedPart (311) */2935 /** @name RmrkTraitsPartFixedPart (310) */2923 interface RmrkTraitsPartFixedPart extends Struct {2936 interface RmrkTraitsPartFixedPart extends Struct {2924 readonly id: u32;2937 readonly id: u32;2925 readonly z: u32;2938 readonly z: u32;2926 readonly src: Bytes;2939 readonly src: Bytes;2927 }2940 }292829412929 /** @name RmrkTraitsPartSlotPart (312) */2942 /** @name RmrkTraitsPartSlotPart (311) */2930 interface RmrkTraitsPartSlotPart extends Struct {2943 interface RmrkTraitsPartSlotPart extends Struct {2931 readonly id: u32;2944 readonly id: u32;2932 readonly equippable: RmrkTraitsPartEquippableList;2945 readonly equippable: RmrkTraitsPartEquippableList;2933 readonly src: Bytes;2946 readonly src: Bytes;2934 readonly z: u32;2947 readonly z: u32;2935 }2948 }293629492937 /** @name RmrkTraitsPartEquippableList (313) */2950 /** @name RmrkTraitsPartEquippableList (312) */2938 interface RmrkTraitsPartEquippableList extends Enum {2951 interface RmrkTraitsPartEquippableList extends Enum {2939 readonly isAll: boolean;2952 readonly isAll: boolean;2940 readonly isEmpty: boolean;2953 readonly isEmpty: boolean;2943 readonly type: 'All' | 'Empty' | 'Custom';2956 readonly type: 'All' | 'Empty' | 'Custom';2944 }2957 }294529582946 /** @name RmrkTraitsTheme (315) */2959 /** @name RmrkTraitsTheme (314) */2947 interface RmrkTraitsTheme extends Struct {2960 interface RmrkTraitsTheme extends Struct {2948 readonly name: Bytes;2961 readonly name: Bytes;2949 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2962 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2950 readonly inherit: bool;2963 readonly inherit: bool;2951 }2964 }295229652953 /** @name RmrkTraitsThemeThemeProperty (317) */2966 /** @name RmrkTraitsThemeThemeProperty (316) */2954 interface RmrkTraitsThemeThemeProperty extends Struct {2967 interface RmrkTraitsThemeThemeProperty extends Struct {2955 readonly key: Bytes;2968 readonly key: Bytes;2956 readonly value: Bytes;2969 readonly value: Bytes;2957 }2970 }295829712959 /** @name PalletAppPromotionCall (319) */2972 /** @name PalletAppPromotionCall (318) */2960 interface PalletAppPromotionCall extends Enum {2973 interface PalletAppPromotionCall extends Enum {2961 readonly isSetAdminAddress: boolean;2974 readonly isSetAdminAddress: boolean;2962 readonly asSetAdminAddress: {2975 readonly asSetAdminAddress: {2990 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';3003 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2991 }3004 }299230052993 /** @name PalletForeignAssetsModuleCall (320) */3006 /** @name PalletForeignAssetsModuleCall (319) */2994 interface PalletForeignAssetsModuleCall extends Enum {3007 interface PalletForeignAssetsModuleCall extends Enum {2995 readonly isRegisterForeignAsset: boolean;3008 readonly isRegisterForeignAsset: boolean;2996 readonly asRegisterForeignAsset: {3009 readonly asRegisterForeignAsset: {3007 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3020 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3008 }3021 }300930223010 /** @name PalletEvmCall (321) */3023 /** @name PalletEvmCall (320) */3011 interface PalletEvmCall extends Enum {3024 interface PalletEvmCall extends Enum {3012 readonly isWithdraw: boolean;3025 readonly isWithdraw: boolean;3013 readonly asWithdraw: {3026 readonly asWithdraw: {3052 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3065 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3053 }3066 }305430673055 /** @name PalletEthereumCall (327) */3068 /** @name PalletEthereumCall (326) */3056 interface PalletEthereumCall extends Enum {3069 interface PalletEthereumCall extends Enum {3057 readonly isTransact: boolean;3070 readonly isTransact: boolean;3058 readonly asTransact: {3071 readonly asTransact: {3061 readonly type: 'Transact';3074 readonly type: 'Transact';3062 }3075 }306330763064 /** @name EthereumTransactionTransactionV2 (328) */3077 /** @name EthereumTransactionTransactionV2 (327) */3065 interface EthereumTransactionTransactionV2 extends Enum {3078 interface EthereumTransactionTransactionV2 extends Enum {3066 readonly isLegacy: boolean;3079 readonly isLegacy: boolean;3067 readonly asLegacy: EthereumTransactionLegacyTransaction;3080 readonly asLegacy: EthereumTransactionLegacyTransaction;3072 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3085 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3073 }3086 }307430873075 /** @name EthereumTransactionLegacyTransaction (329) */3088 /** @name EthereumTransactionLegacyTransaction (328) */3076 interface EthereumTransactionLegacyTransaction extends Struct {3089 interface EthereumTransactionLegacyTransaction extends Struct {3077 readonly nonce: U256;3090 readonly nonce: U256;3078 readonly gasPrice: U256;3091 readonly gasPrice: U256;3083 readonly signature: EthereumTransactionTransactionSignature;3096 readonly signature: EthereumTransactionTransactionSignature;3084 }3097 }308530983086 /** @name EthereumTransactionTransactionAction (330) */3099 /** @name EthereumTransactionTransactionAction (329) */3087 interface EthereumTransactionTransactionAction extends Enum {3100 interface EthereumTransactionTransactionAction extends Enum {3088 readonly isCall: boolean;3101 readonly isCall: boolean;3089 readonly asCall: H160;3102 readonly asCall: H160;3090 readonly isCreate: boolean;3103 readonly isCreate: boolean;3091 readonly type: 'Call' | 'Create';3104 readonly type: 'Call' | 'Create';3092 }3105 }309331063094 /** @name EthereumTransactionTransactionSignature (331) */3107 /** @name EthereumTransactionTransactionSignature (330) */3095 interface EthereumTransactionTransactionSignature extends Struct {3108 interface EthereumTransactionTransactionSignature extends Struct {3096 readonly v: u64;3109 readonly v: u64;3097 readonly r: H256;3110 readonly r: H256;3098 readonly s: H256;3111 readonly s: H256;3099 }3112 }310031133101 /** @name EthereumTransactionEip2930Transaction (333) */3114 /** @name EthereumTransactionEip2930Transaction (332) */3102 interface EthereumTransactionEip2930Transaction extends Struct {3115 interface EthereumTransactionEip2930Transaction extends Struct {3103 readonly chainId: u64;3116 readonly chainId: u64;3104 readonly nonce: U256;3117 readonly nonce: U256;3113 readonly s: H256;3126 readonly s: H256;3114 }3127 }311531283116 /** @name EthereumTransactionAccessListItem (335) */3129 /** @name EthereumTransactionAccessListItem (334) */3117 interface EthereumTransactionAccessListItem extends Struct {3130 interface EthereumTransactionAccessListItem extends Struct {3118 readonly address: H160;3131 readonly address: H160;3119 readonly storageKeys: Vec<H256>;3132 readonly storageKeys: Vec<H256>;3120 }3133 }312131343122 /** @name EthereumTransactionEip1559Transaction (336) */3135 /** @name EthereumTransactionEip1559Transaction (335) */3123 interface EthereumTransactionEip1559Transaction extends Struct {3136 interface EthereumTransactionEip1559Transaction extends Struct {3124 readonly chainId: u64;3137 readonly chainId: u64;3125 readonly nonce: U256;3138 readonly nonce: U256;3135 readonly s: H256;3148 readonly s: H256;3136 }3149 }313731503138 /** @name PalletEvmMigrationCall (337) */3151 /** @name PalletEvmMigrationCall (336) */3139 interface PalletEvmMigrationCall extends Enum {3152 interface PalletEvmMigrationCall extends Enum {3140 readonly isBegin: boolean;3153 readonly isBegin: boolean;3141 readonly asBegin: {3154 readonly asBegin: {3151 readonly address: H160;3164 readonly address: H160;3152 readonly code: Bytes;3165 readonly code: Bytes;3153 } & Struct;3166 } & Struct;3167 readonly isInsertEthLogs: boolean;3168 readonly asInsertEthLogs: {3169 readonly logs: Vec<EthereumLog>;3170 } & Struct;3171 readonly isInsertEvents: boolean;3172 readonly asInsertEvents: {3173 readonly events: Vec<Bytes>;3174 } & Struct;3154 readonly type: 'Begin' | 'SetData' | 'Finish';3175 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3155 }3176 }315631773157 /** @name PalletMaintenanceCall (340) */3178 /** @name PalletMaintenanceCall (340) */3179 readonly maxTestValue: u32;3200 readonly maxTestValue: u32;3180 } & Struct;3201 } & Struct;3181 readonly isJustTakeFee: boolean;3202 readonly isJustTakeFee: boolean;3203 readonly isBatchAll: boolean;3204 readonly asBatchAll: {3205 readonly calls: Vec<Call>;3206 } & Struct;3182 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee';3207 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';3183 }3208 }318432093185 /** @name PalletSudoError (342) */3210 /** @name PalletSudoError (343) */3186 interface PalletSudoError extends Enum {3211 interface PalletSudoError extends Enum {3187 readonly isRequireSudo: boolean;3212 readonly isRequireSudo: boolean;3188 readonly type: 'RequireSudo';3213 readonly type: 'RequireSudo';3189 }3214 }319032153191 /** @name OrmlVestingModuleError (344) */3216 /** @name OrmlVestingModuleError (345) */3192 interface OrmlVestingModuleError extends Enum {3217 interface OrmlVestingModuleError extends Enum {3193 readonly isZeroVestingPeriod: boolean;3218 readonly isZeroVestingPeriod: boolean;3194 readonly isZeroVestingPeriodCount: boolean;3219 readonly isZeroVestingPeriodCount: boolean;3199 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3224 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3200 }3225 }320132263202 /** @name OrmlXtokensModuleError (345) */3227 /** @name OrmlXtokensModuleError (346) */3203 interface OrmlXtokensModuleError extends Enum {3228 interface OrmlXtokensModuleError extends Enum {3204 readonly isAssetHasNoReserve: boolean;3229 readonly isAssetHasNoReserve: boolean;3205 readonly isNotCrossChainTransfer: boolean;3230 readonly isNotCrossChainTransfer: boolean;3223 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3248 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3224 }3249 }322532503226 /** @name OrmlTokensBalanceLock (348) */3251 /** @name OrmlTokensBalanceLock (349) */3227 interface OrmlTokensBalanceLock extends Struct {3252 interface OrmlTokensBalanceLock extends Struct {3228 readonly id: U8aFixed;3253 readonly id: U8aFixed;3229 readonly amount: u128;3254 readonly amount: u128;3230 }3255 }323132563232 /** @name OrmlTokensAccountData (350) */3257 /** @name OrmlTokensAccountData (351) */3233 interface OrmlTokensAccountData extends Struct {3258 interface OrmlTokensAccountData extends Struct {3234 readonly free: u128;3259 readonly free: u128;3235 readonly reserved: u128;3260 readonly reserved: u128;3236 readonly frozen: u128;3261 readonly frozen: u128;3237 }3262 }323832633239 /** @name OrmlTokensReserveData (352) */3264 /** @name OrmlTokensReserveData (353) */3240 interface OrmlTokensReserveData extends Struct {3265 interface OrmlTokensReserveData extends Struct {3241 readonly id: Null;3266 readonly id: Null;3242 readonly amount: u128;3267 readonly amount: u128;3243 }3268 }324432693245 /** @name OrmlTokensModuleError (354) */3270 /** @name OrmlTokensModuleError (355) */3246 interface OrmlTokensModuleError extends Enum {3271 interface OrmlTokensModuleError extends Enum {3247 readonly isBalanceTooLow: boolean;3272 readonly isBalanceTooLow: boolean;3248 readonly isAmountIntoBalanceFailed: boolean;3273 readonly isAmountIntoBalanceFailed: boolean;3255 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3280 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3256 }3281 }325732823258 /** @name CumulusPalletXcmpQueueInboundChannelDetails (356) */3283 /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */3259 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3284 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3260 readonly sender: u32;3285 readonly sender: u32;3261 readonly state: CumulusPalletXcmpQueueInboundState;3286 readonly state: CumulusPalletXcmpQueueInboundState;3262 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3287 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3263 }3288 }326432893265 /** @name CumulusPalletXcmpQueueInboundState (357) */3290 /** @name CumulusPalletXcmpQueueInboundState (358) */3266 interface CumulusPalletXcmpQueueInboundState extends Enum {3291 interface CumulusPalletXcmpQueueInboundState extends Enum {3267 readonly isOk: boolean;3292 readonly isOk: boolean;3268 readonly isSuspended: boolean;3293 readonly isSuspended: boolean;3269 readonly type: 'Ok' | 'Suspended';3294 readonly type: 'Ok' | 'Suspended';3270 }3295 }327132963272 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (360) */3297 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */3273 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3298 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3274 readonly isConcatenatedVersionedXcm: boolean;3299 readonly isConcatenatedVersionedXcm: boolean;3275 readonly isConcatenatedEncodedBlob: boolean;3300 readonly isConcatenatedEncodedBlob: boolean;3276 readonly isSignals: boolean;3301 readonly isSignals: boolean;3277 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3302 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3278 }3303 }327933043280 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (363) */3305 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */3281 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3306 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3282 readonly recipient: u32;3307 readonly recipient: u32;3283 readonly state: CumulusPalletXcmpQueueOutboundState;3308 readonly state: CumulusPalletXcmpQueueOutboundState;3286 readonly lastIndex: u16;3311 readonly lastIndex: u16;3287 }3312 }328833133289 /** @name CumulusPalletXcmpQueueOutboundState (364) */3314 /** @name CumulusPalletXcmpQueueOutboundState (365) */3290 interface CumulusPalletXcmpQueueOutboundState extends Enum {3315 interface CumulusPalletXcmpQueueOutboundState extends Enum {3291 readonly isOk: boolean;3316 readonly isOk: boolean;3292 readonly isSuspended: boolean;3317 readonly isSuspended: boolean;3293 readonly type: 'Ok' | 'Suspended';3318 readonly type: 'Ok' | 'Suspended';3294 }3319 }329533203296 /** @name CumulusPalletXcmpQueueQueueConfigData (366) */3321 /** @name CumulusPalletXcmpQueueQueueConfigData (367) */3297 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3322 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3298 readonly suspendThreshold: u32;3323 readonly suspendThreshold: u32;3299 readonly dropThreshold: u32;3324 readonly dropThreshold: u32;3303 readonly xcmpMaxIndividualWeight: Weight;3328 readonly xcmpMaxIndividualWeight: Weight;3304 }3329 }330533303306 /** @name CumulusPalletXcmpQueueError (368) */3331 /** @name CumulusPalletXcmpQueueError (369) */3307 interface CumulusPalletXcmpQueueError extends Enum {3332 interface CumulusPalletXcmpQueueError extends Enum {3308 readonly isFailedToSend: boolean;3333 readonly isFailedToSend: boolean;3309 readonly isBadXcmOrigin: boolean;3334 readonly isBadXcmOrigin: boolean;3313 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3338 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3314 }3339 }331533403316 /** @name PalletXcmError (369) */3341 /** @name PalletXcmError (370) */3317 interface PalletXcmError extends Enum {3342 interface PalletXcmError extends Enum {3318 readonly isUnreachable: boolean;3343 readonly isUnreachable: boolean;3319 readonly isSendFailure: boolean;3344 readonly isSendFailure: boolean;3331 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3356 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3332 }3357 }333333583334 /** @name CumulusPalletXcmError (370) */3359 /** @name CumulusPalletXcmError (371) */3335 type CumulusPalletXcmError = Null;3360 type CumulusPalletXcmError = Null;333633613337 /** @name CumulusPalletDmpQueueConfigData (371) */3362 /** @name CumulusPalletDmpQueueConfigData (372) */3338 interface CumulusPalletDmpQueueConfigData extends Struct {3363 interface CumulusPalletDmpQueueConfigData extends Struct {3339 readonly maxIndividual: Weight;3364 readonly maxIndividual: Weight;3340 }3365 }334133663342 /** @name CumulusPalletDmpQueuePageIndexData (372) */3367 /** @name CumulusPalletDmpQueuePageIndexData (373) */3343 interface CumulusPalletDmpQueuePageIndexData extends Struct {3368 interface CumulusPalletDmpQueuePageIndexData extends Struct {3344 readonly beginUsed: u32;3369 readonly beginUsed: u32;3345 readonly endUsed: u32;3370 readonly endUsed: u32;3346 readonly overweightCount: u64;3371 readonly overweightCount: u64;3347 }3372 }334833733349 /** @name CumulusPalletDmpQueueError (375) */3374 /** @name CumulusPalletDmpQueueError (376) */3350 interface CumulusPalletDmpQueueError extends Enum {3375 interface CumulusPalletDmpQueueError extends Enum {3351 readonly isUnknown: boolean;3376 readonly isUnknown: boolean;3352 readonly isOverLimit: boolean;3377 readonly isOverLimit: boolean;3353 readonly type: 'Unknown' | 'OverLimit';3378 readonly type: 'Unknown' | 'OverLimit';3354 }3379 }335533803356 /** @name PalletUniqueError (379) */3381 /** @name PalletUniqueError (380) */3357 interface PalletUniqueError extends Enum {3382 interface PalletUniqueError extends Enum {3358 readonly isCollectionDecimalPointLimitExceeded: boolean;3383 readonly isCollectionDecimalPointLimitExceeded: boolean;3359 readonly isConfirmUnsetSponsorFail: boolean;3384 readonly isConfirmUnsetSponsorFail: boolean;3362 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3387 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3363 }3388 }33893390 /** @name PalletUniqueSchedulerV2BlockAgenda (381) */3391 interface PalletUniqueSchedulerV2BlockAgenda extends Struct {3392 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;3393 readonly freePlaces: u32;3394 }336433953365 /** @name PalletUniqueSchedulerScheduledV3 (382) */3396 /** @name PalletUniqueSchedulerV2Scheduled (384) */3366 interface PalletUniqueSchedulerScheduledV3 extends Struct {3397 interface PalletUniqueSchedulerV2Scheduled extends Struct {3367 readonly maybeId: Option<U8aFixed>;3398 readonly maybeId: Option<U8aFixed>;3368 readonly priority: u8;3399 readonly priority: u8;3369 readonly call: FrameSupportScheduleMaybeHashed;3400 readonly call: PalletUniqueSchedulerV2ScheduledCall;3370 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3401 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3371 readonly origin: OpalRuntimeOriginCaller;3402 readonly origin: OpalRuntimeOriginCaller;3372 }3403 }34043405 /** @name PalletUniqueSchedulerV2ScheduledCall (385) */3406 interface PalletUniqueSchedulerV2ScheduledCall extends Enum {3407 readonly isInline: boolean;3408 readonly asInline: Bytes;3409 readonly isPreimageLookup: boolean;3410 readonly asPreimageLookup: {3411 readonly hash_: H256;3412 readonly unboundedLen: u32;3413 } & Struct;3414 readonly type: 'Inline' | 'PreimageLookup';3415 }337334163374 /** @name OpalRuntimeOriginCaller (383) */3417 /** @name OpalRuntimeOriginCaller (387) */3375 interface OpalRuntimeOriginCaller extends Enum {3418 interface OpalRuntimeOriginCaller extends Enum {3376 readonly isSystem: boolean;3419 readonly isSystem: boolean;3377 readonly asSystem: FrameSupportDispatchRawOrigin;3420 readonly asSystem: FrameSupportDispatchRawOrigin;3385 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3428 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3386 }3429 }338734303388 /** @name FrameSupportDispatchRawOrigin (384) */3431 /** @name FrameSupportDispatchRawOrigin (388) */3389 interface FrameSupportDispatchRawOrigin extends Enum {3432 interface FrameSupportDispatchRawOrigin extends Enum {3390 readonly isRoot: boolean;3433 readonly isRoot: boolean;3391 readonly isSigned: boolean;3434 readonly isSigned: boolean;3394 readonly type: 'Root' | 'Signed' | 'None';3437 readonly type: 'Root' | 'Signed' | 'None';3395 }3438 }339634393397 /** @name PalletXcmOrigin (385) */3440 /** @name PalletXcmOrigin (389) */3398 interface PalletXcmOrigin extends Enum {3441 interface PalletXcmOrigin extends Enum {3399 readonly isXcm: boolean;3442 readonly isXcm: boolean;3400 readonly asXcm: XcmV1MultiLocation;3443 readonly asXcm: XcmV1MultiLocation;3403 readonly type: 'Xcm' | 'Response';3446 readonly type: 'Xcm' | 'Response';3404 }3447 }340534483406 /** @name CumulusPalletXcmOrigin (386) */3449 /** @name CumulusPalletXcmOrigin (390) */3407 interface CumulusPalletXcmOrigin extends Enum {3450 interface CumulusPalletXcmOrigin extends Enum {3408 readonly isRelay: boolean;3451 readonly isRelay: boolean;3409 readonly isSiblingParachain: boolean;3452 readonly isSiblingParachain: boolean;3410 readonly asSiblingParachain: u32;3453 readonly asSiblingParachain: u32;3411 readonly type: 'Relay' | 'SiblingParachain';3454 readonly type: 'Relay' | 'SiblingParachain';3412 }3455 }341334563414 /** @name PalletEthereumRawOrigin (387) */3457 /** @name PalletEthereumRawOrigin (391) */3415 interface PalletEthereumRawOrigin extends Enum {3458 interface PalletEthereumRawOrigin extends Enum {3416 readonly isEthereumTransaction: boolean;3459 readonly isEthereumTransaction: boolean;3417 readonly asEthereumTransaction: H160;3460 readonly asEthereumTransaction: H160;3418 readonly type: 'EthereumTransaction';3461 readonly type: 'EthereumTransaction';3419 }3462 }342034633421 /** @name SpCoreVoid (388) */3464 /** @name SpCoreVoid (392) */3422 type SpCoreVoid = Null;3465 type SpCoreVoid = Null;342334663424 /** @name PalletUniqueSchedulerError (389) */3467 /** @name PalletUniqueSchedulerV2Error (394) */3425 interface PalletUniqueSchedulerError extends Enum {3468 interface PalletUniqueSchedulerV2Error extends Enum {3426 readonly isFailedToSchedule: boolean;3469 readonly isFailedToSchedule: boolean;3470 readonly isAgendaIsExhausted: boolean;3471 readonly isScheduledCallCorrupted: boolean;3472 readonly isPreimageNotFound: boolean;3473 readonly isTooBigScheduledCall: boolean;3427 readonly isNotFound: boolean;3474 readonly isNotFound: boolean;3428 readonly isTargetBlockNumberInPast: boolean;3475 readonly isTargetBlockNumberInPast: boolean;3429 readonly isRescheduleNoChange: boolean;3476 readonly isNamed: boolean;3430 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';3477 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';3431 }3478 }343234793433 /** @name UpDataStructsCollection (390) */3480 /** @name UpDataStructsCollection (395) */3434 interface UpDataStructsCollection extends Struct {3481 interface UpDataStructsCollection extends Struct {3435 readonly owner: AccountId32;3482 readonly owner: AccountId32;3436 readonly mode: UpDataStructsCollectionMode;3483 readonly mode: UpDataStructsCollectionMode;3443 readonly flags: U8aFixed;3490 readonly flags: U8aFixed;3444 }3491 }344534923446 /** @name UpDataStructsSponsorshipStateAccountId32 (391) */3493 /** @name UpDataStructsSponsorshipStateAccountId32 (396) */3447 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3494 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3448 readonly isDisabled: boolean;3495 readonly isDisabled: boolean;3449 readonly isUnconfirmed: boolean;3496 readonly isUnconfirmed: boolean;3453 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3500 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3454 }3501 }345535023456 /** @name UpDataStructsProperties (393) */3503 /** @name UpDataStructsProperties (398) */3457 interface UpDataStructsProperties extends Struct {3504 interface UpDataStructsProperties extends Struct {3458 readonly map: UpDataStructsPropertiesMapBoundedVec;3505 readonly map: UpDataStructsPropertiesMapBoundedVec;3459 readonly consumedSpace: u32;3506 readonly consumedSpace: u32;3460 readonly spaceLimit: u32;3507 readonly spaceLimit: u32;3461 }3508 }346235093463 /** @name UpDataStructsPropertiesMapBoundedVec (394) */3510 /** @name UpDataStructsPropertiesMapBoundedVec (399) */3464 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3511 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}346535123466 /** @name UpDataStructsPropertiesMapPropertyPermission (399) */3513 /** @name UpDataStructsPropertiesMapPropertyPermission (404) */3467 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3514 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}346835153469 /** @name UpDataStructsCollectionStats (406) */3516 /** @name UpDataStructsCollectionStats (411) */3470 interface UpDataStructsCollectionStats extends Struct {3517 interface UpDataStructsCollectionStats extends Struct {3471 readonly created: u32;3518 readonly created: u32;3472 readonly destroyed: u32;3519 readonly destroyed: u32;3473 readonly alive: u32;3520 readonly alive: u32;3474 }3521 }347535223476 /** @name UpDataStructsTokenChild (407) */3523 /** @name UpDataStructsTokenChild (412) */3477 interface UpDataStructsTokenChild extends Struct {3524 interface UpDataStructsTokenChild extends Struct {3478 readonly token: u32;3525 readonly token: u32;3479 readonly collection: u32;3526 readonly collection: u32;3480 }3527 }348135283482 /** @name PhantomTypeUpDataStructs (408) */3529 /** @name PhantomTypeUpDataStructs (413) */3483 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}3530 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}348435313485 /** @name UpDataStructsTokenData (410) */3532 /** @name UpDataStructsTokenData (415) */3486 interface UpDataStructsTokenData extends Struct {3533 interface UpDataStructsTokenData extends Struct {3487 readonly properties: Vec<UpDataStructsProperty>;3534 readonly properties: Vec<UpDataStructsProperty>;3488 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3535 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3489 readonly pieces: u128;3536 readonly pieces: u128;3490 }3537 }349135383492 /** @name UpDataStructsRpcCollection (412) */3539 /** @name UpDataStructsRpcCollection (417) */3493 interface UpDataStructsRpcCollection extends Struct {3540 interface UpDataStructsRpcCollection extends Struct {3494 readonly owner: AccountId32;3541 readonly owner: AccountId32;3495 readonly mode: UpDataStructsCollectionMode;3542 readonly mode: UpDataStructsCollectionMode;3505 readonly flags: UpDataStructsRpcCollectionFlags;3552 readonly flags: UpDataStructsRpcCollectionFlags;3506 }3553 }350735543508 /** @name UpDataStructsRpcCollectionFlags (413) */3555 /** @name UpDataStructsRpcCollectionFlags (418) */3509 interface UpDataStructsRpcCollectionFlags extends Struct {3556 interface UpDataStructsRpcCollectionFlags extends Struct {3510 readonly foreign: bool;3557 readonly foreign: bool;3511 readonly erc721metadata: bool;3558 readonly erc721metadata: bool;3512 }3559 }351335603514 /** @name RmrkTraitsCollectionCollectionInfo (414) */3561 /** @name RmrkTraitsCollectionCollectionInfo (419) */3515 interface RmrkTraitsCollectionCollectionInfo extends Struct {3562 interface RmrkTraitsCollectionCollectionInfo extends Struct {3516 readonly issuer: AccountId32;3563 readonly issuer: AccountId32;3517 readonly metadata: Bytes;3564 readonly metadata: Bytes;3520 readonly nftsCount: u32;3567 readonly nftsCount: u32;3521 }3568 }352235693523 /** @name RmrkTraitsNftNftInfo (415) */3570 /** @name RmrkTraitsNftNftInfo (420) */3524 interface RmrkTraitsNftNftInfo extends Struct {3571 interface RmrkTraitsNftNftInfo extends Struct {3525 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3572 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3526 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3573 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3529 readonly pending: bool;3576 readonly pending: bool;3530 }3577 }353135783532 /** @name RmrkTraitsNftRoyaltyInfo (417) */3579 /** @name RmrkTraitsNftRoyaltyInfo (422) */3533 interface RmrkTraitsNftRoyaltyInfo extends Struct {3580 interface RmrkTraitsNftRoyaltyInfo extends Struct {3534 readonly recipient: AccountId32;3581 readonly recipient: AccountId32;3535 readonly amount: Permill;3582 readonly amount: Permill;3536 }3583 }353735843538 /** @name RmrkTraitsResourceResourceInfo (418) */3585 /** @name RmrkTraitsResourceResourceInfo (423) */3539 interface RmrkTraitsResourceResourceInfo extends Struct {3586 interface RmrkTraitsResourceResourceInfo extends Struct {3540 readonly id: u32;3587 readonly id: u32;3541 readonly resource: RmrkTraitsResourceResourceTypes;3588 readonly resource: RmrkTraitsResourceResourceTypes;3542 readonly pending: bool;3589 readonly pending: bool;3543 readonly pendingRemoval: bool;3590 readonly pendingRemoval: bool;3544 }3591 }354535923546 /** @name RmrkTraitsPropertyPropertyInfo (419) */3593 /** @name RmrkTraitsPropertyPropertyInfo (424) */3547 interface RmrkTraitsPropertyPropertyInfo extends Struct {3594 interface RmrkTraitsPropertyPropertyInfo extends Struct {3548 readonly key: Bytes;3595 readonly key: Bytes;3549 readonly value: Bytes;3596 readonly value: Bytes;3550 }3597 }355135983552 /** @name RmrkTraitsBaseBaseInfo (420) */3599 /** @name RmrkTraitsBaseBaseInfo (425) */3553 interface RmrkTraitsBaseBaseInfo extends Struct {3600 interface RmrkTraitsBaseBaseInfo extends Struct {3554 readonly issuer: AccountId32;3601 readonly issuer: AccountId32;3555 readonly baseType: Bytes;3602 readonly baseType: Bytes;3556 readonly symbol: Bytes;3603 readonly symbol: Bytes;3557 }3604 }355836053559 /** @name RmrkTraitsNftNftChild (421) */3606 /** @name RmrkTraitsNftNftChild (426) */3560 interface RmrkTraitsNftNftChild extends Struct {3607 interface RmrkTraitsNftNftChild extends Struct {3561 readonly collectionId: u32;3608 readonly collectionId: u32;3562 readonly nftId: u32;3609 readonly nftId: u32;3563 }3610 }356436113565 /** @name PalletCommonError (423) */3612 /** @name PalletCommonError (428) */3566 interface PalletCommonError extends Enum {3613 interface PalletCommonError extends Enum {3567 readonly isCollectionNotFound: boolean;3614 readonly isCollectionNotFound: boolean;3568 readonly isMustBeTokenOwner: boolean;3615 readonly isMustBeTokenOwner: boolean;3601 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';3648 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal';3602 }3649 }360336503604 /** @name PalletFungibleError (425) */3651 /** @name PalletFungibleError (430) */3605 interface PalletFungibleError extends Enum {3652 interface PalletFungibleError extends Enum {3606 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3653 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3607 readonly isFungibleItemsHaveNoId: boolean;3654 readonly isFungibleItemsHaveNoId: boolean;3611 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3658 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3612 }3659 }361336603614 /** @name PalletRefungibleItemData (426) */3661 /** @name PalletRefungibleItemData (431) */3615 interface PalletRefungibleItemData extends Struct {3662 interface PalletRefungibleItemData extends Struct {3616 readonly constData: Bytes;3663 readonly constData: Bytes;3617 }3664 }361836653619 /** @name PalletRefungibleError (431) */3666 /** @name PalletRefungibleError (436) */3620 interface PalletRefungibleError extends Enum {3667 interface PalletRefungibleError extends Enum {3621 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3668 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3622 readonly isWrongRefungiblePieces: boolean;3669 readonly isWrongRefungiblePieces: boolean;3626 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3673 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3627 }3674 }362836753629 /** @name PalletNonfungibleItemData (432) */3676 /** @name PalletNonfungibleItemData (437) */3630 interface PalletNonfungibleItemData extends Struct {3677 interface PalletNonfungibleItemData extends Struct {3631 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3678 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3632 }3679 }363336803634 /** @name UpDataStructsPropertyScope (434) */3681 /** @name UpDataStructsPropertyScope (439) */3635 interface UpDataStructsPropertyScope extends Enum {3682 interface UpDataStructsPropertyScope extends Enum {3636 readonly isNone: boolean;3683 readonly isNone: boolean;3637 readonly isRmrk: boolean;3684 readonly isRmrk: boolean;3638 readonly type: 'None' | 'Rmrk';3685 readonly type: 'None' | 'Rmrk';3639 }3686 }364036873641 /** @name PalletNonfungibleError (436) */3688 /** @name PalletNonfungibleError (441) */3642 interface PalletNonfungibleError extends Enum {3689 interface PalletNonfungibleError extends Enum {3643 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3690 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3644 readonly isNonfungibleItemsHaveNoAmount: boolean;3691 readonly isNonfungibleItemsHaveNoAmount: boolean;3645 readonly isCantBurnNftWithChildren: boolean;3692 readonly isCantBurnNftWithChildren: boolean;3646 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3693 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3647 }3694 }364836953649 /** @name PalletStructureError (437) */3696 /** @name PalletStructureError (442) */3650 interface PalletStructureError extends Enum {3697 interface PalletStructureError extends Enum {3651 readonly isOuroborosDetected: boolean;3698 readonly isOuroborosDetected: boolean;3652 readonly isDepthLimit: boolean;3699 readonly isDepthLimit: boolean;3655 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3702 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3656 }3703 }365737043658 /** @name PalletRmrkCoreError (438) */3705 /** @name PalletRmrkCoreError (443) */3659 interface PalletRmrkCoreError extends Enum {3706 interface PalletRmrkCoreError extends Enum {3660 readonly isCorruptedCollectionType: boolean;3707 readonly isCorruptedCollectionType: boolean;3661 readonly isRmrkPropertyKeyIsTooLong: boolean;3708 readonly isRmrkPropertyKeyIsTooLong: boolean;3679 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3726 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3680 }3727 }368137283682 /** @name PalletRmrkEquipError (440) */3729 /** @name PalletRmrkEquipError (445) */3683 interface PalletRmrkEquipError extends Enum {3730 interface PalletRmrkEquipError extends Enum {3684 readonly isPermissionError: boolean;3731 readonly isPermissionError: boolean;3685 readonly isNoAvailableBaseId: boolean;3732 readonly isNoAvailableBaseId: boolean;3691 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3738 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3692 }3739 }369337403694 /** @name PalletAppPromotionError (446) */3741 /** @name PalletAppPromotionError (451) */3695 interface PalletAppPromotionError extends Enum {3742 interface PalletAppPromotionError extends Enum {3696 readonly isAdminNotSet: boolean;3743 readonly isAdminNotSet: boolean;3697 readonly isNoPermission: boolean;3744 readonly isNoPermission: boolean;3702 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3749 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3703 }3750 }370437513705 /** @name PalletForeignAssetsModuleError (447) */3752 /** @name PalletForeignAssetsModuleError (452) */3706 interface PalletForeignAssetsModuleError extends Enum {3753 interface PalletForeignAssetsModuleError extends Enum {3707 readonly isBadLocation: boolean;3754 readonly isBadLocation: boolean;3708 readonly isMultiLocationExisted: boolean;3755 readonly isMultiLocationExisted: boolean;3711 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3758 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3712 }3759 }371337603714 /** @name PalletEvmError (450) */3761 /** @name PalletEvmError (454) */3715 interface PalletEvmError extends Enum {3762 interface PalletEvmError extends Enum {3716 readonly isBalanceLow: boolean;3763 readonly isBalanceLow: boolean;3717 readonly isFeeOverflow: boolean;3764 readonly isFeeOverflow: boolean;3726 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3773 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3727 }3774 }372837753729 /** @name FpRpcTransactionStatus (453) */3776 /** @name FpRpcTransactionStatus (457) */3730 interface FpRpcTransactionStatus extends Struct {3777 interface FpRpcTransactionStatus extends Struct {3731 readonly transactionHash: H256;3778 readonly transactionHash: H256;3732 readonly transactionIndex: u32;3779 readonly transactionIndex: u32;3737 readonly logsBloom: EthbloomBloom;3784 readonly logsBloom: EthbloomBloom;3738 }3785 }373937863740 /** @name EthbloomBloom (455) */3787 /** @name EthbloomBloom (459) */3741 interface EthbloomBloom extends U8aFixed {}3788 interface EthbloomBloom extends U8aFixed {}374237893743 /** @name EthereumReceiptReceiptV3 (457) */3790 /** @name EthereumReceiptReceiptV3 (461) */3744 interface EthereumReceiptReceiptV3 extends Enum {3791 interface EthereumReceiptReceiptV3 extends Enum {3745 readonly isLegacy: boolean;3792 readonly isLegacy: boolean;3746 readonly asLegacy: EthereumReceiptEip658ReceiptData;3793 readonly asLegacy: EthereumReceiptEip658ReceiptData;3751 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3798 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3752 }3799 }375338003754 /** @name EthereumReceiptEip658ReceiptData (458) */3801 /** @name EthereumReceiptEip658ReceiptData (462) */3755 interface EthereumReceiptEip658ReceiptData extends Struct {3802 interface EthereumReceiptEip658ReceiptData extends Struct {3756 readonly statusCode: u8;3803 readonly statusCode: u8;3757 readonly usedGas: U256;3804 readonly usedGas: U256;3758 readonly logsBloom: EthbloomBloom;3805 readonly logsBloom: EthbloomBloom;3759 readonly logs: Vec<EthereumLog>;3806 readonly logs: Vec<EthereumLog>;3760 }3807 }376138083762 /** @name EthereumBlock (459) */3809 /** @name EthereumBlock (463) */3763 interface EthereumBlock extends Struct {3810 interface EthereumBlock extends Struct {3764 readonly header: EthereumHeader;3811 readonly header: EthereumHeader;3765 readonly transactions: Vec<EthereumTransactionTransactionV2>;3812 readonly transactions: Vec<EthereumTransactionTransactionV2>;3766 readonly ommers: Vec<EthereumHeader>;3813 readonly ommers: Vec<EthereumHeader>;3767 }3814 }376838153769 /** @name EthereumHeader (460) */3816 /** @name EthereumHeader (464) */3770 interface EthereumHeader extends Struct {3817 interface EthereumHeader extends Struct {3771 readonly parentHash: H256;3818 readonly parentHash: H256;3772 readonly ommersHash: H256;3819 readonly ommersHash: H256;3785 readonly nonce: EthereumTypesHashH64;3832 readonly nonce: EthereumTypesHashH64;3786 }3833 }378738343788 /** @name EthereumTypesHashH64 (461) */3835 /** @name EthereumTypesHashH64 (465) */3789 interface EthereumTypesHashH64 extends U8aFixed {}3836 interface EthereumTypesHashH64 extends U8aFixed {}379038373791 /** @name PalletEthereumError (466) */3838 /** @name PalletEthereumError (470) */3792 interface PalletEthereumError extends Enum {3839 interface PalletEthereumError extends Enum {3793 readonly isInvalidSignature: boolean;3840 readonly isInvalidSignature: boolean;3794 readonly isPreLogExists: boolean;3841 readonly isPreLogExists: boolean;3795 readonly type: 'InvalidSignature' | 'PreLogExists';3842 readonly type: 'InvalidSignature' | 'PreLogExists';3796 }3843 }379738443798 /** @name PalletEvmCoderSubstrateError (467) */3845 /** @name PalletEvmCoderSubstrateError (471) */3799 interface PalletEvmCoderSubstrateError extends Enum {3846 interface PalletEvmCoderSubstrateError extends Enum {3800 readonly isOutOfGas: boolean;3847 readonly isOutOfGas: boolean;3801 readonly isOutOfFund: boolean;3848 readonly isOutOfFund: boolean;3802 readonly type: 'OutOfGas' | 'OutOfFund';3849 readonly type: 'OutOfGas' | 'OutOfFund';3803 }3850 }380438513805 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (468) */3852 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (472) */3806 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3853 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3807 readonly isDisabled: boolean;3854 readonly isDisabled: boolean;3808 readonly isUnconfirmed: boolean;3855 readonly isUnconfirmed: boolean;3812 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3859 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3813 }3860 }381438613815 /** @name PalletEvmContractHelpersSponsoringModeT (469) */3862 /** @name PalletEvmContractHelpersSponsoringModeT (473) */3816 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3863 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3817 readonly isDisabled: boolean;3864 readonly isDisabled: boolean;3818 readonly isAllowlisted: boolean;3865 readonly isAllowlisted: boolean;3819 readonly isGenerous: boolean;3866 readonly isGenerous: boolean;3820 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3867 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3821 }3868 }382238693823 /** @name PalletEvmContractHelpersError (475) */3870 /** @name PalletEvmContractHelpersError (479) */3824 interface PalletEvmContractHelpersError extends Enum {3871 interface PalletEvmContractHelpersError extends Enum {3825 readonly isNoPermission: boolean;3872 readonly isNoPermission: boolean;3826 readonly isNoPendingSponsor: boolean;3873 readonly isNoPendingSponsor: boolean;3827 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3874 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3828 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3875 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3829 }3876 }383038773831 /** @name PalletEvmMigrationError (476) */3878 /** @name PalletEvmMigrationError (480) */3832 interface PalletEvmMigrationError extends Enum {3879 interface PalletEvmMigrationError extends Enum {3833 readonly isAccountNotEmpty: boolean;3880 readonly isAccountNotEmpty: boolean;3834 readonly isAccountIsNotMigrating: boolean;3881 readonly isAccountIsNotMigrating: boolean;3882 readonly isBadEvent: boolean;3835 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3883 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3836 }3884 }383738853838 /** @name PalletMaintenanceError (477) */3886 /** @name PalletMaintenanceError (481) */3839 type PalletMaintenanceError = Null;3887 type PalletMaintenanceError = Null;384038883841 /** @name PalletTestUtilsError (478) */3889 /** @name PalletTestUtilsError (482) */3842 interface PalletTestUtilsError extends Enum {3890 interface PalletTestUtilsError extends Enum {3843 readonly isTestPalletDisabled: boolean;3891 readonly isTestPalletDisabled: boolean;3844 readonly isTriggerRollback: boolean;3892 readonly isTriggerRollback: boolean;3845 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3893 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3846 }3894 }384738953848 /** @name SpRuntimeMultiSignature (480) */3896 /** @name SpRuntimeMultiSignature (484) */3849 interface SpRuntimeMultiSignature extends Enum {3897 interface SpRuntimeMultiSignature extends Enum {3850 readonly isEd25519: boolean;3898 readonly isEd25519: boolean;3851 readonly asEd25519: SpCoreEd25519Signature;3899 readonly asEd25519: SpCoreEd25519Signature;3856 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3904 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3857 }3905 }385839063859 /** @name SpCoreEd25519Signature (481) */3907 /** @name SpCoreEd25519Signature (485) */3860 interface SpCoreEd25519Signature extends U8aFixed {}3908 interface SpCoreEd25519Signature extends U8aFixed {}386139093862 /** @name SpCoreSr25519Signature (483) */3910 /** @name SpCoreSr25519Signature (487) */3863 interface SpCoreSr25519Signature extends U8aFixed {}3911 interface SpCoreSr25519Signature extends U8aFixed {}386439123865 /** @name SpCoreEcdsaSignature (484) */3913 /** @name SpCoreEcdsaSignature (488) */3866 interface SpCoreEcdsaSignature extends U8aFixed {}3914 interface SpCoreEcdsaSignature extends U8aFixed {}386739153868 /** @name FrameSystemExtensionsCheckSpecVersion (487) */3916 /** @name FrameSystemExtensionsCheckSpecVersion (491) */3869 type FrameSystemExtensionsCheckSpecVersion = Null;3917 type FrameSystemExtensionsCheckSpecVersion = Null;387039183871 /** @name FrameSystemExtensionsCheckTxVersion (488) */3919 /** @name FrameSystemExtensionsCheckTxVersion (492) */3872 type FrameSystemExtensionsCheckTxVersion = Null;3920 type FrameSystemExtensionsCheckTxVersion = Null;387339213874 /** @name FrameSystemExtensionsCheckGenesis (489) */3922 /** @name FrameSystemExtensionsCheckGenesis (493) */3875 type FrameSystemExtensionsCheckGenesis = Null;3923 type FrameSystemExtensionsCheckGenesis = Null;387639243877 /** @name FrameSystemExtensionsCheckNonce (492) */3925 /** @name FrameSystemExtensionsCheckNonce (496) */3878 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}3926 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}387939273880 /** @name FrameSystemExtensionsCheckWeight (493) */3928 /** @name FrameSystemExtensionsCheckWeight (497) */3881 type FrameSystemExtensionsCheckWeight = Null;3929 type FrameSystemExtensionsCheckWeight = Null;388239303883 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (494) */3931 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (498) */3884 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;3932 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;388539333886 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (495) */3934 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (499) */3887 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}3935 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}388839363889 /** @name OpalRuntimeRuntime (496) */3937 /** @name OpalRuntimeRuntime (500) */3890 type OpalRuntimeRuntime = Null;3938 type OpalRuntimeRuntime = Null;389139393892 /** @name PalletEthereumFakeTransactionFinalizer (497) */3940 /** @name PalletEthereumFakeTransactionFinalizer (501) */3893 type PalletEthereumFakeTransactionFinalizer = Null;3941 type PalletEthereumFakeTransactionFinalizer = Null;389439423895} // declare module3943} // declare module