git.delta.rocks / unique-network / refs/commits / 768e7a342d72

difftreelog

test regenerate polkadot types

Yaroslav Bolyukin2023-05-22parent: #3f5f75f.patch.diff
in: master

11 files changed

modifiedtests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth
42 [key: string]: Codec;42 [key: string]: Codec;
43 };43 };
44 balances: {44 balances: {
45 /**45 /**
46 * The minimum amount required to keep an account open.46 * The minimum amount required to keep an account open. MUST BE GREATER THAN ZERO!
47 **/47 *
48 * If you *really* need it to be zero, you can enable the feature `insecure_zero_ed` for
49 * this pallet. However, you do so at your own risk: this will open up a major DoS vector.
50 * In case you have multiple sources of provider references, you may also get unexpected
51 * behaviour if you set this to zero.
52 *
53 * Bottom line: Do yourself a favour and make it at least one!
54 **/
48 existentialDeposit: u128 & AugmentedConst<ApiType>;55 existentialDeposit: u128 & AugmentedConst<ApiType>;
56 /**
57 * The maximum number of individual freeze locks that can exist on an account at any time.
58 **/
59 maxFreezes: u32 & AugmentedConst<ApiType>;
60 /**
61 * The maximum number of holds that can exist on an account at any time.
62 **/
63 maxHolds: u32 & AugmentedConst<ApiType>;
49 /**64 /**
50 * The maximum number of locks that should exist on an account.65 * The maximum number of locks that should exist on an account.
51 * Not strictly enforced, but used for weight estimation.66 * Not strictly enforced, but used for weight estimation.
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
46 [key: string]: AugmentedError<ApiType>;46 [key: string]: AugmentedError<ApiType>;
47 };47 };
48 balances: {48 balances: {
49 /**49 /**
50 * Beneficiary account must pre-exist50 * Beneficiary account must pre-exist.
51 **/51 **/
52 DeadAccount: AugmentedError<ApiType>;52 DeadAccount: AugmentedError<ApiType>;
53 /**53 /**
54 * Value too low to create account due to existential deposit54 * Value too low to create account due to existential deposit.
55 **/55 **/
56 ExistentialDeposit: AugmentedError<ApiType>;56 ExistentialDeposit: AugmentedError<ApiType>;
57 /**57 /**
58 * A vesting schedule already exists for this account58 * A vesting schedule already exists for this account.
59 **/59 **/
60 ExistingVestingSchedule: AugmentedError<ApiType>;60 ExistingVestingSchedule: AugmentedError<ApiType>;
61 /**
62 * Transfer/payment would kill account.
63 **/
64 Expendability: AugmentedError<ApiType>;
61 /**65 /**
62 * Balance too low to send value.66 * Balance too low to send value.
63 **/67 **/
64 InsufficientBalance: AugmentedError<ApiType>;68 InsufficientBalance: AugmentedError<ApiType>;
69 /**
70 * Account liquidity restrictions prevent withdrawal.
71 **/
72 LiquidityRestrictions: AugmentedError<ApiType>;
65 /**73 /**
66 * Transfer/payment would kill account74 * Number of freezes exceed `MaxFreezes`.
67 **/75 **/
68 KeepAlive: AugmentedError<ApiType>;76 TooManyFreezes: AugmentedError<ApiType>;
69 /**77 /**
70 * Account liquidity restrictions prevent withdrawal78 * Number of holds exceed `MaxHolds`.
71 **/79 **/
72 LiquidityRestrictions: AugmentedError<ApiType>;80 TooManyHolds: AugmentedError<ApiType>;
73 /**81 /**
74 * Number of named reserves exceed MaxReserves82 * Number of named reserves exceed `MaxReserves`.
75 **/83 **/
76 TooManyReserves: AugmentedError<ApiType>;84 TooManyReserves: AugmentedError<ApiType>;
77 /**85 /**
78 * Vesting balance too high to send value86 * Vesting balance too high to send value.
79 **/87 **/
80 VestingBalance: AugmentedError<ApiType>;88 VestingBalance: AugmentedError<ApiType>;
81 /**89 /**
82 * Generic error90 * Generic error
590 [key: string]: AugmentedError<ApiType>;598 [key: string]: AugmentedError<ApiType>;
591 };599 };
592 parachainSystem: {600 parachainSystem: {
593 /**601 /**
594 * The inherent which supplies the host configuration did not run this block602 * The inherent which supplies the host configuration did not run this block.
595 **/603 **/
596 HostConfigurationNotAvailable: AugmentedError<ApiType>;604 HostConfigurationNotAvailable: AugmentedError<ApiType>;
597 /**605 /**
598 * No code upgrade has been authorized.606 * No code upgrade has been authorized.
602 * No validation function upgrade is currently scheduled.610 * No validation function upgrade is currently scheduled.
603 **/611 **/
604 NotScheduled: AugmentedError<ApiType>;612 NotScheduled: AugmentedError<ApiType>;
605 /**613 /**
606 * Attempt to upgrade validation function while existing upgrade pending614 * Attempt to upgrade validation function while existing upgrade pending.
607 **/615 **/
608 OverlappingUpgrades: AugmentedError<ApiType>;616 OverlappingUpgrades: AugmentedError<ApiType>;
609 /**617 /**
610 * Polkadot currently prohibits this parachain from upgrading its validation function618 * Polkadot currently prohibits this parachain from upgrading its validation function.
611 **/619 **/
612 ProhibitedByPolkadot: AugmentedError<ApiType>;620 ProhibitedByPolkadot: AugmentedError<ApiType>;
613 /**621 /**
614 * The supplied validation function has compiled into a blob larger than Polkadot is622 * The supplied validation function has compiled into a blob larger than Polkadot is
615 * willing to run623 * willing to run.
616 **/624 **/
617 TooBig: AugmentedError<ApiType>;625 TooBig: AugmentedError<ApiType>;
618 /**626 /**
619 * The given code upgrade has not been authorized.627 * The given code upgrade has not been authorized.
620 **/628 **/
621 Unauthorized: AugmentedError<ApiType>;629 Unauthorized: AugmentedError<ApiType>;
622 /**630 /**
623 * The inherent which supplies the validation data did not run this block631 * The inherent which supplies the validation data did not run this block.
624 **/632 **/
625 ValidationDataNotAvailable: AugmentedError<ApiType>;633 ValidationDataNotAvailable: AugmentedError<ApiType>;
626 /**634 /**
627 * Generic error635 * Generic error
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
56 /**56 /**
57 * A balance was set by root.57 * A balance was set by root.
58 **/58 **/
59 BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128, reserved: u128], { who: AccountId32, free: u128, reserved: u128 }>;59 BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128], { who: AccountId32, free: u128 }>;
60 /**
61 * Some amount was burned from an account.
62 **/
63 Burned: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
60 /**64 /**
61 * Some amount was deposited (e.g. for transaction fees).65 * Some amount was deposited (e.g. for transaction fees).
62 **/66 **/
70 * An account was created with some free balance.74 * An account was created with some free balance.
71 **/75 **/
72 Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;76 Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;
77 /**
78 * Some balance was frozen.
79 **/
80 Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
81 /**
82 * Total issuance was increased by `amount`, creating a credit to be balanced.
83 **/
84 Issued: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;
85 /**
86 * Some balance was locked.
87 **/
88 Locked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
89 /**
90 * Some amount was minted into an account.
91 **/
92 Minted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
93 /**
94 * Total issuance was decreased by `amount`, creating a debt to be balanced.
95 **/
96 Rescinded: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;
73 /**97 /**
74 * Some balance was reserved (moved from free to reserved).98 * Some balance was reserved (moved from free to reserved).
75 **/99 **/
79 * Final argument indicates the destination balance type.103 * Final argument indicates the destination balance type.
80 **/104 **/
81 ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;105 ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;
106 /**
107 * Some amount was restored into an account.
108 **/
109 Restored: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
82 /**110 /**
83 * Some amount was removed from the account (e.g. for misbehavior).111 * Some amount was removed from the account (e.g. for misbehavior).
84 **/112 **/
85 Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;113 Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
114 /**
115 * Some amount was suspended from an account (it can be restored later).
116 **/
117 Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
118 /**
119 * Some balance was thawed.
120 **/
121 Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
86 /**122 /**
87 * Transfer succeeded.123 * Transfer succeeded.
88 **/124 **/
89 Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;125 Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;
126 /**
127 * Some balance was unlocked.
128 **/
129 Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
90 /**130 /**
91 * Some balance was unreserved (moved from reserved to free).131 * Some balance was unreserved (moved from reserved to free).
92 **/132 **/
93 Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;133 Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
134 /**
135 * An account was upgraded.
136 **/
137 Upgraded: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;
94 /**138 /**
95 * Some amount was withdrawn from the account (e.g. for transaction fees).139 * Some amount was withdrawn from the account (e.g. for transaction fees).
96 **/140 **/
274 /**318 /**
275 * An ethereum transaction was successfully executed.319 * An ethereum transaction was successfully executed.
276 **/320 **/
277 Executed: AugmentedEvent<ApiType, [from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason], { from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason }>;321 Executed: AugmentedEvent<ApiType, [from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason, extraData: Bytes], { from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason, extraData: Bytes }>;
278 /**322 /**
279 * Generic event323 * Generic event
280 **/324 **/
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
10import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';10import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
11import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';11import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
12import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';12import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';
13import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletPreimageRequestStatus, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV3MultiLocation, XcmVersionedAssetId, XcmVersionedMultiLocation } from '@polkadot/types/lookup';13import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesIdAmount, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletPreimageRequestStatus, PalletTransactionPaymentReleases, PalletTreasuryProposal, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV3MultiLocation, XcmVersionedAssetId, XcmVersionedMultiLocation } from '@polkadot/types/lookup';
14import type { Observable } from '@polkadot/types/types';14import type { Observable } from '@polkadot/types/types';
1515
16export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;16export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
55 * Stores the total staked amount.55 * Stores the total staked amount.
56 **/56 **/
57 totalStaked: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;57 totalStaked: AugmentedQuery<ApiType, () => Observable<u128>, []> & QueryableStorageEntry<ApiType, []>;
58 upgradedToReserves: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;
59 /**58 /**
60 * Generic query59 * Generic query
61 **/60 **/
129 * NOTE: This is only used in the case that this pallet is used to store balances.128 * NOTE: This is only used in the case that this pallet is used to store balances.
130 **/129 **/
131 account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PalletBalancesAccountData>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;130 account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PalletBalancesAccountData>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
131 /**
132 * Freeze locks on account balances.
133 **/
134 freezes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesIdAmount>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
135 /**
136 * Holds on account balances.
137 **/
138 holds: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PalletBalancesIdAmount>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
132 /**139 /**
133 * The total units of outstanding deactivated balance in the system.140 * The total units of outstanding deactivated balance in the system.
134 **/141 **/
151 **/158 **/
152 [key: string]: QueryableStorageEntry<ApiType>;159 [key: string]: QueryableStorageEntry<ApiType>;
153 };160 };
154 charging: {
155 /**
156 * Generic query
157 **/
158 [key: string]: QueryableStorageEntry<ApiType>;
159 };
160 collatorSelection: {161 collatorSelection: {
161 /**162 /**
162 * The (community, limited) collation candidates.163 * The (community, limited) collation candidates.
565 /**566 /**
566 * The next authorized upgrade, if there is one.567 * The next authorized upgrade, if there is one.
567 **/568 **/
568 authorizedUpgrade: AugmentedQuery<ApiType, () => Observable<Option<H256>>, []> & QueryableStorageEntry<ApiType, []>;569 authorizedUpgrade: AugmentedQuery<ApiType, () => Observable<Option<CumulusPalletParachainSystemCodeUpgradeAuthorization>>, []> & QueryableStorageEntry<ApiType, []>;
569 /**570 /**
570 * A custom head data that should be returned as result of `validate_block`.571 * A custom head data that should be returned as result of `validate_block`.
571 * 572 *
584 * 585 *
585 * This data is also absent from the genesis.586 * This data is also absent from the genesis.
586 **/587 **/
587 hostConfiguration: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV2AbridgedHostConfiguration>>, []> & QueryableStorageEntry<ApiType, []>;588 hostConfiguration: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV4AbridgedHostConfiguration>>, []> & QueryableStorageEntry<ApiType, []>;
588 /**589 /**
589 * HRMP messages that were sent in a block.590 * HRMP messages that were sent in a block.
590 * 591 *
680 * relay-chain. This value is ephemeral which means it doesn't hit the storage. This value is681 * relay-chain. This value is ephemeral which means it doesn't hit the storage. This value is
681 * set after the inherent.682 * set after the inherent.
682 **/683 **/
683 upgradeRestrictionSignal: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV2UpgradeRestriction>>, []> & QueryableStorageEntry<ApiType, []>;684 upgradeRestrictionSignal: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV4UpgradeRestriction>>, []> & QueryableStorageEntry<ApiType, []>;
684 /**685 /**
685 * Upward messages that were sent in a block.686 * Upward messages that were sent in a block.
686 * 687 *
692 * This value is expected to be set only once per block and it's never stored693 * This value is expected to be set only once per block and it's never stored
693 * in the trie.694 * in the trie.
694 **/695 **/
695 validationData: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV2PersistedValidationData>>, []> & QueryableStorageEntry<ApiType, []>;696 validationData: AugmentedQuery<ApiType, () => Observable<Option<PolkadotPrimitivesV4PersistedValidationData>>, []> & QueryableStorageEntry<ApiType, []>;
696 /**697 /**
697 * Generic query698 * Generic query
698 **/699 **/
750 * of our versions we informed them of.751 * of our versions we informed them of.
751 **/752 **/
752 versionNotifyTargets: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => Observable<Option<ITuple<[u64, SpWeightsWeightV2Weight, u32]>>>, [u32, XcmVersionedMultiLocation]> & QueryableStorageEntry<ApiType, [u32, XcmVersionedMultiLocation]>;753 versionNotifyTargets: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => Observable<Option<ITuple<[u64, SpWeightsWeightV2Weight, u32]>>>, [u32, XcmVersionedMultiLocation]> & QueryableStorageEntry<ApiType, [u32, XcmVersionedMultiLocation]>;
754 /**
755 * Global suspension state of the XCM executor.
756 **/
757 xcmExecutionSuspended: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;
753 /**758 /**
754 * Generic query759 * Generic query
755 **/760 **/
1062 * Last sponsoring of token property setting // todo:doc rephrase this and the following1067 * Last sponsoring of token property setting // todo:doc rephrase this and the following
1063 **/1068 **/
1064 tokenPropertyBasket: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;1069 tokenPropertyBasket: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
1065 /**
1066 * Variable metadata sponsoring
1067 * Collection id (controlled?2), token id (controlled?2)
1068 **/
1069 variableMetaDataBasket: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<u32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
1070 /**1070 /**
1071 * Generic query1071 * Generic query
1072 **/1072 **/
modifiedtests/src/interfaces/augment-api-runtime.tsdiffbeforeafterboth
181 **/181 **/
182 [key: string]: DecoratedCallBase<ApiType>;182 [key: string]: DecoratedCallBase<ApiType>;
183 };183 };
184 /** 0x37e397fc7c91f5e4/1 */184 /** 0x37e397fc7c91f5e4/2 */
185 metadata: {185 metadata: {
186 /**186 /**
187 * Returns the metadata of a runtime187 * Returns the metadata of a runtime
188 **/188 **/
189 metadata: AugmentedCall<ApiType, () => Observable<OpaqueMetadata>>;189 metadata: AugmentedCall<ApiType, () => Observable<OpaqueMetadata>>;
190 /**
191 * Returns the metadata at a given version.
192 **/
193 metadataAtVersion: AugmentedCall<ApiType, (version: u32 | AnyNumber | Uint8Array) => Observable<Option<OpaqueMetadata>>>;
194 /**
195 * Returns the supported metadata versions.
196 **/
197 metadataVersions: AugmentedCall<ApiType, () => Observable<Vec<u32>>>;
190 /**198 /**
191 * Generic call199 * Generic call
192 **/200 **/
229 **/237 **/
230 [key: string]: DecoratedCallBase<ApiType>;238 [key: string]: DecoratedCallBase<ApiType>;
231 };239 };
232 /** 0x37c8bb1350a9a2a8/3 */240 /** 0x37c8bb1350a9a2a8/4 */
233 transactionPaymentApi: {241 transactionPaymentApi: {
234 /**242 /**
235 * The transaction fee details243 * The transaction fee details
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
131 [key: string]: SubmittableExtrinsicFunction<ApiType>;131 [key: string]: SubmittableExtrinsicFunction<ApiType>;
132 };132 };
133 balances: {133 balances: {
134 /**134 /**
135 * Exactly as `transfer`, except the origin must be root and the source account may be135 * Set the regular balance of a given account.
136 * specified.136 *
137 * ## Complexity137 * The dispatch origin for this call is `root`.
138 * - Same as transfer, but additional read and write because the source account is not138 **/
139 * assumed to be in the overlay.139 forceSetBalance: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
140 **/140 /**
141 * Exactly as `transfer_allow_death`, except the origin must be root and the source account
142 * may be specified.
143 **/
141 forceTransfer: AugmentedSubmittable<(source: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Compact<u128>]>;144 forceTransfer: AugmentedSubmittable<(source: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Compact<u128>]>;
142 /**145 /**
143 * Unreserve some balance from a user by force.146 * Unreserve some balance from a user by force.
144 * 147 *
145 * Can only be called by ROOT.148 * Can only be called by ROOT.
146 **/149 **/
147 forceUnreserve: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u128]>;150 forceUnreserve: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u128]>;
148 /**151 /**
149 * Set the balances of a given account.152 * Set the regular balance of a given account; it also takes a reserved balance but this
150 * 153 * must be the same as the account's current reserved balance.
151 * This will alter `FreeBalance` and `ReservedBalance` in storage. it will154 *
152 * also alter the total issuance of the system (`TotalIssuance`) appropriately.155 * The dispatch origin for this call is `root`.
153 * If the new free or reserved balance is below the existential deposit,156 *
154 * it will reset the account nonce (`frame_system::AccountNonce`).157 * WARNING: This call is DEPRECATED! Use `force_set_balance` instead.
155 * 158 **/
156 * The dispatch origin for this call is `root`.
157 **/
158 setBalance: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array, newReserved: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>, Compact<u128>]>;159 setBalanceDeprecated: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array, oldReserved: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>, Compact<u128>]>;
159 /**160 /**
160 * Transfer some liquid free balance to another account.161 * Alias for `transfer_allow_death`, provided only for name-wise compatibility.
161 * 162 *
162 * `transfer` will set the `FreeBalance` of the sender and receiver.163 * WARNING: DEPRECATED! Will be released in approximately 3 months.
163 * If the sender's account is below the existential deposit as a result164 **/
164 * of the transfer, the account will be reaped.
165 *
166 * The dispatch origin for this call must be `Signed` by the transactor.
167 *
168 * ## Complexity
169 * - Dependent on arguments but not critical, given proper implementations for input config
170 * types. See related functions below.
171 * - It contains a limited number of reads and writes internally and no complex
172 * computation.
173 *
174 * Related functions:
175 *
176 * - `ensure_can_withdraw` is always called internally but has a bounded complexity.
177 * - Transferring balances to accounts that did not exist before will cause
178 * `T::OnNewAccount::on_new_account` to be called.
179 * - Removing enough funds from an account will trigger `T::DustRemoval::on_unbalanced`.
180 * - `transfer_keep_alive` works the same way as `transfer`, but has an additional check
181 * that the transfer will not kill the origin account.
182 **/
183 transfer: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;165 transfer: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
184 /**166 /**
185 * Transfer the entire transferable balance from the caller account.167 * Transfer the entire transferable balance from the caller account.
186 * 168 *
187 * NOTE: This function only attempts to transfer _transferable_ balances. This means that169 * NOTE: This function only attempts to transfer _transferable_ balances. This means that
188 * any locked, reserved, or existential deposits (when `keep_alive` is `true`), will not be170 * any locked, reserved, or existential deposits (when `keep_alive` is `true`), will not be
189 * transferred by this function. To ensure that this function results in a killed account,171 * transferred by this function. To ensure that this function results in a killed account,
190 * you might need to prepare the account by removing any reference counters, storage172 * you might need to prepare the account by removing any reference counters, storage
191 * deposits, etc...173 * deposits, etc...
192 * 174 *
193 * The dispatch origin of this call must be Signed.175 * The dispatch origin of this call must be Signed.
194 * 176 *
195 * - `dest`: The recipient of the transfer.177 * - `dest`: The recipient of the transfer.
196 * - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all178 * - `keep_alive`: A boolean to determine if the `transfer_all` operation should send all
197 * of the funds the account has, causing the sender account to be killed (false), or179 * of the funds the account has, causing the sender account to be killed (false), or
198 * transfer everything except at least the existential deposit, which will guarantee to180 * transfer everything except at least the existential deposit, which will guarantee to
199 * keep the sender account alive (true). ## Complexity181 * keep the sender account alive (true).
200 * - O(1). Just like transfer, but reading the user's transferable balance first.182 **/
201 **/
202 transferAll: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;183 transferAll: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;
184 /**
185 * Transfer some liquid free balance to another account.
186 *
187 * `transfer_allow_death` will set the `FreeBalance` of the sender and receiver.
188 * If the sender's account is below the existential deposit as a result
189 * of the transfer, the account will be reaped.
190 *
191 * The dispatch origin for this call must be `Signed` by the transactor.
192 **/
193 transferAllowDeath: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
203 /**194 /**
204 * Same as the [`transfer`] call, but with a check that the transfer will not kill the195 * Same as the [`transfer_allow_death`] call, but with a check that the transfer will not
205 * origin account.196 * kill the origin account.
206 * 197 *
207 * 99% of the time you want [`transfer`] instead.198 * 99% of the time you want [`transfer_allow_death`] instead.
208 * 199 *
209 * [`transfer`]: struct.Pallet.html#method.transfer200 * [`transfer_allow_death`]: struct.Pallet.html#method.transfer
210 **/201 **/
211 transferKeepAlive: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;202 transferKeepAlive: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
203 /**
204 * Upgrade a specified account.
205 *
206 * - `origin`: Must be `Signed`.
207 * - `who`: The account to be upgraded.
208 *
209 * This will waive the transaction fee if at least all but 10% of the accounts needed to
210 * be upgraded. (We let some not have to be upgraded just in order to allow for the
211 * possibililty of churn).
212 **/
213 upgradeAccounts: AugmentedSubmittable<(who: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
212 /**214 /**
213 * Generic tx215 * Generic tx
214 **/216 **/
215 [key: string]: SubmittableExtrinsicFunction<ApiType>;217 [key: string]: SubmittableExtrinsicFunction<ApiType>;
216 };218 };
217 charging: {
218 /**
219 * Generic tx
220 **/
221 [key: string]: SubmittableExtrinsicFunction<ApiType>;
222 };
223 collatorSelection: {219 collatorSelection: {
224 /**220 /**
225 * Add a collator to the list of invulnerable (fixed) collators.221 * Add a collator to the list of invulnerable (fixed) collators.
722 [key: string]: SubmittableExtrinsicFunction<ApiType>;718 [key: string]: SubmittableExtrinsicFunction<ApiType>;
723 };719 };
724 parachainSystem: {720 parachainSystem: {
721 /**
722 * Authorize an upgrade to a given `code_hash` for the runtime. The runtime can be supplied
723 * later.
724 *
725 * The `check_version` parameter sets a boolean flag for whether or not the runtime's spec
726 * version and name should be verified on upgrade. Since the authorization only has a hash,
727 * it cannot actually perform the verification.
728 *
729 * This call requires Root origin.
730 **/
725 authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256]>;731 authorizeUpgrade: AugmentedSubmittable<(codeHash: H256 | string | Uint8Array, checkVersion: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [H256, bool]>;
732 /**
733 * Provide the preimage (runtime binary) `code` for an upgrade that has been authorized.
734 *
735 * If the authorization required a version check, this call will ensure the spec name
736 * remains unchanged and that the spec version has increased.
737 *
738 * Note that this function will not apply the new `code`, but only attempt to schedule the
739 * upgrade with the Relay Chain.
740 *
741 * All origins are allowed.
742 **/
726 enactAuthorizedUpgrade: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;743 enactAuthorizedUpgrade: AugmentedSubmittable<(code: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Bytes]>;
727 /**744 /**
728 * Set the current validation data.745 * Set the current validation data.
757 * to completion; only that *some* of it was executed.774 * to completion; only that *some* of it was executed.
758 **/775 **/
759 execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V2: any } | { V3: any } | string | Uint8Array, maxWeight: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedXcm, SpWeightsWeightV2Weight]>;776 execute: AugmentedSubmittable<(message: XcmVersionedXcm | { V2: any } | { V3: any } | string | Uint8Array, maxWeight: SpWeightsWeightV2Weight | { refTime?: any; proofSize?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedXcm, SpWeightsWeightV2Weight]>;
760 /**777 /**
761 * Set a safe XCM version (the version that XCM should be encoded with if the most recent778 * Set a safe XCM version (the version that XCM should be encoded with if the most recent
762 * version a destination can accept is unknown).779 * version a destination can accept is unknown).
763 * 780 *
764 * - `origin`: Must be Root.781 * - `origin`: Must be an origin specified by AdminOrigin.
765 * - `maybe_xcm_version`: The default XCM encoding version, or `None` to disable.782 * - `maybe_xcm_version`: The default XCM encoding version, or `None` to disable.
766 **/783 **/
767 forceDefaultXcmVersion: AugmentedSubmittable<(maybeXcmVersion: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;784 forceDefaultXcmVersion: AugmentedSubmittable<(maybeXcmVersion: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;
768 /**785 /**
769 * Ask a location to notify us regarding their XCM version and any changes to it.786 * Ask a location to notify us regarding their XCM version and any changes to it.
770 * 787 *
771 * - `origin`: Must be Root.788 * - `origin`: Must be an origin specified by AdminOrigin.
772 * - `location`: The location to which we should subscribe for XCM version notifications.789 * - `location`: The location to which we should subscribe for XCM version notifications.
773 **/790 **/
774 forceSubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation]>;791 forceSubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation]>;
792 /**
793 * Set or unset the global suspension state of the XCM executor.
794 *
795 * - `origin`: Must be an origin specified by AdminOrigin.
796 * - `suspended`: `true` to suspend, `false` to resume.
797 **/
798 forceSuspension: AugmentedSubmittable<(suspended: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [bool]>;
775 /**799 /**
776 * Require that a particular destination should no longer notify us regarding any XCM800 * Require that a particular destination should no longer notify us regarding any XCM
777 * version changes.801 * version changes.
778 * 802 *
779 * - `origin`: Must be Root.803 * - `origin`: Must be an origin specified by AdminOrigin.
780 * - `location`: The location to which we are currently subscribed for XCM version804 * - `location`: The location to which we are currently subscribed for XCM version
781 * notifications which we no longer desire.805 * notifications which we no longer desire.
782 **/806 **/
783 forceUnsubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation]>;807 forceUnsubscribeVersionNotify: AugmentedSubmittable<(location: XcmVersionedMultiLocation | { V2: any } | { V3: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmVersionedMultiLocation]>;
784 /**808 /**
785 * Extoll that a particular destination can be communicated with through a particular809 * Extoll that a particular destination can be communicated with through a particular
786 * version of XCM.810 * version of XCM.
787 * 811 *
788 * - `origin`: Must be Root.812 * - `origin`: Must be an origin specified by AdminOrigin.
789 * - `location`: The destination that is being described.813 * - `location`: The destination that is being described.
790 * - `xcm_version`: The latest version of XCM that `location` supports.814 * - `xcm_version`: The latest version of XCM that `location` supports.
791 **/815 **/
792 forceXcmVersion: AugmentedSubmittable<(location: XcmV3MultiLocation | { parents?: any; interior?: any } | string | Uint8Array, xcmVersion: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmV3MultiLocation, u32]>;816 forceXcmVersion: AugmentedSubmittable<(location: XcmV3MultiLocation | { parents?: any; interior?: any } | string | Uint8Array, xcmVersion: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [XcmV3MultiLocation, u32]>;
793 /**817 /**
794 * Transfer some assets from the local chain to the sovereign account of a destination818 * Transfer some assets from the local chain to the sovereign account of a destination
modifiedtests/src/interfaces/augment-types.tsdiffbeforeafterboth
5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions
6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';
77
8import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from './default';8import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from './default';
9import type { Data, StorageKey } from '@polkadot/types';9import type { Data, StorageKey } from '@polkadot/types';
10import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, ISize, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, isize, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';10import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, ISize, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, isize, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
35import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';35import type { BlockV0, BlockV1, BlockV2, EIP1559Transaction, EIP2930Transaction, EthAccessList, EthAccessListItem, EthAccount, EthAddress, EthBlock, EthBloom, EthCallRequest, EthFeeHistory, EthFilter, EthFilterAddress, EthFilterChanges, EthFilterTopic, EthFilterTopicEntry, EthFilterTopicInner, EthHeader, EthLog, EthReceipt, EthReceiptV0, EthReceiptV3, EthRichBlock, EthRichHeader, EthStorageProof, EthSubKind, EthSubParams, EthSubResult, EthSyncInfo, EthSyncStatus, EthTransaction, EthTransactionAction, EthTransactionCondition, EthTransactionRequest, EthTransactionSignature, EthTransactionStatus, EthWork, EthereumAccountId, EthereumAddress, EthereumLookupSource, EthereumSignature, LegacyTransaction, TransactionV0, TransactionV1, TransactionV2 } from '@polkadot/types/interfaces/eth';
36import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';36import type { EvmAccount, EvmCallInfo, EvmCreateInfo, EvmLog, EvmVicinity, ExitError, ExitFatal, ExitReason, ExitRevert, ExitSucceed } from '@polkadot/types/interfaces/evm';
37import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';37import type { AnySignature, EcdsaSignature, Ed25519Signature, Era, Extrinsic, ExtrinsicEra, ExtrinsicPayload, ExtrinsicPayloadUnknown, ExtrinsicPayloadV4, ExtrinsicSignature, ExtrinsicSignatureV4, ExtrinsicUnknown, ExtrinsicV4, ImmortalEra, MortalEra, MultiSignature, Signature, SignerPayload, Sr25519Signature } from '@polkadot/types/interfaces/extrinsics';
38import type { FungiblesAccessError } from '@polkadot/types/interfaces/fungibles';
38import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';39import type { AssetOptions, Owner, PermissionLatest, PermissionVersions, PermissionsV1 } from '@polkadot/types/interfaces/genericAsset';
39import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';40import type { ActiveGilt, ActiveGiltsTotal, ActiveIndex, GiltBid } from '@polkadot/types/interfaces/gilt';
40import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';41import type { AuthorityIndex, AuthorityList, AuthoritySet, AuthoritySetChange, AuthoritySetChanges, AuthorityWeight, DelayKind, DelayKindBest, EncodedFinalityProofs, ForkTreePendingChange, ForkTreePendingChangeNode, GrandpaCommit, GrandpaEquivocation, GrandpaEquivocationProof, GrandpaEquivocationValue, GrandpaJustification, GrandpaPrecommit, GrandpaPrevote, GrandpaSignedPrecommit, JustificationNotification, KeyOwnerProof, NextAuthority, PendingChange, PendingPause, PendingResume, Precommits, Prevotes, ReportedRoundStates, RoundState, SetId, StoredPendingChange, StoredState } from '@polkadot/types/interfaces/grandpa';
41import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';42import type { IdentityFields, IdentityInfo, IdentityInfoAdditional, IdentityInfoTo198, IdentityJudgement, RegistrarIndex, RegistrarInfo, Registration, RegistrationJudgement, RegistrationTo198 } from '@polkadot/types/interfaces/identity';
42import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';43import type { AuthIndex, AuthoritySignature, Heartbeat, HeartbeatTo244, OpaqueMultiaddr, OpaqueNetworkState, OpaquePeerId } from '@polkadot/types/interfaces/imOnline';
43import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';44import type { CallIndex, LotteryConfig } from '@polkadot/types/interfaces/lottery';
44import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';45import type { ErrorMetadataLatest, ErrorMetadataV10, ErrorMetadataV11, ErrorMetadataV12, ErrorMetadataV13, ErrorMetadataV14, ErrorMetadataV9, EventMetadataLatest, EventMetadataV10, EventMetadataV11, EventMetadataV12, EventMetadataV13, EventMetadataV14, EventMetadataV9, ExtrinsicMetadataLatest, ExtrinsicMetadataV11, ExtrinsicMetadataV12, ExtrinsicMetadataV13, ExtrinsicMetadataV14, FunctionArgumentMetadataLatest, FunctionArgumentMetadataV10, FunctionArgumentMetadataV11, FunctionArgumentMetadataV12, FunctionArgumentMetadataV13, FunctionArgumentMetadataV14, FunctionArgumentMetadataV9, FunctionMetadataLatest, FunctionMetadataV10, FunctionMetadataV11, FunctionMetadataV12, FunctionMetadataV13, FunctionMetadataV14, FunctionMetadataV9, MetadataAll, MetadataLatest, MetadataV10, MetadataV11, MetadataV12, MetadataV13, MetadataV14, MetadataV15, MetadataV9, ModuleConstantMetadataV10, ModuleConstantMetadataV11, ModuleConstantMetadataV12, ModuleConstantMetadataV13, ModuleConstantMetadataV9, ModuleMetadataV10, ModuleMetadataV11, ModuleMetadataV12, ModuleMetadataV13, ModuleMetadataV9, OpaqueMetadata, PalletCallMetadataLatest, PalletCallMetadataV14, PalletConstantMetadataLatest, PalletConstantMetadataV14, PalletErrorMetadataLatest, PalletErrorMetadataV14, PalletEventMetadataLatest, PalletEventMetadataV14, PalletMetadataLatest, PalletMetadataV14, PalletMetadataV15, PalletStorageMetadataLatest, PalletStorageMetadataV14, PortableType, PortableTypeV14, RuntimeApiMetadataLatest, RuntimeApiMetadataV15, RuntimeApiMethodMetadataV15, RuntimeApiMethodParamMetadataV15, SignedExtensionMetadataLatest, SignedExtensionMetadataV14, StorageEntryMetadataLatest, StorageEntryMetadataV10, StorageEntryMetadataV11, StorageEntryMetadataV12, StorageEntryMetadataV13, StorageEntryMetadataV14, StorageEntryMetadataV9, StorageEntryModifierLatest, StorageEntryModifierV10, StorageEntryModifierV11, StorageEntryModifierV12, StorageEntryModifierV13, StorageEntryModifierV14, StorageEntryModifierV9, StorageEntryTypeLatest, StorageEntryTypeV10, StorageEntryTypeV11, StorageEntryTypeV12, StorageEntryTypeV13, StorageEntryTypeV14, StorageEntryTypeV9, StorageHasher, StorageHasherV10, StorageHasherV11, StorageHasherV12, StorageHasherV13, StorageHasherV14, StorageHasherV9, StorageMetadataV10, StorageMetadataV11, StorageMetadataV12, StorageMetadataV13, StorageMetadataV9 } from '@polkadot/types/interfaces/metadata';
45import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrHash, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';46import type { MmrBatchProof, MmrEncodableOpaqueLeaf, MmrError, MmrHash, MmrLeafBatchProof, MmrLeafIndex, MmrLeafProof, MmrNodeIndex, MmrProof } from '@polkadot/types/interfaces/mmr';
46import type { NftCollectionId, NftItemId } from '@polkadot/types/interfaces/nfts';47import type { NftCollectionId, NftItemId } from '@polkadot/types/interfaces/nfts';
47import type { NpApiError, NpPoolId } from '@polkadot/types/interfaces/nompools';48import type { NpApiError, NpPoolId } from '@polkadot/types/interfaces/nompools';
327 CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;328 CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;
328 CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;329 CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;
329 CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;330 CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;
331 CumulusPalletParachainSystemCodeUpgradeAuthorization: CumulusPalletParachainSystemCodeUpgradeAuthorization;
330 CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;332 CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;
331 CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;333 CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;
332 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;334 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;
569 FungibilityV0: FungibilityV0;571 FungibilityV0: FungibilityV0;
570 FungibilityV1: FungibilityV1;572 FungibilityV1: FungibilityV1;
571 FungibilityV2: FungibilityV2;573 FungibilityV2: FungibilityV2;
574 FungiblesAccessError: FungiblesAccessError;
572 Gas: Gas;575 Gas: Gas;
573 GiltBid: GiltBid;576 GiltBid: GiltBid;
574 GlobalValidationData: GlobalValidationData;577 GlobalValidationData: GlobalValidationData;
711 MetadataV12: MetadataV12;714 MetadataV12: MetadataV12;
712 MetadataV13: MetadataV13;715 MetadataV13: MetadataV13;
713 MetadataV14: MetadataV14;716 MetadataV14: MetadataV14;
717 MetadataV15: MetadataV15;
714 MetadataV9: MetadataV9;718 MetadataV9: MetadataV9;
715 MigrationStatusResult: MigrationStatusResult;719 MigrationStatusResult: MigrationStatusResult;
716 MmrBatchProof: MmrBatchProof;720 MmrBatchProof: MmrBatchProof;
836 PalletBalancesCall: PalletBalancesCall;840 PalletBalancesCall: PalletBalancesCall;
837 PalletBalancesError: PalletBalancesError;841 PalletBalancesError: PalletBalancesError;
838 PalletBalancesEvent: PalletBalancesEvent;842 PalletBalancesEvent: PalletBalancesEvent;
843 PalletBalancesIdAmount: PalletBalancesIdAmount;
839 PalletBalancesReasons: PalletBalancesReasons;844 PalletBalancesReasons: PalletBalancesReasons;
840 PalletBalancesReserveData: PalletBalancesReserveData;845 PalletBalancesReserveData: PalletBalancesReserveData;
841 PalletCallMetadataLatest: PalletCallMetadataLatest;846 PalletCallMetadataLatest: PalletCallMetadataLatest;
895 PalletMaintenanceEvent: PalletMaintenanceEvent;900 PalletMaintenanceEvent: PalletMaintenanceEvent;
896 PalletMetadataLatest: PalletMetadataLatest;901 PalletMetadataLatest: PalletMetadataLatest;
897 PalletMetadataV14: PalletMetadataV14;902 PalletMetadataV14: PalletMetadataV14;
903 PalletMetadataV15: PalletMetadataV15;
898 PalletNonfungibleError: PalletNonfungibleError;904 PalletNonfungibleError: PalletNonfungibleError;
899 PalletNonfungibleItemData: PalletNonfungibleItemData;905 PalletNonfungibleItemData: PalletNonfungibleItemData;
900 PalletPreimageCall: PalletPreimageCall;906 PalletPreimageCall: PalletPreimageCall;
914 PalletSudoCall: PalletSudoCall;920 PalletSudoCall: PalletSudoCall;
915 PalletSudoError: PalletSudoError;921 PalletSudoError: PalletSudoError;
916 PalletSudoEvent: PalletSudoEvent;922 PalletSudoEvent: PalletSudoEvent;
917 PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;
918 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;923 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;
919 PalletTestUtilsCall: PalletTestUtilsCall;924 PalletTestUtilsCall: PalletTestUtilsCall;
920 PalletTestUtilsError: PalletTestUtilsError;925 PalletTestUtilsError: PalletTestUtilsError;
983 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;988 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
984 PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;989 PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;
985 PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;990 PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;
986 PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;991 PolkadotPrimitivesV4AbridgedHostConfiguration: PolkadotPrimitivesV4AbridgedHostConfiguration;
987 PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;992 PolkadotPrimitivesV4AbridgedHrmpChannel: PolkadotPrimitivesV4AbridgedHrmpChannel;
988 PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;993 PolkadotPrimitivesV4PersistedValidationData: PolkadotPrimitivesV4PersistedValidationData;
989 PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;994 PolkadotPrimitivesV4UpgradeRestriction: PolkadotPrimitivesV4UpgradeRestriction;
990 PortableType: PortableType;995 PortableType: PortableType;
991 PortableTypeV14: PortableTypeV14;996 PortableTypeV14: PortableTypeV14;
992 Precommits: Precommits;997 Precommits: Precommits;
1073 RoundSnapshot: RoundSnapshot;1078 RoundSnapshot: RoundSnapshot;
1074 RoundState: RoundState;1079 RoundState: RoundState;
1075 RpcMethods: RpcMethods;1080 RpcMethods: RpcMethods;
1081 RuntimeApiMetadataLatest: RuntimeApiMetadataLatest;
1082 RuntimeApiMetadataV15: RuntimeApiMetadataV15;
1083 RuntimeApiMethodMetadataV15: RuntimeApiMethodMetadataV15;
1084 RuntimeApiMethodParamMetadataV15: RuntimeApiMethodParamMetadataV15;
1076 RuntimeCall: RuntimeCall;1085 RuntimeCall: RuntimeCall;
1077 RuntimeDbWeight: RuntimeDbWeight;1086 RuntimeDbWeight: RuntimeDbWeight;
1078 RuntimeDispatchInfo: RuntimeDispatchInfo;1087 RuntimeDispatchInfo: RuntimeDispatchInfo;
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
88 readonly isAuthorizeUpgrade: boolean;88 readonly isAuthorizeUpgrade: boolean;
89 readonly asAuthorizeUpgrade: {89 readonly asAuthorizeUpgrade: {
90 readonly codeHash: H256;90 readonly codeHash: H256;
91 readonly checkVersion: bool;
91 } & Struct;92 } & Struct;
92 readonly isEnactAuthorizedUpgrade: boolean;93 readonly isEnactAuthorizedUpgrade: boolean;
93 readonly asEnactAuthorizedUpgrade: {94 readonly asEnactAuthorizedUpgrade: {
96 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';97 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
97}98}
99
100/** @name CumulusPalletParachainSystemCodeUpgradeAuthorization */
101export interface CumulusPalletParachainSystemCodeUpgradeAuthorization extends Struct {
102 readonly codeHash: H256;
103 readonly checkVersion: bool;
104}
98105
99/** @name CumulusPalletParachainSystemError */106/** @name CumulusPalletParachainSystemError */
100export interface CumulusPalletParachainSystemError extends Enum {107export interface CumulusPalletParachainSystemError extends Enum {
141export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {148export interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
142 readonly dmqMqcHead: H256;149 readonly dmqMqcHead: H256;
143 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;150 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
144 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;151 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV4AbridgedHrmpChannel]>>;
145 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;152 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV4AbridgedHrmpChannel]>>;
146}153}
147154
148/** @name CumulusPalletXcmCall */155/** @name CumulusPalletXcmCall */
290297
291/** @name CumulusPrimitivesParachainInherentParachainInherentData */298/** @name CumulusPrimitivesParachainInherentParachainInherentData */
292export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {299export interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
293 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;300 readonly validationData: PolkadotPrimitivesV4PersistedValidationData;
294 readonly relayChainState: SpTrieStorageProof;301 readonly relayChainState: SpTrieStorageProof;
295 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;302 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;
296 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;303 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
1087export interface PalletBalancesAccountData extends Struct {1094export interface PalletBalancesAccountData extends Struct {
1088 readonly free: u128;1095 readonly free: u128;
1089 readonly reserved: u128;1096 readonly reserved: u128;
1090 readonly miscFrozen: u128;1097 readonly frozen: u128;
1091 readonly feeFrozen: u128;1098 readonly flags: u128;
1092}1099}
10931100
1094/** @name PalletBalancesBalanceLock */1101/** @name PalletBalancesBalanceLock */
11001107
1101/** @name PalletBalancesCall */1108/** @name PalletBalancesCall */
1102export interface PalletBalancesCall extends Enum {1109export interface PalletBalancesCall extends Enum {
1103 readonly isTransfer: boolean;1110 readonly isTransferAllowDeath: boolean;
1104 readonly asTransfer: {1111 readonly asTransferAllowDeath: {
1105 readonly dest: MultiAddress;1112 readonly dest: MultiAddress;
1106 readonly value: Compact<u128>;1113 readonly value: Compact<u128>;
1107 } & Struct;1114 } & Struct;
1108 readonly isSetBalance: boolean;1115 readonly isSetBalanceDeprecated: boolean;
1109 readonly asSetBalance: {1116 readonly asSetBalanceDeprecated: {
1110 readonly who: MultiAddress;1117 readonly who: MultiAddress;
1111 readonly newFree: Compact<u128>;1118 readonly newFree: Compact<u128>;
1112 readonly newReserved: Compact<u128>;1119 readonly oldReserved: Compact<u128>;
1113 } & Struct;1120 } & Struct;
1114 readonly isForceTransfer: boolean;1121 readonly isForceTransfer: boolean;
1115 readonly asForceTransfer: {1122 readonly asForceTransfer: {
1132 readonly who: MultiAddress;1139 readonly who: MultiAddress;
1133 readonly amount: u128;1140 readonly amount: u128;
1134 } & Struct;1141 } & Struct;
1142 readonly isUpgradeAccounts: boolean;
1143 readonly asUpgradeAccounts: {
1144 readonly who: Vec<AccountId32>;
1145 } & Struct;
1146 readonly isTransfer: boolean;
1147 readonly asTransfer: {
1148 readonly dest: MultiAddress;
1149 readonly value: Compact<u128>;
1150 } & Struct;
1151 readonly isForceSetBalance: boolean;
1152 readonly asForceSetBalance: {
1153 readonly who: MultiAddress;
1154 readonly newFree: Compact<u128>;
1155 } & Struct;
1135 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1156 readonly type: 'TransferAllowDeath' | 'SetBalanceDeprecated' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'Transfer' | 'ForceSetBalance';
1136}1157}
11371158
1138/** @name PalletBalancesError */1159/** @name PalletBalancesError */
1141 readonly isLiquidityRestrictions: boolean;1162 readonly isLiquidityRestrictions: boolean;
1142 readonly isInsufficientBalance: boolean;1163 readonly isInsufficientBalance: boolean;
1143 readonly isExistentialDeposit: boolean;1164 readonly isExistentialDeposit: boolean;
1144 readonly isKeepAlive: boolean;1165 readonly isExpendability: boolean;
1145 readonly isExistingVestingSchedule: boolean;1166 readonly isExistingVestingSchedule: boolean;
1146 readonly isDeadAccount: boolean;1167 readonly isDeadAccount: boolean;
1147 readonly isTooManyReserves: boolean;1168 readonly isTooManyReserves: boolean;
1169 readonly isTooManyHolds: boolean;
1170 readonly isTooManyFreezes: boolean;
1148 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1171 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes';
1149}1172}
11501173
1151/** @name PalletBalancesEvent */1174/** @name PalletBalancesEvent */
1170 readonly asBalanceSet: {1193 readonly asBalanceSet: {
1171 readonly who: AccountId32;1194 readonly who: AccountId32;
1172 readonly free: u128;1195 readonly free: u128;
1173 readonly reserved: u128;
1174 } & Struct;1196 } & Struct;
1175 readonly isReserved: boolean;1197 readonly isReserved: boolean;
1176 readonly asReserved: {1198 readonly asReserved: {
1204 readonly who: AccountId32;1226 readonly who: AccountId32;
1205 readonly amount: u128;1227 readonly amount: u128;
1206 } & Struct;1228 } & Struct;
1229 readonly isMinted: boolean;
1230 readonly asMinted: {
1231 readonly who: AccountId32;
1232 readonly amount: u128;
1233 } & Struct;
1234 readonly isBurned: boolean;
1235 readonly asBurned: {
1236 readonly who: AccountId32;
1237 readonly amount: u128;
1238 } & Struct;
1239 readonly isSuspended: boolean;
1240 readonly asSuspended: {
1241 readonly who: AccountId32;
1242 readonly amount: u128;
1243 } & Struct;
1244 readonly isRestored: boolean;
1245 readonly asRestored: {
1246 readonly who: AccountId32;
1247 readonly amount: u128;
1248 } & Struct;
1249 readonly isUpgraded: boolean;
1250 readonly asUpgraded: {
1251 readonly who: AccountId32;
1252 } & Struct;
1253 readonly isIssued: boolean;
1254 readonly asIssued: {
1255 readonly amount: u128;
1256 } & Struct;
1257 readonly isRescinded: boolean;
1258 readonly asRescinded: {
1259 readonly amount: u128;
1260 } & Struct;
1261 readonly isLocked: boolean;
1262 readonly asLocked: {
1263 readonly who: AccountId32;
1264 readonly amount: u128;
1265 } & Struct;
1266 readonly isUnlocked: boolean;
1267 readonly asUnlocked: {
1268 readonly who: AccountId32;
1269 readonly amount: u128;
1270 } & Struct;
1271 readonly isFrozen: boolean;
1272 readonly asFrozen: {
1273 readonly who: AccountId32;
1274 readonly amount: u128;
1275 } & Struct;
1276 readonly isThawed: boolean;
1277 readonly asThawed: {
1278 readonly who: AccountId32;
1279 readonly amount: u128;
1280 } & Struct;
1207 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';1281 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed';
1208}1282}
1283
1284/** @name PalletBalancesIdAmount */
1285export interface PalletBalancesIdAmount extends Struct {
1286 readonly id: U8aFixed;
1287 readonly amount: u128;
1288}
12091289
1210/** @name PalletBalancesReasons */1290/** @name PalletBalancesReasons */
1211export interface PalletBalancesReasons extends Enum {1291export interface PalletBalancesReasons extends Enum {
1466 readonly to: H160;1546 readonly to: H160;
1467 readonly transactionHash: H256;1547 readonly transactionHash: H256;
1468 readonly exitReason: EvmCoreErrorExitReason;1548 readonly exitReason: EvmCoreErrorExitReason;
1549 readonly extraData: Bytes;
1469 } & Struct;1550 } & Struct;
1470 readonly type: 'Executed';1551 readonly type: 'Executed';
1471}1552}
2200 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';2281 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
2201}2282}
2202
2203/** @name PalletTemplateTransactionPaymentCall */
2204export interface PalletTemplateTransactionPaymentCall extends Null {}
22052283
2206/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */2284/** @name PalletTemplateTransactionPaymentChargeTransactionPayment */
2207export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}2285export interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
2608 readonly feeAssetItem: u32;2686 readonly feeAssetItem: u32;
2609 readonly weightLimit: XcmV3WeightLimit;2687 readonly weightLimit: XcmV3WeightLimit;
2610 } & Struct;2688 } & Struct;
2689 readonly isForceSuspension: boolean;
2690 readonly asForceSuspension: {
2691 readonly suspended: bool;
2692 } & Struct;
2611 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2693 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets' | 'ForceSuspension';
2612}2694}
26132695
2614/** @name PalletXcmError */2696/** @name PalletXcmError */
2759 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';2841 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
2760}2842}
27612843
2762/** @name PolkadotPrimitivesV2AbridgedHostConfiguration */2844/** @name PolkadotPrimitivesV4AbridgedHostConfiguration */
2763export interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {2845export interface PolkadotPrimitivesV4AbridgedHostConfiguration extends Struct {
2764 readonly maxCodeSize: u32;2846 readonly maxCodeSize: u32;
2765 readonly maxHeadDataSize: u32;2847 readonly maxHeadDataSize: u32;
2766 readonly maxUpwardQueueCount: u32;2848 readonly maxUpwardQueueCount: u32;
2772 readonly validationUpgradeDelay: u32;2854 readonly validationUpgradeDelay: u32;
2773}2855}
27742856
2775/** @name PolkadotPrimitivesV2AbridgedHrmpChannel */2857/** @name PolkadotPrimitivesV4AbridgedHrmpChannel */
2776export interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {2858export interface PolkadotPrimitivesV4AbridgedHrmpChannel extends Struct {
2777 readonly maxCapacity: u32;2859 readonly maxCapacity: u32;
2778 readonly maxTotalSize: u32;2860 readonly maxTotalSize: u32;
2779 readonly maxMessageSize: u32;2861 readonly maxMessageSize: u32;
2782 readonly mqcHead: Option<H256>;2864 readonly mqcHead: Option<H256>;
2783}2865}
27842866
2785/** @name PolkadotPrimitivesV2PersistedValidationData */2867/** @name PolkadotPrimitivesV4PersistedValidationData */
2786export interface PolkadotPrimitivesV2PersistedValidationData extends Struct {2868export interface PolkadotPrimitivesV4PersistedValidationData extends Struct {
2787 readonly parentHead: Bytes;2869 readonly parentHead: Bytes;
2788 readonly relayParentNumber: u32;2870 readonly relayParentNumber: u32;
2789 readonly relayParentStorageRoot: H256;2871 readonly relayParentStorageRoot: H256;
2790 readonly maxPovSize: u32;2872 readonly maxPovSize: u32;
2791}2873}
27922874
2793/** @name PolkadotPrimitivesV2UpgradeRestriction */2875/** @name PolkadotPrimitivesV4UpgradeRestriction */
2794export interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {2876export interface PolkadotPrimitivesV4UpgradeRestriction extends Enum {
2795 readonly isPresent: boolean;2877 readonly isPresent: boolean;
2796 readonly type: 'Present';2878 readonly type: 'Present';
2797}2879}
28822964
2883/** @name SpRuntimeTokenError */2965/** @name SpRuntimeTokenError */
2884export interface SpRuntimeTokenError extends Enum {2966export interface SpRuntimeTokenError extends Enum {
2885 readonly isNoFunds: boolean;2967 readonly isFundsUnavailable: boolean;
2886 readonly isWouldDie: boolean;2968 readonly isOnlyProvider: boolean;
2887 readonly isBelowMinimum: boolean;2969 readonly isBelowMinimum: boolean;
2888 readonly isCannotCreate: boolean;2970 readonly isCannotCreate: boolean;
2889 readonly isUnknownAsset: boolean;2971 readonly isUnknownAsset: boolean;
2890 readonly isFrozen: boolean;2972 readonly isFrozen: boolean;
2891 readonly isUnsupported: boolean;2973 readonly isUnsupported: boolean;
2974 readonly isCannotCreateHold: boolean;
2975 readonly isNotExpendable: boolean;
2892 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';2976 readonly type: 'FundsUnavailable' | 'OnlyProvider' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported' | 'CannotCreateHold' | 'NotExpendable';
2893}2977}
28942978
2895/** @name SpRuntimeTransactionalError */2979/** @name SpRuntimeTransactionalError */
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
4/* eslint-disable sort-keys */4/* eslint-disable sort-keys */
55
6export default {6export default {
7 /**7 /**
8 * Lookup3: frame_system::AccountInfo<Index, pallet_balances::AccountData<Balance>>8 * Lookup3: frame_system::AccountInfo<Index, pallet_balances::types::AccountData<Balance>>
9 **/9 **/
10 FrameSystemAccountInfo: {10 FrameSystemAccountInfo: {
11 nonce: 'u32',11 nonce: 'u32',
12 consumers: 'u32',12 consumers: 'u32',
13 providers: 'u32',13 providers: 'u32',
14 sufficients: 'u32',14 sufficients: 'u32',
15 data: 'PalletBalancesAccountData'15 data: 'PalletBalancesAccountData'
16 },16 },
17 /**17 /**
18 * Lookup5: pallet_balances::AccountData<Balance>18 * Lookup5: pallet_balances::types::AccountData<Balance>
19 **/19 **/
20 PalletBalancesAccountData: {20 PalletBalancesAccountData: {
21 free: 'u128',21 free: 'u128',
22 reserved: 'u128',22 reserved: 'u128',
23 miscFrozen: 'u128',23 frozen: 'u128',
24 feeFrozen: 'u128'24 flags: 'u128'
25 },25 },
26 /**26 /**
27 * Lookup7: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>27 * Lookup8: frame_support::dispatch::PerDispatchClass<sp_weights::weight_v2::Weight>
28 **/28 **/
29 FrameSupportDispatchPerDispatchClassWeight: {29 FrameSupportDispatchPerDispatchClassWeight: {
30 normal: 'SpWeightsWeightV2Weight',30 normal: 'SpWeightsWeightV2Weight',
31 operational: 'SpWeightsWeightV2Weight',31 operational: 'SpWeightsWeightV2Weight',
32 mandatory: 'SpWeightsWeightV2Weight'32 mandatory: 'SpWeightsWeightV2Weight'
33 },33 },
34 /**34 /**
35 * Lookup8: sp_weights::weight_v2::Weight35 * Lookup9: sp_weights::weight_v2::Weight
36 **/36 **/
37 SpWeightsWeightV2Weight: {37 SpWeightsWeightV2Weight: {
38 refTime: 'Compact<u64>',38 refTime: 'Compact<u64>',
39 proofSize: 'Compact<u64>'39 proofSize: 'Compact<u64>'
40 },40 },
41 /**41 /**
42 * Lookup13: sp_runtime::generic::digest::Digest42 * Lookup14: sp_runtime::generic::digest::Digest
43 **/43 **/
44 SpRuntimeDigest: {44 SpRuntimeDigest: {
45 logs: 'Vec<SpRuntimeDigestDigestItem>'45 logs: 'Vec<SpRuntimeDigestDigestItem>'
46 },46 },
47 /**47 /**
48 * Lookup15: sp_runtime::generic::digest::DigestItem48 * Lookup16: sp_runtime::generic::digest::DigestItem
49 **/49 **/
50 SpRuntimeDigestDigestItem: {50 SpRuntimeDigestDigestItem: {
51 _enum: {51 _enum: {
52 Other: 'Bytes',52 Other: 'Bytes',
60 RuntimeEnvironmentUpdated: 'Null'60 RuntimeEnvironmentUpdated: 'Null'
61 }61 }
62 },62 },
63 /**63 /**
64 * Lookup18: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>64 * Lookup19: frame_system::EventRecord<opal_runtime::RuntimeEvent, primitive_types::H256>
65 **/65 **/
66 FrameSystemEventRecord: {66 FrameSystemEventRecord: {
67 phase: 'FrameSystemPhase',67 phase: 'FrameSystemPhase',
68 event: 'Event',68 event: 'Event',
69 topics: 'Vec<H256>'69 topics: 'Vec<H256>'
70 },70 },
71 /**71 /**
72 * Lookup20: frame_system::pallet::Event<T>72 * Lookup21: frame_system::pallet::Event<T>
73 **/73 **/
74 FrameSystemEvent: {74 FrameSystemEvent: {
75 _enum: {75 _enum: {
76 ExtrinsicSuccess: {76 ExtrinsicSuccess: {
96 }96 }
97 }97 }
98 },98 },
99 /**99 /**
100 * Lookup21: frame_support::dispatch::DispatchInfo100 * Lookup22: frame_support::dispatch::DispatchInfo
101 **/101 **/
102 FrameSupportDispatchDispatchInfo: {102 FrameSupportDispatchDispatchInfo: {
103 weight: 'SpWeightsWeightV2Weight',103 weight: 'SpWeightsWeightV2Weight',
104 class: 'FrameSupportDispatchDispatchClass',104 class: 'FrameSupportDispatchDispatchClass',
105 paysFee: 'FrameSupportDispatchPays'105 paysFee: 'FrameSupportDispatchPays'
106 },106 },
107 /**107 /**
108 * Lookup22: frame_support::dispatch::DispatchClass108 * Lookup23: frame_support::dispatch::DispatchClass
109 **/109 **/
110 FrameSupportDispatchDispatchClass: {110 FrameSupportDispatchDispatchClass: {
111 _enum: ['Normal', 'Operational', 'Mandatory']111 _enum: ['Normal', 'Operational', 'Mandatory']
112 },112 },
113 /**113 /**
114 * Lookup23: frame_support::dispatch::Pays114 * Lookup24: frame_support::dispatch::Pays
115 **/115 **/
116 FrameSupportDispatchPays: {116 FrameSupportDispatchPays: {
117 _enum: ['Yes', 'No']117 _enum: ['Yes', 'No']
118 },118 },
119 /**119 /**
120 * Lookup24: sp_runtime::DispatchError120 * Lookup25: sp_runtime::DispatchError
121 **/121 **/
122 SpRuntimeDispatchError: {122 SpRuntimeDispatchError: {
123 _enum: {123 _enum: {
124 Other: 'Null',124 Other: 'Null',
136 Unavailable: 'Null'136 Unavailable: 'Null'
137 }137 }
138 },138 },
139 /**139 /**
140 * Lookup25: sp_runtime::ModuleError140 * Lookup26: sp_runtime::ModuleError
141 **/141 **/
142 SpRuntimeModuleError: {142 SpRuntimeModuleError: {
143 index: 'u8',143 index: 'u8',
144 error: '[u8;4]'144 error: '[u8;4]'
145 },145 },
146 /**146 /**
147 * Lookup26: sp_runtime::TokenError147 * Lookup27: sp_runtime::TokenError
148 **/148 **/
149 SpRuntimeTokenError: {149 SpRuntimeTokenError: {
150 _enum: ['NoFunds', 'WouldDie', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported']150 _enum: ['FundsUnavailable', 'OnlyProvider', 'BelowMinimum', 'CannotCreate', 'UnknownAsset', 'Frozen', 'Unsupported', 'CannotCreateHold', 'NotExpendable']
151 },151 },
152 /**152 /**
153 * Lookup27: sp_arithmetic::ArithmeticError153 * Lookup28: sp_arithmetic::ArithmeticError
154 **/154 **/
155 SpArithmeticArithmeticError: {155 SpArithmeticArithmeticError: {
156 _enum: ['Underflow', 'Overflow', 'DivisionByZero']156 _enum: ['Underflow', 'Overflow', 'DivisionByZero']
157 },157 },
158 /**158 /**
159 * Lookup28: sp_runtime::TransactionalError159 * Lookup29: sp_runtime::TransactionalError
160 **/160 **/
161 SpRuntimeTransactionalError: {161 SpRuntimeTransactionalError: {
162 _enum: ['LimitReached', 'NoLayer']162 _enum: ['LimitReached', 'NoLayer']
163 },163 },
164 /**164 /**
165 * Lookup29: cumulus_pallet_parachain_system::pallet::Event<T>165 * Lookup30: cumulus_pallet_parachain_system::pallet::Event<T>
166 **/166 **/
167 CumulusPalletParachainSystemEvent: {167 CumulusPalletParachainSystemEvent: {
168 _enum: {168 _enum: {
169 ValidationFunctionStored: 'Null',169 ValidationFunctionStored: 'Null',
186 }186 }
187 }187 }
188 },188 },
189 /**189 /**
190 * Lookup31: pallet_collator_selection::pallet::Event<T>190 * Lookup32: pallet_collator_selection::pallet::Event<T>
191 **/191 **/
192 PalletCollatorSelectionEvent: {192 PalletCollatorSelectionEvent: {
193 _enum: {193 _enum: {
194 InvulnerableAdded: {194 InvulnerableAdded: {
213 }213 }
214 }214 }
215 },215 },
216 /**216 /**
217 * Lookup32: pallet_session::pallet::Event217 * Lookup33: pallet_session::pallet::Event
218 **/218 **/
219 PalletSessionEvent: {219 PalletSessionEvent: {
220 _enum: {220 _enum: {
221 NewSession: {221 NewSession: {
222 sessionIndex: 'u32'222 sessionIndex: 'u32'
223 }223 }
224 }224 }
225 },225 },
226 /**226 /**
227 * Lookup33: pallet_balances::pallet::Event<T, I>227 * Lookup34: pallet_balances::pallet::Event<T, I>
228 **/228 **/
229 PalletBalancesEvent: {229 PalletBalancesEvent: {
230 _enum: {230 _enum: {
231 Endowed: {231 Endowed: {
244 BalanceSet: {244 BalanceSet: {
245 who: 'AccountId32',245 who: 'AccountId32',
246 free: 'u128',246 free: 'u128',
247 reserved: 'u128',
248 },247 },
249 Reserved: {248 Reserved: {
250 who: 'AccountId32',249 who: 'AccountId32',
271 Slashed: {270 Slashed: {
272 who: 'AccountId32',271 who: 'AccountId32',
273 amount: 'u128'272 amount: 'u128',
274 }273 },
274 Minted: {
275 who: 'AccountId32',
276 amount: 'u128',
277 },
278 Burned: {
279 who: 'AccountId32',
280 amount: 'u128',
281 },
282 Suspended: {
283 who: 'AccountId32',
284 amount: 'u128',
285 },
286 Restored: {
287 who: 'AccountId32',
288 amount: 'u128',
289 },
290 Upgraded: {
291 who: 'AccountId32',
292 },
293 Issued: {
294 amount: 'u128',
295 },
296 Rescinded: {
297 amount: 'u128',
298 },
299 Locked: {
300 who: 'AccountId32',
301 amount: 'u128',
302 },
303 Unlocked: {
304 who: 'AccountId32',
305 amount: 'u128',
306 },
307 Frozen: {
308 who: 'AccountId32',
309 amount: 'u128',
310 },
311 Thawed: {
312 who: 'AccountId32',
313 amount: 'u128'
314 }
275 }315 }
276 },316 },
277 /**317 /**
278 * Lookup34: frame_support::traits::tokens::misc::BalanceStatus318 * Lookup35: frame_support::traits::tokens::misc::BalanceStatus
279 **/319 **/
280 FrameSupportTokensMiscBalanceStatus: {320 FrameSupportTokensMiscBalanceStatus: {
281 _enum: ['Free', 'Reserved']321 _enum: ['Free', 'Reserved']
282 },322 },
283 /**323 /**
284 * Lookup35: pallet_transaction_payment::pallet::Event<T>324 * Lookup36: pallet_transaction_payment::pallet::Event<T>
285 **/325 **/
286 PalletTransactionPaymentEvent: {326 PalletTransactionPaymentEvent: {
287 _enum: {327 _enum: {
288 TransactionFeePaid: {328 TransactionFeePaid: {
292 }332 }
293 }333 }
294 },334 },
295 /**335 /**
296 * Lookup36: pallet_treasury::pallet::Event<T, I>336 * Lookup37: pallet_treasury::pallet::Event<T, I>
297 **/337 **/
298 PalletTreasuryEvent: {338 PalletTreasuryEvent: {
299 _enum: {339 _enum: {
300 Proposed: {340 Proposed: {
332 }372 }
333 }373 }
334 },374 },
335 /**375 /**
336 * Lookup37: pallet_sudo::pallet::Event<T>376 * Lookup38: pallet_sudo::pallet::Event<T>
337 **/377 **/
338 PalletSudoEvent: {378 PalletSudoEvent: {
339 _enum: {379 _enum: {
340 Sudid: {380 Sudid: {
348 }388 }
349 }389 }
350 },390 },
351 /**391 /**
352 * Lookup41: orml_vesting::module::Event<T>392 * Lookup42: orml_vesting::module::Event<T>
353 **/393 **/
354 OrmlVestingModuleEvent: {394 OrmlVestingModuleEvent: {
355 _enum: {395 _enum: {
356 VestingScheduleAdded: {396 VestingScheduleAdded: {
367 }407 }
368 }408 }
369 },409 },
370 /**410 /**
371 * Lookup42: orml_vesting::VestingSchedule<BlockNumber, Balance>411 * Lookup43: orml_vesting::VestingSchedule<BlockNumber, Balance>
372 **/412 **/
373 OrmlVestingVestingSchedule: {413 OrmlVestingVestingSchedule: {
374 start: 'u32',414 start: 'u32',
375 period: 'u32',415 period: 'u32',
376 periodCount: 'u32',416 periodCount: 'u32',
377 perPeriod: 'Compact<u128>'417 perPeriod: 'Compact<u128>'
378 },418 },
379 /**419 /**
380 * Lookup44: orml_xtokens::module::Event<T>420 * Lookup45: orml_xtokens::module::Event<T>
381 **/421 **/
382 OrmlXtokensModuleEvent: {422 OrmlXtokensModuleEvent: {
383 _enum: {423 _enum: {
384 TransferredMultiAssets: {424 TransferredMultiAssets: {
389 }429 }
390 }430 }
391 },431 },
392 /**432 /**
393 * Lookup45: xcm::v3::multiasset::MultiAssets433 * Lookup46: xcm::v3::multiasset::MultiAssets
394 **/434 **/
395 XcmV3MultiassetMultiAssets: 'Vec<XcmV3MultiAsset>',435 XcmV3MultiassetMultiAssets: 'Vec<XcmV3MultiAsset>',
396 /**436 /**
397 * Lookup47: xcm::v3::multiasset::MultiAsset437 * Lookup48: xcm::v3::multiasset::MultiAsset
398 **/438 **/
399 XcmV3MultiAsset: {439 XcmV3MultiAsset: {
400 id: 'XcmV3MultiassetAssetId',440 id: 'XcmV3MultiassetAssetId',
401 fun: 'XcmV3MultiassetFungibility'441 fun: 'XcmV3MultiassetFungibility'
402 },442 },
403 /**443 /**
404 * Lookup48: xcm::v3::multiasset::AssetId444 * Lookup49: xcm::v3::multiasset::AssetId
405 **/445 **/
406 XcmV3MultiassetAssetId: {446 XcmV3MultiassetAssetId: {
407 _enum: {447 _enum: {
408 Concrete: 'XcmV3MultiLocation',448 Concrete: 'XcmV3MultiLocation',
409 Abstract: '[u8;32]'449 Abstract: '[u8;32]'
410 }450 }
411 },451 },
412 /**452 /**
413 * Lookup49: xcm::v3::multilocation::MultiLocation453 * Lookup50: xcm::v3::multilocation::MultiLocation
414 **/454 **/
415 XcmV3MultiLocation: {455 XcmV3MultiLocation: {
416 parents: 'u8',456 parents: 'u8',
417 interior: 'XcmV3Junctions'457 interior: 'XcmV3Junctions'
418 },458 },
419 /**459 /**
420 * Lookup50: xcm::v3::junctions::Junctions460 * Lookup51: xcm::v3::junctions::Junctions
421 **/461 **/
422 XcmV3Junctions: {462 XcmV3Junctions: {
423 _enum: {463 _enum: {
424 Here: 'Null',464 Here: 'Null',
432 X8: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)'472 X8: '(XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction,XcmV3Junction)'
433 }473 }
434 },474 },
435 /**475 /**
436 * Lookup51: xcm::v3::junction::Junction476 * Lookup52: xcm::v3::junction::Junction
437 **/477 **/
438 XcmV3Junction: {478 XcmV3Junction: {
439 _enum: {479 _enum: {
440 Parachain: 'Compact<u32>',480 Parachain: 'Compact<u32>',
464 GlobalConsensus: 'XcmV3JunctionNetworkId'504 GlobalConsensus: 'XcmV3JunctionNetworkId'
465 }505 }
466 },506 },
467 /**507 /**
468 * Lookup54: xcm::v3::junction::NetworkId508 * Lookup55: xcm::v3::junction::NetworkId
469 **/509 **/
470 XcmV3JunctionNetworkId: {510 XcmV3JunctionNetworkId: {
471 _enum: {511 _enum: {
472 ByGenesis: '[u8;32]',512 ByGenesis: '[u8;32]',
486 BitcoinCash: 'Null'526 BitcoinCash: 'Null'
487 }527 }
488 },528 },
489 /**529 /**
490 * Lookup56: xcm::v3::junction::BodyId530 * Lookup57: xcm::v3::junction::BodyId
491 **/531 **/
492 XcmV3JunctionBodyId: {532 XcmV3JunctionBodyId: {
493 _enum: {533 _enum: {
494 Unit: 'Null',534 Unit: 'Null',
503 Treasury: 'Null'543 Treasury: 'Null'
504 }544 }
505 },545 },
506 /**546 /**
507 * Lookup57: xcm::v3::junction::BodyPart547 * Lookup58: xcm::v3::junction::BodyPart
508 **/548 **/
509 XcmV3JunctionBodyPart: {549 XcmV3JunctionBodyPart: {
510 _enum: {550 _enum: {
511 Voice: 'Null',551 Voice: 'Null',
526 }566 }
527 }567 }
528 },568 },
529 /**569 /**
530 * Lookup58: xcm::v3::multiasset::Fungibility570 * Lookup59: xcm::v3::multiasset::Fungibility
531 **/571 **/
532 XcmV3MultiassetFungibility: {572 XcmV3MultiassetFungibility: {
533 _enum: {573 _enum: {
534 Fungible: 'Compact<u128>',574 Fungible: 'Compact<u128>',
535 NonFungible: 'XcmV3MultiassetAssetInstance'575 NonFungible: 'XcmV3MultiassetAssetInstance'
536 }576 }
537 },577 },
538 /**578 /**
539 * Lookup59: xcm::v3::multiasset::AssetInstance579 * Lookup60: xcm::v3::multiasset::AssetInstance
540 **/580 **/
541 XcmV3MultiassetAssetInstance: {581 XcmV3MultiassetAssetInstance: {
542 _enum: {582 _enum: {
543 Undefined: 'Null',583 Undefined: 'Null',
548 Array32: '[u8;32]'588 Array32: '[u8;32]'
549 }589 }
550 },590 },
551 /**591 /**
552 * Lookup62: orml_tokens::module::Event<T>592 * Lookup63: orml_tokens::module::Event<T>
553 **/593 **/
554 OrmlTokensModuleEvent: {594 OrmlTokensModuleEvent: {
555 _enum: {595 _enum: {
556 Endowed: {596 Endowed: {
635 }675 }
636 }676 }
637 },677 },
638 /**678 /**
639 * Lookup63: pallet_foreign_assets::AssetIds679 * Lookup64: pallet_foreign_assets::AssetIds
640 **/680 **/
641 PalletForeignAssetsAssetIds: {681 PalletForeignAssetsAssetIds: {
642 _enum: {682 _enum: {
643 ForeignAssetId: 'u32',683 ForeignAssetId: 'u32',
644 NativeAssetId: 'PalletForeignAssetsNativeCurrency'684 NativeAssetId: 'PalletForeignAssetsNativeCurrency'
645 }685 }
646 },686 },
647 /**687 /**
648 * Lookup64: pallet_foreign_assets::NativeCurrency688 * Lookup65: pallet_foreign_assets::NativeCurrency
649 **/689 **/
650 PalletForeignAssetsNativeCurrency: {690 PalletForeignAssetsNativeCurrency: {
651 _enum: ['Here', 'Parent']691 _enum: ['Here', 'Parent']
652 },692 },
653 /**693 /**
654 * Lookup65: pallet_identity::pallet::Event<T>694 * Lookup66: pallet_identity::pallet::Event<T>
655 **/695 **/
656 PalletIdentityEvent: {696 PalletIdentityEvent: {
657 _enum: {697 _enum: {
658 IdentitySet: {698 IdentitySet: {
707 }747 }
708 }748 }
709 },749 },
710 /**750 /**
711 * Lookup66: pallet_preimage::pallet::Event<T>751 * Lookup67: pallet_preimage::pallet::Event<T>
712 **/752 **/
713 PalletPreimageEvent: {753 PalletPreimageEvent: {
714 _enum: {754 _enum: {
715 Noted: {755 Noted: {
732 }772 }
733 }773 }
734 },774 },
735 /**775 /**
736 * Lookup67: cumulus_pallet_xcmp_queue::pallet::Event<T>776 * Lookup68: cumulus_pallet_xcmp_queue::pallet::Event<T>
737 **/777 **/
738 CumulusPalletXcmpQueueEvent: {778 CumulusPalletXcmpQueueEvent: {
739 _enum: {779 _enum: {
740 Success: {780 Success: {
767 }807 }
768 }808 }
769 },809 },
770 /**810 /**
771 * Lookup68: xcm::v3::traits::Error811 * Lookup69: xcm::v3::traits::Error
772 **/812 **/
773 XcmV3TraitsError: {813 XcmV3TraitsError: {
774 _enum: {814 _enum: {
775 Overflow: 'Null',815 Overflow: 'Null',
814 ExceedsStackLimit: 'Null'854 ExceedsStackLimit: 'Null'
815 }855 }
816 },856 },
817 /**857 /**
818 * Lookup70: pallet_xcm::pallet::Event<T>858 * Lookup71: pallet_xcm::pallet::Event<T>
819 **/859 **/
820 PalletXcmEvent: {860 PalletXcmEvent: {
821 _enum: {861 _enum: {
822 Attempted: 'XcmV3TraitsOutcome',862 Attempted: 'XcmV3TraitsOutcome',
844 AssetsClaimed: '(H256,XcmV3MultiLocation,XcmVersionedMultiAssets)'884 AssetsClaimed: '(H256,XcmV3MultiLocation,XcmVersionedMultiAssets)'
845 }885 }
846 },886 },
847 /**887 /**
848 * Lookup71: xcm::v3::traits::Outcome888 * Lookup72: xcm::v3::traits::Outcome
849 **/889 **/
850 XcmV3TraitsOutcome: {890 XcmV3TraitsOutcome: {
851 _enum: {891 _enum: {
852 Complete: 'SpWeightsWeightV2Weight',892 Complete: 'SpWeightsWeightV2Weight',
853 Incomplete: '(SpWeightsWeightV2Weight,XcmV3TraitsError)',893 Incomplete: '(SpWeightsWeightV2Weight,XcmV3TraitsError)',
854 Error: 'XcmV3TraitsError'894 Error: 'XcmV3TraitsError'
855 }895 }
856 },896 },
857 /**897 /**
858 * Lookup72: xcm::v3::Xcm<Call>898 * Lookup73: xcm::v3::Xcm<Call>
859 **/899 **/
860 XcmV3Xcm: 'Vec<XcmV3Instruction>',900 XcmV3Xcm: 'Vec<XcmV3Instruction>',
861 /**901 /**
862 * Lookup74: xcm::v3::Instruction<Call>902 * Lookup75: xcm::v3::Instruction<Call>
863 **/903 **/
864 XcmV3Instruction: {904 XcmV3Instruction: {
865 _enum: {905 _enum: {
866 WithdrawAsset: 'XcmV3MultiassetMultiAssets',906 WithdrawAsset: 'XcmV3MultiassetMultiAssets',
1000 }1040 }
1001 }1041 }
1002 },1042 },
1003 /**1043 /**
1004 * Lookup75: xcm::v3::Response1044 * Lookup76: xcm::v3::Response
1005 **/1045 **/
1006 XcmV3Response: {1046 XcmV3Response: {
1007 _enum: {1047 _enum: {
1008 Null: 'Null',1048 Null: 'Null',
1013 DispatchResult: 'XcmV3MaybeErrorCode'1053 DispatchResult: 'XcmV3MaybeErrorCode'
1014 }1054 }
1015 },1055 },
1016 /**1056 /**
1017 * Lookup79: xcm::v3::PalletInfo1057 * Lookup80: xcm::v3::PalletInfo
1018 **/1058 **/
1019 XcmV3PalletInfo: {1059 XcmV3PalletInfo: {
1020 index: 'Compact<u32>',1060 index: 'Compact<u32>',
1021 name: 'Bytes',1061 name: 'Bytes',
1024 minor: 'Compact<u32>',1064 minor: 'Compact<u32>',
1025 patch: 'Compact<u32>'1065 patch: 'Compact<u32>'
1026 },1066 },
1027 /**1067 /**
1028 * Lookup82: xcm::v3::MaybeErrorCode1068 * Lookup83: xcm::v3::MaybeErrorCode
1029 **/1069 **/
1030 XcmV3MaybeErrorCode: {1070 XcmV3MaybeErrorCode: {
1031 _enum: {1071 _enum: {
1032 Success: 'Null',1072 Success: 'Null',
1033 Error: 'Bytes',1073 Error: 'Bytes',
1034 TruncatedError: 'Bytes'1074 TruncatedError: 'Bytes'
1035 }1075 }
1036 },1076 },
1037 /**1077 /**
1038 * Lookup85: xcm::v2::OriginKind1078 * Lookup86: xcm::v2::OriginKind
1039 **/1079 **/
1040 XcmV2OriginKind: {1080 XcmV2OriginKind: {
1041 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']1081 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']
1042 },1082 },
1043 /**1083 /**
1044 * Lookup86: xcm::double_encoded::DoubleEncoded<T>1084 * Lookup87: xcm::double_encoded::DoubleEncoded<T>
1045 **/1085 **/
1046 XcmDoubleEncoded: {1086 XcmDoubleEncoded: {
1047 encoded: 'Bytes'1087 encoded: 'Bytes'
1048 },1088 },
1049 /**1089 /**
1050 * Lookup87: xcm::v3::QueryResponseInfo1090 * Lookup88: xcm::v3::QueryResponseInfo
1051 **/1091 **/
1052 XcmV3QueryResponseInfo: {1092 XcmV3QueryResponseInfo: {
1053 destination: 'XcmV3MultiLocation',1093 destination: 'XcmV3MultiLocation',
1054 queryId: 'Compact<u64>',1094 queryId: 'Compact<u64>',
1055 maxWeight: 'SpWeightsWeightV2Weight'1095 maxWeight: 'SpWeightsWeightV2Weight'
1056 },1096 },
1057 /**1097 /**
1058 * Lookup88: xcm::v3::multiasset::MultiAssetFilter1098 * Lookup89: xcm::v3::multiasset::MultiAssetFilter
1059 **/1099 **/
1060 XcmV3MultiassetMultiAssetFilter: {1100 XcmV3MultiassetMultiAssetFilter: {
1061 _enum: {1101 _enum: {
1062 Definite: 'XcmV3MultiassetMultiAssets',1102 Definite: 'XcmV3MultiassetMultiAssets',
1063 Wild: 'XcmV3MultiassetWildMultiAsset'1103 Wild: 'XcmV3MultiassetWildMultiAsset'
1064 }1104 }
1065 },1105 },
1066 /**1106 /**
1067 * Lookup89: xcm::v3::multiasset::WildMultiAsset1107 * Lookup90: xcm::v3::multiasset::WildMultiAsset
1068 **/1108 **/
1069 XcmV3MultiassetWildMultiAsset: {1109 XcmV3MultiassetWildMultiAsset: {
1070 _enum: {1110 _enum: {
1071 All: 'Null',1111 All: 'Null',
1081 }1121 }
1082 }1122 }
1083 },1123 },
1084 /**1124 /**
1085 * Lookup90: xcm::v3::multiasset::WildFungibility1125 * Lookup91: xcm::v3::multiasset::WildFungibility
1086 **/1126 **/
1087 XcmV3MultiassetWildFungibility: {1127 XcmV3MultiassetWildFungibility: {
1088 _enum: ['Fungible', 'NonFungible']1128 _enum: ['Fungible', 'NonFungible']
1089 },1129 },
1090 /**1130 /**
1091 * Lookup92: xcm::v3::WeightLimit1131 * Lookup93: xcm::v3::WeightLimit
1092 **/1132 **/
1093 XcmV3WeightLimit: {1133 XcmV3WeightLimit: {
1094 _enum: {1134 _enum: {
1095 Unlimited: 'Null',1135 Unlimited: 'Null',
1096 Limited: 'SpWeightsWeightV2Weight'1136 Limited: 'SpWeightsWeightV2Weight'
1097 }1137 }
1098 },1138 },
1099 /**1139 /**
1100 * Lookup93: xcm::VersionedMultiAssets1140 * Lookup94: xcm::VersionedMultiAssets
1101 **/1141 **/
1102 XcmVersionedMultiAssets: {1142 XcmVersionedMultiAssets: {
1103 _enum: {1143 _enum: {
1104 __Unused0: 'Null',1144 __Unused0: 'Null',
1107 V3: 'XcmV3MultiassetMultiAssets'1147 V3: 'XcmV3MultiassetMultiAssets'
1108 }1148 }
1109 },1149 },
1110 /**1150 /**
1111 * Lookup94: xcm::v2::multiasset::MultiAssets1151 * Lookup95: xcm::v2::multiasset::MultiAssets
1112 **/1152 **/
1113 XcmV2MultiassetMultiAssets: 'Vec<XcmV2MultiAsset>',1153 XcmV2MultiassetMultiAssets: 'Vec<XcmV2MultiAsset>',
1114 /**1154 /**
1115 * Lookup96: xcm::v2::multiasset::MultiAsset1155 * Lookup97: xcm::v2::multiasset::MultiAsset
1116 **/1156 **/
1117 XcmV2MultiAsset: {1157 XcmV2MultiAsset: {
1118 id: 'XcmV2MultiassetAssetId',1158 id: 'XcmV2MultiassetAssetId',
1119 fun: 'XcmV2MultiassetFungibility'1159 fun: 'XcmV2MultiassetFungibility'
1120 },1160 },
1121 /**1161 /**
1122 * Lookup97: xcm::v2::multiasset::AssetId1162 * Lookup98: xcm::v2::multiasset::AssetId
1123 **/1163 **/
1124 XcmV2MultiassetAssetId: {1164 XcmV2MultiassetAssetId: {
1125 _enum: {1165 _enum: {
1126 Concrete: 'XcmV2MultiLocation',1166 Concrete: 'XcmV2MultiLocation',
1127 Abstract: 'Bytes'1167 Abstract: 'Bytes'
1128 }1168 }
1129 },1169 },
1130 /**1170 /**
1131 * Lookup98: xcm::v2::multilocation::MultiLocation1171 * Lookup99: xcm::v2::multilocation::MultiLocation
1132 **/1172 **/
1133 XcmV2MultiLocation: {1173 XcmV2MultiLocation: {
1134 parents: 'u8',1174 parents: 'u8',
1135 interior: 'XcmV2MultilocationJunctions'1175 interior: 'XcmV2MultilocationJunctions'
1136 },1176 },
1137 /**1177 /**
1138 * Lookup99: xcm::v2::multilocation::Junctions1178 * Lookup100: xcm::v2::multilocation::Junctions
1139 **/1179 **/
1140 XcmV2MultilocationJunctions: {1180 XcmV2MultilocationJunctions: {
1141 _enum: {1181 _enum: {
1142 Here: 'Null',1182 Here: 'Null',
1150 X8: '(XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction)'1190 X8: '(XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction,XcmV2Junction)'
1151 }1191 }
1152 },1192 },
1153 /**1193 /**
1154 * Lookup100: xcm::v2::junction::Junction1194 * Lookup101: xcm::v2::junction::Junction
1155 **/1195 **/
1156 XcmV2Junction: {1196 XcmV2Junction: {
1157 _enum: {1197 _enum: {
1158 Parachain: 'Compact<u32>',1198 Parachain: 'Compact<u32>',
1178 }1218 }
1179 }1219 }
1180 },1220 },
1181 /**1221 /**
1182 * Lookup101: xcm::v2::NetworkId1222 * Lookup102: xcm::v2::NetworkId
1183 **/1223 **/
1184 XcmV2NetworkId: {1224 XcmV2NetworkId: {
1185 _enum: {1225 _enum: {
1186 Any: 'Null',1226 Any: 'Null',
1189 Kusama: 'Null'1229 Kusama: 'Null'
1190 }1230 }
1191 },1231 },
1192 /**1232 /**
1193 * Lookup103: xcm::v2::BodyId1233 * Lookup104: xcm::v2::BodyId
1194 **/1234 **/
1195 XcmV2BodyId: {1235 XcmV2BodyId: {
1196 _enum: {1236 _enum: {
1197 Unit: 'Null',1237 Unit: 'Null',
1206 Treasury: 'Null'1246 Treasury: 'Null'
1207 }1247 }
1208 },1248 },
1209 /**1249 /**
1210 * Lookup104: xcm::v2::BodyPart1250 * Lookup105: xcm::v2::BodyPart
1211 **/1251 **/
1212 XcmV2BodyPart: {1252 XcmV2BodyPart: {
1213 _enum: {1253 _enum: {
1214 Voice: 'Null',1254 Voice: 'Null',
1229 }1269 }
1230 }1270 }
1231 },1271 },
1232 /**1272 /**
1233 * Lookup105: xcm::v2::multiasset::Fungibility1273 * Lookup106: xcm::v2::multiasset::Fungibility
1234 **/1274 **/
1235 XcmV2MultiassetFungibility: {1275 XcmV2MultiassetFungibility: {
1236 _enum: {1276 _enum: {
1237 Fungible: 'Compact<u128>',1277 Fungible: 'Compact<u128>',
1238 NonFungible: 'XcmV2MultiassetAssetInstance'1278 NonFungible: 'XcmV2MultiassetAssetInstance'
1239 }1279 }
1240 },1280 },
1241 /**1281 /**
1242 * Lookup106: xcm::v2::multiasset::AssetInstance1282 * Lookup107: xcm::v2::multiasset::AssetInstance
1243 **/1283 **/
1244 XcmV2MultiassetAssetInstance: {1284 XcmV2MultiassetAssetInstance: {
1245 _enum: {1285 _enum: {
1246 Undefined: 'Null',1286 Undefined: 'Null',
1252 Blob: 'Bytes'1292 Blob: 'Bytes'
1253 }1293 }
1254 },1294 },
1255 /**1295 /**
1256 * Lookup107: xcm::VersionedMultiLocation1296 * Lookup108: xcm::VersionedMultiLocation
1257 **/1297 **/
1258 XcmVersionedMultiLocation: {1298 XcmVersionedMultiLocation: {
1259 _enum: {1299 _enum: {
1260 __Unused0: 'Null',1300 __Unused0: 'Null',
1263 V3: 'XcmV3MultiLocation'1303 V3: 'XcmV3MultiLocation'
1264 }1304 }
1265 },1305 },
1266 /**1306 /**
1267 * Lookup108: cumulus_pallet_xcm::pallet::Event<T>1307 * Lookup109: cumulus_pallet_xcm::pallet::Event<T>
1268 **/1308 **/
1269 CumulusPalletXcmEvent: {1309 CumulusPalletXcmEvent: {
1270 _enum: {1310 _enum: {
1271 InvalidFormat: '[u8;32]',1311 InvalidFormat: '[u8;32]',
1272 UnsupportedVersion: '[u8;32]',1312 UnsupportedVersion: '[u8;32]',
1273 ExecutedDownward: '([u8;32],XcmV3TraitsOutcome)'1313 ExecutedDownward: '([u8;32],XcmV3TraitsOutcome)'
1274 }1314 }
1275 },1315 },
1276 /**1316 /**
1277 * Lookup109: cumulus_pallet_dmp_queue::pallet::Event<T>1317 * Lookup110: cumulus_pallet_dmp_queue::pallet::Event<T>
1278 **/1318 **/
1279 CumulusPalletDmpQueueEvent: {1319 CumulusPalletDmpQueueEvent: {
1280 _enum: {1320 _enum: {
1281 InvalidFormat: {1321 InvalidFormat: {
1307 }1347 }
1308 }1348 }
1309 },1349 },
1310 /**1350 /**
1311 * Lookup110: pallet_configuration::pallet::Event<T>1351 * Lookup111: pallet_configuration::pallet::Event<T>
1312 **/1352 **/
1313 PalletConfigurationEvent: {1353 PalletConfigurationEvent: {
1314 _enum: {1354 _enum: {
1315 NewDesiredCollators: {1355 NewDesiredCollators: {
1323 }1363 }
1324 }1364 }
1325 },1365 },
1326 /**1366 /**
1327 * Lookup113: pallet_common::pallet::Event<T>1367 * Lookup114: pallet_common::pallet::Event<T>
1328 **/1368 **/
1329 PalletCommonEvent: {1369 PalletCommonEvent: {
1330 _enum: {1370 _enum: {
1331 CollectionCreated: '(u32,u8,AccountId32)',1371 CollectionCreated: '(u32,u8,AccountId32)',
1352 CollectionSponsorRemoved: 'u32'1392 CollectionSponsorRemoved: 'u32'
1353 }1393 }
1354 },1394 },
1355 /**1395 /**
1356 * Lookup116: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1396 * Lookup117: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
1357 **/1397 **/
1358 PalletEvmAccountBasicCrossAccountIdRepr: {1398 PalletEvmAccountBasicCrossAccountIdRepr: {
1359 _enum: {1399 _enum: {
1360 Substrate: 'AccountId32',1400 Substrate: 'AccountId32',
1361 Ethereum: 'H160'1401 Ethereum: 'H160'
1362 }1402 }
1363 },1403 },
1364 /**1404 /**
1365 * Lookup119: pallet_structure::pallet::Event<T>1405 * Lookup120: pallet_structure::pallet::Event<T>
1366 **/1406 **/
1367 PalletStructureEvent: {1407 PalletStructureEvent: {
1368 _enum: {1408 _enum: {
1369 Executed: 'Result<Null, SpRuntimeDispatchError>'1409 Executed: 'Result<Null, SpRuntimeDispatchError>'
1370 }1410 }
1371 },1411 },
1372 /**1412 /**
1373 * Lookup120: pallet_app_promotion::pallet::Event<T>1413 * Lookup121: pallet_app_promotion::pallet::Event<T>
1374 **/1414 **/
1375 PalletAppPromotionEvent: {1415 PalletAppPromotionEvent: {
1376 _enum: {1416 _enum: {
1377 StakingRecalculation: '(AccountId32,u128,u128)',1417 StakingRecalculation: '(AccountId32,u128,u128)',
1380 SetAdmin: 'AccountId32'1420 SetAdmin: 'AccountId32'
1381 }1421 }
1382 },1422 },
1383 /**1423 /**
1384 * Lookup121: pallet_foreign_assets::module::Event<T>1424 * Lookup122: pallet_foreign_assets::module::Event<T>
1385 **/1425 **/
1386 PalletForeignAssetsModuleEvent: {1426 PalletForeignAssetsModuleEvent: {
1387 _enum: {1427 _enum: {
1388 ForeignAssetRegistered: {1428 ForeignAssetRegistered: {
1405 }1445 }
1406 }1446 }
1407 },1447 },
1408 /**1448 /**
1409 * Lookup122: pallet_foreign_assets::module::AssetMetadata<Balance>1449 * Lookup123: pallet_foreign_assets::module::AssetMetadata<Balance>
1410 **/1450 **/
1411 PalletForeignAssetsModuleAssetMetadata: {1451 PalletForeignAssetsModuleAssetMetadata: {
1412 name: 'Bytes',1452 name: 'Bytes',
1413 symbol: 'Bytes',1453 symbol: 'Bytes',
1414 decimals: 'u8',1454 decimals: 'u8',
1415 minimalBalance: 'u128'1455 minimalBalance: 'u128'
1416 },1456 },
1417 /**1457 /**
1418 * Lookup125: pallet_evm::pallet::Event<T>1458 * Lookup126: pallet_evm::pallet::Event<T>
1419 **/1459 **/
1420 PalletEvmEvent: {1460 PalletEvmEvent: {
1421 _enum: {1461 _enum: {
1422 Log: {1462 Log: {
1436 }1476 }
1437 }1477 }
1438 },1478 },
1439 /**1479 /**
1440 * Lookup126: ethereum::log::Log1480 * Lookup127: ethereum::log::Log
1441 **/1481 **/
1442 EthereumLog: {1482 EthereumLog: {
1443 address: 'H160',1483 address: 'H160',
1444 topics: 'Vec<H256>',1484 topics: 'Vec<H256>',
1445 data: 'Bytes'1485 data: 'Bytes'
1446 },1486 },
1447 /**1487 /**
1448 * Lookup128: pallet_ethereum::pallet::Event1488 * Lookup129: pallet_ethereum::pallet::Event
1449 **/1489 **/
1450 PalletEthereumEvent: {1490 PalletEthereumEvent: {
1451 _enum: {1491 _enum: {
1452 Executed: {1492 Executed: {
1453 from: 'H160',1493 from: 'H160',
1454 to: 'H160',1494 to: 'H160',
1455 transactionHash: 'H256',1495 transactionHash: 'H256',
1456 exitReason: 'EvmCoreErrorExitReason'1496 exitReason: 'EvmCoreErrorExitReason',
1497 extraData: 'Bytes'
1457 }1498 }
1458 }1499 }
1459 },1500 },
1460 /**1501 /**
1461 * Lookup129: evm_core::error::ExitReason1502 * Lookup130: evm_core::error::ExitReason
1462 **/1503 **/
1463 EvmCoreErrorExitReason: {1504 EvmCoreErrorExitReason: {
1464 _enum: {1505 _enum: {
1465 Succeed: 'EvmCoreErrorExitSucceed',1506 Succeed: 'EvmCoreErrorExitSucceed',
1468 Fatal: 'EvmCoreErrorExitFatal'1509 Fatal: 'EvmCoreErrorExitFatal'
1469 }1510 }
1470 },1511 },
1471 /**1512 /**
1472 * Lookup130: evm_core::error::ExitSucceed1513 * Lookup131: evm_core::error::ExitSucceed
1473 **/1514 **/
1474 EvmCoreErrorExitSucceed: {1515 EvmCoreErrorExitSucceed: {
1475 _enum: ['Stopped', 'Returned', 'Suicided']1516 _enum: ['Stopped', 'Returned', 'Suicided']
1476 },1517 },
1477 /**1518 /**
1478 * Lookup131: evm_core::error::ExitError1519 * Lookup132: evm_core::error::ExitError
1479 **/1520 **/
1480 EvmCoreErrorExitError: {1521 EvmCoreErrorExitError: {
1481 _enum: {1522 _enum: {
1482 StackUnderflow: 'Null',1523 StackUnderflow: 'Null',
1497 InvalidCode: 'u8'1538 InvalidCode: 'u8'
1498 }1539 }
1499 },1540 },
1500 /**1541 /**
1501 * Lookup135: evm_core::error::ExitRevert1542 * Lookup136: evm_core::error::ExitRevert
1502 **/1543 **/
1503 EvmCoreErrorExitRevert: {1544 EvmCoreErrorExitRevert: {
1504 _enum: ['Reverted']1545 _enum: ['Reverted']
1505 },1546 },
1506 /**1547 /**
1507 * Lookup136: evm_core::error::ExitFatal1548 * Lookup137: evm_core::error::ExitFatal
1508 **/1549 **/
1509 EvmCoreErrorExitFatal: {1550 EvmCoreErrorExitFatal: {
1510 _enum: {1551 _enum: {
1511 NotSupported: 'Null',1552 NotSupported: 'Null',
1514 Other: 'Text'1555 Other: 'Text'
1515 }1556 }
1516 },1557 },
1517 /**1558 /**
1518 * Lookup137: pallet_evm_contract_helpers::pallet::Event<T>1559 * Lookup138: pallet_evm_contract_helpers::pallet::Event<T>
1519 **/1560 **/
1520 PalletEvmContractHelpersEvent: {1561 PalletEvmContractHelpersEvent: {
1521 _enum: {1562 _enum: {
1522 ContractSponsorSet: '(H160,AccountId32)',1563 ContractSponsorSet: '(H160,AccountId32)',
1523 ContractSponsorshipConfirmed: '(H160,AccountId32)',1564 ContractSponsorshipConfirmed: '(H160,AccountId32)',
1524 ContractSponsorRemoved: 'H160'1565 ContractSponsorRemoved: 'H160'
1525 }1566 }
1526 },1567 },
1527 /**1568 /**
1528 * Lookup138: pallet_evm_migration::pallet::Event<T>1569 * Lookup139: pallet_evm_migration::pallet::Event<T>
1529 **/1570 **/
1530 PalletEvmMigrationEvent: {1571 PalletEvmMigrationEvent: {
1531 _enum: ['TestEvent']1572 _enum: ['TestEvent']
1532 },1573 },
1533 /**1574 /**
1534 * Lookup139: pallet_maintenance::pallet::Event<T>1575 * Lookup140: pallet_maintenance::pallet::Event<T>
1535 **/1576 **/
1536 PalletMaintenanceEvent: {1577 PalletMaintenanceEvent: {
1537 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1578 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']
1538 },1579 },
1539 /**1580 /**
1540 * Lookup140: pallet_test_utils::pallet::Event<T>1581 * Lookup141: pallet_test_utils::pallet::Event<T>
1541 **/1582 **/
1542 PalletTestUtilsEvent: {1583 PalletTestUtilsEvent: {
1543 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1584 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']
1544 },1585 },
1545 /**1586 /**
1546 * Lookup141: frame_system::Phase1587 * Lookup142: frame_system::Phase
1547 **/1588 **/
1548 FrameSystemPhase: {1589 FrameSystemPhase: {
1549 _enum: {1590 _enum: {
1550 ApplyExtrinsic: 'u32',1591 ApplyExtrinsic: 'u32',
1551 Finalization: 'Null',1592 Finalization: 'Null',
1552 Initialization: 'Null'1593 Initialization: 'Null'
1553 }1594 }
1554 },1595 },
1555 /**1596 /**
1556 * Lookup144: frame_system::LastRuntimeUpgradeInfo1597 * Lookup145: frame_system::LastRuntimeUpgradeInfo
1557 **/1598 **/
1558 FrameSystemLastRuntimeUpgradeInfo: {1599 FrameSystemLastRuntimeUpgradeInfo: {
1559 specVersion: 'Compact<u32>',1600 specVersion: 'Compact<u32>',
1560 specName: 'Text'1601 specName: 'Text'
1561 },1602 },
1562 /**1603 /**
1563 * Lookup145: frame_system::pallet::Call<T>1604 * Lookup146: frame_system::pallet::Call<T>
1564 **/1605 **/
1565 FrameSystemCall: {1606 FrameSystemCall: {
1566 _enum: {1607 _enum: {
1567 remark: {1608 remark: {
1594 }1635 }
1595 }1636 }
1596 },1637 },
1597 /**1638 /**
1598 * Lookup149: frame_system::limits::BlockWeights1639 * Lookup150: frame_system::limits::BlockWeights
1599 **/1640 **/
1600 FrameSystemLimitsBlockWeights: {1641 FrameSystemLimitsBlockWeights: {
1601 baseBlock: 'SpWeightsWeightV2Weight',1642 baseBlock: 'SpWeightsWeightV2Weight',
1602 maxBlock: 'SpWeightsWeightV2Weight',1643 maxBlock: 'SpWeightsWeightV2Weight',
1603 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1644 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
1604 },1645 },
1605 /**1646 /**
1606 * Lookup150: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1647 * Lookup151: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
1607 **/1648 **/
1608 FrameSupportDispatchPerDispatchClassWeightsPerClass: {1649 FrameSupportDispatchPerDispatchClassWeightsPerClass: {
1609 normal: 'FrameSystemLimitsWeightsPerClass',1650 normal: 'FrameSystemLimitsWeightsPerClass',
1610 operational: 'FrameSystemLimitsWeightsPerClass',1651 operational: 'FrameSystemLimitsWeightsPerClass',
1611 mandatory: 'FrameSystemLimitsWeightsPerClass'1652 mandatory: 'FrameSystemLimitsWeightsPerClass'
1612 },1653 },
1613 /**1654 /**
1614 * Lookup151: frame_system::limits::WeightsPerClass1655 * Lookup152: frame_system::limits::WeightsPerClass
1615 **/1656 **/
1616 FrameSystemLimitsWeightsPerClass: {1657 FrameSystemLimitsWeightsPerClass: {
1617 baseExtrinsic: 'SpWeightsWeightV2Weight',1658 baseExtrinsic: 'SpWeightsWeightV2Weight',
1618 maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1659 maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',
1619 maxTotal: 'Option<SpWeightsWeightV2Weight>',1660 maxTotal: 'Option<SpWeightsWeightV2Weight>',
1620 reserved: 'Option<SpWeightsWeightV2Weight>'1661 reserved: 'Option<SpWeightsWeightV2Weight>'
1621 },1662 },
1622 /**1663 /**
1623 * Lookup153: frame_system::limits::BlockLength1664 * Lookup154: frame_system::limits::BlockLength
1624 **/1665 **/
1625 FrameSystemLimitsBlockLength: {1666 FrameSystemLimitsBlockLength: {
1626 max: 'FrameSupportDispatchPerDispatchClassU32'1667 max: 'FrameSupportDispatchPerDispatchClassU32'
1627 },1668 },
1628 /**1669 /**
1629 * Lookup154: frame_support::dispatch::PerDispatchClass<T>1670 * Lookup155: frame_support::dispatch::PerDispatchClass<T>
1630 **/1671 **/
1631 FrameSupportDispatchPerDispatchClassU32: {1672 FrameSupportDispatchPerDispatchClassU32: {
1632 normal: 'u32',1673 normal: 'u32',
1633 operational: 'u32',1674 operational: 'u32',
1634 mandatory: 'u32'1675 mandatory: 'u32'
1635 },1676 },
1636 /**1677 /**
1637 * Lookup155: sp_weights::RuntimeDbWeight1678 * Lookup156: sp_weights::RuntimeDbWeight
1638 **/1679 **/
1639 SpWeightsRuntimeDbWeight: {1680 SpWeightsRuntimeDbWeight: {
1640 read: 'u64',1681 read: 'u64',
1641 write: 'u64'1682 write: 'u64'
1642 },1683 },
1643 /**1684 /**
1644 * Lookup156: sp_version::RuntimeVersion1685 * Lookup157: sp_version::RuntimeVersion
1645 **/1686 **/
1646 SpVersionRuntimeVersion: {1687 SpVersionRuntimeVersion: {
1647 specName: 'Text',1688 specName: 'Text',
1648 implName: 'Text',1689 implName: 'Text',
1653 transactionVersion: 'u32',1694 transactionVersion: 'u32',
1654 stateVersion: 'u8'1695 stateVersion: 'u8'
1655 },1696 },
1656 /**1697 /**
1657 * Lookup161: frame_system::pallet::Error<T>1698 * Lookup162: frame_system::pallet::Error<T>
1658 **/1699 **/
1659 FrameSystemError: {1700 FrameSystemError: {
1660 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1701 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
1661 },1702 },
1662 /**1703 /**
1663 * Lookup162: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1704 * Lookup163: polkadot_primitives::v4::PersistedValidationData<primitive_types::H256, N>
1664 **/1705 **/
1665 PolkadotPrimitivesV2PersistedValidationData: {1706 PolkadotPrimitivesV4PersistedValidationData: {
1666 parentHead: 'Bytes',1707 parentHead: 'Bytes',
1667 relayParentNumber: 'u32',1708 relayParentNumber: 'u32',
1668 relayParentStorageRoot: 'H256',1709 relayParentStorageRoot: 'H256',
1669 maxPovSize: 'u32'1710 maxPovSize: 'u32'
1670 },1711 },
1671 /**1712 /**
1672 * Lookup165: polkadot_primitives::v2::UpgradeRestriction1713 * Lookup166: polkadot_primitives::v4::UpgradeRestriction
1673 **/1714 **/
1674 PolkadotPrimitivesV2UpgradeRestriction: {1715 PolkadotPrimitivesV4UpgradeRestriction: {
1675 _enum: ['Present']1716 _enum: ['Present']
1676 },1717 },
1677 /**1718 /**
1678 * Lookup166: sp_trie::storage_proof::StorageProof1719 * Lookup167: sp_trie::storage_proof::StorageProof
1679 **/1720 **/
1680 SpTrieStorageProof: {1721 SpTrieStorageProof: {
1681 trieNodes: 'BTreeSet<Bytes>'1722 trieNodes: 'BTreeSet<Bytes>'
1682 },1723 },
1683 /**1724 /**
1684 * Lookup168: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1725 * Lookup169: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
1685 **/1726 **/
1686 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1727 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
1687 dmqMqcHead: 'H256',1728 dmqMqcHead: 'H256',
1688 relayDispatchQueueSize: '(u32,u32)',1729 relayDispatchQueueSize: '(u32,u32)',
1689 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1730 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV4AbridgedHrmpChannel)>',
1690 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1731 egressChannels: 'Vec<(u32,PolkadotPrimitivesV4AbridgedHrmpChannel)>'
1691 },1732 },
1692 /**1733 /**
1693 * Lookup171: polkadot_primitives::v2::AbridgedHrmpChannel1734 * Lookup172: polkadot_primitives::v4::AbridgedHrmpChannel
1694 **/1735 **/
1695 PolkadotPrimitivesV2AbridgedHrmpChannel: {1736 PolkadotPrimitivesV4AbridgedHrmpChannel: {
1696 maxCapacity: 'u32',1737 maxCapacity: 'u32',
1697 maxTotalSize: 'u32',1738 maxTotalSize: 'u32',
1698 maxMessageSize: 'u32',1739 maxMessageSize: 'u32',
1699 msgCount: 'u32',1740 msgCount: 'u32',
1700 totalSize: 'u32',1741 totalSize: 'u32',
1701 mqcHead: 'Option<H256>'1742 mqcHead: 'Option<H256>'
1702 },1743 },
1703 /**1744 /**
1704 * Lookup173: polkadot_primitives::v2::AbridgedHostConfiguration1745 * Lookup174: polkadot_primitives::v4::AbridgedHostConfiguration
1705 **/1746 **/
1706 PolkadotPrimitivesV2AbridgedHostConfiguration: {1747 PolkadotPrimitivesV4AbridgedHostConfiguration: {
1707 maxCodeSize: 'u32',1748 maxCodeSize: 'u32',
1708 maxHeadDataSize: 'u32',1749 maxHeadDataSize: 'u32',
1709 maxUpwardQueueCount: 'u32',1750 maxUpwardQueueCount: 'u32',
1714 validationUpgradeCooldown: 'u32',1755 validationUpgradeCooldown: 'u32',
1715 validationUpgradeDelay: 'u32'1756 validationUpgradeDelay: 'u32'
1716 },1757 },
1717 /**1758 /**
1718 * Lookup179: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1759 * Lookup180: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
1719 **/1760 **/
1720 PolkadotCorePrimitivesOutboundHrmpMessage: {1761 PolkadotCorePrimitivesOutboundHrmpMessage: {
1721 recipient: 'u32',1762 recipient: 'u32',
1722 data: 'Bytes'1763 data: 'Bytes'
1723 },1764 },
1765 /**
1766 * Lookup181: cumulus_pallet_parachain_system::CodeUpgradeAuthorization<T>
1767 **/
1768 CumulusPalletParachainSystemCodeUpgradeAuthorization: {
1769 codeHash: 'H256',
1770 checkVersion: 'bool'
1771 },
1724 /**1772 /**
1725 * Lookup180: cumulus_pallet_parachain_system::pallet::Call<T>1773 * Lookup182: cumulus_pallet_parachain_system::pallet::Call<T>
1726 **/1774 **/
1727 CumulusPalletParachainSystemCall: {1775 CumulusPalletParachainSystemCall: {
1728 _enum: {1776 _enum: {
1729 set_validation_data: {1777 set_validation_data: {
1734 },1782 },
1735 authorize_upgrade: {1783 authorize_upgrade: {
1736 codeHash: 'H256',1784 codeHash: 'H256',
1785 checkVersion: 'bool',
1737 },1786 },
1738 enact_authorized_upgrade: {1787 enact_authorized_upgrade: {
1739 code: 'Bytes'1788 code: 'Bytes'
1740 }1789 }
1741 }1790 }
1742 },1791 },
1743 /**1792 /**
1744 * Lookup181: cumulus_primitives_parachain_inherent::ParachainInherentData1793 * Lookup183: cumulus_primitives_parachain_inherent::ParachainInherentData
1745 **/1794 **/
1746 CumulusPrimitivesParachainInherentParachainInherentData: {1795 CumulusPrimitivesParachainInherentParachainInherentData: {
1747 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1796 validationData: 'PolkadotPrimitivesV4PersistedValidationData',
1748 relayChainState: 'SpTrieStorageProof',1797 relayChainState: 'SpTrieStorageProof',
1749 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1798 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',
1750 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1799 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
1751 },1800 },
1752 /**1801 /**
1753 * Lookup183: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1802 * Lookup185: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
1754 **/1803 **/
1755 PolkadotCorePrimitivesInboundDownwardMessage: {1804 PolkadotCorePrimitivesInboundDownwardMessage: {
1756 sentAt: 'u32',1805 sentAt: 'u32',
1757 msg: 'Bytes'1806 msg: 'Bytes'
1758 },1807 },
1759 /**1808 /**
1760 * Lookup186: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1809 * Lookup188: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
1761 **/1810 **/
1762 PolkadotCorePrimitivesInboundHrmpMessage: {1811 PolkadotCorePrimitivesInboundHrmpMessage: {
1763 sentAt: 'u32',1812 sentAt: 'u32',
1764 data: 'Bytes'1813 data: 'Bytes'
1765 },1814 },
1766 /**1815 /**
1767 * Lookup189: cumulus_pallet_parachain_system::pallet::Error<T>1816 * Lookup191: cumulus_pallet_parachain_system::pallet::Error<T>
1768 **/1817 **/
1769 CumulusPalletParachainSystemError: {1818 CumulusPalletParachainSystemError: {
1770 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1819 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
1771 },1820 },
1772 /**1821 /**
1773 * Lookup190: parachain_info::pallet::Call<T>1822 * Lookup192: parachain_info::pallet::Call<T>
1774 **/1823 **/
1775 ParachainInfoCall: 'Null',1824 ParachainInfoCall: 'Null',
1776 /**1825 /**
1777 * Lookup193: pallet_collator_selection::pallet::Call<T>1826 * Lookup195: pallet_collator_selection::pallet::Call<T>
1778 **/1827 **/
1779 PalletCollatorSelectionCall: {1828 PalletCollatorSelectionCall: {
1780 _enum: {1829 _enum: {
1781 add_invulnerable: {1830 add_invulnerable: {
1796 }1845 }
1797 }1846 }
1798 },1847 },
1799 /**1848 /**
1800 * Lookup194: pallet_collator_selection::pallet::Error<T>1849 * Lookup196: pallet_collator_selection::pallet::Error<T>
1801 **/1850 **/
1802 PalletCollatorSelectionError: {1851 PalletCollatorSelectionError: {
1803 _enum: ['TooManyCandidates', 'Unknown', 'Permission', 'AlreadyHoldingLicense', 'NoLicense', 'AlreadyCandidate', 'NotCandidate', 'TooManyInvulnerables', 'TooFewInvulnerables', 'AlreadyInvulnerable', 'NotInvulnerable', 'NoAssociatedValidatorId', 'ValidatorNotRegistered']1852 _enum: ['TooManyCandidates', 'Unknown', 'Permission', 'AlreadyHoldingLicense', 'NoLicense', 'AlreadyCandidate', 'NotCandidate', 'TooManyInvulnerables', 'TooFewInvulnerables', 'AlreadyInvulnerable', 'NotInvulnerable', 'NoAssociatedValidatorId', 'ValidatorNotRegistered']
1804 },1853 },
1805 /**1854 /**
1806 * Lookup197: opal_runtime::runtime_common::SessionKeys1855 * Lookup199: opal_runtime::runtime_common::SessionKeys
1807 **/1856 **/
1808 OpalRuntimeRuntimeCommonSessionKeys: {1857 OpalRuntimeRuntimeCommonSessionKeys: {
1809 aura: 'SpConsensusAuraSr25519AppSr25519Public'1858 aura: 'SpConsensusAuraSr25519AppSr25519Public'
1810 },1859 },
1811 /**1860 /**
1812 * Lookup198: sp_consensus_aura::sr25519::app_sr25519::Public1861 * Lookup200: sp_consensus_aura::sr25519::app_sr25519::Public
1813 **/1862 **/
1814 SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',1863 SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',
1815 /**1864 /**
1816 * Lookup199: sp_core::sr25519::Public1865 * Lookup201: sp_core::sr25519::Public
1817 **/1866 **/
1818 SpCoreSr25519Public: '[u8;32]',1867 SpCoreSr25519Public: '[u8;32]',
1819 /**1868 /**
1820 * Lookup202: sp_core::crypto::KeyTypeId1869 * Lookup204: sp_core::crypto::KeyTypeId
1821 **/1870 **/
1822 SpCoreCryptoKeyTypeId: '[u8;4]',1871 SpCoreCryptoKeyTypeId: '[u8;4]',
1823 /**1872 /**
1824 * Lookup203: pallet_session::pallet::Call<T>1873 * Lookup205: pallet_session::pallet::Call<T>
1825 **/1874 **/
1826 PalletSessionCall: {1875 PalletSessionCall: {
1827 _enum: {1876 _enum: {
1828 set_keys: {1877 set_keys: {
1835 purge_keys: 'Null'1884 purge_keys: 'Null'
1836 }1885 }
1837 },1886 },
1838 /**1887 /**
1839 * Lookup204: pallet_session::pallet::Error<T>1888 * Lookup206: pallet_session::pallet::Error<T>
1840 **/1889 **/
1841 PalletSessionError: {1890 PalletSessionError: {
1842 _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']1891 _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']
1843 },1892 },
1844 /**1893 /**
1845 * Lookup209: pallet_balances::BalanceLock<Balance>1894 * Lookup211: pallet_balances::types::BalanceLock<Balance>
1846 **/1895 **/
1847 PalletBalancesBalanceLock: {1896 PalletBalancesBalanceLock: {
1848 id: '[u8;8]',1897 id: '[u8;8]',
1849 amount: 'u128',1898 amount: 'u128',
1850 reasons: 'PalletBalancesReasons'1899 reasons: 'PalletBalancesReasons'
1851 },1900 },
1852 /**1901 /**
1853 * Lookup210: pallet_balances::Reasons1902 * Lookup212: pallet_balances::types::Reasons
1854 **/1903 **/
1855 PalletBalancesReasons: {1904 PalletBalancesReasons: {
1856 _enum: ['Fee', 'Misc', 'All']1905 _enum: ['Fee', 'Misc', 'All']
1857 },1906 },
1858 /**1907 /**
1859 * Lookup213: pallet_balances::ReserveData<ReserveIdentifier, Balance>1908 * Lookup215: pallet_balances::types::ReserveData<ReserveIdentifier, Balance>
1860 **/1909 **/
1861 PalletBalancesReserveData: {1910 PalletBalancesReserveData: {
1862 id: '[u8;16]',1911 id: '[u8;16]',
1863 amount: 'u128'1912 amount: 'u128'
1864 },1913 },
1914 /**
1915 * Lookup218: pallet_balances::types::IdAmount<Id, Balance>
1916 **/
1917 PalletBalancesIdAmount: {
1918 id: '[u8;16]',
1919 amount: 'u128'
1920 },
1865 /**1921 /**
1866 * Lookup215: pallet_balances::pallet::Call<T, I>1922 * Lookup220: pallet_balances::pallet::Call<T, I>
1867 **/1923 **/
1868 PalletBalancesCall: {1924 PalletBalancesCall: {
1869 _enum: {1925 _enum: {
1870 transfer: {1926 transfer_allow_death: {
1871 dest: 'MultiAddress',1927 dest: 'MultiAddress',
1872 value: 'Compact<u128>',1928 value: 'Compact<u128>',
1873 },1929 },
1874 set_balance: {1930 set_balance_deprecated: {
1875 who: 'MultiAddress',1931 who: 'MultiAddress',
1876 newFree: 'Compact<u128>',1932 newFree: 'Compact<u128>',
1877 newReserved: 'Compact<u128>',1933 oldReserved: 'Compact<u128>',
1878 },1934 },
1879 force_transfer: {1935 force_transfer: {
1880 source: 'MultiAddress',1936 source: 'MultiAddress',
1892 force_unreserve: {1948 force_unreserve: {
1893 who: 'MultiAddress',1949 who: 'MultiAddress',
1894 amount: 'u128'1950 amount: 'u128',
1895 }1951 },
1952 upgrade_accounts: {
1953 who: 'Vec<AccountId32>',
1954 },
1955 transfer: {
1956 dest: 'MultiAddress',
1957 value: 'Compact<u128>',
1958 },
1959 force_set_balance: {
1960 who: 'MultiAddress',
1961 newFree: 'Compact<u128>'
1962 }
1896 }1963 }
1897 },1964 },
1898 /**1965 /**
1899 * Lookup218: pallet_balances::pallet::Error<T, I>1966 * Lookup223: pallet_balances::pallet::Error<T, I>
1900 **/1967 **/
1901 PalletBalancesError: {1968 PalletBalancesError: {
1902 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1969 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'Expendability', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves', 'TooManyHolds', 'TooManyFreezes']
1903 },1970 },
1904 /**1971 /**
1905 * Lookup219: pallet_timestamp::pallet::Call<T>1972 * Lookup224: pallet_timestamp::pallet::Call<T>
1906 **/1973 **/
1907 PalletTimestampCall: {1974 PalletTimestampCall: {
1908 _enum: {1975 _enum: {
1909 set: {1976 set: {
1910 now: 'Compact<u64>'1977 now: 'Compact<u64>'
1911 }1978 }
1912 }1979 }
1913 },1980 },
1914 /**1981 /**
1915 * Lookup221: pallet_transaction_payment::Releases1982 * Lookup226: pallet_transaction_payment::Releases
1916 **/1983 **/
1917 PalletTransactionPaymentReleases: {1984 PalletTransactionPaymentReleases: {
1918 _enum: ['V1Ancient', 'V2']1985 _enum: ['V1Ancient', 'V2']
1919 },1986 },
1920 /**1987 /**
1921 * Lookup222: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1988 * Lookup227: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
1922 **/1989 **/
1923 PalletTreasuryProposal: {1990 PalletTreasuryProposal: {
1924 proposer: 'AccountId32',1991 proposer: 'AccountId32',
1925 value: 'u128',1992 value: 'u128',
1926 beneficiary: 'AccountId32',1993 beneficiary: 'AccountId32',
1927 bond: 'u128'1994 bond: 'u128'
1928 },1995 },
1929 /**1996 /**
1930 * Lookup224: pallet_treasury::pallet::Call<T, I>1997 * Lookup229: pallet_treasury::pallet::Call<T, I>
1931 **/1998 **/
1932 PalletTreasuryCall: {1999 PalletTreasuryCall: {
1933 _enum: {2000 _enum: {
1934 propose_spend: {2001 propose_spend: {
1950 }2017 }
1951 }2018 }
1952 },2019 },
1953 /**2020 /**
1954 * Lookup226: frame_support::PalletId2021 * Lookup231: frame_support::PalletId
1955 **/2022 **/
1956 FrameSupportPalletId: '[u8;8]',2023 FrameSupportPalletId: '[u8;8]',
1957 /**2024 /**
1958 * Lookup227: pallet_treasury::pallet::Error<T, I>2025 * Lookup232: pallet_treasury::pallet::Error<T, I>
1959 **/2026 **/
1960 PalletTreasuryError: {2027 PalletTreasuryError: {
1961 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']2028 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
1962 },2029 },
1963 /**2030 /**
1964 * Lookup228: pallet_sudo::pallet::Call<T>2031 * Lookup233: pallet_sudo::pallet::Call<T>
1965 **/2032 **/
1966 PalletSudoCall: {2033 PalletSudoCall: {
1967 _enum: {2034 _enum: {
1968 sudo: {2035 sudo: {
1984 }2051 }
1985 }2052 }
1986 },2053 },
1987 /**2054 /**
1988 * Lookup230: orml_vesting::module::Call<T>2055 * Lookup235: orml_vesting::module::Call<T>
1989 **/2056 **/
1990 OrmlVestingModuleCall: {2057 OrmlVestingModuleCall: {
1991 _enum: {2058 _enum: {
1992 claim: 'Null',2059 claim: 'Null',
2003 }2070 }
2004 }2071 }
2005 },2072 },
2006 /**2073 /**
2007 * Lookup232: orml_xtokens::module::Call<T>2074 * Lookup237: orml_xtokens::module::Call<T>
2008 **/2075 **/
2009 OrmlXtokensModuleCall: {2076 OrmlXtokensModuleCall: {
2010 _enum: {2077 _enum: {
2011 transfer: {2078 transfer: {
2046 }2113 }
2047 }2114 }
2048 },2115 },
2049 /**2116 /**
2050 * Lookup233: xcm::VersionedMultiAsset2117 * Lookup238: xcm::VersionedMultiAsset
2051 **/2118 **/
2052 XcmVersionedMultiAsset: {2119 XcmVersionedMultiAsset: {
2053 _enum: {2120 _enum: {
2054 __Unused0: 'Null',2121 __Unused0: 'Null',
2057 V3: 'XcmV3MultiAsset'2124 V3: 'XcmV3MultiAsset'
2058 }2125 }
2059 },2126 },
2060 /**2127 /**
2061 * Lookup236: orml_tokens::module::Call<T>2128 * Lookup241: orml_tokens::module::Call<T>
2062 **/2129 **/
2063 OrmlTokensModuleCall: {2130 OrmlTokensModuleCall: {
2064 _enum: {2131 _enum: {
2065 transfer: {2132 transfer: {
2091 }2158 }
2092 }2159 }
2093 },2160 },
2094 /**2161 /**
2095 * Lookup237: pallet_identity::pallet::Call<T>2162 * Lookup242: pallet_identity::pallet::Call<T>
2096 **/2163 **/
2097 PalletIdentityCall: {2164 PalletIdentityCall: {
2098 _enum: {2165 _enum: {
2099 add_registrar: {2166 add_registrar: {
2160 }2227 }
2161 }2228 }
2162 },2229 },
2163 /**2230 /**
2164 * Lookup238: pallet_identity::types::IdentityInfo<FieldLimit>2231 * Lookup243: pallet_identity::types::IdentityInfo<FieldLimit>
2165 **/2232 **/
2166 PalletIdentityIdentityInfo: {2233 PalletIdentityIdentityInfo: {
2167 additional: 'Vec<(Data,Data)>',2234 additional: 'Vec<(Data,Data)>',
2168 display: 'Data',2235 display: 'Data',
2174 image: 'Data',2241 image: 'Data',
2175 twitter: 'Data'2242 twitter: 'Data'
2176 },2243 },
2177 /**2244 /**
2178 * Lookup274: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>2245 * Lookup279: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>
2179 **/2246 **/
2180 PalletIdentityBitFlags: {2247 PalletIdentityBitFlags: {
2181 _bitLength: 64,2248 _bitLength: 64,
2182 Display: 1,2249 Display: 1,
2188 Image: 64,2255 Image: 64,
2189 Twitter: 1282256 Twitter: 128
2190 },2257 },
2191 /**2258 /**
2192 * Lookup275: pallet_identity::types::IdentityField2259 * Lookup280: pallet_identity::types::IdentityField
2193 **/2260 **/
2194 PalletIdentityIdentityField: {2261 PalletIdentityIdentityField: {
2195 _enum: ['__Unused0', 'Display', 'Legal', '__Unused3', 'Web', '__Unused5', '__Unused6', '__Unused7', 'Riot', '__Unused9', '__Unused10', '__Unused11', '__Unused12', '__Unused13', '__Unused14', '__Unused15', 'Email', '__Unused17', '__Unused18', '__Unused19', '__Unused20', '__Unused21', '__Unused22', '__Unused23', '__Unused24', '__Unused25', '__Unused26', '__Unused27', '__Unused28', '__Unused29', '__Unused30', '__Unused31', 'PgpFingerprint', '__Unused33', '__Unused34', '__Unused35', '__Unused36', '__Unused37', '__Unused38', '__Unused39', '__Unused40', '__Unused41', '__Unused42', '__Unused43', '__Unused44', '__Unused45', '__Unused46', '__Unused47', '__Unused48', '__Unused49', '__Unused50', '__Unused51', '__Unused52', '__Unused53', '__Unused54', '__Unused55', '__Unused56', '__Unused57', '__Unused58', '__Unused59', '__Unused60', '__Unused61', '__Unused62', '__Unused63', 'Image', '__Unused65', '__Unused66', '__Unused67', '__Unused68', '__Unused69', '__Unused70', '__Unused71', '__Unused72', '__Unused73', '__Unused74', '__Unused75', '__Unused76', '__Unused77', '__Unused78', '__Unused79', '__Unused80', '__Unused81', '__Unused82', '__Unused83', '__Unused84', '__Unused85', '__Unused86', '__Unused87', '__Unused88', '__Unused89', '__Unused90', '__Unused91', '__Unused92', '__Unused93', '__Unused94', '__Unused95', '__Unused96', '__Unused97', '__Unused98', '__Unused99', '__Unused100', '__Unused101', '__Unused102', '__Unused103', '__Unused104', '__Unused105', '__Unused106', '__Unused107', '__Unused108', '__Unused109', '__Unused110', '__Unused111', '__Unused112', '__Unused113', '__Unused114', '__Unused115', '__Unused116', '__Unused117', '__Unused118', '__Unused119', '__Unused120', '__Unused121', '__Unused122', '__Unused123', '__Unused124', '__Unused125', '__Unused126', '__Unused127', 'Twitter']2262 _enum: ['__Unused0', 'Display', 'Legal', '__Unused3', 'Web', '__Unused5', '__Unused6', '__Unused7', 'Riot', '__Unused9', '__Unused10', '__Unused11', '__Unused12', '__Unused13', '__Unused14', '__Unused15', 'Email', '__Unused17', '__Unused18', '__Unused19', '__Unused20', '__Unused21', '__Unused22', '__Unused23', '__Unused24', '__Unused25', '__Unused26', '__Unused27', '__Unused28', '__Unused29', '__Unused30', '__Unused31', 'PgpFingerprint', '__Unused33', '__Unused34', '__Unused35', '__Unused36', '__Unused37', '__Unused38', '__Unused39', '__Unused40', '__Unused41', '__Unused42', '__Unused43', '__Unused44', '__Unused45', '__Unused46', '__Unused47', '__Unused48', '__Unused49', '__Unused50', '__Unused51', '__Unused52', '__Unused53', '__Unused54', '__Unused55', '__Unused56', '__Unused57', '__Unused58', '__Unused59', '__Unused60', '__Unused61', '__Unused62', '__Unused63', 'Image', '__Unused65', '__Unused66', '__Unused67', '__Unused68', '__Unused69', '__Unused70', '__Unused71', '__Unused72', '__Unused73', '__Unused74', '__Unused75', '__Unused76', '__Unused77', '__Unused78', '__Unused79', '__Unused80', '__Unused81', '__Unused82', '__Unused83', '__Unused84', '__Unused85', '__Unused86', '__Unused87', '__Unused88', '__Unused89', '__Unused90', '__Unused91', '__Unused92', '__Unused93', '__Unused94', '__Unused95', '__Unused96', '__Unused97', '__Unused98', '__Unused99', '__Unused100', '__Unused101', '__Unused102', '__Unused103', '__Unused104', '__Unused105', '__Unused106', '__Unused107', '__Unused108', '__Unused109', '__Unused110', '__Unused111', '__Unused112', '__Unused113', '__Unused114', '__Unused115', '__Unused116', '__Unused117', '__Unused118', '__Unused119', '__Unused120', '__Unused121', '__Unused122', '__Unused123', '__Unused124', '__Unused125', '__Unused126', '__Unused127', 'Twitter']
2196 },2263 },
2197 /**2264 /**
2198 * Lookup276: pallet_identity::types::Judgement<Balance>2265 * Lookup281: pallet_identity::types::Judgement<Balance>
2199 **/2266 **/
2200 PalletIdentityJudgement: {2267 PalletIdentityJudgement: {
2201 _enum: {2268 _enum: {
2202 Unknown: 'Null',2269 Unknown: 'Null',
2208 Erroneous: 'Null'2275 Erroneous: 'Null'
2209 }2276 }
2210 },2277 },
2211 /**2278 /**
2212 * Lookup279: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>2279 * Lookup284: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>
2213 **/2280 **/
2214 PalletIdentityRegistration: {2281 PalletIdentityRegistration: {
2215 judgements: 'Vec<(u32,PalletIdentityJudgement)>',2282 judgements: 'Vec<(u32,PalletIdentityJudgement)>',
2216 deposit: 'u128',2283 deposit: 'u128',
2217 info: 'PalletIdentityIdentityInfo'2284 info: 'PalletIdentityIdentityInfo'
2218 },2285 },
2219 /**2286 /**
2220 * Lookup287: pallet_preimage::pallet::Call<T>2287 * Lookup292: pallet_preimage::pallet::Call<T>
2221 **/2288 **/
2222 PalletPreimageCall: {2289 PalletPreimageCall: {
2223 _enum: {2290 _enum: {
2224 note_preimage: {2291 note_preimage: {
2244 }2311 }
2245 }2312 }
2246 },2313 },
2247 /**2314 /**
2248 * Lookup288: cumulus_pallet_xcmp_queue::pallet::Call<T>2315 * Lookup293: cumulus_pallet_xcmp_queue::pallet::Call<T>
2249 **/2316 **/
2250 CumulusPalletXcmpQueueCall: {2317 CumulusPalletXcmpQueueCall: {
2251 _enum: {2318 _enum: {
2252 service_overweight: {2319 service_overweight: {
2293 }2360 }
2294 }2361 }
2295 },2362 },
2296 /**2363 /**
2297 * Lookup289: pallet_xcm::pallet::Call<T>2364 * Lookup294: pallet_xcm::pallet::Call<T>
2298 **/2365 **/
2299 PalletXcmCall: {2366 PalletXcmCall: {
2300 _enum: {2367 _enum: {
2301 send: {2368 send: {
2344 assets: 'XcmVersionedMultiAssets',2411 assets: 'XcmVersionedMultiAssets',
2345 feeAssetItem: 'u32',2412 feeAssetItem: 'u32',
2346 weightLimit: 'XcmV3WeightLimit'2413 weightLimit: 'XcmV3WeightLimit',
2347 }2414 },
2415 force_suspension: {
2416 suspended: 'bool'
2417 }
2348 }2418 }
2349 },2419 },
2350 /**2420 /**
2351 * Lookup290: xcm::VersionedXcm<RuntimeCall>2421 * Lookup295: xcm::VersionedXcm<RuntimeCall>
2352 **/2422 **/
2353 XcmVersionedXcm: {2423 XcmVersionedXcm: {
2354 _enum: {2424 _enum: {
2355 __Unused0: 'Null',2425 __Unused0: 'Null',
2358 V3: 'XcmV3Xcm'2428 V3: 'XcmV3Xcm'
2359 }2429 }
2360 },2430 },
2361 /**2431 /**
2362 * Lookup291: xcm::v2::Xcm<RuntimeCall>2432 * Lookup296: xcm::v2::Xcm<RuntimeCall>
2363 **/2433 **/
2364 XcmV2Xcm: 'Vec<XcmV2Instruction>',2434 XcmV2Xcm: 'Vec<XcmV2Instruction>',
2365 /**2435 /**
2366 * Lookup293: xcm::v2::Instruction<RuntimeCall>2436 * Lookup298: xcm::v2::Instruction<RuntimeCall>
2367 **/2437 **/
2368 XcmV2Instruction: {2438 XcmV2Instruction: {
2369 _enum: {2439 _enum: {
2370 WithdrawAsset: 'XcmV2MultiassetMultiAssets',2440 WithdrawAsset: 'XcmV2MultiassetMultiAssets',
2460 UnsubscribeVersion: 'Null'2530 UnsubscribeVersion: 'Null'
2461 }2531 }
2462 },2532 },
2463 /**2533 /**
2464 * Lookup294: xcm::v2::Response2534 * Lookup299: xcm::v2::Response
2465 **/2535 **/
2466 XcmV2Response: {2536 XcmV2Response: {
2467 _enum: {2537 _enum: {
2468 Null: 'Null',2538 Null: 'Null',
2471 Version: 'u32'2541 Version: 'u32'
2472 }2542 }
2473 },2543 },
2474 /**2544 /**
2475 * Lookup297: xcm::v2::traits::Error2545 * Lookup302: xcm::v2::traits::Error
2476 **/2546 **/
2477 XcmV2TraitsError: {2547 XcmV2TraitsError: {
2478 _enum: {2548 _enum: {
2479 Overflow: 'Null',2549 Overflow: 'Null',
2504 WeightNotComputable: 'Null'2574 WeightNotComputable: 'Null'
2505 }2575 }
2506 },2576 },
2507 /**2577 /**
2508 * Lookup298: xcm::v2::multiasset::MultiAssetFilter2578 * Lookup303: xcm::v2::multiasset::MultiAssetFilter
2509 **/2579 **/
2510 XcmV2MultiassetMultiAssetFilter: {2580 XcmV2MultiassetMultiAssetFilter: {
2511 _enum: {2581 _enum: {
2512 Definite: 'XcmV2MultiassetMultiAssets',2582 Definite: 'XcmV2MultiassetMultiAssets',
2513 Wild: 'XcmV2MultiassetWildMultiAsset'2583 Wild: 'XcmV2MultiassetWildMultiAsset'
2514 }2584 }
2515 },2585 },
2516 /**2586 /**
2517 * Lookup299: xcm::v2::multiasset::WildMultiAsset2587 * Lookup304: xcm::v2::multiasset::WildMultiAsset
2518 **/2588 **/
2519 XcmV2MultiassetWildMultiAsset: {2589 XcmV2MultiassetWildMultiAsset: {
2520 _enum: {2590 _enum: {
2521 All: 'Null',2591 All: 'Null',
2525 }2595 }
2526 }2596 }
2527 },2597 },
2528 /**2598 /**
2529 * Lookup300: xcm::v2::multiasset::WildFungibility2599 * Lookup305: xcm::v2::multiasset::WildFungibility
2530 **/2600 **/
2531 XcmV2MultiassetWildFungibility: {2601 XcmV2MultiassetWildFungibility: {
2532 _enum: ['Fungible', 'NonFungible']2602 _enum: ['Fungible', 'NonFungible']
2533 },2603 },
2534 /**2604 /**
2535 * Lookup301: xcm::v2::WeightLimit2605 * Lookup306: xcm::v2::WeightLimit
2536 **/2606 **/
2537 XcmV2WeightLimit: {2607 XcmV2WeightLimit: {
2538 _enum: {2608 _enum: {
2539 Unlimited: 'Null',2609 Unlimited: 'Null',
2540 Limited: 'Compact<u64>'2610 Limited: 'Compact<u64>'
2541 }2611 }
2542 },2612 },
2543 /**2613 /**
2544 * Lookup310: cumulus_pallet_xcm::pallet::Call<T>2614 * Lookup315: cumulus_pallet_xcm::pallet::Call<T>
2545 **/2615 **/
2546 CumulusPalletXcmCall: 'Null',2616 CumulusPalletXcmCall: 'Null',
2547 /**2617 /**
2548 * Lookup311: cumulus_pallet_dmp_queue::pallet::Call<T>2618 * Lookup316: cumulus_pallet_dmp_queue::pallet::Call<T>
2549 **/2619 **/
2550 CumulusPalletDmpQueueCall: {2620 CumulusPalletDmpQueueCall: {
2551 _enum: {2621 _enum: {
2552 service_overweight: {2622 service_overweight: {
2555 }2625 }
2556 }2626 }
2557 },2627 },
2558 /**2628 /**
2559 * Lookup312: pallet_inflation::pallet::Call<T>2629 * Lookup317: pallet_inflation::pallet::Call<T>
2560 **/2630 **/
2561 PalletInflationCall: {2631 PalletInflationCall: {
2562 _enum: {2632 _enum: {
2563 start_inflation: {2633 start_inflation: {
2564 inflationStartRelayBlock: 'u32'2634 inflationStartRelayBlock: 'u32'
2565 }2635 }
2566 }2636 }
2567 },2637 },
2568 /**2638 /**
2569 * Lookup313: pallet_unique::Call<T>2639 * Lookup318: pallet_unique::pallet::Call<T>
2570 **/2640 **/
2571 PalletUniqueCall: {2641 PalletUniqueCall: {
2572 _enum: {2642 _enum: {
2573 create_collection: {2643 create_collection: {
2716 }2786 }
2717 }2787 }
2718 },2788 },
2719 /**2789 /**
2720 * Lookup318: up_data_structs::CollectionMode2790 * Lookup323: up_data_structs::CollectionMode
2721 **/2791 **/
2722 UpDataStructsCollectionMode: {2792 UpDataStructsCollectionMode: {
2723 _enum: {2793 _enum: {
2724 NFT: 'Null',2794 NFT: 'Null',
2725 Fungible: 'u8',2795 Fungible: 'u8',
2726 ReFungible: 'Null'2796 ReFungible: 'Null'
2727 }2797 }
2728 },2798 },
2729 /**2799 /**
2730 * Lookup319: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2800 * Lookup324: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
2731 **/2801 **/
2732 UpDataStructsCreateCollectionData: {2802 UpDataStructsCreateCollectionData: {
2733 mode: 'UpDataStructsCollectionMode',2803 mode: 'UpDataStructsCollectionMode',
2734 access: 'Option<UpDataStructsAccessMode>',2804 access: 'Option<UpDataStructsAccessMode>',
2741 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2811 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',
2742 properties: 'Vec<UpDataStructsProperty>'2812 properties: 'Vec<UpDataStructsProperty>'
2743 },2813 },
2744 /**2814 /**
2745 * Lookup321: up_data_structs::AccessMode2815 * Lookup326: up_data_structs::AccessMode
2746 **/2816 **/
2747 UpDataStructsAccessMode: {2817 UpDataStructsAccessMode: {
2748 _enum: ['Normal', 'AllowList']2818 _enum: ['Normal', 'AllowList']
2749 },2819 },
2750 /**2820 /**
2751 * Lookup323: up_data_structs::CollectionLimits2821 * Lookup328: up_data_structs::CollectionLimits
2752 **/2822 **/
2753 UpDataStructsCollectionLimits: {2823 UpDataStructsCollectionLimits: {
2754 accountTokenOwnershipLimit: 'Option<u32>',2824 accountTokenOwnershipLimit: 'Option<u32>',
2755 sponsoredDataSize: 'Option<u32>',2825 sponsoredDataSize: 'Option<u32>',
2761 ownerCanDestroy: 'Option<bool>',2831 ownerCanDestroy: 'Option<bool>',
2762 transfersEnabled: 'Option<bool>'2832 transfersEnabled: 'Option<bool>'
2763 },2833 },
2764 /**2834 /**
2765 * Lookup325: up_data_structs::SponsoringRateLimit2835 * Lookup330: up_data_structs::SponsoringRateLimit
2766 **/2836 **/
2767 UpDataStructsSponsoringRateLimit: {2837 UpDataStructsSponsoringRateLimit: {
2768 _enum: {2838 _enum: {
2769 SponsoringDisabled: 'Null',2839 SponsoringDisabled: 'Null',
2770 Blocks: 'u32'2840 Blocks: 'u32'
2771 }2841 }
2772 },2842 },
2773 /**2843 /**
2774 * Lookup328: up_data_structs::CollectionPermissions2844 * Lookup333: up_data_structs::CollectionPermissions
2775 **/2845 **/
2776 UpDataStructsCollectionPermissions: {2846 UpDataStructsCollectionPermissions: {
2777 access: 'Option<UpDataStructsAccessMode>',2847 access: 'Option<UpDataStructsAccessMode>',
2778 mintMode: 'Option<bool>',2848 mintMode: 'Option<bool>',
2779 nesting: 'Option<UpDataStructsNestingPermissions>'2849 nesting: 'Option<UpDataStructsNestingPermissions>'
2780 },2850 },
2781 /**2851 /**
2782 * Lookup330: up_data_structs::NestingPermissions2852 * Lookup335: up_data_structs::NestingPermissions
2783 **/2853 **/
2784 UpDataStructsNestingPermissions: {2854 UpDataStructsNestingPermissions: {
2785 tokenOwner: 'bool',2855 tokenOwner: 'bool',
2786 collectionAdmin: 'bool',2856 collectionAdmin: 'bool',
2787 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2857 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
2788 },2858 },
2789 /**2859 /**
2790 * Lookup332: up_data_structs::OwnerRestrictedSet2860 * Lookup337: up_data_structs::OwnerRestrictedSet
2791 **/2861 **/
2792 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2862 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
2793 /**2863 /**
2794 * Lookup337: up_data_structs::PropertyKeyPermission2864 * Lookup342: up_data_structs::PropertyKeyPermission
2795 **/2865 **/
2796 UpDataStructsPropertyKeyPermission: {2866 UpDataStructsPropertyKeyPermission: {
2797 key: 'Bytes',2867 key: 'Bytes',
2798 permission: 'UpDataStructsPropertyPermission'2868 permission: 'UpDataStructsPropertyPermission'
2799 },2869 },
2800 /**2870 /**
2801 * Lookup338: up_data_structs::PropertyPermission2871 * Lookup343: up_data_structs::PropertyPermission
2802 **/2872 **/
2803 UpDataStructsPropertyPermission: {2873 UpDataStructsPropertyPermission: {
2804 mutable: 'bool',2874 mutable: 'bool',
2805 collectionAdmin: 'bool',2875 collectionAdmin: 'bool',
2806 tokenOwner: 'bool'2876 tokenOwner: 'bool'
2807 },2877 },
2808 /**2878 /**
2809 * Lookup341: up_data_structs::Property2879 * Lookup346: up_data_structs::Property
2810 **/2880 **/
2811 UpDataStructsProperty: {2881 UpDataStructsProperty: {
2812 key: 'Bytes',2882 key: 'Bytes',
2813 value: 'Bytes'2883 value: 'Bytes'
2814 },2884 },
2815 /**2885 /**
2816 * Lookup344: up_data_structs::CreateItemData2886 * Lookup349: up_data_structs::CreateItemData
2817 **/2887 **/
2818 UpDataStructsCreateItemData: {2888 UpDataStructsCreateItemData: {
2819 _enum: {2889 _enum: {
2820 NFT: 'UpDataStructsCreateNftData',2890 NFT: 'UpDataStructsCreateNftData',
2821 Fungible: 'UpDataStructsCreateFungibleData',2891 Fungible: 'UpDataStructsCreateFungibleData',
2822 ReFungible: 'UpDataStructsCreateReFungibleData'2892 ReFungible: 'UpDataStructsCreateReFungibleData'
2823 }2893 }
2824 },2894 },
2825 /**2895 /**
2826 * Lookup345: up_data_structs::CreateNftData2896 * Lookup350: up_data_structs::CreateNftData
2827 **/2897 **/
2828 UpDataStructsCreateNftData: {2898 UpDataStructsCreateNftData: {
2829 properties: 'Vec<UpDataStructsProperty>'2899 properties: 'Vec<UpDataStructsProperty>'
2830 },2900 },
2831 /**2901 /**
2832 * Lookup346: up_data_structs::CreateFungibleData2902 * Lookup351: up_data_structs::CreateFungibleData
2833 **/2903 **/
2834 UpDataStructsCreateFungibleData: {2904 UpDataStructsCreateFungibleData: {
2835 value: 'u128'2905 value: 'u128'
2836 },2906 },
2837 /**2907 /**
2838 * Lookup347: up_data_structs::CreateReFungibleData2908 * Lookup352: up_data_structs::CreateReFungibleData
2839 **/2909 **/
2840 UpDataStructsCreateReFungibleData: {2910 UpDataStructsCreateReFungibleData: {
2841 pieces: 'u128',2911 pieces: 'u128',
2842 properties: 'Vec<UpDataStructsProperty>'2912 properties: 'Vec<UpDataStructsProperty>'
2843 },2913 },
2844 /**2914 /**
2845 * Lookup350: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2915 * Lookup355: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2846 **/2916 **/
2847 UpDataStructsCreateItemExData: {2917 UpDataStructsCreateItemExData: {
2848 _enum: {2918 _enum: {
2849 NFT: 'Vec<UpDataStructsCreateNftExData>',2919 NFT: 'Vec<UpDataStructsCreateNftExData>',
2852 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2922 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'
2853 }2923 }
2854 },2924 },
2855 /**2925 /**
2856 * Lookup352: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2926 * Lookup357: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2857 **/2927 **/
2858 UpDataStructsCreateNftExData: {2928 UpDataStructsCreateNftExData: {
2859 properties: 'Vec<UpDataStructsProperty>',2929 properties: 'Vec<UpDataStructsProperty>',
2860 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2930 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
2861 },2931 },
2862 /**2932 /**
2863 * Lookup359: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2933 * Lookup364: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2864 **/2934 **/
2865 UpDataStructsCreateRefungibleExSingleOwner: {2935 UpDataStructsCreateRefungibleExSingleOwner: {
2866 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2936 user: 'PalletEvmAccountBasicCrossAccountIdRepr',
2867 pieces: 'u128',2937 pieces: 'u128',
2868 properties: 'Vec<UpDataStructsProperty>'2938 properties: 'Vec<UpDataStructsProperty>'
2869 },2939 },
2870 /**2940 /**
2871 * Lookup361: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2941 * Lookup366: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2872 **/2942 **/
2873 UpDataStructsCreateRefungibleExMultipleOwners: {2943 UpDataStructsCreateRefungibleExMultipleOwners: {
2874 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2944 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
2875 properties: 'Vec<UpDataStructsProperty>'2945 properties: 'Vec<UpDataStructsProperty>'
2876 },2946 },
2877 /**2947 /**
2878 * Lookup362: pallet_configuration::pallet::Call<T>2948 * Lookup367: pallet_configuration::pallet::Call<T>
2879 **/2949 **/
2880 PalletConfigurationCall: {2950 PalletConfigurationCall: {
2881 _enum: {2951 _enum: {
2882 set_weight_to_fee_coefficient_override: {2952 set_weight_to_fee_coefficient_override: {
2900 }2970 }
2901 }2971 }
2902 },2972 },
2903 /**2973 /**
2904 * Lookup364: pallet_configuration::AppPromotionConfiguration<BlockNumber>2974 * Lookup369: pallet_configuration::AppPromotionConfiguration<BlockNumber>
2905 **/2975 **/
2906 PalletConfigurationAppPromotionConfiguration: {2976 PalletConfigurationAppPromotionConfiguration: {
2907 recalculationInterval: 'Option<u32>',2977 recalculationInterval: 'Option<u32>',
2908 pendingInterval: 'Option<u32>',2978 pendingInterval: 'Option<u32>',
2909 intervalIncome: 'Option<Perbill>',2979 intervalIncome: 'Option<Perbill>',
2910 maxStakersPerCalculation: 'Option<u8>'2980 maxStakersPerCalculation: 'Option<u8>'
2911 },2981 },
2912 /**
2913 * Lookup368: pallet_template_transaction_payment::Call<T>
2914 **/
2915 PalletTemplateTransactionPaymentCall: 'Null',
2916 /**2982 /**
2917 * Lookup369: pallet_structure::pallet::Call<T>2983 * Lookup373: pallet_structure::pallet::Call<T>
2918 **/2984 **/
2919 PalletStructureCall: 'Null',2985 PalletStructureCall: 'Null',
2920 /**2986 /**
2921 * Lookup370: pallet_app_promotion::pallet::Call<T>2987 * Lookup374: pallet_app_promotion::pallet::Call<T>
2922 **/2988 **/
2923 PalletAppPromotionCall: {2989 PalletAppPromotionCall: {
2924 _enum: {2990 _enum: {
2925 set_admin_address: {2991 set_admin_address: {
2949 }3015 }
2950 }3016 }
2951 },3017 },
2952 /**3018 /**
2953 * Lookup371: pallet_foreign_assets::module::Call<T>3019 * Lookup375: pallet_foreign_assets::module::Call<T>
2954 **/3020 **/
2955 PalletForeignAssetsModuleCall: {3021 PalletForeignAssetsModuleCall: {
2956 _enum: {3022 _enum: {
2957 register_foreign_asset: {3023 register_foreign_asset: {
2966 }3032 }
2967 }3033 }
2968 },3034 },
2969 /**3035 /**
2970 * Lookup372: pallet_evm::pallet::Call<T>3036 * Lookup376: pallet_evm::pallet::Call<T>
2971 **/3037 **/
2972 PalletEvmCall: {3038 PalletEvmCall: {
2973 _enum: {3039 _enum: {
2974 withdraw: {3040 withdraw: {
3009 }3075 }
3010 }3076 }
3011 },3077 },
3012 /**3078 /**
3013 * Lookup378: pallet_ethereum::pallet::Call<T>3079 * Lookup382: pallet_ethereum::pallet::Call<T>
3014 **/3080 **/
3015 PalletEthereumCall: {3081 PalletEthereumCall: {
3016 _enum: {3082 _enum: {
3017 transact: {3083 transact: {
3018 transaction: 'EthereumTransactionTransactionV2'3084 transaction: 'EthereumTransactionTransactionV2'
3019 }3085 }
3020 }3086 }
3021 },3087 },
3022 /**3088 /**
3023 * Lookup379: ethereum::transaction::TransactionV23089 * Lookup383: ethereum::transaction::TransactionV2
3024 **/3090 **/
3025 EthereumTransactionTransactionV2: {3091 EthereumTransactionTransactionV2: {
3026 _enum: {3092 _enum: {
3027 Legacy: 'EthereumTransactionLegacyTransaction',3093 Legacy: 'EthereumTransactionLegacyTransaction',
3028 EIP2930: 'EthereumTransactionEip2930Transaction',3094 EIP2930: 'EthereumTransactionEip2930Transaction',
3029 EIP1559: 'EthereumTransactionEip1559Transaction'3095 EIP1559: 'EthereumTransactionEip1559Transaction'
3030 }3096 }
3031 },3097 },
3032 /**3098 /**
3033 * Lookup380: ethereum::transaction::LegacyTransaction3099 * Lookup384: ethereum::transaction::LegacyTransaction
3034 **/3100 **/
3035 EthereumTransactionLegacyTransaction: {3101 EthereumTransactionLegacyTransaction: {
3036 nonce: 'U256',3102 nonce: 'U256',
3037 gasPrice: 'U256',3103 gasPrice: 'U256',
3041 input: 'Bytes',3107 input: 'Bytes',
3042 signature: 'EthereumTransactionTransactionSignature'3108 signature: 'EthereumTransactionTransactionSignature'
3043 },3109 },
3044 /**3110 /**
3045 * Lookup381: ethereum::transaction::TransactionAction3111 * Lookup385: ethereum::transaction::TransactionAction
3046 **/3112 **/
3047 EthereumTransactionTransactionAction: {3113 EthereumTransactionTransactionAction: {
3048 _enum: {3114 _enum: {
3049 Call: 'H160',3115 Call: 'H160',
3050 Create: 'Null'3116 Create: 'Null'
3051 }3117 }
3052 },3118 },
3053 /**3119 /**
3054 * Lookup382: ethereum::transaction::TransactionSignature3120 * Lookup386: ethereum::transaction::TransactionSignature
3055 **/3121 **/
3056 EthereumTransactionTransactionSignature: {3122 EthereumTransactionTransactionSignature: {
3057 v: 'u64',3123 v: 'u64',
3058 r: 'H256',3124 r: 'H256',
3059 s: 'H256'3125 s: 'H256'
3060 },3126 },
3061 /**3127 /**
3062 * Lookup384: ethereum::transaction::EIP2930Transaction3128 * Lookup388: ethereum::transaction::EIP2930Transaction
3063 **/3129 **/
3064 EthereumTransactionEip2930Transaction: {3130 EthereumTransactionEip2930Transaction: {
3065 chainId: 'u64',3131 chainId: 'u64',
3066 nonce: 'U256',3132 nonce: 'U256',
3074 r: 'H256',3140 r: 'H256',
3075 s: 'H256'3141 s: 'H256'
3076 },3142 },
3077 /**3143 /**
3078 * Lookup386: ethereum::transaction::AccessListItem3144 * Lookup390: ethereum::transaction::AccessListItem
3079 **/3145 **/
3080 EthereumTransactionAccessListItem: {3146 EthereumTransactionAccessListItem: {
3081 address: 'H160',3147 address: 'H160',
3082 storageKeys: 'Vec<H256>'3148 storageKeys: 'Vec<H256>'
3083 },3149 },
3084 /**3150 /**
3085 * Lookup387: ethereum::transaction::EIP1559Transaction3151 * Lookup391: ethereum::transaction::EIP1559Transaction
3086 **/3152 **/
3087 EthereumTransactionEip1559Transaction: {3153 EthereumTransactionEip1559Transaction: {
3088 chainId: 'u64',3154 chainId: 'u64',
3089 nonce: 'U256',3155 nonce: 'U256',
3098 r: 'H256',3164 r: 'H256',
3099 s: 'H256'3165 s: 'H256'
3100 },3166 },
3101 /**3167 /**
3102 * Lookup388: pallet_evm_coder_substrate::pallet::Call<T>3168 * Lookup392: pallet_evm_coder_substrate::pallet::Call<T>
3103 **/3169 **/
3104 PalletEvmCoderSubstrateCall: {3170 PalletEvmCoderSubstrateCall: {
3105 _enum: ['empty_call']3171 _enum: ['empty_call']
3106 },3172 },
3107 /**3173 /**
3108 * Lookup389: pallet_evm_contract_helpers::pallet::Call<T>3174 * Lookup393: pallet_evm_contract_helpers::pallet::Call<T>
3109 **/3175 **/
3110 PalletEvmContractHelpersCall: {3176 PalletEvmContractHelpersCall: {
3111 _enum: {3177 _enum: {
3112 migrate_from_self_sponsoring: {3178 migrate_from_self_sponsoring: {
3113 addresses: 'Vec<H160>'3179 addresses: 'Vec<H160>'
3114 }3180 }
3115 }3181 }
3116 },3182 },
3117 /**3183 /**
3118 * Lookup391: pallet_evm_migration::pallet::Call<T>3184 * Lookup395: pallet_evm_migration::pallet::Call<T>
3119 **/3185 **/
3120 PalletEvmMigrationCall: {3186 PalletEvmMigrationCall: {
3121 _enum: {3187 _enum: {
3122 begin: {3188 begin: {
3139 remove_rmrk_data: 'Null'3205 remove_rmrk_data: 'Null'
3140 }3206 }
3141 },3207 },
3142 /**3208 /**
3143 * Lookup395: pallet_maintenance::pallet::Call<T>3209 * Lookup399: pallet_maintenance::pallet::Call<T>
3144 **/3210 **/
3145 PalletMaintenanceCall: {3211 PalletMaintenanceCall: {
3146 _enum: {3212 _enum: {
3147 enable: 'Null',3213 enable: 'Null',
3155 }3221 }
3156 }3222 }
3157 },3223 },
3158 /**3224 /**
3159 * Lookup396: pallet_test_utils::pallet::Call<T>3225 * Lookup400: pallet_test_utils::pallet::Call<T>
3160 **/3226 **/
3161 PalletTestUtilsCall: {3227 PalletTestUtilsCall: {
3162 _enum: {3228 _enum: {
3163 enable: 'Null',3229 enable: 'Null',
3174 }3240 }
3175 }3241 }
3176 },3242 },
3177 /**3243 /**
3178 * Lookup398: pallet_sudo::pallet::Error<T>3244 * Lookup402: pallet_sudo::pallet::Error<T>
3179 **/3245 **/
3180 PalletSudoError: {3246 PalletSudoError: {
3181 _enum: ['RequireSudo']3247 _enum: ['RequireSudo']
3182 },3248 },
3183 /**3249 /**
3184 * Lookup400: orml_vesting::module::Error<T>3250 * Lookup404: orml_vesting::module::Error<T>
3185 **/3251 **/
3186 OrmlVestingModuleError: {3252 OrmlVestingModuleError: {
3187 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']3253 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
3188 },3254 },
3189 /**3255 /**
3190 * Lookup401: orml_xtokens::module::Error<T>3256 * Lookup405: orml_xtokens::module::Error<T>
3191 **/3257 **/
3192 OrmlXtokensModuleError: {3258 OrmlXtokensModuleError: {
3193 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']3259 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
3194 },3260 },
3195 /**3261 /**
3196 * Lookup404: orml_tokens::BalanceLock<Balance>3262 * Lookup408: orml_tokens::BalanceLock<Balance>
3197 **/3263 **/
3198 OrmlTokensBalanceLock: {3264 OrmlTokensBalanceLock: {
3199 id: '[u8;8]',3265 id: '[u8;8]',
3200 amount: 'u128'3266 amount: 'u128'
3201 },3267 },
3202 /**3268 /**
3203 * Lookup406: orml_tokens::AccountData<Balance>3269 * Lookup410: orml_tokens::AccountData<Balance>
3204 **/3270 **/
3205 OrmlTokensAccountData: {3271 OrmlTokensAccountData: {
3206 free: 'u128',3272 free: 'u128',
3207 reserved: 'u128',3273 reserved: 'u128',
3208 frozen: 'u128'3274 frozen: 'u128'
3209 },3275 },
3210 /**3276 /**
3211 * Lookup408: orml_tokens::ReserveData<ReserveIdentifier, Balance>3277 * Lookup412: orml_tokens::ReserveData<ReserveIdentifier, Balance>
3212 **/3278 **/
3213 OrmlTokensReserveData: {3279 OrmlTokensReserveData: {
3214 id: 'Null',3280 id: 'Null',
3215 amount: 'u128'3281 amount: 'u128'
3216 },3282 },
3217 /**3283 /**
3218 * Lookup410: orml_tokens::module::Error<T>3284 * Lookup414: orml_tokens::module::Error<T>
3219 **/3285 **/
3220 OrmlTokensModuleError: {3286 OrmlTokensModuleError: {
3221 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']3287 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
3222 },3288 },
3223 /**3289 /**
3224 * Lookup415: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>3290 * Lookup419: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>
3225 **/3291 **/
3226 PalletIdentityRegistrarInfo: {3292 PalletIdentityRegistrarInfo: {
3227 account: 'AccountId32',3293 account: 'AccountId32',
3228 fee: 'u128',3294 fee: 'u128',
3229 fields: 'PalletIdentityBitFlags'3295 fields: 'PalletIdentityBitFlags'
3230 },3296 },
3231 /**3297 /**
3232 * Lookup417: pallet_identity::pallet::Error<T>3298 * Lookup421: pallet_identity::pallet::Error<T>
3233 **/3299 **/
3234 PalletIdentityError: {3300 PalletIdentityError: {
3235 _enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyFields', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed']3301 _enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyFields', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed']
3236 },3302 },
3237 /**3303 /**
3238 * Lookup418: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Balance>3304 * Lookup422: pallet_preimage::RequestStatus<sp_core::crypto::AccountId32, Balance>
3239 **/3305 **/
3240 PalletPreimageRequestStatus: {3306 PalletPreimageRequestStatus: {
3241 _enum: {3307 _enum: {
3242 Unrequested: {3308 Unrequested: {
3250 }3316 }
3251 }3317 }
3252 },3318 },
3253 /**3319 /**
3254 * Lookup423: pallet_preimage::pallet::Error<T>3320 * Lookup427: pallet_preimage::pallet::Error<T>
3255 **/3321 **/
3256 PalletPreimageError: {3322 PalletPreimageError: {
3257 _enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested']3323 _enum: ['TooBig', 'AlreadyNoted', 'NotAuthorized', 'NotNoted', 'Requested', 'NotRequested']
3258 },3324 },
3259 /**3325 /**
3260 * Lookup425: cumulus_pallet_xcmp_queue::InboundChannelDetails3326 * Lookup429: cumulus_pallet_xcmp_queue::InboundChannelDetails
3261 **/3327 **/
3262 CumulusPalletXcmpQueueInboundChannelDetails: {3328 CumulusPalletXcmpQueueInboundChannelDetails: {
3263 sender: 'u32',3329 sender: 'u32',
3264 state: 'CumulusPalletXcmpQueueInboundState',3330 state: 'CumulusPalletXcmpQueueInboundState',
3265 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'3331 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
3266 },3332 },
3267 /**3333 /**
3268 * Lookup426: cumulus_pallet_xcmp_queue::InboundState3334 * Lookup430: cumulus_pallet_xcmp_queue::InboundState
3269 **/3335 **/
3270 CumulusPalletXcmpQueueInboundState: {3336 CumulusPalletXcmpQueueInboundState: {
3271 _enum: ['Ok', 'Suspended']3337 _enum: ['Ok', 'Suspended']
3272 },3338 },
3273 /**3339 /**
3274 * Lookup429: polkadot_parachain::primitives::XcmpMessageFormat3340 * Lookup433: polkadot_parachain::primitives::XcmpMessageFormat
3275 **/3341 **/
3276 PolkadotParachainPrimitivesXcmpMessageFormat: {3342 PolkadotParachainPrimitivesXcmpMessageFormat: {
3277 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3343 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
3278 },3344 },
3279 /**3345 /**
3280 * Lookup432: cumulus_pallet_xcmp_queue::OutboundChannelDetails3346 * Lookup436: cumulus_pallet_xcmp_queue::OutboundChannelDetails
3281 **/3347 **/
3282 CumulusPalletXcmpQueueOutboundChannelDetails: {3348 CumulusPalletXcmpQueueOutboundChannelDetails: {
3283 recipient: 'u32',3349 recipient: 'u32',
3284 state: 'CumulusPalletXcmpQueueOutboundState',3350 state: 'CumulusPalletXcmpQueueOutboundState',
3285 signalsExist: 'bool',3351 signalsExist: 'bool',
3286 firstIndex: 'u16',3352 firstIndex: 'u16',
3287 lastIndex: 'u16'3353 lastIndex: 'u16'
3288 },3354 },
3289 /**3355 /**
3290 * Lookup433: cumulus_pallet_xcmp_queue::OutboundState3356 * Lookup437: cumulus_pallet_xcmp_queue::OutboundState
3291 **/3357 **/
3292 CumulusPalletXcmpQueueOutboundState: {3358 CumulusPalletXcmpQueueOutboundState: {
3293 _enum: ['Ok', 'Suspended']3359 _enum: ['Ok', 'Suspended']
3294 },3360 },
3295 /**3361 /**
3296 * Lookup435: cumulus_pallet_xcmp_queue::QueueConfigData3362 * Lookup439: cumulus_pallet_xcmp_queue::QueueConfigData
3297 **/3363 **/
3298 CumulusPalletXcmpQueueQueueConfigData: {3364 CumulusPalletXcmpQueueQueueConfigData: {
3299 suspendThreshold: 'u32',3365 suspendThreshold: 'u32',
3300 dropThreshold: 'u32',3366 dropThreshold: 'u32',
3303 weightRestrictDecay: 'SpWeightsWeightV2Weight',3369 weightRestrictDecay: 'SpWeightsWeightV2Weight',
3304 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3370 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
3305 },3371 },
3306 /**3372 /**
3307 * Lookup437: cumulus_pallet_xcmp_queue::pallet::Error<T>3373 * Lookup441: cumulus_pallet_xcmp_queue::pallet::Error<T>
3308 **/3374 **/
3309 CumulusPalletXcmpQueueError: {3375 CumulusPalletXcmpQueueError: {
3310 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3376 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
3311 },3377 },
3312 /**3378 /**
3313 * Lookup438: pallet_xcm::pallet::QueryStatus<BlockNumber>3379 * Lookup442: pallet_xcm::pallet::QueryStatus<BlockNumber>
3314 **/3380 **/
3315 PalletXcmQueryStatus: {3381 PalletXcmQueryStatus: {
3316 _enum: {3382 _enum: {
3317 Pending: {3383 Pending: {
3330 }3396 }
3331 }3397 }
3332 },3398 },
3333 /**3399 /**
3334 * Lookup442: xcm::VersionedResponse3400 * Lookup446: xcm::VersionedResponse
3335 **/3401 **/
3336 XcmVersionedResponse: {3402 XcmVersionedResponse: {
3337 _enum: {3403 _enum: {
3338 __Unused0: 'Null',3404 __Unused0: 'Null',
3341 V3: 'XcmV3Response'3407 V3: 'XcmV3Response'
3342 }3408 }
3343 },3409 },
3344 /**3410 /**
3345 * Lookup448: pallet_xcm::pallet::VersionMigrationStage3411 * Lookup452: pallet_xcm::pallet::VersionMigrationStage
3346 **/3412 **/
3347 PalletXcmVersionMigrationStage: {3413 PalletXcmVersionMigrationStage: {
3348 _enum: {3414 _enum: {
3349 MigrateSupportedVersion: 'Null',3415 MigrateSupportedVersion: 'Null',
3352 MigrateAndNotifyOldTargets: 'Null'3418 MigrateAndNotifyOldTargets: 'Null'
3353 }3419 }
3354 },3420 },
3355 /**3421 /**
3356 * Lookup451: xcm::VersionedAssetId3422 * Lookup455: xcm::VersionedAssetId
3357 **/3423 **/
3358 XcmVersionedAssetId: {3424 XcmVersionedAssetId: {
3359 _enum: {3425 _enum: {
3360 __Unused0: 'Null',3426 __Unused0: 'Null',
3363 V3: 'XcmV3MultiassetAssetId'3429 V3: 'XcmV3MultiassetAssetId'
3364 }3430 }
3365 },3431 },
3366 /**3432 /**
3367 * Lookup452: pallet_xcm::pallet::RemoteLockedFungibleRecord3433 * Lookup456: pallet_xcm::pallet::RemoteLockedFungibleRecord
3368 **/3434 **/
3369 PalletXcmRemoteLockedFungibleRecord: {3435 PalletXcmRemoteLockedFungibleRecord: {
3370 amount: 'u128',3436 amount: 'u128',
3371 owner: 'XcmVersionedMultiLocation',3437 owner: 'XcmVersionedMultiLocation',
3372 locker: 'XcmVersionedMultiLocation',3438 locker: 'XcmVersionedMultiLocation',
3373 users: 'u32'3439 users: 'u32'
3374 },3440 },
3375 /**3441 /**
3376 * Lookup456: pallet_xcm::pallet::Error<T>3442 * Lookup460: pallet_xcm::pallet::Error<T>
3377 **/3443 **/
3378 PalletXcmError: {3444 PalletXcmError: {
3379 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed', 'InvalidAsset', 'LowBalance', 'TooManyLocks', 'AccountNotSovereign', 'FeesNotMet', 'LockNotFound', 'InUse']3445 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed', 'InvalidAsset', 'LowBalance', 'TooManyLocks', 'AccountNotSovereign', 'FeesNotMet', 'LockNotFound', 'InUse']
3380 },3446 },
3381 /**3447 /**
3382 * Lookup457: cumulus_pallet_xcm::pallet::Error<T>3448 * Lookup461: cumulus_pallet_xcm::pallet::Error<T>
3383 **/3449 **/
3384 CumulusPalletXcmError: 'Null',3450 CumulusPalletXcmError: 'Null',
3385 /**3451 /**
3386 * Lookup458: cumulus_pallet_dmp_queue::ConfigData3452 * Lookup462: cumulus_pallet_dmp_queue::ConfigData
3387 **/3453 **/
3388 CumulusPalletDmpQueueConfigData: {3454 CumulusPalletDmpQueueConfigData: {
3389 maxIndividual: 'SpWeightsWeightV2Weight'3455 maxIndividual: 'SpWeightsWeightV2Weight'
3390 },3456 },
3391 /**3457 /**
3392 * Lookup459: cumulus_pallet_dmp_queue::PageIndexData3458 * Lookup463: cumulus_pallet_dmp_queue::PageIndexData
3393 **/3459 **/
3394 CumulusPalletDmpQueuePageIndexData: {3460 CumulusPalletDmpQueuePageIndexData: {
3395 beginUsed: 'u32',3461 beginUsed: 'u32',
3396 endUsed: 'u32',3462 endUsed: 'u32',
3397 overweightCount: 'u64'3463 overweightCount: 'u64'
3398 },3464 },
3399 /**3465 /**
3400 * Lookup462: cumulus_pallet_dmp_queue::pallet::Error<T>3466 * Lookup466: cumulus_pallet_dmp_queue::pallet::Error<T>
3401 **/3467 **/
3402 CumulusPalletDmpQueueError: {3468 CumulusPalletDmpQueueError: {
3403 _enum: ['Unknown', 'OverLimit']3469 _enum: ['Unknown', 'OverLimit']
3404 },3470 },
3405 /**3471 /**
3406 * Lookup466: pallet_unique::Error<T>3472 * Lookup470: pallet_unique::pallet::Error<T>
3407 **/3473 **/
3408 PalletUniqueError: {3474 PalletUniqueError: {
3409 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3475 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
3410 },3476 },
3411 /**3477 /**
3412 * Lookup467: pallet_configuration::pallet::Error<T>3478 * Lookup471: pallet_configuration::pallet::Error<T>
3413 **/3479 **/
3414 PalletConfigurationError: {3480 PalletConfigurationError: {
3415 _enum: ['InconsistentConfiguration']3481 _enum: ['InconsistentConfiguration']
3416 },3482 },
3417 /**3483 /**
3418 * Lookup468: up_data_structs::Collection<sp_core::crypto::AccountId32>3484 * Lookup472: up_data_structs::Collection<sp_core::crypto::AccountId32>
3419 **/3485 **/
3420 UpDataStructsCollection: {3486 UpDataStructsCollection: {
3421 owner: 'AccountId32',3487 owner: 'AccountId32',
3422 mode: 'UpDataStructsCollectionMode',3488 mode: 'UpDataStructsCollectionMode',
3428 permissions: 'UpDataStructsCollectionPermissions',3494 permissions: 'UpDataStructsCollectionPermissions',
3429 flags: '[u8;1]'3495 flags: '[u8;1]'
3430 },3496 },
3431 /**3497 /**
3432 * Lookup469: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3498 * Lookup473: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
3433 **/3499 **/
3434 UpDataStructsSponsorshipStateAccountId32: {3500 UpDataStructsSponsorshipStateAccountId32: {
3435 _enum: {3501 _enum: {
3436 Disabled: 'Null',3502 Disabled: 'Null',
3437 Unconfirmed: 'AccountId32',3503 Unconfirmed: 'AccountId32',
3438 Confirmed: 'AccountId32'3504 Confirmed: 'AccountId32'
3439 }3505 }
3440 },3506 },
3441 /**3507 /**
3442 * Lookup470: up_data_structs::Properties3508 * Lookup474: up_data_structs::Properties
3443 **/3509 **/
3444 UpDataStructsProperties: {3510 UpDataStructsProperties: {
3445 map: 'UpDataStructsPropertiesMapBoundedVec',3511 map: 'UpDataStructsPropertiesMapBoundedVec',
3446 consumedSpace: 'u32',3512 consumedSpace: 'u32',
3447 reserved: 'u32'3513 reserved: 'u32'
3448 },3514 },
3449 /**3515 /**
3450 * Lookup471: up_data_structs::PropertiesMap<bounded_collections::bounded_vec::BoundedVec<T, S>>3516 * Lookup475: up_data_structs::PropertiesMap<bounded_collections::bounded_vec::BoundedVec<T, S>>
3451 **/3517 **/
3452 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3518 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
3453 /**3519 /**
3454 * Lookup476: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3520 * Lookup480: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
3455 **/3521 **/
3456 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3522 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
3457 /**3523 /**
3458 * Lookup483: up_data_structs::CollectionStats3524 * Lookup487: up_data_structs::CollectionStats
3459 **/3525 **/
3460 UpDataStructsCollectionStats: {3526 UpDataStructsCollectionStats: {
3461 created: 'u32',3527 created: 'u32',
3462 destroyed: 'u32',3528 destroyed: 'u32',
3463 alive: 'u32'3529 alive: 'u32'
3464 },3530 },
3465 /**3531 /**
3466 * Lookup484: up_data_structs::TokenChild3532 * Lookup488: up_data_structs::TokenChild
3467 **/3533 **/
3468 UpDataStructsTokenChild: {3534 UpDataStructsTokenChild: {
3469 token: 'u32',3535 token: 'u32',
3470 collection: 'u32'3536 collection: 'u32'
3471 },3537 },
3472 /**3538 /**
3473 * Lookup485: PhantomType::up_data_structs<T>3539 * Lookup489: PhantomType::up_data_structs<T>
3474 **/3540 **/
3475 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,UpPovEstimateRpcPovInfo);0]',3541 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,UpPovEstimateRpcPovInfo);0]',
3476 /**3542 /**
3477 * Lookup487: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3543 * Lookup491: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3478 **/3544 **/
3479 UpDataStructsTokenData: {3545 UpDataStructsTokenData: {
3480 properties: 'Vec<UpDataStructsProperty>',3546 properties: 'Vec<UpDataStructsProperty>',
3481 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3547 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',
3482 pieces: 'u128'3548 pieces: 'u128'
3483 },3549 },
3484 /**3550 /**
3485 * Lookup489: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3551 * Lookup493: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
3486 **/3552 **/
3487 UpDataStructsRpcCollection: {3553 UpDataStructsRpcCollection: {
3488 owner: 'AccountId32',3554 owner: 'AccountId32',
3489 mode: 'UpDataStructsCollectionMode',3555 mode: 'UpDataStructsCollectionMode',
3498 readOnly: 'bool',3564 readOnly: 'bool',
3499 flags: 'UpDataStructsRpcCollectionFlags'3565 flags: 'UpDataStructsRpcCollectionFlags'
3500 },3566 },
3501 /**3567 /**
3502 * Lookup490: up_data_structs::RpcCollectionFlags3568 * Lookup494: up_data_structs::RpcCollectionFlags
3503 **/3569 **/
3504 UpDataStructsRpcCollectionFlags: {3570 UpDataStructsRpcCollectionFlags: {
3505 foreign: 'bool',3571 foreign: 'bool',
3506 erc721metadata: 'bool'3572 erc721metadata: 'bool'
3507 },3573 },
3508 /**3574 /**
3509 * Lookup491: up_pov_estimate_rpc::PovInfo3575 * Lookup495: up_pov_estimate_rpc::PovInfo
3510 **/3576 **/
3511 UpPovEstimateRpcPovInfo: {3577 UpPovEstimateRpcPovInfo: {
3512 proofSize: 'u64',3578 proofSize: 'u64',
3513 compactProofSize: 'u64',3579 compactProofSize: 'u64',
3514 compressedProofSize: 'u64',3580 compressedProofSize: 'u64',
3515 results: 'Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>',3581 results: 'Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>',
3516 keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'3582 keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'
3517 },3583 },
3518 /**3584 /**
3519 * Lookup494: sp_runtime::transaction_validity::TransactionValidityError3585 * Lookup498: sp_runtime::transaction_validity::TransactionValidityError
3520 **/3586 **/
3521 SpRuntimeTransactionValidityTransactionValidityError: {3587 SpRuntimeTransactionValidityTransactionValidityError: {
3522 _enum: {3588 _enum: {
3523 Invalid: 'SpRuntimeTransactionValidityInvalidTransaction',3589 Invalid: 'SpRuntimeTransactionValidityInvalidTransaction',
3524 Unknown: 'SpRuntimeTransactionValidityUnknownTransaction'3590 Unknown: 'SpRuntimeTransactionValidityUnknownTransaction'
3525 }3591 }
3526 },3592 },
3527 /**3593 /**
3528 * Lookup495: sp_runtime::transaction_validity::InvalidTransaction3594 * Lookup499: sp_runtime::transaction_validity::InvalidTransaction
3529 **/3595 **/
3530 SpRuntimeTransactionValidityInvalidTransaction: {3596 SpRuntimeTransactionValidityInvalidTransaction: {
3531 _enum: {3597 _enum: {
3532 Call: 'Null',3598 Call: 'Null',
3542 BadSigner: 'Null'3608 BadSigner: 'Null'
3543 }3609 }
3544 },3610 },
3545 /**3611 /**
3546 * Lookup496: sp_runtime::transaction_validity::UnknownTransaction3612 * Lookup500: sp_runtime::transaction_validity::UnknownTransaction
3547 **/3613 **/
3548 SpRuntimeTransactionValidityUnknownTransaction: {3614 SpRuntimeTransactionValidityUnknownTransaction: {
3549 _enum: {3615 _enum: {
3550 CannotLookup: 'Null',3616 CannotLookup: 'Null',
3551 NoUnsignedValidator: 'Null',3617 NoUnsignedValidator: 'Null',
3552 Custom: 'u8'3618 Custom: 'u8'
3553 }3619 }
3554 },3620 },
3555 /**3621 /**
3556 * Lookup498: up_pov_estimate_rpc::TrieKeyValue3622 * Lookup502: up_pov_estimate_rpc::TrieKeyValue
3557 **/3623 **/
3558 UpPovEstimateRpcTrieKeyValue: {3624 UpPovEstimateRpcTrieKeyValue: {
3559 key: 'Bytes',3625 key: 'Bytes',
3560 value: 'Bytes'3626 value: 'Bytes'
3561 },3627 },
3562 /**3628 /**
3563 * Lookup500: pallet_common::pallet::Error<T>3629 * Lookup504: pallet_common::pallet::Error<T>
3564 **/3630 **/
3565 PalletCommonError: {3631 PalletCommonError: {
3566 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsNotEthMirror', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']3632 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsNotEthMirror', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']
3567 },3633 },
3568 /**3634 /**
3569 * Lookup502: pallet_fungible::pallet::Error<T>3635 * Lookup506: pallet_fungible::pallet::Error<T>
3570 **/3636 **/
3571 PalletFungibleError: {3637 PalletFungibleError: {
3572 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']3638 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']
3573 },3639 },
3574 /**3640 /**
3575 * Lookup507: pallet_refungible::pallet::Error<T>3641 * Lookup511: pallet_refungible::pallet::Error<T>
3576 **/3642 **/
3577 PalletRefungibleError: {3643 PalletRefungibleError: {
3578 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3644 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
3579 },3645 },
3580 /**3646 /**
3581 * Lookup508: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3647 * Lookup512: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3582 **/3648 **/
3583 PalletNonfungibleItemData: {3649 PalletNonfungibleItemData: {
3584 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3650 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
3585 },3651 },
3586 /**3652 /**
3587 * Lookup510: up_data_structs::PropertyScope3653 * Lookup514: up_data_structs::PropertyScope
3588 **/3654 **/
3589 UpDataStructsPropertyScope: {3655 UpDataStructsPropertyScope: {
3590 _enum: ['None', 'Rmrk']3656 _enum: ['None', 'Rmrk']
3591 },3657 },
3592 /**3658 /**
3593 * Lookup513: pallet_nonfungible::pallet::Error<T>3659 * Lookup517: pallet_nonfungible::pallet::Error<T>
3594 **/3660 **/
3595 PalletNonfungibleError: {3661 PalletNonfungibleError: {
3596 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3662 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
3597 },3663 },
3598 /**3664 /**
3599 * Lookup514: pallet_structure::pallet::Error<T>3665 * Lookup518: pallet_structure::pallet::Error<T>
3600 **/3666 **/
3601 PalletStructureError: {3667 PalletStructureError: {
3602 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound', 'CantNestTokenUnderCollection']3668 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound', 'CantNestTokenUnderCollection']
3603 },3669 },
3604 /**3670 /**
3605 * Lookup519: pallet_app_promotion::pallet::Error<T>3671 * Lookup523: pallet_app_promotion::pallet::Error<T>
3606 **/3672 **/
3607 PalletAppPromotionError: {3673 PalletAppPromotionError: {
3608 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation', 'InsufficientStakedBalance']3674 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation', 'InsufficientStakedBalance']
3609 },3675 },
3610 /**3676 /**
3611 * Lookup520: pallet_foreign_assets::module::Error<T>3677 * Lookup524: pallet_foreign_assets::module::Error<T>
3612 **/3678 **/
3613 PalletForeignAssetsModuleError: {3679 PalletForeignAssetsModuleError: {
3614 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3680 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
3615 },3681 },
3616 /**3682 /**
3617 * Lookup522: pallet_evm::pallet::Error<T>3683 * Lookup526: pallet_evm::pallet::Error<T>
3618 **/3684 **/
3619 PalletEvmError: {3685 PalletEvmError: {
3620 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']3686 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']
3621 },3687 },
3622 /**3688 /**
3623 * Lookup525: fp_rpc::TransactionStatus3689 * Lookup529: fp_rpc::TransactionStatus
3624 **/3690 **/
3625 FpRpcTransactionStatus: {3691 FpRpcTransactionStatus: {
3626 transactionHash: 'H256',3692 transactionHash: 'H256',
3627 transactionIndex: 'u32',3693 transactionIndex: 'u32',
3631 logs: 'Vec<EthereumLog>',3697 logs: 'Vec<EthereumLog>',
3632 logsBloom: 'EthbloomBloom'3698 logsBloom: 'EthbloomBloom'
3633 },3699 },
3634 /**3700 /**
3635 * Lookup527: ethbloom::Bloom3701 * Lookup531: ethbloom::Bloom
3636 **/3702 **/
3637 EthbloomBloom: '[u8;256]',3703 EthbloomBloom: '[u8;256]',
3638 /**3704 /**
3639 * Lookup529: ethereum::receipt::ReceiptV33705 * Lookup533: ethereum::receipt::ReceiptV3
3640 **/3706 **/
3641 EthereumReceiptReceiptV3: {3707 EthereumReceiptReceiptV3: {
3642 _enum: {3708 _enum: {
3643 Legacy: 'EthereumReceiptEip658ReceiptData',3709 Legacy: 'EthereumReceiptEip658ReceiptData',
3644 EIP2930: 'EthereumReceiptEip658ReceiptData',3710 EIP2930: 'EthereumReceiptEip658ReceiptData',
3645 EIP1559: 'EthereumReceiptEip658ReceiptData'3711 EIP1559: 'EthereumReceiptEip658ReceiptData'
3646 }3712 }
3647 },3713 },
3648 /**3714 /**
3649 * Lookup530: ethereum::receipt::EIP658ReceiptData3715 * Lookup534: ethereum::receipt::EIP658ReceiptData
3650 **/3716 **/
3651 EthereumReceiptEip658ReceiptData: {3717 EthereumReceiptEip658ReceiptData: {
3652 statusCode: 'u8',3718 statusCode: 'u8',
3653 usedGas: 'U256',3719 usedGas: 'U256',
3654 logsBloom: 'EthbloomBloom',3720 logsBloom: 'EthbloomBloom',
3655 logs: 'Vec<EthereumLog>'3721 logs: 'Vec<EthereumLog>'
3656 },3722 },
3657 /**3723 /**
3658 * Lookup531: ethereum::block::Block<ethereum::transaction::TransactionV2>3724 * Lookup535: ethereum::block::Block<ethereum::transaction::TransactionV2>
3659 **/3725 **/
3660 EthereumBlock: {3726 EthereumBlock: {
3661 header: 'EthereumHeader',3727 header: 'EthereumHeader',
3662 transactions: 'Vec<EthereumTransactionTransactionV2>',3728 transactions: 'Vec<EthereumTransactionTransactionV2>',
3663 ommers: 'Vec<EthereumHeader>'3729 ommers: 'Vec<EthereumHeader>'
3664 },3730 },
3665 /**3731 /**
3666 * Lookup532: ethereum::header::Header3732 * Lookup536: ethereum::header::Header
3667 **/3733 **/
3668 EthereumHeader: {3734 EthereumHeader: {
3669 parentHash: 'H256',3735 parentHash: 'H256',
3670 ommersHash: 'H256',3736 ommersHash: 'H256',
3682 mixHash: 'H256',3748 mixHash: 'H256',
3683 nonce: 'EthereumTypesHashH64'3749 nonce: 'EthereumTypesHashH64'
3684 },3750 },
3685 /**3751 /**
3686 * Lookup533: ethereum_types::hash::H643752 * Lookup537: ethereum_types::hash::H64
3687 **/3753 **/
3688 EthereumTypesHashH64: '[u8;8]',3754 EthereumTypesHashH64: '[u8;8]',
3689 /**3755 /**
3690 * Lookup538: pallet_ethereum::pallet::Error<T>3756 * Lookup542: pallet_ethereum::pallet::Error<T>
3691 **/3757 **/
3692 PalletEthereumError: {3758 PalletEthereumError: {
3693 _enum: ['InvalidSignature', 'PreLogExists']3759 _enum: ['InvalidSignature', 'PreLogExists']
3694 },3760 },
3695 /**3761 /**
3696 * Lookup539: pallet_evm_coder_substrate::pallet::Error<T>3762 * Lookup543: pallet_evm_coder_substrate::pallet::Error<T>
3697 **/3763 **/
3698 PalletEvmCoderSubstrateError: {3764 PalletEvmCoderSubstrateError: {
3699 _enum: ['OutOfGas', 'OutOfFund']3765 _enum: ['OutOfGas', 'OutOfFund']
3700 },3766 },
3701 /**3767 /**
3702 * Lookup540: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3768 * Lookup544: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3703 **/3769 **/
3704 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3770 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
3705 _enum: {3771 _enum: {
3706 Disabled: 'Null',3772 Disabled: 'Null',
3707 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3773 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',
3708 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3774 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'
3709 }3775 }
3710 },3776 },
3711 /**3777 /**
3712 * Lookup541: pallet_evm_contract_helpers::SponsoringModeT3778 * Lookup545: pallet_evm_contract_helpers::SponsoringModeT
3713 **/3779 **/
3714 PalletEvmContractHelpersSponsoringModeT: {3780 PalletEvmContractHelpersSponsoringModeT: {
3715 _enum: ['Disabled', 'Allowlisted', 'Generous']3781 _enum: ['Disabled', 'Allowlisted', 'Generous']
3716 },3782 },
3717 /**3783 /**
3718 * Lookup547: pallet_evm_contract_helpers::pallet::Error<T>3784 * Lookup551: pallet_evm_contract_helpers::pallet::Error<T>
3719 **/3785 **/
3720 PalletEvmContractHelpersError: {3786 PalletEvmContractHelpersError: {
3721 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3787 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
3722 },3788 },
3723 /**3789 /**
3724 * Lookup548: pallet_evm_migration::pallet::Error<T>3790 * Lookup552: pallet_evm_migration::pallet::Error<T>
3725 **/3791 **/
3726 PalletEvmMigrationError: {3792 PalletEvmMigrationError: {
3727 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3793 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
3728 },3794 },
3729 /**3795 /**
3730 * Lookup549: pallet_maintenance::pallet::Error<T>3796 * Lookup553: pallet_maintenance::pallet::Error<T>
3731 **/3797 **/
3732 PalletMaintenanceError: 'Null',3798 PalletMaintenanceError: 'Null',
3733 /**3799 /**
3734 * Lookup550: pallet_test_utils::pallet::Error<T>3800 * Lookup554: pallet_test_utils::pallet::Error<T>
3735 **/3801 **/
3736 PalletTestUtilsError: {3802 PalletTestUtilsError: {
3737 _enum: ['TestPalletDisabled', 'TriggerRollback']3803 _enum: ['TestPalletDisabled', 'TriggerRollback']
3738 },3804 },
3739 /**3805 /**
3740 * Lookup552: sp_runtime::MultiSignature3806 * Lookup556: sp_runtime::MultiSignature
3741 **/3807 **/
3742 SpRuntimeMultiSignature: {3808 SpRuntimeMultiSignature: {
3743 _enum: {3809 _enum: {
3744 Ed25519: 'SpCoreEd25519Signature',3810 Ed25519: 'SpCoreEd25519Signature',
3745 Sr25519: 'SpCoreSr25519Signature',3811 Sr25519: 'SpCoreSr25519Signature',
3746 Ecdsa: 'SpCoreEcdsaSignature'3812 Ecdsa: 'SpCoreEcdsaSignature'
3747 }3813 }
3748 },3814 },
3749 /**3815 /**
3750 * Lookup553: sp_core::ed25519::Signature3816 * Lookup557: sp_core::ed25519::Signature
3751 **/3817 **/
3752 SpCoreEd25519Signature: '[u8;64]',3818 SpCoreEd25519Signature: '[u8;64]',
3753 /**3819 /**
3754 * Lookup555: sp_core::sr25519::Signature3820 * Lookup559: sp_core::sr25519::Signature
3755 **/3821 **/
3756 SpCoreSr25519Signature: '[u8;64]',3822 SpCoreSr25519Signature: '[u8;64]',
3757 /**3823 /**
3758 * Lookup556: sp_core::ecdsa::Signature3824 * Lookup560: sp_core::ecdsa::Signature
3759 **/3825 **/
3760 SpCoreEcdsaSignature: '[u8;65]',3826 SpCoreEcdsaSignature: '[u8;65]',
3761 /**3827 /**
3762 * Lookup559: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3828 * Lookup563: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
3763 **/3829 **/
3764 FrameSystemExtensionsCheckSpecVersion: 'Null',3830 FrameSystemExtensionsCheckSpecVersion: 'Null',
3765 /**3831 /**
3766 * Lookup560: frame_system::extensions::check_tx_version::CheckTxVersion<T>3832 * Lookup564: frame_system::extensions::check_tx_version::CheckTxVersion<T>
3767 **/3833 **/
3768 FrameSystemExtensionsCheckTxVersion: 'Null',3834 FrameSystemExtensionsCheckTxVersion: 'Null',
3769 /**3835 /**
3770 * Lookup561: frame_system::extensions::check_genesis::CheckGenesis<T>3836 * Lookup565: frame_system::extensions::check_genesis::CheckGenesis<T>
3771 **/3837 **/
3772 FrameSystemExtensionsCheckGenesis: 'Null',3838 FrameSystemExtensionsCheckGenesis: 'Null',
3773 /**3839 /**
3774 * Lookup564: frame_system::extensions::check_nonce::CheckNonce<T>3840 * Lookup568: frame_system::extensions::check_nonce::CheckNonce<T>
3775 **/3841 **/
3776 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3842 FrameSystemExtensionsCheckNonce: 'Compact<u32>',
3777 /**3843 /**
3778 * Lookup565: frame_system::extensions::check_weight::CheckWeight<T>3844 * Lookup569: frame_system::extensions::check_weight::CheckWeight<T>
3779 **/3845 **/
3780 FrameSystemExtensionsCheckWeight: 'Null',3846 FrameSystemExtensionsCheckWeight: 'Null',
3781 /**3847 /**
3782 * Lookup566: opal_runtime::runtime_common::maintenance::CheckMaintenance3848 * Lookup570: opal_runtime::runtime_common::maintenance::CheckMaintenance
3783 **/3849 **/
3784 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3850 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
3785 /**3851 /**
3786 * Lookup567: opal_runtime::runtime_common::identity::DisableIdentityCalls3852 * Lookup571: opal_runtime::runtime_common::identity::DisableIdentityCalls
3787 **/3853 **/
3788 OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',3854 OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',
3789 /**3855 /**
3790 * Lookup568: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3856 * Lookup572: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
3791 **/3857 **/
3792 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3858 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
3793 /**3859 /**
3794 * Lookup569: opal_runtime::Runtime3860 * Lookup573: opal_runtime::Runtime
3795 **/3861 **/
3796 OpalRuntimeRuntime: 'Null',3862 OpalRuntimeRuntime: 'Null',
3797 /**3863 /**
3798 * Lookup570: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3864 * Lookup574: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
3799 **/3865 **/
3800 PalletEthereumFakeTransactionFinalizer: 'Null'3866 PalletEthereumFakeTransactionFinalizer: 'Null'
3801};3867};
38023868
modifiedtests/src/interfaces/registry.tsdiffbeforeafterboth
5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions
6import '@polkadot/types/types/registry';6import '@polkadot/types/types/registry';
77
8import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup';8import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemCodeUpgradeAuthorization, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesIdAmount, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersCall, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletIdentityBitFlags, PalletIdentityCall, PalletIdentityError, PalletIdentityEvent, PalletIdentityIdentityField, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletPreimageCall, PalletPreimageError, PalletPreimageEvent, PalletPreimageRequestStatus, PalletRefungibleError, PalletSessionCall, PalletSessionError, PalletSessionEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PalletXcmQueryStatus, PalletXcmRemoteLockedFungibleRecord, PalletXcmVersionMigrationStage, ParachainInfoCall, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV4AbridgedHostConfiguration, PolkadotPrimitivesV4AbridgedHrmpChannel, PolkadotPrimitivesV4PersistedValidationData, PolkadotPrimitivesV4UpgradeRestriction, SpArithmeticArithmeticError, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV2BodyId, XcmV2BodyPart, XcmV2Instruction, XcmV2Junction, XcmV2MultiAsset, XcmV2MultiLocation, XcmV2MultiassetAssetId, XcmV2MultiassetAssetInstance, XcmV2MultiassetFungibility, XcmV2MultiassetMultiAssetFilter, XcmV2MultiassetMultiAssets, XcmV2MultiassetWildFungibility, XcmV2MultiassetWildMultiAsset, XcmV2MultilocationJunctions, XcmV2NetworkId, XcmV2OriginKind, XcmV2Response, XcmV2TraitsError, XcmV2WeightLimit, XcmV2Xcm, XcmV3Instruction, XcmV3Junction, XcmV3JunctionBodyId, XcmV3JunctionBodyPart, XcmV3JunctionNetworkId, XcmV3Junctions, XcmV3MaybeErrorCode, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetAssetId, XcmV3MultiassetAssetInstance, XcmV3MultiassetFungibility, XcmV3MultiassetMultiAssetFilter, XcmV3MultiassetMultiAssets, XcmV3MultiassetWildFungibility, XcmV3MultiassetWildMultiAsset, XcmV3PalletInfo, XcmV3QueryResponseInfo, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3WeightLimit, XcmV3Xcm, XcmVersionedAssetId, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedResponse, XcmVersionedXcm } from '@polkadot/types/lookup';
99
10declare module '@polkadot/types/types/registry' {10declare module '@polkadot/types/types/registry' {
11 interface InterfaceTypes {11 interface InterfaceTypes {
15 CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;15 CumulusPalletDmpQueueEvent: CumulusPalletDmpQueueEvent;
16 CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;16 CumulusPalletDmpQueuePageIndexData: CumulusPalletDmpQueuePageIndexData;
17 CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;17 CumulusPalletParachainSystemCall: CumulusPalletParachainSystemCall;
18 CumulusPalletParachainSystemCodeUpgradeAuthorization: CumulusPalletParachainSystemCodeUpgradeAuthorization;
18 CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;19 CumulusPalletParachainSystemError: CumulusPalletParachainSystemError;
19 CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;20 CumulusPalletParachainSystemEvent: CumulusPalletParachainSystemEvent;
20 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;21 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot;
98 PalletBalancesCall: PalletBalancesCall;99 PalletBalancesCall: PalletBalancesCall;
99 PalletBalancesError: PalletBalancesError;100 PalletBalancesError: PalletBalancesError;
100 PalletBalancesEvent: PalletBalancesEvent;101 PalletBalancesEvent: PalletBalancesEvent;
102 PalletBalancesIdAmount: PalletBalancesIdAmount;
101 PalletBalancesReasons: PalletBalancesReasons;103 PalletBalancesReasons: PalletBalancesReasons;
102 PalletBalancesReserveData: PalletBalancesReserveData;104 PalletBalancesReserveData: PalletBalancesReserveData;
103 PalletCollatorSelectionCall: PalletCollatorSelectionCall;105 PalletCollatorSelectionCall: PalletCollatorSelectionCall;
162 PalletSudoCall: PalletSudoCall;164 PalletSudoCall: PalletSudoCall;
163 PalletSudoError: PalletSudoError;165 PalletSudoError: PalletSudoError;
164 PalletSudoEvent: PalletSudoEvent;166 PalletSudoEvent: PalletSudoEvent;
165 PalletTemplateTransactionPaymentCall: PalletTemplateTransactionPaymentCall;
166 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;167 PalletTemplateTransactionPaymentChargeTransactionPayment: PalletTemplateTransactionPaymentChargeTransactionPayment;
167 PalletTestUtilsCall: PalletTestUtilsCall;168 PalletTestUtilsCall: PalletTestUtilsCall;
168 PalletTestUtilsError: PalletTestUtilsError;169 PalletTestUtilsError: PalletTestUtilsError;
188 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;189 PolkadotCorePrimitivesInboundHrmpMessage: PolkadotCorePrimitivesInboundHrmpMessage;
189 PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;190 PolkadotCorePrimitivesOutboundHrmpMessage: PolkadotCorePrimitivesOutboundHrmpMessage;
190 PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;191 PolkadotParachainPrimitivesXcmpMessageFormat: PolkadotParachainPrimitivesXcmpMessageFormat;
191 PolkadotPrimitivesV2AbridgedHostConfiguration: PolkadotPrimitivesV2AbridgedHostConfiguration;192 PolkadotPrimitivesV4AbridgedHostConfiguration: PolkadotPrimitivesV4AbridgedHostConfiguration;
192 PolkadotPrimitivesV2AbridgedHrmpChannel: PolkadotPrimitivesV2AbridgedHrmpChannel;193 PolkadotPrimitivesV4AbridgedHrmpChannel: PolkadotPrimitivesV4AbridgedHrmpChannel;
193 PolkadotPrimitivesV2PersistedValidationData: PolkadotPrimitivesV2PersistedValidationData;194 PolkadotPrimitivesV4PersistedValidationData: PolkadotPrimitivesV4PersistedValidationData;
194 PolkadotPrimitivesV2UpgradeRestriction: PolkadotPrimitivesV2UpgradeRestriction;195 PolkadotPrimitivesV4UpgradeRestriction: PolkadotPrimitivesV4UpgradeRestriction;
195 SpArithmeticArithmeticError: SpArithmeticArithmeticError;196 SpArithmeticArithmeticError: SpArithmeticArithmeticError;
196 SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;197 SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
197 SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;198 SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
25 interface PalletBalancesAccountData extends Struct {25 interface PalletBalancesAccountData extends Struct {
26 readonly free: u128;26 readonly free: u128;
27 readonly reserved: u128;27 readonly reserved: u128;
28 readonly miscFrozen: u128;28 readonly frozen: u128;
29 readonly feeFrozen: u128;29 readonly flags: u128;
30 }30 }
3131
32 /** @name FrameSupportDispatchPerDispatchClassWeight (7) */32 /** @name FrameSupportDispatchPerDispatchClassWeight (8) */
33 interface FrameSupportDispatchPerDispatchClassWeight extends Struct {33 interface FrameSupportDispatchPerDispatchClassWeight extends Struct {
34 readonly normal: SpWeightsWeightV2Weight;34 readonly normal: SpWeightsWeightV2Weight;
35 readonly operational: SpWeightsWeightV2Weight;35 readonly operational: SpWeightsWeightV2Weight;
36 readonly mandatory: SpWeightsWeightV2Weight;36 readonly mandatory: SpWeightsWeightV2Weight;
37 }37 }
3838
39 /** @name SpWeightsWeightV2Weight (8) */39 /** @name SpWeightsWeightV2Weight (9) */
40 interface SpWeightsWeightV2Weight extends Struct {40 interface SpWeightsWeightV2Weight extends Struct {
41 readonly refTime: Compact<u64>;41 readonly refTime: Compact<u64>;
42 readonly proofSize: Compact<u64>;42 readonly proofSize: Compact<u64>;
43 }43 }
4444
45 /** @name SpRuntimeDigest (13) */45 /** @name SpRuntimeDigest (14) */
46 interface SpRuntimeDigest extends Struct {46 interface SpRuntimeDigest extends Struct {
47 readonly logs: Vec<SpRuntimeDigestDigestItem>;47 readonly logs: Vec<SpRuntimeDigestDigestItem>;
48 }48 }
4949
50 /** @name SpRuntimeDigestDigestItem (15) */50 /** @name SpRuntimeDigestDigestItem (16) */
51 interface SpRuntimeDigestDigestItem extends Enum {51 interface SpRuntimeDigestDigestItem extends Enum {
52 readonly isOther: boolean;52 readonly isOther: boolean;
53 readonly asOther: Bytes;53 readonly asOther: Bytes;
61 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';61 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';
62 }62 }
6363
64 /** @name FrameSystemEventRecord (18) */64 /** @name FrameSystemEventRecord (19) */
65 interface FrameSystemEventRecord extends Struct {65 interface FrameSystemEventRecord extends Struct {
66 readonly phase: FrameSystemPhase;66 readonly phase: FrameSystemPhase;
67 readonly event: Event;67 readonly event: Event;
68 readonly topics: Vec<H256>;68 readonly topics: Vec<H256>;
69 }69 }
7070
71 /** @name FrameSystemEvent (20) */71 /** @name FrameSystemEvent (21) */
72 interface FrameSystemEvent extends Enum {72 interface FrameSystemEvent extends Enum {
73 readonly isExtrinsicSuccess: boolean;73 readonly isExtrinsicSuccess: boolean;
74 readonly asExtrinsicSuccess: {74 readonly asExtrinsicSuccess: {
96 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';96 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';
97 }97 }
9898
99 /** @name FrameSupportDispatchDispatchInfo (21) */99 /** @name FrameSupportDispatchDispatchInfo (22) */
100 interface FrameSupportDispatchDispatchInfo extends Struct {100 interface FrameSupportDispatchDispatchInfo extends Struct {
101 readonly weight: SpWeightsWeightV2Weight;101 readonly weight: SpWeightsWeightV2Weight;
102 readonly class: FrameSupportDispatchDispatchClass;102 readonly class: FrameSupportDispatchDispatchClass;
103 readonly paysFee: FrameSupportDispatchPays;103 readonly paysFee: FrameSupportDispatchPays;
104 }104 }
105105
106 /** @name FrameSupportDispatchDispatchClass (22) */106 /** @name FrameSupportDispatchDispatchClass (23) */
107 interface FrameSupportDispatchDispatchClass extends Enum {107 interface FrameSupportDispatchDispatchClass extends Enum {
108 readonly isNormal: boolean;108 readonly isNormal: boolean;
109 readonly isOperational: boolean;109 readonly isOperational: boolean;
110 readonly isMandatory: boolean;110 readonly isMandatory: boolean;
111 readonly type: 'Normal' | 'Operational' | 'Mandatory';111 readonly type: 'Normal' | 'Operational' | 'Mandatory';
112 }112 }
113113
114 /** @name FrameSupportDispatchPays (23) */114 /** @name FrameSupportDispatchPays (24) */
115 interface FrameSupportDispatchPays extends Enum {115 interface FrameSupportDispatchPays extends Enum {
116 readonly isYes: boolean;116 readonly isYes: boolean;
117 readonly isNo: boolean;117 readonly isNo: boolean;
118 readonly type: 'Yes' | 'No';118 readonly type: 'Yes' | 'No';
119 }119 }
120120
121 /** @name SpRuntimeDispatchError (24) */121 /** @name SpRuntimeDispatchError (25) */
122 interface SpRuntimeDispatchError extends Enum {122 interface SpRuntimeDispatchError extends Enum {
123 readonly isOther: boolean;123 readonly isOther: boolean;
124 readonly isCannotLookup: boolean;124 readonly isCannotLookup: boolean;
140 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';140 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';
141 }141 }
142142
143 /** @name SpRuntimeModuleError (25) */143 /** @name SpRuntimeModuleError (26) */
144 interface SpRuntimeModuleError extends Struct {144 interface SpRuntimeModuleError extends Struct {
145 readonly index: u8;145 readonly index: u8;
146 readonly error: U8aFixed;146 readonly error: U8aFixed;
147 }147 }
148148
149 /** @name SpRuntimeTokenError (26) */149 /** @name SpRuntimeTokenError (27) */
150 interface SpRuntimeTokenError extends Enum {150 interface SpRuntimeTokenError extends Enum {
151 readonly isNoFunds: boolean;151 readonly isFundsUnavailable: boolean;
152 readonly isWouldDie: boolean;152 readonly isOnlyProvider: boolean;
153 readonly isBelowMinimum: boolean;153 readonly isBelowMinimum: boolean;
154 readonly isCannotCreate: boolean;154 readonly isCannotCreate: boolean;
155 readonly isUnknownAsset: boolean;155 readonly isUnknownAsset: boolean;
156 readonly isFrozen: boolean;156 readonly isFrozen: boolean;
157 readonly isUnsupported: boolean;157 readonly isUnsupported: boolean;
158 readonly isCannotCreateHold: boolean;
159 readonly isNotExpendable: boolean;
158 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';160 readonly type: 'FundsUnavailable' | 'OnlyProvider' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported' | 'CannotCreateHold' | 'NotExpendable';
159 }161 }
160162
161 /** @name SpArithmeticArithmeticError (27) */163 /** @name SpArithmeticArithmeticError (28) */
162 interface SpArithmeticArithmeticError extends Enum {164 interface SpArithmeticArithmeticError extends Enum {
163 readonly isUnderflow: boolean;165 readonly isUnderflow: boolean;
164 readonly isOverflow: boolean;166 readonly isOverflow: boolean;
165 readonly isDivisionByZero: boolean;167 readonly isDivisionByZero: boolean;
166 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';168 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
167 }169 }
168170
169 /** @name SpRuntimeTransactionalError (28) */171 /** @name SpRuntimeTransactionalError (29) */
170 interface SpRuntimeTransactionalError extends Enum {172 interface SpRuntimeTransactionalError extends Enum {
171 readonly isLimitReached: boolean;173 readonly isLimitReached: boolean;
172 readonly isNoLayer: boolean;174 readonly isNoLayer: boolean;
173 readonly type: 'LimitReached' | 'NoLayer';175 readonly type: 'LimitReached' | 'NoLayer';
174 }176 }
175177
176 /** @name CumulusPalletParachainSystemEvent (29) */178 /** @name CumulusPalletParachainSystemEvent (30) */
177 interface CumulusPalletParachainSystemEvent extends Enum {179 interface CumulusPalletParachainSystemEvent extends Enum {
178 readonly isValidationFunctionStored: boolean;180 readonly isValidationFunctionStored: boolean;
179 readonly isValidationFunctionApplied: boolean;181 readonly isValidationFunctionApplied: boolean;
201 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed' | 'UpwardMessageSent';203 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed' | 'UpwardMessageSent';
202 }204 }
203205
204 /** @name PalletCollatorSelectionEvent (31) */206 /** @name PalletCollatorSelectionEvent (32) */
205 interface PalletCollatorSelectionEvent extends Enum {207 interface PalletCollatorSelectionEvent extends Enum {
206 readonly isInvulnerableAdded: boolean;208 readonly isInvulnerableAdded: boolean;
207 readonly asInvulnerableAdded: {209 readonly asInvulnerableAdded: {
232 readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';234 readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';
233 }235 }
234236
235 /** @name PalletSessionEvent (32) */237 /** @name PalletSessionEvent (33) */
236 interface PalletSessionEvent extends Enum {238 interface PalletSessionEvent extends Enum {
237 readonly isNewSession: boolean;239 readonly isNewSession: boolean;
238 readonly asNewSession: {240 readonly asNewSession: {
241 readonly type: 'NewSession';243 readonly type: 'NewSession';
242 }244 }
243245
244 /** @name PalletBalancesEvent (33) */246 /** @name PalletBalancesEvent (34) */
245 interface PalletBalancesEvent extends Enum {247 interface PalletBalancesEvent extends Enum {
246 readonly isEndowed: boolean;248 readonly isEndowed: boolean;
247 readonly asEndowed: {249 readonly asEndowed: {
263 readonly asBalanceSet: {265 readonly asBalanceSet: {
264 readonly who: AccountId32;266 readonly who: AccountId32;
265 readonly free: u128;267 readonly free: u128;
266 readonly reserved: u128;
267 } & Struct;268 } & Struct;
268 readonly isReserved: boolean;269 readonly isReserved: boolean;
269 readonly asReserved: {270 readonly asReserved: {
297 readonly who: AccountId32;298 readonly who: AccountId32;
298 readonly amount: u128;299 readonly amount: u128;
299 } & Struct;300 } & Struct;
301 readonly isMinted: boolean;
302 readonly asMinted: {
303 readonly who: AccountId32;
304 readonly amount: u128;
305 } & Struct;
306 readonly isBurned: boolean;
307 readonly asBurned: {
308 readonly who: AccountId32;
309 readonly amount: u128;
310 } & Struct;
311 readonly isSuspended: boolean;
312 readonly asSuspended: {
313 readonly who: AccountId32;
314 readonly amount: u128;
315 } & Struct;
316 readonly isRestored: boolean;
317 readonly asRestored: {
318 readonly who: AccountId32;
319 readonly amount: u128;
320 } & Struct;
321 readonly isUpgraded: boolean;
322 readonly asUpgraded: {
323 readonly who: AccountId32;
324 } & Struct;
325 readonly isIssued: boolean;
326 readonly asIssued: {
327 readonly amount: u128;
328 } & Struct;
329 readonly isRescinded: boolean;
330 readonly asRescinded: {
331 readonly amount: u128;
332 } & Struct;
333 readonly isLocked: boolean;
334 readonly asLocked: {
335 readonly who: AccountId32;
336 readonly amount: u128;
337 } & Struct;
338 readonly isUnlocked: boolean;
339 readonly asUnlocked: {
340 readonly who: AccountId32;
341 readonly amount: u128;
342 } & Struct;
343 readonly isFrozen: boolean;
344 readonly asFrozen: {
345 readonly who: AccountId32;
346 readonly amount: u128;
347 } & Struct;
348 readonly isThawed: boolean;
349 readonly asThawed: {
350 readonly who: AccountId32;
351 readonly amount: u128;
352 } & Struct;
300 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';353 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed' | 'Minted' | 'Burned' | 'Suspended' | 'Restored' | 'Upgraded' | 'Issued' | 'Rescinded' | 'Locked' | 'Unlocked' | 'Frozen' | 'Thawed';
301 }354 }
302355
303 /** @name FrameSupportTokensMiscBalanceStatus (34) */356 /** @name FrameSupportTokensMiscBalanceStatus (35) */
304 interface FrameSupportTokensMiscBalanceStatus extends Enum {357 interface FrameSupportTokensMiscBalanceStatus extends Enum {
305 readonly isFree: boolean;358 readonly isFree: boolean;
306 readonly isReserved: boolean;359 readonly isReserved: boolean;
307 readonly type: 'Free' | 'Reserved';360 readonly type: 'Free' | 'Reserved';
308 }361 }
309362
310 /** @name PalletTransactionPaymentEvent (35) */363 /** @name PalletTransactionPaymentEvent (36) */
311 interface PalletTransactionPaymentEvent extends Enum {364 interface PalletTransactionPaymentEvent extends Enum {
312 readonly isTransactionFeePaid: boolean;365 readonly isTransactionFeePaid: boolean;
313 readonly asTransactionFeePaid: {366 readonly asTransactionFeePaid: {
318 readonly type: 'TransactionFeePaid';371 readonly type: 'TransactionFeePaid';
319 }372 }
320373
321 /** @name PalletTreasuryEvent (36) */374 /** @name PalletTreasuryEvent (37) */
322 interface PalletTreasuryEvent extends Enum {375 interface PalletTreasuryEvent extends Enum {
323 readonly isProposed: boolean;376 readonly isProposed: boolean;
324 readonly asProposed: {377 readonly asProposed: {
365 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive';418 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved' | 'UpdatedInactive';
366 }419 }
367420
368 /** @name PalletSudoEvent (37) */421 /** @name PalletSudoEvent (38) */
369 interface PalletSudoEvent extends Enum {422 interface PalletSudoEvent extends Enum {
370 readonly isSudid: boolean;423 readonly isSudid: boolean;
371 readonly asSudid: {424 readonly asSudid: {
382 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';435 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
383 }436 }
384437
385 /** @name OrmlVestingModuleEvent (41) */438 /** @name OrmlVestingModuleEvent (42) */
386 interface OrmlVestingModuleEvent extends Enum {439 interface OrmlVestingModuleEvent extends Enum {
387 readonly isVestingScheduleAdded: boolean;440 readonly isVestingScheduleAdded: boolean;
388 readonly asVestingScheduleAdded: {441 readonly asVestingScheduleAdded: {
402 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';455 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
403 }456 }
404457
405 /** @name OrmlVestingVestingSchedule (42) */458 /** @name OrmlVestingVestingSchedule (43) */
406 interface OrmlVestingVestingSchedule extends Struct {459 interface OrmlVestingVestingSchedule extends Struct {
407 readonly start: u32;460 readonly start: u32;
408 readonly period: u32;461 readonly period: u32;
409 readonly periodCount: u32;462 readonly periodCount: u32;
410 readonly perPeriod: Compact<u128>;463 readonly perPeriod: Compact<u128>;
411 }464 }
412465
413 /** @name OrmlXtokensModuleEvent (44) */466 /** @name OrmlXtokensModuleEvent (45) */
414 interface OrmlXtokensModuleEvent extends Enum {467 interface OrmlXtokensModuleEvent extends Enum {
415 readonly isTransferredMultiAssets: boolean;468 readonly isTransferredMultiAssets: boolean;
416 readonly asTransferredMultiAssets: {469 readonly asTransferredMultiAssets: {
422 readonly type: 'TransferredMultiAssets';475 readonly type: 'TransferredMultiAssets';
423 }476 }
424477
425 /** @name XcmV3MultiassetMultiAssets (45) */478 /** @name XcmV3MultiassetMultiAssets (46) */
426 interface XcmV3MultiassetMultiAssets extends Vec<XcmV3MultiAsset> {}479 interface XcmV3MultiassetMultiAssets extends Vec<XcmV3MultiAsset> {}
427480
428 /** @name XcmV3MultiAsset (47) */481 /** @name XcmV3MultiAsset (48) */
429 interface XcmV3MultiAsset extends Struct {482 interface XcmV3MultiAsset extends Struct {
430 readonly id: XcmV3MultiassetAssetId;483 readonly id: XcmV3MultiassetAssetId;
431 readonly fun: XcmV3MultiassetFungibility;484 readonly fun: XcmV3MultiassetFungibility;
432 }485 }
433486
434 /** @name XcmV3MultiassetAssetId (48) */487 /** @name XcmV3MultiassetAssetId (49) */
435 interface XcmV3MultiassetAssetId extends Enum {488 interface XcmV3MultiassetAssetId extends Enum {
436 readonly isConcrete: boolean;489 readonly isConcrete: boolean;
437 readonly asConcrete: XcmV3MultiLocation;490 readonly asConcrete: XcmV3MultiLocation;
440 readonly type: 'Concrete' | 'Abstract';493 readonly type: 'Concrete' | 'Abstract';
441 }494 }
442495
443 /** @name XcmV3MultiLocation (49) */496 /** @name XcmV3MultiLocation (50) */
444 interface XcmV3MultiLocation extends Struct {497 interface XcmV3MultiLocation extends Struct {
445 readonly parents: u8;498 readonly parents: u8;
446 readonly interior: XcmV3Junctions;499 readonly interior: XcmV3Junctions;
447 }500 }
448501
449 /** @name XcmV3Junctions (50) */502 /** @name XcmV3Junctions (51) */
450 interface XcmV3Junctions extends Enum {503 interface XcmV3Junctions extends Enum {
451 readonly isHere: boolean;504 readonly isHere: boolean;
452 readonly isX1: boolean;505 readonly isX1: boolean;
468 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';521 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
469 }522 }
470523
471 /** @name XcmV3Junction (51) */524 /** @name XcmV3Junction (52) */
472 interface XcmV3Junction extends Enum {525 interface XcmV3Junction extends Enum {
473 readonly isParachain: boolean;526 readonly isParachain: boolean;
474 readonly asParachain: Compact<u32>;527 readonly asParachain: Compact<u32>;
507 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus';560 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality' | 'GlobalConsensus';
508 }561 }
509562
510 /** @name XcmV3JunctionNetworkId (54) */563 /** @name XcmV3JunctionNetworkId (55) */
511 interface XcmV3JunctionNetworkId extends Enum {564 interface XcmV3JunctionNetworkId extends Enum {
512 readonly isByGenesis: boolean;565 readonly isByGenesis: boolean;
513 readonly asByGenesis: U8aFixed;566 readonly asByGenesis: U8aFixed;
530 readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash';583 readonly type: 'ByGenesis' | 'ByFork' | 'Polkadot' | 'Kusama' | 'Westend' | 'Rococo' | 'Wococo' | 'Ethereum' | 'BitcoinCore' | 'BitcoinCash';
531 }584 }
532585
533 /** @name XcmV3JunctionBodyId (56) */586 /** @name XcmV3JunctionBodyId (57) */
534 interface XcmV3JunctionBodyId extends Enum {587 interface XcmV3JunctionBodyId extends Enum {
535 readonly isUnit: boolean;588 readonly isUnit: boolean;
536 readonly isMoniker: boolean;589 readonly isMoniker: boolean;
547 readonly type: 'Unit' | 'Moniker' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';600 readonly type: 'Unit' | 'Moniker' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
548 }601 }
549602
550 /** @name XcmV3JunctionBodyPart (57) */603 /** @name XcmV3JunctionBodyPart (58) */
551 interface XcmV3JunctionBodyPart extends Enum {604 interface XcmV3JunctionBodyPart extends Enum {
552 readonly isVoice: boolean;605 readonly isVoice: boolean;
553 readonly isMembers: boolean;606 readonly isMembers: boolean;
572 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';625 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
573 }626 }
574627
575 /** @name XcmV3MultiassetFungibility (58) */628 /** @name XcmV3MultiassetFungibility (59) */
576 interface XcmV3MultiassetFungibility extends Enum {629 interface XcmV3MultiassetFungibility extends Enum {
577 readonly isFungible: boolean;630 readonly isFungible: boolean;
578 readonly asFungible: Compact<u128>;631 readonly asFungible: Compact<u128>;
581 readonly type: 'Fungible' | 'NonFungible';634 readonly type: 'Fungible' | 'NonFungible';
582 }635 }
583636
584 /** @name XcmV3MultiassetAssetInstance (59) */637 /** @name XcmV3MultiassetAssetInstance (60) */
585 interface XcmV3MultiassetAssetInstance extends Enum {638 interface XcmV3MultiassetAssetInstance extends Enum {
586 readonly isUndefined: boolean;639 readonly isUndefined: boolean;
587 readonly isIndex: boolean;640 readonly isIndex: boolean;
597 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32';650 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32';
598 }651 }
599652
600 /** @name OrmlTokensModuleEvent (62) */653 /** @name OrmlTokensModuleEvent (63) */
601 interface OrmlTokensModuleEvent extends Enum {654 interface OrmlTokensModuleEvent extends Enum {
602 readonly isEndowed: boolean;655 readonly isEndowed: boolean;
603 readonly asEndowed: {656 readonly asEndowed: {
697 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved' | 'Locked' | 'Unlocked';750 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved' | 'Locked' | 'Unlocked';
698 }751 }
699752
700 /** @name PalletForeignAssetsAssetIds (63) */753 /** @name PalletForeignAssetsAssetIds (64) */
701 interface PalletForeignAssetsAssetIds extends Enum {754 interface PalletForeignAssetsAssetIds extends Enum {
702 readonly isForeignAssetId: boolean;755 readonly isForeignAssetId: boolean;
703 readonly asForeignAssetId: u32;756 readonly asForeignAssetId: u32;
706 readonly type: 'ForeignAssetId' | 'NativeAssetId';759 readonly type: 'ForeignAssetId' | 'NativeAssetId';
707 }760 }
708761
709 /** @name PalletForeignAssetsNativeCurrency (64) */762 /** @name PalletForeignAssetsNativeCurrency (65) */
710 interface PalletForeignAssetsNativeCurrency extends Enum {763 interface PalletForeignAssetsNativeCurrency extends Enum {
711 readonly isHere: boolean;764 readonly isHere: boolean;
712 readonly isParent: boolean;765 readonly isParent: boolean;
713 readonly type: 'Here' | 'Parent';766 readonly type: 'Here' | 'Parent';
714 }767 }
715768
716 /** @name PalletIdentityEvent (65) */769 /** @name PalletIdentityEvent (66) */
717 interface PalletIdentityEvent extends Enum {770 interface PalletIdentityEvent extends Enum {
718 readonly isIdentitySet: boolean;771 readonly isIdentitySet: boolean;
719 readonly asIdentitySet: {772 readonly asIdentitySet: {
781 readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked' | 'SubIdentitiesInserted';834 readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked' | 'SubIdentitiesInserted';
782 }835 }
783836
784 /** @name PalletPreimageEvent (66) */837 /** @name PalletPreimageEvent (67) */
785 interface PalletPreimageEvent extends Enum {838 interface PalletPreimageEvent extends Enum {
786 readonly isNoted: boolean;839 readonly isNoted: boolean;
787 readonly asNoted: {840 readonly asNoted: {
798 readonly type: 'Noted' | 'Requested' | 'Cleared';851 readonly type: 'Noted' | 'Requested' | 'Cleared';
799 }852 }
800853
801 /** @name CumulusPalletXcmpQueueEvent (67) */854 /** @name CumulusPalletXcmpQueueEvent (68) */
802 interface CumulusPalletXcmpQueueEvent extends Enum {855 interface CumulusPalletXcmpQueueEvent extends Enum {
803 readonly isSuccess: boolean;856 readonly isSuccess: boolean;
804 readonly asSuccess: {857 readonly asSuccess: {
838 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';891 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
839 }892 }
840893
841 /** @name XcmV3TraitsError (68) */894 /** @name XcmV3TraitsError (69) */
842 interface XcmV3TraitsError extends Enum {895 interface XcmV3TraitsError extends Enum {
843 readonly isOverflow: boolean;896 readonly isOverflow: boolean;
844 readonly isUnimplemented: boolean;897 readonly isUnimplemented: boolean;
885 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'LocationFull' | 'LocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'ExpectationFalse' | 'PalletNotFound' | 'NameMismatch' | 'VersionIncompatible' | 'HoldingWouldOverflow' | 'ExportError' | 'ReanchorFailed' | 'NoDeal' | 'FeesNotMet' | 'LockError' | 'NoPermission' | 'Unanchored' | 'NotDepositable' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable' | 'ExceedsStackLimit';938 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'LocationFull' | 'LocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'ExpectationFalse' | 'PalletNotFound' | 'NameMismatch' | 'VersionIncompatible' | 'HoldingWouldOverflow' | 'ExportError' | 'ReanchorFailed' | 'NoDeal' | 'FeesNotMet' | 'LockError' | 'NoPermission' | 'Unanchored' | 'NotDepositable' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable' | 'ExceedsStackLimit';
886 }939 }
887940
888 /** @name PalletXcmEvent (70) */941 /** @name PalletXcmEvent (71) */
889 interface PalletXcmEvent extends Enum {942 interface PalletXcmEvent extends Enum {
890 readonly isAttempted: boolean;943 readonly isAttempted: boolean;
891 readonly asAttempted: XcmV3TraitsOutcome;944 readonly asAttempted: XcmV3TraitsOutcome;
936 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'InvalidQuerierVersion' | 'InvalidQuerier' | 'VersionNotifyStarted' | 'VersionNotifyRequested' | 'VersionNotifyUnrequested' | 'FeesPaid' | 'AssetsClaimed';989 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'InvalidQuerierVersion' | 'InvalidQuerier' | 'VersionNotifyStarted' | 'VersionNotifyRequested' | 'VersionNotifyUnrequested' | 'FeesPaid' | 'AssetsClaimed';
937 }990 }
938991
939 /** @name XcmV3TraitsOutcome (71) */992 /** @name XcmV3TraitsOutcome (72) */
940 interface XcmV3TraitsOutcome extends Enum {993 interface XcmV3TraitsOutcome extends Enum {
941 readonly isComplete: boolean;994 readonly isComplete: boolean;
942 readonly asComplete: SpWeightsWeightV2Weight;995 readonly asComplete: SpWeightsWeightV2Weight;
947 readonly type: 'Complete' | 'Incomplete' | 'Error';1000 readonly type: 'Complete' | 'Incomplete' | 'Error';
948 }1001 }
9491002
950 /** @name XcmV3Xcm (72) */1003 /** @name XcmV3Xcm (73) */
951 interface XcmV3Xcm extends Vec<XcmV3Instruction> {}1004 interface XcmV3Xcm extends Vec<XcmV3Instruction> {}
9521005
953 /** @name XcmV3Instruction (74) */1006 /** @name XcmV3Instruction (75) */
954 interface XcmV3Instruction extends Enum {1007 interface XcmV3Instruction extends Enum {
955 readonly isWithdrawAsset: boolean;1008 readonly isWithdrawAsset: boolean;
956 readonly asWithdrawAsset: XcmV3MultiassetMultiAssets;1009 readonly asWithdrawAsset: XcmV3MultiassetMultiAssets;
1132 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'ReportHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion' | 'BurnAsset' | 'ExpectAsset' | 'ExpectOrigin' | 'ExpectError' | 'ExpectTransactStatus' | 'QueryPallet' | 'ExpectPallet' | 'ReportTransactStatus' | 'ClearTransactStatus' | 'UniversalOrigin' | 'ExportMessage' | 'LockAsset' | 'UnlockAsset' | 'NoteUnlockable' | 'RequestUnlock' | 'SetFeesMode' | 'SetTopic' | 'ClearTopic' | 'AliasOrigin' | 'UnpaidExecution';1185 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'ReportHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion' | 'BurnAsset' | 'ExpectAsset' | 'ExpectOrigin' | 'ExpectError' | 'ExpectTransactStatus' | 'QueryPallet' | 'ExpectPallet' | 'ReportTransactStatus' | 'ClearTransactStatus' | 'UniversalOrigin' | 'ExportMessage' | 'LockAsset' | 'UnlockAsset' | 'NoteUnlockable' | 'RequestUnlock' | 'SetFeesMode' | 'SetTopic' | 'ClearTopic' | 'AliasOrigin' | 'UnpaidExecution';
1133 }1186 }
11341187
1135 /** @name XcmV3Response (75) */1188 /** @name XcmV3Response (76) */
1136 interface XcmV3Response extends Enum {1189 interface XcmV3Response extends Enum {
1137 readonly isNull: boolean;1190 readonly isNull: boolean;
1138 readonly isAssets: boolean;1191 readonly isAssets: boolean;
1148 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version' | 'PalletsInfo' | 'DispatchResult';1201 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version' | 'PalletsInfo' | 'DispatchResult';
1149 }1202 }
11501203
1151 /** @name XcmV3PalletInfo (79) */1204 /** @name XcmV3PalletInfo (80) */
1152 interface XcmV3PalletInfo extends Struct {1205 interface XcmV3PalletInfo extends Struct {
1153 readonly index: Compact<u32>;1206 readonly index: Compact<u32>;
1154 readonly name: Bytes;1207 readonly name: Bytes;
1158 readonly patch: Compact<u32>;1211 readonly patch: Compact<u32>;
1159 }1212 }
11601213
1161 /** @name XcmV3MaybeErrorCode (82) */1214 /** @name XcmV3MaybeErrorCode (83) */
1162 interface XcmV3MaybeErrorCode extends Enum {1215 interface XcmV3MaybeErrorCode extends Enum {
1163 readonly isSuccess: boolean;1216 readonly isSuccess: boolean;
1164 readonly isError: boolean;1217 readonly isError: boolean;
1168 readonly type: 'Success' | 'Error' | 'TruncatedError';1221 readonly type: 'Success' | 'Error' | 'TruncatedError';
1169 }1222 }
11701223
1171 /** @name XcmV2OriginKind (85) */1224 /** @name XcmV2OriginKind (86) */
1172 interface XcmV2OriginKind extends Enum {1225 interface XcmV2OriginKind extends Enum {
1173 readonly isNative: boolean;1226 readonly isNative: boolean;
1174 readonly isSovereignAccount: boolean;1227 readonly isSovereignAccount: boolean;
1177 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';1230 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';
1178 }1231 }
11791232
1180 /** @name XcmDoubleEncoded (86) */1233 /** @name XcmDoubleEncoded (87) */
1181 interface XcmDoubleEncoded extends Struct {1234 interface XcmDoubleEncoded extends Struct {
1182 readonly encoded: Bytes;1235 readonly encoded: Bytes;
1183 }1236 }
11841237
1185 /** @name XcmV3QueryResponseInfo (87) */1238 /** @name XcmV3QueryResponseInfo (88) */
1186 interface XcmV3QueryResponseInfo extends Struct {1239 interface XcmV3QueryResponseInfo extends Struct {
1187 readonly destination: XcmV3MultiLocation;1240 readonly destination: XcmV3MultiLocation;
1188 readonly queryId: Compact<u64>;1241 readonly queryId: Compact<u64>;
1189 readonly maxWeight: SpWeightsWeightV2Weight;1242 readonly maxWeight: SpWeightsWeightV2Weight;
1190 }1243 }
11911244
1192 /** @name XcmV3MultiassetMultiAssetFilter (88) */1245 /** @name XcmV3MultiassetMultiAssetFilter (89) */
1193 interface XcmV3MultiassetMultiAssetFilter extends Enum {1246 interface XcmV3MultiassetMultiAssetFilter extends Enum {
1194 readonly isDefinite: boolean;1247 readonly isDefinite: boolean;
1195 readonly asDefinite: XcmV3MultiassetMultiAssets;1248 readonly asDefinite: XcmV3MultiassetMultiAssets;
1198 readonly type: 'Definite' | 'Wild';1251 readonly type: 'Definite' | 'Wild';
1199 }1252 }
12001253
1201 /** @name XcmV3MultiassetWildMultiAsset (89) */1254 /** @name XcmV3MultiassetWildMultiAsset (90) */
1202 interface XcmV3MultiassetWildMultiAsset extends Enum {1255 interface XcmV3MultiassetWildMultiAsset extends Enum {
1203 readonly isAll: boolean;1256 readonly isAll: boolean;
1204 readonly isAllOf: boolean;1257 readonly isAllOf: boolean;
1217 readonly type: 'All' | 'AllOf' | 'AllCounted' | 'AllOfCounted';1270 readonly type: 'All' | 'AllOf' | 'AllCounted' | 'AllOfCounted';
1218 }1271 }
12191272
1220 /** @name XcmV3MultiassetWildFungibility (90) */1273 /** @name XcmV3MultiassetWildFungibility (91) */
1221 interface XcmV3MultiassetWildFungibility extends Enum {1274 interface XcmV3MultiassetWildFungibility extends Enum {
1222 readonly isFungible: boolean;1275 readonly isFungible: boolean;
1223 readonly isNonFungible: boolean;1276 readonly isNonFungible: boolean;
1224 readonly type: 'Fungible' | 'NonFungible';1277 readonly type: 'Fungible' | 'NonFungible';
1225 }1278 }
12261279
1227 /** @name XcmV3WeightLimit (92) */1280 /** @name XcmV3WeightLimit (93) */
1228 interface XcmV3WeightLimit extends Enum {1281 interface XcmV3WeightLimit extends Enum {
1229 readonly isUnlimited: boolean;1282 readonly isUnlimited: boolean;
1230 readonly isLimited: boolean;1283 readonly isLimited: boolean;
1231 readonly asLimited: SpWeightsWeightV2Weight;1284 readonly asLimited: SpWeightsWeightV2Weight;
1232 readonly type: 'Unlimited' | 'Limited';1285 readonly type: 'Unlimited' | 'Limited';
1233 }1286 }
12341287
1235 /** @name XcmVersionedMultiAssets (93) */1288 /** @name XcmVersionedMultiAssets (94) */
1236 interface XcmVersionedMultiAssets extends Enum {1289 interface XcmVersionedMultiAssets extends Enum {
1237 readonly isV2: boolean;1290 readonly isV2: boolean;
1238 readonly asV2: XcmV2MultiassetMultiAssets;1291 readonly asV2: XcmV2MultiassetMultiAssets;
1241 readonly type: 'V2' | 'V3';1294 readonly type: 'V2' | 'V3';
1242 }1295 }
12431296
1244 /** @name XcmV2MultiassetMultiAssets (94) */1297 /** @name XcmV2MultiassetMultiAssets (95) */
1245 interface XcmV2MultiassetMultiAssets extends Vec<XcmV2MultiAsset> {}1298 interface XcmV2MultiassetMultiAssets extends Vec<XcmV2MultiAsset> {}
12461299
1247 /** @name XcmV2MultiAsset (96) */1300 /** @name XcmV2MultiAsset (97) */
1248 interface XcmV2MultiAsset extends Struct {1301 interface XcmV2MultiAsset extends Struct {
1249 readonly id: XcmV2MultiassetAssetId;1302 readonly id: XcmV2MultiassetAssetId;
1250 readonly fun: XcmV2MultiassetFungibility;1303 readonly fun: XcmV2MultiassetFungibility;
1251 }1304 }
12521305
1253 /** @name XcmV2MultiassetAssetId (97) */1306 /** @name XcmV2MultiassetAssetId (98) */
1254 interface XcmV2MultiassetAssetId extends Enum {1307 interface XcmV2MultiassetAssetId extends Enum {
1255 readonly isConcrete: boolean;1308 readonly isConcrete: boolean;
1256 readonly asConcrete: XcmV2MultiLocation;1309 readonly asConcrete: XcmV2MultiLocation;
1259 readonly type: 'Concrete' | 'Abstract';1312 readonly type: 'Concrete' | 'Abstract';
1260 }1313 }
12611314
1262 /** @name XcmV2MultiLocation (98) */1315 /** @name XcmV2MultiLocation (99) */
1263 interface XcmV2MultiLocation extends Struct {1316 interface XcmV2MultiLocation extends Struct {
1264 readonly parents: u8;1317 readonly parents: u8;
1265 readonly interior: XcmV2MultilocationJunctions;1318 readonly interior: XcmV2MultilocationJunctions;
1266 }1319 }
12671320
1268 /** @name XcmV2MultilocationJunctions (99) */1321 /** @name XcmV2MultilocationJunctions (100) */
1269 interface XcmV2MultilocationJunctions extends Enum {1322 interface XcmV2MultilocationJunctions extends Enum {
1270 readonly isHere: boolean;1323 readonly isHere: boolean;
1271 readonly isX1: boolean;1324 readonly isX1: boolean;
1287 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1340 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
1288 }1341 }
12891342
1290 /** @name XcmV2Junction (100) */1343 /** @name XcmV2Junction (101) */
1291 interface XcmV2Junction extends Enum {1344 interface XcmV2Junction extends Enum {
1292 readonly isParachain: boolean;1345 readonly isParachain: boolean;
1293 readonly asParachain: Compact<u32>;1346 readonly asParachain: Compact<u32>;
1321 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1374 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
1322 }1375 }
13231376
1324 /** @name XcmV2NetworkId (101) */1377 /** @name XcmV2NetworkId (102) */
1325 interface XcmV2NetworkId extends Enum {1378 interface XcmV2NetworkId extends Enum {
1326 readonly isAny: boolean;1379 readonly isAny: boolean;
1327 readonly isNamed: boolean;1380 readonly isNamed: boolean;
1331 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';1384 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';
1332 }1385 }
13331386
1334 /** @name XcmV2BodyId (103) */1387 /** @name XcmV2BodyId (104) */
1335 interface XcmV2BodyId extends Enum {1388 interface XcmV2BodyId extends Enum {
1336 readonly isUnit: boolean;1389 readonly isUnit: boolean;
1337 readonly isNamed: boolean;1390 readonly isNamed: boolean;
1348 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';1401 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial' | 'Defense' | 'Administration' | 'Treasury';
1349 }1402 }
13501403
1351 /** @name XcmV2BodyPart (104) */1404 /** @name XcmV2BodyPart (105) */
1352 interface XcmV2BodyPart extends Enum {1405 interface XcmV2BodyPart extends Enum {
1353 readonly isVoice: boolean;1406 readonly isVoice: boolean;
1354 readonly isMembers: boolean;1407 readonly isMembers: boolean;
1373 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';1426 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
1374 }1427 }
13751428
1376 /** @name XcmV2MultiassetFungibility (105) */1429 /** @name XcmV2MultiassetFungibility (106) */
1377 interface XcmV2MultiassetFungibility extends Enum {1430 interface XcmV2MultiassetFungibility extends Enum {
1378 readonly isFungible: boolean;1431 readonly isFungible: boolean;
1379 readonly asFungible: Compact<u128>;1432 readonly asFungible: Compact<u128>;
1382 readonly type: 'Fungible' | 'NonFungible';1435 readonly type: 'Fungible' | 'NonFungible';
1383 }1436 }
13841437
1385 /** @name XcmV2MultiassetAssetInstance (106) */1438 /** @name XcmV2MultiassetAssetInstance (107) */
1386 interface XcmV2MultiassetAssetInstance extends Enum {1439 interface XcmV2MultiassetAssetInstance extends Enum {
1387 readonly isUndefined: boolean;1440 readonly isUndefined: boolean;
1388 readonly isIndex: boolean;1441 readonly isIndex: boolean;
1400 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';1453 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';
1401 }1454 }
14021455
1403 /** @name XcmVersionedMultiLocation (107) */1456 /** @name XcmVersionedMultiLocation (108) */
1404 interface XcmVersionedMultiLocation extends Enum {1457 interface XcmVersionedMultiLocation extends Enum {
1405 readonly isV2: boolean;1458 readonly isV2: boolean;
1406 readonly asV2: XcmV2MultiLocation;1459 readonly asV2: XcmV2MultiLocation;
1409 readonly type: 'V2' | 'V3';1462 readonly type: 'V2' | 'V3';
1410 }1463 }
14111464
1412 /** @name CumulusPalletXcmEvent (108) */1465 /** @name CumulusPalletXcmEvent (109) */
1413 interface CumulusPalletXcmEvent extends Enum {1466 interface CumulusPalletXcmEvent extends Enum {
1414 readonly isInvalidFormat: boolean;1467 readonly isInvalidFormat: boolean;
1415 readonly asInvalidFormat: U8aFixed;1468 readonly asInvalidFormat: U8aFixed;
1420 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1473 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
1421 }1474 }
14221475
1423 /** @name CumulusPalletDmpQueueEvent (109) */1476 /** @name CumulusPalletDmpQueueEvent (110) */
1424 interface CumulusPalletDmpQueueEvent extends Enum {1477 interface CumulusPalletDmpQueueEvent extends Enum {
1425 readonly isInvalidFormat: boolean;1478 readonly isInvalidFormat: boolean;
1426 readonly asInvalidFormat: {1479 readonly asInvalidFormat: {
1459 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced' | 'MaxMessagesExhausted';1512 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced' | 'MaxMessagesExhausted';
1460 }1513 }
14611514
1462 /** @name PalletConfigurationEvent (110) */1515 /** @name PalletConfigurationEvent (111) */
1463 interface PalletConfigurationEvent extends Enum {1516 interface PalletConfigurationEvent extends Enum {
1464 readonly isNewDesiredCollators: boolean;1517 readonly isNewDesiredCollators: boolean;
1465 readonly asNewDesiredCollators: {1518 readonly asNewDesiredCollators: {
1476 readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';1529 readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';
1477 }1530 }
14781531
1479 /** @name PalletCommonEvent (113) */1532 /** @name PalletCommonEvent (114) */
1480 interface PalletCommonEvent extends Enum {1533 interface PalletCommonEvent extends Enum {
1481 readonly isCollectionCreated: boolean;1534 readonly isCollectionCreated: boolean;
1482 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1535 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
1525 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1578 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';
1526 }1579 }
15271580
1528 /** @name PalletEvmAccountBasicCrossAccountIdRepr (116) */1581 /** @name PalletEvmAccountBasicCrossAccountIdRepr (117) */
1529 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1582 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
1530 readonly isSubstrate: boolean;1583 readonly isSubstrate: boolean;
1531 readonly asSubstrate: AccountId32;1584 readonly asSubstrate: AccountId32;
1534 readonly type: 'Substrate' | 'Ethereum';1587 readonly type: 'Substrate' | 'Ethereum';
1535 }1588 }
15361589
1537 /** @name PalletStructureEvent (119) */1590 /** @name PalletStructureEvent (120) */
1538 interface PalletStructureEvent extends Enum {1591 interface PalletStructureEvent extends Enum {
1539 readonly isExecuted: boolean;1592 readonly isExecuted: boolean;
1540 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1593 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
1541 readonly type: 'Executed';1594 readonly type: 'Executed';
1542 }1595 }
15431596
1544 /** @name PalletAppPromotionEvent (120) */1597 /** @name PalletAppPromotionEvent (121) */
1545 interface PalletAppPromotionEvent extends Enum {1598 interface PalletAppPromotionEvent extends Enum {
1546 readonly isStakingRecalculation: boolean;1599 readonly isStakingRecalculation: boolean;
1547 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1600 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
1554 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1607 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
1555 }1608 }
15561609
1557 /** @name PalletForeignAssetsModuleEvent (121) */1610 /** @name PalletForeignAssetsModuleEvent (122) */
1558 interface PalletForeignAssetsModuleEvent extends Enum {1611 interface PalletForeignAssetsModuleEvent extends Enum {
1559 readonly isForeignAssetRegistered: boolean;1612 readonly isForeignAssetRegistered: boolean;
1560 readonly asForeignAssetRegistered: {1613 readonly asForeignAssetRegistered: {
1581 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1634 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
1582 }1635 }
15831636
1584 /** @name PalletForeignAssetsModuleAssetMetadata (122) */1637 /** @name PalletForeignAssetsModuleAssetMetadata (123) */
1585 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1638 interface PalletForeignAssetsModuleAssetMetadata extends Struct {
1586 readonly name: Bytes;1639 readonly name: Bytes;
1587 readonly symbol: Bytes;1640 readonly symbol: Bytes;
1588 readonly decimals: u8;1641 readonly decimals: u8;
1589 readonly minimalBalance: u128;1642 readonly minimalBalance: u128;
1590 }1643 }
15911644
1592 /** @name PalletEvmEvent (125) */1645 /** @name PalletEvmEvent (126) */
1593 interface PalletEvmEvent extends Enum {1646 interface PalletEvmEvent extends Enum {
1594 readonly isLog: boolean;1647 readonly isLog: boolean;
1595 readonly asLog: {1648 readonly asLog: {
1614 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1667 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
1615 }1668 }
16161669
1617 /** @name EthereumLog (126) */1670 /** @name EthereumLog (127) */
1618 interface EthereumLog extends Struct {1671 interface EthereumLog extends Struct {
1619 readonly address: H160;1672 readonly address: H160;
1620 readonly topics: Vec<H256>;1673 readonly topics: Vec<H256>;
1621 readonly data: Bytes;1674 readonly data: Bytes;
1622 }1675 }
16231676
1624 /** @name PalletEthereumEvent (128) */1677 /** @name PalletEthereumEvent (129) */
1625 interface PalletEthereumEvent extends Enum {1678 interface PalletEthereumEvent extends Enum {
1626 readonly isExecuted: boolean;1679 readonly isExecuted: boolean;
1627 readonly asExecuted: {1680 readonly asExecuted: {
1628 readonly from: H160;1681 readonly from: H160;
1629 readonly to: H160;1682 readonly to: H160;
1630 readonly transactionHash: H256;1683 readonly transactionHash: H256;
1631 readonly exitReason: EvmCoreErrorExitReason;1684 readonly exitReason: EvmCoreErrorExitReason;
1685 readonly extraData: Bytes;
1632 } & Struct;1686 } & Struct;
1633 readonly type: 'Executed';1687 readonly type: 'Executed';
1634 }1688 }
16351689
1636 /** @name EvmCoreErrorExitReason (129) */1690 /** @name EvmCoreErrorExitReason (130) */
1637 interface EvmCoreErrorExitReason extends Enum {1691 interface EvmCoreErrorExitReason extends Enum {
1638 readonly isSucceed: boolean;1692 readonly isSucceed: boolean;
1639 readonly asSucceed: EvmCoreErrorExitSucceed;1693 readonly asSucceed: EvmCoreErrorExitSucceed;
1646 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1700 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
1647 }1701 }
16481702
1649 /** @name EvmCoreErrorExitSucceed (130) */1703 /** @name EvmCoreErrorExitSucceed (131) */
1650 interface EvmCoreErrorExitSucceed extends Enum {1704 interface EvmCoreErrorExitSucceed extends Enum {
1651 readonly isStopped: boolean;1705 readonly isStopped: boolean;
1652 readonly isReturned: boolean;1706 readonly isReturned: boolean;
1653 readonly isSuicided: boolean;1707 readonly isSuicided: boolean;
1654 readonly type: 'Stopped' | 'Returned' | 'Suicided';1708 readonly type: 'Stopped' | 'Returned' | 'Suicided';
1655 }1709 }
16561710
1657 /** @name EvmCoreErrorExitError (131) */1711 /** @name EvmCoreErrorExitError (132) */
1658 interface EvmCoreErrorExitError extends Enum {1712 interface EvmCoreErrorExitError extends Enum {
1659 readonly isStackUnderflow: boolean;1713 readonly isStackUnderflow: boolean;
1660 readonly isStackOverflow: boolean;1714 readonly isStackOverflow: boolean;
1676 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1730 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
1677 }1731 }
16781732
1679 /** @name EvmCoreErrorExitRevert (135) */1733 /** @name EvmCoreErrorExitRevert (136) */
1680 interface EvmCoreErrorExitRevert extends Enum {1734 interface EvmCoreErrorExitRevert extends Enum {
1681 readonly isReverted: boolean;1735 readonly isReverted: boolean;
1682 readonly type: 'Reverted';1736 readonly type: 'Reverted';
1683 }1737 }
16841738
1685 /** @name EvmCoreErrorExitFatal (136) */1739 /** @name EvmCoreErrorExitFatal (137) */
1686 interface EvmCoreErrorExitFatal extends Enum {1740 interface EvmCoreErrorExitFatal extends Enum {
1687 readonly isNotSupported: boolean;1741 readonly isNotSupported: boolean;
1688 readonly isUnhandledInterrupt: boolean;1742 readonly isUnhandledInterrupt: boolean;
1693 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1747 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
1694 }1748 }
16951749
1696 /** @name PalletEvmContractHelpersEvent (137) */1750 /** @name PalletEvmContractHelpersEvent (138) */
1697 interface PalletEvmContractHelpersEvent extends Enum {1751 interface PalletEvmContractHelpersEvent extends Enum {
1698 readonly isContractSponsorSet: boolean;1752 readonly isContractSponsorSet: boolean;
1699 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1753 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
1704 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1758 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
1705 }1759 }
17061760
1707 /** @name PalletEvmMigrationEvent (138) */1761 /** @name PalletEvmMigrationEvent (139) */
1708 interface PalletEvmMigrationEvent extends Enum {1762 interface PalletEvmMigrationEvent extends Enum {
1709 readonly isTestEvent: boolean;1763 readonly isTestEvent: boolean;
1710 readonly type: 'TestEvent';1764 readonly type: 'TestEvent';
1711 }1765 }
17121766
1713 /** @name PalletMaintenanceEvent (139) */1767 /** @name PalletMaintenanceEvent (140) */
1714 interface PalletMaintenanceEvent extends Enum {1768 interface PalletMaintenanceEvent extends Enum {
1715 readonly isMaintenanceEnabled: boolean;1769 readonly isMaintenanceEnabled: boolean;
1716 readonly isMaintenanceDisabled: boolean;1770 readonly isMaintenanceDisabled: boolean;
1717 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1771 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';
1718 }1772 }
17191773
1720 /** @name PalletTestUtilsEvent (140) */1774 /** @name PalletTestUtilsEvent (141) */
1721 interface PalletTestUtilsEvent extends Enum {1775 interface PalletTestUtilsEvent extends Enum {
1722 readonly isValueIsSet: boolean;1776 readonly isValueIsSet: boolean;
1723 readonly isShouldRollback: boolean;1777 readonly isShouldRollback: boolean;
1724 readonly isBatchCompleted: boolean;1778 readonly isBatchCompleted: boolean;
1725 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1779 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';
1726 }1780 }
17271781
1728 /** @name FrameSystemPhase (141) */1782 /** @name FrameSystemPhase (142) */
1729 interface FrameSystemPhase extends Enum {1783 interface FrameSystemPhase extends Enum {
1730 readonly isApplyExtrinsic: boolean;1784 readonly isApplyExtrinsic: boolean;
1731 readonly asApplyExtrinsic: u32;1785 readonly asApplyExtrinsic: u32;
1734 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1788 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
1735 }1789 }
17361790
1737 /** @name FrameSystemLastRuntimeUpgradeInfo (144) */1791 /** @name FrameSystemLastRuntimeUpgradeInfo (145) */
1738 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1792 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1739 readonly specVersion: Compact<u32>;1793 readonly specVersion: Compact<u32>;
1740 readonly specName: Text;1794 readonly specName: Text;
1741 }1795 }
17421796
1743 /** @name FrameSystemCall (145) */1797 /** @name FrameSystemCall (146) */
1744 interface FrameSystemCall extends Enum {1798 interface FrameSystemCall extends Enum {
1745 readonly isRemark: boolean;1799 readonly isRemark: boolean;
1746 readonly asRemark: {1800 readonly asRemark: {
1778 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1832 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
1779 }1833 }
17801834
1781 /** @name FrameSystemLimitsBlockWeights (149) */1835 /** @name FrameSystemLimitsBlockWeights (150) */
1782 interface FrameSystemLimitsBlockWeights extends Struct {1836 interface FrameSystemLimitsBlockWeights extends Struct {
1783 readonly baseBlock: SpWeightsWeightV2Weight;1837 readonly baseBlock: SpWeightsWeightV2Weight;
1784 readonly maxBlock: SpWeightsWeightV2Weight;1838 readonly maxBlock: SpWeightsWeightV2Weight;
1785 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1839 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
1786 }1840 }
17871841
1788 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (150) */1842 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (151) */
1789 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1843 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
1790 readonly normal: FrameSystemLimitsWeightsPerClass;1844 readonly normal: FrameSystemLimitsWeightsPerClass;
1791 readonly operational: FrameSystemLimitsWeightsPerClass;1845 readonly operational: FrameSystemLimitsWeightsPerClass;
1792 readonly mandatory: FrameSystemLimitsWeightsPerClass;1846 readonly mandatory: FrameSystemLimitsWeightsPerClass;
1793 }1847 }
17941848
1795 /** @name FrameSystemLimitsWeightsPerClass (151) */1849 /** @name FrameSystemLimitsWeightsPerClass (152) */
1796 interface FrameSystemLimitsWeightsPerClass extends Struct {1850 interface FrameSystemLimitsWeightsPerClass extends Struct {
1797 readonly baseExtrinsic: SpWeightsWeightV2Weight;1851 readonly baseExtrinsic: SpWeightsWeightV2Weight;
1798 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1852 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
1799 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1853 readonly maxTotal: Option<SpWeightsWeightV2Weight>;
1800 readonly reserved: Option<SpWeightsWeightV2Weight>;1854 readonly reserved: Option<SpWeightsWeightV2Weight>;
1801 }1855 }
18021856
1803 /** @name FrameSystemLimitsBlockLength (153) */1857 /** @name FrameSystemLimitsBlockLength (154) */
1804 interface FrameSystemLimitsBlockLength extends Struct {1858 interface FrameSystemLimitsBlockLength extends Struct {
1805 readonly max: FrameSupportDispatchPerDispatchClassU32;1859 readonly max: FrameSupportDispatchPerDispatchClassU32;
1806 }1860 }
18071861
1808 /** @name FrameSupportDispatchPerDispatchClassU32 (154) */1862 /** @name FrameSupportDispatchPerDispatchClassU32 (155) */
1809 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1863 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
1810 readonly normal: u32;1864 readonly normal: u32;
1811 readonly operational: u32;1865 readonly operational: u32;
1812 readonly mandatory: u32;1866 readonly mandatory: u32;
1813 }1867 }
18141868
1815 /** @name SpWeightsRuntimeDbWeight (155) */1869 /** @name SpWeightsRuntimeDbWeight (156) */
1816 interface SpWeightsRuntimeDbWeight extends Struct {1870 interface SpWeightsRuntimeDbWeight extends Struct {
1817 readonly read: u64;1871 readonly read: u64;
1818 readonly write: u64;1872 readonly write: u64;
1819 }1873 }
18201874
1821 /** @name SpVersionRuntimeVersion (156) */1875 /** @name SpVersionRuntimeVersion (157) */
1822 interface SpVersionRuntimeVersion extends Struct {1876 interface SpVersionRuntimeVersion extends Struct {
1823 readonly specName: Text;1877 readonly specName: Text;
1824 readonly implName: Text;1878 readonly implName: Text;
1830 readonly stateVersion: u8;1884 readonly stateVersion: u8;
1831 }1885 }
18321886
1833 /** @name FrameSystemError (161) */1887 /** @name FrameSystemError (162) */
1834 interface FrameSystemError extends Enum {1888 interface FrameSystemError extends Enum {
1835 readonly isInvalidSpecName: boolean;1889 readonly isInvalidSpecName: boolean;
1836 readonly isSpecVersionNeedsToIncrease: boolean;1890 readonly isSpecVersionNeedsToIncrease: boolean;
1841 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1895 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
1842 }1896 }
18431897
1844 /** @name PolkadotPrimitivesV2PersistedValidationData (162) */1898 /** @name PolkadotPrimitivesV4PersistedValidationData (163) */
1845 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1899 interface PolkadotPrimitivesV4PersistedValidationData extends Struct {
1846 readonly parentHead: Bytes;1900 readonly parentHead: Bytes;
1847 readonly relayParentNumber: u32;1901 readonly relayParentNumber: u32;
1848 readonly relayParentStorageRoot: H256;1902 readonly relayParentStorageRoot: H256;
1849 readonly maxPovSize: u32;1903 readonly maxPovSize: u32;
1850 }1904 }
18511905
1852 /** @name PolkadotPrimitivesV2UpgradeRestriction (165) */1906 /** @name PolkadotPrimitivesV4UpgradeRestriction (166) */
1853 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1907 interface PolkadotPrimitivesV4UpgradeRestriction extends Enum {
1854 readonly isPresent: boolean;1908 readonly isPresent: boolean;
1855 readonly type: 'Present';1909 readonly type: 'Present';
1856 }1910 }
18571911
1858 /** @name SpTrieStorageProof (166) */1912 /** @name SpTrieStorageProof (167) */
1859 interface SpTrieStorageProof extends Struct {1913 interface SpTrieStorageProof extends Struct {
1860 readonly trieNodes: BTreeSet<Bytes>;1914 readonly trieNodes: BTreeSet<Bytes>;
1861 }1915 }
18621916
1863 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (168) */1917 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (169) */
1864 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1918 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
1865 readonly dmqMqcHead: H256;1919 readonly dmqMqcHead: H256;
1866 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1920 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
1867 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1921 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV4AbridgedHrmpChannel]>>;
1868 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1922 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV4AbridgedHrmpChannel]>>;
1869 }1923 }
18701924
1871 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (171) */1925 /** @name PolkadotPrimitivesV4AbridgedHrmpChannel (172) */
1872 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1926 interface PolkadotPrimitivesV4AbridgedHrmpChannel extends Struct {
1873 readonly maxCapacity: u32;1927 readonly maxCapacity: u32;
1874 readonly maxTotalSize: u32;1928 readonly maxTotalSize: u32;
1875 readonly maxMessageSize: u32;1929 readonly maxMessageSize: u32;
1878 readonly mqcHead: Option<H256>;1932 readonly mqcHead: Option<H256>;
1879 }1933 }
18801934
1881 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (173) */1935 /** @name PolkadotPrimitivesV4AbridgedHostConfiguration (174) */
1882 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1936 interface PolkadotPrimitivesV4AbridgedHostConfiguration extends Struct {
1883 readonly maxCodeSize: u32;1937 readonly maxCodeSize: u32;
1884 readonly maxHeadDataSize: u32;1938 readonly maxHeadDataSize: u32;
1885 readonly maxUpwardQueueCount: u32;1939 readonly maxUpwardQueueCount: u32;
1891 readonly validationUpgradeDelay: u32;1945 readonly validationUpgradeDelay: u32;
1892 }1946 }
18931947
1894 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (179) */1948 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (180) */
1895 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1949 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
1896 readonly recipient: u32;1950 readonly recipient: u32;
1897 readonly data: Bytes;1951 readonly data: Bytes;
1898 }1952 }
1953
1954 /** @name CumulusPalletParachainSystemCodeUpgradeAuthorization (181) */
1955 interface CumulusPalletParachainSystemCodeUpgradeAuthorization extends Struct {
1956 readonly codeHash: H256;
1957 readonly checkVersion: bool;
1958 }
18991959
1900 /** @name CumulusPalletParachainSystemCall (180) */1960 /** @name CumulusPalletParachainSystemCall (182) */
1901 interface CumulusPalletParachainSystemCall extends Enum {1961 interface CumulusPalletParachainSystemCall extends Enum {
1902 readonly isSetValidationData: boolean;1962 readonly isSetValidationData: boolean;
1903 readonly asSetValidationData: {1963 readonly asSetValidationData: {
1910 readonly isAuthorizeUpgrade: boolean;1970 readonly isAuthorizeUpgrade: boolean;
1911 readonly asAuthorizeUpgrade: {1971 readonly asAuthorizeUpgrade: {
1912 readonly codeHash: H256;1972 readonly codeHash: H256;
1973 readonly checkVersion: bool;
1913 } & Struct;1974 } & Struct;
1914 readonly isEnactAuthorizedUpgrade: boolean;1975 readonly isEnactAuthorizedUpgrade: boolean;
1915 readonly asEnactAuthorizedUpgrade: {1976 readonly asEnactAuthorizedUpgrade: {
1918 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1979 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
1919 }1980 }
19201981
1921 /** @name CumulusPrimitivesParachainInherentParachainInherentData (181) */1982 /** @name CumulusPrimitivesParachainInherentParachainInherentData (183) */
1922 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1983 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
1923 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1984 readonly validationData: PolkadotPrimitivesV4PersistedValidationData;
1924 readonly relayChainState: SpTrieStorageProof;1985 readonly relayChainState: SpTrieStorageProof;
1925 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1986 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;
1926 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1987 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
1927 }1988 }
19281989
1929 /** @name PolkadotCorePrimitivesInboundDownwardMessage (183) */1990 /** @name PolkadotCorePrimitivesInboundDownwardMessage (185) */
1930 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1991 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
1931 readonly sentAt: u32;1992 readonly sentAt: u32;
1932 readonly msg: Bytes;1993 readonly msg: Bytes;
1933 }1994 }
19341995
1935 /** @name PolkadotCorePrimitivesInboundHrmpMessage (186) */1996 /** @name PolkadotCorePrimitivesInboundHrmpMessage (188) */
1936 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1997 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
1937 readonly sentAt: u32;1998 readonly sentAt: u32;
1938 readonly data: Bytes;1999 readonly data: Bytes;
1939 }2000 }
19402001
1941 /** @name CumulusPalletParachainSystemError (189) */2002 /** @name CumulusPalletParachainSystemError (191) */
1942 interface CumulusPalletParachainSystemError extends Enum {2003 interface CumulusPalletParachainSystemError extends Enum {
1943 readonly isOverlappingUpgrades: boolean;2004 readonly isOverlappingUpgrades: boolean;
1944 readonly isProhibitedByPolkadot: boolean;2005 readonly isProhibitedByPolkadot: boolean;
1951 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';2012 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
1952 }2013 }
19532014
1954 /** @name ParachainInfoCall (190) */2015 /** @name ParachainInfoCall (192) */
1955 type ParachainInfoCall = Null;2016 type ParachainInfoCall = Null;
19562017
1957 /** @name PalletCollatorSelectionCall (193) */2018 /** @name PalletCollatorSelectionCall (195) */
1958 interface PalletCollatorSelectionCall extends Enum {2019 interface PalletCollatorSelectionCall extends Enum {
1959 readonly isAddInvulnerable: boolean;2020 readonly isAddInvulnerable: boolean;
1960 readonly asAddInvulnerable: {2021 readonly asAddInvulnerable: {
1975 readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';2036 readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';
1976 }2037 }
19772038
1978 /** @name PalletCollatorSelectionError (194) */2039 /** @name PalletCollatorSelectionError (196) */
1979 interface PalletCollatorSelectionError extends Enum {2040 interface PalletCollatorSelectionError extends Enum {
1980 readonly isTooManyCandidates: boolean;2041 readonly isTooManyCandidates: boolean;
1981 readonly isUnknown: boolean;2042 readonly isUnknown: boolean;
1993 readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';2054 readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';
1994 }2055 }
19952056
1996 /** @name OpalRuntimeRuntimeCommonSessionKeys (197) */2057 /** @name OpalRuntimeRuntimeCommonSessionKeys (199) */
1997 interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {2058 interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
1998 readonly aura: SpConsensusAuraSr25519AppSr25519Public;2059 readonly aura: SpConsensusAuraSr25519AppSr25519Public;
1999 }2060 }
20002061
2001 /** @name SpConsensusAuraSr25519AppSr25519Public (198) */2062 /** @name SpConsensusAuraSr25519AppSr25519Public (200) */
2002 interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}2063 interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}
20032064
2004 /** @name SpCoreSr25519Public (199) */2065 /** @name SpCoreSr25519Public (201) */
2005 interface SpCoreSr25519Public extends U8aFixed {}2066 interface SpCoreSr25519Public extends U8aFixed {}
20062067
2007 /** @name SpCoreCryptoKeyTypeId (202) */2068 /** @name SpCoreCryptoKeyTypeId (204) */
2008 interface SpCoreCryptoKeyTypeId extends U8aFixed {}2069 interface SpCoreCryptoKeyTypeId extends U8aFixed {}
20092070
2010 /** @name PalletSessionCall (203) */2071 /** @name PalletSessionCall (205) */
2011 interface PalletSessionCall extends Enum {2072 interface PalletSessionCall extends Enum {
2012 readonly isSetKeys: boolean;2073 readonly isSetKeys: boolean;
2013 readonly asSetKeys: {2074 readonly asSetKeys: {
2018 readonly type: 'SetKeys' | 'PurgeKeys';2079 readonly type: 'SetKeys' | 'PurgeKeys';
2019 }2080 }
20202081
2021 /** @name PalletSessionError (204) */2082 /** @name PalletSessionError (206) */
2022 interface PalletSessionError extends Enum {2083 interface PalletSessionError extends Enum {
2023 readonly isInvalidProof: boolean;2084 readonly isInvalidProof: boolean;
2024 readonly isNoAssociatedValidatorId: boolean;2085 readonly isNoAssociatedValidatorId: boolean;
2028 readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';2089 readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
2029 }2090 }
20302091
2031 /** @name PalletBalancesBalanceLock (209) */2092 /** @name PalletBalancesBalanceLock (211) */
2032 interface PalletBalancesBalanceLock extends Struct {2093 interface PalletBalancesBalanceLock extends Struct {
2033 readonly id: U8aFixed;2094 readonly id: U8aFixed;
2034 readonly amount: u128;2095 readonly amount: u128;
2035 readonly reasons: PalletBalancesReasons;2096 readonly reasons: PalletBalancesReasons;
2036 }2097 }
20372098
2038 /** @name PalletBalancesReasons (210) */2099 /** @name PalletBalancesReasons (212) */
2039 interface PalletBalancesReasons extends Enum {2100 interface PalletBalancesReasons extends Enum {
2040 readonly isFee: boolean;2101 readonly isFee: boolean;
2041 readonly isMisc: boolean;2102 readonly isMisc: boolean;
2042 readonly isAll: boolean;2103 readonly isAll: boolean;
2043 readonly type: 'Fee' | 'Misc' | 'All';2104 readonly type: 'Fee' | 'Misc' | 'All';
2044 }2105 }
20452106
2046 /** @name PalletBalancesReserveData (213) */2107 /** @name PalletBalancesReserveData (215) */
2047 interface PalletBalancesReserveData extends Struct {2108 interface PalletBalancesReserveData extends Struct {
2048 readonly id: U8aFixed;2109 readonly id: U8aFixed;
2049 readonly amount: u128;2110 readonly amount: u128;
2050 }2111 }
2112
2113 /** @name PalletBalancesIdAmount (218) */
2114 interface PalletBalancesIdAmount extends Struct {
2115 readonly id: U8aFixed;
2116 readonly amount: u128;
2117 }
20512118
2052 /** @name PalletBalancesCall (215) */2119 /** @name PalletBalancesCall (220) */
2053 interface PalletBalancesCall extends Enum {2120 interface PalletBalancesCall extends Enum {
2054 readonly isTransfer: boolean;2121 readonly isTransferAllowDeath: boolean;
2055 readonly asTransfer: {2122 readonly asTransferAllowDeath: {
2056 readonly dest: MultiAddress;2123 readonly dest: MultiAddress;
2057 readonly value: Compact<u128>;2124 readonly value: Compact<u128>;
2058 } & Struct;2125 } & Struct;
2059 readonly isSetBalance: boolean;2126 readonly isSetBalanceDeprecated: boolean;
2060 readonly asSetBalance: {2127 readonly asSetBalanceDeprecated: {
2061 readonly who: MultiAddress;2128 readonly who: MultiAddress;
2062 readonly newFree: Compact<u128>;2129 readonly newFree: Compact<u128>;
2063 readonly newReserved: Compact<u128>;2130 readonly oldReserved: Compact<u128>;
2064 } & Struct;2131 } & Struct;
2065 readonly isForceTransfer: boolean;2132 readonly isForceTransfer: boolean;
2066 readonly asForceTransfer: {2133 readonly asForceTransfer: {
2083 readonly who: MultiAddress;2150 readonly who: MultiAddress;
2084 readonly amount: u128;2151 readonly amount: u128;
2085 } & Struct;2152 } & Struct;
2153 readonly isUpgradeAccounts: boolean;
2154 readonly asUpgradeAccounts: {
2155 readonly who: Vec<AccountId32>;
2156 } & Struct;
2157 readonly isTransfer: boolean;
2158 readonly asTransfer: {
2159 readonly dest: MultiAddress;
2160 readonly value: Compact<u128>;
2161 } & Struct;
2162 readonly isForceSetBalance: boolean;
2163 readonly asForceSetBalance: {
2164 readonly who: MultiAddress;
2165 readonly newFree: Compact<u128>;
2166 } & Struct;
2086 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';2167 readonly type: 'TransferAllowDeath' | 'SetBalanceDeprecated' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve' | 'UpgradeAccounts' | 'Transfer' | 'ForceSetBalance';
2087 }2168 }
20882169
2089 /** @name PalletBalancesError (218) */2170 /** @name PalletBalancesError (223) */
2090 interface PalletBalancesError extends Enum {2171 interface PalletBalancesError extends Enum {
2091 readonly isVestingBalance: boolean;2172 readonly isVestingBalance: boolean;
2092 readonly isLiquidityRestrictions: boolean;2173 readonly isLiquidityRestrictions: boolean;
2093 readonly isInsufficientBalance: boolean;2174 readonly isInsufficientBalance: boolean;
2094 readonly isExistentialDeposit: boolean;2175 readonly isExistentialDeposit: boolean;
2095 readonly isKeepAlive: boolean;2176 readonly isExpendability: boolean;
2096 readonly isExistingVestingSchedule: boolean;2177 readonly isExistingVestingSchedule: boolean;
2097 readonly isDeadAccount: boolean;2178 readonly isDeadAccount: boolean;
2098 readonly isTooManyReserves: boolean;2179 readonly isTooManyReserves: boolean;
2180 readonly isTooManyHolds: boolean;
2181 readonly isTooManyFreezes: boolean;
2099 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';2182 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'Expendability' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves' | 'TooManyHolds' | 'TooManyFreezes';
2100 }2183 }
21012184
2102 /** @name PalletTimestampCall (219) */2185 /** @name PalletTimestampCall (224) */
2103 interface PalletTimestampCall extends Enum {2186 interface PalletTimestampCall extends Enum {
2104 readonly isSet: boolean;2187 readonly isSet: boolean;
2105 readonly asSet: {2188 readonly asSet: {
2108 readonly type: 'Set';2191 readonly type: 'Set';
2109 }2192 }
21102193
2111 /** @name PalletTransactionPaymentReleases (221) */2194 /** @name PalletTransactionPaymentReleases (226) */
2112 interface PalletTransactionPaymentReleases extends Enum {2195 interface PalletTransactionPaymentReleases extends Enum {
2113 readonly isV1Ancient: boolean;2196 readonly isV1Ancient: boolean;
2114 readonly isV2: boolean;2197 readonly isV2: boolean;
2115 readonly type: 'V1Ancient' | 'V2';2198 readonly type: 'V1Ancient' | 'V2';
2116 }2199 }
21172200
2118 /** @name PalletTreasuryProposal (222) */2201 /** @name PalletTreasuryProposal (227) */
2119 interface PalletTreasuryProposal extends Struct {2202 interface PalletTreasuryProposal extends Struct {
2120 readonly proposer: AccountId32;2203 readonly proposer: AccountId32;
2121 readonly value: u128;2204 readonly value: u128;
2122 readonly beneficiary: AccountId32;2205 readonly beneficiary: AccountId32;
2123 readonly bond: u128;2206 readonly bond: u128;
2124 }2207 }
21252208
2126 /** @name PalletTreasuryCall (224) */2209 /** @name PalletTreasuryCall (229) */
2127 interface PalletTreasuryCall extends Enum {2210 interface PalletTreasuryCall extends Enum {
2128 readonly isProposeSpend: boolean;2211 readonly isProposeSpend: boolean;
2129 readonly asProposeSpend: {2212 readonly asProposeSpend: {
2150 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';2233 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
2151 }2234 }
21522235
2153 /** @name FrameSupportPalletId (226) */2236 /** @name FrameSupportPalletId (231) */
2154 interface FrameSupportPalletId extends U8aFixed {}2237 interface FrameSupportPalletId extends U8aFixed {}
21552238
2156 /** @name PalletTreasuryError (227) */2239 /** @name PalletTreasuryError (232) */
2157 interface PalletTreasuryError extends Enum {2240 interface PalletTreasuryError extends Enum {
2158 readonly isInsufficientProposersBalance: boolean;2241 readonly isInsufficientProposersBalance: boolean;
2159 readonly isInvalidIndex: boolean;2242 readonly isInvalidIndex: boolean;
2163 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';2246 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
2164 }2247 }
21652248
2166 /** @name PalletSudoCall (228) */2249 /** @name PalletSudoCall (233) */
2167 interface PalletSudoCall extends Enum {2250 interface PalletSudoCall extends Enum {
2168 readonly isSudo: boolean;2251 readonly isSudo: boolean;
2169 readonly asSudo: {2252 readonly asSudo: {
2186 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';2269 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
2187 }2270 }
21882271
2189 /** @name OrmlVestingModuleCall (230) */2272 /** @name OrmlVestingModuleCall (235) */
2190 interface OrmlVestingModuleCall extends Enum {2273 interface OrmlVestingModuleCall extends Enum {
2191 readonly isClaim: boolean;2274 readonly isClaim: boolean;
2192 readonly isVestedTransfer: boolean;2275 readonly isVestedTransfer: boolean;
2206 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';2289 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
2207 }2290 }
22082291
2209 /** @name OrmlXtokensModuleCall (232) */2292 /** @name OrmlXtokensModuleCall (237) */
2210 interface OrmlXtokensModuleCall extends Enum {2293 interface OrmlXtokensModuleCall extends Enum {
2211 readonly isTransfer: boolean;2294 readonly isTransfer: boolean;
2212 readonly asTransfer: {2295 readonly asTransfer: {
2253 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';2336 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
2254 }2337 }
22552338
2256 /** @name XcmVersionedMultiAsset (233) */2339 /** @name XcmVersionedMultiAsset (238) */
2257 interface XcmVersionedMultiAsset extends Enum {2340 interface XcmVersionedMultiAsset extends Enum {
2258 readonly isV2: boolean;2341 readonly isV2: boolean;
2259 readonly asV2: XcmV2MultiAsset;2342 readonly asV2: XcmV2MultiAsset;
2262 readonly type: 'V2' | 'V3';2345 readonly type: 'V2' | 'V3';
2263 }2346 }
22642347
2265 /** @name OrmlTokensModuleCall (236) */2348 /** @name OrmlTokensModuleCall (241) */
2266 interface OrmlTokensModuleCall extends Enum {2349 interface OrmlTokensModuleCall extends Enum {
2267 readonly isTransfer: boolean;2350 readonly isTransfer: boolean;
2268 readonly asTransfer: {2351 readonly asTransfer: {
2299 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';2382 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
2300 }2383 }
23012384
2302 /** @name PalletIdentityCall (237) */2385 /** @name PalletIdentityCall (242) */
2303 interface PalletIdentityCall extends Enum {2386 interface PalletIdentityCall extends Enum {
2304 readonly isAddRegistrar: boolean;2387 readonly isAddRegistrar: boolean;
2305 readonly asAddRegistrar: {2388 readonly asAddRegistrar: {
2379 readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities' | 'ForceSetSubs';2462 readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities' | 'ForceSetSubs';
2380 }2463 }
23812464
2382 /** @name PalletIdentityIdentityInfo (238) */2465 /** @name PalletIdentityIdentityInfo (243) */
2383 interface PalletIdentityIdentityInfo extends Struct {2466 interface PalletIdentityIdentityInfo extends Struct {
2384 readonly additional: Vec<ITuple<[Data, Data]>>;2467 readonly additional: Vec<ITuple<[Data, Data]>>;
2385 readonly display: Data;2468 readonly display: Data;
2392 readonly twitter: Data;2475 readonly twitter: Data;
2393 }2476 }
23942477
2395 /** @name PalletIdentityBitFlags (274) */2478 /** @name PalletIdentityBitFlags (279) */
2396 interface PalletIdentityBitFlags extends Set {2479 interface PalletIdentityBitFlags extends Set {
2397 readonly isDisplay: boolean;2480 readonly isDisplay: boolean;
2398 readonly isLegal: boolean;2481 readonly isLegal: boolean;
2404 readonly isTwitter: boolean;2487 readonly isTwitter: boolean;
2405 }2488 }
24062489
2407 /** @name PalletIdentityIdentityField (275) */2490 /** @name PalletIdentityIdentityField (280) */
2408 interface PalletIdentityIdentityField extends Enum {2491 interface PalletIdentityIdentityField extends Enum {
2409 readonly isDisplay: boolean;2492 readonly isDisplay: boolean;
2410 readonly isLegal: boolean;2493 readonly isLegal: boolean;
2417 readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';2500 readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';
2418 }2501 }
24192502
2420 /** @name PalletIdentityJudgement (276) */2503 /** @name PalletIdentityJudgement (281) */
2421 interface PalletIdentityJudgement extends Enum {2504 interface PalletIdentityJudgement extends Enum {
2422 readonly isUnknown: boolean;2505 readonly isUnknown: boolean;
2423 readonly isFeePaid: boolean;2506 readonly isFeePaid: boolean;
2430 readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';2513 readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';
2431 }2514 }
24322515
2433 /** @name PalletIdentityRegistration (279) */2516 /** @name PalletIdentityRegistration (284) */
2434 interface PalletIdentityRegistration extends Struct {2517 interface PalletIdentityRegistration extends Struct {
2435 readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;2518 readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
2436 readonly deposit: u128;2519 readonly deposit: u128;
2437 readonly info: PalletIdentityIdentityInfo;2520 readonly info: PalletIdentityIdentityInfo;
2438 }2521 }
24392522
2440 /** @name PalletPreimageCall (287) */2523 /** @name PalletPreimageCall (292) */
2441 interface PalletPreimageCall extends Enum {2524 interface PalletPreimageCall extends Enum {
2442 readonly isNotePreimage: boolean;2525 readonly isNotePreimage: boolean;
2443 readonly asNotePreimage: {2526 readonly asNotePreimage: {
2458 readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';2541 readonly type: 'NotePreimage' | 'UnnotePreimage' | 'RequestPreimage' | 'UnrequestPreimage';
2459 }2542 }
24602543
2461 /** @name CumulusPalletXcmpQueueCall (288) */2544 /** @name CumulusPalletXcmpQueueCall (293) */
2462 interface CumulusPalletXcmpQueueCall extends Enum {2545 interface CumulusPalletXcmpQueueCall extends Enum {
2463 readonly isServiceOverweight: boolean;2546 readonly isServiceOverweight: boolean;
2464 readonly asServiceOverweight: {2547 readonly asServiceOverweight: {
2494 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2577 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
2495 }2578 }
24962579
2497 /** @name PalletXcmCall (289) */2580 /** @name PalletXcmCall (294) */
2498 interface PalletXcmCall extends Enum {2581 interface PalletXcmCall extends Enum {
2499 readonly isSend: boolean;2582 readonly isSend: boolean;
2500 readonly asSend: {2583 readonly asSend: {
2553 readonly feeAssetItem: u32;2636 readonly feeAssetItem: u32;
2554 readonly weightLimit: XcmV3WeightLimit;2637 readonly weightLimit: XcmV3WeightLimit;
2555 } & Struct;2638 } & Struct;
2639 readonly isForceSuspension: boolean;
2640 readonly asForceSuspension: {
2641 readonly suspended: bool;
2642 } & Struct;
2556 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2643 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets' | 'ForceSuspension';
2557 }2644 }
25582645
2559 /** @name XcmVersionedXcm (290) */2646 /** @name XcmVersionedXcm (295) */
2560 interface XcmVersionedXcm extends Enum {2647 interface XcmVersionedXcm extends Enum {
2561 readonly isV2: boolean;2648 readonly isV2: boolean;
2562 readonly asV2: XcmV2Xcm;2649 readonly asV2: XcmV2Xcm;
2565 readonly type: 'V2' | 'V3';2652 readonly type: 'V2' | 'V3';
2566 }2653 }
25672654
2568 /** @name XcmV2Xcm (291) */2655 /** @name XcmV2Xcm (296) */
2569 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}2656 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}
25702657
2571 /** @name XcmV2Instruction (293) */2658 /** @name XcmV2Instruction (298) */
2572 interface XcmV2Instruction extends Enum {2659 interface XcmV2Instruction extends Enum {
2573 readonly isWithdrawAsset: boolean;2660 readonly isWithdrawAsset: boolean;
2574 readonly asWithdrawAsset: XcmV2MultiassetMultiAssets;2661 readonly asWithdrawAsset: XcmV2MultiassetMultiAssets;
2688 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';2775 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';
2689 }2776 }
26902777
2691 /** @name XcmV2Response (294) */2778 /** @name XcmV2Response (299) */
2692 interface XcmV2Response extends Enum {2779 interface XcmV2Response extends Enum {
2693 readonly isNull: boolean;2780 readonly isNull: boolean;
2694 readonly isAssets: boolean;2781 readonly isAssets: boolean;
2700 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';2787 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';
2701 }2788 }
27022789
2703 /** @name XcmV2TraitsError (297) */2790 /** @name XcmV2TraitsError (302) */
2704 interface XcmV2TraitsError extends Enum {2791 interface XcmV2TraitsError extends Enum {
2705 readonly isOverflow: boolean;2792 readonly isOverflow: boolean;
2706 readonly isUnimplemented: boolean;2793 readonly isUnimplemented: boolean;
2733 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';2820 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';
2734 }2821 }
27352822
2736 /** @name XcmV2MultiassetMultiAssetFilter (298) */2823 /** @name XcmV2MultiassetMultiAssetFilter (303) */
2737 interface XcmV2MultiassetMultiAssetFilter extends Enum {2824 interface XcmV2MultiassetMultiAssetFilter extends Enum {
2738 readonly isDefinite: boolean;2825 readonly isDefinite: boolean;
2739 readonly asDefinite: XcmV2MultiassetMultiAssets;2826 readonly asDefinite: XcmV2MultiassetMultiAssets;
2742 readonly type: 'Definite' | 'Wild';2829 readonly type: 'Definite' | 'Wild';
2743 }2830 }
27442831
2745 /** @name XcmV2MultiassetWildMultiAsset (299) */2832 /** @name XcmV2MultiassetWildMultiAsset (304) */
2746 interface XcmV2MultiassetWildMultiAsset extends Enum {2833 interface XcmV2MultiassetWildMultiAsset extends Enum {
2747 readonly isAll: boolean;2834 readonly isAll: boolean;
2748 readonly isAllOf: boolean;2835 readonly isAllOf: boolean;
2753 readonly type: 'All' | 'AllOf';2840 readonly type: 'All' | 'AllOf';
2754 }2841 }
27552842
2756 /** @name XcmV2MultiassetWildFungibility (300) */2843 /** @name XcmV2MultiassetWildFungibility (305) */
2757 interface XcmV2MultiassetWildFungibility extends Enum {2844 interface XcmV2MultiassetWildFungibility extends Enum {
2758 readonly isFungible: boolean;2845 readonly isFungible: boolean;
2759 readonly isNonFungible: boolean;2846 readonly isNonFungible: boolean;
2760 readonly type: 'Fungible' | 'NonFungible';2847 readonly type: 'Fungible' | 'NonFungible';
2761 }2848 }
27622849
2763 /** @name XcmV2WeightLimit (301) */2850 /** @name XcmV2WeightLimit (306) */
2764 interface XcmV2WeightLimit extends Enum {2851 interface XcmV2WeightLimit extends Enum {
2765 readonly isUnlimited: boolean;2852 readonly isUnlimited: boolean;
2766 readonly isLimited: boolean;2853 readonly isLimited: boolean;
2767 readonly asLimited: Compact<u64>;2854 readonly asLimited: Compact<u64>;
2768 readonly type: 'Unlimited' | 'Limited';2855 readonly type: 'Unlimited' | 'Limited';
2769 }2856 }
27702857
2771 /** @name CumulusPalletXcmCall (310) */2858 /** @name CumulusPalletXcmCall (315) */
2772 type CumulusPalletXcmCall = Null;2859 type CumulusPalletXcmCall = Null;
27732860
2774 /** @name CumulusPalletDmpQueueCall (311) */2861 /** @name CumulusPalletDmpQueueCall (316) */
2775 interface CumulusPalletDmpQueueCall extends Enum {2862 interface CumulusPalletDmpQueueCall extends Enum {
2776 readonly isServiceOverweight: boolean;2863 readonly isServiceOverweight: boolean;
2777 readonly asServiceOverweight: {2864 readonly asServiceOverweight: {
2781 readonly type: 'ServiceOverweight';2868 readonly type: 'ServiceOverweight';
2782 }2869 }
27832870
2784 /** @name PalletInflationCall (312) */2871 /** @name PalletInflationCall (317) */
2785 interface PalletInflationCall extends Enum {2872 interface PalletInflationCall extends Enum {
2786 readonly isStartInflation: boolean;2873 readonly isStartInflation: boolean;
2787 readonly asStartInflation: {2874 readonly asStartInflation: {
2790 readonly type: 'StartInflation';2877 readonly type: 'StartInflation';
2791 }2878 }
27922879
2793 /** @name PalletUniqueCall (313) */2880 /** @name PalletUniqueCall (318) */
2794 interface PalletUniqueCall extends Enum {2881 interface PalletUniqueCall extends Enum {
2795 readonly isCreateCollection: boolean;2882 readonly isCreateCollection: boolean;
2796 readonly asCreateCollection: {2883 readonly asCreateCollection: {
2971 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'ApproveFrom' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';3058 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'ApproveFrom' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';
2972 }3059 }
29733060
2974 /** @name UpDataStructsCollectionMode (318) */3061 /** @name UpDataStructsCollectionMode (323) */
2975 interface UpDataStructsCollectionMode extends Enum {3062 interface UpDataStructsCollectionMode extends Enum {
2976 readonly isNft: boolean;3063 readonly isNft: boolean;
2977 readonly isFungible: boolean;3064 readonly isFungible: boolean;
2980 readonly type: 'Nft' | 'Fungible' | 'ReFungible';3067 readonly type: 'Nft' | 'Fungible' | 'ReFungible';
2981 }3068 }
29823069
2983 /** @name UpDataStructsCreateCollectionData (319) */3070 /** @name UpDataStructsCreateCollectionData (324) */
2984 interface UpDataStructsCreateCollectionData extends Struct {3071 interface UpDataStructsCreateCollectionData extends Struct {
2985 readonly mode: UpDataStructsCollectionMode;3072 readonly mode: UpDataStructsCollectionMode;
2986 readonly access: Option<UpDataStructsAccessMode>;3073 readonly access: Option<UpDataStructsAccessMode>;
2994 readonly properties: Vec<UpDataStructsProperty>;3081 readonly properties: Vec<UpDataStructsProperty>;
2995 }3082 }
29963083
2997 /** @name UpDataStructsAccessMode (321) */3084 /** @name UpDataStructsAccessMode (326) */
2998 interface UpDataStructsAccessMode extends Enum {3085 interface UpDataStructsAccessMode extends Enum {
2999 readonly isNormal: boolean;3086 readonly isNormal: boolean;
3000 readonly isAllowList: boolean;3087 readonly isAllowList: boolean;
3001 readonly type: 'Normal' | 'AllowList';3088 readonly type: 'Normal' | 'AllowList';
3002 }3089 }
30033090
3004 /** @name UpDataStructsCollectionLimits (323) */3091 /** @name UpDataStructsCollectionLimits (328) */
3005 interface UpDataStructsCollectionLimits extends Struct {3092 interface UpDataStructsCollectionLimits extends Struct {
3006 readonly accountTokenOwnershipLimit: Option<u32>;3093 readonly accountTokenOwnershipLimit: Option<u32>;
3007 readonly sponsoredDataSize: Option<u32>;3094 readonly sponsoredDataSize: Option<u32>;
3014 readonly transfersEnabled: Option<bool>;3101 readonly transfersEnabled: Option<bool>;
3015 }3102 }
30163103
3017 /** @name UpDataStructsSponsoringRateLimit (325) */3104 /** @name UpDataStructsSponsoringRateLimit (330) */
3018 interface UpDataStructsSponsoringRateLimit extends Enum {3105 interface UpDataStructsSponsoringRateLimit extends Enum {
3019 readonly isSponsoringDisabled: boolean;3106 readonly isSponsoringDisabled: boolean;
3020 readonly isBlocks: boolean;3107 readonly isBlocks: boolean;
3021 readonly asBlocks: u32;3108 readonly asBlocks: u32;
3022 readonly type: 'SponsoringDisabled' | 'Blocks';3109 readonly type: 'SponsoringDisabled' | 'Blocks';
3023 }3110 }
30243111
3025 /** @name UpDataStructsCollectionPermissions (328) */3112 /** @name UpDataStructsCollectionPermissions (333) */
3026 interface UpDataStructsCollectionPermissions extends Struct {3113 interface UpDataStructsCollectionPermissions extends Struct {
3027 readonly access: Option<UpDataStructsAccessMode>;3114 readonly access: Option<UpDataStructsAccessMode>;
3028 readonly mintMode: Option<bool>;3115 readonly mintMode: Option<bool>;
3029 readonly nesting: Option<UpDataStructsNestingPermissions>;3116 readonly nesting: Option<UpDataStructsNestingPermissions>;
3030 }3117 }
30313118
3032 /** @name UpDataStructsNestingPermissions (330) */3119 /** @name UpDataStructsNestingPermissions (335) */
3033 interface UpDataStructsNestingPermissions extends Struct {3120 interface UpDataStructsNestingPermissions extends Struct {
3034 readonly tokenOwner: bool;3121 readonly tokenOwner: bool;
3035 readonly collectionAdmin: bool;3122 readonly collectionAdmin: bool;
3036 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;3123 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
3037 }3124 }
30383125
3039 /** @name UpDataStructsOwnerRestrictedSet (332) */3126 /** @name UpDataStructsOwnerRestrictedSet (337) */
3040 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}3127 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
30413128
3042 /** @name UpDataStructsPropertyKeyPermission (337) */3129 /** @name UpDataStructsPropertyKeyPermission (342) */
3043 interface UpDataStructsPropertyKeyPermission extends Struct {3130 interface UpDataStructsPropertyKeyPermission extends Struct {
3044 readonly key: Bytes;3131 readonly key: Bytes;
3045 readonly permission: UpDataStructsPropertyPermission;3132 readonly permission: UpDataStructsPropertyPermission;
3046 }3133 }
30473134
3048 /** @name UpDataStructsPropertyPermission (338) */3135 /** @name UpDataStructsPropertyPermission (343) */
3049 interface UpDataStructsPropertyPermission extends Struct {3136 interface UpDataStructsPropertyPermission extends Struct {
3050 readonly mutable: bool;3137 readonly mutable: bool;
3051 readonly collectionAdmin: bool;3138 readonly collectionAdmin: bool;
3052 readonly tokenOwner: bool;3139 readonly tokenOwner: bool;
3053 }3140 }
30543141
3055 /** @name UpDataStructsProperty (341) */3142 /** @name UpDataStructsProperty (346) */
3056 interface UpDataStructsProperty extends Struct {3143 interface UpDataStructsProperty extends Struct {
3057 readonly key: Bytes;3144 readonly key: Bytes;
3058 readonly value: Bytes;3145 readonly value: Bytes;
3059 }3146 }
30603147
3061 /** @name UpDataStructsCreateItemData (344) */3148 /** @name UpDataStructsCreateItemData (349) */
3062 interface UpDataStructsCreateItemData extends Enum {3149 interface UpDataStructsCreateItemData extends Enum {
3063 readonly isNft: boolean;3150 readonly isNft: boolean;
3064 readonly asNft: UpDataStructsCreateNftData;3151 readonly asNft: UpDataStructsCreateNftData;
3069 readonly type: 'Nft' | 'Fungible' | 'ReFungible';3156 readonly type: 'Nft' | 'Fungible' | 'ReFungible';
3070 }3157 }
30713158
3072 /** @name UpDataStructsCreateNftData (345) */3159 /** @name UpDataStructsCreateNftData (350) */
3073 interface UpDataStructsCreateNftData extends Struct {3160 interface UpDataStructsCreateNftData extends Struct {
3074 readonly properties: Vec<UpDataStructsProperty>;3161 readonly properties: Vec<UpDataStructsProperty>;
3075 }3162 }
30763163
3077 /** @name UpDataStructsCreateFungibleData (346) */3164 /** @name UpDataStructsCreateFungibleData (351) */
3078 interface UpDataStructsCreateFungibleData extends Struct {3165 interface UpDataStructsCreateFungibleData extends Struct {
3079 readonly value: u128;3166 readonly value: u128;
3080 }3167 }
30813168
3082 /** @name UpDataStructsCreateReFungibleData (347) */3169 /** @name UpDataStructsCreateReFungibleData (352) */
3083 interface UpDataStructsCreateReFungibleData extends Struct {3170 interface UpDataStructsCreateReFungibleData extends Struct {
3084 readonly pieces: u128;3171 readonly pieces: u128;
3085 readonly properties: Vec<UpDataStructsProperty>;3172 readonly properties: Vec<UpDataStructsProperty>;
3086 }3173 }
30873174
3088 /** @name UpDataStructsCreateItemExData (350) */3175 /** @name UpDataStructsCreateItemExData (355) */
3089 interface UpDataStructsCreateItemExData extends Enum {3176 interface UpDataStructsCreateItemExData extends Enum {
3090 readonly isNft: boolean;3177 readonly isNft: boolean;
3091 readonly asNft: Vec<UpDataStructsCreateNftExData>;3178 readonly asNft: Vec<UpDataStructsCreateNftExData>;
3098 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';3185 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
3099 }3186 }
31003187
3101 /** @name UpDataStructsCreateNftExData (352) */3188 /** @name UpDataStructsCreateNftExData (357) */
3102 interface UpDataStructsCreateNftExData extends Struct {3189 interface UpDataStructsCreateNftExData extends Struct {
3103 readonly properties: Vec<UpDataStructsProperty>;3190 readonly properties: Vec<UpDataStructsProperty>;
3104 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3191 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
3105 }3192 }
31063193
3107 /** @name UpDataStructsCreateRefungibleExSingleOwner (359) */3194 /** @name UpDataStructsCreateRefungibleExSingleOwner (364) */
3108 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {3195 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
3109 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;3196 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
3110 readonly pieces: u128;3197 readonly pieces: u128;
3111 readonly properties: Vec<UpDataStructsProperty>;3198 readonly properties: Vec<UpDataStructsProperty>;
3112 }3199 }
31133200
3114 /** @name UpDataStructsCreateRefungibleExMultipleOwners (361) */3201 /** @name UpDataStructsCreateRefungibleExMultipleOwners (366) */
3115 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {3202 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
3116 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;3203 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
3117 readonly properties: Vec<UpDataStructsProperty>;3204 readonly properties: Vec<UpDataStructsProperty>;
3118 }3205 }
31193206
3120 /** @name PalletConfigurationCall (362) */3207 /** @name PalletConfigurationCall (367) */
3121 interface PalletConfigurationCall extends Enum {3208 interface PalletConfigurationCall extends Enum {
3122 readonly isSetWeightToFeeCoefficientOverride: boolean;3209 readonly isSetWeightToFeeCoefficientOverride: boolean;
3123 readonly asSetWeightToFeeCoefficientOverride: {3210 readonly asSetWeightToFeeCoefficientOverride: {
3146 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';3233 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';
3147 }3234 }
31483235
3149 /** @name PalletConfigurationAppPromotionConfiguration (364) */3236 /** @name PalletConfigurationAppPromotionConfiguration (369) */
3150 interface PalletConfigurationAppPromotionConfiguration extends Struct {3237 interface PalletConfigurationAppPromotionConfiguration extends Struct {
3151 readonly recalculationInterval: Option<u32>;3238 readonly recalculationInterval: Option<u32>;
3152 readonly pendingInterval: Option<u32>;3239 readonly pendingInterval: Option<u32>;
3153 readonly intervalIncome: Option<Perbill>;3240 readonly intervalIncome: Option<Perbill>;
3154 readonly maxStakersPerCalculation: Option<u8>;3241 readonly maxStakersPerCalculation: Option<u8>;
3155 }3242 }
3156
3157 /** @name PalletTemplateTransactionPaymentCall (368) */
3158 type PalletTemplateTransactionPaymentCall = Null;
31593243
3160 /** @name PalletStructureCall (369) */3244 /** @name PalletStructureCall (373) */
3161 type PalletStructureCall = Null;3245 type PalletStructureCall = Null;
31623246
3163 /** @name PalletAppPromotionCall (370) */3247 /** @name PalletAppPromotionCall (374) */
3164 interface PalletAppPromotionCall extends Enum {3248 interface PalletAppPromotionCall extends Enum {
3165 readonly isSetAdminAddress: boolean;3249 readonly isSetAdminAddress: boolean;
3166 readonly asSetAdminAddress: {3250 readonly asSetAdminAddress: {
3198 readonly type: 'SetAdminAddress' | 'Stake' | 'UnstakeAll' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers' | 'UnstakePartial';3282 readonly type: 'SetAdminAddress' | 'Stake' | 'UnstakeAll' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers' | 'UnstakePartial';
3199 }3283 }
32003284
3201 /** @name PalletForeignAssetsModuleCall (371) */3285 /** @name PalletForeignAssetsModuleCall (375) */
3202 interface PalletForeignAssetsModuleCall extends Enum {3286 interface PalletForeignAssetsModuleCall extends Enum {
3203 readonly isRegisterForeignAsset: boolean;3287 readonly isRegisterForeignAsset: boolean;
3204 readonly asRegisterForeignAsset: {3288 readonly asRegisterForeignAsset: {
3215 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3299 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
3216 }3300 }
32173301
3218 /** @name PalletEvmCall (372) */3302 /** @name PalletEvmCall (376) */
3219 interface PalletEvmCall extends Enum {3303 interface PalletEvmCall extends Enum {
3220 readonly isWithdraw: boolean;3304 readonly isWithdraw: boolean;
3221 readonly asWithdraw: {3305 readonly asWithdraw: {
3260 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3344 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
3261 }3345 }
32623346
3263 /** @name PalletEthereumCall (378) */3347 /** @name PalletEthereumCall (382) */
3264 interface PalletEthereumCall extends Enum {3348 interface PalletEthereumCall extends Enum {
3265 readonly isTransact: boolean;3349 readonly isTransact: boolean;
3266 readonly asTransact: {3350 readonly asTransact: {
3269 readonly type: 'Transact';3353 readonly type: 'Transact';
3270 }3354 }
32713355
3272 /** @name EthereumTransactionTransactionV2 (379) */3356 /** @name EthereumTransactionTransactionV2 (383) */
3273 interface EthereumTransactionTransactionV2 extends Enum {3357 interface EthereumTransactionTransactionV2 extends Enum {
3274 readonly isLegacy: boolean;3358 readonly isLegacy: boolean;
3275 readonly asLegacy: EthereumTransactionLegacyTransaction;3359 readonly asLegacy: EthereumTransactionLegacyTransaction;
3280 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3364 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
3281 }3365 }
32823366
3283 /** @name EthereumTransactionLegacyTransaction (380) */3367 /** @name EthereumTransactionLegacyTransaction (384) */
3284 interface EthereumTransactionLegacyTransaction extends Struct {3368 interface EthereumTransactionLegacyTransaction extends Struct {
3285 readonly nonce: U256;3369 readonly nonce: U256;
3286 readonly gasPrice: U256;3370 readonly gasPrice: U256;
3291 readonly signature: EthereumTransactionTransactionSignature;3375 readonly signature: EthereumTransactionTransactionSignature;
3292 }3376 }
32933377
3294 /** @name EthereumTransactionTransactionAction (381) */3378 /** @name EthereumTransactionTransactionAction (385) */
3295 interface EthereumTransactionTransactionAction extends Enum {3379 interface EthereumTransactionTransactionAction extends Enum {
3296 readonly isCall: boolean;3380 readonly isCall: boolean;
3297 readonly asCall: H160;3381 readonly asCall: H160;
3298 readonly isCreate: boolean;3382 readonly isCreate: boolean;
3299 readonly type: 'Call' | 'Create';3383 readonly type: 'Call' | 'Create';
3300 }3384 }
33013385
3302 /** @name EthereumTransactionTransactionSignature (382) */3386 /** @name EthereumTransactionTransactionSignature (386) */
3303 interface EthereumTransactionTransactionSignature extends Struct {3387 interface EthereumTransactionTransactionSignature extends Struct {
3304 readonly v: u64;3388 readonly v: u64;
3305 readonly r: H256;3389 readonly r: H256;
3306 readonly s: H256;3390 readonly s: H256;
3307 }3391 }
33083392
3309 /** @name EthereumTransactionEip2930Transaction (384) */3393 /** @name EthereumTransactionEip2930Transaction (388) */
3310 interface EthereumTransactionEip2930Transaction extends Struct {3394 interface EthereumTransactionEip2930Transaction extends Struct {
3311 readonly chainId: u64;3395 readonly chainId: u64;
3312 readonly nonce: U256;3396 readonly nonce: U256;
3321 readonly s: H256;3405 readonly s: H256;
3322 }3406 }
33233407
3324 /** @name EthereumTransactionAccessListItem (386) */3408 /** @name EthereumTransactionAccessListItem (390) */
3325 interface EthereumTransactionAccessListItem extends Struct {3409 interface EthereumTransactionAccessListItem extends Struct {
3326 readonly address: H160;3410 readonly address: H160;
3327 readonly storageKeys: Vec<H256>;3411 readonly storageKeys: Vec<H256>;
3328 }3412 }
33293413
3330 /** @name EthereumTransactionEip1559Transaction (387) */3414 /** @name EthereumTransactionEip1559Transaction (391) */
3331 interface EthereumTransactionEip1559Transaction extends Struct {3415 interface EthereumTransactionEip1559Transaction extends Struct {
3332 readonly chainId: u64;3416 readonly chainId: u64;
3333 readonly nonce: U256;3417 readonly nonce: U256;
3343 readonly s: H256;3427 readonly s: H256;
3344 }3428 }
33453429
3346 /** @name PalletEvmCoderSubstrateCall (388) */3430 /** @name PalletEvmCoderSubstrateCall (392) */
3347 interface PalletEvmCoderSubstrateCall extends Enum {3431 interface PalletEvmCoderSubstrateCall extends Enum {
3348 readonly isEmptyCall: boolean;3432 readonly isEmptyCall: boolean;
3349 readonly type: 'EmptyCall';3433 readonly type: 'EmptyCall';
3350 }3434 }
33513435
3352 /** @name PalletEvmContractHelpersCall (389) */3436 /** @name PalletEvmContractHelpersCall (393) */
3353 interface PalletEvmContractHelpersCall extends Enum {3437 interface PalletEvmContractHelpersCall extends Enum {
3354 readonly isMigrateFromSelfSponsoring: boolean;3438 readonly isMigrateFromSelfSponsoring: boolean;
3355 readonly asMigrateFromSelfSponsoring: {3439 readonly asMigrateFromSelfSponsoring: {
3358 readonly type: 'MigrateFromSelfSponsoring';3442 readonly type: 'MigrateFromSelfSponsoring';
3359 }3443 }
33603444
3361 /** @name PalletEvmMigrationCall (391) */3445 /** @name PalletEvmMigrationCall (395) */
3362 interface PalletEvmMigrationCall extends Enum {3446 interface PalletEvmMigrationCall extends Enum {
3363 readonly isBegin: boolean;3447 readonly isBegin: boolean;
3364 readonly asBegin: {3448 readonly asBegin: {
3386 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents' | 'RemoveRmrkData';3470 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents' | 'RemoveRmrkData';
3387 }3471 }
33883472
3389 /** @name PalletMaintenanceCall (395) */3473 /** @name PalletMaintenanceCall (399) */
3390 interface PalletMaintenanceCall extends Enum {3474 interface PalletMaintenanceCall extends Enum {
3391 readonly isEnable: boolean;3475 readonly isEnable: boolean;
3392 readonly isDisable: boolean;3476 readonly isDisable: boolean;
3398 readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';3482 readonly type: 'Enable' | 'Disable' | 'ExecutePreimage';
3399 }3483 }
34003484
3401 /** @name PalletTestUtilsCall (396) */3485 /** @name PalletTestUtilsCall (400) */
3402 interface PalletTestUtilsCall extends Enum {3486 interface PalletTestUtilsCall extends Enum {
3403 readonly isEnable: boolean;3487 readonly isEnable: boolean;
3404 readonly isSetTestValue: boolean;3488 readonly isSetTestValue: boolean;
3418 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';3502 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';
3419 }3503 }
34203504
3421 /** @name PalletSudoError (398) */3505 /** @name PalletSudoError (402) */
3422 interface PalletSudoError extends Enum {3506 interface PalletSudoError extends Enum {
3423 readonly isRequireSudo: boolean;3507 readonly isRequireSudo: boolean;
3424 readonly type: 'RequireSudo';3508 readonly type: 'RequireSudo';
3425 }3509 }
34263510
3427 /** @name OrmlVestingModuleError (400) */3511 /** @name OrmlVestingModuleError (404) */
3428 interface OrmlVestingModuleError extends Enum {3512 interface OrmlVestingModuleError extends Enum {
3429 readonly isZeroVestingPeriod: boolean;3513 readonly isZeroVestingPeriod: boolean;
3430 readonly isZeroVestingPeriodCount: boolean;3514 readonly isZeroVestingPeriodCount: boolean;
3435 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3519 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
3436 }3520 }
34373521
3438 /** @name OrmlXtokensModuleError (401) */3522 /** @name OrmlXtokensModuleError (405) */
3439 interface OrmlXtokensModuleError extends Enum {3523 interface OrmlXtokensModuleError extends Enum {
3440 readonly isAssetHasNoReserve: boolean;3524 readonly isAssetHasNoReserve: boolean;
3441 readonly isNotCrossChainTransfer: boolean;3525 readonly isNotCrossChainTransfer: boolean;
3459 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3543 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
3460 }3544 }
34613545
3462 /** @name OrmlTokensBalanceLock (404) */3546 /** @name OrmlTokensBalanceLock (408) */
3463 interface OrmlTokensBalanceLock extends Struct {3547 interface OrmlTokensBalanceLock extends Struct {
3464 readonly id: U8aFixed;3548 readonly id: U8aFixed;
3465 readonly amount: u128;3549 readonly amount: u128;
3466 }3550 }
34673551
3468 /** @name OrmlTokensAccountData (406) */3552 /** @name OrmlTokensAccountData (410) */
3469 interface OrmlTokensAccountData extends Struct {3553 interface OrmlTokensAccountData extends Struct {
3470 readonly free: u128;3554 readonly free: u128;
3471 readonly reserved: u128;3555 readonly reserved: u128;
3472 readonly frozen: u128;3556 readonly frozen: u128;
3473 }3557 }
34743558
3475 /** @name OrmlTokensReserveData (408) */3559 /** @name OrmlTokensReserveData (412) */
3476 interface OrmlTokensReserveData extends Struct {3560 interface OrmlTokensReserveData extends Struct {
3477 readonly id: Null;3561 readonly id: Null;
3478 readonly amount: u128;3562 readonly amount: u128;
3479 }3563 }
34803564
3481 /** @name OrmlTokensModuleError (410) */3565 /** @name OrmlTokensModuleError (414) */
3482 interface OrmlTokensModuleError extends Enum {3566 interface OrmlTokensModuleError extends Enum {
3483 readonly isBalanceTooLow: boolean;3567 readonly isBalanceTooLow: boolean;
3484 readonly isAmountIntoBalanceFailed: boolean;3568 readonly isAmountIntoBalanceFailed: boolean;
3491 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3575 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
3492 }3576 }
34933577
3494 /** @name PalletIdentityRegistrarInfo (415) */3578 /** @name PalletIdentityRegistrarInfo (419) */
3495 interface PalletIdentityRegistrarInfo extends Struct {3579 interface PalletIdentityRegistrarInfo extends Struct {
3496 readonly account: AccountId32;3580 readonly account: AccountId32;
3497 readonly fee: u128;3581 readonly fee: u128;
3498 readonly fields: PalletIdentityBitFlags;3582 readonly fields: PalletIdentityBitFlags;
3499 }3583 }
35003584
3501 /** @name PalletIdentityError (417) */3585 /** @name PalletIdentityError (421) */
3502 interface PalletIdentityError extends Enum {3586 interface PalletIdentityError extends Enum {
3503 readonly isTooManySubAccounts: boolean;3587 readonly isTooManySubAccounts: boolean;
3504 readonly isNotFound: boolean;3588 readonly isNotFound: boolean;
3521 readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';3605 readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';
3522 }3606 }
35233607
3524 /** @name PalletPreimageRequestStatus (418) */3608 /** @name PalletPreimageRequestStatus (422) */
3525 interface PalletPreimageRequestStatus extends Enum {3609 interface PalletPreimageRequestStatus extends Enum {
3526 readonly isUnrequested: boolean;3610 readonly isUnrequested: boolean;
3527 readonly asUnrequested: {3611 readonly asUnrequested: {
3537 readonly type: 'Unrequested' | 'Requested';3621 readonly type: 'Unrequested' | 'Requested';
3538 }3622 }
35393623
3540 /** @name PalletPreimageError (423) */3624 /** @name PalletPreimageError (427) */
3541 interface PalletPreimageError extends Enum {3625 interface PalletPreimageError extends Enum {
3542 readonly isTooBig: boolean;3626 readonly isTooBig: boolean;
3543 readonly isAlreadyNoted: boolean;3627 readonly isAlreadyNoted: boolean;
3548 readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';3632 readonly type: 'TooBig' | 'AlreadyNoted' | 'NotAuthorized' | 'NotNoted' | 'Requested' | 'NotRequested';
3549 }3633 }
35503634
3551 /** @name CumulusPalletXcmpQueueInboundChannelDetails (425) */3635 /** @name CumulusPalletXcmpQueueInboundChannelDetails (429) */
3552 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3636 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
3553 readonly sender: u32;3637 readonly sender: u32;
3554 readonly state: CumulusPalletXcmpQueueInboundState;3638 readonly state: CumulusPalletXcmpQueueInboundState;
3555 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3639 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
3556 }3640 }
35573641
3558 /** @name CumulusPalletXcmpQueueInboundState (426) */3642 /** @name CumulusPalletXcmpQueueInboundState (430) */
3559 interface CumulusPalletXcmpQueueInboundState extends Enum {3643 interface CumulusPalletXcmpQueueInboundState extends Enum {
3560 readonly isOk: boolean;3644 readonly isOk: boolean;
3561 readonly isSuspended: boolean;3645 readonly isSuspended: boolean;
3562 readonly type: 'Ok' | 'Suspended';3646 readonly type: 'Ok' | 'Suspended';
3563 }3647 }
35643648
3565 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (429) */3649 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (433) */
3566 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3650 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
3567 readonly isConcatenatedVersionedXcm: boolean;3651 readonly isConcatenatedVersionedXcm: boolean;
3568 readonly isConcatenatedEncodedBlob: boolean;3652 readonly isConcatenatedEncodedBlob: boolean;
3569 readonly isSignals: boolean;3653 readonly isSignals: boolean;
3570 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3654 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
3571 }3655 }
35723656
3573 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (432) */3657 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (436) */
3574 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3658 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
3575 readonly recipient: u32;3659 readonly recipient: u32;
3576 readonly state: CumulusPalletXcmpQueueOutboundState;3660 readonly state: CumulusPalletXcmpQueueOutboundState;
3579 readonly lastIndex: u16;3663 readonly lastIndex: u16;
3580 }3664 }
35813665
3582 /** @name CumulusPalletXcmpQueueOutboundState (433) */3666 /** @name CumulusPalletXcmpQueueOutboundState (437) */
3583 interface CumulusPalletXcmpQueueOutboundState extends Enum {3667 interface CumulusPalletXcmpQueueOutboundState extends Enum {
3584 readonly isOk: boolean;3668 readonly isOk: boolean;
3585 readonly isSuspended: boolean;3669 readonly isSuspended: boolean;
3586 readonly type: 'Ok' | 'Suspended';3670 readonly type: 'Ok' | 'Suspended';
3587 }3671 }
35883672
3589 /** @name CumulusPalletXcmpQueueQueueConfigData (435) */3673 /** @name CumulusPalletXcmpQueueQueueConfigData (439) */
3590 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3674 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
3591 readonly suspendThreshold: u32;3675 readonly suspendThreshold: u32;
3592 readonly dropThreshold: u32;3676 readonly dropThreshold: u32;
3596 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3680 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
3597 }3681 }
35983682
3599 /** @name CumulusPalletXcmpQueueError (437) */3683 /** @name CumulusPalletXcmpQueueError (441) */
3600 interface CumulusPalletXcmpQueueError extends Enum {3684 interface CumulusPalletXcmpQueueError extends Enum {
3601 readonly isFailedToSend: boolean;3685 readonly isFailedToSend: boolean;
3602 readonly isBadXcmOrigin: boolean;3686 readonly isBadXcmOrigin: boolean;
3606 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3690 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
3607 }3691 }
36083692
3609 /** @name PalletXcmQueryStatus (438) */3693 /** @name PalletXcmQueryStatus (442) */
3610 interface PalletXcmQueryStatus extends Enum {3694 interface PalletXcmQueryStatus extends Enum {
3611 readonly isPending: boolean;3695 readonly isPending: boolean;
3612 readonly asPending: {3696 readonly asPending: {
3628 readonly type: 'Pending' | 'VersionNotifier' | 'Ready';3712 readonly type: 'Pending' | 'VersionNotifier' | 'Ready';
3629 }3713 }
36303714
3631 /** @name XcmVersionedResponse (442) */3715 /** @name XcmVersionedResponse (446) */
3632 interface XcmVersionedResponse extends Enum {3716 interface XcmVersionedResponse extends Enum {
3633 readonly isV2: boolean;3717 readonly isV2: boolean;
3634 readonly asV2: XcmV2Response;3718 readonly asV2: XcmV2Response;
3637 readonly type: 'V2' | 'V3';3721 readonly type: 'V2' | 'V3';
3638 }3722 }
36393723
3640 /** @name PalletXcmVersionMigrationStage (448) */3724 /** @name PalletXcmVersionMigrationStage (452) */
3641 interface PalletXcmVersionMigrationStage extends Enum {3725 interface PalletXcmVersionMigrationStage extends Enum {
3642 readonly isMigrateSupportedVersion: boolean;3726 readonly isMigrateSupportedVersion: boolean;
3643 readonly isMigrateVersionNotifiers: boolean;3727 readonly isMigrateVersionNotifiers: boolean;
3647 readonly type: 'MigrateSupportedVersion' | 'MigrateVersionNotifiers' | 'NotifyCurrentTargets' | 'MigrateAndNotifyOldTargets';3731 readonly type: 'MigrateSupportedVersion' | 'MigrateVersionNotifiers' | 'NotifyCurrentTargets' | 'MigrateAndNotifyOldTargets';
3648 }3732 }
36493733
3650 /** @name XcmVersionedAssetId (451) */3734 /** @name XcmVersionedAssetId (455) */
3651 interface XcmVersionedAssetId extends Enum {3735 interface XcmVersionedAssetId extends Enum {
3652 readonly isV3: boolean;3736 readonly isV3: boolean;
3653 readonly asV3: XcmV3MultiassetAssetId;3737 readonly asV3: XcmV3MultiassetAssetId;
3654 readonly type: 'V3';3738 readonly type: 'V3';
3655 }3739 }
36563740
3657 /** @name PalletXcmRemoteLockedFungibleRecord (452) */3741 /** @name PalletXcmRemoteLockedFungibleRecord (456) */
3658 interface PalletXcmRemoteLockedFungibleRecord extends Struct {3742 interface PalletXcmRemoteLockedFungibleRecord extends Struct {
3659 readonly amount: u128;3743 readonly amount: u128;
3660 readonly owner: XcmVersionedMultiLocation;3744 readonly owner: XcmVersionedMultiLocation;
3661 readonly locker: XcmVersionedMultiLocation;3745 readonly locker: XcmVersionedMultiLocation;
3662 readonly users: u32;3746 readonly users: u32;
3663 }3747 }
36643748
3665 /** @name PalletXcmError (456) */3749 /** @name PalletXcmError (460) */
3666 interface PalletXcmError extends Enum {3750 interface PalletXcmError extends Enum {
3667 readonly isUnreachable: boolean;3751 readonly isUnreachable: boolean;
3668 readonly isSendFailure: boolean;3752 readonly isSendFailure: boolean;
3687 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed' | 'InvalidAsset' | 'LowBalance' | 'TooManyLocks' | 'AccountNotSovereign' | 'FeesNotMet' | 'LockNotFound' | 'InUse';3771 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed' | 'InvalidAsset' | 'LowBalance' | 'TooManyLocks' | 'AccountNotSovereign' | 'FeesNotMet' | 'LockNotFound' | 'InUse';
3688 }3772 }
36893773
3690 /** @name CumulusPalletXcmError (457) */3774 /** @name CumulusPalletXcmError (461) */
3691 type CumulusPalletXcmError = Null;3775 type CumulusPalletXcmError = Null;
36923776
3693 /** @name CumulusPalletDmpQueueConfigData (458) */3777 /** @name CumulusPalletDmpQueueConfigData (462) */
3694 interface CumulusPalletDmpQueueConfigData extends Struct {3778 interface CumulusPalletDmpQueueConfigData extends Struct {
3695 readonly maxIndividual: SpWeightsWeightV2Weight;3779 readonly maxIndividual: SpWeightsWeightV2Weight;
3696 }3780 }
36973781
3698 /** @name CumulusPalletDmpQueuePageIndexData (459) */3782 /** @name CumulusPalletDmpQueuePageIndexData (463) */
3699 interface CumulusPalletDmpQueuePageIndexData extends Struct {3783 interface CumulusPalletDmpQueuePageIndexData extends Struct {
3700 readonly beginUsed: u32;3784 readonly beginUsed: u32;
3701 readonly endUsed: u32;3785 readonly endUsed: u32;
3702 readonly overweightCount: u64;3786 readonly overweightCount: u64;
3703 }3787 }
37043788
3705 /** @name CumulusPalletDmpQueueError (462) */3789 /** @name CumulusPalletDmpQueueError (466) */
3706 interface CumulusPalletDmpQueueError extends Enum {3790 interface CumulusPalletDmpQueueError extends Enum {
3707 readonly isUnknown: boolean;3791 readonly isUnknown: boolean;
3708 readonly isOverLimit: boolean;3792 readonly isOverLimit: boolean;
3709 readonly type: 'Unknown' | 'OverLimit';3793 readonly type: 'Unknown' | 'OverLimit';
3710 }3794 }
37113795
3712 /** @name PalletUniqueError (466) */3796 /** @name PalletUniqueError (470) */
3713 interface PalletUniqueError extends Enum {3797 interface PalletUniqueError extends Enum {
3714 readonly isCollectionDecimalPointLimitExceeded: boolean;3798 readonly isCollectionDecimalPointLimitExceeded: boolean;
3715 readonly isEmptyArgument: boolean;3799 readonly isEmptyArgument: boolean;
3716 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3800 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;
3717 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3801 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
3718 }3802 }
37193803
3720 /** @name PalletConfigurationError (467) */3804 /** @name PalletConfigurationError (471) */
3721 interface PalletConfigurationError extends Enum {3805 interface PalletConfigurationError extends Enum {
3722 readonly isInconsistentConfiguration: boolean;3806 readonly isInconsistentConfiguration: boolean;
3723 readonly type: 'InconsistentConfiguration';3807 readonly type: 'InconsistentConfiguration';
3724 }3808 }
37253809
3726 /** @name UpDataStructsCollection (468) */3810 /** @name UpDataStructsCollection (472) */
3727 interface UpDataStructsCollection extends Struct {3811 interface UpDataStructsCollection extends Struct {
3728 readonly owner: AccountId32;3812 readonly owner: AccountId32;
3729 readonly mode: UpDataStructsCollectionMode;3813 readonly mode: UpDataStructsCollectionMode;
3736 readonly flags: U8aFixed;3820 readonly flags: U8aFixed;
3737 }3821 }
37383822
3739 /** @name UpDataStructsSponsorshipStateAccountId32 (469) */3823 /** @name UpDataStructsSponsorshipStateAccountId32 (473) */
3740 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3824 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
3741 readonly isDisabled: boolean;3825 readonly isDisabled: boolean;
3742 readonly isUnconfirmed: boolean;3826 readonly isUnconfirmed: boolean;
3746 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3830 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
3747 }3831 }
37483832
3749 /** @name UpDataStructsProperties (470) */3833 /** @name UpDataStructsProperties (474) */
3750 interface UpDataStructsProperties extends Struct {3834 interface UpDataStructsProperties extends Struct {
3751 readonly map: UpDataStructsPropertiesMapBoundedVec;3835 readonly map: UpDataStructsPropertiesMapBoundedVec;
3752 readonly consumedSpace: u32;3836 readonly consumedSpace: u32;
3753 readonly reserved: u32;3837 readonly reserved: u32;
3754 }3838 }
37553839
3756 /** @name UpDataStructsPropertiesMapBoundedVec (471) */3840 /** @name UpDataStructsPropertiesMapBoundedVec (475) */
3757 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3841 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
37583842
3759 /** @name UpDataStructsPropertiesMapPropertyPermission (476) */3843 /** @name UpDataStructsPropertiesMapPropertyPermission (480) */
3760 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3844 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
37613845
3762 /** @name UpDataStructsCollectionStats (483) */3846 /** @name UpDataStructsCollectionStats (487) */
3763 interface UpDataStructsCollectionStats extends Struct {3847 interface UpDataStructsCollectionStats extends Struct {
3764 readonly created: u32;3848 readonly created: u32;
3765 readonly destroyed: u32;3849 readonly destroyed: u32;
3766 readonly alive: u32;3850 readonly alive: u32;
3767 }3851 }
37683852
3769 /** @name UpDataStructsTokenChild (484) */3853 /** @name UpDataStructsTokenChild (488) */
3770 interface UpDataStructsTokenChild extends Struct {3854 interface UpDataStructsTokenChild extends Struct {
3771 readonly token: u32;3855 readonly token: u32;
3772 readonly collection: u32;3856 readonly collection: u32;
3773 }3857 }
37743858
3775 /** @name PhantomTypeUpDataStructs (485) */3859 /** @name PhantomTypeUpDataStructs (489) */
3776 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpPovEstimateRpcPovInfo]>> {}3860 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, UpPovEstimateRpcPovInfo]>> {}
37773861
3778 /** @name UpDataStructsTokenData (487) */3862 /** @name UpDataStructsTokenData (491) */
3779 interface UpDataStructsTokenData extends Struct {3863 interface UpDataStructsTokenData extends Struct {
3780 readonly properties: Vec<UpDataStructsProperty>;3864 readonly properties: Vec<UpDataStructsProperty>;
3781 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3865 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
3782 readonly pieces: u128;3866 readonly pieces: u128;
3783 }3867 }
37843868
3785 /** @name UpDataStructsRpcCollection (489) */3869 /** @name UpDataStructsRpcCollection (493) */
3786 interface UpDataStructsRpcCollection extends Struct {3870 interface UpDataStructsRpcCollection extends Struct {
3787 readonly owner: AccountId32;3871 readonly owner: AccountId32;
3788 readonly mode: UpDataStructsCollectionMode;3872 readonly mode: UpDataStructsCollectionMode;
3798 readonly flags: UpDataStructsRpcCollectionFlags;3882 readonly flags: UpDataStructsRpcCollectionFlags;
3799 }3883 }
38003884
3801 /** @name UpDataStructsRpcCollectionFlags (490) */3885 /** @name UpDataStructsRpcCollectionFlags (494) */
3802 interface UpDataStructsRpcCollectionFlags extends Struct {3886 interface UpDataStructsRpcCollectionFlags extends Struct {
3803 readonly foreign: bool;3887 readonly foreign: bool;
3804 readonly erc721metadata: bool;3888 readonly erc721metadata: bool;
3805 }3889 }
38063890
3807 /** @name UpPovEstimateRpcPovInfo (491) */3891 /** @name UpPovEstimateRpcPovInfo (495) */
3808 interface UpPovEstimateRpcPovInfo extends Struct {3892 interface UpPovEstimateRpcPovInfo extends Struct {
3809 readonly proofSize: u64;3893 readonly proofSize: u64;
3810 readonly compactProofSize: u64;3894 readonly compactProofSize: u64;
3813 readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;3897 readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;
3814 }3898 }
38153899
3816 /** @name SpRuntimeTransactionValidityTransactionValidityError (494) */3900 /** @name SpRuntimeTransactionValidityTransactionValidityError (498) */
3817 interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {3901 interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {
3818 readonly isInvalid: boolean;3902 readonly isInvalid: boolean;
3819 readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;3903 readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;
3822 readonly type: 'Invalid' | 'Unknown';3906 readonly type: 'Invalid' | 'Unknown';
3823 }3907 }
38243908
3825 /** @name SpRuntimeTransactionValidityInvalidTransaction (495) */3909 /** @name SpRuntimeTransactionValidityInvalidTransaction (499) */
3826 interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {3910 interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {
3827 readonly isCall: boolean;3911 readonly isCall: boolean;
3828 readonly isPayment: boolean;3912 readonly isPayment: boolean;
3839 readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';3923 readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';
3840 }3924 }
38413925
3842 /** @name SpRuntimeTransactionValidityUnknownTransaction (496) */3926 /** @name SpRuntimeTransactionValidityUnknownTransaction (500) */
3843 interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {3927 interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {
3844 readonly isCannotLookup: boolean;3928 readonly isCannotLookup: boolean;
3845 readonly isNoUnsignedValidator: boolean;3929 readonly isNoUnsignedValidator: boolean;
3848 readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';3932 readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';
3849 }3933 }
38503934
3851 /** @name UpPovEstimateRpcTrieKeyValue (498) */3935 /** @name UpPovEstimateRpcTrieKeyValue (502) */
3852 interface UpPovEstimateRpcTrieKeyValue extends Struct {3936 interface UpPovEstimateRpcTrieKeyValue extends Struct {
3853 readonly key: Bytes;3937 readonly key: Bytes;
3854 readonly value: Bytes;3938 readonly value: Bytes;
3855 }3939 }
38563940
3857 /** @name PalletCommonError (500) */3941 /** @name PalletCommonError (504) */
3858 interface PalletCommonError extends Enum {3942 interface PalletCommonError extends Enum {
3859 readonly isCollectionNotFound: boolean;3943 readonly isCollectionNotFound: boolean;
3860 readonly isMustBeTokenOwner: boolean;3944 readonly isMustBeTokenOwner: boolean;
3896 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsNotEthMirror' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';3980 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsNotEthMirror' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
3897 }3981 }
38983982
3899 /** @name PalletFungibleError (502) */3983 /** @name PalletFungibleError (506) */
3900 interface PalletFungibleError extends Enum {3984 interface PalletFungibleError extends Enum {
3901 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3985 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
3902 readonly isFungibleItemsHaveNoId: boolean;3986 readonly isFungibleItemsHaveNoId: boolean;
3908 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';3992 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
3909 }3993 }
39103994
3911 /** @name PalletRefungibleError (507) */3995 /** @name PalletRefungibleError (511) */
3912 interface PalletRefungibleError extends Enum {3996 interface PalletRefungibleError extends Enum {
3913 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3997 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
3914 readonly isWrongRefungiblePieces: boolean;3998 readonly isWrongRefungiblePieces: boolean;
3918 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';4002 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
3919 }4003 }
39204004
3921 /** @name PalletNonfungibleItemData (508) */4005 /** @name PalletNonfungibleItemData (512) */
3922 interface PalletNonfungibleItemData extends Struct {4006 interface PalletNonfungibleItemData extends Struct {
3923 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;4007 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
3924 }4008 }
39254009
3926 /** @name UpDataStructsPropertyScope (510) */4010 /** @name UpDataStructsPropertyScope (514) */
3927 interface UpDataStructsPropertyScope extends Enum {4011 interface UpDataStructsPropertyScope extends Enum {
3928 readonly isNone: boolean;4012 readonly isNone: boolean;
3929 readonly isRmrk: boolean;4013 readonly isRmrk: boolean;
3930 readonly type: 'None' | 'Rmrk';4014 readonly type: 'None' | 'Rmrk';
3931 }4015 }
39324016
3933 /** @name PalletNonfungibleError (513) */4017 /** @name PalletNonfungibleError (517) */
3934 interface PalletNonfungibleError extends Enum {4018 interface PalletNonfungibleError extends Enum {
3935 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;4019 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
3936 readonly isNonfungibleItemsHaveNoAmount: boolean;4020 readonly isNonfungibleItemsHaveNoAmount: boolean;
3937 readonly isCantBurnNftWithChildren: boolean;4021 readonly isCantBurnNftWithChildren: boolean;
3938 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';4022 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
3939 }4023 }
39404024
3941 /** @name PalletStructureError (514) */4025 /** @name PalletStructureError (518) */
3942 interface PalletStructureError extends Enum {4026 interface PalletStructureError extends Enum {
3943 readonly isOuroborosDetected: boolean;4027 readonly isOuroborosDetected: boolean;
3944 readonly isDepthLimit: boolean;4028 readonly isDepthLimit: boolean;
3948 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound' | 'CantNestTokenUnderCollection';4032 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound' | 'CantNestTokenUnderCollection';
3949 }4033 }
39504034
3951 /** @name PalletAppPromotionError (519) */4035 /** @name PalletAppPromotionError (523) */
3952 interface PalletAppPromotionError extends Enum {4036 interface PalletAppPromotionError extends Enum {
3953 readonly isAdminNotSet: boolean;4037 readonly isAdminNotSet: boolean;
3954 readonly isNoPermission: boolean;4038 readonly isNoPermission: boolean;
3960 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation' | 'InsufficientStakedBalance';4044 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation' | 'InsufficientStakedBalance';
3961 }4045 }
39624046
3963 /** @name PalletForeignAssetsModuleError (520) */4047 /** @name PalletForeignAssetsModuleError (524) */
3964 interface PalletForeignAssetsModuleError extends Enum {4048 interface PalletForeignAssetsModuleError extends Enum {
3965 readonly isBadLocation: boolean;4049 readonly isBadLocation: boolean;
3966 readonly isMultiLocationExisted: boolean;4050 readonly isMultiLocationExisted: boolean;
3969 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';4053 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
3970 }4054 }
39714055
3972 /** @name PalletEvmError (522) */4056 /** @name PalletEvmError (526) */
3973 interface PalletEvmError extends Enum {4057 interface PalletEvmError extends Enum {
3974 readonly isBalanceLow: boolean;4058 readonly isBalanceLow: boolean;
3975 readonly isFeeOverflow: boolean;4059 readonly isFeeOverflow: boolean;
3985 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';4069 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';
3986 }4070 }
39874071
3988 /** @name FpRpcTransactionStatus (525) */4072 /** @name FpRpcTransactionStatus (529) */
3989 interface FpRpcTransactionStatus extends Struct {4073 interface FpRpcTransactionStatus extends Struct {
3990 readonly transactionHash: H256;4074 readonly transactionHash: H256;
3991 readonly transactionIndex: u32;4075 readonly transactionIndex: u32;
3996 readonly logsBloom: EthbloomBloom;4080 readonly logsBloom: EthbloomBloom;
3997 }4081 }
39984082
3999 /** @name EthbloomBloom (527) */4083 /** @name EthbloomBloom (531) */
4000 interface EthbloomBloom extends U8aFixed {}4084 interface EthbloomBloom extends U8aFixed {}
40014085
4002 /** @name EthereumReceiptReceiptV3 (529) */4086 /** @name EthereumReceiptReceiptV3 (533) */
4003 interface EthereumReceiptReceiptV3 extends Enum {4087 interface EthereumReceiptReceiptV3 extends Enum {
4004 readonly isLegacy: boolean;4088 readonly isLegacy: boolean;
4005 readonly asLegacy: EthereumReceiptEip658ReceiptData;4089 readonly asLegacy: EthereumReceiptEip658ReceiptData;
4010 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';4094 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
4011 }4095 }
40124096
4013 /** @name EthereumReceiptEip658ReceiptData (530) */4097 /** @name EthereumReceiptEip658ReceiptData (534) */
4014 interface EthereumReceiptEip658ReceiptData extends Struct {4098 interface EthereumReceiptEip658ReceiptData extends Struct {
4015 readonly statusCode: u8;4099 readonly statusCode: u8;
4016 readonly usedGas: U256;4100 readonly usedGas: U256;
4017 readonly logsBloom: EthbloomBloom;4101 readonly logsBloom: EthbloomBloom;
4018 readonly logs: Vec<EthereumLog>;4102 readonly logs: Vec<EthereumLog>;
4019 }4103 }
40204104
4021 /** @name EthereumBlock (531) */4105 /** @name EthereumBlock (535) */
4022 interface EthereumBlock extends Struct {4106 interface EthereumBlock extends Struct {
4023 readonly header: EthereumHeader;4107 readonly header: EthereumHeader;
4024 readonly transactions: Vec<EthereumTransactionTransactionV2>;4108 readonly transactions: Vec<EthereumTransactionTransactionV2>;
4025 readonly ommers: Vec<EthereumHeader>;4109 readonly ommers: Vec<EthereumHeader>;
4026 }4110 }
40274111
4028 /** @name EthereumHeader (532) */4112 /** @name EthereumHeader (536) */
4029 interface EthereumHeader extends Struct {4113 interface EthereumHeader extends Struct {
4030 readonly parentHash: H256;4114 readonly parentHash: H256;
4031 readonly ommersHash: H256;4115 readonly ommersHash: H256;
4044 readonly nonce: EthereumTypesHashH64;4128 readonly nonce: EthereumTypesHashH64;
4045 }4129 }
40464130
4047 /** @name EthereumTypesHashH64 (533) */4131 /** @name EthereumTypesHashH64 (537) */
4048 interface EthereumTypesHashH64 extends U8aFixed {}4132 interface EthereumTypesHashH64 extends U8aFixed {}
40494133
4050 /** @name PalletEthereumError (538) */4134 /** @name PalletEthereumError (542) */
4051 interface PalletEthereumError extends Enum {4135 interface PalletEthereumError extends Enum {
4052 readonly isInvalidSignature: boolean;4136 readonly isInvalidSignature: boolean;
4053 readonly isPreLogExists: boolean;4137 readonly isPreLogExists: boolean;
4054 readonly type: 'InvalidSignature' | 'PreLogExists';4138 readonly type: 'InvalidSignature' | 'PreLogExists';
4055 }4139 }
40564140
4057 /** @name PalletEvmCoderSubstrateError (539) */4141 /** @name PalletEvmCoderSubstrateError (543) */
4058 interface PalletEvmCoderSubstrateError extends Enum {4142 interface PalletEvmCoderSubstrateError extends Enum {
4059 readonly isOutOfGas: boolean;4143 readonly isOutOfGas: boolean;
4060 readonly isOutOfFund: boolean;4144 readonly isOutOfFund: boolean;
4061 readonly type: 'OutOfGas' | 'OutOfFund';4145 readonly type: 'OutOfGas' | 'OutOfFund';
4062 }4146 }
40634147
4064 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (540) */4148 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (544) */
4065 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {4149 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
4066 readonly isDisabled: boolean;4150 readonly isDisabled: boolean;
4067 readonly isUnconfirmed: boolean;4151 readonly isUnconfirmed: boolean;
4071 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';4155 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
4072 }4156 }
40734157
4074 /** @name PalletEvmContractHelpersSponsoringModeT (541) */4158 /** @name PalletEvmContractHelpersSponsoringModeT (545) */
4075 interface PalletEvmContractHelpersSponsoringModeT extends Enum {4159 interface PalletEvmContractHelpersSponsoringModeT extends Enum {
4076 readonly isDisabled: boolean;4160 readonly isDisabled: boolean;
4077 readonly isAllowlisted: boolean;4161 readonly isAllowlisted: boolean;
4078 readonly isGenerous: boolean;4162 readonly isGenerous: boolean;
4079 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';4163 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
4080 }4164 }
40814165
4082 /** @name PalletEvmContractHelpersError (547) */4166 /** @name PalletEvmContractHelpersError (551) */
4083 interface PalletEvmContractHelpersError extends Enum {4167 interface PalletEvmContractHelpersError extends Enum {
4084 readonly isNoPermission: boolean;4168 readonly isNoPermission: boolean;
4085 readonly isNoPendingSponsor: boolean;4169 readonly isNoPendingSponsor: boolean;
4086 readonly isTooManyMethodsHaveSponsoredLimit: boolean;4170 readonly isTooManyMethodsHaveSponsoredLimit: boolean;
4087 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';4171 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
4088 }4172 }
40894173
4090 /** @name PalletEvmMigrationError (548) */4174 /** @name PalletEvmMigrationError (552) */
4091 interface PalletEvmMigrationError extends Enum {4175 interface PalletEvmMigrationError extends Enum {
4092 readonly isAccountNotEmpty: boolean;4176 readonly isAccountNotEmpty: boolean;
4093 readonly isAccountIsNotMigrating: boolean;4177 readonly isAccountIsNotMigrating: boolean;
4094 readonly isBadEvent: boolean;4178 readonly isBadEvent: boolean;
4095 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';4179 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
4096 }4180 }
40974181
4098 /** @name PalletMaintenanceError (549) */4182 /** @name PalletMaintenanceError (553) */
4099 type PalletMaintenanceError = Null;4183 type PalletMaintenanceError = Null;
41004184
4101 /** @name PalletTestUtilsError (550) */4185 /** @name PalletTestUtilsError (554) */
4102 interface PalletTestUtilsError extends Enum {4186 interface PalletTestUtilsError extends Enum {
4103 readonly isTestPalletDisabled: boolean;4187 readonly isTestPalletDisabled: boolean;
4104 readonly isTriggerRollback: boolean;4188 readonly isTriggerRollback: boolean;
4105 readonly type: 'TestPalletDisabled' | 'TriggerRollback';4189 readonly type: 'TestPalletDisabled' | 'TriggerRollback';
4106 }4190 }
41074191
4108 /** @name SpRuntimeMultiSignature (552) */4192 /** @name SpRuntimeMultiSignature (556) */
4109 interface SpRuntimeMultiSignature extends Enum {4193 interface SpRuntimeMultiSignature extends Enum {
4110 readonly isEd25519: boolean;4194 readonly isEd25519: boolean;
4111 readonly asEd25519: SpCoreEd25519Signature;4195 readonly asEd25519: SpCoreEd25519Signature;
4116 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';4200 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
4117 }4201 }
41184202
4119 /** @name SpCoreEd25519Signature (553) */4203 /** @name SpCoreEd25519Signature (557) */
4120 interface SpCoreEd25519Signature extends U8aFixed {}4204 interface SpCoreEd25519Signature extends U8aFixed {}
41214205
4122 /** @name SpCoreSr25519Signature (555) */4206 /** @name SpCoreSr25519Signature (559) */
4123 interface SpCoreSr25519Signature extends U8aFixed {}4207 interface SpCoreSr25519Signature extends U8aFixed {}
41244208
4125 /** @name SpCoreEcdsaSignature (556) */4209 /** @name SpCoreEcdsaSignature (560) */
4126 interface SpCoreEcdsaSignature extends U8aFixed {}4210 interface SpCoreEcdsaSignature extends U8aFixed {}
41274211
4128 /** @name FrameSystemExtensionsCheckSpecVersion (559) */4212 /** @name FrameSystemExtensionsCheckSpecVersion (563) */
4129 type FrameSystemExtensionsCheckSpecVersion = Null;4213 type FrameSystemExtensionsCheckSpecVersion = Null;
41304214
4131 /** @name FrameSystemExtensionsCheckTxVersion (560) */4215 /** @name FrameSystemExtensionsCheckTxVersion (564) */
4132 type FrameSystemExtensionsCheckTxVersion = Null;4216 type FrameSystemExtensionsCheckTxVersion = Null;
41334217
4134 /** @name FrameSystemExtensionsCheckGenesis (561) */4218 /** @name FrameSystemExtensionsCheckGenesis (565) */
4135 type FrameSystemExtensionsCheckGenesis = Null;4219 type FrameSystemExtensionsCheckGenesis = Null;
41364220
4137 /** @name FrameSystemExtensionsCheckNonce (564) */4221 /** @name FrameSystemExtensionsCheckNonce (568) */
4138 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}4222 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
41394223
4140 /** @name FrameSystemExtensionsCheckWeight (565) */4224 /** @name FrameSystemExtensionsCheckWeight (569) */
4141 type FrameSystemExtensionsCheckWeight = Null;4225 type FrameSystemExtensionsCheckWeight = Null;
41424226
4143 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (566) */4227 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (570) */
4144 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;4228 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
41454229
4146 /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (567) */4230 /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (571) */
4147 type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;4231 type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;
41484232
4149 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (568) */4233 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (572) */
4150 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}4234 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
41514235
4152 /** @name OpalRuntimeRuntime (569) */4236 /** @name OpalRuntimeRuntime (573) */
4153 type OpalRuntimeRuntime = Null;4237 type OpalRuntimeRuntime = Null;
41544238
4155 /** @name PalletEthereumFakeTransactionFinalizer (570) */4239 /** @name PalletEthereumFakeTransactionFinalizer (574) */
4156 type PalletEthereumFakeTransactionFinalizer = Null;4240 type PalletEthereumFakeTransactionFinalizer = Null;
41574241
4158} // declare module4242} // declare module