git.delta.rocks / unique-network / refs/commits / 4072e104889f

difftreelog

test regenerate types

Yaroslav Bolyukin2022-09-16parent: #0a85bcf.patch.diff
in: master

10 files changed

modifiedtests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth
8import type { ApiTypes, AugmentedConst } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedConst } from '@polkadot/api-base/types';
9import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { Option, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
10import type { Codec } from '@polkadot/types-codec/types';10import type { Codec } from '@polkadot/types-codec/types';
11import type { Permill, Perbill } from '@polkadot/types/interfaces/runtime';11import type { Perbill, Permill } from '@polkadot/types/interfaces/runtime';
12import type { FrameSupportPalletId, FrameSupportWeightsRuntimeDbWeight, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, XcmV1MultiLocation } from '@polkadot/types/lookup';12import type { FrameSupportPalletId, FrameSupportWeightsRuntimeDbWeight, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, SpVersionRuntimeVersion, XcmV1MultiLocation } from '@polkadot/types/lookup';
1313
14export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;14export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
24 * Decimals for the `Currency`.24 * Decimals for the `Currency`.
25 **/25 **/
26 nominal: u128 & AugmentedConst<ApiType>;26 nominal: u128 & AugmentedConst<ApiType>;
27 /**27 /**
28 * The app's pallet id, used for deriving its sovereign account ID.28 * The app's pallet id, used for deriving its sovereign account address.
29 **/29 **/
30 palletId: FrameSupportPalletId & AugmentedConst<ApiType>;30 palletId: FrameSupportPalletId & AugmentedConst<ApiType>;
31 /**31 /**
32 * In parachain blocks.32 * In parachain blocks.
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
302 * This method is only executable by contract owner302 * This method is only executable by contract owner
303 **/303 **/
304 NoPermission: AugmentedError<ApiType>;304 NoPermission: AugmentedError<ApiType>;
305 /**
306 * Number of methods that sponsored limit is defined for exceeds maximum.
307 **/
308 TooManyMethodsHaveSponsoredLimit: AugmentedError<ApiType>;
305 /**309 /**
306 * Generic error310 * Generic error
307 **/311 **/
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
16declare module '@polkadot/api-base/types/events' {16declare module '@polkadot/api-base/types/events' {
17 interface AugmentedEvents<ApiType extends ApiTypes> {17 interface AugmentedEvents<ApiType extends ApiTypes> {
18 appPromotion: {18 appPromotion: {
19 /**19 /**
20 * The admin was set20 * The admin was set
21 * 21 *
22 * # Arguments22 * # Arguments
23 * * AccountId: ID of the admin23 * * AccountId: account address of the admin
24 **/24 **/
25 SetAdmin: AugmentedEvent<ApiType, [AccountId32]>;25 SetAdmin: AugmentedEvent<ApiType, [AccountId32]>;
26 /**26 /**
27 * Staking was performed27 * Staking was performed
28 * 28 *
29 * # Arguments29 * # Arguments
30 * * AccountId: ID of the staker30 * * AccountId: account of the staker
31 * * Balance : staking amount31 * * Balance : staking amount
32 **/32 **/
33 Stake: AugmentedEvent<ApiType, [AccountId32, u128]>;33 Stake: AugmentedEvent<ApiType, [AccountId32, u128]>;
34 /**34 /**
35 * Staking recalculation was performed35 * Staking recalculation was performed
36 * 36 *
37 * # Arguments37 * # Arguments
38 * * AccountId: ID of the staker.38 * * AccountId: account of the staker.
39 * * Balance : recalculation base39 * * Balance : recalculation base
40 * * Balance : total income40 * * Balance : total income
41 **/41 **/
42 StakingRecalculation: AugmentedEvent<ApiType, [AccountId32, u128, u128]>;42 StakingRecalculation: AugmentedEvent<ApiType, [AccountId32, u128, u128]>;
43 /**43 /**
44 * Unstaking was performed44 * Unstaking was performed
45 * 45 *
46 * # Arguments46 * # Arguments
47 * * AccountId: ID of the staker47 * * AccountId: account of the staker
48 * * Balance : unstaking amount48 * * Balance : unstaking amount
49 **/49 **/
50 Unstake: AugmentedEvent<ApiType, [AccountId32, u128]>;50 Unstake: AugmentedEvent<ApiType, [AccountId32, u128]>;
51 /**51 /**
52 * Generic event52 * Generic event
246 **/246 **/
247 [key: string]: AugmentedEvent<ApiType>;247 [key: string]: AugmentedEvent<ApiType>;
248 };248 };
249 foreignAssets: {
250 /**
251 * The asset registered.
252 **/
253 AssetRegistered: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;
254 /**
255 * The asset updated.
256 **/
257 AssetUpdated: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;
258 /**
259 * The foreign asset registered.
260 **/
261 ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;
262 /**
263 * The foreign asset updated.
264 **/
265 ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;
266 /**
267 * Generic event
268 **/
269 [key: string]: AugmentedEvent<ApiType>;
270 },
271 evmContractHelpers: {249 evmContractHelpers: {
272 /**250 /**
273 * Collection sponsor was removed.251 * Collection sponsor was removed.
286 **/264 **/
287 [key: string]: AugmentedEvent<ApiType>;265 [key: string]: AugmentedEvent<ApiType>;
288 };266 };
267 foreignAssets: {
268 /**
269 * The asset registered.
270 **/
271 AssetRegistered: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;
272 /**
273 * The asset updated.
274 **/
275 AssetUpdated: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;
276 /**
277 * The foreign asset registered.
278 **/
279 ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;
280 /**
281 * The foreign asset updated.
282 **/
283 ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;
284 /**
285 * Generic event
286 **/
287 [key: string]: AugmentedEvent<ApiType>;
288 };
289 parachainSystem: {289 parachainSystem: {
290 /**290 /**
291 * Downward messages were processed using the given weight.291 * Downward messages were processed using the given weight.
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
11import 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';
12import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';10import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
13import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';11import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
14import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReleases, PalletBalancesReserveData, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletNonfungibleItemData, PalletRefungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletUniqueSchedulerScheduledV3, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, PalletForeignAssetsAssetIds, XcmV1MultiLocation, PalletForeignAssetsModuleAssetMetadata, OrmlTokensAccountData, OrmlTokensReserveData } from '@polkadot/types/lookup';12import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportWeightsPerDispatchClassU64, 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';
15import type { Observable } from '@polkadot/types/types';13import type { Observable } from '@polkadot/types/types';
1614
17export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;15export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
20declare module '@polkadot/api-base/types/storage' {18declare module '@polkadot/api-base/types/storage' {
21 interface AugmentedQueries<ApiType extends ApiTypes> {19 interface AugmentedQueries<ApiType extends ApiTypes> {
22 appPromotion: {20 appPromotion: {
21 /**
22 * Stores the `admin` account. Some extrinsics can only be executed if they were signed by `admin`.
23 **/
23 admin: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;24 admin: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
24 /**25 /**
25 * Stores a key for record for which the next revenue recalculation would be performed.26 * Stores a key for record for which the next revenue recalculation would be performed.
26 * If `None`, then recalculation has not yet been performed or calculations have been completed for all stakers.27 * If `None`, then recalculation has not yet been performed or calculations have been completed for all stakers.
27 **/28 **/
28 nextCalculatedRecord: AugmentedQuery<ApiType, () => Observable<Option<ITuple<[AccountId32, u32]>>>, []> & QueryableStorageEntry<ApiType, []>;29 nextCalculatedRecord: AugmentedQuery<ApiType, () => Observable<Option<ITuple<[AccountId32, u32]>>>, []> & QueryableStorageEntry<ApiType, []>;
30 /**
31 * Stores amount of stakes for an `Account`.
32 *
33 * * **Key** - Staker account.
34 * * **Value** - Amount of stakes.
35 **/
29 pendingUnstake: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[AccountId32, u128]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;36 pendingUnstake: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[AccountId32, u128]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
30 /**37 /**
31 * Amount of tokens staked by account in the blocknumber.38 * Stores the amount of tokens staked by account in the blocknumber.
32 **/39 *
40 * * **Key1** - Staker account.
41 * * **Key2** - Relay block number when the stake was made.
42 * * **(Balance, BlockNumber)** - Balance of the stake.
43 * The number of the relay block in which we must perform the interest recalculation
44 **/
33 staked: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<ITuple<[u128, u32]>>, [AccountId32, u32]> & QueryableStorageEntry<ApiType, [AccountId32, u32]>;45 staked: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<ITuple<[u128, u32]>>, [AccountId32, u32]> & QueryableStorageEntry<ApiType, [AccountId32, u32]>;
34 /**46 /**
35 * Amount of stakes for an Account47 * Stores amount of stakes for an `Account`.
36 **/48 *
49 * * **Key** - Staker account.
50 * * **Value** - Amount of stakes.
51 **/
37 stakesPerAccount: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u8>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;52 stakesPerAccount: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u8>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
53 /**
54 * Stores the total staked amount.
55 **/
38 totalStaked: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;56 totalStaked: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;
39 /**57 /**
40 * Generic query58 * Generic query
247 **/265 **/
248 owner: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<H160>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;266 owner: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<H160>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
249 selfSponsoring: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<bool>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;267 selfSponsoring: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<bool>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
250 /**
251 * Storage for last sponsored block.
252 *
253 * * **Key1** - contract address.
254 * * **Key2** - sponsored user address.
255 * * **Value** - last sponsored block number.
256 **/
257 sponsorBasket: AugmentedQuery<ApiType, (arg1: H160 | string | Uint8Array, arg2: H160 | string | Uint8Array) => Observable<Option<u32>>, [H160, H160]> & QueryableStorageEntry<ApiType, [H160, H160]>;268 sponsorBasket: AugmentedQuery<ApiType, (arg1: H160 | string | Uint8Array, arg2: H160 | string | Uint8Array) => Observable<Option<u32>>, [H160, H160]> & QueryableStorageEntry<ApiType, [H160, H160]>;
258 /**269 /**
259 * Store for contract sponsorship state.270 * Store for contract sponsorship state.
262 * * **Value** - sponsorship state.273 * * **Value** - sponsorship state.
263 **/274 **/
264 sponsoring: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<UpDataStructsSponsorshipStateBasicCrossAccountIdRepr>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;275 sponsoring: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<UpDataStructsSponsorshipStateBasicCrossAccountIdRepr>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
276 /**
277 * Storage for last sponsored block.
278 *
279 * * **Key1** - contract address.
280 * * **Key2** - sponsored user address.
281 * * **Value** - last sponsored block number.
282 **/
283 sponsoringFeeLimit: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<BTreeMap<u32, U256>>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
265 /**284 /**
266 * Store for sponsoring mode.285 * Store for sponsoring mode.
267 * 286 *
335 * Amount of tokens owned by an account inside a collection.354 * Amount of tokens owned by an account inside a collection.
336 **/355 **/
337 balance: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PalletEvmAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array) => Observable<u128>, [u32, PalletEvmAccountBasicCrossAccountIdRepr]> & QueryableStorageEntry<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;356 balance: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PalletEvmAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array) => Observable<u128>, [u32, PalletEvmAccountBasicCrossAccountIdRepr]> & QueryableStorageEntry<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;
338 /**
339 * Foreign collection flag
340 **/
341 foreignCollection: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<bool>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
342 /**357 /**
343 * Total amount of fungible tokens inside a collection.358 * Total amount of fungible tokens inside a collection.
344 **/359 **/
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
18declare module '@polkadot/api-base/types/submittable' {18declare module '@polkadot/api-base/types/submittable' {
19 interface AugmentedSubmittables<ApiType extends ApiTypes> {19 interface AugmentedSubmittables<ApiType extends ApiTypes> {
20 appPromotion: {20 appPromotion: {
21 /**
22 * Recalculates interest for the specified number of stakers.
23 * If all stakers are not recalculated, the next call of the extrinsic
24 * will continue the recalculation, from those stakers for whom this
25 * was not perform in last call.
26 *
27 * # Permissions
28 *
29 * * Pallet admin
30 *
31 * # Arguments
32 *
33 * * `stakers_number`: the number of stakers for which recalculation will be performed
34 **/
21 payoutStakers: AugmentedSubmittable<(stakersNumber: Option<u8> | null | Uint8Array | u8 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u8>]>;35 payoutStakers: AugmentedSubmittable<(stakersNumber: Option<u8> | null | Uint8Array | u8 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u8>]>;
36 /**
37 * Sets an address as the the admin.
38 *
39 * # Permissions
40 *
41 * * Sudo
42 *
43 * # Arguments
44 *
45 * * `admin`: account of the new admin.
46 **/
22 setAdminAddress: AugmentedSubmittable<(admin: PalletEvmAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletEvmAccountBasicCrossAccountIdRepr]>;47 setAdminAddress: AugmentedSubmittable<(admin: PalletEvmAccountBasicCrossAccountIdRepr | { Substrate: any } | { Ethereum: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletEvmAccountBasicCrossAccountIdRepr]>;
48 /**
49 * Sets the pallet to be the sponsor for the collection.
50 *
51 * # Permissions
52 *
53 * * Pallet admin
54 *
55 * # Arguments
56 *
57 * * `collection_id`: ID of the collection that will be sponsored by `pallet_id`
58 **/
23 sponsorCollection: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;59 sponsorCollection: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
60 /**
61 * Sets the pallet to be the sponsor for the contract.
62 *
63 * # Permissions
64 *
65 * * Pallet admin
66 *
67 * # Arguments
68 *
69 * * `contract_id`: the contract address that will be sponsored by `pallet_id`
70 **/
24 sponsorContract: AugmentedSubmittable<(contractId: H160 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H160]>;71 sponsorContract: AugmentedSubmittable<(contractId: H160 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H160]>;
72 /**
73 * Stakes the amount of native tokens.
74 * Sets `amount` to the locked state.
75 * The maximum number of stakes for a staker is 10.
76 *
77 * # Arguments
78 *
79 * * `amount`: in native tokens.
80 **/
25 stake: AugmentedSubmittable<(amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u128]>;81 stake: AugmentedSubmittable<(amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u128]>;
82 /**
83 * Removes the pallet as the sponsor for the collection.
84 * Returns [`NoPermission`][`Error::NoPermission`]
85 * if the pallet wasn't the sponsor.
86 *
87 * # Permissions
88 *
89 * * Pallet admin
90 *
91 * # Arguments
92 *
93 * * `collection_id`: ID of the collection that is sponsored by `pallet_id`
94 **/
26 stopSponsoringCollection: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;95 stopSponsoringCollection: AugmentedSubmittable<(collectionId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
96 /**
97 * Removes the pallet as the sponsor for the contract.
98 * Returns [`NoPermission`][`Error::NoPermission`]
99 * if the pallet wasn't the sponsor.
100 *
101 * # Permissions
102 *
103 * * Pallet admin
104 *
105 * # Arguments
106 *
107 * * `contract_id`: the contract address that is sponsored by `pallet_id`
108 **/
27 stopSponsoringContract: AugmentedSubmittable<(contractId: H160 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H160]>;109 stopSponsoringContract: AugmentedSubmittable<(contractId: H160 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H160]>;
110 /**
111 * Unstakes all stakes.
112 * Moves the sum of all stakes to the `reserved` state.
113 * After the end of `PendingInterval` this sum becomes completely
114 * free for further use.
115 **/
28 unstake: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;116 unstake: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
29 /**117 /**
30 * Generic tx118 * Generic tx
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';
7
87
9import 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, 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, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, 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, 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, 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, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm,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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, 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, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, 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, 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, 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';
10 OrmlTokensAccountData,OrmlTokensBalanceLock,OrmlTokensModuleCall,OrmlTokensModuleError,OrmlTokensModuleEvent,OrmlTokensReserveData,OrmlXtokensModuleCall,OrmlXtokensModuleError,OrmlXtokensModuleEvent,
11 PalletForeignAssetsAssetIds,PalletForeignAssetsModuleAssetMetadata,PalletForeignAssetsModuleCall,PalletForeignAssetsModuleError,PalletForeignAssetsModuleEvent,PalletForeignAssetsNativeCurrency, XcmVersionedMultiAsset } from './default';
12import type { Data, StorageKey } from '@polkadot/types';9import type { Data, StorageKey } from '@polkadot/types';
13import 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';
14import 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';
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
1426export interface PalletEvmContractHelpersError extends Enum {1426export interface PalletEvmContractHelpersError extends Enum {
1427 readonly isNoPermission: boolean;1427 readonly isNoPermission: boolean;
1428 readonly isNoPendingSponsor: boolean;1428 readonly isNoPendingSponsor: boolean;
1429 readonly isTooManyMethodsHaveSponsoredLimit: boolean;
1429 readonly type: 'NoPermission' | 'NoPendingSponsor';1430 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
1430}1431}
14311432
1432/** @name PalletEvmContractHelpersEvent */1433/** @name PalletEvmContractHelpersEvent */
2809 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;2810 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;
2810 readonly limits: UpDataStructsCollectionLimits;2811 readonly limits: UpDataStructsCollectionLimits;
2811 readonly permissions: UpDataStructsCollectionPermissions;2812 readonly permissions: UpDataStructsCollectionPermissions;
2812 readonly externalCollection: bool;2813 readonly flags: U8aFixed;
2813}2814}
28142815
2815/** @name UpDataStructsCollectionLimits */2816/** @name UpDataStructsCollectionLimits */
2983 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2984 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;
2984 readonly properties: Vec<UpDataStructsProperty>;2985 readonly properties: Vec<UpDataStructsProperty>;
2985 readonly readOnly: bool;2986 readonly readOnly: bool;
2987 readonly foreign: bool;
2986}2988}
29872989
2988/** @name UpDataStructsSponsoringRateLimit */2990/** @name UpDataStructsSponsoringRateLimit */
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
1161 }1161 }
1162 }1162 }
1163 },1163 },
1164 /**
1165 * Lookup107: pallet_app_promotion::pallet::Event<T>
1166 **/
1167 PalletAppPromotionEvent: {
1168 _enum: {
1169 StakingRecalculation: '(AccountId32,u128,u128)',
1170 Stake: '(AccountId32,u128)',
1171 Unstake: '(AccountId32,u128)',
1172 SetAdmin: 'AccountId32'
1173 }
1174 },
1164 /**1175 /**
1165 * Lookup107: pallet_foreign_assets::module::Event<T>1176 * Lookup108: pallet_foreign_assets::module::Event<T>
1166 **/1177 **/
1167 PalletForeignAssetsModuleEvent: {1178 PalletForeignAssetsModuleEvent: {
1168 _enum: {1179 _enum: {
1169 ForeignAssetRegistered: {1180 ForeignAssetRegistered: {
1186 }1197 }
1187 }1198 }
1188 },1199 },
1189 /**1200 /**
1190 * Lookup108: pallet_foreign_assets::module::AssetMetadata<Balance>1201 * Lookup109: pallet_foreign_assets::module::AssetMetadata<Balance>
1191 **/1202 **/
1192 PalletForeignAssetsModuleAssetMetadata: {1203 PalletForeignAssetsModuleAssetMetadata: {
1193 name: 'Bytes',1204 name: 'Bytes',
1194 symbol: 'Bytes',1205 symbol: 'Bytes',
1195 decimals: 'u8',1206 decimals: 'u8',
1196 minimalBalance: 'u128'1207 minimalBalance: 'u128'
1197 },1208 },
1198 /**
1199 * Lookup109: pallet_evm::pallet::Event<T>
1200 * Lookup103: pallet_app_promotion::pallet::Event<T>
1201 **/
1202 PalletAppPromotionEvent: {
1203 _enum: {
1204 StakingRecalculation: '(AccountId32,u128,u128)',
1205 Stake: '(AccountId32,u128)',
1206 Unstake: '(AccountId32,u128)',
1207 SetAdmin: 'AccountId32'
1208 }
1209 },
1210 /**1209 /**
1211 * Lookup104: pallet_evm::pallet::Event<T>1210 * Lookup110: pallet_evm::pallet::Event<T>
1212 **/1211 **/
1213 PalletEvmEvent: {1212 PalletEvmEvent: {
1214 _enum: {1213 _enum: {
1215 Log: 'EthereumLog',1214 Log: 'EthereumLog',
1221 BalanceWithdraw: '(AccountId32,H160,U256)'1220 BalanceWithdraw: '(AccountId32,H160,U256)'
1222 }1221 }
1223 },1222 },
1224 /**1223 /**
1225 * Lookup105: ethereum::log::Log1224 * Lookup111: ethereum::log::Log
1226 **/1225 **/
1227 EthereumLog: {1226 EthereumLog: {
1228 address: 'H160',1227 address: 'H160',
1229 topics: 'Vec<H256>',1228 topics: 'Vec<H256>',
1230 data: 'Bytes'1229 data: 'Bytes'
1231 },1230 },
1232 /**1231 /**
1233 * Lookup109: pallet_ethereum::pallet::Event1232 * Lookup115: pallet_ethereum::pallet::Event
1234 **/1233 **/
1235 PalletEthereumEvent: {1234 PalletEthereumEvent: {
1236 _enum: {1235 _enum: {
1237 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'1236 Executed: '(H160,H160,H256,EvmCoreErrorExitReason)'
1238 }1237 }
1239 },1238 },
1240 /**1239 /**
1241 * Lookup110: evm_core::error::ExitReason1240 * Lookup116: evm_core::error::ExitReason
1242 **/1241 **/
1243 EvmCoreErrorExitReason: {1242 EvmCoreErrorExitReason: {
1244 _enum: {1243 _enum: {
1245 Succeed: 'EvmCoreErrorExitSucceed',1244 Succeed: 'EvmCoreErrorExitSucceed',
1248 Fatal: 'EvmCoreErrorExitFatal'1247 Fatal: 'EvmCoreErrorExitFatal'
1249 }1248 }
1250 },1249 },
1251 /**1250 /**
1252 * Lookup111: evm_core::error::ExitSucceed1251 * Lookup117: evm_core::error::ExitSucceed
1253 **/1252 **/
1254 EvmCoreErrorExitSucceed: {1253 EvmCoreErrorExitSucceed: {
1255 _enum: ['Stopped', 'Returned', 'Suicided']1254 _enum: ['Stopped', 'Returned', 'Suicided']
1256 },1255 },
1257 /**1256 /**
1258 * Lookup112: evm_core::error::ExitError1257 * Lookup118: evm_core::error::ExitError
1259 **/1258 **/
1260 EvmCoreErrorExitError: {1259 EvmCoreErrorExitError: {
1261 _enum: {1260 _enum: {
1262 StackUnderflow: 'Null',1261 StackUnderflow: 'Null',
1276 InvalidCode: 'Null'1275 InvalidCode: 'Null'
1277 }1276 }
1278 },1277 },
1279 /**1278 /**
1280 * Lookup115: evm_core::error::ExitRevert1279 * Lookup121: evm_core::error::ExitRevert
1281 **/1280 **/
1282 EvmCoreErrorExitRevert: {1281 EvmCoreErrorExitRevert: {
1283 _enum: ['Reverted']1282 _enum: ['Reverted']
1284 },1283 },
1285 /**1284 /**
1286 * Lookup116: evm_core::error::ExitFatal1285 * Lookup122: evm_core::error::ExitFatal
1287 **/1286 **/
1288 EvmCoreErrorExitFatal: {1287 EvmCoreErrorExitFatal: {
1289 _enum: {1288 _enum: {
1290 NotSupported: 'Null',1289 NotSupported: 'Null',
1293 Other: 'Text'1292 Other: 'Text'
1294 }1293 }
1295 },1294 },
1296 /**1295 /**
1297 * Lookup117: pallet_evm_contract_helpers::pallet::Event<T>1296 * Lookup123: pallet_evm_contract_helpers::pallet::Event<T>
1298 **/1297 **/
1299 PalletEvmContractHelpersEvent: {1298 PalletEvmContractHelpersEvent: {
1300 _enum: {1299 _enum: {
1301 ContractSponsorSet: '(H160,AccountId32)',1300 ContractSponsorSet: '(H160,AccountId32)',
1302 ContractSponsorshipConfirmed: '(H160,AccountId32)',1301 ContractSponsorshipConfirmed: '(H160,AccountId32)',
1303 ContractSponsorRemoved: 'H160'1302 ContractSponsorRemoved: 'H160'
1304 }1303 }
1305 },1304 },
1306 /**1305 /**
1307 * Lookup118: frame_system::Phase1306 * Lookup124: frame_system::Phase
1308 **/1307 **/
1309 FrameSystemPhase: {1308 FrameSystemPhase: {
1310 _enum: {1309 _enum: {
1311 ApplyExtrinsic: 'u32',1310 ApplyExtrinsic: 'u32',
1312 Finalization: 'Null',1311 Finalization: 'Null',
1313 Initialization: 'Null'1312 Initialization: 'Null'
1314 }1313 }
1315 },1314 },
1316 /**1315 /**
1317 * Lookup120: frame_system::LastRuntimeUpgradeInfo1316 * Lookup126: frame_system::LastRuntimeUpgradeInfo
1318 **/1317 **/
1319 FrameSystemLastRuntimeUpgradeInfo: {1318 FrameSystemLastRuntimeUpgradeInfo: {
1320 specVersion: 'Compact<u32>',1319 specVersion: 'Compact<u32>',
1321 specName: 'Text'1320 specName: 'Text'
1322 },1321 },
1323 /**1322 /**
1324 * Lookup121: frame_system::pallet::Call<T>1323 * Lookup127: frame_system::pallet::Call<T>
1325 **/1324 **/
1326 FrameSystemCall: {1325 FrameSystemCall: {
1327 _enum: {1326 _enum: {
1328 fill_block: {1327 fill_block: {
1358 }1357 }
1359 }1358 }
1360 },1359 },
1361 /**1360 /**
1362 * Lookup126: frame_system::limits::BlockWeights1361 * Lookup132: frame_system::limits::BlockWeights
1363 **/1362 **/
1364 FrameSystemLimitsBlockWeights: {1363 FrameSystemLimitsBlockWeights: {
1365 baseBlock: 'u64',1364 baseBlock: 'u64',
1366 maxBlock: 'u64',1365 maxBlock: 'u64',
1367 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'1366 perClass: 'FrameSupportWeightsPerDispatchClassWeightsPerClass'
1368 },1367 },
1369 /**1368 /**
1370 * Lookup127: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>1369 * Lookup133: frame_support::weights::PerDispatchClass<frame_system::limits::WeightsPerClass>
1371 **/1370 **/
1372 FrameSupportWeightsPerDispatchClassWeightsPerClass: {1371 FrameSupportWeightsPerDispatchClassWeightsPerClass: {
1373 normal: 'FrameSystemLimitsWeightsPerClass',1372 normal: 'FrameSystemLimitsWeightsPerClass',
1374 operational: 'FrameSystemLimitsWeightsPerClass',1373 operational: 'FrameSystemLimitsWeightsPerClass',
1375 mandatory: 'FrameSystemLimitsWeightsPerClass'1374 mandatory: 'FrameSystemLimitsWeightsPerClass'
1376 },1375 },
1377 /**1376 /**
1378 * Lookup128: frame_system::limits::WeightsPerClass1377 * Lookup134: frame_system::limits::WeightsPerClass
1379 **/1378 **/
1380 FrameSystemLimitsWeightsPerClass: {1379 FrameSystemLimitsWeightsPerClass: {
1381 baseExtrinsic: 'u64',1380 baseExtrinsic: 'u64',
1382 maxExtrinsic: 'Option<u64>',1381 maxExtrinsic: 'Option<u64>',
1383 maxTotal: 'Option<u64>',1382 maxTotal: 'Option<u64>',
1384 reserved: 'Option<u64>'1383 reserved: 'Option<u64>'
1385 },1384 },
1386 /**1385 /**
1387 * Lookup130: frame_system::limits::BlockLength1386 * Lookup136: frame_system::limits::BlockLength
1388 **/1387 **/
1389 FrameSystemLimitsBlockLength: {1388 FrameSystemLimitsBlockLength: {
1390 max: 'FrameSupportWeightsPerDispatchClassU32'1389 max: 'FrameSupportWeightsPerDispatchClassU32'
1391 },1390 },
1392 /**1391 /**
1393 * Lookup131: frame_support::weights::PerDispatchClass<T>1392 * Lookup137: frame_support::weights::PerDispatchClass<T>
1394 **/1393 **/
1395 FrameSupportWeightsPerDispatchClassU32: {1394 FrameSupportWeightsPerDispatchClassU32: {
1396 normal: 'u32',1395 normal: 'u32',
1397 operational: 'u32',1396 operational: 'u32',
1398 mandatory: 'u32'1397 mandatory: 'u32'
1399 },1398 },
1400 /**1399 /**
1401 * Lookup132: frame_support::weights::RuntimeDbWeight1400 * Lookup138: frame_support::weights::RuntimeDbWeight
1402 **/1401 **/
1403 FrameSupportWeightsRuntimeDbWeight: {1402 FrameSupportWeightsRuntimeDbWeight: {
1404 read: 'u64',1403 read: 'u64',
1405 write: 'u64'1404 write: 'u64'
1406 },1405 },
1407 /**1406 /**
1408 * Lookup133: sp_version::RuntimeVersion1407 * Lookup139: sp_version::RuntimeVersion
1409 **/1408 **/
1410 SpVersionRuntimeVersion: {1409 SpVersionRuntimeVersion: {
1411 specName: 'Text',1410 specName: 'Text',
1412 implName: 'Text',1411 implName: 'Text',
1417 transactionVersion: 'u32',1416 transactionVersion: 'u32',
1418 stateVersion: 'u8'1417 stateVersion: 'u8'
1419 },1418 },
1420 /**1419 /**
1421 * Lookup138: frame_system::pallet::Error<T>1420 * Lookup144: frame_system::pallet::Error<T>
1422 **/1421 **/
1423 FrameSystemError: {1422 FrameSystemError: {
1424 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1423 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
1425 },1424 },
1426 /**1425 /**
1427 * Lookup139: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1426 * Lookup145: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
1428 **/1427 **/
1429 PolkadotPrimitivesV2PersistedValidationData: {1428 PolkadotPrimitivesV2PersistedValidationData: {
1430 parentHead: 'Bytes',1429 parentHead: 'Bytes',
1431 relayParentNumber: 'u32',1430 relayParentNumber: 'u32',
1432 relayParentStorageRoot: 'H256',1431 relayParentStorageRoot: 'H256',
1433 maxPovSize: 'u32'1432 maxPovSize: 'u32'
1434 },1433 },
1435 /**1434 /**
1436 * Lookup142: polkadot_primitives::v2::UpgradeRestriction1435 * Lookup148: polkadot_primitives::v2::UpgradeRestriction
1437 **/1436 **/
1438 PolkadotPrimitivesV2UpgradeRestriction: {1437 PolkadotPrimitivesV2UpgradeRestriction: {
1439 _enum: ['Present']1438 _enum: ['Present']
1440 },1439 },
1441 /**1440 /**
1442 * Lookup143: sp_trie::storage_proof::StorageProof1441 * Lookup149: sp_trie::storage_proof::StorageProof
1443 **/1442 **/
1444 SpTrieStorageProof: {1443 SpTrieStorageProof: {
1445 trieNodes: 'BTreeSet<Bytes>'1444 trieNodes: 'BTreeSet<Bytes>'
1446 },1445 },
1447 /**1446 /**
1448 * Lookup145: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1447 * Lookup151: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
1449 **/1448 **/
1450 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1449 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
1451 dmqMqcHead: 'H256',1450 dmqMqcHead: 'H256',
1452 relayDispatchQueueSize: '(u32,u32)',1451 relayDispatchQueueSize: '(u32,u32)',
1453 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1452 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',
1454 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1453 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
1455 },1454 },
1456 /**1455 /**
1457 * Lookup148: polkadot_primitives::v2::AbridgedHrmpChannel1456 * Lookup154: polkadot_primitives::v2::AbridgedHrmpChannel
1458 **/1457 **/
1459 PolkadotPrimitivesV2AbridgedHrmpChannel: {1458 PolkadotPrimitivesV2AbridgedHrmpChannel: {
1460 maxCapacity: 'u32',1459 maxCapacity: 'u32',
1461 maxTotalSize: 'u32',1460 maxTotalSize: 'u32',
1464 totalSize: 'u32',1463 totalSize: 'u32',
1465 mqcHead: 'Option<H256>'1464 mqcHead: 'Option<H256>'
1466 },1465 },
1467 /**1466 /**
1468 * Lookup149: polkadot_primitives::v2::AbridgedHostConfiguration1467 * Lookup155: polkadot_primitives::v2::AbridgedHostConfiguration
1469 **/1468 **/
1470 PolkadotPrimitivesV2AbridgedHostConfiguration: {1469 PolkadotPrimitivesV2AbridgedHostConfiguration: {
1471 maxCodeSize: 'u32',1470 maxCodeSize: 'u32',
1472 maxHeadDataSize: 'u32',1471 maxHeadDataSize: 'u32',
1478 validationUpgradeCooldown: 'u32',1477 validationUpgradeCooldown: 'u32',
1479 validationUpgradeDelay: 'u32'1478 validationUpgradeDelay: 'u32'
1480 },1479 },
1481 /**1480 /**
1482 * Lookup155: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1481 * Lookup161: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
1483 **/1482 **/
1484 PolkadotCorePrimitivesOutboundHrmpMessage: {1483 PolkadotCorePrimitivesOutboundHrmpMessage: {
1485 recipient: 'u32',1484 recipient: 'u32',
1486 data: 'Bytes'1485 data: 'Bytes'
1487 },1486 },
1488 /**1487 /**
1489 * Lookup156: cumulus_pallet_parachain_system::pallet::Call<T>1488 * Lookup162: cumulus_pallet_parachain_system::pallet::Call<T>
1490 **/1489 **/
1491 CumulusPalletParachainSystemCall: {1490 CumulusPalletParachainSystemCall: {
1492 _enum: {1491 _enum: {
1493 set_validation_data: {1492 set_validation_data: {
1504 }1503 }
1505 }1504 }
1506 },1505 },
1507 /**1506 /**
1508 * Lookup157: cumulus_primitives_parachain_inherent::ParachainInherentData1507 * Lookup163: cumulus_primitives_parachain_inherent::ParachainInherentData
1509 **/1508 **/
1510 CumulusPrimitivesParachainInherentParachainInherentData: {1509 CumulusPrimitivesParachainInherentParachainInherentData: {
1511 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1510 validationData: 'PolkadotPrimitivesV2PersistedValidationData',
1512 relayChainState: 'SpTrieStorageProof',1511 relayChainState: 'SpTrieStorageProof',
1513 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1512 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',
1514 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1513 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
1515 },1514 },
1516 /**1515 /**
1517 * Lookup159: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1516 * Lookup165: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
1518 **/1517 **/
1519 PolkadotCorePrimitivesInboundDownwardMessage: {1518 PolkadotCorePrimitivesInboundDownwardMessage: {
1520 sentAt: 'u32',1519 sentAt: 'u32',
1521 msg: 'Bytes'1520 msg: 'Bytes'
1522 },1521 },
1523 /**1522 /**
1524 * Lookup162: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1523 * Lookup168: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
1525 **/1524 **/
1526 PolkadotCorePrimitivesInboundHrmpMessage: {1525 PolkadotCorePrimitivesInboundHrmpMessage: {
1527 sentAt: 'u32',1526 sentAt: 'u32',
1528 data: 'Bytes'1527 data: 'Bytes'
1529 },1528 },
1530 /**1529 /**
1531 * Lookup165: cumulus_pallet_parachain_system::pallet::Error<T>1530 * Lookup171: cumulus_pallet_parachain_system::pallet::Error<T>
1532 **/1531 **/
1533 CumulusPalletParachainSystemError: {1532 CumulusPalletParachainSystemError: {
1534 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1533 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
1535 },1534 },
1536 /**1535 /**
1537 * Lookup167: pallet_balances::BalanceLock<Balance>1536 * Lookup173: pallet_balances::BalanceLock<Balance>
1538 **/1537 **/
1539 PalletBalancesBalanceLock: {1538 PalletBalancesBalanceLock: {
1540 id: '[u8;8]',1539 id: '[u8;8]',
1541 amount: 'u128',1540 amount: 'u128',
1542 reasons: 'PalletBalancesReasons'1541 reasons: 'PalletBalancesReasons'
1543 },1542 },
1544 /**1543 /**
1545 * Lookup168: pallet_balances::Reasons1544 * Lookup174: pallet_balances::Reasons
1546 **/1545 **/
1547 PalletBalancesReasons: {1546 PalletBalancesReasons: {
1548 _enum: ['Fee', 'Misc', 'All']1547 _enum: ['Fee', 'Misc', 'All']
1549 },1548 },
1550 /**1549 /**
1551 * Lookup171: pallet_balances::ReserveData<ReserveIdentifier, Balance>1550 * Lookup177: pallet_balances::ReserveData<ReserveIdentifier, Balance>
1552 **/1551 **/
1553 PalletBalancesReserveData: {1552 PalletBalancesReserveData: {
1554 id: '[u8;16]',1553 id: '[u8;16]',
1555 amount: 'u128'1554 amount: 'u128'
1556 },1555 },
1557 /**1556 /**
1558 * Lookup173: pallet_balances::Releases1557 * Lookup179: pallet_balances::Releases
1559 **/1558 **/
1560 PalletBalancesReleases: {1559 PalletBalancesReleases: {
1561 _enum: ['V1_0_0', 'V2_0_0']1560 _enum: ['V1_0_0', 'V2_0_0']
1562 },1561 },
1563 /**1562 /**
1564 * Lookup174: pallet_balances::pallet::Call<T, I>1563 * Lookup180: pallet_balances::pallet::Call<T, I>
1565 **/1564 **/
1566 PalletBalancesCall: {1565 PalletBalancesCall: {
1567 _enum: {1566 _enum: {
1568 transfer: {1567 transfer: {
1593 }1592 }
1594 }1593 }
1595 },1594 },
1596 /**1595 /**
1597 * Lookup177: pallet_balances::pallet::Error<T, I>1596 * Lookup183: pallet_balances::pallet::Error<T, I>
1598 **/1597 **/
1599 PalletBalancesError: {1598 PalletBalancesError: {
1600 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1599 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
1601 },1600 },
1602 /**1601 /**
1603 * Lookup179: pallet_timestamp::pallet::Call<T>1602 * Lookup185: pallet_timestamp::pallet::Call<T>
1604 **/1603 **/
1605 PalletTimestampCall: {1604 PalletTimestampCall: {
1606 _enum: {1605 _enum: {
1607 set: {1606 set: {
1608 now: 'Compact<u64>'1607 now: 'Compact<u64>'
1609 }1608 }
1610 }1609 }
1611 },1610 },
1612 /**1611 /**
1613 * Lookup181: pallet_transaction_payment::Releases1612 * Lookup187: pallet_transaction_payment::Releases
1614 **/1613 **/
1615 PalletTransactionPaymentReleases: {1614 PalletTransactionPaymentReleases: {
1616 _enum: ['V1Ancient', 'V2']1615 _enum: ['V1Ancient', 'V2']
1617 },1616 },
1618 /**1617 /**
1619 * Lookup182: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1618 * Lookup188: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
1620 **/1619 **/
1621 PalletTreasuryProposal: {1620 PalletTreasuryProposal: {
1622 proposer: 'AccountId32',1621 proposer: 'AccountId32',
1623 value: 'u128',1622 value: 'u128',
1624 beneficiary: 'AccountId32',1623 beneficiary: 'AccountId32',
1625 bond: 'u128'1624 bond: 'u128'
1626 },1625 },
1627 /**1626 /**
1628 * Lookup185: pallet_treasury::pallet::Call<T, I>1627 * Lookup191: pallet_treasury::pallet::Call<T, I>
1629 **/1628 **/
1630 PalletTreasuryCall: {1629 PalletTreasuryCall: {
1631 _enum: {1630 _enum: {
1632 propose_spend: {1631 propose_spend: {
1648 }1647 }
1649 }1648 }
1650 },1649 },
1651 /**1650 /**
1652 * Lookup188: frame_support::PalletId1651 * Lookup194: frame_support::PalletId
1653 **/1652 **/
1654 FrameSupportPalletId: '[u8;8]',1653 FrameSupportPalletId: '[u8;8]',
1655 /**1654 /**
1656 * Lookup189: pallet_treasury::pallet::Error<T, I>1655 * Lookup195: pallet_treasury::pallet::Error<T, I>
1657 **/1656 **/
1658 PalletTreasuryError: {1657 PalletTreasuryError: {
1659 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1658 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
1660 },1659 },
1661 /**1660 /**
1662 * Lookup190: pallet_sudo::pallet::Call<T>1661 * Lookup196: pallet_sudo::pallet::Call<T>
1663 **/1662 **/
1664 PalletSudoCall: {1663 PalletSudoCall: {
1665 _enum: {1664 _enum: {
1666 sudo: {1665 sudo: {
1682 }1681 }
1683 }1682 }
1684 },1683 },
1685 /**1684 /**
1686 * Lookup192: orml_vesting::module::Call<T>1685 * Lookup198: orml_vesting::module::Call<T>
1687 **/1686 **/
1688 OrmlVestingModuleCall: {1687 OrmlVestingModuleCall: {
1689 _enum: {1688 _enum: {
1690 claim: 'Null',1689 claim: 'Null',
1701 }1700 }
1702 }1701 }
1703 },1702 },
1704 /**1703 /**
1705 * Lookup198: orml_xtokens::module::Call<T>1704 * Lookup200: orml_xtokens::module::Call<T>
1706 **/1705 **/
1707 OrmlXtokensModuleCall: {1706 OrmlXtokensModuleCall: {
1708 _enum: {1707 _enum: {
1709 transfer: {1708 transfer: {
1744 }1743 }
1745 }1744 }
1746 },1745 },
1747 /**1746 /**
1748 * Lookup199: xcm::VersionedMultiAsset1747 * Lookup201: xcm::VersionedMultiAsset
1749 **/1748 **/
1750 XcmVersionedMultiAsset: {1749 XcmVersionedMultiAsset: {
1751 _enum: {1750 _enum: {
1752 V0: 'XcmV0MultiAsset',1751 V0: 'XcmV0MultiAsset',
1753 V1: 'XcmV1MultiAsset'1752 V1: 'XcmV1MultiAsset'
1754 }1753 }
1755 },1754 },
1756 /**1755 /**
1757 * Lookup202: orml_tokens::module::Call<T>1756 * Lookup204: orml_tokens::module::Call<T>
1758 **/1757 **/
1759 OrmlTokensModuleCall: {1758 OrmlTokensModuleCall: {
1760 _enum: {1759 _enum: {
1761 transfer: {1760 transfer: {
1787 }1786 }
1788 }1787 }
1789 },1788 },
1790 /**1789 /**
1791 * Lookup203: cumulus_pallet_xcmp_queue::pallet::Call<T>1790 * Lookup205: cumulus_pallet_xcmp_queue::pallet::Call<T>
1792 **/1791 **/
1793 CumulusPalletXcmpQueueCall: {1792 CumulusPalletXcmpQueueCall: {
1794 _enum: {1793 _enum: {
1795 service_overweight: {1794 service_overweight: {
1836 }1835 }
1837 }1836 }
1838 },1837 },
1839 /**1838 /**
1840 * Lookup195: pallet_xcm::pallet::Call<T>1839 * Lookup206: pallet_xcm::pallet::Call<T>
1841 **/1840 **/
1842 PalletXcmCall: {1841 PalletXcmCall: {
1843 _enum: {1842 _enum: {
1844 send: {1843 send: {
1890 }1889 }
1891 }1890 }
1892 },1891 },
1893 /**1892 /**
1894 * Lookup196: xcm::VersionedXcm<Call>1893 * Lookup207: xcm::VersionedXcm<Call>
1895 **/1894 **/
1896 XcmVersionedXcm: {1895 XcmVersionedXcm: {
1897 _enum: {1896 _enum: {
1898 V0: 'XcmV0Xcm',1897 V0: 'XcmV0Xcm',
1899 V1: 'XcmV1Xcm',1898 V1: 'XcmV1Xcm',
1900 V2: 'XcmV2Xcm'1899 V2: 'XcmV2Xcm'
1901 }1900 }
1902 },1901 },
1903 /**1902 /**
1904 * Lookup197: xcm::v0::Xcm<Call>1903 * Lookup208: xcm::v0::Xcm<Call>
1905 **/1904 **/
1906 XcmV0Xcm: {1905 XcmV0Xcm: {
1907 _enum: {1906 _enum: {
1908 WithdrawAsset: {1907 WithdrawAsset: {
1954 }1953 }
1955 }1954 }
1956 },1955 },
1957 /**1956 /**
1958 * Lookup199: xcm::v0::order::Order<Call>1957 * Lookup210: xcm::v0::order::Order<Call>
1959 **/1958 **/
1960 XcmV0Order: {1959 XcmV0Order: {
1961 _enum: {1960 _enum: {
1962 Null: 'Null',1961 Null: 'Null',
1997 }1996 }
1998 }1997 }
1999 },1998 },
2000 /**1999 /**
2001 * Lookup201: xcm::v0::Response2000 * Lookup212: xcm::v0::Response
2002 **/2001 **/
2003 XcmV0Response: {2002 XcmV0Response: {
2004 _enum: {2003 _enum: {
2005 Assets: 'Vec<XcmV0MultiAsset>'2004 Assets: 'Vec<XcmV0MultiAsset>'
2006 }2005 }
2007 },2006 },
2008 /**2007 /**
2009 * Lookup202: xcm::v1::Xcm<Call>2008 * Lookup213: xcm::v1::Xcm<Call>
2010 **/2009 **/
2011 XcmV1Xcm: {2010 XcmV1Xcm: {
2012 _enum: {2011 _enum: {
2013 WithdrawAsset: {2012 WithdrawAsset: {
2064 UnsubscribeVersion: 'Null'2063 UnsubscribeVersion: 'Null'
2065 }2064 }
2066 },2065 },
2067 /**2066 /**
2068 * Lookup204: xcm::v1::order::Order<Call>2067 * Lookup215: xcm::v1::order::Order<Call>
2069 **/2068 **/
2070 XcmV1Order: {2069 XcmV1Order: {
2071 _enum: {2070 _enum: {
2072 Noop: 'Null',2071 Noop: 'Null',
2109 }2108 }
2110 }2109 }
2111 },2110 },
2112 /**2111 /**
2113 * Lookup206: xcm::v1::Response2112 * Lookup217: xcm::v1::Response
2114 **/2113 **/
2115 XcmV1Response: {2114 XcmV1Response: {
2116 _enum: {2115 _enum: {
2117 Assets: 'XcmV1MultiassetMultiAssets',2116 Assets: 'XcmV1MultiassetMultiAssets',
2118 Version: 'u32'2117 Version: 'u32'
2119 }2118 }
2120 },2119 },
2121 /**2120 /**
2122 * Lookup220: cumulus_pallet_xcm::pallet::Call<T>2121 * Lookup231: cumulus_pallet_xcm::pallet::Call<T>
2123 **/2122 **/
2124 CumulusPalletXcmCall: 'Null',2123 CumulusPalletXcmCall: 'Null',
2125 /**2124 /**
2126 * Lookup221: cumulus_pallet_dmp_queue::pallet::Call<T>2125 * Lookup232: cumulus_pallet_dmp_queue::pallet::Call<T>
2127 **/2126 **/
2128 CumulusPalletDmpQueueCall: {2127 CumulusPalletDmpQueueCall: {
2129 _enum: {2128 _enum: {
2130 service_overweight: {2129 service_overweight: {
2133 }2132 }
2134 }2133 }
2135 },2134 },
2136 /**2135 /**
2137 * Lookup222: pallet_inflation::pallet::Call<T>2136 * Lookup233: pallet_inflation::pallet::Call<T>
2138 **/2137 **/
2139 PalletInflationCall: {2138 PalletInflationCall: {
2140 _enum: {2139 _enum: {
2141 start_inflation: {2140 start_inflation: {
2142 inflationStartRelayBlock: 'u32'2141 inflationStartRelayBlock: 'u32'
2143 }2142 }
2144 }2143 }
2145 },2144 },
2146 /**2145 /**
2147 * Lookup223: pallet_unique::Call<T>2146 * Lookup234: pallet_unique::Call<T>
2148 **/2147 **/
2149 PalletUniqueCall: {2148 PalletUniqueCall: {
2150 _enum: {2149 _enum: {
2151 create_collection: {2150 create_collection: {
2275 }2274 }
2276 }2275 }
2277 },2276 },
2278 /**2277 /**
2279 * Lookup228: up_data_structs::CollectionMode2278 * Lookup239: up_data_structs::CollectionMode
2280 **/2279 **/
2281 UpDataStructsCollectionMode: {2280 UpDataStructsCollectionMode: {
2282 _enum: {2281 _enum: {
2283 NFT: 'Null',2282 NFT: 'Null',
2284 Fungible: 'u8',2283 Fungible: 'u8',
2285 ReFungible: 'Null'2284 ReFungible: 'Null'
2286 }2285 }
2287 },2286 },
2288 /**2287 /**
2289 * Lookup229: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2288 * Lookup240: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
2290 **/2289 **/
2291 UpDataStructsCreateCollectionData: {2290 UpDataStructsCreateCollectionData: {
2292 mode: 'UpDataStructsCollectionMode',2291 mode: 'UpDataStructsCollectionMode',
2293 access: 'Option<UpDataStructsAccessMode>',2292 access: 'Option<UpDataStructsAccessMode>',
2300 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2299 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',
2301 properties: 'Vec<UpDataStructsProperty>'2300 properties: 'Vec<UpDataStructsProperty>'
2302 },2301 },
2303 /**2302 /**
2304 * Lookup231: up_data_structs::AccessMode2303 * Lookup242: up_data_structs::AccessMode
2305 **/2304 **/
2306 UpDataStructsAccessMode: {2305 UpDataStructsAccessMode: {
2307 _enum: ['Normal', 'AllowList']2306 _enum: ['Normal', 'AllowList']
2308 },2307 },
2309 /**2308 /**
2310 * Lookup233: up_data_structs::CollectionLimits2309 * Lookup244: up_data_structs::CollectionLimits
2311 **/2310 **/
2312 UpDataStructsCollectionLimits: {2311 UpDataStructsCollectionLimits: {
2313 accountTokenOwnershipLimit: 'Option<u32>',2312 accountTokenOwnershipLimit: 'Option<u32>',
2314 sponsoredDataSize: 'Option<u32>',2313 sponsoredDataSize: 'Option<u32>',
2320 ownerCanDestroy: 'Option<bool>',2319 ownerCanDestroy: 'Option<bool>',
2321 transfersEnabled: 'Option<bool>'2320 transfersEnabled: 'Option<bool>'
2322 },2321 },
2323 /**2322 /**
2324 * Lookup235: up_data_structs::SponsoringRateLimit2323 * Lookup246: up_data_structs::SponsoringRateLimit
2325 **/2324 **/
2326 UpDataStructsSponsoringRateLimit: {2325 UpDataStructsSponsoringRateLimit: {
2327 _enum: {2326 _enum: {
2328 SponsoringDisabled: 'Null',2327 SponsoringDisabled: 'Null',
2329 Blocks: 'u32'2328 Blocks: 'u32'
2330 }2329 }
2331 },2330 },
2332 /**2331 /**
2333 * Lookup238: up_data_structs::CollectionPermissions2332 * Lookup249: up_data_structs::CollectionPermissions
2334 **/2333 **/
2335 UpDataStructsCollectionPermissions: {2334 UpDataStructsCollectionPermissions: {
2336 access: 'Option<UpDataStructsAccessMode>',2335 access: 'Option<UpDataStructsAccessMode>',
2337 mintMode: 'Option<bool>',2336 mintMode: 'Option<bool>',
2338 nesting: 'Option<UpDataStructsNestingPermissions>'2337 nesting: 'Option<UpDataStructsNestingPermissions>'
2339 },2338 },
2340 /**2339 /**
2341 * Lookup240: up_data_structs::NestingPermissions2340 * Lookup251: up_data_structs::NestingPermissions
2342 **/2341 **/
2343 UpDataStructsNestingPermissions: {2342 UpDataStructsNestingPermissions: {
2344 tokenOwner: 'bool',2343 tokenOwner: 'bool',
2345 collectionAdmin: 'bool',2344 collectionAdmin: 'bool',
2346 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2345 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
2347 },2346 },
2348 /**2347 /**
2349 * Lookup242: up_data_structs::OwnerRestrictedSet2348 * Lookup253: up_data_structs::OwnerRestrictedSet
2350 **/2349 **/
2351 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2350 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
2352 /**2351 /**
2353 * Lookup247: up_data_structs::PropertyKeyPermission2352 * Lookup258: up_data_structs::PropertyKeyPermission
2354 **/2353 **/
2355 UpDataStructsPropertyKeyPermission: {2354 UpDataStructsPropertyKeyPermission: {
2356 key: 'Bytes',2355 key: 'Bytes',
2357 permission: 'UpDataStructsPropertyPermission'2356 permission: 'UpDataStructsPropertyPermission'
2358 },2357 },
2359 /**2358 /**
2360 * Lookup248: up_data_structs::PropertyPermission2359 * Lookup259: up_data_structs::PropertyPermission
2361 **/2360 **/
2362 UpDataStructsPropertyPermission: {2361 UpDataStructsPropertyPermission: {
2363 mutable: 'bool',2362 mutable: 'bool',
2364 collectionAdmin: 'bool',2363 collectionAdmin: 'bool',
2365 tokenOwner: 'bool'2364 tokenOwner: 'bool'
2366 },2365 },
2367 /**2366 /**
2368 * Lookup251: up_data_structs::Property2367 * Lookup262: up_data_structs::Property
2369 **/2368 **/
2370 UpDataStructsProperty: {2369 UpDataStructsProperty: {
2371 key: 'Bytes',2370 key: 'Bytes',
2372 value: 'Bytes'2371 value: 'Bytes'
2373 },2372 },
2374 /**2373 /**
2375 * Lookup254: up_data_structs::CreateItemData2374 * Lookup265: up_data_structs::CreateItemData
2376 **/2375 **/
2377 UpDataStructsCreateItemData: {2376 UpDataStructsCreateItemData: {
2378 _enum: {2377 _enum: {
2379 NFT: 'UpDataStructsCreateNftData',2378 NFT: 'UpDataStructsCreateNftData',
2380 Fungible: 'UpDataStructsCreateFungibleData',2379 Fungible: 'UpDataStructsCreateFungibleData',
2381 ReFungible: 'UpDataStructsCreateReFungibleData'2380 ReFungible: 'UpDataStructsCreateReFungibleData'
2382 }2381 }
2383 },2382 },
2384 /**2383 /**
2385 * Lookup255: up_data_structs::CreateNftData2384 * Lookup266: up_data_structs::CreateNftData
2386 **/2385 **/
2387 UpDataStructsCreateNftData: {2386 UpDataStructsCreateNftData: {
2388 properties: 'Vec<UpDataStructsProperty>'2387 properties: 'Vec<UpDataStructsProperty>'
2389 },2388 },
2390 /**2389 /**
2391 * Lookup256: up_data_structs::CreateFungibleData2390 * Lookup267: up_data_structs::CreateFungibleData
2392 **/2391 **/
2393 UpDataStructsCreateFungibleData: {2392 UpDataStructsCreateFungibleData: {
2394 value: 'u128'2393 value: 'u128'
2395 },2394 },
2396 /**2395 /**
2397 * Lookup257: up_data_structs::CreateReFungibleData2396 * Lookup268: up_data_structs::CreateReFungibleData
2398 **/2397 **/
2399 UpDataStructsCreateReFungibleData: {2398 UpDataStructsCreateReFungibleData: {
2400 pieces: 'u128',2399 pieces: 'u128',
2401 properties: 'Vec<UpDataStructsProperty>'2400 properties: 'Vec<UpDataStructsProperty>'
2402 },2401 },
2403 /**2402 /**
2404 * Lookup260: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2403 * Lookup271: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2405 **/2404 **/
2406 UpDataStructsCreateItemExData: {2405 UpDataStructsCreateItemExData: {
2407 _enum: {2406 _enum: {
2408 NFT: 'Vec<UpDataStructsCreateNftExData>',2407 NFT: 'Vec<UpDataStructsCreateNftExData>',
2411 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2410 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'
2412 }2411 }
2413 },2412 },
2414 /**2413 /**
2415 * Lookup262: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2414 * Lookup273: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2416 **/2415 **/
2417 UpDataStructsCreateNftExData: {2416 UpDataStructsCreateNftExData: {
2418 properties: 'Vec<UpDataStructsProperty>',2417 properties: 'Vec<UpDataStructsProperty>',
2419 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2418 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
2420 },2419 },
2421 /**2420 /**
2422 * Lookup269: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2421 * Lookup280: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2423 **/2422 **/
2424 UpDataStructsCreateRefungibleExSingleOwner: {2423 UpDataStructsCreateRefungibleExSingleOwner: {
2425 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2424 user: 'PalletEvmAccountBasicCrossAccountIdRepr',
2426 pieces: 'u128',2425 pieces: 'u128',
2427 properties: 'Vec<UpDataStructsProperty>'2426 properties: 'Vec<UpDataStructsProperty>'
2428 },2427 },
2429 /**2428 /**
2430 * Lookup271: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2429 * Lookup282: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2431 **/2430 **/
2432 UpDataStructsCreateRefungibleExMultipleOwners: {2431 UpDataStructsCreateRefungibleExMultipleOwners: {
2433 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2432 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
2434 properties: 'Vec<UpDataStructsProperty>'2433 properties: 'Vec<UpDataStructsProperty>'
2435 },2434 },
2436 /**2435 /**
2437 * Lookup272: pallet_unique_scheduler::pallet::Call<T>2436 * Lookup283: pallet_unique_scheduler::pallet::Call<T>
2438 **/2437 **/
2439 PalletUniqueSchedulerCall: {2438 PalletUniqueSchedulerCall: {
2440 _enum: {2439 _enum: {
2441 schedule_named: {2440 schedule_named: {
2457 }2456 }
2458 }2457 }
2459 },2458 },
2460 /**2459 /**
2461 * Lookup274: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>2460 * Lookup285: frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>
2462 **/2461 **/
2463 FrameSupportScheduleMaybeHashed: {2462 FrameSupportScheduleMaybeHashed: {
2464 _enum: {2463 _enum: {
2465 Value: 'Call',2464 Value: 'Call',
2466 Hash: 'H256'2465 Hash: 'H256'
2467 }2466 }
2468 },2467 },
2469 /**2468 /**
2470 * Lookup275: pallet_configuration::pallet::Call<T>2469 * Lookup286: pallet_configuration::pallet::Call<T>
2471 **/2470 **/
2472 PalletConfigurationCall: {2471 PalletConfigurationCall: {
2473 _enum: {2472 _enum: {
2474 set_weight_to_fee_coefficient_override: {2473 set_weight_to_fee_coefficient_override: {
2479 }2478 }
2480 }2479 }
2481 },2480 },
2482 /**2481 /**
2483 * Lookup276: pallet_template_transaction_payment::Call<T>2482 * Lookup287: pallet_template_transaction_payment::Call<T>
2484 **/2483 **/
2485 PalletTemplateTransactionPaymentCall: 'Null',2484 PalletTemplateTransactionPaymentCall: 'Null',
2486 /**2485 /**
2487 * Lookup277: pallet_structure::pallet::Call<T>2486 * Lookup288: pallet_structure::pallet::Call<T>
2488 **/2487 **/
2489 PalletStructureCall: 'Null',2488 PalletStructureCall: 'Null',
2490 /**2489 /**
2491 * Lookup278: pallet_rmrk_core::pallet::Call<T>2490 * Lookup289: pallet_rmrk_core::pallet::Call<T>
2492 **/2491 **/
2493 PalletRmrkCoreCall: {2492 PalletRmrkCoreCall: {
2494 _enum: {2493 _enum: {
2495 create_collection: {2494 create_collection: {
2578 }2577 }
2579 }2578 }
2580 },2579 },
2581 /**2580 /**
2582 * Lookup284: rmrk_traits::resource::ResourceTypes<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2581 * Lookup295: rmrk_traits::resource::ResourceTypes<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2583 **/2582 **/
2584 RmrkTraitsResourceResourceTypes: {2583 RmrkTraitsResourceResourceTypes: {
2585 _enum: {2584 _enum: {
2586 Basic: 'RmrkTraitsResourceBasicResource',2585 Basic: 'RmrkTraitsResourceBasicResource',
2587 Composable: 'RmrkTraitsResourceComposableResource',2586 Composable: 'RmrkTraitsResourceComposableResource',
2588 Slot: 'RmrkTraitsResourceSlotResource'2587 Slot: 'RmrkTraitsResourceSlotResource'
2589 }2588 }
2590 },2589 },
2591 /**2590 /**
2592 * Lookup286: rmrk_traits::resource::BasicResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2591 * Lookup297: rmrk_traits::resource::BasicResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2593 **/2592 **/
2594 RmrkTraitsResourceBasicResource: {2593 RmrkTraitsResourceBasicResource: {
2595 src: 'Option<Bytes>',2594 src: 'Option<Bytes>',
2596 metadata: 'Option<Bytes>',2595 metadata: 'Option<Bytes>',
2597 license: 'Option<Bytes>',2596 license: 'Option<Bytes>',
2598 thumb: 'Option<Bytes>'2597 thumb: 'Option<Bytes>'
2599 },2598 },
2600 /**2599 /**
2601 * Lookup288: rmrk_traits::resource::ComposableResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2600 * Lookup299: rmrk_traits::resource::ComposableResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2602 **/2601 **/
2603 RmrkTraitsResourceComposableResource: {2602 RmrkTraitsResourceComposableResource: {
2604 parts: 'Vec<u32>',2603 parts: 'Vec<u32>',
2605 base: 'u32',2604 base: 'u32',
2608 license: 'Option<Bytes>',2607 license: 'Option<Bytes>',
2609 thumb: 'Option<Bytes>'2608 thumb: 'Option<Bytes>'
2610 },2609 },
2611 /**2610 /**
2612 * Lookup289: rmrk_traits::resource::SlotResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2611 * Lookup300: rmrk_traits::resource::SlotResource<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2613 **/2612 **/
2614 RmrkTraitsResourceSlotResource: {2613 RmrkTraitsResourceSlotResource: {
2615 base: 'u32',2614 base: 'u32',
2616 src: 'Option<Bytes>',2615 src: 'Option<Bytes>',
2619 license: 'Option<Bytes>',2618 license: 'Option<Bytes>',
2620 thumb: 'Option<Bytes>'2619 thumb: 'Option<Bytes>'
2621 },2620 },
2622 /**2621 /**
2623 * Lookup292: pallet_rmrk_equip::pallet::Call<T>2622 * Lookup303: pallet_rmrk_equip::pallet::Call<T>
2624 **/2623 **/
2625 PalletRmrkEquipCall: {2624 PalletRmrkEquipCall: {
2626 _enum: {2625 _enum: {
2627 create_base: {2626 create_base: {
2640 }2639 }
2641 }2640 }
2642 },2641 },
2643 /**2642 /**
2644 * Lookup295: rmrk_traits::part::PartType<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2643 * Lookup306: rmrk_traits::part::PartType<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2645 **/2644 **/
2646 RmrkTraitsPartPartType: {2645 RmrkTraitsPartPartType: {
2647 _enum: {2646 _enum: {
2648 FixedPart: 'RmrkTraitsPartFixedPart',2647 FixedPart: 'RmrkTraitsPartFixedPart',
2649 SlotPart: 'RmrkTraitsPartSlotPart'2648 SlotPart: 'RmrkTraitsPartSlotPart'
2650 }2649 }
2651 },2650 },
2652 /**2651 /**
2653 * Lookup297: rmrk_traits::part::FixedPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2652 * Lookup308: rmrk_traits::part::FixedPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2654 **/2653 **/
2655 RmrkTraitsPartFixedPart: {2654 RmrkTraitsPartFixedPart: {
2656 id: 'u32',2655 id: 'u32',
2657 z: 'u32',2656 z: 'u32',
2658 src: 'Bytes'2657 src: 'Bytes'
2659 },2658 },
2660 /**2659 /**
2661 * Lookup298: rmrk_traits::part::SlotPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2660 * Lookup309: rmrk_traits::part::SlotPart<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2662 **/2661 **/
2663 RmrkTraitsPartSlotPart: {2662 RmrkTraitsPartSlotPart: {
2664 id: 'u32',2663 id: 'u32',
2665 equippable: 'RmrkTraitsPartEquippableList',2664 equippable: 'RmrkTraitsPartEquippableList',
2666 src: 'Bytes',2665 src: 'Bytes',
2667 z: 'u32'2666 z: 'u32'
2668 },2667 },
2669 /**2668 /**
2670 * Lookup299: rmrk_traits::part::EquippableList<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2669 * Lookup310: rmrk_traits::part::EquippableList<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2671 **/2670 **/
2672 RmrkTraitsPartEquippableList: {2671 RmrkTraitsPartEquippableList: {
2673 _enum: {2672 _enum: {
2674 All: 'Null',2673 All: 'Null',
2675 Empty: 'Null',2674 Empty: 'Null',
2676 Custom: 'Vec<u32>'2675 Custom: 'Vec<u32>'
2677 }2676 }
2678 },2677 },
2679 /**2678 /**
2680 * Lookup301: rmrk_traits::theme::Theme<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>, S>>2679 * Lookup312: rmrk_traits::theme::Theme<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>, S>>
2681 **/2680 **/
2682 RmrkTraitsTheme: {2681 RmrkTraitsTheme: {
2683 name: 'Bytes',2682 name: 'Bytes',
2684 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2683 properties: 'Vec<RmrkTraitsThemeThemeProperty>',
2685 inherit: 'bool'2684 inherit: 'bool'
2686 },2685 },
2687 /**2686 /**
2688 * Lookup303: rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>2687 * Lookup314: rmrk_traits::theme::ThemeProperty<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
2689 **/2688 **/
2690 RmrkTraitsThemeThemeProperty: {2689 RmrkTraitsThemeThemeProperty: {
2691 key: 'Bytes',2690 key: 'Bytes',
2692 value: 'Bytes'2691 value: 'Bytes'
2693 },2692 },
2694 /**
2695 * Lookup314: pallet_foreign_assets::module::Call<T>
2696 **/
2697 PalletForeignAssetsModuleCall: {
2698 _enum: {
2699 register_foreign_asset: {
2700 owner: 'AccountId32',
2701 location: 'XcmVersionedMultiLocation',
2702 metadata: 'PalletForeignAssetsModuleAssetMetadata',
2703 },
2704 update_foreign_asset: {
2705 foreignAssetId: 'u32',
2706 location: 'XcmVersionedMultiLocation',
2707 metadata: 'PalletForeignAssetsModuleAssetMetadata'
2708 }
2709 }
2710 },
2711 /**2693 /**
2712 * Lookup305: pallet_app_promotion::pallet::Call<T>2694 * Lookup316: pallet_app_promotion::pallet::Call<T>
2713 **/2695 **/
2714 PalletAppPromotionCall: {2696 PalletAppPromotionCall: {
2715 _enum: {2697 _enum: {
2716 set_admin_address: {2698 set_admin_address: {
2737 }2719 }
2738 }2720 }
2739 },2721 },
2722 /**
2723 * Lookup318: pallet_foreign_assets::module::Call<T>
2724 **/
2725 PalletForeignAssetsModuleCall: {
2726 _enum: {
2727 register_foreign_asset: {
2728 owner: 'AccountId32',
2729 location: 'XcmVersionedMultiLocation',
2730 metadata: 'PalletForeignAssetsModuleAssetMetadata',
2731 },
2732 update_foreign_asset: {
2733 foreignAssetId: 'u32',
2734 location: 'XcmVersionedMultiLocation',
2735 metadata: 'PalletForeignAssetsModuleAssetMetadata'
2736 }
2737 }
2738 },
2740 /**2739 /**
2741 * Lookup307: pallet_evm::pallet::Call<T>2740 * Lookup319: pallet_evm::pallet::Call<T>
2742 **/2741 **/
2743 PalletEvmCall: {2742 PalletEvmCall: {
2744 _enum: {2743 _enum: {
2745 withdraw: {2744 withdraw: {
2780 }2779 }
2781 }2780 }
2782 },2781 },
2783 /**2782 /**
2784 * Lookup311: pallet_ethereum::pallet::Call<T>2783 * Lookup323: pallet_ethereum::pallet::Call<T>
2785 **/2784 **/
2786 PalletEthereumCall: {2785 PalletEthereumCall: {
2787 _enum: {2786 _enum: {
2788 transact: {2787 transact: {
2789 transaction: 'EthereumTransactionTransactionV2'2788 transaction: 'EthereumTransactionTransactionV2'
2790 }2789 }
2791 }2790 }
2792 },2791 },
2793 /**2792 /**
2794 * Lookup312: ethereum::transaction::TransactionV22793 * Lookup324: ethereum::transaction::TransactionV2
2795 **/2794 **/
2796 EthereumTransactionTransactionV2: {2795 EthereumTransactionTransactionV2: {
2797 _enum: {2796 _enum: {
2798 Legacy: 'EthereumTransactionLegacyTransaction',2797 Legacy: 'EthereumTransactionLegacyTransaction',
2799 EIP2930: 'EthereumTransactionEip2930Transaction',2798 EIP2930: 'EthereumTransactionEip2930Transaction',
2800 EIP1559: 'EthereumTransactionEip1559Transaction'2799 EIP1559: 'EthereumTransactionEip1559Transaction'
2801 }2800 }
2802 },2801 },
2803 /**2802 /**
2804 * Lookup313: ethereum::transaction::LegacyTransaction2803 * Lookup325: ethereum::transaction::LegacyTransaction
2805 **/2804 **/
2806 EthereumTransactionLegacyTransaction: {2805 EthereumTransactionLegacyTransaction: {
2807 nonce: 'U256',2806 nonce: 'U256',
2808 gasPrice: 'U256',2807 gasPrice: 'U256',
2812 input: 'Bytes',2811 input: 'Bytes',
2813 signature: 'EthereumTransactionTransactionSignature'2812 signature: 'EthereumTransactionTransactionSignature'
2814 },2813 },
2815 /**2814 /**
2816 * Lookup314: ethereum::transaction::TransactionAction2815 * Lookup326: ethereum::transaction::TransactionAction
2817 **/2816 **/
2818 EthereumTransactionTransactionAction: {2817 EthereumTransactionTransactionAction: {
2819 _enum: {2818 _enum: {
2820 Call: 'H160',2819 Call: 'H160',
2821 Create: 'Null'2820 Create: 'Null'
2822 }2821 }
2823 },2822 },
2824 /**2823 /**
2825 * Lookup315: ethereum::transaction::TransactionSignature2824 * Lookup327: ethereum::transaction::TransactionSignature
2826 **/2825 **/
2827 EthereumTransactionTransactionSignature: {2826 EthereumTransactionTransactionSignature: {
2828 v: 'u64',2827 v: 'u64',
2829 r: 'H256',2828 r: 'H256',
2830 s: 'H256'2829 s: 'H256'
2831 },2830 },
2832 /**2831 /**
2833 * Lookup317: ethereum::transaction::EIP2930Transaction2832 * Lookup329: ethereum::transaction::EIP2930Transaction
2834 **/2833 **/
2835 EthereumTransactionEip2930Transaction: {2834 EthereumTransactionEip2930Transaction: {
2836 chainId: 'u64',2835 chainId: 'u64',
2837 nonce: 'U256',2836 nonce: 'U256',
2845 r: 'H256',2844 r: 'H256',
2846 s: 'H256'2845 s: 'H256'
2847 },2846 },
2848 /**2847 /**
2849 * Lookup319: ethereum::transaction::AccessListItem2848 * Lookup331: ethereum::transaction::AccessListItem
2850 **/2849 **/
2851 EthereumTransactionAccessListItem: {2850 EthereumTransactionAccessListItem: {
2852 address: 'H160',2851 address: 'H160',
2853 storageKeys: 'Vec<H256>'2852 storageKeys: 'Vec<H256>'
2854 },2853 },
2855 /**2854 /**
2856 * Lookup320: ethereum::transaction::EIP1559Transaction2855 * Lookup332: ethereum::transaction::EIP1559Transaction
2857 **/2856 **/
2858 EthereumTransactionEip1559Transaction: {2857 EthereumTransactionEip1559Transaction: {
2859 chainId: 'u64',2858 chainId: 'u64',
2860 nonce: 'U256',2859 nonce: 'U256',
2869 r: 'H256',2868 r: 'H256',
2870 s: 'H256'2869 s: 'H256'
2871 },2870 },
2872 /**2871 /**
2873 * Lookup321: pallet_evm_migration::pallet::Call<T>2872 * Lookup333: pallet_evm_migration::pallet::Call<T>
2874 **/2873 **/
2875 PalletEvmMigrationCall: {2874 PalletEvmMigrationCall: {
2876 _enum: {2875 _enum: {
2877 begin: {2876 begin: {
2887 }2886 }
2888 }2887 }
2889 },2888 },
2890 /**2889 /**
2891 * Lookup324: pallet_sudo::pallet::Error<T>2890 * Lookup336: pallet_sudo::pallet::Error<T>
2892 **/2891 **/
2893 PalletSudoError: {2892 PalletSudoError: {
2894 _enum: ['RequireSudo']2893 _enum: ['RequireSudo']
2895 },2894 },
2896 /**2895 /**
2897 * Lookup326: orml_vesting::module::Error<T>2896 * Lookup338: orml_vesting::module::Error<T>
2898 **/2897 **/
2899 OrmlVestingModuleError: {2898 OrmlVestingModuleError: {
2900 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2899 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
2901 },2900 },
2902 /**2901 /**
2903 * Lookup335: orml_xtokens::module::Error<T>2902 * Lookup339: orml_xtokens::module::Error<T>
2904 **/2903 **/
2905 OrmlXtokensModuleError: {2904 OrmlXtokensModuleError: {
2906 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2905 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
2907 },2906 },
2908 /**2907 /**
2909 * Lookup338: orml_tokens::BalanceLock<Balance>2908 * Lookup342: orml_tokens::BalanceLock<Balance>
2910 **/2909 **/
2911 OrmlTokensBalanceLock: {2910 OrmlTokensBalanceLock: {
2912 id: '[u8;8]',2911 id: '[u8;8]',
2913 amount: 'u128'2912 amount: 'u128'
2914 },2913 },
2915 /**2914 /**
2916 * Lookup340: orml_tokens::AccountData<Balance>2915 * Lookup344: orml_tokens::AccountData<Balance>
2917 **/2916 **/
2918 OrmlTokensAccountData: {2917 OrmlTokensAccountData: {
2919 free: 'u128',2918 free: 'u128',
2920 reserved: 'u128',2919 reserved: 'u128',
2921 frozen: 'u128'2920 frozen: 'u128'
2922 },2921 },
2923 /**2922 /**
2924 * Lookup342: orml_tokens::ReserveData<ReserveIdentifier, Balance>2923 * Lookup346: orml_tokens::ReserveData<ReserveIdentifier, Balance>
2925 **/2924 **/
2926 OrmlTokensReserveData: {2925 OrmlTokensReserveData: {
2927 id: 'Null',2926 id: 'Null',
2928 amount: 'u128'2927 amount: 'u128'
2929 },2928 },
2930 /**2929 /**
2931 * Lookup344: orml_tokens::module::Error<T>2930 * Lookup348: orml_tokens::module::Error<T>
2932 **/2931 **/
2933 OrmlTokensModuleError: {2932 OrmlTokensModuleError: {
2934 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']2933 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
2935 },2934 },
2936 /**2935 /**
2937 * Lookup346: cumulus_pallet_xcmp_queue::InboundChannelDetails2936 * Lookup350: cumulus_pallet_xcmp_queue::InboundChannelDetails
2938 **/2937 **/
2939 CumulusPalletXcmpQueueInboundChannelDetails: {2938 CumulusPalletXcmpQueueInboundChannelDetails: {
2940 sender: 'u32',2939 sender: 'u32',
2941 state: 'CumulusPalletXcmpQueueInboundState',2940 state: 'CumulusPalletXcmpQueueInboundState',
2942 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2941 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
2943 },2942 },
2944 /**2943 /**
2945 * Lookup329: cumulus_pallet_xcmp_queue::InboundState2944 * Lookup351: cumulus_pallet_xcmp_queue::InboundState
2946 **/2945 **/
2947 CumulusPalletXcmpQueueInboundState: {2946 CumulusPalletXcmpQueueInboundState: {
2948 _enum: ['Ok', 'Suspended']2947 _enum: ['Ok', 'Suspended']
2949 },2948 },
2950 /**2949 /**
2951 * Lookup332: polkadot_parachain::primitives::XcmpMessageFormat2950 * Lookup354: polkadot_parachain::primitives::XcmpMessageFormat
2952 **/2951 **/
2953 PolkadotParachainPrimitivesXcmpMessageFormat: {2952 PolkadotParachainPrimitivesXcmpMessageFormat: {
2954 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2953 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
2955 },2954 },
2956 /**2955 /**
2957 * Lookup335: cumulus_pallet_xcmp_queue::OutboundChannelDetails2956 * Lookup357: cumulus_pallet_xcmp_queue::OutboundChannelDetails
2958 **/2957 **/
2959 CumulusPalletXcmpQueueOutboundChannelDetails: {2958 CumulusPalletXcmpQueueOutboundChannelDetails: {
2960 recipient: 'u32',2959 recipient: 'u32',
2961 state: 'CumulusPalletXcmpQueueOutboundState',2960 state: 'CumulusPalletXcmpQueueOutboundState',
2962 signalsExist: 'bool',2961 signalsExist: 'bool',
2963 firstIndex: 'u16',2962 firstIndex: 'u16',
2964 lastIndex: 'u16'2963 lastIndex: 'u16'
2965 },2964 },
2966 /**2965 /**
2967 * Lookup336: cumulus_pallet_xcmp_queue::OutboundState2966 * Lookup358: cumulus_pallet_xcmp_queue::OutboundState
2968 **/2967 **/
2969 CumulusPalletXcmpQueueOutboundState: {2968 CumulusPalletXcmpQueueOutboundState: {
2970 _enum: ['Ok', 'Suspended']2969 _enum: ['Ok', 'Suspended']
2971 },2970 },
2972 /**2971 /**
2973 * Lookup338: cumulus_pallet_xcmp_queue::QueueConfigData2972 * Lookup360: cumulus_pallet_xcmp_queue::QueueConfigData
2974 **/2973 **/
2975 CumulusPalletXcmpQueueQueueConfigData: {2974 CumulusPalletXcmpQueueQueueConfigData: {
2976 suspendThreshold: 'u32',2975 suspendThreshold: 'u32',
2977 dropThreshold: 'u32',2976 dropThreshold: 'u32',
2980 weightRestrictDecay: 'u64',2979 weightRestrictDecay: 'u64',
2981 xcmpMaxIndividualWeight: 'u64'2980 xcmpMaxIndividualWeight: 'u64'
2982 },2981 },
2983 /**2982 /**
2984 * Lookup340: cumulus_pallet_xcmp_queue::pallet::Error<T>2983 * Lookup362: cumulus_pallet_xcmp_queue::pallet::Error<T>
2985 **/2984 **/
2986 CumulusPalletXcmpQueueError: {2985 CumulusPalletXcmpQueueError: {
2987 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']2986 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
2988 },2987 },
2989 /**2988 /**
2990 * Lookup341: pallet_xcm::pallet::Error<T>2989 * Lookup363: pallet_xcm::pallet::Error<T>
2991 **/2990 **/
2992 PalletXcmError: {2991 PalletXcmError: {
2993 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']2992 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
2994 },2993 },
2995 /**2994 /**
2996 * Lookup342: cumulus_pallet_xcm::pallet::Error<T>2995 * Lookup364: cumulus_pallet_xcm::pallet::Error<T>
2997 **/2996 **/
2998 CumulusPalletXcmError: 'Null',2997 CumulusPalletXcmError: 'Null',
2999 /**2998 /**
3000 * Lookup343: cumulus_pallet_dmp_queue::ConfigData2999 * Lookup365: cumulus_pallet_dmp_queue::ConfigData
3001 **/3000 **/
3002 CumulusPalletDmpQueueConfigData: {3001 CumulusPalletDmpQueueConfigData: {
3003 maxIndividual: 'u64'3002 maxIndividual: 'u64'
3004 },3003 },
3005 /**3004 /**
3006 * Lookup344: cumulus_pallet_dmp_queue::PageIndexData3005 * Lookup366: cumulus_pallet_dmp_queue::PageIndexData
3007 **/3006 **/
3008 CumulusPalletDmpQueuePageIndexData: {3007 CumulusPalletDmpQueuePageIndexData: {
3009 beginUsed: 'u32',3008 beginUsed: 'u32',
3010 endUsed: 'u32',3009 endUsed: 'u32',
3011 overweightCount: 'u64'3010 overweightCount: 'u64'
3012 },3011 },
3013 /**3012 /**
3014 * Lookup347: cumulus_pallet_dmp_queue::pallet::Error<T>3013 * Lookup369: cumulus_pallet_dmp_queue::pallet::Error<T>
3015 **/3014 **/
3016 CumulusPalletDmpQueueError: {3015 CumulusPalletDmpQueueError: {
3017 _enum: ['Unknown', 'OverLimit']3016 _enum: ['Unknown', 'OverLimit']
3018 },3017 },
3019 /**3018 /**
3020 * Lookup351: pallet_unique::Error<T>3019 * Lookup373: pallet_unique::Error<T>
3021 **/3020 **/
3022 PalletUniqueError: {3021 PalletUniqueError: {
3023 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3022 _enum: ['CollectionDecimalPointLimitExceeded', 'ConfirmUnsetSponsorFail', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
3024 },3023 },
3025 /**3024 /**
3026 * Lookup354: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>3025 * Lookup376: pallet_unique_scheduler::ScheduledV3<frame_support::traits::schedule::MaybeHashed<opal_runtime::Call, primitive_types::H256>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
3027 **/3026 **/
3028 PalletUniqueSchedulerScheduledV3: {3027 PalletUniqueSchedulerScheduledV3: {
3029 maybeId: 'Option<[u8;16]>',3028 maybeId: 'Option<[u8;16]>',
3030 priority: 'u8',3029 priority: 'u8',
3031 call: 'FrameSupportScheduleMaybeHashed',3030 call: 'FrameSupportScheduleMaybeHashed',
3032 maybePeriodic: 'Option<(u32,u32)>',3031 maybePeriodic: 'Option<(u32,u32)>',
3033 origin: 'OpalRuntimeOriginCaller'3032 origin: 'OpalRuntimeOriginCaller'
3034 },3033 },
3035 /**3034 /**
3036 * Lookup355: opal_runtime::OriginCaller3035 * Lookup377: opal_runtime::OriginCaller
3037 **/3036 **/
3038 OpalRuntimeOriginCaller: {3037 OpalRuntimeOriginCaller: {
3039 _enum: {3038 _enum: {
3040 system: 'FrameSupportDispatchRawOrigin',3039 system: 'FrameSupportDispatchRawOrigin',
3141 Ethereum: 'PalletEthereumRawOrigin'3140 Ethereum: 'PalletEthereumRawOrigin'
3142 }3141 }
3143 },3142 },
3144 /**3143 /**
3145 * Lookup356: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>3144 * Lookup378: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
3146 **/3145 **/
3147 FrameSupportDispatchRawOrigin: {3146 FrameSupportDispatchRawOrigin: {
3148 _enum: {3147 _enum: {
3149 Root: 'Null',3148 Root: 'Null',
3150 Signed: 'AccountId32',3149 Signed: 'AccountId32',
3151 None: 'Null'3150 None: 'Null'
3152 }3151 }
3153 },3152 },
3154 /**3153 /**
3155 * Lookup357: pallet_xcm::pallet::Origin3154 * Lookup379: pallet_xcm::pallet::Origin
3156 **/3155 **/
3157 PalletXcmOrigin: {3156 PalletXcmOrigin: {
3158 _enum: {3157 _enum: {
3159 Xcm: 'XcmV1MultiLocation',3158 Xcm: 'XcmV1MultiLocation',
3160 Response: 'XcmV1MultiLocation'3159 Response: 'XcmV1MultiLocation'
3161 }3160 }
3162 },3161 },
3163 /**3162 /**
3164 * Lookup358: cumulus_pallet_xcm::pallet::Origin3163 * Lookup380: cumulus_pallet_xcm::pallet::Origin
3165 **/3164 **/
3166 CumulusPalletXcmOrigin: {3165 CumulusPalletXcmOrigin: {
3167 _enum: {3166 _enum: {
3168 Relay: 'Null',3167 Relay: 'Null',
3169 SiblingParachain: 'u32'3168 SiblingParachain: 'u32'
3170 }3169 }
3171 },3170 },
3172 /**3171 /**
3173 * Lookup359: pallet_ethereum::RawOrigin3172 * Lookup381: pallet_ethereum::RawOrigin
3174 **/3173 **/
3175 PalletEthereumRawOrigin: {3174 PalletEthereumRawOrigin: {
3176 _enum: {3175 _enum: {
3177 EthereumTransaction: 'H160'3176 EthereumTransaction: 'H160'
3178 }3177 }
3179 },3178 },
3180 /**3179 /**
3181 * Lookup360: sp_core::Void3180 * Lookup382: sp_core::Void
3182 **/3181 **/
3183 SpCoreVoid: 'Null',3182 SpCoreVoid: 'Null',
3184 /**3183 /**
3185 * Lookup361: pallet_unique_scheduler::pallet::Error<T>3184 * Lookup383: pallet_unique_scheduler::pallet::Error<T>
3186 **/3185 **/
3187 PalletUniqueSchedulerError: {3186 PalletUniqueSchedulerError: {
3188 _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']3187 _enum: ['FailedToSchedule', 'NotFound', 'TargetBlockNumberInPast', 'RescheduleNoChange']
3189 },3188 },
3190 /**3189 /**
3191 * Lookup362: up_data_structs::Collection<sp_core::crypto::AccountId32>3190 * Lookup384: up_data_structs::Collection<sp_core::crypto::AccountId32>
3192 **/3191 **/
3193 UpDataStructsCollection: {3192 UpDataStructsCollection: {
3194 owner: 'AccountId32',3193 owner: 'AccountId32',
3195 mode: 'UpDataStructsCollectionMode',3194 mode: 'UpDataStructsCollectionMode',
3199 sponsorship: 'UpDataStructsSponsorshipStateAccountId32',3198 sponsorship: 'UpDataStructsSponsorshipStateAccountId32',
3200 limits: 'UpDataStructsCollectionLimits',3199 limits: 'UpDataStructsCollectionLimits',
3201 permissions: 'UpDataStructsCollectionPermissions',3200 permissions: 'UpDataStructsCollectionPermissions',
3202 externalCollection: 'bool'3201 flags: '[u8;1]'
3203 },3202 },
3204 /**3203 /**
3205 * Lookup363: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3204 * Lookup385: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
3206 **/3205 **/
3207 UpDataStructsSponsorshipStateAccountId32: {3206 UpDataStructsSponsorshipStateAccountId32: {
3208 _enum: {3207 _enum: {
3209 Disabled: 'Null',3208 Disabled: 'Null',
3210 Unconfirmed: 'AccountId32',3209 Unconfirmed: 'AccountId32',
3211 Confirmed: 'AccountId32'3210 Confirmed: 'AccountId32'
3212 }3211 }
3213 },3212 },
3214 /**3213 /**
3215 * Lookup364: up_data_structs::Properties3214 * Lookup387: up_data_structs::Properties
3216 **/3215 **/
3217 UpDataStructsProperties: {3216 UpDataStructsProperties: {
3218 map: 'UpDataStructsPropertiesMapBoundedVec',3217 map: 'UpDataStructsPropertiesMapBoundedVec',
3219 consumedSpace: 'u32',3218 consumedSpace: 'u32',
3220 spaceLimit: 'u32'3219 spaceLimit: 'u32'
3221 },3220 },
3222 /**3221 /**
3223 * Lookup365: up_data_structs::PropertiesMap<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3222 * Lookup388: up_data_structs::PropertiesMap<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
3224 **/3223 **/
3225 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3224 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
3226 /**3225 /**
3227 * Lookup370: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3226 * Lookup393: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
3228 **/3227 **/
3229 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3228 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
3230 /**3229 /**
3231 * Lookup377: up_data_structs::CollectionStats3230 * Lookup400: up_data_structs::CollectionStats
3232 **/3231 **/
3233 UpDataStructsCollectionStats: {3232 UpDataStructsCollectionStats: {
3234 created: 'u32',3233 created: 'u32',
3235 destroyed: 'u32',3234 destroyed: 'u32',
3236 alive: 'u32'3235 alive: 'u32'
3237 },3236 },
3238 /**3237 /**
3239 * Lookup378: up_data_structs::TokenChild3238 * Lookup401: up_data_structs::TokenChild
3240 **/3239 **/
3241 UpDataStructsTokenChild: {3240 UpDataStructsTokenChild: {
3242 token: 'u32',3241 token: 'u32',
3243 collection: 'u32'3242 collection: 'u32'
3244 },3243 },
3245 /**3244 /**
3246 * Lookup379: PhantomType::up_data_structs<T>3245 * Lookup402: PhantomType::up_data_structs<T>
3247 **/3246 **/
3248 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3247 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
3249 /**3248 /**
3250 * Lookup381: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3249 * Lookup404: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3251 **/3250 **/
3252 UpDataStructsTokenData: {3251 UpDataStructsTokenData: {
3253 properties: 'Vec<UpDataStructsProperty>',3252 properties: 'Vec<UpDataStructsProperty>',
3254 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3253 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',
3255 pieces: 'u128'3254 pieces: 'u128'
3256 },3255 },
3257 /**3256 /**
3258 * Lookup383: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3257 * Lookup406: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
3259 **/3258 **/
3260 UpDataStructsRpcCollection: {3259 UpDataStructsRpcCollection: {
3261 owner: 'AccountId32',3260 owner: 'AccountId32',
3262 mode: 'UpDataStructsCollectionMode',3261 mode: 'UpDataStructsCollectionMode',
3268 permissions: 'UpDataStructsCollectionPermissions',3267 permissions: 'UpDataStructsCollectionPermissions',
3269 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',3268 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',
3270 properties: 'Vec<UpDataStructsProperty>',3269 properties: 'Vec<UpDataStructsProperty>',
3271 readOnly: 'bool'3270 readOnly: 'bool',
3271 foreign: 'bool'
3272 },3272 },
3273 /**3273 /**
3274 * Lookup384: rmrk_traits::collection::CollectionInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3274 * Lookup407: rmrk_traits::collection::CollectionInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
3275 **/3275 **/
3276 RmrkTraitsCollectionCollectionInfo: {3276 RmrkTraitsCollectionCollectionInfo: {
3277 issuer: 'AccountId32',3277 issuer: 'AccountId32',
3278 metadata: 'Bytes',3278 metadata: 'Bytes',
3279 max: 'Option<u32>',3279 max: 'Option<u32>',
3280 symbol: 'Bytes',3280 symbol: 'Bytes',
3281 nftsCount: 'u32'3281 nftsCount: 'u32'
3282 },3282 },
3283 /**3283 /**
3284 * Lookup385: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3284 * Lookup408: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
3285 **/3285 **/
3286 RmrkTraitsNftNftInfo: {3286 RmrkTraitsNftNftInfo: {
3287 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3287 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
3288 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3288 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',
3289 metadata: 'Bytes',3289 metadata: 'Bytes',
3290 equipped: 'bool',3290 equipped: 'bool',
3291 pending: 'bool'3291 pending: 'bool'
3292 },3292 },
3293 /**3293 /**
3294 * Lookup387: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3294 * Lookup410: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
3295 **/3295 **/
3296 RmrkTraitsNftRoyaltyInfo: {3296 RmrkTraitsNftRoyaltyInfo: {
3297 recipient: 'AccountId32',3297 recipient: 'AccountId32',
3298 amount: 'Permill'3298 amount: 'Permill'
3299 },3299 },
3300 /**3300 /**
3301 * Lookup388: rmrk_traits::resource::ResourceInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3301 * Lookup411: rmrk_traits::resource::ResourceInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
3302 **/3302 **/
3303 RmrkTraitsResourceResourceInfo: {3303 RmrkTraitsResourceResourceInfo: {
3304 id: 'u32',3304 id: 'u32',
3305 resource: 'RmrkTraitsResourceResourceTypes',3305 resource: 'RmrkTraitsResourceResourceTypes',
3306 pending: 'bool',3306 pending: 'bool',
3307 pendingRemoval: 'bool'3307 pendingRemoval: 'bool'
3308 },3308 },
3309 /**3309 /**
3310 * Lookup389: rmrk_traits::property::PropertyInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3310 * Lookup412: rmrk_traits::property::PropertyInfo<sp_runtime::bounded::bounded_vec::BoundedVec<T, S>, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
3311 **/3311 **/
3312 RmrkTraitsPropertyPropertyInfo: {3312 RmrkTraitsPropertyPropertyInfo: {
3313 key: 'Bytes',3313 key: 'Bytes',
3314 value: 'Bytes'3314 value: 'Bytes'
3315 },3315 },
3316 /**3316 /**
3317 * Lookup390: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>3317 * Lookup413: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_runtime::bounded::bounded_vec::BoundedVec<T, S>>
3318 **/3318 **/
3319 RmrkTraitsBaseBaseInfo: {3319 RmrkTraitsBaseBaseInfo: {
3320 issuer: 'AccountId32',3320 issuer: 'AccountId32',
3321 baseType: 'Bytes',3321 baseType: 'Bytes',
3322 symbol: 'Bytes'3322 symbol: 'Bytes'
3323 },3323 },
3324 /**3324 /**
3325 * Lookup391: rmrk_traits::nft::NftChild3325 * Lookup414: rmrk_traits::nft::NftChild
3326 **/3326 **/
3327 RmrkTraitsNftNftChild: {3327 RmrkTraitsNftNftChild: {
3328 collectionId: 'u32',3328 collectionId: 'u32',
3329 nftId: 'u32'3329 nftId: 'u32'
3330 },3330 },
3331 /**3331 /**
3332 * Lookup393: pallet_common::pallet::Error<T>3332 * Lookup416: pallet_common::pallet::Error<T>
3333 **/3333 **/
3334 PalletCommonError: {3334 PalletCommonError: {
3335 _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']3335 _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']
3336 },3336 },
3337 /**3337 /**
3338 * Lookup395: pallet_fungible::pallet::Error<T>3338 * Lookup418: pallet_fungible::pallet::Error<T>
3339 **/3339 **/
3340 PalletFungibleError: {3340 PalletFungibleError: {
3341 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3341 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
3342 },3342 },
3343 /**3343 /**
3344 * Lookup396: pallet_refungible::ItemData3344 * Lookup419: pallet_refungible::ItemData
3345 **/3345 **/
3346 PalletRefungibleItemData: {3346 PalletRefungibleItemData: {
3347 constData: 'Bytes'3347 constData: 'Bytes'
3348 },3348 },
3349 /**3349 /**
3350 * Lookup401: pallet_refungible::pallet::Error<T>3350 * Lookup424: pallet_refungible::pallet::Error<T>
3351 **/3351 **/
3352 PalletRefungibleError: {3352 PalletRefungibleError: {
3353 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3353 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
3354 },3354 },
3355 /**3355 /**
3356 * Lookup402: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3356 * Lookup425: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3357 **/3357 **/
3358 PalletNonfungibleItemData: {3358 PalletNonfungibleItemData: {
3359 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3359 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
3360 },3360 },
3361 /**3361 /**
3362 * Lookup404: up_data_structs::PropertyScope3362 * Lookup427: up_data_structs::PropertyScope
3363 **/3363 **/
3364 UpDataStructsPropertyScope: {3364 UpDataStructsPropertyScope: {
3365 _enum: ['None', 'Rmrk']3365 _enum: ['None', 'Rmrk']
3366 },3366 },
3367 /**3367 /**
3368 * Lookup406: pallet_nonfungible::pallet::Error<T>3368 * Lookup429: pallet_nonfungible::pallet::Error<T>
3369 **/3369 **/
3370 PalletNonfungibleError: {3370 PalletNonfungibleError: {
3371 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3371 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
3372 },3372 },
3373 /**3373 /**
3374 * Lookup407: pallet_structure::pallet::Error<T>3374 * Lookup430: pallet_structure::pallet::Error<T>
3375 **/3375 **/
3376 PalletStructureError: {3376 PalletStructureError: {
3377 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3377 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
3378 },3378 },
3379 /**3379 /**
3380 * Lookup408: pallet_rmrk_core::pallet::Error<T>3380 * Lookup431: pallet_rmrk_core::pallet::Error<T>
3381 **/3381 **/
3382 PalletRmrkCoreError: {3382 PalletRmrkCoreError: {
3383 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3383 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
3384 },3384 },
3385 /**3385 /**
3386 * Lookup410: pallet_rmrk_equip::pallet::Error<T>3386 * Lookup433: pallet_rmrk_equip::pallet::Error<T>
3387 **/3387 **/
3388 PalletRmrkEquipError: {3388 PalletRmrkEquipError: {
3389 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3389 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
3390 },3390 },
3391 /**3391 /**
3392 * Lookup429: pallet_foreign_assets::module::Error<T>3392 * Lookup439: pallet_app_promotion::pallet::Error<T>
3393 **/3393 **/
3394 PalletForeignAssetsModuleError: {
3395 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
3396 },
3397 /**
3398 * Lookup432: pallet_evm::pallet::Error<T>
3399 * Lookup416: pallet_app_promotion::pallet::Error<T>
3400 **/
3401 PalletAppPromotionError: {3394 PalletAppPromotionError: {
3402 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3395 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
3403 },3396 },
3397 /**
3398 * Lookup440: pallet_foreign_assets::module::Error<T>
3399 **/
3400 PalletForeignAssetsModuleError: {
3401 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
3402 },
3404 /**3403 /**
3405 * Lookup419: pallet_evm::pallet::Error<T>3404 * Lookup443: pallet_evm::pallet::Error<T>
3406 **/3405 **/
3407 PalletEvmError: {3406 PalletEvmError: {
3408 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']3407 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce']
3409 },3408 },
3410 /**3409 /**
3411 * Lookup422: fp_rpc::TransactionStatus3410 * Lookup446: fp_rpc::TransactionStatus
3412 **/3411 **/
3413 FpRpcTransactionStatus: {3412 FpRpcTransactionStatus: {
3414 transactionHash: 'H256',3413 transactionHash: 'H256',
3415 transactionIndex: 'u32',3414 transactionIndex: 'u32',
3419 logs: 'Vec<EthereumLog>',3418 logs: 'Vec<EthereumLog>',
3420 logsBloom: 'EthbloomBloom'3419 logsBloom: 'EthbloomBloom'
3421 },3420 },
3422 /**3421 /**
3423 * Lookup424: ethbloom::Bloom3422 * Lookup448: ethbloom::Bloom
3424 **/3423 **/
3425 EthbloomBloom: '[u8;256]',3424 EthbloomBloom: '[u8;256]',
3426 /**3425 /**
3427 * Lookup426: ethereum::receipt::ReceiptV33426 * Lookup450: ethereum::receipt::ReceiptV3
3428 **/3427 **/
3429 EthereumReceiptReceiptV3: {3428 EthereumReceiptReceiptV3: {
3430 _enum: {3429 _enum: {
3431 Legacy: 'EthereumReceiptEip658ReceiptData',3430 Legacy: 'EthereumReceiptEip658ReceiptData',
3432 EIP2930: 'EthereumReceiptEip658ReceiptData',3431 EIP2930: 'EthereumReceiptEip658ReceiptData',
3433 EIP1559: 'EthereumReceiptEip658ReceiptData'3432 EIP1559: 'EthereumReceiptEip658ReceiptData'
3434 }3433 }
3435 },3434 },
3436 /**3435 /**
3437 * Lookup427: ethereum::receipt::EIP658ReceiptData3436 * Lookup451: ethereum::receipt::EIP658ReceiptData
3438 **/3437 **/
3439 EthereumReceiptEip658ReceiptData: {3438 EthereumReceiptEip658ReceiptData: {
3440 statusCode: 'u8',3439 statusCode: 'u8',
3441 usedGas: 'U256',3440 usedGas: 'U256',
3442 logsBloom: 'EthbloomBloom',3441 logsBloom: 'EthbloomBloom',
3443 logs: 'Vec<EthereumLog>'3442 logs: 'Vec<EthereumLog>'
3444 },3443 },
3445 /**3444 /**
3446 * Lookup428: ethereum::block::Block<ethereum::transaction::TransactionV2>3445 * Lookup452: ethereum::block::Block<ethereum::transaction::TransactionV2>
3447 **/3446 **/
3448 EthereumBlock: {3447 EthereumBlock: {
3449 header: 'EthereumHeader',3448 header: 'EthereumHeader',
3450 transactions: 'Vec<EthereumTransactionTransactionV2>',3449 transactions: 'Vec<EthereumTransactionTransactionV2>',
3451 ommers: 'Vec<EthereumHeader>'3450 ommers: 'Vec<EthereumHeader>'
3452 },3451 },
3453 /**3452 /**
3454 * Lookup429: ethereum::header::Header3453 * Lookup453: ethereum::header::Header
3455 **/3454 **/
3456 EthereumHeader: {3455 EthereumHeader: {
3457 parentHash: 'H256',3456 parentHash: 'H256',
3458 ommersHash: 'H256',3457 ommersHash: 'H256',
3470 mixHash: 'H256',3469 mixHash: 'H256',
3471 nonce: 'EthereumTypesHashH64'3470 nonce: 'EthereumTypesHashH64'
3472 },3471 },
3473 /**3472 /**
3474 * Lookup430: ethereum_types::hash::H643473 * Lookup454: ethereum_types::hash::H64
3475 **/3474 **/
3476 EthereumTypesHashH64: '[u8;8]',3475 EthereumTypesHashH64: '[u8;8]',
3477 /**3476 /**
3478 * Lookup435: pallet_ethereum::pallet::Error<T>3477 * Lookup459: pallet_ethereum::pallet::Error<T>
3479 **/3478 **/
3480 PalletEthereumError: {3479 PalletEthereumError: {
3481 _enum: ['InvalidSignature', 'PreLogExists']3480 _enum: ['InvalidSignature', 'PreLogExists']
3482 },3481 },
3483 /**3482 /**
3484 * Lookup436: pallet_evm_coder_substrate::pallet::Error<T>3483 * Lookup460: pallet_evm_coder_substrate::pallet::Error<T>
3485 **/3484 **/
3486 PalletEvmCoderSubstrateError: {3485 PalletEvmCoderSubstrateError: {
3487 _enum: ['OutOfGas', 'OutOfFund']3486 _enum: ['OutOfGas', 'OutOfFund']
3488 },3487 },
3489 /**3488 /**
3490 * Lookup437: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3489 * Lookup461: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3491 **/3490 **/
3492 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3491 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
3493 _enum: {3492 _enum: {
3494 Disabled: 'Null',3493 Disabled: 'Null',
3495 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3494 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',
3496 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3495 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'
3497 }3496 }
3498 },3497 },
3499 /**3498 /**
3500 * Lookup438: pallet_evm_contract_helpers::SponsoringModeT3499 * Lookup462: pallet_evm_contract_helpers::SponsoringModeT
3501 **/3500 **/
3502 PalletEvmContractHelpersSponsoringModeT: {3501 PalletEvmContractHelpersSponsoringModeT: {
3503 _enum: ['Disabled', 'Allowlisted', 'Generous']3502 _enum: ['Disabled', 'Allowlisted', 'Generous']
3504 },3503 },
3505 /**3504 /**
3506 * Lookup440: pallet_evm_contract_helpers::pallet::Error<T>3505 * Lookup468: pallet_evm_contract_helpers::pallet::Error<T>
3507 **/3506 **/
3508 PalletEvmContractHelpersError: {3507 PalletEvmContractHelpersError: {
3509 _enum: ['NoPermission', 'NoPendingSponsor']3508 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
3510 },3509 },
3511 /**3510 /**
3512 * Lookup441: pallet_evm_migration::pallet::Error<T>3511 * Lookup469: pallet_evm_migration::pallet::Error<T>
3513 **/3512 **/
3514 PalletEvmMigrationError: {3513 PalletEvmMigrationError: {
3515 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']3514 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating']
3516 },3515 },
3517 /**3516 /**
3518 * Lookup443: sp_runtime::MultiSignature3517 * Lookup471: sp_runtime::MultiSignature
3519 **/3518 **/
3520 SpRuntimeMultiSignature: {3519 SpRuntimeMultiSignature: {
3521 _enum: {3520 _enum: {
3522 Ed25519: 'SpCoreEd25519Signature',3521 Ed25519: 'SpCoreEd25519Signature',
3523 Sr25519: 'SpCoreSr25519Signature',3522 Sr25519: 'SpCoreSr25519Signature',
3524 Ecdsa: 'SpCoreEcdsaSignature'3523 Ecdsa: 'SpCoreEcdsaSignature'
3525 }3524 }
3526 },3525 },
3527 /**3526 /**
3528 * Lookup444: sp_core::ed25519::Signature3527 * Lookup472: sp_core::ed25519::Signature
3529 **/3528 **/
3530 SpCoreEd25519Signature: '[u8;64]',3529 SpCoreEd25519Signature: '[u8;64]',
3531 /**3530 /**
3532 * Lookup446: sp_core::sr25519::Signature3531 * Lookup474: sp_core::sr25519::Signature
3533 **/3532 **/
3534 SpCoreSr25519Signature: '[u8;64]',3533 SpCoreSr25519Signature: '[u8;64]',
3535 /**3534 /**
3536 * Lookup447: sp_core::ecdsa::Signature3535 * Lookup475: sp_core::ecdsa::Signature
3537 **/3536 **/
3538 SpCoreEcdsaSignature: '[u8;65]',3537 SpCoreEcdsaSignature: '[u8;65]',
3539 /**3538 /**
3540 * Lookup450: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3539 * Lookup478: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
3541 **/3540 **/
3542 FrameSystemExtensionsCheckSpecVersion: 'Null',3541 FrameSystemExtensionsCheckSpecVersion: 'Null',
3543 /**3542 /**
3544 * Lookup451: frame_system::extensions::check_genesis::CheckGenesis<T>3543 * Lookup479: frame_system::extensions::check_genesis::CheckGenesis<T>
3545 **/3544 **/
3546 FrameSystemExtensionsCheckGenesis: 'Null',3545 FrameSystemExtensionsCheckGenesis: 'Null',
3547 /**3546 /**
3548 * Lookup454: frame_system::extensions::check_nonce::CheckNonce<T>3547 * Lookup482: frame_system::extensions::check_nonce::CheckNonce<T>
3549 **/3548 **/
3550 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3549 FrameSystemExtensionsCheckNonce: 'Compact<u32>',
3551 /**3550 /**
3552 * Lookup455: frame_system::extensions::check_weight::CheckWeight<T>3551 * Lookup483: frame_system::extensions::check_weight::CheckWeight<T>
3553 **/3552 **/
3554 FrameSystemExtensionsCheckWeight: 'Null',3553 FrameSystemExtensionsCheckWeight: 'Null',
3555 /**3554 /**
3556 * Lookup456: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3555 * Lookup484: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
3557 **/3556 **/
3558 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3557 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
3559 /**3558 /**
3560 * Lookup457: opal_runtime::Runtime3559 * Lookup485: opal_runtime::Runtime
3561 **/3560 **/
3562 OpalRuntimeRuntime: 'Null',3561 OpalRuntimeRuntime: 'Null',
3563 /**3562 /**
3564 * Lookup458: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3563 * Lookup486: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
3565 **/3564 **/
3566 PalletEthereumFakeTransactionFinalizer: 'Null'3565 PalletEthereumFakeTransactionFinalizer: 'Null'
3567};3566};
35683567
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
7
8
97
10 import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, 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, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, 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, 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, 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';
11 CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent,
12 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, OrmlXtokensModuleCall, OrmlXtokensModuleError,
13 OrmlXtokensModuleEvent, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData,
14 XcmVersionedMultiAsset, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency,
15 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, FrameSupportDispatchRawOrigin, FrameSupportPalletId, FrameSupportScheduleLookupError, FrameSupportScheduleMaybeHashed, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchClass, FrameSupportWeightsDispatchInfo, FrameSupportWeightsPays, FrameSupportWeightsPerDispatchClassU32, FrameSupportWeightsPerDispatchClassU64, FrameSupportWeightsPerDispatchClassWeightsPerClass, FrameSupportWeightsRuntimeDbWeight, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeOriginCaller, OpalRuntimeRuntime, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, 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, PalletFungibleError, PalletInflationCall, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRefungibleItemData, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, 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, 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, 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, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
169
17declare module '@polkadot/types/types/registry' {10declare module '@polkadot/types/types/registry' {
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
1314 readonly type: 'BaseCreated' | 'EquippablesUpdated';1314 readonly type: 'BaseCreated' | 'EquippablesUpdated';
1315 }1315 }
1316
1317 /** @name PalletAppPromotionEvent (107) */
1318 interface PalletAppPromotionEvent extends Enum {
1319 readonly isStakingRecalculation: boolean;
1320 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
1321 readonly isStake: boolean;
1322 readonly asStake: ITuple<[AccountId32, u128]>;
1323 readonly isUnstake: boolean;
1324 readonly asUnstake: ITuple<[AccountId32, u128]>;
1325 readonly isSetAdmin: boolean;
1326 readonly asSetAdmin: AccountId32;
1327 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
1328 }
13161329
1317 /** @name PalletForeignAssetsModuleEvent (107) */1330 /** @name PalletForeignAssetsModuleEvent (108) */
1318 interface PalletForeignAssetsModuleEvent extends Enum {1331 interface PalletForeignAssetsModuleEvent extends Enum {
1319 readonly isForeignAssetRegistered: boolean;1332 readonly isForeignAssetRegistered: boolean;
1320 readonly asForeignAssetRegistered: {1333 readonly asForeignAssetRegistered: {
1341 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1354 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
1342 }1355 }
13431356
1344 /** @name PalletForeignAssetsModuleAssetMetadata (108) */1357 /** @name PalletForeignAssetsModuleAssetMetadata (109) */
1345 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1358 interface PalletForeignAssetsModuleAssetMetadata extends Struct {
1346 readonly name: Bytes;1359 readonly name: Bytes;
1347 readonly symbol: Bytes;1360 readonly symbol: Bytes;
1348 readonly decimals: u8;1361 readonly decimals: u8;
1349 readonly minimalBalance: u128;1362 readonly minimalBalance: u128;
1350 }1363 }
1351
1352 /** @name PalletEvmEvent (109) */
1353 /** @name PalletAppPromotionEvent (103) */
1354 interface PalletAppPromotionEvent extends Enum {
1355 readonly isStakingRecalculation: boolean;
1356 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
1357 readonly isStake: boolean;
1358 readonly asStake: ITuple<[AccountId32, u128]>;
1359 readonly isUnstake: boolean;
1360 readonly asUnstake: ITuple<[AccountId32, u128]>;
1361 readonly isSetAdmin: boolean;
1362 readonly asSetAdmin: AccountId32;
1363 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
1364 }
13651364
1366 /** @name PalletEvmEvent (104) */1365 /** @name PalletEvmEvent (110) */
1367 interface PalletEvmEvent extends Enum {1366 interface PalletEvmEvent extends Enum {
1368 readonly isLog: boolean;1367 readonly isLog: boolean;
1369 readonly asLog: EthereumLog;1368 readonly asLog: EthereumLog;
1382 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';1381 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed' | 'BalanceDeposit' | 'BalanceWithdraw';
1383 }1382 }
13841383
1385 /** @name EthereumLog (105) */1384 /** @name EthereumLog (111) */
1386 interface EthereumLog extends Struct {1385 interface EthereumLog extends Struct {
1387 readonly address: H160;1386 readonly address: H160;
1388 readonly topics: Vec<H256>;1387 readonly topics: Vec<H256>;
1389 readonly data: Bytes;1388 readonly data: Bytes;
1390 }1389 }
13911390
1392 /** @name PalletEthereumEvent (109) */1391 /** @name PalletEthereumEvent (115) */
1393 interface PalletEthereumEvent extends Enum {1392 interface PalletEthereumEvent extends Enum {
1394 readonly isExecuted: boolean;1393 readonly isExecuted: boolean;
1395 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;1394 readonly asExecuted: ITuple<[H160, H160, H256, EvmCoreErrorExitReason]>;
1396 readonly type: 'Executed';1395 readonly type: 'Executed';
1397 }1396 }
13981397
1399 /** @name EvmCoreErrorExitReason (110) */1398 /** @name EvmCoreErrorExitReason (116) */
1400 interface EvmCoreErrorExitReason extends Enum {1399 interface EvmCoreErrorExitReason extends Enum {
1401 readonly isSucceed: boolean;1400 readonly isSucceed: boolean;
1402 readonly asSucceed: EvmCoreErrorExitSucceed;1401 readonly asSucceed: EvmCoreErrorExitSucceed;
1409 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1408 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
1410 }1409 }
14111410
1412 /** @name EvmCoreErrorExitSucceed (111) */1411 /** @name EvmCoreErrorExitSucceed (117) */
1413 interface EvmCoreErrorExitSucceed extends Enum {1412 interface EvmCoreErrorExitSucceed extends Enum {
1414 readonly isStopped: boolean;1413 readonly isStopped: boolean;
1415 readonly isReturned: boolean;1414 readonly isReturned: boolean;
1416 readonly isSuicided: boolean;1415 readonly isSuicided: boolean;
1417 readonly type: 'Stopped' | 'Returned' | 'Suicided';1416 readonly type: 'Stopped' | 'Returned' | 'Suicided';
1418 }1417 }
14191418
1420 /** @name EvmCoreErrorExitError (112) */1419 /** @name EvmCoreErrorExitError (118) */
1421 interface EvmCoreErrorExitError extends Enum {1420 interface EvmCoreErrorExitError extends Enum {
1422 readonly isStackUnderflow: boolean;1421 readonly isStackUnderflow: boolean;
1423 readonly isStackOverflow: boolean;1422 readonly isStackOverflow: boolean;
1438 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1437 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
1439 }1438 }
14401439
1441 /** @name EvmCoreErrorExitRevert (115) */1440 /** @name EvmCoreErrorExitRevert (121) */
1442 interface EvmCoreErrorExitRevert extends Enum {1441 interface EvmCoreErrorExitRevert extends Enum {
1443 readonly isReverted: boolean;1442 readonly isReverted: boolean;
1444 readonly type: 'Reverted';1443 readonly type: 'Reverted';
1445 }1444 }
14461445
1447 /** @name EvmCoreErrorExitFatal (116) */1446 /** @name EvmCoreErrorExitFatal (122) */
1448 interface EvmCoreErrorExitFatal extends Enum {1447 interface EvmCoreErrorExitFatal extends Enum {
1449 readonly isNotSupported: boolean;1448 readonly isNotSupported: boolean;
1450 readonly isUnhandledInterrupt: boolean;1449 readonly isUnhandledInterrupt: boolean;
1455 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1454 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
1456 }1455 }
14571456
1458 /** @name FrameSystemPhase (122) */
1459 /** @name PalletEvmContractHelpersEvent (117) */1457 /** @name PalletEvmContractHelpersEvent (123) */
1460 interface PalletEvmContractHelpersEvent extends Enum {1458 interface PalletEvmContractHelpersEvent extends Enum {
1461 readonly isContractSponsorSet: boolean;1459 readonly isContractSponsorSet: boolean;
1462 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1460 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
1467 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1465 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
1468 }1466 }
14691467
1470 /** @name FrameSystemPhase (118) */1468 /** @name FrameSystemPhase (124) */
1471 interface FrameSystemPhase extends Enum {1469 interface FrameSystemPhase extends Enum {
1472 readonly isApplyExtrinsic: boolean;1470 readonly isApplyExtrinsic: boolean;
1473 readonly asApplyExtrinsic: u32;1471 readonly asApplyExtrinsic: u32;
1476 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1474 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
1477 }1475 }
14781476
1479 /** @name FrameSystemLastRuntimeUpgradeInfo (120) */1477 /** @name FrameSystemLastRuntimeUpgradeInfo (126) */
1480 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1478 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1481 readonly specVersion: Compact<u32>;1479 readonly specVersion: Compact<u32>;
1482 readonly specName: Text;1480 readonly specName: Text;
1483 }1481 }
14841482
1485 /** @name FrameSystemCall (121) */1483 /** @name FrameSystemCall (127) */
1486 interface FrameSystemCall extends Enum {1484 interface FrameSystemCall extends Enum {
1487 readonly isFillBlock: boolean;1485 readonly isFillBlock: boolean;
1488 readonly asFillBlock: {1486 readonly asFillBlock: {
1524 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1522 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
1525 }1523 }
15261524
1527 /** @name FrameSystemLimitsBlockWeights (126) */1525 /** @name FrameSystemLimitsBlockWeights (132) */
1528 interface FrameSystemLimitsBlockWeights extends Struct {1526 interface FrameSystemLimitsBlockWeights extends Struct {
1529 readonly baseBlock: u64;1527 readonly baseBlock: u64;
1530 readonly maxBlock: u64;1528 readonly maxBlock: u64;
1531 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;1529 readonly perClass: FrameSupportWeightsPerDispatchClassWeightsPerClass;
1532 }1530 }
15331531
1534 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (127) */1532 /** @name FrameSupportWeightsPerDispatchClassWeightsPerClass (133) */
1535 interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {1533 interface FrameSupportWeightsPerDispatchClassWeightsPerClass extends Struct {
1536 readonly normal: FrameSystemLimitsWeightsPerClass;1534 readonly normal: FrameSystemLimitsWeightsPerClass;
1537 readonly operational: FrameSystemLimitsWeightsPerClass;1535 readonly operational: FrameSystemLimitsWeightsPerClass;
1538 readonly mandatory: FrameSystemLimitsWeightsPerClass;1536 readonly mandatory: FrameSystemLimitsWeightsPerClass;
1539 }1537 }
15401538
1541 /** @name FrameSystemLimitsWeightsPerClass (128) */1539 /** @name FrameSystemLimitsWeightsPerClass (134) */
1542 interface FrameSystemLimitsWeightsPerClass extends Struct {1540 interface FrameSystemLimitsWeightsPerClass extends Struct {
1543 readonly baseExtrinsic: u64;1541 readonly baseExtrinsic: u64;
1544 readonly maxExtrinsic: Option<u64>;1542 readonly maxExtrinsic: Option<u64>;
1545 readonly maxTotal: Option<u64>;1543 readonly maxTotal: Option<u64>;
1546 readonly reserved: Option<u64>;1544 readonly reserved: Option<u64>;
1547 }1545 }
15481546
1549 /** @name FrameSystemLimitsBlockLength (130) */1547 /** @name FrameSystemLimitsBlockLength (136) */
1550 interface FrameSystemLimitsBlockLength extends Struct {1548 interface FrameSystemLimitsBlockLength extends Struct {
1551 readonly max: FrameSupportWeightsPerDispatchClassU32;1549 readonly max: FrameSupportWeightsPerDispatchClassU32;
1552 }1550 }
15531551
1554 /** @name FrameSupportWeightsPerDispatchClassU32 (131) */1552 /** @name FrameSupportWeightsPerDispatchClassU32 (137) */
1555 interface FrameSupportWeightsPerDispatchClassU32 extends Struct {1553 interface FrameSupportWeightsPerDispatchClassU32 extends Struct {
1556 readonly normal: u32;1554 readonly normal: u32;
1557 readonly operational: u32;1555 readonly operational: u32;
1558 readonly mandatory: u32;1556 readonly mandatory: u32;
1559 }1557 }
15601558
1561 /** @name FrameSupportWeightsRuntimeDbWeight (132) */1559 /** @name FrameSupportWeightsRuntimeDbWeight (138) */
1562 interface FrameSupportWeightsRuntimeDbWeight extends Struct {1560 interface FrameSupportWeightsRuntimeDbWeight extends Struct {
1563 readonly read: u64;1561 readonly read: u64;
1564 readonly write: u64;1562 readonly write: u64;
1565 }1563 }
15661564
1567 /** @name SpVersionRuntimeVersion (133) */1565 /** @name SpVersionRuntimeVersion (139) */
1568 interface SpVersionRuntimeVersion extends Struct {1566 interface SpVersionRuntimeVersion extends Struct {
1569 readonly specName: Text;1567 readonly specName: Text;
1570 readonly implName: Text;1568 readonly implName: Text;
1576 readonly stateVersion: u8;1574 readonly stateVersion: u8;
1577 }1575 }
15781576
1579 /** @name FrameSystemError (138) */1577 /** @name FrameSystemError (144) */
1580 interface FrameSystemError extends Enum {1578 interface FrameSystemError extends Enum {
1581 readonly isInvalidSpecName: boolean;1579 readonly isInvalidSpecName: boolean;
1582 readonly isSpecVersionNeedsToIncrease: boolean;1580 readonly isSpecVersionNeedsToIncrease: boolean;
1587 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1585 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
1588 }1586 }
15891587
1590 /** @name PolkadotPrimitivesV2PersistedValidationData (139) */1588 /** @name PolkadotPrimitivesV2PersistedValidationData (145) */
1591 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1589 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
1592 readonly parentHead: Bytes;1590 readonly parentHead: Bytes;
1593 readonly relayParentNumber: u32;1591 readonly relayParentNumber: u32;
1594 readonly relayParentStorageRoot: H256;1592 readonly relayParentStorageRoot: H256;
1595 readonly maxPovSize: u32;1593 readonly maxPovSize: u32;
1596 }1594 }
15971595
1598 /** @name PolkadotPrimitivesV2UpgradeRestriction (142) */1596 /** @name PolkadotPrimitivesV2UpgradeRestriction (148) */
1599 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1597 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
1600 readonly isPresent: boolean;1598 readonly isPresent: boolean;
1601 readonly type: 'Present';1599 readonly type: 'Present';
1602 }1600 }
16031601
1604 /** @name SpTrieStorageProof (143) */1602 /** @name SpTrieStorageProof (149) */
1605 interface SpTrieStorageProof extends Struct {1603 interface SpTrieStorageProof extends Struct {
1606 readonly trieNodes: BTreeSet<Bytes>;1604 readonly trieNodes: BTreeSet<Bytes>;
1607 }1605 }
16081606
1609 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (145) */1607 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (151) */
1610 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1608 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
1611 readonly dmqMqcHead: H256;1609 readonly dmqMqcHead: H256;
1612 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1610 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
1613 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1611 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
1614 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1612 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
1615 }1613 }
16161614
1617 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (148) */1615 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (154) */
1618 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1616 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
1619 readonly maxCapacity: u32;1617 readonly maxCapacity: u32;
1620 readonly maxTotalSize: u32;1618 readonly maxTotalSize: u32;
1624 readonly mqcHead: Option<H256>;1622 readonly mqcHead: Option<H256>;
1625 }1623 }
16261624
1627 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (149) */1625 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (155) */
1628 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1626 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
1629 readonly maxCodeSize: u32;1627 readonly maxCodeSize: u32;
1630 readonly maxHeadDataSize: u32;1628 readonly maxHeadDataSize: u32;
1637 readonly validationUpgradeDelay: u32;1635 readonly validationUpgradeDelay: u32;
1638 }1636 }
16391637
1640 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (155) */1638 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (161) */
1641 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1639 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
1642 readonly recipient: u32;1640 readonly recipient: u32;
1643 readonly data: Bytes;1641 readonly data: Bytes;
1644 }1642 }
16451643
1646 /** @name CumulusPalletParachainSystemCall (156) */1644 /** @name CumulusPalletParachainSystemCall (162) */
1647 interface CumulusPalletParachainSystemCall extends Enum {1645 interface CumulusPalletParachainSystemCall extends Enum {
1648 readonly isSetValidationData: boolean;1646 readonly isSetValidationData: boolean;
1649 readonly asSetValidationData: {1647 readonly asSetValidationData: {
1664 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1662 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
1665 }1663 }
16661664
1667 /** @name CumulusPrimitivesParachainInherentParachainInherentData (157) */1665 /** @name CumulusPrimitivesParachainInherentParachainInherentData (163) */
1668 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1666 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
1669 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1667 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
1670 readonly relayChainState: SpTrieStorageProof;1668 readonly relayChainState: SpTrieStorageProof;
1671 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1669 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;
1672 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1670 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
1673 }1671 }
16741672
1675 /** @name PolkadotCorePrimitivesInboundDownwardMessage (159) */1673 /** @name PolkadotCorePrimitivesInboundDownwardMessage (165) */
1676 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1674 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
1677 readonly sentAt: u32;1675 readonly sentAt: u32;
1678 readonly msg: Bytes;1676 readonly msg: Bytes;
1679 }1677 }
16801678
1681 /** @name PolkadotCorePrimitivesInboundHrmpMessage (162) */1679 /** @name PolkadotCorePrimitivesInboundHrmpMessage (168) */
1682 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1680 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
1683 readonly sentAt: u32;1681 readonly sentAt: u32;
1684 readonly data: Bytes;1682 readonly data: Bytes;
1685 }1683 }
16861684
1687 /** @name CumulusPalletParachainSystemError (165) */1685 /** @name CumulusPalletParachainSystemError (171) */
1688 interface CumulusPalletParachainSystemError extends Enum {1686 interface CumulusPalletParachainSystemError extends Enum {
1689 readonly isOverlappingUpgrades: boolean;1687 readonly isOverlappingUpgrades: boolean;
1690 readonly isProhibitedByPolkadot: boolean;1688 readonly isProhibitedByPolkadot: boolean;
1697 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1695 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
1698 }1696 }
16991697
1700 /** @name PalletBalancesBalanceLock (167) */1698 /** @name PalletBalancesBalanceLock (173) */
1701 interface PalletBalancesBalanceLock extends Struct {1699 interface PalletBalancesBalanceLock extends Struct {
1702 readonly id: U8aFixed;1700 readonly id: U8aFixed;
1703 readonly amount: u128;1701 readonly amount: u128;
1704 readonly reasons: PalletBalancesReasons;1702 readonly reasons: PalletBalancesReasons;
1705 }1703 }
17061704
1707 /** @name PalletBalancesReasons (168) */1705 /** @name PalletBalancesReasons (174) */
1708 interface PalletBalancesReasons extends Enum {1706 interface PalletBalancesReasons extends Enum {
1709 readonly isFee: boolean;1707 readonly isFee: boolean;
1710 readonly isMisc: boolean;1708 readonly isMisc: boolean;
1711 readonly isAll: boolean;1709 readonly isAll: boolean;
1712 readonly type: 'Fee' | 'Misc' | 'All';1710 readonly type: 'Fee' | 'Misc' | 'All';
1713 }1711 }
17141712
1715 /** @name PalletBalancesReserveData (171) */1713 /** @name PalletBalancesReserveData (177) */
1716 interface PalletBalancesReserveData extends Struct {1714 interface PalletBalancesReserveData extends Struct {
1717 readonly id: U8aFixed;1715 readonly id: U8aFixed;
1718 readonly amount: u128;1716 readonly amount: u128;
1719 }1717 }
17201718
1721 /** @name PalletBalancesReleases (173) */1719 /** @name PalletBalancesReleases (179) */
1722 interface PalletBalancesReleases extends Enum {1720 interface PalletBalancesReleases extends Enum {
1723 readonly isV100: boolean;1721 readonly isV100: boolean;
1724 readonly isV200: boolean;1722 readonly isV200: boolean;
1725 readonly type: 'V100' | 'V200';1723 readonly type: 'V100' | 'V200';
1726 }1724 }
17271725
1728 /** @name PalletBalancesCall (174) */1726 /** @name PalletBalancesCall (180) */
1729 interface PalletBalancesCall extends Enum {1727 interface PalletBalancesCall extends Enum {
1730 readonly isTransfer: boolean;1728 readonly isTransfer: boolean;
1731 readonly asTransfer: {1729 readonly asTransfer: {
1762 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1760 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
1763 }1761 }
17641762
1765 /** @name PalletBalancesError (177) */1763 /** @name PalletBalancesError (183) */
1766 interface PalletBalancesError extends Enum {1764 interface PalletBalancesError extends Enum {
1767 readonly isVestingBalance: boolean;1765 readonly isVestingBalance: boolean;
1768 readonly isLiquidityRestrictions: boolean;1766 readonly isLiquidityRestrictions: boolean;
1775 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1773 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
1776 }1774 }
17771775
1778 /** @name PalletTimestampCall (179) */1776 /** @name PalletTimestampCall (185) */
1779 interface PalletTimestampCall extends Enum {1777 interface PalletTimestampCall extends Enum {
1780 readonly isSet: boolean;1778 readonly isSet: boolean;
1781 readonly asSet: {1779 readonly asSet: {
1784 readonly type: 'Set';1782 readonly type: 'Set';
1785 }1783 }
17861784
1787 /** @name PalletTransactionPaymentReleases (181) */1785 /** @name PalletTransactionPaymentReleases (187) */
1788 interface PalletTransactionPaymentReleases extends Enum {1786 interface PalletTransactionPaymentReleases extends Enum {
1789 readonly isV1Ancient: boolean;1787 readonly isV1Ancient: boolean;
1790 readonly isV2: boolean;1788 readonly isV2: boolean;
1791 readonly type: 'V1Ancient' | 'V2';1789 readonly type: 'V1Ancient' | 'V2';
1792 }1790 }
17931791
1794 /** @name PalletTreasuryProposal (182) */1792 /** @name PalletTreasuryProposal (188) */
1795 interface PalletTreasuryProposal extends Struct {1793 interface PalletTreasuryProposal extends Struct {
1796 readonly proposer: AccountId32;1794 readonly proposer: AccountId32;
1797 readonly value: u128;1795 readonly value: u128;
1798 readonly beneficiary: AccountId32;1796 readonly beneficiary: AccountId32;
1799 readonly bond: u128;1797 readonly bond: u128;
1800 }1798 }
18011799
1802 /** @name PalletTreasuryCall (185) */1800 /** @name PalletTreasuryCall (191) */
1803 interface PalletTreasuryCall extends Enum {1801 interface PalletTreasuryCall extends Enum {
1804 readonly isProposeSpend: boolean;1802 readonly isProposeSpend: boolean;
1805 readonly asProposeSpend: {1803 readonly asProposeSpend: {
1826 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1824 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
1827 }1825 }
18281826
1829 /** @name FrameSupportPalletId (188) */1827 /** @name FrameSupportPalletId (194) */
1830 interface FrameSupportPalletId extends U8aFixed {}1828 interface FrameSupportPalletId extends U8aFixed {}
18311829
1832 /** @name PalletTreasuryError (189) */1830 /** @name PalletTreasuryError (195) */
1833 interface PalletTreasuryError extends Enum {1831 interface PalletTreasuryError extends Enum {
1834 readonly isInsufficientProposersBalance: boolean;1832 readonly isInsufficientProposersBalance: boolean;
1835 readonly isInvalidIndex: boolean;1833 readonly isInvalidIndex: boolean;
1839 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1837 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
1840 }1838 }
18411839
1842 /** @name PalletSudoCall (190) */1840 /** @name PalletSudoCall (196) */
1843 interface PalletSudoCall extends Enum {1841 interface PalletSudoCall extends Enum {
1844 readonly isSudo: boolean;1842 readonly isSudo: boolean;
1845 readonly asSudo: {1843 readonly asSudo: {
1862 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1860 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
1863 }1861 }
18641862
1865 /** @name OrmlVestingModuleCall (192) */1863 /** @name OrmlVestingModuleCall (198) */
1866 interface OrmlVestingModuleCall extends Enum {1864 interface OrmlVestingModuleCall extends Enum {
1867 readonly isClaim: boolean;1865 readonly isClaim: boolean;
1868 readonly isVestedTransfer: boolean;1866 readonly isVestedTransfer: boolean;
1882 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1880 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
1883 }1881 }
18841882
1885 /** @name OrmlXtokensModuleCall (198) */1883 /** @name OrmlXtokensModuleCall (200) */
1886 interface OrmlXtokensModuleCall extends Enum {1884 interface OrmlXtokensModuleCall extends Enum {
1887 readonly isTransfer: boolean;1885 readonly isTransfer: boolean;
1888 readonly asTransfer: {1886 readonly asTransfer: {
1929 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1927 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
1930 }1928 }
19311929
1932 /** @name XcmVersionedMultiAsset (199) */1930 /** @name XcmVersionedMultiAsset (201) */
1933 interface XcmVersionedMultiAsset extends Enum {1931 interface XcmVersionedMultiAsset extends Enum {
1934 readonly isV0: boolean;1932 readonly isV0: boolean;
1935 readonly asV0: XcmV0MultiAsset;1933 readonly asV0: XcmV0MultiAsset;
1938 readonly type: 'V0' | 'V1';1936 readonly type: 'V0' | 'V1';
1939 }1937 }
19401938
1941 /** @name OrmlTokensModuleCall (202) */1939 /** @name OrmlTokensModuleCall (204) */
1942 interface OrmlTokensModuleCall extends Enum {1940 interface OrmlTokensModuleCall extends Enum {
1943 readonly isTransfer: boolean;1941 readonly isTransfer: boolean;
1944 readonly asTransfer: {1942 readonly asTransfer: {
1975 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';1973 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
1976 }1974 }
19771975
1978 /** @name CumulusPalletXcmpQueueCall (203) */1976 /** @name CumulusPalletXcmpQueueCall (205) */
1979 interface CumulusPalletXcmpQueueCall extends Enum {1977 interface CumulusPalletXcmpQueueCall extends Enum {
1980 readonly isServiceOverweight: boolean;1978 readonly isServiceOverweight: boolean;
1981 readonly asServiceOverweight: {1979 readonly asServiceOverweight: {
2011 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2009 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
2012 }2010 }
20132011
2014 /** @name PalletXcmCall (195) */2012 /** @name PalletXcmCall (206) */
2015 interface PalletXcmCall extends Enum {2013 interface PalletXcmCall extends Enum {
2016 readonly isSend: boolean;2014 readonly isSend: boolean;
2017 readonly asSend: {2015 readonly asSend: {
2073 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2071 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
2074 }2072 }
20752073
2076 /** @name XcmVersionedXcm (196) */2074 /** @name XcmVersionedXcm (207) */
2077 interface XcmVersionedXcm extends Enum {2075 interface XcmVersionedXcm extends Enum {
2078 readonly isV0: boolean;2076 readonly isV0: boolean;
2079 readonly asV0: XcmV0Xcm;2077 readonly asV0: XcmV0Xcm;
2084 readonly type: 'V0' | 'V1' | 'V2';2082 readonly type: 'V0' | 'V1' | 'V2';
2085 }2083 }
20862084
2087 /** @name XcmV0Xcm (197) */2085 /** @name XcmV0Xcm (208) */
2088 interface XcmV0Xcm extends Enum {2086 interface XcmV0Xcm extends Enum {
2089 readonly isWithdrawAsset: boolean;2087 readonly isWithdrawAsset: boolean;
2090 readonly asWithdrawAsset: {2088 readonly asWithdrawAsset: {
2147 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2145 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
2148 }2146 }
21492147
2150 /** @name XcmV0Order (199) */2148 /** @name XcmV0Order (210) */
2151 interface XcmV0Order extends Enum {2149 interface XcmV0Order extends Enum {
2152 readonly isNull: boolean;2150 readonly isNull: boolean;
2153 readonly isDepositAsset: boolean;2151 readonly isDepositAsset: boolean;
2195 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2193 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
2196 }2194 }
21972195
2198 /** @name XcmV0Response (201) */2196 /** @name XcmV0Response (212) */
2199 interface XcmV0Response extends Enum {2197 interface XcmV0Response extends Enum {
2200 readonly isAssets: boolean;2198 readonly isAssets: boolean;
2201 readonly asAssets: Vec<XcmV0MultiAsset>;2199 readonly asAssets: Vec<XcmV0MultiAsset>;
2202 readonly type: 'Assets';2200 readonly type: 'Assets';
2203 }2201 }
22042202
2205 /** @name XcmV1Xcm (202) */2203 /** @name XcmV1Xcm (213) */
2206 interface XcmV1Xcm extends Enum {2204 interface XcmV1Xcm extends Enum {
2207 readonly isWithdrawAsset: boolean;2205 readonly isWithdrawAsset: boolean;
2208 readonly asWithdrawAsset: {2206 readonly asWithdrawAsset: {
2271 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2269 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
2272 }2270 }
22732271
2274 /** @name XcmV1Order (204) */2272 /** @name XcmV1Order (215) */
2275 interface XcmV1Order extends Enum {2273 interface XcmV1Order extends Enum {
2276 readonly isNoop: boolean;2274 readonly isNoop: boolean;
2277 readonly isDepositAsset: boolean;2275 readonly isDepositAsset: boolean;
2321 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2319 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
2322 }2320 }
23232321
2324 /** @name XcmV1Response (206) */2322 /** @name XcmV1Response (217) */
2325 interface XcmV1Response extends Enum {2323 interface XcmV1Response extends Enum {
2326 readonly isAssets: boolean;2324 readonly isAssets: boolean;
2327 readonly asAssets: XcmV1MultiassetMultiAssets;2325 readonly asAssets: XcmV1MultiassetMultiAssets;
2330 readonly type: 'Assets' | 'Version';2328 readonly type: 'Assets' | 'Version';
2331 }2329 }
23322330
2333 /** @name CumulusPalletXcmCall (220) */2331 /** @name CumulusPalletXcmCall (231) */
2334 type CumulusPalletXcmCall = Null;2332 type CumulusPalletXcmCall = Null;
23352333
2336 /** @name CumulusPalletDmpQueueCall (221) */2334 /** @name CumulusPalletDmpQueueCall (232) */
2337 interface CumulusPalletDmpQueueCall extends Enum {2335 interface CumulusPalletDmpQueueCall extends Enum {
2338 readonly isServiceOverweight: boolean;2336 readonly isServiceOverweight: boolean;
2339 readonly asServiceOverweight: {2337 readonly asServiceOverweight: {
2343 readonly type: 'ServiceOverweight';2341 readonly type: 'ServiceOverweight';
2344 }2342 }
23452343
2346 /** @name PalletInflationCall (222) */2344 /** @name PalletInflationCall (233) */
2347 interface PalletInflationCall extends Enum {2345 interface PalletInflationCall extends Enum {
2348 readonly isStartInflation: boolean;2346 readonly isStartInflation: boolean;
2349 readonly asStartInflation: {2347 readonly asStartInflation: {
2352 readonly type: 'StartInflation';2350 readonly type: 'StartInflation';
2353 }2351 }
23542352
2355 /** @name PalletUniqueCall (223) */2353 /** @name PalletUniqueCall (234) */
2356 interface PalletUniqueCall extends Enum {2354 interface PalletUniqueCall extends Enum {
2357 readonly isCreateCollection: boolean;2355 readonly isCreateCollection: boolean;
2358 readonly asCreateCollection: {2356 readonly asCreateCollection: {
2510 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition';2508 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition';
2511 }2509 }
25122510
2513 /** @name UpDataStructsCollectionMode (228) */2511 /** @name UpDataStructsCollectionMode (239) */
2514 interface UpDataStructsCollectionMode extends Enum {2512 interface UpDataStructsCollectionMode extends Enum {
2515 readonly isNft: boolean;2513 readonly isNft: boolean;
2516 readonly isFungible: boolean;2514 readonly isFungible: boolean;
2519 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2517 readonly type: 'Nft' | 'Fungible' | 'ReFungible';
2520 }2518 }
25212519
2522 /** @name UpDataStructsCreateCollectionData (229) */2520 /** @name UpDataStructsCreateCollectionData (240) */
2523 interface UpDataStructsCreateCollectionData extends Struct {2521 interface UpDataStructsCreateCollectionData extends Struct {
2524 readonly mode: UpDataStructsCollectionMode;2522 readonly mode: UpDataStructsCollectionMode;
2525 readonly access: Option<UpDataStructsAccessMode>;2523 readonly access: Option<UpDataStructsAccessMode>;
2533 readonly properties: Vec<UpDataStructsProperty>;2531 readonly properties: Vec<UpDataStructsProperty>;
2534 }2532 }
25352533
2536 /** @name UpDataStructsAccessMode (231) */2534 /** @name UpDataStructsAccessMode (242) */
2537 interface UpDataStructsAccessMode extends Enum {2535 interface UpDataStructsAccessMode extends Enum {
2538 readonly isNormal: boolean;2536 readonly isNormal: boolean;
2539 readonly isAllowList: boolean;2537 readonly isAllowList: boolean;
2540 readonly type: 'Normal' | 'AllowList';2538 readonly type: 'Normal' | 'AllowList';
2541 }2539 }
25422540
2543 /** @name UpDataStructsCollectionLimits (233) */2541 /** @name UpDataStructsCollectionLimits (244) */
2544 interface UpDataStructsCollectionLimits extends Struct {2542 interface UpDataStructsCollectionLimits extends Struct {
2545 readonly accountTokenOwnershipLimit: Option<u32>;2543 readonly accountTokenOwnershipLimit: Option<u32>;
2546 readonly sponsoredDataSize: Option<u32>;2544 readonly sponsoredDataSize: Option<u32>;
2553 readonly transfersEnabled: Option<bool>;2551 readonly transfersEnabled: Option<bool>;
2554 }2552 }
25552553
2556 /** @name UpDataStructsSponsoringRateLimit (235) */2554 /** @name UpDataStructsSponsoringRateLimit (246) */
2557 interface UpDataStructsSponsoringRateLimit extends Enum {2555 interface UpDataStructsSponsoringRateLimit extends Enum {
2558 readonly isSponsoringDisabled: boolean;2556 readonly isSponsoringDisabled: boolean;
2559 readonly isBlocks: boolean;2557 readonly isBlocks: boolean;
2560 readonly asBlocks: u32;2558 readonly asBlocks: u32;
2561 readonly type: 'SponsoringDisabled' | 'Blocks';2559 readonly type: 'SponsoringDisabled' | 'Blocks';
2562 }2560 }
25632561
2564 /** @name UpDataStructsCollectionPermissions (238) */2562 /** @name UpDataStructsCollectionPermissions (249) */
2565 interface UpDataStructsCollectionPermissions extends Struct {2563 interface UpDataStructsCollectionPermissions extends Struct {
2566 readonly access: Option<UpDataStructsAccessMode>;2564 readonly access: Option<UpDataStructsAccessMode>;
2567 readonly mintMode: Option<bool>;2565 readonly mintMode: Option<bool>;
2568 readonly nesting: Option<UpDataStructsNestingPermissions>;2566 readonly nesting: Option<UpDataStructsNestingPermissions>;
2569 }2567 }
25702568
2571 /** @name UpDataStructsNestingPermissions (240) */2569 /** @name UpDataStructsNestingPermissions (251) */
2572 interface UpDataStructsNestingPermissions extends Struct {2570 interface UpDataStructsNestingPermissions extends Struct {
2573 readonly tokenOwner: bool;2571 readonly tokenOwner: bool;
2574 readonly collectionAdmin: bool;2572 readonly collectionAdmin: bool;
2575 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2573 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
2576 }2574 }
25772575
2578 /** @name UpDataStructsOwnerRestrictedSet (242) */2576 /** @name UpDataStructsOwnerRestrictedSet (253) */
2579 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}2577 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
25802578
2581 /** @name UpDataStructsPropertyKeyPermission (247) */2579 /** @name UpDataStructsPropertyKeyPermission (258) */
2582 interface UpDataStructsPropertyKeyPermission extends Struct {2580 interface UpDataStructsPropertyKeyPermission extends Struct {
2583 readonly key: Bytes;2581 readonly key: Bytes;
2584 readonly permission: UpDataStructsPropertyPermission;2582 readonly permission: UpDataStructsPropertyPermission;
2585 }2583 }
25862584
2587 /** @name UpDataStructsPropertyPermission (248) */2585 /** @name UpDataStructsPropertyPermission (259) */
2588 interface UpDataStructsPropertyPermission extends Struct {2586 interface UpDataStructsPropertyPermission extends Struct {
2589 readonly mutable: bool;2587 readonly mutable: bool;
2590 readonly collectionAdmin: bool;2588 readonly collectionAdmin: bool;
2591 readonly tokenOwner: bool;2589 readonly tokenOwner: bool;
2592 }2590 }
25932591
2594 /** @name UpDataStructsProperty (251) */2592 /** @name UpDataStructsProperty (262) */
2595 interface UpDataStructsProperty extends Struct {2593 interface UpDataStructsProperty extends Struct {
2596 readonly key: Bytes;2594 readonly key: Bytes;
2597 readonly value: Bytes;2595 readonly value: Bytes;
2598 }2596 }
25992597
2600 /** @name UpDataStructsCreateItemData (254) */2598 /** @name UpDataStructsCreateItemData (265) */
2601 interface UpDataStructsCreateItemData extends Enum {2599 interface UpDataStructsCreateItemData extends Enum {
2602 readonly isNft: boolean;2600 readonly isNft: boolean;
2603 readonly asNft: UpDataStructsCreateNftData;2601 readonly asNft: UpDataStructsCreateNftData;
2608 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2606 readonly type: 'Nft' | 'Fungible' | 'ReFungible';
2609 }2607 }
26102608
2611 /** @name UpDataStructsCreateNftData (255) */2609 /** @name UpDataStructsCreateNftData (266) */
2612 interface UpDataStructsCreateNftData extends Struct {2610 interface UpDataStructsCreateNftData extends Struct {
2613 readonly properties: Vec<UpDataStructsProperty>;2611 readonly properties: Vec<UpDataStructsProperty>;
2614 }2612 }
26152613
2616 /** @name UpDataStructsCreateFungibleData (256) */2614 /** @name UpDataStructsCreateFungibleData (267) */
2617 interface UpDataStructsCreateFungibleData extends Struct {2615 interface UpDataStructsCreateFungibleData extends Struct {
2618 readonly value: u128;2616 readonly value: u128;
2619 }2617 }
26202618
2621 /** @name UpDataStructsCreateReFungibleData (257) */2619 /** @name UpDataStructsCreateReFungibleData (268) */
2622 interface UpDataStructsCreateReFungibleData extends Struct {2620 interface UpDataStructsCreateReFungibleData extends Struct {
2623 readonly pieces: u128;2621 readonly pieces: u128;
2624 readonly properties: Vec<UpDataStructsProperty>;2622 readonly properties: Vec<UpDataStructsProperty>;
2625 }2623 }
26262624
2627 /** @name UpDataStructsCreateItemExData (260) */2625 /** @name UpDataStructsCreateItemExData (271) */
2628 interface UpDataStructsCreateItemExData extends Enum {2626 interface UpDataStructsCreateItemExData extends Enum {
2629 readonly isNft: boolean;2627 readonly isNft: boolean;
2630 readonly asNft: Vec<UpDataStructsCreateNftExData>;2628 readonly asNft: Vec<UpDataStructsCreateNftExData>;
2637 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2635 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
2638 }2636 }
26392637
2640 /** @name UpDataStructsCreateNftExData (262) */2638 /** @name UpDataStructsCreateNftExData (273) */
2641 interface UpDataStructsCreateNftExData extends Struct {2639 interface UpDataStructsCreateNftExData extends Struct {
2642 readonly properties: Vec<UpDataStructsProperty>;2640 readonly properties: Vec<UpDataStructsProperty>;
2643 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2641 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
2644 }2642 }
26452643
2646 /** @name UpDataStructsCreateRefungibleExSingleOwner (269) */2644 /** @name UpDataStructsCreateRefungibleExSingleOwner (280) */
2647 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2645 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
2648 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2646 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
2649 readonly pieces: u128;2647 readonly pieces: u128;
2650 readonly properties: Vec<UpDataStructsProperty>;2648 readonly properties: Vec<UpDataStructsProperty>;
2651 }2649 }
26522650
2653 /** @name UpDataStructsCreateRefungibleExMultipleOwners (271) */2651 /** @name UpDataStructsCreateRefungibleExMultipleOwners (282) */
2654 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2652 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
2655 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2653 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
2656 readonly properties: Vec<UpDataStructsProperty>;2654 readonly properties: Vec<UpDataStructsProperty>;
2657 }2655 }
26582656
2659 /** @name PalletUniqueSchedulerCall (272) */2657 /** @name PalletUniqueSchedulerCall (283) */
2660 interface PalletUniqueSchedulerCall extends Enum {2658 interface PalletUniqueSchedulerCall extends Enum {
2661 readonly isScheduleNamed: boolean;2659 readonly isScheduleNamed: boolean;
2662 readonly asScheduleNamed: {2660 readonly asScheduleNamed: {
2681 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';2679 readonly type: 'ScheduleNamed' | 'CancelNamed' | 'ScheduleNamedAfter';
2682 }2680 }
26832681
2684 /** @name FrameSupportScheduleMaybeHashed (274) */2682 /** @name FrameSupportScheduleMaybeHashed (285) */
2685 interface FrameSupportScheduleMaybeHashed extends Enum {2683 interface FrameSupportScheduleMaybeHashed extends Enum {
2686 readonly isValue: boolean;2684 readonly isValue: boolean;
2687 readonly asValue: Call;2685 readonly asValue: Call;
2690 readonly type: 'Value' | 'Hash';2688 readonly type: 'Value' | 'Hash';
2691 }2689 }
26922690
2693 /** @name PalletConfigurationCall (275) */2691 /** @name PalletConfigurationCall (286) */
2694 interface PalletConfigurationCall extends Enum {2692 interface PalletConfigurationCall extends Enum {
2695 readonly isSetWeightToFeeCoefficientOverride: boolean;2693 readonly isSetWeightToFeeCoefficientOverride: boolean;
2696 readonly asSetWeightToFeeCoefficientOverride: {2694 readonly asSetWeightToFeeCoefficientOverride: {
2703 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2701 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';
2704 }2702 }
27052703
2706 /** @name PalletTemplateTransactionPaymentCall (276) */2704 /** @name PalletTemplateTransactionPaymentCall (287) */
2707 type PalletTemplateTransactionPaymentCall = Null;2705 type PalletTemplateTransactionPaymentCall = Null;
27082706
2709 /** @name PalletStructureCall (277) */2707 /** @name PalletStructureCall (288) */
2710 type PalletStructureCall = Null;2708 type PalletStructureCall = Null;
27112709
2712 /** @name PalletRmrkCoreCall (278) */2710 /** @name PalletRmrkCoreCall (289) */
2713 interface PalletRmrkCoreCall extends Enum {2711 interface PalletRmrkCoreCall extends Enum {
2714 readonly isCreateCollection: boolean;2712 readonly isCreateCollection: boolean;
2715 readonly asCreateCollection: {2713 readonly asCreateCollection: {
2815 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2813 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
2816 }2814 }
28172815
2818 /** @name RmrkTraitsResourceResourceTypes (284) */2816 /** @name RmrkTraitsResourceResourceTypes (295) */
2819 interface RmrkTraitsResourceResourceTypes extends Enum {2817 interface RmrkTraitsResourceResourceTypes extends Enum {
2820 readonly isBasic: boolean;2818 readonly isBasic: boolean;
2821 readonly asBasic: RmrkTraitsResourceBasicResource;2819 readonly asBasic: RmrkTraitsResourceBasicResource;
2826 readonly type: 'Basic' | 'Composable' | 'Slot';2824 readonly type: 'Basic' | 'Composable' | 'Slot';
2827 }2825 }
28282826
2829 /** @name RmrkTraitsResourceBasicResource (286) */2827 /** @name RmrkTraitsResourceBasicResource (297) */
2830 interface RmrkTraitsResourceBasicResource extends Struct {2828 interface RmrkTraitsResourceBasicResource extends Struct {
2831 readonly src: Option<Bytes>;2829 readonly src: Option<Bytes>;
2832 readonly metadata: Option<Bytes>;2830 readonly metadata: Option<Bytes>;
2833 readonly license: Option<Bytes>;2831 readonly license: Option<Bytes>;
2834 readonly thumb: Option<Bytes>;2832 readonly thumb: Option<Bytes>;
2835 }2833 }
28362834
2837 /** @name RmrkTraitsResourceComposableResource (288) */2835 /** @name RmrkTraitsResourceComposableResource (299) */
2838 interface RmrkTraitsResourceComposableResource extends Struct {2836 interface RmrkTraitsResourceComposableResource extends Struct {
2839 readonly parts: Vec<u32>;2837 readonly parts: Vec<u32>;
2840 readonly base: u32;2838 readonly base: u32;
2844 readonly thumb: Option<Bytes>;2842 readonly thumb: Option<Bytes>;
2845 }2843 }
28462844
2847 /** @name RmrkTraitsResourceSlotResource (289) */2845 /** @name RmrkTraitsResourceSlotResource (300) */
2848 interface RmrkTraitsResourceSlotResource extends Struct {2846 interface RmrkTraitsResourceSlotResource extends Struct {
2849 readonly base: u32;2847 readonly base: u32;
2850 readonly src: Option<Bytes>;2848 readonly src: Option<Bytes>;
2854 readonly thumb: Option<Bytes>;2852 readonly thumb: Option<Bytes>;
2855 }2853 }
28562854
2857 /** @name PalletRmrkEquipCall (292) */2855 /** @name PalletRmrkEquipCall (303) */
2858 interface PalletRmrkEquipCall extends Enum {2856 interface PalletRmrkEquipCall extends Enum {
2859 readonly isCreateBase: boolean;2857 readonly isCreateBase: boolean;
2860 readonly asCreateBase: {2858 readonly asCreateBase: {
2876 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2874 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
2877 }2875 }
28782876
2879 /** @name RmrkTraitsPartPartType (295) */2877 /** @name RmrkTraitsPartPartType (306) */
2880 interface RmrkTraitsPartPartType extends Enum {2878 interface RmrkTraitsPartPartType extends Enum {
2881 readonly isFixedPart: boolean;2879 readonly isFixedPart: boolean;
2882 readonly asFixedPart: RmrkTraitsPartFixedPart;2880 readonly asFixedPart: RmrkTraitsPartFixedPart;
2885 readonly type: 'FixedPart' | 'SlotPart';2883 readonly type: 'FixedPart' | 'SlotPart';
2886 }2884 }
28872885
2888 /** @name RmrkTraitsPartFixedPart (297) */2886 /** @name RmrkTraitsPartFixedPart (308) */
2889 interface RmrkTraitsPartFixedPart extends Struct {2887 interface RmrkTraitsPartFixedPart extends Struct {
2890 readonly id: u32;2888 readonly id: u32;
2891 readonly z: u32;2889 readonly z: u32;
2892 readonly src: Bytes;2890 readonly src: Bytes;
2893 }2891 }
28942892
2895 /** @name RmrkTraitsPartSlotPart (298) */2893 /** @name RmrkTraitsPartSlotPart (309) */
2896 interface RmrkTraitsPartSlotPart extends Struct {2894 interface RmrkTraitsPartSlotPart extends Struct {
2897 readonly id: u32;2895 readonly id: u32;
2898 readonly equippable: RmrkTraitsPartEquippableList;2896 readonly equippable: RmrkTraitsPartEquippableList;
2899 readonly src: Bytes;2897 readonly src: Bytes;
2900 readonly z: u32;2898 readonly z: u32;
2901 }2899 }
29022900
2903 /** @name RmrkTraitsPartEquippableList (299) */2901 /** @name RmrkTraitsPartEquippableList (310) */
2904 interface RmrkTraitsPartEquippableList extends Enum {2902 interface RmrkTraitsPartEquippableList extends Enum {
2905 readonly isAll: boolean;2903 readonly isAll: boolean;
2906 readonly isEmpty: boolean;2904 readonly isEmpty: boolean;
2909 readonly type: 'All' | 'Empty' | 'Custom';2907 readonly type: 'All' | 'Empty' | 'Custom';
2910 }2908 }
29112909
2912 /** @name RmrkTraitsTheme (301) */2910 /** @name RmrkTraitsTheme (312) */
2913 interface RmrkTraitsTheme extends Struct {2911 interface RmrkTraitsTheme extends Struct {
2914 readonly name: Bytes;2912 readonly name: Bytes;
2915 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2913 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
2916 readonly inherit: bool;2914 readonly inherit: bool;
2917 }2915 }
29182916
2919 /** @name RmrkTraitsThemeThemeProperty (303) */2917 /** @name RmrkTraitsThemeThemeProperty (314) */
2920 interface RmrkTraitsThemeThemeProperty extends Struct {2918 interface RmrkTraitsThemeThemeProperty extends Struct {
2921 readonly key: Bytes;2919 readonly key: Bytes;
2922 readonly value: Bytes;2920 readonly value: Bytes;
2923 }2921 }
29242922
2925 /** @name PalletForeignAssetsModuleCall (314) */
2926 interface PalletForeignAssetsModuleCall extends Enum {
2927 readonly isRegisterForeignAsset: boolean;
2928 readonly asRegisterForeignAsset: {
2929 readonly owner: AccountId32;
2930 readonly location: XcmVersionedMultiLocation;
2931 readonly metadata: PalletForeignAssetsModuleAssetMetadata;
2932 } & Struct;
2933 readonly isUpdateForeignAsset: boolean;
2934 readonly asUpdateForeignAsset: {
2935 readonly foreignAssetId: u32;
2936 readonly location: XcmVersionedMultiLocation;
2937 readonly metadata: PalletForeignAssetsModuleAssetMetadata;
2938 } & Struct;
2939 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
2940 }
2941
2942 /** @name PalletEvmCall (315) */
2943 /** @name PalletAppPromotionCall (305) */2923 /** @name PalletAppPromotionCall (316) */
2944 interface PalletAppPromotionCall extends Enum {2924 interface PalletAppPromotionCall extends Enum {
2945 readonly isSetAdminAddress: boolean;2925 readonly isSetAdminAddress: boolean;
2946 readonly asSetAdminAddress: {2926 readonly asSetAdminAddress: {
2974 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2954 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
2975 }2955 }
2956
2957 /** @name PalletForeignAssetsModuleCall (318) */
2958 interface PalletForeignAssetsModuleCall extends Enum {
2959 readonly isRegisterForeignAsset: boolean;
2960 readonly asRegisterForeignAsset: {
2961 readonly owner: AccountId32;
2962 readonly location: XcmVersionedMultiLocation;
2963 readonly metadata: PalletForeignAssetsModuleAssetMetadata;
2964 } & Struct;
2965 readonly isUpdateForeignAsset: boolean;
2966 readonly asUpdateForeignAsset: {
2967 readonly foreignAssetId: u32;
2968 readonly location: XcmVersionedMultiLocation;
2969 readonly metadata: PalletForeignAssetsModuleAssetMetadata;
2970 } & Struct;
2971 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
2972 }
29762973
2977 /** @name PalletEvmCall (307) */2974 /** @name PalletEvmCall (319) */
2978 interface PalletEvmCall extends Enum {2975 interface PalletEvmCall extends Enum {
2979 readonly isWithdraw: boolean;2976 readonly isWithdraw: boolean;
2980 readonly asWithdraw: {2977 readonly asWithdraw: {
3019 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3016 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
3020 }3017 }
30213018
3022 /** @name PalletEthereumCall (311) */3019 /** @name PalletEthereumCall (323) */
3023 interface PalletEthereumCall extends Enum {3020 interface PalletEthereumCall extends Enum {
3024 readonly isTransact: boolean;3021 readonly isTransact: boolean;
3025 readonly asTransact: {3022 readonly asTransact: {
3028 readonly type: 'Transact';3025 readonly type: 'Transact';
3029 }3026 }
30303027
3031 /** @name EthereumTransactionTransactionV2 (312) */3028 /** @name EthereumTransactionTransactionV2 (324) */
3032 interface EthereumTransactionTransactionV2 extends Enum {3029 interface EthereumTransactionTransactionV2 extends Enum {
3033 readonly isLegacy: boolean;3030 readonly isLegacy: boolean;
3034 readonly asLegacy: EthereumTransactionLegacyTransaction;3031 readonly asLegacy: EthereumTransactionLegacyTransaction;
3039 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3036 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
3040 }3037 }
30413038
3042 /** @name EthereumTransactionLegacyTransaction (313) */3039 /** @name EthereumTransactionLegacyTransaction (325) */
3043 interface EthereumTransactionLegacyTransaction extends Struct {3040 interface EthereumTransactionLegacyTransaction extends Struct {
3044 readonly nonce: U256;3041 readonly nonce: U256;
3045 readonly gasPrice: U256;3042 readonly gasPrice: U256;
3050 readonly signature: EthereumTransactionTransactionSignature;3047 readonly signature: EthereumTransactionTransactionSignature;
3051 }3048 }
30523049
3053 /** @name EthereumTransactionTransactionAction (314) */3050 /** @name EthereumTransactionTransactionAction (326) */
3054 interface EthereumTransactionTransactionAction extends Enum {3051 interface EthereumTransactionTransactionAction extends Enum {
3055 readonly isCall: boolean;3052 readonly isCall: boolean;
3056 readonly asCall: H160;3053 readonly asCall: H160;
3057 readonly isCreate: boolean;3054 readonly isCreate: boolean;
3058 readonly type: 'Call' | 'Create';3055 readonly type: 'Call' | 'Create';
3059 }3056 }
30603057
3061 /** @name EthereumTransactionTransactionSignature (315) */3058 /** @name EthereumTransactionTransactionSignature (327) */
3062 interface EthereumTransactionTransactionSignature extends Struct {3059 interface EthereumTransactionTransactionSignature extends Struct {
3063 readonly v: u64;3060 readonly v: u64;
3064 readonly r: H256;3061 readonly r: H256;
3065 readonly s: H256;3062 readonly s: H256;
3066 }3063 }
30673064
3068 /** @name EthereumTransactionEip2930Transaction (317) */3065 /** @name EthereumTransactionEip2930Transaction (329) */
3069 interface EthereumTransactionEip2930Transaction extends Struct {3066 interface EthereumTransactionEip2930Transaction extends Struct {
3070 readonly chainId: u64;3067 readonly chainId: u64;
3071 readonly nonce: U256;3068 readonly nonce: U256;
3080 readonly s: H256;3077 readonly s: H256;
3081 }3078 }
30823079
3083 /** @name EthereumTransactionAccessListItem (319) */3080 /** @name EthereumTransactionAccessListItem (331) */
3084 interface EthereumTransactionAccessListItem extends Struct {3081 interface EthereumTransactionAccessListItem extends Struct {
3085 readonly address: H160;3082 readonly address: H160;
3086 readonly storageKeys: Vec<H256>;3083 readonly storageKeys: Vec<H256>;
3087 }3084 }
30883085
3089 /** @name EthereumTransactionEip1559Transaction (320) */3086 /** @name EthereumTransactionEip1559Transaction (332) */
3090 interface EthereumTransactionEip1559Transaction extends Struct {3087 interface EthereumTransactionEip1559Transaction extends Struct {
3091 readonly chainId: u64;3088 readonly chainId: u64;
3092 readonly nonce: U256;3089 readonly nonce: U256;
3102 readonly s: H256;3099 readonly s: H256;
3103 }3100 }
31043101
3105 /** @name PalletEvmMigrationCall (321) */3102 /** @name PalletEvmMigrationCall (333) */
3106 interface PalletEvmMigrationCall extends Enum {3103 interface PalletEvmMigrationCall extends Enum {
3107 readonly isBegin: boolean;3104 readonly isBegin: boolean;
3108 readonly asBegin: {3105 readonly asBegin: {
3121 readonly type: 'Begin' | 'SetData' | 'Finish';3118 readonly type: 'Begin' | 'SetData' | 'Finish';
3122 }3119 }
31233120
3124 /** @name PalletSudoError (324) */3121 /** @name PalletSudoError (336) */
3125 interface PalletSudoError extends Enum {3122 interface PalletSudoError extends Enum {
3126 readonly isRequireSudo: boolean;3123 readonly isRequireSudo: boolean;
3127 readonly type: 'RequireSudo';3124 readonly type: 'RequireSudo';
3128 }3125 }
31293126
3130 /** @name OrmlVestingModuleError (326) */3127 /** @name OrmlVestingModuleError (338) */
3131 interface OrmlVestingModuleError extends Enum {3128 interface OrmlVestingModuleError extends Enum {
3132 readonly isZeroVestingPeriod: boolean;3129 readonly isZeroVestingPeriod: boolean;
3133 readonly isZeroVestingPeriodCount: boolean;3130 readonly isZeroVestingPeriodCount: boolean;
3138 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3135 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
3139 }3136 }
31403137
3141 /** @name OrmlXtokensModuleError (335) */3138 /** @name OrmlXtokensModuleError (339) */
3142 interface OrmlXtokensModuleError extends Enum {3139 interface OrmlXtokensModuleError extends Enum {
3143 readonly isAssetHasNoReserve: boolean;3140 readonly isAssetHasNoReserve: boolean;
3144 readonly isNotCrossChainTransfer: boolean;3141 readonly isNotCrossChainTransfer: boolean;
3162 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3159 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
3163 }3160 }
31643161
3165 /** @name OrmlTokensBalanceLock (338) */3162 /** @name OrmlTokensBalanceLock (342) */
3166 interface OrmlTokensBalanceLock extends Struct {3163 interface OrmlTokensBalanceLock extends Struct {
3167 readonly id: U8aFixed;3164 readonly id: U8aFixed;
3168 readonly amount: u128;3165 readonly amount: u128;
3169 }3166 }
31703167
3171 /** @name OrmlTokensAccountData (340) */3168 /** @name OrmlTokensAccountData (344) */
3172 interface OrmlTokensAccountData extends Struct {3169 interface OrmlTokensAccountData extends Struct {
3173 readonly free: u128;3170 readonly free: u128;
3174 readonly reserved: u128;3171 readonly reserved: u128;
3175 readonly frozen: u128;3172 readonly frozen: u128;
3176 }3173 }
31773174
3178 /** @name OrmlTokensReserveData (342) */3175 /** @name OrmlTokensReserveData (346) */
3179 interface OrmlTokensReserveData extends Struct {3176 interface OrmlTokensReserveData extends Struct {
3180 readonly id: Null;3177 readonly id: Null;
3181 readonly amount: u128;3178 readonly amount: u128;
3182 }3179 }
31833180
3184 /** @name OrmlTokensModuleError (344) */3181 /** @name OrmlTokensModuleError (348) */
3185 interface OrmlTokensModuleError extends Enum {3182 interface OrmlTokensModuleError extends Enum {
3186 readonly isBalanceTooLow: boolean;3183 readonly isBalanceTooLow: boolean;
3187 readonly isAmountIntoBalanceFailed: boolean;3184 readonly isAmountIntoBalanceFailed: boolean;
3194 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3191 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
3195 }3192 }
31963193
3197 /** @name CumulusPalletXcmpQueueInboundChannelDetails (346) */3194 /** @name CumulusPalletXcmpQueueInboundChannelDetails (350) */
3198 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3195 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
3199 readonly sender: u32;3196 readonly sender: u32;
3200 readonly state: CumulusPalletXcmpQueueInboundState;3197 readonly state: CumulusPalletXcmpQueueInboundState;
3201 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3198 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
3202 }3199 }
32033200
3204 /** @name CumulusPalletXcmpQueueInboundState (329) */3201 /** @name CumulusPalletXcmpQueueInboundState (351) */
3205 interface CumulusPalletXcmpQueueInboundState extends Enum {3202 interface CumulusPalletXcmpQueueInboundState extends Enum {
3206 readonly isOk: boolean;3203 readonly isOk: boolean;
3207 readonly isSuspended: boolean;3204 readonly isSuspended: boolean;
3208 readonly type: 'Ok' | 'Suspended';3205 readonly type: 'Ok' | 'Suspended';
3209 }3206 }
32103207
3211 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (332) */3208 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (354) */
3212 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3209 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
3213 readonly isConcatenatedVersionedXcm: boolean;3210 readonly isConcatenatedVersionedXcm: boolean;
3214 readonly isConcatenatedEncodedBlob: boolean;3211 readonly isConcatenatedEncodedBlob: boolean;
3215 readonly isSignals: boolean;3212 readonly isSignals: boolean;
3216 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3213 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
3217 }3214 }
32183215
3219 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (335) */3216 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (357) */
3220 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3217 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
3221 readonly recipient: u32;3218 readonly recipient: u32;
3222 readonly state: CumulusPalletXcmpQueueOutboundState;3219 readonly state: CumulusPalletXcmpQueueOutboundState;
3225 readonly lastIndex: u16;3222 readonly lastIndex: u16;
3226 }3223 }
32273224
3228 /** @name CumulusPalletXcmpQueueOutboundState (336) */3225 /** @name CumulusPalletXcmpQueueOutboundState (358) */
3229 interface CumulusPalletXcmpQueueOutboundState extends Enum {3226 interface CumulusPalletXcmpQueueOutboundState extends Enum {
3230 readonly isOk: boolean;3227 readonly isOk: boolean;
3231 readonly isSuspended: boolean;3228 readonly isSuspended: boolean;
3232 readonly type: 'Ok' | 'Suspended';3229 readonly type: 'Ok' | 'Suspended';
3233 }3230 }
32343231
3235 /** @name CumulusPalletXcmpQueueQueueConfigData (338) */3232 /** @name CumulusPalletXcmpQueueQueueConfigData (360) */
3236 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3233 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
3237 readonly suspendThreshold: u32;3234 readonly suspendThreshold: u32;
3238 readonly dropThreshold: u32;3235 readonly dropThreshold: u32;
3242 readonly xcmpMaxIndividualWeight: u64;3239 readonly xcmpMaxIndividualWeight: u64;
3243 }3240 }
32443241
3245 /** @name CumulusPalletXcmpQueueError (340) */3242 /** @name CumulusPalletXcmpQueueError (362) */
3246 interface CumulusPalletXcmpQueueError extends Enum {3243 interface CumulusPalletXcmpQueueError extends Enum {
3247 readonly isFailedToSend: boolean;3244 readonly isFailedToSend: boolean;
3248 readonly isBadXcmOrigin: boolean;3245 readonly isBadXcmOrigin: boolean;
3252 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3249 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
3253 }3250 }
32543251
3255 /** @name PalletXcmError (341) */3252 /** @name PalletXcmError (363) */
3256 interface PalletXcmError extends Enum {3253 interface PalletXcmError extends Enum {
3257 readonly isUnreachable: boolean;3254 readonly isUnreachable: boolean;
3258 readonly isSendFailure: boolean;3255 readonly isSendFailure: boolean;
3270 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3267 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
3271 }3268 }
32723269
3273 /** @name CumulusPalletXcmError (342) */3270 /** @name CumulusPalletXcmError (364) */
3274 type CumulusPalletXcmError = Null;3271 type CumulusPalletXcmError = Null;
32753272
3276 /** @name CumulusPalletDmpQueueConfigData (343) */3273 /** @name CumulusPalletDmpQueueConfigData (365) */
3277 interface CumulusPalletDmpQueueConfigData extends Struct {3274 interface CumulusPalletDmpQueueConfigData extends Struct {
3278 readonly maxIndividual: u64;3275 readonly maxIndividual: u64;
3279 }3276 }
32803277
3281 /** @name CumulusPalletDmpQueuePageIndexData (344) */3278 /** @name CumulusPalletDmpQueuePageIndexData (366) */
3282 interface CumulusPalletDmpQueuePageIndexData extends Struct {3279 interface CumulusPalletDmpQueuePageIndexData extends Struct {
3283 readonly beginUsed: u32;3280 readonly beginUsed: u32;
3284 readonly endUsed: u32;3281 readonly endUsed: u32;
3285 readonly overweightCount: u64;3282 readonly overweightCount: u64;
3286 }3283 }
32873284
3288 /** @name CumulusPalletDmpQueueError (347) */3285 /** @name CumulusPalletDmpQueueError (369) */
3289 interface CumulusPalletDmpQueueError extends Enum {3286 interface CumulusPalletDmpQueueError extends Enum {
3290 readonly isUnknown: boolean;3287 readonly isUnknown: boolean;
3291 readonly isOverLimit: boolean;3288 readonly isOverLimit: boolean;
3292 readonly type: 'Unknown' | 'OverLimit';3289 readonly type: 'Unknown' | 'OverLimit';
3293 }3290 }
32943291
3295 /** @name PalletUniqueError (351) */3292 /** @name PalletUniqueError (373) */
3296 interface PalletUniqueError extends Enum {3293 interface PalletUniqueError extends Enum {
3297 readonly isCollectionDecimalPointLimitExceeded: boolean;3294 readonly isCollectionDecimalPointLimitExceeded: boolean;
3298 readonly isConfirmUnsetSponsorFail: boolean;3295 readonly isConfirmUnsetSponsorFail: boolean;
3301 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3298 readonly type: 'CollectionDecimalPointLimitExceeded' | 'ConfirmUnsetSponsorFail' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
3302 }3299 }
33033300
3304 /** @name PalletUniqueSchedulerScheduledV3 (354) */3301 /** @name PalletUniqueSchedulerScheduledV3 (376) */
3305 interface PalletUniqueSchedulerScheduledV3 extends Struct {3302 interface PalletUniqueSchedulerScheduledV3 extends Struct {
3306 readonly maybeId: Option<U8aFixed>;3303 readonly maybeId: Option<U8aFixed>;
3307 readonly priority: u8;3304 readonly priority: u8;
3310 readonly origin: OpalRuntimeOriginCaller;3307 readonly origin: OpalRuntimeOriginCaller;
3311 }3308 }
33123309
3313 /** @name OpalRuntimeOriginCaller (355) */3310 /** @name OpalRuntimeOriginCaller (377) */
3314 interface OpalRuntimeOriginCaller extends Enum {3311 interface OpalRuntimeOriginCaller extends Enum {
3315 readonly isSystem: boolean;3312 readonly isSystem: boolean;
3316 readonly asSystem: FrameSupportDispatchRawOrigin;3313 readonly asSystem: FrameSupportDispatchRawOrigin;
3324 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3321 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';
3325 }3322 }
33263323
3327 /** @name FrameSupportDispatchRawOrigin (356) */3324 /** @name FrameSupportDispatchRawOrigin (378) */
3328 interface FrameSupportDispatchRawOrigin extends Enum {3325 interface FrameSupportDispatchRawOrigin extends Enum {
3329 readonly isRoot: boolean;3326 readonly isRoot: boolean;
3330 readonly isSigned: boolean;3327 readonly isSigned: boolean;
3333 readonly type: 'Root' | 'Signed' | 'None';3330 readonly type: 'Root' | 'Signed' | 'None';
3334 }3331 }
33353332
3336 /** @name PalletXcmOrigin (357) */3333 /** @name PalletXcmOrigin (379) */
3337 interface PalletXcmOrigin extends Enum {3334 interface PalletXcmOrigin extends Enum {
3338 readonly isXcm: boolean;3335 readonly isXcm: boolean;
3339 readonly asXcm: XcmV1MultiLocation;3336 readonly asXcm: XcmV1MultiLocation;
3342 readonly type: 'Xcm' | 'Response';3339 readonly type: 'Xcm' | 'Response';
3343 }3340 }
33443341
3345 /** @name CumulusPalletXcmOrigin (358) */3342 /** @name CumulusPalletXcmOrigin (380) */
3346 interface CumulusPalletXcmOrigin extends Enum {3343 interface CumulusPalletXcmOrigin extends Enum {
3347 readonly isRelay: boolean;3344 readonly isRelay: boolean;
3348 readonly isSiblingParachain: boolean;3345 readonly isSiblingParachain: boolean;
3349 readonly asSiblingParachain: u32;3346 readonly asSiblingParachain: u32;
3350 readonly type: 'Relay' | 'SiblingParachain';3347 readonly type: 'Relay' | 'SiblingParachain';
3351 }3348 }
33523349
3353 /** @name PalletEthereumRawOrigin (359) */3350 /** @name PalletEthereumRawOrigin (381) */
3354 interface PalletEthereumRawOrigin extends Enum {3351 interface PalletEthereumRawOrigin extends Enum {
3355 readonly isEthereumTransaction: boolean;3352 readonly isEthereumTransaction: boolean;
3356 readonly asEthereumTransaction: H160;3353 readonly asEthereumTransaction: H160;
3357 readonly type: 'EthereumTransaction';3354 readonly type: 'EthereumTransaction';
3358 }3355 }
33593356
3360 /** @name SpCoreVoid (360) */3357 /** @name SpCoreVoid (382) */
3361 type SpCoreVoid = Null;3358 type SpCoreVoid = Null;
33623359
3363 /** @name PalletUniqueSchedulerError (361) */3360 /** @name PalletUniqueSchedulerError (383) */
3364 interface PalletUniqueSchedulerError extends Enum {3361 interface PalletUniqueSchedulerError extends Enum {
3365 readonly isFailedToSchedule: boolean;3362 readonly isFailedToSchedule: boolean;
3366 readonly isNotFound: boolean;3363 readonly isNotFound: boolean;
3369 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';3366 readonly type: 'FailedToSchedule' | 'NotFound' | 'TargetBlockNumberInPast' | 'RescheduleNoChange';
3370 }3367 }
33713368
3372 /** @name UpDataStructsCollection (362) */3369 /** @name UpDataStructsCollection (384) */
3373 interface UpDataStructsCollection extends Struct {3370 interface UpDataStructsCollection extends Struct {
3374 readonly owner: AccountId32;3371 readonly owner: AccountId32;
3375 readonly mode: UpDataStructsCollectionMode;3372 readonly mode: UpDataStructsCollectionMode;
3379 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3376 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;
3380 readonly limits: UpDataStructsCollectionLimits;3377 readonly limits: UpDataStructsCollectionLimits;
3381 readonly permissions: UpDataStructsCollectionPermissions;3378 readonly permissions: UpDataStructsCollectionPermissions;
3382 readonly externalCollection: bool;3379 readonly flags: U8aFixed;
3383 }3380 }
33843381
3385 /** @name UpDataStructsSponsorshipStateAccountId32 (363) */3382 /** @name UpDataStructsSponsorshipStateAccountId32 (385) */
3386 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3383 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
3387 readonly isDisabled: boolean;3384 readonly isDisabled: boolean;
3388 readonly isUnconfirmed: boolean;3385 readonly isUnconfirmed: boolean;
3392 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3389 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
3393 }3390 }
33943391
3395 /** @name UpDataStructsProperties (364) */3392 /** @name UpDataStructsProperties (387) */
3396 interface UpDataStructsProperties extends Struct {3393 interface UpDataStructsProperties extends Struct {
3397 readonly map: UpDataStructsPropertiesMapBoundedVec;3394 readonly map: UpDataStructsPropertiesMapBoundedVec;
3398 readonly consumedSpace: u32;3395 readonly consumedSpace: u32;
3399 readonly spaceLimit: u32;3396 readonly spaceLimit: u32;
3400 }3397 }
34013398
3402 /** @name UpDataStructsPropertiesMapBoundedVec (365) */3399 /** @name UpDataStructsPropertiesMapBoundedVec (388) */
3403 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3400 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
34043401
3405 /** @name UpDataStructsPropertiesMapPropertyPermission (370) */3402 /** @name UpDataStructsPropertiesMapPropertyPermission (393) */
3406 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3403 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
34073404
3408 /** @name UpDataStructsCollectionStats (377) */3405 /** @name UpDataStructsCollectionStats (400) */
3409 interface UpDataStructsCollectionStats extends Struct {3406 interface UpDataStructsCollectionStats extends Struct {
3410 readonly created: u32;3407 readonly created: u32;
3411 readonly destroyed: u32;3408 readonly destroyed: u32;
3412 readonly alive: u32;3409 readonly alive: u32;
3413 }3410 }
34143411
3415 /** @name UpDataStructsTokenChild (378) */3412 /** @name UpDataStructsTokenChild (401) */
3416 interface UpDataStructsTokenChild extends Struct {3413 interface UpDataStructsTokenChild extends Struct {
3417 readonly token: u32;3414 readonly token: u32;
3418 readonly collection: u32;3415 readonly collection: u32;
3419 }3416 }
34203417
3421 /** @name PhantomTypeUpDataStructs (379) */3418 /** @name PhantomTypeUpDataStructs (402) */
3422 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}3419 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
34233420
3424 /** @name UpDataStructsTokenData (381) */3421 /** @name UpDataStructsTokenData (404) */
3425 interface UpDataStructsTokenData extends Struct {3422 interface UpDataStructsTokenData extends Struct {
3426 readonly properties: Vec<UpDataStructsProperty>;3423 readonly properties: Vec<UpDataStructsProperty>;
3427 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3424 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
3428 readonly pieces: u128;3425 readonly pieces: u128;
3429 }3426 }
34303427
3431 /** @name UpDataStructsRpcCollection (383) */3428 /** @name UpDataStructsRpcCollection (406) */
3432 interface UpDataStructsRpcCollection extends Struct {3429 interface UpDataStructsRpcCollection extends Struct {
3433 readonly owner: AccountId32;3430 readonly owner: AccountId32;
3434 readonly mode: UpDataStructsCollectionMode;3431 readonly mode: UpDataStructsCollectionMode;
3441 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3438 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;
3442 readonly properties: Vec<UpDataStructsProperty>;3439 readonly properties: Vec<UpDataStructsProperty>;
3443 readonly readOnly: bool;3440 readonly readOnly: bool;
3441 readonly foreign: bool;
3444 }3442 }
34453443
3446 /** @name RmrkTraitsCollectionCollectionInfo (384) */3444 /** @name RmrkTraitsCollectionCollectionInfo (407) */
3447 interface RmrkTraitsCollectionCollectionInfo extends Struct {3445 interface RmrkTraitsCollectionCollectionInfo extends Struct {
3448 readonly issuer: AccountId32;3446 readonly issuer: AccountId32;
3449 readonly metadata: Bytes;3447 readonly metadata: Bytes;
3452 readonly nftsCount: u32;3450 readonly nftsCount: u32;
3453 }3451 }
34543452
3455 /** @name RmrkTraitsNftNftInfo (385) */3453 /** @name RmrkTraitsNftNftInfo (408) */
3456 interface RmrkTraitsNftNftInfo extends Struct {3454 interface RmrkTraitsNftNftInfo extends Struct {
3457 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3455 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
3458 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3456 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
3461 readonly pending: bool;3459 readonly pending: bool;
3462 }3460 }
34633461
3464 /** @name RmrkTraitsNftRoyaltyInfo (387) */3462 /** @name RmrkTraitsNftRoyaltyInfo (410) */
3465 interface RmrkTraitsNftRoyaltyInfo extends Struct {3463 interface RmrkTraitsNftRoyaltyInfo extends Struct {
3466 readonly recipient: AccountId32;3464 readonly recipient: AccountId32;
3467 readonly amount: Permill;3465 readonly amount: Permill;
3468 }3466 }
34693467
3470 /** @name RmrkTraitsResourceResourceInfo (388) */3468 /** @name RmrkTraitsResourceResourceInfo (411) */
3471 interface RmrkTraitsResourceResourceInfo extends Struct {3469 interface RmrkTraitsResourceResourceInfo extends Struct {
3472 readonly id: u32;3470 readonly id: u32;
3473 readonly resource: RmrkTraitsResourceResourceTypes;3471 readonly resource: RmrkTraitsResourceResourceTypes;
3474 readonly pending: bool;3472 readonly pending: bool;
3475 readonly pendingRemoval: bool;3473 readonly pendingRemoval: bool;
3476 }3474 }
34773475
3478 /** @name RmrkTraitsPropertyPropertyInfo (389) */3476 /** @name RmrkTraitsPropertyPropertyInfo (412) */
3479 interface RmrkTraitsPropertyPropertyInfo extends Struct {3477 interface RmrkTraitsPropertyPropertyInfo extends Struct {
3480 readonly key: Bytes;3478 readonly key: Bytes;
3481 readonly value: Bytes;3479 readonly value: Bytes;
3482 }3480 }
34833481
3484 /** @name RmrkTraitsBaseBaseInfo (390) */3482 /** @name RmrkTraitsBaseBaseInfo (413) */
3485 interface RmrkTraitsBaseBaseInfo extends Struct {3483 interface RmrkTraitsBaseBaseInfo extends Struct {
3486 readonly issuer: AccountId32;3484 readonly issuer: AccountId32;
3487 readonly baseType: Bytes;3485 readonly baseType: Bytes;
3488 readonly symbol: Bytes;3486 readonly symbol: Bytes;
3489 }3487 }
34903488
3491 /** @name RmrkTraitsNftNftChild (391) */3489 /** @name RmrkTraitsNftNftChild (414) */
3492 interface RmrkTraitsNftNftChild extends Struct {3490 interface RmrkTraitsNftNftChild extends Struct {
3493 readonly collectionId: u32;3491 readonly collectionId: u32;
3494 readonly nftId: u32;3492 readonly nftId: u32;
3495 }3493 }
34963494
3497 /** @name PalletCommonError (393) */3495 /** @name PalletCommonError (416) */
3498 interface PalletCommonError extends Enum {3496 interface PalletCommonError extends Enum {
3499 readonly isCollectionNotFound: boolean;3497 readonly isCollectionNotFound: boolean;
3500 readonly isMustBeTokenOwner: boolean;3498 readonly isMustBeTokenOwner: boolean;
3533 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';3531 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';
3534 }3532 }
35353533
3536 /** @name PalletFungibleError (395) */3534 /** @name PalletFungibleError (418) */
3537 interface PalletFungibleError extends Enum {3535 interface PalletFungibleError extends Enum {
3538 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3536 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
3539 readonly isFungibleItemsHaveNoId: boolean;3537 readonly isFungibleItemsHaveNoId: boolean;
3543 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3541 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
3544 }3542 }
35453543
3546 /** @name PalletRefungibleItemData (396) */3544 /** @name PalletRefungibleItemData (419) */
3547 interface PalletRefungibleItemData extends Struct {3545 interface PalletRefungibleItemData extends Struct {
3548 readonly constData: Bytes;3546 readonly constData: Bytes;
3549 }3547 }
35503548
3551 /** @name PalletRefungibleError (401) */3549 /** @name PalletRefungibleError (424) */
3552 interface PalletRefungibleError extends Enum {3550 interface PalletRefungibleError extends Enum {
3553 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3551 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
3554 readonly isWrongRefungiblePieces: boolean;3552 readonly isWrongRefungiblePieces: boolean;
3558 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3556 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
3559 }3557 }
35603558
3561 /** @name PalletNonfungibleItemData (402) */3559 /** @name PalletNonfungibleItemData (425) */
3562 interface PalletNonfungibleItemData extends Struct {3560 interface PalletNonfungibleItemData extends Struct {
3563 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3561 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
3564 }3562 }
35653563
3566 /** @name UpDataStructsPropertyScope (404) */3564 /** @name UpDataStructsPropertyScope (427) */
3567 interface UpDataStructsPropertyScope extends Enum {3565 interface UpDataStructsPropertyScope extends Enum {
3568 readonly isNone: boolean;3566 readonly isNone: boolean;
3569 readonly isRmrk: boolean;3567 readonly isRmrk: boolean;
3570 readonly type: 'None' | 'Rmrk';3568 readonly type: 'None' | 'Rmrk';
3571 }3569 }
35723570
3573 /** @name PalletNonfungibleError (406) */3571 /** @name PalletNonfungibleError (429) */
3574 interface PalletNonfungibleError extends Enum {3572 interface PalletNonfungibleError extends Enum {
3575 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3573 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
3576 readonly isNonfungibleItemsHaveNoAmount: boolean;3574 readonly isNonfungibleItemsHaveNoAmount: boolean;
3577 readonly isCantBurnNftWithChildren: boolean;3575 readonly isCantBurnNftWithChildren: boolean;
3578 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3576 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
3579 }3577 }
35803578
3581 /** @name PalletStructureError (407) */3579 /** @name PalletStructureError (430) */
3582 interface PalletStructureError extends Enum {3580 interface PalletStructureError extends Enum {
3583 readonly isOuroborosDetected: boolean;3581 readonly isOuroborosDetected: boolean;
3584 readonly isDepthLimit: boolean;3582 readonly isDepthLimit: boolean;
3587 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3585 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
3588 }3586 }
35893587
3590 /** @name PalletRmrkCoreError (408) */3588 /** @name PalletRmrkCoreError (431) */
3591 interface PalletRmrkCoreError extends Enum {3589 interface PalletRmrkCoreError extends Enum {
3592 readonly isCorruptedCollectionType: boolean;3590 readonly isCorruptedCollectionType: boolean;
3593 readonly isRmrkPropertyKeyIsTooLong: boolean;3591 readonly isRmrkPropertyKeyIsTooLong: boolean;
3611 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3609 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
3612 }3610 }
36133611
3614 /** @name PalletRmrkEquipError (410) */3612 /** @name PalletRmrkEquipError (433) */
3615 interface PalletRmrkEquipError extends Enum {3613 interface PalletRmrkEquipError extends Enum {
3616 readonly isPermissionError: boolean;3614 readonly isPermissionError: boolean;
3617 readonly isNoAvailableBaseId: boolean;3615 readonly isNoAvailableBaseId: boolean;
3623 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3621 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
3624 }3622 }
36253623
3626 /** @name PalletForeignAssetsModuleError (429) */
3627 interface PalletForeignAssetsModuleError extends Enum {
3628 readonly isBadLocation: boolean;
3629 readonly isMultiLocationExisted: boolean;
3630 readonly isAssetIdNotExists: boolean;
3631 readonly isAssetIdExisted: boolean;
3632 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
3633 }
3634
3635 /** @name PalletEvmError (432) */
3636 /** @name PalletAppPromotionError (416) */3624 /** @name PalletAppPromotionError (439) */
3637 interface PalletAppPromotionError extends Enum {3625 interface PalletAppPromotionError extends Enum {
3638 readonly isAdminNotSet: boolean;3626 readonly isAdminNotSet: boolean;
3639 readonly isNoPermission: boolean;3627 readonly isNoPermission: boolean;
3644 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3632 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
3645 }3633 }
3634
3635 /** @name PalletForeignAssetsModuleError (440) */
3636 interface PalletForeignAssetsModuleError extends Enum {
3637 readonly isBadLocation: boolean;
3638 readonly isMultiLocationExisted: boolean;
3639 readonly isAssetIdNotExists: boolean;
3640 readonly isAssetIdExisted: boolean;
3641 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
3642 }
36463643
3647 /** @name PalletEvmError (419) */3644 /** @name PalletEvmError (443) */
3648 interface PalletEvmError extends Enum {3645 interface PalletEvmError extends Enum {
3649 readonly isBalanceLow: boolean;3646 readonly isBalanceLow: boolean;
3650 readonly isFeeOverflow: boolean;3647 readonly isFeeOverflow: boolean;
3655 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';3652 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce';
3656 }3653 }
36573654
3658 /** @name FpRpcTransactionStatus (422) */3655 /** @name FpRpcTransactionStatus (446) */
3659 interface FpRpcTransactionStatus extends Struct {3656 interface FpRpcTransactionStatus extends Struct {
3660 readonly transactionHash: H256;3657 readonly transactionHash: H256;
3661 readonly transactionIndex: u32;3658 readonly transactionIndex: u32;
3666 readonly logsBloom: EthbloomBloom;3663 readonly logsBloom: EthbloomBloom;
3667 }3664 }
36683665
3669 /** @name EthbloomBloom (424) */3666 /** @name EthbloomBloom (448) */
3670 interface EthbloomBloom extends U8aFixed {}3667 interface EthbloomBloom extends U8aFixed {}
36713668
3672 /** @name EthereumReceiptReceiptV3 (426) */3669 /** @name EthereumReceiptReceiptV3 (450) */
3673 interface EthereumReceiptReceiptV3 extends Enum {3670 interface EthereumReceiptReceiptV3 extends Enum {
3674 readonly isLegacy: boolean;3671 readonly isLegacy: boolean;
3675 readonly asLegacy: EthereumReceiptEip658ReceiptData;3672 readonly asLegacy: EthereumReceiptEip658ReceiptData;
3680 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3677 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
3681 }3678 }
36823679
3683 /** @name EthereumReceiptEip658ReceiptData (427) */3680 /** @name EthereumReceiptEip658ReceiptData (451) */
3684 interface EthereumReceiptEip658ReceiptData extends Struct {3681 interface EthereumReceiptEip658ReceiptData extends Struct {
3685 readonly statusCode: u8;3682 readonly statusCode: u8;
3686 readonly usedGas: U256;3683 readonly usedGas: U256;
3687 readonly logsBloom: EthbloomBloom;3684 readonly logsBloom: EthbloomBloom;
3688 readonly logs: Vec<EthereumLog>;3685 readonly logs: Vec<EthereumLog>;
3689 }3686 }
36903687
3691 /** @name EthereumBlock (428) */3688 /** @name EthereumBlock (452) */
3692 interface EthereumBlock extends Struct {3689 interface EthereumBlock extends Struct {
3693 readonly header: EthereumHeader;3690 readonly header: EthereumHeader;
3694 readonly transactions: Vec<EthereumTransactionTransactionV2>;3691 readonly transactions: Vec<EthereumTransactionTransactionV2>;
3695 readonly ommers: Vec<EthereumHeader>;3692 readonly ommers: Vec<EthereumHeader>;
3696 }3693 }
36973694
3698 /** @name EthereumHeader (429) */3695 /** @name EthereumHeader (453) */
3699 interface EthereumHeader extends Struct {3696 interface EthereumHeader extends Struct {
3700 readonly parentHash: H256;3697 readonly parentHash: H256;
3701 readonly ommersHash: H256;3698 readonly ommersHash: H256;
3714 readonly nonce: EthereumTypesHashH64;3711 readonly nonce: EthereumTypesHashH64;
3715 }3712 }
37163713
3717 /** @name EthereumTypesHashH64 (430) */3714 /** @name EthereumTypesHashH64 (454) */
3718 interface EthereumTypesHashH64 extends U8aFixed {}3715 interface EthereumTypesHashH64 extends U8aFixed {}
37193716
3720 /** @name PalletEthereumError (435) */3717 /** @name PalletEthereumError (459) */
3721 interface PalletEthereumError extends Enum {3718 interface PalletEthereumError extends Enum {
3722 readonly isInvalidSignature: boolean;3719 readonly isInvalidSignature: boolean;
3723 readonly isPreLogExists: boolean;3720 readonly isPreLogExists: boolean;
3724 readonly type: 'InvalidSignature' | 'PreLogExists';3721 readonly type: 'InvalidSignature' | 'PreLogExists';
3725 }3722 }
37263723
3727 /** @name PalletEvmCoderSubstrateError (436) */3724 /** @name PalletEvmCoderSubstrateError (460) */
3728 interface PalletEvmCoderSubstrateError extends Enum {3725 interface PalletEvmCoderSubstrateError extends Enum {
3729 readonly isOutOfGas: boolean;3726 readonly isOutOfGas: boolean;
3730 readonly isOutOfFund: boolean;3727 readonly isOutOfFund: boolean;
3731 readonly type: 'OutOfGas' | 'OutOfFund';3728 readonly type: 'OutOfGas' | 'OutOfFund';
3732 }3729 }
37333730
3734 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (437) */3731 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (461) */
3735 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3732 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
3736 readonly isDisabled: boolean;3733 readonly isDisabled: boolean;
3737 readonly isUnconfirmed: boolean;3734 readonly isUnconfirmed: boolean;
3741 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3738 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
3742 }3739 }
37433740
3744 /** @name PalletEvmContractHelpersSponsoringModeT (438) */3741 /** @name PalletEvmContractHelpersSponsoringModeT (462) */
3745 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3742 interface PalletEvmContractHelpersSponsoringModeT extends Enum {
3746 readonly isDisabled: boolean;3743 readonly isDisabled: boolean;
3747 readonly isAllowlisted: boolean;3744 readonly isAllowlisted: boolean;
3748 readonly isGenerous: boolean;3745 readonly isGenerous: boolean;
3749 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3746 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
3750 }3747 }
37513748
3752 /** @name PalletEvmContractHelpersError (440) */3749 /** @name PalletEvmContractHelpersError (468) */
3753 interface PalletEvmContractHelpersError extends Enum {3750 interface PalletEvmContractHelpersError extends Enum {
3754 readonly isNoPermission: boolean;3751 readonly isNoPermission: boolean;
3755 readonly isNoPendingSponsor: boolean;3752 readonly isNoPendingSponsor: boolean;
3753 readonly isTooManyMethodsHaveSponsoredLimit: boolean;
3756 readonly type: 'NoPermission' | 'NoPendingSponsor';3754 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
3757 }3755 }
37583756
3759 /** @name PalletEvmMigrationError (441) */3757 /** @name PalletEvmMigrationError (469) */
3760 interface PalletEvmMigrationError extends Enum {3758 interface PalletEvmMigrationError extends Enum {
3761 readonly isAccountNotEmpty: boolean;3759 readonly isAccountNotEmpty: boolean;
3762 readonly isAccountIsNotMigrating: boolean;3760 readonly isAccountIsNotMigrating: boolean;
3763 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';3761 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating';
3764 }3762 }
37653763
3766 /** @name SpRuntimeMultiSignature (443) */3764 /** @name SpRuntimeMultiSignature (471) */
3767 interface SpRuntimeMultiSignature extends Enum {3765 interface SpRuntimeMultiSignature extends Enum {
3768 readonly isEd25519: boolean;3766 readonly isEd25519: boolean;
3769 readonly asEd25519: SpCoreEd25519Signature;3767 readonly asEd25519: SpCoreEd25519Signature;
3774 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3772 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
3775 }3773 }
37763774
3777 /** @name SpCoreEd25519Signature (444) */3775 /** @name SpCoreEd25519Signature (472) */
3778 interface SpCoreEd25519Signature extends U8aFixed {}3776 interface SpCoreEd25519Signature extends U8aFixed {}
37793777
3780 /** @name SpCoreSr25519Signature (446) */3778 /** @name SpCoreSr25519Signature (474) */
3781 interface SpCoreSr25519Signature extends U8aFixed {}3779 interface SpCoreSr25519Signature extends U8aFixed {}
37823780
3783 /** @name SpCoreEcdsaSignature (447) */3781 /** @name SpCoreEcdsaSignature (475) */
3784 interface SpCoreEcdsaSignature extends U8aFixed {}3782 interface SpCoreEcdsaSignature extends U8aFixed {}
37853783
3786 /** @name FrameSystemExtensionsCheckSpecVersion (450) */3784 /** @name FrameSystemExtensionsCheckSpecVersion (478) */
3787 type FrameSystemExtensionsCheckSpecVersion = Null;3785 type FrameSystemExtensionsCheckSpecVersion = Null;
37883786
3789 /** @name FrameSystemExtensionsCheckGenesis (451) */3787 /** @name FrameSystemExtensionsCheckGenesis (479) */
3790 type FrameSystemExtensionsCheckGenesis = Null;3788 type FrameSystemExtensionsCheckGenesis = Null;
37913789
3792 /** @name FrameSystemExtensionsCheckNonce (454) */3790 /** @name FrameSystemExtensionsCheckNonce (482) */
3793 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}3791 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
37943792
3795 /** @name FrameSystemExtensionsCheckWeight (455) */3793 /** @name FrameSystemExtensionsCheckWeight (483) */
3796 type FrameSystemExtensionsCheckWeight = Null;3794 type FrameSystemExtensionsCheckWeight = Null;
37973795
3798 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (456) */3796 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (484) */
3799 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}3797 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
38003798
3801 /** @name OpalRuntimeRuntime (457) */3799 /** @name OpalRuntimeRuntime (485) */
3802 type OpalRuntimeRuntime = Null;3800 type OpalRuntimeRuntime = Null;
38033801
3804 /** @name PalletEthereumFakeTransactionFinalizer (458) */3802 /** @name PalletEthereumFakeTransactionFinalizer (486) */
3805 type PalletEthereumFakeTransactionFinalizer = Null;3803 type PalletEthereumFakeTransactionFinalizer = Null;
38063804
3807} // declare module3805} // declare module