git.delta.rocks / unique-network / refs/commits / 895a035cdc96

difftreelog

chore generate types

Fahrrader2022-12-28parent: #18cb512.patch.diff
in: master

10 files changed

modifiedtests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth
41 **/41 **/
42 [key: string]: Codec;42 [key: string]: Codec;
43 };43 };
44 authorship: {
45 /**
46 * The number of blocks back we should accept uncles.
47 * This means that we will deal with uncle-parents that are
48 * `UncleGenerations + 1` before `now`.
49 **/
50 uncleGenerations: u32 & AugmentedConst<ApiType>;
51 /**
52 * Generic const
53 **/
54 [key: string]: Codec;
55 };
56 balances: {44 balances: {
57 /**45 /**
58 * The minimum amount required to keep an account open.46 * The minimum amount required to keep an account open.
114 **/102 **/
115 [key: string]: Codec;103 [key: string]: Codec;
116 };104 };
117 identity: {
118 /**
119 * The amount held on deposit for a registered identity
120 **/
121 basicDeposit: u128 & AugmentedConst<ApiType>;
122 /**
123 * The amount held on deposit per additional field for a registered identity.
124 **/
125 fieldDeposit: u128 & AugmentedConst<ApiType>;
126 /**
127 * Maximum number of additional fields that may be stored in an ID. Needed to bound the I/O
128 * required to access an identity, but can be pretty high.
129 **/
130 maxAdditionalFields: u32 & AugmentedConst<ApiType>;
131 /**
132 * Maxmimum number of registrars allowed in the system. Needed to bound the complexity
133 * of, e.g., updating judgements.
134 **/
135 maxRegistrars: u32 & AugmentedConst<ApiType>;
136 /**
137 * The maximum number of sub-accounts allowed per identified account.
138 **/
139 maxSubAccounts: u32 & AugmentedConst<ApiType>;
140 /**
141 * The amount held on deposit for a registered subaccount. This should account for the fact
142 * that one storage item's value will increase by the size of an account ID, and there will
143 * be another trie item whose value is the size of an account ID plus 32 bytes.
144 **/
145 subAccountDeposit: u128 & AugmentedConst<ApiType>;
146 /**
147 * Generic const
148 **/
149 [key: string]: Codec;
150 };
151 inflation: {105 inflation: {
152 /**106 /**
153 * Number of blocks that pass between treasury balance updates due to inflation107 * Number of blocks that pass between treasury balance updates due to inflation
modifiedtests/src/interfaces/augment-api-errors.tsdiffbeforeafterboth
41 **/41 **/
42 [key: string]: AugmentedError<ApiType>;42 [key: string]: AugmentedError<ApiType>;
43 };43 };
44 authorship: {
45 /**
46 * The uncle is genesis.
47 **/
48 GenesisUncle: AugmentedError<ApiType>;
49 /**
50 * The uncle parent not in the chain.
51 **/
52 InvalidUncleParent: AugmentedError<ApiType>;
53 /**
54 * The uncle isn't recent enough to be included.
55 **/
56 OldUncle: AugmentedError<ApiType>;
57 /**
58 * The uncle is too high in chain.
59 **/
60 TooHighUncle: AugmentedError<ApiType>;
61 /**
62 * Too many uncles.
63 **/
64 TooManyUncles: AugmentedError<ApiType>;
65 /**
66 * The uncle is already included.
67 **/
68 UncleAlreadyIncluded: AugmentedError<ApiType>;
69 /**
70 * Uncles already set in the block.
71 **/
72 UnclesAlreadySet: AugmentedError<ApiType>;
73 /**
74 * Generic error
75 **/
76 [key: string]: AugmentedError<ApiType>;
77 };
78 balances: {44 balances: {
79 /**45 /**
80 * Beneficiary account must pre-exist46 * Beneficiary account must pre-exist
113 **/79 **/
114 [key: string]: AugmentedError<ApiType>;80 [key: string]: AugmentedError<ApiType>;
115 };81 };
116 collatorSelection: {
117 /**
118 * User is already a candidate
119 **/
120 AlreadyCandidate: AugmentedError<ApiType>;
121 /**
122 * User already holds license to collate
123 **/
124 AlreadyHoldingLicense: AugmentedError<ApiType>;
125 /**
126 * User is already an Invulnerable
127 **/
128 AlreadyInvulnerable: AugmentedError<ApiType>;
129 /**
130 * Account has no associated validator ID
131 **/
132 NoAssociatedValidatorId: AugmentedError<ApiType>;
133 /**
134 * User does not hold a license to collate
135 **/
136 NoLicense: AugmentedError<ApiType>;
137 /**
138 * User is not a candidate
139 **/
140 NotCandidate: AugmentedError<ApiType>;
141 /**
142 * User is not an Invulnerable
143 **/
144 NotInvulnerable: AugmentedError<ApiType>;
145 /**
146 * Permission issue
147 **/
148 Permission: AugmentedError<ApiType>;
149 /**
150 * Too few invulnerables
151 **/
152 TooFewInvulnerables: AugmentedError<ApiType>;
153 /**
154 * Too many candidates
155 **/
156 TooManyCandidates: AugmentedError<ApiType>;
157 /**
158 * Too many invulnerables
159 **/
160 TooManyInvulnerables: AugmentedError<ApiType>;
161 /**
162 * Unknown error
163 **/
164 Unknown: AugmentedError<ApiType>;
165 /**
166 * Validator ID is not yet registered
167 **/
168 ValidatorNotRegistered: AugmentedError<ApiType>;
169 /**
170 * Generic error
171 **/
172 [key: string]: AugmentedError<ApiType>;
173 };
174 common: {82 common: {
175 /**83 /**
176 * Account token limit exceeded per collection84 * Account token limit exceeded per collection
513 **/421 **/
514 [key: string]: AugmentedError<ApiType>;422 [key: string]: AugmentedError<ApiType>;
515 };423 };
516 identity: {
517 /**
518 * Account ID is already named.
519 **/
520 AlreadyClaimed: AugmentedError<ApiType>;
521 /**
522 * Empty index.
523 **/
524 EmptyIndex: AugmentedError<ApiType>;
525 /**
526 * Fee is changed.
527 **/
528 FeeChanged: AugmentedError<ApiType>;
529 /**
530 * The index is invalid.
531 **/
532 InvalidIndex: AugmentedError<ApiType>;
533 /**
534 * Invalid judgement.
535 **/
536 InvalidJudgement: AugmentedError<ApiType>;
537 /**
538 * The target is invalid.
539 **/
540 InvalidTarget: AugmentedError<ApiType>;
541 /**
542 * The provided judgement was for a different identity.
543 **/
544 JudgementForDifferentIdentity: AugmentedError<ApiType>;
545 /**
546 * Judgement given.
547 **/
548 JudgementGiven: AugmentedError<ApiType>;
549 /**
550 * Error that occurs when there is an issue paying for judgement.
551 **/
552 JudgementPaymentFailed: AugmentedError<ApiType>;
553 /**
554 * No identity found.
555 **/
556 NoIdentity: AugmentedError<ApiType>;
557 /**
558 * Account isn't found.
559 **/
560 NotFound: AugmentedError<ApiType>;
561 /**
562 * Account isn't named.
563 **/
564 NotNamed: AugmentedError<ApiType>;
565 /**
566 * Sub-account isn't owned by sender.
567 **/
568 NotOwned: AugmentedError<ApiType>;
569 /**
570 * Sender is not a sub-account.
571 **/
572 NotSub: AugmentedError<ApiType>;
573 /**
574 * Sticky judgement.
575 **/
576 StickyJudgement: AugmentedError<ApiType>;
577 /**
578 * Too many additional fields.
579 **/
580 TooManyFields: AugmentedError<ApiType>;
581 /**
582 * Maximum amount of registrars reached. Cannot add any more.
583 **/
584 TooManyRegistrars: AugmentedError<ApiType>;
585 /**
586 * Too many subs-accounts.
587 **/
588 TooManySubAccounts: AugmentedError<ApiType>;
589 /**
590 * Generic error
591 **/
592 [key: string]: AugmentedError<ApiType>;
593 };
594 maintenance: {424 maintenance: {
595 /**425 /**
596 * Generic error426 * Generic error
859 **/689 **/
860 [key: string]: AugmentedError<ApiType>;690 [key: string]: AugmentedError<ApiType>;
861 };691 };
862 session: {
863 /**
864 * Registered duplicate key.
865 **/
866 DuplicatedKey: AugmentedError<ApiType>;
867 /**
868 * Invalid ownership proof.
869 **/
870 InvalidProof: AugmentedError<ApiType>;
871 /**
872 * Key setting account is not live, so it's impossible to associate keys.
873 **/
874 NoAccount: AugmentedError<ApiType>;
875 /**
876 * No associated validator ID for account.
877 **/
878 NoAssociatedValidatorId: AugmentedError<ApiType>;
879 /**
880 * No keys are associated with this account.
881 **/
882 NoKeys: AugmentedError<ApiType>;
883 /**
884 * Generic error
885 **/
886 [key: string]: AugmentedError<ApiType>;
887 };
888 structure: {692 structure: {
889 /**693 /**
890 * While nesting, reached the breadth limit of nesting, exceeding the provided budget.694 * While nesting, reached the breadth limit of nesting, exceeding the provided budget.
modifiedtests/src/interfaces/augment-api-events.tsdiffbeforeafterboth
100 **/100 **/
101 [key: string]: AugmentedEvent<ApiType>;101 [key: string]: AugmentedEvent<ApiType>;
102 };102 };
103 collatorSelection: {
104 CandidateAdded: AugmentedEvent<ApiType, [accountId: AccountId32], { accountId: AccountId32 }>;
105 CandidateRemoved: AugmentedEvent<ApiType, [accountId: AccountId32], { accountId: AccountId32 }>;
106 InvulnerableAdded: AugmentedEvent<ApiType, [invulnerable: AccountId32], { invulnerable: AccountId32 }>;
107 InvulnerableRemoved: AugmentedEvent<ApiType, [invulnerable: AccountId32], { invulnerable: AccountId32 }>;
108 LicenseObtained: AugmentedEvent<ApiType, [accountId: AccountId32, deposit: u128], { accountId: AccountId32, deposit: u128 }>;
109 LicenseReleased: AugmentedEvent<ApiType, [accountId: AccountId32, depositReturned: u128], { accountId: AccountId32, depositReturned: u128 }>;
110 /**
111 * Generic event
112 **/
113 [key: string]: AugmentedEvent<ApiType>;
114 };
115 common: {103 common: {
116 /**104 /**
117 * Address was added to the allow list.105 * Address was added to the allow list.
352 **/340 **/
353 [key: string]: AugmentedEvent<ApiType>;341 [key: string]: AugmentedEvent<ApiType>;
354 };342 };
355 identity: {
356 /**
357 * A number of identities and associated info were forcibly inserted.
358 **/
359 IdentitiesInserted: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;
360 /**
361 * A number of identities and all associated info were forcibly removed.
362 **/
363 IdentitiesRemoved: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;
364 /**
365 * A name was cleared, and the given balance returned.
366 **/
367 IdentityCleared: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;
368 /**
369 * A name was removed and the given balance slashed.
370 **/
371 IdentityKilled: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;
372 /**
373 * A name was set or reset (which will remove all judgements).
374 **/
375 IdentitySet: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;
376 /**
377 * A judgement was given by a registrar.
378 **/
379 JudgementGiven: AugmentedEvent<ApiType, [target: AccountId32, registrarIndex: u32], { target: AccountId32, registrarIndex: u32 }>;
380 /**
381 * A judgement was asked from a registrar.
382 **/
383 JudgementRequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;
384 /**
385 * A judgement request was retracted.
386 **/
387 JudgementUnrequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;
388 /**
389 * A registrar was added.
390 **/
391 RegistrarAdded: AugmentedEvent<ApiType, [registrarIndex: u32], { registrarIndex: u32 }>;
392 /**
393 * A sub-identity was added to an identity and the deposit paid.
394 **/
395 SubIdentityAdded: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;
396 /**
397 * A sub-identity was removed from an identity and the deposit freed.
398 **/
399 SubIdentityRemoved: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;
400 /**
401 * A sub-identity was cleared, and the given deposit repatriated from the
402 * main identity account to the sub-identity account.
403 **/
404 SubIdentityRevoked: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;
405 /**
406 * Generic event
407 **/
408 [key: string]: AugmentedEvent<ApiType>;
409 };
410 maintenance: {343 maintenance: {
411 MaintenanceDisabled: AugmentedEvent<ApiType, []>;344 MaintenanceDisabled: AugmentedEvent<ApiType, []>;
412 MaintenanceEnabled: AugmentedEvent<ApiType, []>;345 MaintenanceEnabled: AugmentedEvent<ApiType, []>;
602 **/535 **/
603 [key: string]: AugmentedEvent<ApiType>;536 [key: string]: AugmentedEvent<ApiType>;
604 };537 };
605 session: {
606 /**
607 * New session has happened. Note that the argument is the session index, not the
608 * block number as the type might suggest.
609 **/
610 NewSession: AugmentedEvent<ApiType, [sessionIndex: u32], { sessionIndex: u32 }>;
611 /**
612 * Generic event
613 **/
614 [key: string]: AugmentedEvent<ApiType>;
615 };
616 structure: {538 structure: {
617 /**539 /**
618 * Executed call on behalf of the token.540 * Executed call on behalf of the token.
modifiedtests/src/interfaces/augment-api-query.tsdiffbeforeafterboth
6import '@polkadot/api-base/types/storage';6import '@polkadot/api-base/types/storage';
77
8import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@polkadot/api-base/types';
9import type { Data } from '@polkadot/types';
10import type { BTreeMap, Bytes, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import 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';10import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
12import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';11import 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, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityRegistrarInfo, PalletIdentityRegistration, PalletNonfungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpCoreCryptoKeyTypeId, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';12import type { CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueQueueConfigData, EthereumBlock, EthereumLog, EthereumReceiptReceiptV3, EthereumTransactionTransactionV2, FpRpcTransactionStatus, FrameSupportDispatchPerDispatchClassWeight, FrameSystemAccountInfo, FrameSystemEventRecord, FrameSystemLastRuntimeUpgradeInfo, FrameSystemPhase, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensReserveData, OrmlVestingVestingSchedule, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesReserveData, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmContractHelpersSponsoringModeT, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletNonfungibleItemData, PalletTransactionPaymentReleases, PalletTreasuryProposal, PhantomTypeUpDataStructs, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, SpRuntimeDigest, SpTrieStorageProof, SpWeightsWeightV2Weight, UpDataStructsCollection, UpDataStructsCollectionStats, UpDataStructsProperties, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, XcmV1MultiLocation } from '@polkadot/types/lookup';
14import type { Observable } from '@polkadot/types/types';13import type { Observable } from '@polkadot/types/types';
1514
16export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;15export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
60 **/59 **/
61 [key: string]: QueryableStorageEntry<ApiType>;60 [key: string]: QueryableStorageEntry<ApiType>;
62 };61 };
63 authorship: {
64 /**
65 * Author of current block.
66 **/
67 author: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
68 /**
69 * Whether uncles were already set in this block.
70 **/
71 didSetUncles: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;
72 /**
73 * Uncles
74 **/
75 uncles: AugmentedQuery<ApiType, () => Observable<Vec<PalletAuthorshipUncleEntryItem>>, []> & QueryableStorageEntry<ApiType, []>;
76 /**
77 * Generic query
78 **/
79 [key: string]: QueryableStorageEntry<ApiType>;
80 };
81 balances: {62 balances: {
82 /**63 /**
83 * The Balances pallet example of storing the balance of an account.64 * The Balances pallet example of storing the balance of an account.
134 **/115 **/
135 [key: string]: QueryableStorageEntry<ApiType>;116 [key: string]: QueryableStorageEntry<ApiType>;
136 };117 };
137 collatorSelection: {
138 /**
139 * The (community, limited) collation candidates.
140 **/
141 candidates: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
142 /**
143 * The invulnerable, fixed collators.
144 **/
145 invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
146 /**
147 * Last block authored by collator.
148 **/
149 lastAuthoredBlock: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u32>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
150 /**
151 * The (community) collation license holders.
152 **/
153 licenseDepositOf: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u128>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
154 /**
155 * Generic query
156 **/
157 [key: string]: QueryableStorageEntry<ApiType>;
158 };
159 common: {118 common: {
160 /**119 /**
161 * Storage of the amount of collection admins.120 * Storage of the amount of collection admins.
407 **/366 **/
408 [key: string]: QueryableStorageEntry<ApiType>;367 [key: string]: QueryableStorageEntry<ApiType>;
409 };368 };
410 identity: {
411 /**
412 * Information that is pertinent to identify the entity behind an account.
413 *
414 * TWOX-NOTE: OK ― `AccountId` is a secure hash.
415 **/
416 identityOf: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PalletIdentityRegistration>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
417 /**
418 * The set of registrars. Not expected to get very big as can only be added through a
419 * special origin (likely a council motion).
420 *
421 * The index into this can be cast to `RegistrarIndex` to get a valid value.
422 **/
423 registrars: AugmentedQuery<ApiType, () => Observable<Vec<Option<PalletIdentityRegistrarInfo>>>, []> & QueryableStorageEntry<ApiType, []>;
424 /**
425 * Alternative "sub" identities of this account.
426 *
427 * The first item is the deposit, the second is a vector of the accounts.
428 *
429 * TWOX-NOTE: OK ― `AccountId` is a secure hash.
430 **/
431 subsOf: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<ITuple<[u128, Vec<AccountId32>]>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
432 /**
433 * The super-identity of an alternative "sub" identity together with its name, within that
434 * context. If the account is not some other account's sub-identity, then just `None`.
435 **/
436 superOf: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<ITuple<[AccountId32, Data]>>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
437 /**
438 * Generic query
439 **/
440 [key: string]: QueryableStorageEntry<ApiType>;
441 };
442 inflation: {369 inflation: {
443 /**370 /**
444 * Current inflation for `InflationBlockInterval` number of blocks371 * Current inflation for `InflationBlockInterval` number of blocks
757 **/684 **/
758 [key: string]: QueryableStorageEntry<ApiType>;685 [key: string]: QueryableStorageEntry<ApiType>;
759 };686 };
760 session: {
761 /**
762 * Current index of the session.
763 **/
764 currentIndex: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
765 /**
766 * Indices of disabled validators.
767 *
768 * The vec is always kept sorted so that we can find whether a given validator is
769 * disabled using binary search. It gets cleared when `on_session_ending` returns
770 * a new set of identities.
771 **/
772 disabledValidators: AugmentedQuery<ApiType, () => Observable<Vec<u32>>, []> & QueryableStorageEntry<ApiType, []>;
773 /**
774 * The owner of a key. The key is the `KeyTypeId` + the encoded key.
775 **/
776 keyOwner: AugmentedQuery<ApiType, (arg: ITuple<[SpCoreCryptoKeyTypeId, Bytes]> | [SpCoreCryptoKeyTypeId | string | Uint8Array, Bytes | string | Uint8Array]) => Observable<Option<AccountId32>>, [ITuple<[SpCoreCryptoKeyTypeId, Bytes]>]> & QueryableStorageEntry<ApiType, [ITuple<[SpCoreCryptoKeyTypeId, Bytes]>]>;
777 /**
778 * The next session keys for a validator.
779 **/
780 nextKeys: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<OpalRuntimeRuntimeCommonSessionKeys>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
781 /**
782 * True if the underlying economic identities or weighting behind the validators
783 * has changed in the queued validator set.
784 **/
785 queuedChanged: AugmentedQuery<ApiType, () => Observable<bool>, []> & QueryableStorageEntry<ApiType, []>;
786 /**
787 * The queued keys for the next session. When the next session begins, these keys
788 * will be used to determine the validator's session keys.
789 **/
790 queuedKeys: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[AccountId32, OpalRuntimeRuntimeCommonSessionKeys]>>>, []> & QueryableStorageEntry<ApiType, []>;
791 /**
792 * The current set of validators.
793 **/
794 validators: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
795 /**
796 * Generic query
797 **/
798 [key: string]: QueryableStorageEntry<ApiType>;
799 };
800 structure: {687 structure: {
801 /**688 /**
802 * Generic query689 * Generic query
modifiedtests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth
6import '@polkadot/api-base/types/submittable';6import '@polkadot/api-base/types/submittable';
77
8import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@polkadot/api-base/types';
9import type { Data } from '@polkadot/types';
10import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { Bytes, Compact, Option, U256, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
11import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';10import type { AnyNumber, IMethod, ITuple } from '@polkadot/types-codec/types';
12import type { AccountId32, Call, H160, H256, MultiAddress, Permill } from '@polkadot/types/interfaces/runtime';11import type { AccountId32, Call, H160, H256, MultiAddress, Permill } from '@polkadot/types/interfaces/runtime';
13import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OpalRuntimeRuntimeCommonSessionKeys, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletIdentityBitFlags, PalletIdentityIdentityInfo, PalletIdentityJudgement, PalletIdentityRegistration, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, SpRuntimeHeader, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';12import type { CumulusPrimitivesParachainInherentParachainInherentData, EthereumLog, EthereumTransactionTransactionV2, OrmlVestingVestingSchedule, PalletConfigurationAppPromotionConfiguration, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsPartEquippableList, RmrkTraitsPartPartType, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, SpWeightsWeightV2Weight, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCreateCollectionData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, XcmV1MultiLocation, XcmV2WeightLimit, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
1413
15export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;14export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
16export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;15export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
120 **/119 **/
121 [key: string]: SubmittableExtrinsicFunction<ApiType>;120 [key: string]: SubmittableExtrinsicFunction<ApiType>;
122 };121 };
123 authorship: {
124 /**
125 * Provide a set of uncles.
126 **/
127 setUncles: AugmentedSubmittable<(newUncles: Vec<SpRuntimeHeader> | (SpRuntimeHeader | { parentHash?: any; number?: any; stateRoot?: any; extrinsicsRoot?: any; digest?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<SpRuntimeHeader>]>;
128 /**
129 * Generic tx
130 **/
131 [key: string]: SubmittableExtrinsicFunction<ApiType>;
132 };
133 balances: {122 balances: {
134 /**123 /**
135 * Exactly as `transfer`, except the origin must be root and the source account may be124 * Exactly as `transfer`, except the origin must be root and the source account may be
225 **/214 **/
226 [key: string]: SubmittableExtrinsicFunction<ApiType>;215 [key: string]: SubmittableExtrinsicFunction<ApiType>;
227 };216 };
228 collatorSelection: {
229 /**
230 * Add a collator to the list of invulnerable (fixed) collators.
231 **/
232 addInvulnerable: AugmentedSubmittable<(updated: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
233 /**
234 * Force deregister `origin` as a collator candidate as a governing authority, and revoke its license.
235 * Note that the collator can only leave on session change.
236 * The `LicenseBond` will be unreserved and returned immediately.
237 *
238 * This call is, of course, not applicable to `Invulnerable` collators.
239 **/
240 forceReleaseLicense: AugmentedSubmittable<(who: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
241 /**
242 * Purchase a license on block collation for this account.
243 * It does not make it a collator candidate, use `onboard` afterward. The account must
244 * (a) already have registered session keys and (b) be able to reserve the `LicenseBond`.
245 *
246 * This call is not available to `Invulnerable` collators.
247 **/
248 getLicense: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
249 /**
250 * Deregister `origin` as a collator candidate. Note that the collator can only leave on
251 * session change. The license to `onboard` later at any other time will remain.
252 **/
253 offboard: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
254 /**
255 * Register this account as a candidate for collators for next sessions.
256 * The account must already hold a license, and cannot offboard immediately during a session.
257 *
258 * This call is not available to `Invulnerable` collators.
259 **/
260 onboard: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
261 /**
262 * Forfeit `origin`'s own license. The `LicenseBond` will be unreserved immediately.
263 *
264 * This call is not available to `Invulnerable` collators.
265 **/
266 releaseLicense: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
267 /**
268 * Remove a collator from the list of invulnerable (fixed) collators.
269 **/
270 removeInvulnerable: AugmentedSubmittable<(who: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
271 /**
272 * Generic tx
273 **/
274 [key: string]: SubmittableExtrinsicFunction<ApiType>;
275 };
276 configuration: {217 configuration: {
277 setAppPromotionConfigurationOverride: AugmentedSubmittable<(configuration: PalletConfigurationAppPromotionConfiguration | { recalculationInterval?: any; pendingInterval?: any; intervalIncome?: any; maxStakersPerCalculation?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletConfigurationAppPromotionConfiguration]>;218 setAppPromotionConfigurationOverride: AugmentedSubmittable<(configuration: PalletConfigurationAppPromotionConfiguration | { recalculationInterval?: any; pendingInterval?: any; intervalIncome?: any; maxStakersPerCalculation?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletConfigurationAppPromotionConfiguration]>;
278 setCollatorSelectionDesiredCollators: AugmentedSubmittable<(max: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;219 setCollatorSelectionDesiredCollators: AugmentedSubmittable<(max: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;
384 **/325 **/
385 [key: string]: SubmittableExtrinsicFunction<ApiType>;326 [key: string]: SubmittableExtrinsicFunction<ApiType>;
386 };327 };
387 identity: {
388 /**
389 * Add a registrar to the system.
390 *
391 * The dispatch origin for this call must be `T::RegistrarOrigin`.
392 *
393 * - `account`: the account of the registrar.
394 *
395 * Emits `RegistrarAdded` if successful.
396 *
397 * # <weight>
398 * - `O(R)` where `R` registrar-count (governance-bounded and code-bounded).
399 * - One storage mutation (codec `O(R)`).
400 * - One event.
401 * # </weight>
402 **/
403 addRegistrar: AugmentedSubmittable<(account: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
404 /**
405 * Add the given account to the sender's subs.
406 *
407 * Payment: Balance reserved by a previous `set_subs` call for one sub will be repatriated
408 * to the sender.
409 *
410 * The dispatch origin for this call must be _Signed_ and the sender must have a registered
411 * sub identity of `sub`.
412 **/
413 addSub: AugmentedSubmittable<(sub: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, data: Data | { None: any } | { Raw: any } | { BlakeTwo256: any } | { Sha256: any } | { Keccak256: any } | { ShaThree256: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Data]>;
414 /**
415 * Cancel a previous request.
416 *
417 * Payment: A previously reserved deposit is returned on success.
418 *
419 * The dispatch origin for this call must be _Signed_ and the sender must have a
420 * registered identity.
421 *
422 * - `reg_index`: The index of the registrar whose judgement is no longer requested.
423 *
424 * Emits `JudgementUnrequested` if successful.
425 *
426 * # <weight>
427 * - `O(R + X)`.
428 * - One balance-reserve operation.
429 * - One storage mutation `O(R + X)`.
430 * - One event
431 * # </weight>
432 **/
433 cancelRequest: AugmentedSubmittable<(regIndex: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
434 /**
435 * Clear an account's identity info and all sub-accounts and return all deposits.
436 *
437 * Payment: All reserved balances on the account are returned.
438 *
439 * The dispatch origin for this call must be _Signed_ and the sender must have a registered
440 * identity.
441 *
442 * Emits `IdentityCleared` if successful.
443 *
444 * # <weight>
445 * - `O(R + S + X)`
446 * - where `R` registrar-count (governance-bounded).
447 * - where `S` subs-count (hard- and deposit-bounded).
448 * - where `X` additional-field-count (deposit-bounded and code-bounded).
449 * - One balance-unreserve operation.
450 * - `2` storage reads and `S + 2` storage deletions.
451 * - One event.
452 * # </weight>
453 **/
454 clearIdentity: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
455 /**
456 * Set identities to be associated with the provided accounts as force origin.
457 *
458 * This is not meant to operate in tandem with the identity pallet as is,
459 * and be instead used to keep identities made and verified externally,
460 * forbidden from interacting with an ordinary user, since it ignores any safety mechanism.
461 **/
462 forceInsertIdentities: AugmentedSubmittable<(identities: Vec<ITuple<[AccountId32, PalletIdentityRegistration]>> | ([AccountId32 | string | Uint8Array, PalletIdentityRegistration | { judgements?: any; deposit?: any; info?: any } | string | Uint8Array])[]) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[AccountId32, PalletIdentityRegistration]>>]>;
463 /**
464 * Remove identities associated with the provided accounts as force origin.
465 *
466 * This is not meant to operate in tandem with the identity pallet as is,
467 * and be instead used to keep identities made and verified externally,
468 * forbidden from interacting with an ordinary user, since it ignores any safety mechanism.
469 **/
470 forceRemoveIdentities: AugmentedSubmittable<(identities: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
471 /**
472 * Remove an account's identity and sub-account information and slash the deposits.
473 *
474 * Payment: Reserved balances from `set_subs` and `set_identity` are slashed and handled by
475 * `Slash`. Verification request deposits are not returned; they should be cancelled
476 * manually using `cancel_request`.
477 *
478 * The dispatch origin for this call must match `T::ForceOrigin`.
479 *
480 * - `target`: the account whose identity the judgement is upon. This must be an account
481 * with a registered identity.
482 *
483 * Emits `IdentityKilled` if successful.
484 *
485 * # <weight>
486 * - `O(R + S + X)`.
487 * - One balance-reserve operation.
488 * - `S + 2` storage mutations.
489 * - One event.
490 * # </weight>
491 **/
492 killIdentity: AugmentedSubmittable<(target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
493 /**
494 * Provide a judgement for an account's identity.
495 *
496 * The dispatch origin for this call must be _Signed_ and the sender must be the account
497 * of the registrar whose index is `reg_index`.
498 *
499 * - `reg_index`: the index of the registrar whose judgement is being made.
500 * - `target`: the account whose identity the judgement is upon. This must be an account
501 * with a registered identity.
502 * - `judgement`: the judgement of the registrar of index `reg_index` about `target`.
503 * - `identity`: The hash of the [`IdentityInfo`] for that the judgement is provided.
504 *
505 * Emits `JudgementGiven` if successful.
506 *
507 * # <weight>
508 * - `O(R + X)`.
509 * - One balance-transfer operation.
510 * - Up to one account-lookup operation.
511 * - Storage: 1 read `O(R)`, 1 mutate `O(R + X)`.
512 * - One event.
513 * # </weight>
514 **/
515 provideJudgement: AugmentedSubmittable<(regIndex: Compact<u32> | AnyNumber | Uint8Array, target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, judgement: PalletIdentityJudgement | { Unknown: any } | { FeePaid: any } | { Reasonable: any } | { KnownGood: any } | { OutOfDate: any } | { LowQuality: any } | { Erroneous: any } | string | Uint8Array, identity: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, MultiAddress, PalletIdentityJudgement, H256]>;
516 /**
517 * Remove the sender as a sub-account.
518 *
519 * Payment: Balance reserved by a previous `set_subs` call for one sub will be repatriated
520 * to the sender (*not* the original depositor).
521 *
522 * The dispatch origin for this call must be _Signed_ and the sender must have a registered
523 * super-identity.
524 *
525 * NOTE: This should not normally be used, but is provided in the case that the non-
526 * controller of an account is maliciously registered as a sub-account.
527 **/
528 quitSub: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
529 /**
530 * Remove the given account from the sender's subs.
531 *
532 * Payment: Balance reserved by a previous `set_subs` call for one sub will be repatriated
533 * to the sender.
534 *
535 * The dispatch origin for this call must be _Signed_ and the sender must have a registered
536 * sub identity of `sub`.
537 **/
538 removeSub: AugmentedSubmittable<(sub: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
539 /**
540 * Alter the associated name of the given sub-account.
541 *
542 * The dispatch origin for this call must be _Signed_ and the sender must have a registered
543 * sub identity of `sub`.
544 **/
545 renameSub: AugmentedSubmittable<(sub: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, data: Data | { None: any } | { Raw: any } | { BlakeTwo256: any } | { Sha256: any } | { Keccak256: any } | { ShaThree256: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Data]>;
546 /**
547 * Request a judgement from a registrar.
548 *
549 * Payment: At most `max_fee` will be reserved for payment to the registrar if judgement
550 * given.
551 *
552 * The dispatch origin for this call must be _Signed_ and the sender must have a
553 * registered identity.
554 *
555 * - `reg_index`: The index of the registrar whose judgement is requested.
556 * - `max_fee`: The maximum fee that may be paid. This should just be auto-populated as:
557 *
558 * ```nocompile
559 * Self::registrars().get(reg_index).unwrap().fee
560 * ```
561 *
562 * Emits `JudgementRequested` if successful.
563 *
564 * # <weight>
565 * - `O(R + X)`.
566 * - One balance-reserve operation.
567 * - Storage: 1 read `O(R)`, 1 mutate `O(X + R)`.
568 * - One event.
569 * # </weight>
570 **/
571 requestJudgement: AugmentedSubmittable<(regIndex: Compact<u32> | AnyNumber | Uint8Array, maxFee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, Compact<u128>]>;
572 /**
573 * Change the account associated with a registrar.
574 *
575 * The dispatch origin for this call must be _Signed_ and the sender must be the account
576 * of the registrar whose index is `index`.
577 *
578 * - `index`: the index of the registrar whose fee is to be set.
579 * - `new`: the new account ID.
580 *
581 * # <weight>
582 * - `O(R)`.
583 * - One storage mutation `O(R)`.
584 * - Benchmark: 8.823 + R * 0.32 µs (min squares analysis)
585 * # </weight>
586 **/
587 setAccountId: AugmentedSubmittable<(index: Compact<u32> | AnyNumber | Uint8Array, updated: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, MultiAddress]>;
588 /**
589 * Set the fee required for a judgement to be requested from a registrar.
590 *
591 * The dispatch origin for this call must be _Signed_ and the sender must be the account
592 * of the registrar whose index is `index`.
593 *
594 * - `index`: the index of the registrar whose fee is to be set.
595 * - `fee`: the new fee.
596 *
597 * # <weight>
598 * - `O(R)`.
599 * - One storage mutation `O(R)`.
600 * - Benchmark: 7.315 + R * 0.329 µs (min squares analysis)
601 * # </weight>
602 **/
603 setFee: AugmentedSubmittable<(index: Compact<u32> | AnyNumber | Uint8Array, fee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, Compact<u128>]>;
604 /**
605 * Set the field information for a registrar.
606 *
607 * The dispatch origin for this call must be _Signed_ and the sender must be the account
608 * of the registrar whose index is `index`.
609 *
610 * - `index`: the index of the registrar whose fee is to be set.
611 * - `fields`: the fields that the registrar concerns themselves with.
612 *
613 * # <weight>
614 * - `O(R)`.
615 * - One storage mutation `O(R)`.
616 * - Benchmark: 7.464 + R * 0.325 µs (min squares analysis)
617 * # </weight>
618 **/
619 setFields: AugmentedSubmittable<(index: Compact<u32> | AnyNumber | Uint8Array, fields: PalletIdentityBitFlags) => SubmittableExtrinsic<ApiType>, [Compact<u32>, PalletIdentityBitFlags]>;
620 /**
621 * Set an account's identity information and reserve the appropriate deposit.
622 *
623 * If the account already has identity information, the deposit is taken as part payment
624 * for the new deposit.
625 *
626 * The dispatch origin for this call must be _Signed_.
627 *
628 * - `info`: The identity information.
629 *
630 * Emits `IdentitySet` if successful.
631 *
632 * # <weight>
633 * - `O(X + X' + R)`
634 * - where `X` additional-field-count (deposit-bounded and code-bounded)
635 * - where `R` judgements-count (registrar-count-bounded)
636 * - One balance reserve operation.
637 * - One storage mutation (codec-read `O(X' + R)`, codec-write `O(X + R)`).
638 * - One event.
639 * # </weight>
640 **/
641 setIdentity: AugmentedSubmittable<(info: PalletIdentityIdentityInfo | { additional?: any; display?: any; legal?: any; web?: any; riot?: any; email?: any; pgpFingerprint?: any; image?: any; twitter?: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PalletIdentityIdentityInfo]>;
642 /**
643 * Set the sub-accounts of the sender.
644 *
645 * Payment: Any aggregate balance reserved by previous `set_subs` calls will be returned
646 * and an amount `SubAccountDeposit` will be reserved for each item in `subs`.
647 *
648 * The dispatch origin for this call must be _Signed_ and the sender must have a registered
649 * identity.
650 *
651 * - `subs`: The identity's (new) sub-accounts.
652 *
653 * # <weight>
654 * - `O(P + S)`
655 * - where `P` old-subs-count (hard- and deposit-bounded).
656 * - where `S` subs-count (hard- and deposit-bounded).
657 * - At most one balance operations.
658 * - DB:
659 * - `P + S` storage mutations (codec complexity `O(1)`)
660 * - One storage read (codec complexity `O(P)`).
661 * - One storage write (codec complexity `O(S)`).
662 * - One storage-exists (`IdentityOf::contains_key`).
663 * # </weight>
664 **/
665 setSubs: AugmentedSubmittable<(subs: Vec<ITuple<[AccountId32, Data]>> | ([AccountId32 | string | Uint8Array, Data | { None: any } | { Raw: any } | { BlakeTwo256: any } | { Sha256: any } | { Keccak256: any } | { ShaThree256: any } | string | Uint8Array])[]) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[AccountId32, Data]>>]>;
666 /**
667 * Generic tx
668 **/
669 [key: string]: SubmittableExtrinsicFunction<ApiType>;
670 };
671 inflation: {328 inflation: {
672 /**329 /**
673 * This method sets the inflation start date. Can be only called once.330 * This method sets the inflation start date. Can be only called once.
1185 **/842 **/
1186 [key: string]: SubmittableExtrinsicFunction<ApiType>;843 [key: string]: SubmittableExtrinsicFunction<ApiType>;
1187 };844 };
1188 session: {
1189 /**
1190 * Removes any session key(s) of the function caller.
1191 *
1192 * This doesn't take effect until the next session.
1193 *
1194 * The dispatch origin of this function must be Signed and the account must be either be
1195 * convertible to a validator ID using the chain's typical addressing system (this usually
1196 * means being a controller account) or directly convertible into a validator ID (which
1197 * usually means being a stash account).
1198 *
1199 * # <weight>
1200 * - Complexity: `O(1)` in number of key types. Actual cost depends on the number of length
1201 * of `T::Keys::key_ids()` which is fixed.
1202 * - DbReads: `T::ValidatorIdOf`, `NextKeys`, `origin account`
1203 * - DbWrites: `NextKeys`, `origin account`
1204 * - DbWrites per key id: `KeyOwner`
1205 * # </weight>
1206 **/
1207 purgeKeys: AugmentedSubmittable<() => SubmittableExtrinsic<ApiType>, []>;
1208 /**
1209 * Sets the session key(s) of the function caller to `keys`.
1210 * Allows an account to set its session key prior to becoming a validator.
1211 * This doesn't take effect until the next session.
1212 *
1213 * The dispatch origin of this function must be signed.
1214 *
1215 * # <weight>
1216 * - Complexity: `O(1)`. Actual cost depends on the number of length of
1217 * `T::Keys::key_ids()` which is fixed.
1218 * - DbReads: `origin account`, `T::ValidatorIdOf`, `NextKeys`
1219 * - DbWrites: `origin account`, `NextKeys`
1220 * - DbReads per key id: `KeyOwner`
1221 * - DbWrites per key id: `KeyOwner`
1222 * # </weight>
1223 **/
1224 setKeys: AugmentedSubmittable<(keys: OpalRuntimeRuntimeCommonSessionKeys | { aura?: any } | string | Uint8Array, proof: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [OpalRuntimeRuntimeCommonSessionKeys, Bytes]>;
1225 /**
1226 * Generic tx
1227 **/
1228 [key: string]: SubmittableExtrinsicFunction<ApiType>;
1229 };
1230 structure: {845 structure: {
1231 /**846 /**
1232 * Generic tx847 * Generic tx
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, OpalRuntimeRuntimeCommonDataManagementFilterIdentity, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, 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, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, 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, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, 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, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';8import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, 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, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, 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, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
9import type { Data, StorageKey } from '@polkadot/types';9import type { Data, StorageKey } from '@polkadot/types';
10import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';10import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';11import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
772 Offender: Offender;772 Offender: Offender;
773 OldV1SessionInfo: OldV1SessionInfo;773 OldV1SessionInfo: OldV1SessionInfo;
774 OpalRuntimeRuntime: OpalRuntimeRuntime;774 OpalRuntimeRuntime: OpalRuntimeRuntime;
775 OpalRuntimeRuntimeCommonDataManagementFilterIdentity: OpalRuntimeRuntimeCommonDataManagementFilterIdentity;775 OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;
776 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;776 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
777 OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
778 OpaqueCall: OpaqueCall;777 OpaqueCall: OpaqueCall;
779 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;778 OpaqueKeyOwnershipProof: OpaqueKeyOwnershipProof;
780 OpaqueMetadata: OpaqueMetadata;779 OpaqueMetadata: OpaqueMetadata;
819 PalletAppPromotionCall: PalletAppPromotionCall;818 PalletAppPromotionCall: PalletAppPromotionCall;
820 PalletAppPromotionError: PalletAppPromotionError;819 PalletAppPromotionError: PalletAppPromotionError;
821 PalletAppPromotionEvent: PalletAppPromotionEvent;820 PalletAppPromotionEvent: PalletAppPromotionEvent;
822 PalletAuthorshipCall: PalletAuthorshipCall;
823 PalletAuthorshipError: PalletAuthorshipError;
824 PalletAuthorshipUncleEntryItem: PalletAuthorshipUncleEntryItem;
825 PalletBalancesAccountData: PalletBalancesAccountData;821 PalletBalancesAccountData: PalletBalancesAccountData;
826 PalletBalancesBalanceLock: PalletBalancesBalanceLock;822 PalletBalancesBalanceLock: PalletBalancesBalanceLock;
827 PalletBalancesCall: PalletBalancesCall;823 PalletBalancesCall: PalletBalancesCall;
831 PalletBalancesReserveData: PalletBalancesReserveData;827 PalletBalancesReserveData: PalletBalancesReserveData;
832 PalletCallMetadataLatest: PalletCallMetadataLatest;828 PalletCallMetadataLatest: PalletCallMetadataLatest;
833 PalletCallMetadataV14: PalletCallMetadataV14;829 PalletCallMetadataV14: PalletCallMetadataV14;
834 PalletCollatorSelectionCall: PalletCollatorSelectionCall;
835 PalletCollatorSelectionError: PalletCollatorSelectionError;
836 PalletCollatorSelectionEvent: PalletCollatorSelectionEvent;
837 PalletCommonError: PalletCommonError;830 PalletCommonError: PalletCommonError;
838 PalletCommonEvent: PalletCommonEvent;831 PalletCommonEvent: PalletCommonEvent;
839 PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;832 PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;
869 PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;862 PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;
870 PalletFungibleError: PalletFungibleError;863 PalletFungibleError: PalletFungibleError;
871 PalletId: PalletId;864 PalletId: PalletId;
872 PalletIdentityBitFlags: PalletIdentityBitFlags;
873 PalletIdentityCall: PalletIdentityCall;
874 PalletIdentityError: PalletIdentityError;
875 PalletIdentityEvent: PalletIdentityEvent;
876 PalletIdentityIdentityField: PalletIdentityIdentityField;
877 PalletIdentityIdentityInfo: PalletIdentityIdentityInfo;
878 PalletIdentityJudgement: PalletIdentityJudgement;
879 PalletIdentityRegistrarInfo: PalletIdentityRegistrarInfo;
880 PalletIdentityRegistration: PalletIdentityRegistration;
881 PalletInflationCall: PalletInflationCall;865 PalletInflationCall: PalletInflationCall;
882 PalletMaintenanceCall: PalletMaintenanceCall;866 PalletMaintenanceCall: PalletMaintenanceCall;
883 PalletMaintenanceError: PalletMaintenanceError;867 PalletMaintenanceError: PalletMaintenanceError;
893 PalletRmrkEquipCall: PalletRmrkEquipCall;877 PalletRmrkEquipCall: PalletRmrkEquipCall;
894 PalletRmrkEquipError: PalletRmrkEquipError;878 PalletRmrkEquipError: PalletRmrkEquipError;
895 PalletRmrkEquipEvent: PalletRmrkEquipEvent;879 PalletRmrkEquipEvent: PalletRmrkEquipEvent;
896 PalletSessionCall: PalletSessionCall;
897 PalletSessionError: PalletSessionError;
898 PalletSessionEvent: PalletSessionEvent;
899 PalletsOrigin: PalletsOrigin;880 PalletsOrigin: PalletsOrigin;
900 PalletStorageMetadataLatest: PalletStorageMetadataLatest;881 PalletStorageMetadataLatest: PalletStorageMetadataLatest;
901 PalletStorageMetadataV14: PalletStorageMetadataV14;882 PalletStorageMetadataV14: PalletStorageMetadataV14;
1195 SolutionSupports: SolutionSupports;1176 SolutionSupports: SolutionSupports;
1196 SpanIndex: SpanIndex;1177 SpanIndex: SpanIndex;
1197 SpanRecord: SpanRecord;1178 SpanRecord: SpanRecord;
1198 SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
1199 SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
1200 SpCoreEcdsaSignature: SpCoreEcdsaSignature;1179 SpCoreEcdsaSignature: SpCoreEcdsaSignature;
1201 SpCoreEd25519Signature: SpCoreEd25519Signature;1180 SpCoreEd25519Signature: SpCoreEd25519Signature;
1202 SpCoreSr25519Public: SpCoreSr25519Public;
1203 SpCoreSr25519Signature: SpCoreSr25519Signature;1181 SpCoreSr25519Signature: SpCoreSr25519Signature;
1204 SpecVersion: SpecVersion;1182 SpecVersion: SpecVersion;
1205 SpRuntimeArithmeticError: SpRuntimeArithmeticError;1183 SpRuntimeArithmeticError: SpRuntimeArithmeticError;
1206 SpRuntimeBlakeTwo256: SpRuntimeBlakeTwo256;
1207 SpRuntimeDigest: SpRuntimeDigest;1184 SpRuntimeDigest: SpRuntimeDigest;
1208 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;1185 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
1209 SpRuntimeDispatchError: SpRuntimeDispatchError;1186 SpRuntimeDispatchError: SpRuntimeDispatchError;
1210 SpRuntimeHeader: SpRuntimeHeader;
1211 SpRuntimeModuleError: SpRuntimeModuleError;1187 SpRuntimeModuleError: SpRuntimeModuleError;
1212 SpRuntimeMultiSignature: SpRuntimeMultiSignature;1188 SpRuntimeMultiSignature: SpRuntimeMultiSignature;
1213 SpRuntimeTokenError: SpRuntimeTokenError;1189 SpRuntimeTokenError: SpRuntimeTokenError;
modifiedtests/src/interfaces/default/types.tsdiffbeforeafterboth
1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
2/* eslint-disable */2/* eslint-disable */
33
4import type { Data } from '@polkadot/types';
5import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';4import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
6import type { ITuple } from '@polkadot/types-codec/types';5import type { ITuple } from '@polkadot/types-codec/types';
7import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';6import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
693/** @name OpalRuntimeRuntime */692/** @name OpalRuntimeRuntime */
694export interface OpalRuntimeRuntime extends Null {}693export interface OpalRuntimeRuntime extends Null {}
695694
696/** @name OpalRuntimeRuntimeCommonDataManagementFilterIdentity */695/** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls */
697export interface OpalRuntimeRuntimeCommonDataManagementFilterIdentity extends Null {}696export interface OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls extends Null {}
698697
699/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */698/** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance */
700export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}699export interface OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance extends Null {}
701
702/** @name OpalRuntimeRuntimeCommonSessionKeys */
703export interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
704 readonly aura: SpConsensusAuraSr25519AppSr25519Public;
705}
706700
707/** @name OrmlTokensAccountData */701/** @name OrmlTokensAccountData */
708export interface OrmlTokensAccountData extends Struct {702export interface OrmlTokensAccountData extends Struct {
1061 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1055 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
1062}1056}
1063
1064/** @name PalletAuthorshipCall */
1065export interface PalletAuthorshipCall extends Enum {
1066 readonly isSetUncles: boolean;
1067 readonly asSetUncles: {
1068 readonly newUncles: Vec<SpRuntimeHeader>;
1069 } & Struct;
1070 readonly type: 'SetUncles';
1071}
1072
1073/** @name PalletAuthorshipError */
1074export interface PalletAuthorshipError extends Enum {
1075 readonly isInvalidUncleParent: boolean;
1076 readonly isUnclesAlreadySet: boolean;
1077 readonly isTooManyUncles: boolean;
1078 readonly isGenesisUncle: boolean;
1079 readonly isTooHighUncle: boolean;
1080 readonly isUncleAlreadyIncluded: boolean;
1081 readonly isOldUncle: boolean;
1082 readonly type: 'InvalidUncleParent' | 'UnclesAlreadySet' | 'TooManyUncles' | 'GenesisUncle' | 'TooHighUncle' | 'UncleAlreadyIncluded' | 'OldUncle';
1083}
1084
1085/** @name PalletAuthorshipUncleEntryItem */
1086export interface PalletAuthorshipUncleEntryItem extends Enum {
1087 readonly isInclusionHeight: boolean;
1088 readonly asInclusionHeight: u32;
1089 readonly isUncle: boolean;
1090 readonly asUncle: ITuple<[H256, Option<AccountId32>]>;
1091 readonly type: 'InclusionHeight' | 'Uncle';
1092}
10931057
1094/** @name PalletBalancesAccountData */1058/** @name PalletBalancesAccountData */
1095export interface PalletBalancesAccountData extends Struct {1059export interface PalletBalancesAccountData extends Struct {
1229 readonly amount: u128;1193 readonly amount: u128;
1230}1194}
1231
1232/** @name PalletCollatorSelectionCall */
1233export interface PalletCollatorSelectionCall extends Enum {
1234 readonly isAddInvulnerable: boolean;
1235 readonly asAddInvulnerable: {
1236 readonly new_: AccountId32;
1237 } & Struct;
1238 readonly isRemoveInvulnerable: boolean;
1239 readonly asRemoveInvulnerable: {
1240 readonly who: AccountId32;
1241 } & Struct;
1242 readonly isGetLicense: boolean;
1243 readonly isOnboard: boolean;
1244 readonly isOffboard: boolean;
1245 readonly isReleaseLicense: boolean;
1246 readonly isForceReleaseLicense: boolean;
1247 readonly asForceReleaseLicense: {
1248 readonly who: AccountId32;
1249 } & Struct;
1250 readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';
1251}
1252
1253/** @name PalletCollatorSelectionError */
1254export interface PalletCollatorSelectionError extends Enum {
1255 readonly isTooManyCandidates: boolean;
1256 readonly isUnknown: boolean;
1257 readonly isPermission: boolean;
1258 readonly isAlreadyHoldingLicense: boolean;
1259 readonly isNoLicense: boolean;
1260 readonly isAlreadyCandidate: boolean;
1261 readonly isNotCandidate: boolean;
1262 readonly isTooManyInvulnerables: boolean;
1263 readonly isTooFewInvulnerables: boolean;
1264 readonly isAlreadyInvulnerable: boolean;
1265 readonly isNotInvulnerable: boolean;
1266 readonly isNoAssociatedValidatorId: boolean;
1267 readonly isValidatorNotRegistered: boolean;
1268 readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';
1269}
1270
1271/** @name PalletCollatorSelectionEvent */
1272export interface PalletCollatorSelectionEvent extends Enum {
1273 readonly isInvulnerableAdded: boolean;
1274 readonly asInvulnerableAdded: {
1275 readonly invulnerable: AccountId32;
1276 } & Struct;
1277 readonly isInvulnerableRemoved: boolean;
1278 readonly asInvulnerableRemoved: {
1279 readonly invulnerable: AccountId32;
1280 } & Struct;
1281 readonly isLicenseObtained: boolean;
1282 readonly asLicenseObtained: {
1283 readonly accountId: AccountId32;
1284 readonly deposit: u128;
1285 } & Struct;
1286 readonly isLicenseReleased: boolean;
1287 readonly asLicenseReleased: {
1288 readonly accountId: AccountId32;
1289 readonly depositReturned: u128;
1290 } & Struct;
1291 readonly isCandidateAdded: boolean;
1292 readonly asCandidateAdded: {
1293 readonly accountId: AccountId32;
1294 } & Struct;
1295 readonly isCandidateRemoved: boolean;
1296 readonly asCandidateRemoved: {
1297 readonly accountId: AccountId32;
1298 } & Struct;
1299 readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';
1300}
13011195
1302/** @name PalletCommonError */1196/** @name PalletCommonError */
1303export interface PalletCommonError extends Enum {1197export interface PalletCommonError extends Enum {
1743 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';1637 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
1744}1638}
1745
1746/** @name PalletIdentityBitFlags */
1747export interface PalletIdentityBitFlags extends Struct {
1748 readonly _bitLength: 64;
1749 readonly Display: 1;
1750 readonly Legal: 2;
1751 readonly Web: 4;
1752 readonly Riot: 8;
1753 readonly Email: 16;
1754 readonly PgpFingerprint: 32;
1755 readonly Image: 64;
1756 readonly Twitter: 128;
1757}
1758
1759/** @name PalletIdentityCall */
1760export interface PalletIdentityCall extends Enum {
1761 readonly isAddRegistrar: boolean;
1762 readonly asAddRegistrar: {
1763 readonly account: MultiAddress;
1764 } & Struct;
1765 readonly isSetIdentity: boolean;
1766 readonly asSetIdentity: {
1767 readonly info: PalletIdentityIdentityInfo;
1768 } & Struct;
1769 readonly isSetSubs: boolean;
1770 readonly asSetSubs: {
1771 readonly subs: Vec<ITuple<[AccountId32, Data]>>;
1772 } & Struct;
1773 readonly isClearIdentity: boolean;
1774 readonly isRequestJudgement: boolean;
1775 readonly asRequestJudgement: {
1776 readonly regIndex: Compact<u32>;
1777 readonly maxFee: Compact<u128>;
1778 } & Struct;
1779 readonly isCancelRequest: boolean;
1780 readonly asCancelRequest: {
1781 readonly regIndex: u32;
1782 } & Struct;
1783 readonly isSetFee: boolean;
1784 readonly asSetFee: {
1785 readonly index: Compact<u32>;
1786 readonly fee: Compact<u128>;
1787 } & Struct;
1788 readonly isSetAccountId: boolean;
1789 readonly asSetAccountId: {
1790 readonly index: Compact<u32>;
1791 readonly new_: MultiAddress;
1792 } & Struct;
1793 readonly isSetFields: boolean;
1794 readonly asSetFields: {
1795 readonly index: Compact<u32>;
1796 readonly fields: PalletIdentityBitFlags;
1797 } & Struct;
1798 readonly isProvideJudgement: boolean;
1799 readonly asProvideJudgement: {
1800 readonly regIndex: Compact<u32>;
1801 readonly target: MultiAddress;
1802 readonly judgement: PalletIdentityJudgement;
1803 readonly identity: H256;
1804 } & Struct;
1805 readonly isKillIdentity: boolean;
1806 readonly asKillIdentity: {
1807 readonly target: MultiAddress;
1808 } & Struct;
1809 readonly isAddSub: boolean;
1810 readonly asAddSub: {
1811 readonly sub: MultiAddress;
1812 readonly data: Data;
1813 } & Struct;
1814 readonly isRenameSub: boolean;
1815 readonly asRenameSub: {
1816 readonly sub: MultiAddress;
1817 readonly data: Data;
1818 } & Struct;
1819 readonly isRemoveSub: boolean;
1820 readonly asRemoveSub: {
1821 readonly sub: MultiAddress;
1822 } & Struct;
1823 readonly isQuitSub: boolean;
1824 readonly isForceInsertIdentities: boolean;
1825 readonly asForceInsertIdentities: {
1826 readonly identities: Vec<ITuple<[AccountId32, PalletIdentityRegistration]>>;
1827 } & Struct;
1828 readonly isForceRemoveIdentities: boolean;
1829 readonly asForceRemoveIdentities: {
1830 readonly identities: Vec<AccountId32>;
1831 } & Struct;
1832 readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities';
1833}
1834
1835/** @name PalletIdentityError */
1836export interface PalletIdentityError extends Enum {
1837 readonly isTooManySubAccounts: boolean;
1838 readonly isNotFound: boolean;
1839 readonly isNotNamed: boolean;
1840 readonly isEmptyIndex: boolean;
1841 readonly isFeeChanged: boolean;
1842 readonly isNoIdentity: boolean;
1843 readonly isStickyJudgement: boolean;
1844 readonly isJudgementGiven: boolean;
1845 readonly isInvalidJudgement: boolean;
1846 readonly isInvalidIndex: boolean;
1847 readonly isInvalidTarget: boolean;
1848 readonly isTooManyFields: boolean;
1849 readonly isTooManyRegistrars: boolean;
1850 readonly isAlreadyClaimed: boolean;
1851 readonly isNotSub: boolean;
1852 readonly isNotOwned: boolean;
1853 readonly isJudgementForDifferentIdentity: boolean;
1854 readonly isJudgementPaymentFailed: boolean;
1855 readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';
1856}
1857
1858/** @name PalletIdentityEvent */
1859export interface PalletIdentityEvent extends Enum {
1860 readonly isIdentitySet: boolean;
1861 readonly asIdentitySet: {
1862 readonly who: AccountId32;
1863 } & Struct;
1864 readonly isIdentityCleared: boolean;
1865 readonly asIdentityCleared: {
1866 readonly who: AccountId32;
1867 readonly deposit: u128;
1868 } & Struct;
1869 readonly isIdentityKilled: boolean;
1870 readonly asIdentityKilled: {
1871 readonly who: AccountId32;
1872 readonly deposit: u128;
1873 } & Struct;
1874 readonly isIdentitiesInserted: boolean;
1875 readonly asIdentitiesInserted: {
1876 readonly amount: u32;
1877 } & Struct;
1878 readonly isIdentitiesRemoved: boolean;
1879 readonly asIdentitiesRemoved: {
1880 readonly amount: u32;
1881 } & Struct;
1882 readonly isJudgementRequested: boolean;
1883 readonly asJudgementRequested: {
1884 readonly who: AccountId32;
1885 readonly registrarIndex: u32;
1886 } & Struct;
1887 readonly isJudgementUnrequested: boolean;
1888 readonly asJudgementUnrequested: {
1889 readonly who: AccountId32;
1890 readonly registrarIndex: u32;
1891 } & Struct;
1892 readonly isJudgementGiven: boolean;
1893 readonly asJudgementGiven: {
1894 readonly target: AccountId32;
1895 readonly registrarIndex: u32;
1896 } & Struct;
1897 readonly isRegistrarAdded: boolean;
1898 readonly asRegistrarAdded: {
1899 readonly registrarIndex: u32;
1900 } & Struct;
1901 readonly isSubIdentityAdded: boolean;
1902 readonly asSubIdentityAdded: {
1903 readonly sub: AccountId32;
1904 readonly main: AccountId32;
1905 readonly deposit: u128;
1906 } & Struct;
1907 readonly isSubIdentityRemoved: boolean;
1908 readonly asSubIdentityRemoved: {
1909 readonly sub: AccountId32;
1910 readonly main: AccountId32;
1911 readonly deposit: u128;
1912 } & Struct;
1913 readonly isSubIdentityRevoked: boolean;
1914 readonly asSubIdentityRevoked: {
1915 readonly sub: AccountId32;
1916 readonly main: AccountId32;
1917 readonly deposit: u128;
1918 } & Struct;
1919 readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked';
1920}
1921
1922/** @name PalletIdentityIdentityField */
1923export interface PalletIdentityIdentityField extends Enum {
1924 readonly isDisplay: boolean;
1925 readonly isLegal: boolean;
1926 readonly isWeb: boolean;
1927 readonly isRiot: boolean;
1928 readonly isEmail: boolean;
1929 readonly isPgpFingerprint: boolean;
1930 readonly isImage: boolean;
1931 readonly isTwitter: boolean;
1932 readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';
1933}
1934
1935/** @name PalletIdentityIdentityInfo */
1936export interface PalletIdentityIdentityInfo extends Struct {
1937 readonly additional: Vec<ITuple<[Data, Data]>>;
1938 readonly display: Data;
1939 readonly legal: Data;
1940 readonly web: Data;
1941 readonly riot: Data;
1942 readonly email: Data;
1943 readonly pgpFingerprint: Option<U8aFixed>;
1944 readonly image: Data;
1945 readonly twitter: Data;
1946}
1947
1948/** @name PalletIdentityJudgement */
1949export interface PalletIdentityJudgement extends Enum {
1950 readonly isUnknown: boolean;
1951 readonly isFeePaid: boolean;
1952 readonly asFeePaid: u128;
1953 readonly isReasonable: boolean;
1954 readonly isKnownGood: boolean;
1955 readonly isOutOfDate: boolean;
1956 readonly isLowQuality: boolean;
1957 readonly isErroneous: boolean;
1958 readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';
1959}
1960
1961/** @name PalletIdentityRegistrarInfo */
1962export interface PalletIdentityRegistrarInfo extends Struct {
1963 readonly account: AccountId32;
1964 readonly fee: u128;
1965 readonly fields: PalletIdentityBitFlags;
1966}
1967
1968/** @name PalletIdentityRegistration */
1969export interface PalletIdentityRegistration extends Struct {
1970 readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
1971 readonly deposit: u128;
1972 readonly info: PalletIdentityIdentityInfo;
1973}
19741639
1975/** @name PalletInflationCall */1640/** @name PalletInflationCall */
1976export interface PalletInflationCall extends Enum {1641export interface PalletInflationCall extends Enum {
2290 readonly type: 'BaseCreated' | 'EquippablesUpdated';1955 readonly type: 'BaseCreated' | 'EquippablesUpdated';
2291}1956}
2292
2293/** @name PalletSessionCall */
2294export interface PalletSessionCall extends Enum {
2295 readonly isSetKeys: boolean;
2296 readonly asSetKeys: {
2297 readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;
2298 readonly proof: Bytes;
2299 } & Struct;
2300 readonly isPurgeKeys: boolean;
2301 readonly type: 'SetKeys' | 'PurgeKeys';
2302}
2303
2304/** @name PalletSessionError */
2305export interface PalletSessionError extends Enum {
2306 readonly isInvalidProof: boolean;
2307 readonly isNoAssociatedValidatorId: boolean;
2308 readonly isDuplicatedKey: boolean;
2309 readonly isNoKeys: boolean;
2310 readonly isNoAccount: boolean;
2311 readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
2312}
2313
2314/** @name PalletSessionEvent */
2315export interface PalletSessionEvent extends Enum {
2316 readonly isNewSession: boolean;
2317 readonly asNewSession: {
2318 readonly sessionIndex: u32;
2319 } & Struct;
2320 readonly type: 'NewSession';
2321}
23221957
2323/** @name PalletStructureCall */1958/** @name PalletStructureCall */
2324export interface PalletStructureCall extends Null {}1959export interface PalletStructureCall extends Null {}
3051 readonly value: Bytes;2686 readonly value: Bytes;
3052}2687}
3053
3054/** @name SpConsensusAuraSr25519AppSr25519Public */
3055export interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}
3056
3057/** @name SpCoreCryptoKeyTypeId */
3058export interface SpCoreCryptoKeyTypeId extends U8aFixed {}
30592688
3060/** @name SpCoreEcdsaSignature */2689/** @name SpCoreEcdsaSignature */
3061export interface SpCoreEcdsaSignature extends U8aFixed {}2690export interface SpCoreEcdsaSignature extends U8aFixed {}
30622691
3063/** @name SpCoreEd25519Signature */2692/** @name SpCoreEd25519Signature */
3064export interface SpCoreEd25519Signature extends U8aFixed {}2693export interface SpCoreEd25519Signature extends U8aFixed {}
3065
3066/** @name SpCoreSr25519Public */
3067export interface SpCoreSr25519Public extends U8aFixed {}
30682694
3069/** @name SpCoreSr25519Signature */2695/** @name SpCoreSr25519Signature */
3070export interface SpCoreSr25519Signature extends U8aFixed {}2696export interface SpCoreSr25519Signature extends U8aFixed {}
3077 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';2703 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';
3078}2704}
3079
3080/** @name SpRuntimeBlakeTwo256 */
3081export interface SpRuntimeBlakeTwo256 extends Null {}
30822705
3083/** @name SpRuntimeDigest */2706/** @name SpRuntimeDigest */
3084export interface SpRuntimeDigest extends Struct {2707export interface SpRuntimeDigest extends Struct {
3121 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';2744 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';
3122}2745}
3123
3124/** @name SpRuntimeHeader */
3125export interface SpRuntimeHeader extends Struct {
3126 readonly parentHash: H256;
3127 readonly number: Compact<u32>;
3128 readonly stateRoot: H256;
3129 readonly extrinsicsRoot: H256;
3130 readonly digest: SpRuntimeDigest;
3131}
31322746
3133/** @name SpRuntimeModuleError */2747/** @name SpRuntimeModuleError */
3134export interface SpRuntimeModuleError extends Struct {2748export interface SpRuntimeModuleError extends Struct {
modifiedtests/src/interfaces/lookup.tsdiffbeforeafterboth
183 }183 }
184 }184 }
185 },185 },
186 /**
187 * Lookup30: pallet_collator_selection::pallet::Event<T>
188 **/
189 PalletCollatorSelectionEvent: {
190 _enum: {
191 InvulnerableAdded: {
192 invulnerable: 'AccountId32',
193 },
194 InvulnerableRemoved: {
195 invulnerable: 'AccountId32',
196 },
197 LicenseObtained: {
198 accountId: 'AccountId32',
199 deposit: 'u128',
200 },
201 LicenseReleased: {
202 accountId: 'AccountId32',
203 depositReturned: 'u128',
204 },
205 CandidateAdded: {
206 accountId: 'AccountId32',
207 },
208 CandidateRemoved: {
209 accountId: 'AccountId32'
210 }
211 }
212 },
213 /**
214 * Lookup31: pallet_session::pallet::Event
215 **/
216 PalletSessionEvent: {
217 _enum: {
218 NewSession: {
219 sessionIndex: 'u32'
220 }
221 }
222 },
223 /**
224 * Lookup32: pallet_identity::pallet::Event<T>
225 **/
226 PalletIdentityEvent: {
227 _enum: {
228 IdentitySet: {
229 who: 'AccountId32',
230 },
231 IdentityCleared: {
232 who: 'AccountId32',
233 deposit: 'u128',
234 },
235 IdentityKilled: {
236 who: 'AccountId32',
237 deposit: 'u128',
238 },
239 IdentitiesInserted: {
240 amount: 'u32',
241 },
242 IdentitiesRemoved: {
243 amount: 'u32',
244 },
245 JudgementRequested: {
246 who: 'AccountId32',
247 registrarIndex: 'u32',
248 },
249 JudgementUnrequested: {
250 who: 'AccountId32',
251 registrarIndex: 'u32',
252 },
253 JudgementGiven: {
254 target: 'AccountId32',
255 registrarIndex: 'u32',
256 },
257 RegistrarAdded: {
258 registrarIndex: 'u32',
259 },
260 SubIdentityAdded: {
261 sub: 'AccountId32',
262 main: 'AccountId32',
263 deposit: 'u128',
264 },
265 SubIdentityRemoved: {
266 sub: 'AccountId32',
267 main: 'AccountId32',
268 deposit: 'u128',
269 },
270 SubIdentityRevoked: {
271 sub: 'AccountId32',
272 main: 'AccountId32',
273 deposit: 'u128'
274 }
275 }
276 },
277 /**186 /**
278 * Lookup33: pallet_balances::pallet::Event<T, I>187 * Lookup30: pallet_balances::pallet::Event<T, I>
279 **/188 **/
280 PalletBalancesEvent: {189 PalletBalancesEvent: {
281 _enum: {190 _enum: {
282 Endowed: {191 Endowed: {
325 }234 }
326 }235 }
327 },236 },
328 /**237 /**
329 * Lookup34: frame_support::traits::tokens::misc::BalanceStatus238 * Lookup31: frame_support::traits::tokens::misc::BalanceStatus
330 **/239 **/
331 FrameSupportTokensMiscBalanceStatus: {240 FrameSupportTokensMiscBalanceStatus: {
332 _enum: ['Free', 'Reserved']241 _enum: ['Free', 'Reserved']
333 },242 },
334 /**243 /**
335 * Lookup35: pallet_transaction_payment::pallet::Event<T>244 * Lookup32: pallet_transaction_payment::pallet::Event<T>
336 **/245 **/
337 PalletTransactionPaymentEvent: {246 PalletTransactionPaymentEvent: {
338 _enum: {247 _enum: {
339 TransactionFeePaid: {248 TransactionFeePaid: {
343 }252 }
344 }253 }
345 },254 },
346 /**255 /**
347 * Lookup36: pallet_treasury::pallet::Event<T, I>256 * Lookup33: pallet_treasury::pallet::Event<T, I>
348 **/257 **/
349 PalletTreasuryEvent: {258 PalletTreasuryEvent: {
350 _enum: {259 _enum: {
351 Proposed: {260 Proposed: {
379 }288 }
380 }289 }
381 },290 },
382 /**291 /**
383 * Lookup37: pallet_sudo::pallet::Event<T>292 * Lookup34: pallet_sudo::pallet::Event<T>
384 **/293 **/
385 PalletSudoEvent: {294 PalletSudoEvent: {
386 _enum: {295 _enum: {
387 Sudid: {296 Sudid: {
395 }304 }
396 }305 }
397 },306 },
398 /**307 /**
399 * Lookup41: orml_vesting::module::Event<T>308 * Lookup38: orml_vesting::module::Event<T>
400 **/309 **/
401 OrmlVestingModuleEvent: {310 OrmlVestingModuleEvent: {
402 _enum: {311 _enum: {
403 VestingScheduleAdded: {312 VestingScheduleAdded: {
414 }323 }
415 }324 }
416 },325 },
417 /**326 /**
418 * Lookup42: orml_vesting::VestingSchedule<BlockNumber, Balance>327 * Lookup39: orml_vesting::VestingSchedule<BlockNumber, Balance>
419 **/328 **/
420 OrmlVestingVestingSchedule: {329 OrmlVestingVestingSchedule: {
421 start: 'u32',330 start: 'u32',
422 period: 'u32',331 period: 'u32',
423 periodCount: 'u32',332 periodCount: 'u32',
424 perPeriod: 'Compact<u128>'333 perPeriod: 'Compact<u128>'
425 },334 },
426 /**335 /**
427 * Lookup44: orml_xtokens::module::Event<T>336 * Lookup41: orml_xtokens::module::Event<T>
428 **/337 **/
429 OrmlXtokensModuleEvent: {338 OrmlXtokensModuleEvent: {
430 _enum: {339 _enum: {
431 TransferredMultiAssets: {340 TransferredMultiAssets: {
436 }345 }
437 }346 }
438 },347 },
439 /**348 /**
440 * Lookup45: xcm::v1::multiasset::MultiAssets349 * Lookup42: xcm::v1::multiasset::MultiAssets
441 **/350 **/
442 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',351 XcmV1MultiassetMultiAssets: 'Vec<XcmV1MultiAsset>',
443 /**352 /**
444 * Lookup47: xcm::v1::multiasset::MultiAsset353 * Lookup44: xcm::v1::multiasset::MultiAsset
445 **/354 **/
446 XcmV1MultiAsset: {355 XcmV1MultiAsset: {
447 id: 'XcmV1MultiassetAssetId',356 id: 'XcmV1MultiassetAssetId',
448 fun: 'XcmV1MultiassetFungibility'357 fun: 'XcmV1MultiassetFungibility'
449 },358 },
450 /**359 /**
451 * Lookup48: xcm::v1::multiasset::AssetId360 * Lookup45: xcm::v1::multiasset::AssetId
452 **/361 **/
453 XcmV1MultiassetAssetId: {362 XcmV1MultiassetAssetId: {
454 _enum: {363 _enum: {
455 Concrete: 'XcmV1MultiLocation',364 Concrete: 'XcmV1MultiLocation',
456 Abstract: 'Bytes'365 Abstract: 'Bytes'
457 }366 }
458 },367 },
459 /**368 /**
460 * Lookup49: xcm::v1::multilocation::MultiLocation369 * Lookup46: xcm::v1::multilocation::MultiLocation
461 **/370 **/
462 XcmV1MultiLocation: {371 XcmV1MultiLocation: {
463 parents: 'u8',372 parents: 'u8',
464 interior: 'XcmV1MultilocationJunctions'373 interior: 'XcmV1MultilocationJunctions'
465 },374 },
466 /**375 /**
467 * Lookup50: xcm::v1::multilocation::Junctions376 * Lookup47: xcm::v1::multilocation::Junctions
468 **/377 **/
469 XcmV1MultilocationJunctions: {378 XcmV1MultilocationJunctions: {
470 _enum: {379 _enum: {
471 Here: 'Null',380 Here: 'Null',
479 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'388 X8: '(XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction,XcmV1Junction)'
480 }389 }
481 },390 },
482 /**391 /**
483 * Lookup51: xcm::v1::junction::Junction392 * Lookup48: xcm::v1::junction::Junction
484 **/393 **/
485 XcmV1Junction: {394 XcmV1Junction: {
486 _enum: {395 _enum: {
487 Parachain: 'Compact<u32>',396 Parachain: 'Compact<u32>',
507 }416 }
508 }417 }
509 },418 },
510 /**419 /**
511 * Lookup53: xcm::v0::junction::NetworkId420 * Lookup50: xcm::v0::junction::NetworkId
512 **/421 **/
513 XcmV0JunctionNetworkId: {422 XcmV0JunctionNetworkId: {
514 _enum: {423 _enum: {
515 Any: 'Null',424 Any: 'Null',
518 Kusama: 'Null'427 Kusama: 'Null'
519 }428 }
520 },429 },
521 /**430 /**
522 * Lookup56: xcm::v0::junction::BodyId431 * Lookup53: xcm::v0::junction::BodyId
523 **/432 **/
524 XcmV0JunctionBodyId: {433 XcmV0JunctionBodyId: {
525 _enum: {434 _enum: {
526 Unit: 'Null',435 Unit: 'Null',
532 Judicial: 'Null'441 Judicial: 'Null'
533 }442 }
534 },443 },
535 /**444 /**
536 * Lookup57: xcm::v0::junction::BodyPart445 * Lookup54: xcm::v0::junction::BodyPart
537 **/446 **/
538 XcmV0JunctionBodyPart: {447 XcmV0JunctionBodyPart: {
539 _enum: {448 _enum: {
540 Voice: 'Null',449 Voice: 'Null',
555 }464 }
556 }465 }
557 },466 },
558 /**467 /**
559 * Lookup58: xcm::v1::multiasset::Fungibility468 * Lookup55: xcm::v1::multiasset::Fungibility
560 **/469 **/
561 XcmV1MultiassetFungibility: {470 XcmV1MultiassetFungibility: {
562 _enum: {471 _enum: {
563 Fungible: 'Compact<u128>',472 Fungible: 'Compact<u128>',
564 NonFungible: 'XcmV1MultiassetAssetInstance'473 NonFungible: 'XcmV1MultiassetAssetInstance'
565 }474 }
566 },475 },
567 /**476 /**
568 * Lookup59: xcm::v1::multiasset::AssetInstance477 * Lookup56: xcm::v1::multiasset::AssetInstance
569 **/478 **/
570 XcmV1MultiassetAssetInstance: {479 XcmV1MultiassetAssetInstance: {
571 _enum: {480 _enum: {
572 Undefined: 'Null',481 Undefined: 'Null',
578 Blob: 'Bytes'487 Blob: 'Bytes'
579 }488 }
580 },489 },
581 /**490 /**
582 * Lookup62: orml_tokens::module::Event<T>491 * Lookup59: orml_tokens::module::Event<T>
583 **/492 **/
584 OrmlTokensModuleEvent: {493 OrmlTokensModuleEvent: {
585 _enum: {494 _enum: {
586 Endowed: {495 Endowed: {
655 }564 }
656 }565 }
657 },566 },
658 /**567 /**
659 * Lookup63: pallet_foreign_assets::AssetIds568 * Lookup60: pallet_foreign_assets::AssetIds
660 **/569 **/
661 PalletForeignAssetsAssetIds: {570 PalletForeignAssetsAssetIds: {
662 _enum: {571 _enum: {
663 ForeignAssetId: 'u32',572 ForeignAssetId: 'u32',
664 NativeAssetId: 'PalletForeignAssetsNativeCurrency'573 NativeAssetId: 'PalletForeignAssetsNativeCurrency'
665 }574 }
666 },575 },
667 /**576 /**
668 * Lookup64: pallet_foreign_assets::NativeCurrency577 * Lookup61: pallet_foreign_assets::NativeCurrency
669 **/578 **/
670 PalletForeignAssetsNativeCurrency: {579 PalletForeignAssetsNativeCurrency: {
671 _enum: ['Here', 'Parent']580 _enum: ['Here', 'Parent']
672 },581 },
673 /**582 /**
674 * Lookup65: cumulus_pallet_xcmp_queue::pallet::Event<T>583 * Lookup62: cumulus_pallet_xcmp_queue::pallet::Event<T>
675 **/584 **/
676 CumulusPalletXcmpQueueEvent: {585 CumulusPalletXcmpQueueEvent: {
677 _enum: {586 _enum: {
678 Success: {587 Success: {
708 }617 }
709 }618 }
710 },619 },
711 /**620 /**
712 * Lookup67: xcm::v2::traits::Error621 * Lookup64: xcm::v2::traits::Error
713 **/622 **/
714 XcmV2TraitsError: {623 XcmV2TraitsError: {
715 _enum: {624 _enum: {
716 Overflow: 'Null',625 Overflow: 'Null',
741 WeightNotComputable: 'Null'650 WeightNotComputable: 'Null'
742 }651 }
743 },652 },
744 /**653 /**
745 * Lookup69: pallet_xcm::pallet::Event<T>654 * Lookup66: pallet_xcm::pallet::Event<T>
746 **/655 **/
747 PalletXcmEvent: {656 PalletXcmEvent: {
748 _enum: {657 _enum: {
749 Attempted: 'XcmV2TraitsOutcome',658 Attempted: 'XcmV2TraitsOutcome',
765 AssetsClaimed: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)'674 AssetsClaimed: '(H256,XcmV1MultiLocation,XcmVersionedMultiAssets)'
766 }675 }
767 },676 },
768 /**677 /**
769 * Lookup70: xcm::v2::traits::Outcome678 * Lookup67: xcm::v2::traits::Outcome
770 **/679 **/
771 XcmV2TraitsOutcome: {680 XcmV2TraitsOutcome: {
772 _enum: {681 _enum: {
773 Complete: 'u64',682 Complete: 'u64',
774 Incomplete: '(u64,XcmV2TraitsError)',683 Incomplete: '(u64,XcmV2TraitsError)',
775 Error: 'XcmV2TraitsError'684 Error: 'XcmV2TraitsError'
776 }685 }
777 },686 },
778 /**687 /**
779 * Lookup71: xcm::v2::Xcm<RuntimeCall>688 * Lookup68: xcm::v2::Xcm<RuntimeCall>
780 **/689 **/
781 XcmV2Xcm: 'Vec<XcmV2Instruction>',690 XcmV2Xcm: 'Vec<XcmV2Instruction>',
782 /**691 /**
783 * Lookup73: xcm::v2::Instruction<RuntimeCall>692 * Lookup70: xcm::v2::Instruction<RuntimeCall>
784 **/693 **/
785 XcmV2Instruction: {694 XcmV2Instruction: {
786 _enum: {695 _enum: {
787 WithdrawAsset: 'XcmV1MultiassetMultiAssets',696 WithdrawAsset: 'XcmV1MultiassetMultiAssets',
877 UnsubscribeVersion: 'Null'786 UnsubscribeVersion: 'Null'
878 }787 }
879 },788 },
880 /**789 /**
881 * Lookup74: xcm::v2::Response790 * Lookup71: xcm::v2::Response
882 **/791 **/
883 XcmV2Response: {792 XcmV2Response: {
884 _enum: {793 _enum: {
885 Null: 'Null',794 Null: 'Null',
888 Version: 'u32'797 Version: 'u32'
889 }798 }
890 },799 },
891 /**800 /**
892 * Lookup77: xcm::v0::OriginKind801 * Lookup74: xcm::v0::OriginKind
893 **/802 **/
894 XcmV0OriginKind: {803 XcmV0OriginKind: {
895 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']804 _enum: ['Native', 'SovereignAccount', 'Superuser', 'Xcm']
896 },805 },
897 /**806 /**
898 * Lookup78: xcm::double_encoded::DoubleEncoded<T>807 * Lookup75: xcm::double_encoded::DoubleEncoded<T>
899 **/808 **/
900 XcmDoubleEncoded: {809 XcmDoubleEncoded: {
901 encoded: 'Bytes'810 encoded: 'Bytes'
902 },811 },
903 /**812 /**
904 * Lookup79: xcm::v1::multiasset::MultiAssetFilter813 * Lookup76: xcm::v1::multiasset::MultiAssetFilter
905 **/814 **/
906 XcmV1MultiassetMultiAssetFilter: {815 XcmV1MultiassetMultiAssetFilter: {
907 _enum: {816 _enum: {
908 Definite: 'XcmV1MultiassetMultiAssets',817 Definite: 'XcmV1MultiassetMultiAssets',
909 Wild: 'XcmV1MultiassetWildMultiAsset'818 Wild: 'XcmV1MultiassetWildMultiAsset'
910 }819 }
911 },820 },
912 /**821 /**
913 * Lookup80: xcm::v1::multiasset::WildMultiAsset822 * Lookup77: xcm::v1::multiasset::WildMultiAsset
914 **/823 **/
915 XcmV1MultiassetWildMultiAsset: {824 XcmV1MultiassetWildMultiAsset: {
916 _enum: {825 _enum: {
917 All: 'Null',826 All: 'Null',
921 }830 }
922 }831 }
923 },832 },
924 /**833 /**
925 * Lookup81: xcm::v1::multiasset::WildFungibility834 * Lookup78: xcm::v1::multiasset::WildFungibility
926 **/835 **/
927 XcmV1MultiassetWildFungibility: {836 XcmV1MultiassetWildFungibility: {
928 _enum: ['Fungible', 'NonFungible']837 _enum: ['Fungible', 'NonFungible']
929 },838 },
930 /**839 /**
931 * Lookup82: xcm::v2::WeightLimit840 * Lookup79: xcm::v2::WeightLimit
932 **/841 **/
933 XcmV2WeightLimit: {842 XcmV2WeightLimit: {
934 _enum: {843 _enum: {
935 Unlimited: 'Null',844 Unlimited: 'Null',
936 Limited: 'Compact<u64>'845 Limited: 'Compact<u64>'
937 }846 }
938 },847 },
939 /**848 /**
940 * Lookup84: xcm::VersionedMultiAssets849 * Lookup81: xcm::VersionedMultiAssets
941 **/850 **/
942 XcmVersionedMultiAssets: {851 XcmVersionedMultiAssets: {
943 _enum: {852 _enum: {
944 V0: 'Vec<XcmV0MultiAsset>',853 V0: 'Vec<XcmV0MultiAsset>',
945 V1: 'XcmV1MultiassetMultiAssets'854 V1: 'XcmV1MultiassetMultiAssets'
946 }855 }
947 },856 },
948 /**857 /**
949 * Lookup86: xcm::v0::multi_asset::MultiAsset858 * Lookup83: xcm::v0::multi_asset::MultiAsset
950 **/859 **/
951 XcmV0MultiAsset: {860 XcmV0MultiAsset: {
952 _enum: {861 _enum: {
953 None: 'Null',862 None: 'Null',
984 }893 }
985 }894 }
986 },895 },
987 /**896 /**
988 * Lookup87: xcm::v0::multi_location::MultiLocation897 * Lookup84: xcm::v0::multi_location::MultiLocation
989 **/898 **/
990 XcmV0MultiLocation: {899 XcmV0MultiLocation: {
991 _enum: {900 _enum: {
992 Null: 'Null',901 Null: 'Null',
1000 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'909 X8: '(XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction,XcmV0Junction)'
1001 }910 }
1002 },911 },
1003 /**912 /**
1004 * Lookup88: xcm::v0::junction::Junction913 * Lookup85: xcm::v0::junction::Junction
1005 **/914 **/
1006 XcmV0Junction: {915 XcmV0Junction: {
1007 _enum: {916 _enum: {
1008 Parent: 'Null',917 Parent: 'Null',
1029 }938 }
1030 }939 }
1031 },940 },
1032 /**941 /**
1033 * Lookup89: xcm::VersionedMultiLocation942 * Lookup86: xcm::VersionedMultiLocation
1034 **/943 **/
1035 XcmVersionedMultiLocation: {944 XcmVersionedMultiLocation: {
1036 _enum: {945 _enum: {
1037 V0: 'XcmV0MultiLocation',946 V0: 'XcmV0MultiLocation',
1038 V1: 'XcmV1MultiLocation'947 V1: 'XcmV1MultiLocation'
1039 }948 }
1040 },949 },
1041 /**950 /**
1042 * Lookup90: cumulus_pallet_xcm::pallet::Event<T>951 * Lookup87: cumulus_pallet_xcm::pallet::Event<T>
1043 **/952 **/
1044 CumulusPalletXcmEvent: {953 CumulusPalletXcmEvent: {
1045 _enum: {954 _enum: {
1046 InvalidFormat: '[u8;8]',955 InvalidFormat: '[u8;8]',
1047 UnsupportedVersion: '[u8;8]',956 UnsupportedVersion: '[u8;8]',
1048 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'957 ExecutedDownward: '([u8;8],XcmV2TraitsOutcome)'
1049 }958 }
1050 },959 },
1051 /**960 /**
1052 * Lookup91: cumulus_pallet_dmp_queue::pallet::Event<T>961 * Lookup88: cumulus_pallet_dmp_queue::pallet::Event<T>
1053 **/962 **/
1054 CumulusPalletDmpQueueEvent: {963 CumulusPalletDmpQueueEvent: {
1055 _enum: {964 _enum: {
1056 InvalidFormat: {965 InvalidFormat: {
1079 }988 }
1080 }989 }
1081 },990 },
1082 /**991 /**
1083 * Lookup92: pallet_configuration::pallet::Event<T>992 * Lookup89: pallet_configuration::pallet::Event<T>
1084 **/993 **/
1085 PalletConfigurationEvent: {994 PalletConfigurationEvent: {
1086 _enum: {995 _enum: {
1087 NewDesiredCollators: {996 NewDesiredCollators: {
1095 }1004 }
1096 }1005 }
1097 },1006 },
1098 /**1007 /**
1099 * Lookup95: pallet_common::pallet::Event<T>1008 * Lookup92: pallet_common::pallet::Event<T>
1100 **/1009 **/
1101 PalletCommonEvent: {1010 PalletCommonEvent: {
1102 _enum: {1011 _enum: {
1103 CollectionCreated: '(u32,u8,AccountId32)',1012 CollectionCreated: '(u32,u8,AccountId32)',
1124 CollectionSponsorRemoved: 'u32'1033 CollectionSponsorRemoved: 'u32'
1125 }1034 }
1126 },1035 },
1127 /**1036 /**
1128 * Lookup98: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>1037 * Lookup95: pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>
1129 **/1038 **/
1130 PalletEvmAccountBasicCrossAccountIdRepr: {1039 PalletEvmAccountBasicCrossAccountIdRepr: {
1131 _enum: {1040 _enum: {
1132 Substrate: 'AccountId32',1041 Substrate: 'AccountId32',
1133 Ethereum: 'H160'1042 Ethereum: 'H160'
1134 }1043 }
1135 },1044 },
1136 /**1045 /**
1137 * Lookup102: pallet_structure::pallet::Event<T>1046 * Lookup99: pallet_structure::pallet::Event<T>
1138 **/1047 **/
1139 PalletStructureEvent: {1048 PalletStructureEvent: {
1140 _enum: {1049 _enum: {
1141 Executed: 'Result<Null, SpRuntimeDispatchError>'1050 Executed: 'Result<Null, SpRuntimeDispatchError>'
1142 }1051 }
1143 },1052 },
1144 /**1053 /**
1145 * Lookup103: pallet_rmrk_core::pallet::Event<T>1054 * Lookup100: pallet_rmrk_core::pallet::Event<T>
1146 **/1055 **/
1147 PalletRmrkCoreEvent: {1056 PalletRmrkCoreEvent: {
1148 _enum: {1057 _enum: {
1149 CollectionCreated: {1058 CollectionCreated: {
1218 }1127 }
1219 }1128 }
1220 },1129 },
1221 /**1130 /**
1222 * Lookup104: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>1131 * Lookup101: rmrk_traits::nft::AccountIdOrCollectionNftTuple<sp_core::crypto::AccountId32>
1223 **/1132 **/
1224 RmrkTraitsNftAccountIdOrCollectionNftTuple: {1133 RmrkTraitsNftAccountIdOrCollectionNftTuple: {
1225 _enum: {1134 _enum: {
1226 AccountId: 'AccountId32',1135 AccountId: 'AccountId32',
1227 CollectionAndNftTuple: '(u32,u32)'1136 CollectionAndNftTuple: '(u32,u32)'
1228 }1137 }
1229 },1138 },
1230 /**1139 /**
1231 * Lookup107: pallet_rmrk_equip::pallet::Event<T>1140 * Lookup104: pallet_rmrk_equip::pallet::Event<T>
1232 **/1141 **/
1233 PalletRmrkEquipEvent: {1142 PalletRmrkEquipEvent: {
1234 _enum: {1143 _enum: {
1235 BaseCreated: {1144 BaseCreated: {
1242 }1151 }
1243 }1152 }
1244 },1153 },
1245 /**1154 /**
1246 * Lookup108: pallet_app_promotion::pallet::Event<T>1155 * Lookup105: pallet_app_promotion::pallet::Event<T>
1247 **/1156 **/
1248 PalletAppPromotionEvent: {1157 PalletAppPromotionEvent: {
1249 _enum: {1158 _enum: {
1250 StakingRecalculation: '(AccountId32,u128,u128)',1159 StakingRecalculation: '(AccountId32,u128,u128)',
1253 SetAdmin: 'AccountId32'1162 SetAdmin: 'AccountId32'
1254 }1163 }
1255 },1164 },
1256 /**1165 /**
1257 * Lookup109: pallet_foreign_assets::module::Event<T>1166 * Lookup106: pallet_foreign_assets::module::Event<T>
1258 **/1167 **/
1259 PalletForeignAssetsModuleEvent: {1168 PalletForeignAssetsModuleEvent: {
1260 _enum: {1169 _enum: {
1261 ForeignAssetRegistered: {1170 ForeignAssetRegistered: {
1278 }1187 }
1279 }1188 }
1280 },1189 },
1281 /**1190 /**
1282 * Lookup110: pallet_foreign_assets::module::AssetMetadata<Balance>1191 * Lookup107: pallet_foreign_assets::module::AssetMetadata<Balance>
1283 **/1192 **/
1284 PalletForeignAssetsModuleAssetMetadata: {1193 PalletForeignAssetsModuleAssetMetadata: {
1285 name: 'Bytes',1194 name: 'Bytes',
1286 symbol: 'Bytes',1195 symbol: 'Bytes',
1287 decimals: 'u8',1196 decimals: 'u8',
1288 minimalBalance: 'u128'1197 minimalBalance: 'u128'
1289 },1198 },
1290 /**1199 /**
1291 * Lookup111: pallet_evm::pallet::Event<T>1200 * Lookup108: pallet_evm::pallet::Event<T>
1292 **/1201 **/
1293 PalletEvmEvent: {1202 PalletEvmEvent: {
1294 _enum: {1203 _enum: {
1295 Log: {1204 Log: {
1309 }1218 }
1310 }1219 }
1311 },1220 },
1312 /**1221 /**
1313 * Lookup112: ethereum::log::Log1222 * Lookup109: ethereum::log::Log
1314 **/1223 **/
1315 EthereumLog: {1224 EthereumLog: {
1316 address: 'H160',1225 address: 'H160',
1317 topics: 'Vec<H256>',1226 topics: 'Vec<H256>',
1318 data: 'Bytes'1227 data: 'Bytes'
1319 },1228 },
1320 /**1229 /**
1321 * Lookup114: pallet_ethereum::pallet::Event1230 * Lookup111: pallet_ethereum::pallet::Event
1322 **/1231 **/
1323 PalletEthereumEvent: {1232 PalletEthereumEvent: {
1324 _enum: {1233 _enum: {
1325 Executed: {1234 Executed: {
1330 }1239 }
1331 }1240 }
1332 },1241 },
1333 /**1242 /**
1334 * Lookup115: evm_core::error::ExitReason1243 * Lookup112: evm_core::error::ExitReason
1335 **/1244 **/
1336 EvmCoreErrorExitReason: {1245 EvmCoreErrorExitReason: {
1337 _enum: {1246 _enum: {
1338 Succeed: 'EvmCoreErrorExitSucceed',1247 Succeed: 'EvmCoreErrorExitSucceed',
1341 Fatal: 'EvmCoreErrorExitFatal'1250 Fatal: 'EvmCoreErrorExitFatal'
1342 }1251 }
1343 },1252 },
1344 /**1253 /**
1345 * Lookup116: evm_core::error::ExitSucceed1254 * Lookup113: evm_core::error::ExitSucceed
1346 **/1255 **/
1347 EvmCoreErrorExitSucceed: {1256 EvmCoreErrorExitSucceed: {
1348 _enum: ['Stopped', 'Returned', 'Suicided']1257 _enum: ['Stopped', 'Returned', 'Suicided']
1349 },1258 },
1350 /**1259 /**
1351 * Lookup117: evm_core::error::ExitError1260 * Lookup114: evm_core::error::ExitError
1352 **/1261 **/
1353 EvmCoreErrorExitError: {1262 EvmCoreErrorExitError: {
1354 _enum: {1263 _enum: {
1355 StackUnderflow: 'Null',1264 StackUnderflow: 'Null',
1369 InvalidCode: 'Null'1278 InvalidCode: 'Null'
1370 }1279 }
1371 },1280 },
1372 /**1281 /**
1373 * Lookup120: evm_core::error::ExitRevert1282 * Lookup117: evm_core::error::ExitRevert
1374 **/1283 **/
1375 EvmCoreErrorExitRevert: {1284 EvmCoreErrorExitRevert: {
1376 _enum: ['Reverted']1285 _enum: ['Reverted']
1377 },1286 },
1378 /**1287 /**
1379 * Lookup121: evm_core::error::ExitFatal1288 * Lookup118: evm_core::error::ExitFatal
1380 **/1289 **/
1381 EvmCoreErrorExitFatal: {1290 EvmCoreErrorExitFatal: {
1382 _enum: {1291 _enum: {
1383 NotSupported: 'Null',1292 NotSupported: 'Null',
1386 Other: 'Text'1295 Other: 'Text'
1387 }1296 }
1388 },1297 },
1389 /**1298 /**
1390 * Lookup122: pallet_evm_contract_helpers::pallet::Event<T>1299 * Lookup119: pallet_evm_contract_helpers::pallet::Event<T>
1391 **/1300 **/
1392 PalletEvmContractHelpersEvent: {1301 PalletEvmContractHelpersEvent: {
1393 _enum: {1302 _enum: {
1394 ContractSponsorSet: '(H160,AccountId32)',1303 ContractSponsorSet: '(H160,AccountId32)',
1395 ContractSponsorshipConfirmed: '(H160,AccountId32)',1304 ContractSponsorshipConfirmed: '(H160,AccountId32)',
1396 ContractSponsorRemoved: 'H160'1305 ContractSponsorRemoved: 'H160'
1397 }1306 }
1398 },1307 },
1399 /**1308 /**
1400 * Lookup123: pallet_evm_migration::pallet::Event<T>1309 * Lookup120: pallet_evm_migration::pallet::Event<T>
1401 **/1310 **/
1402 PalletEvmMigrationEvent: {1311 PalletEvmMigrationEvent: {
1403 _enum: ['TestEvent']1312 _enum: ['TestEvent']
1404 },1313 },
1405 /**1314 /**
1406 * Lookup124: pallet_maintenance::pallet::Event<T>1315 * Lookup121: pallet_maintenance::pallet::Event<T>
1407 **/1316 **/
1408 PalletMaintenanceEvent: {1317 PalletMaintenanceEvent: {
1409 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']1318 _enum: ['MaintenanceEnabled', 'MaintenanceDisabled']
1410 },1319 },
1411 /**1320 /**
1412 * Lookup125: pallet_test_utils::pallet::Event<T>1321 * Lookup122: pallet_test_utils::pallet::Event<T>
1413 **/1322 **/
1414 PalletTestUtilsEvent: {1323 PalletTestUtilsEvent: {
1415 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']1324 _enum: ['ValueIsSet', 'ShouldRollback', 'BatchCompleted']
1416 },1325 },
1417 /**1326 /**
1418 * Lookup126: frame_system::Phase1327 * Lookup123: frame_system::Phase
1419 **/1328 **/
1420 FrameSystemPhase: {1329 FrameSystemPhase: {
1421 _enum: {1330 _enum: {
1422 ApplyExtrinsic: 'u32',1331 ApplyExtrinsic: 'u32',
1423 Finalization: 'Null',1332 Finalization: 'Null',
1424 Initialization: 'Null'1333 Initialization: 'Null'
1425 }1334 }
1426 },1335 },
1427 /**1336 /**
1428 * Lookup129: frame_system::LastRuntimeUpgradeInfo1337 * Lookup126: frame_system::LastRuntimeUpgradeInfo
1429 **/1338 **/
1430 FrameSystemLastRuntimeUpgradeInfo: {1339 FrameSystemLastRuntimeUpgradeInfo: {
1431 specVersion: 'Compact<u32>',1340 specVersion: 'Compact<u32>',
1432 specName: 'Text'1341 specName: 'Text'
1433 },1342 },
1434 /**1343 /**
1435 * Lookup130: frame_system::pallet::Call<T>1344 * Lookup127: frame_system::pallet::Call<T>
1436 **/1345 **/
1437 FrameSystemCall: {1346 FrameSystemCall: {
1438 _enum: {1347 _enum: {
1439 remark: {1348 remark: {
1466 }1375 }
1467 }1376 }
1468 },1377 },
1469 /**1378 /**
1470 * Lookup134: frame_system::limits::BlockWeights1379 * Lookup131: frame_system::limits::BlockWeights
1471 **/1380 **/
1472 FrameSystemLimitsBlockWeights: {1381 FrameSystemLimitsBlockWeights: {
1473 baseBlock: 'SpWeightsWeightV2Weight',1382 baseBlock: 'SpWeightsWeightV2Weight',
1474 maxBlock: 'SpWeightsWeightV2Weight',1383 maxBlock: 'SpWeightsWeightV2Weight',
1475 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'1384 perClass: 'FrameSupportDispatchPerDispatchClassWeightsPerClass'
1476 },1385 },
1477 /**1386 /**
1478 * Lookup135: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>1387 * Lookup132: frame_support::dispatch::PerDispatchClass<frame_system::limits::WeightsPerClass>
1479 **/1388 **/
1480 FrameSupportDispatchPerDispatchClassWeightsPerClass: {1389 FrameSupportDispatchPerDispatchClassWeightsPerClass: {
1481 normal: 'FrameSystemLimitsWeightsPerClass',1390 normal: 'FrameSystemLimitsWeightsPerClass',
1482 operational: 'FrameSystemLimitsWeightsPerClass',1391 operational: 'FrameSystemLimitsWeightsPerClass',
1483 mandatory: 'FrameSystemLimitsWeightsPerClass'1392 mandatory: 'FrameSystemLimitsWeightsPerClass'
1484 },1393 },
1485 /**1394 /**
1486 * Lookup136: frame_system::limits::WeightsPerClass1395 * Lookup133: frame_system::limits::WeightsPerClass
1487 **/1396 **/
1488 FrameSystemLimitsWeightsPerClass: {1397 FrameSystemLimitsWeightsPerClass: {
1489 baseExtrinsic: 'SpWeightsWeightV2Weight',1398 baseExtrinsic: 'SpWeightsWeightV2Weight',
1490 maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',1399 maxExtrinsic: 'Option<SpWeightsWeightV2Weight>',
1491 maxTotal: 'Option<SpWeightsWeightV2Weight>',1400 maxTotal: 'Option<SpWeightsWeightV2Weight>',
1492 reserved: 'Option<SpWeightsWeightV2Weight>'1401 reserved: 'Option<SpWeightsWeightV2Weight>'
1493 },1402 },
1494 /**1403 /**
1495 * Lookup138: frame_system::limits::BlockLength1404 * Lookup135: frame_system::limits::BlockLength
1496 **/1405 **/
1497 FrameSystemLimitsBlockLength: {1406 FrameSystemLimitsBlockLength: {
1498 max: 'FrameSupportDispatchPerDispatchClassU32'1407 max: 'FrameSupportDispatchPerDispatchClassU32'
1499 },1408 },
1500 /**1409 /**
1501 * Lookup139: frame_support::dispatch::PerDispatchClass<T>1410 * Lookup136: frame_support::dispatch::PerDispatchClass<T>
1502 **/1411 **/
1503 FrameSupportDispatchPerDispatchClassU32: {1412 FrameSupportDispatchPerDispatchClassU32: {
1504 normal: 'u32',1413 normal: 'u32',
1505 operational: 'u32',1414 operational: 'u32',
1506 mandatory: 'u32'1415 mandatory: 'u32'
1507 },1416 },
1508 /**1417 /**
1509 * Lookup140: sp_weights::RuntimeDbWeight1418 * Lookup137: sp_weights::RuntimeDbWeight
1510 **/1419 **/
1511 SpWeightsRuntimeDbWeight: {1420 SpWeightsRuntimeDbWeight: {
1512 read: 'u64',1421 read: 'u64',
1513 write: 'u64'1422 write: 'u64'
1514 },1423 },
1515 /**1424 /**
1516 * Lookup141: sp_version::RuntimeVersion1425 * Lookup138: sp_version::RuntimeVersion
1517 **/1426 **/
1518 SpVersionRuntimeVersion: {1427 SpVersionRuntimeVersion: {
1519 specName: 'Text',1428 specName: 'Text',
1520 implName: 'Text',1429 implName: 'Text',
1525 transactionVersion: 'u32',1434 transactionVersion: 'u32',
1526 stateVersion: 'u8'1435 stateVersion: 'u8'
1527 },1436 },
1528 /**1437 /**
1529 * Lookup146: frame_system::pallet::Error<T>1438 * Lookup143: frame_system::pallet::Error<T>
1530 **/1439 **/
1531 FrameSystemError: {1440 FrameSystemError: {
1532 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']1441 _enum: ['InvalidSpecName', 'SpecVersionNeedsToIncrease', 'FailedToExtractRuntimeVersion', 'NonDefaultComposite', 'NonZeroRefCount', 'CallFiltered']
1533 },1442 },
1534 /**1443 /**
1535 * Lookup147: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>1444 * Lookup144: polkadot_primitives::v2::PersistedValidationData<primitive_types::H256, N>
1536 **/1445 **/
1537 PolkadotPrimitivesV2PersistedValidationData: {1446 PolkadotPrimitivesV2PersistedValidationData: {
1538 parentHead: 'Bytes',1447 parentHead: 'Bytes',
1539 relayParentNumber: 'u32',1448 relayParentNumber: 'u32',
1540 relayParentStorageRoot: 'H256',1449 relayParentStorageRoot: 'H256',
1541 maxPovSize: 'u32'1450 maxPovSize: 'u32'
1542 },1451 },
1543 /**1452 /**
1544 * Lookup150: polkadot_primitives::v2::UpgradeRestriction1453 * Lookup147: polkadot_primitives::v2::UpgradeRestriction
1545 **/1454 **/
1546 PolkadotPrimitivesV2UpgradeRestriction: {1455 PolkadotPrimitivesV2UpgradeRestriction: {
1547 _enum: ['Present']1456 _enum: ['Present']
1548 },1457 },
1549 /**1458 /**
1550 * Lookup151: sp_trie::storage_proof::StorageProof1459 * Lookup148: sp_trie::storage_proof::StorageProof
1551 **/1460 **/
1552 SpTrieStorageProof: {1461 SpTrieStorageProof: {
1553 trieNodes: 'BTreeSet<Bytes>'1462 trieNodes: 'BTreeSet<Bytes>'
1554 },1463 },
1555 /**1464 /**
1556 * Lookup153: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot1465 * Lookup150: cumulus_pallet_parachain_system::relay_state_snapshot::MessagingStateSnapshot
1557 **/1466 **/
1558 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {1467 CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot: {
1559 dmqMqcHead: 'H256',1468 dmqMqcHead: 'H256',
1560 relayDispatchQueueSize: '(u32,u32)',1469 relayDispatchQueueSize: '(u32,u32)',
1561 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',1470 ingressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>',
1562 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'1471 egressChannels: 'Vec<(u32,PolkadotPrimitivesV2AbridgedHrmpChannel)>'
1563 },1472 },
1564 /**1473 /**
1565 * Lookup156: polkadot_primitives::v2::AbridgedHrmpChannel1474 * Lookup153: polkadot_primitives::v2::AbridgedHrmpChannel
1566 **/1475 **/
1567 PolkadotPrimitivesV2AbridgedHrmpChannel: {1476 PolkadotPrimitivesV2AbridgedHrmpChannel: {
1568 maxCapacity: 'u32',1477 maxCapacity: 'u32',
1569 maxTotalSize: 'u32',1478 maxTotalSize: 'u32',
1572 totalSize: 'u32',1481 totalSize: 'u32',
1573 mqcHead: 'Option<H256>'1482 mqcHead: 'Option<H256>'
1574 },1483 },
1575 /**1484 /**
1576 * Lookup157: polkadot_primitives::v2::AbridgedHostConfiguration1485 * Lookup154: polkadot_primitives::v2::AbridgedHostConfiguration
1577 **/1486 **/
1578 PolkadotPrimitivesV2AbridgedHostConfiguration: {1487 PolkadotPrimitivesV2AbridgedHostConfiguration: {
1579 maxCodeSize: 'u32',1488 maxCodeSize: 'u32',
1580 maxHeadDataSize: 'u32',1489 maxHeadDataSize: 'u32',
1586 validationUpgradeCooldown: 'u32',1495 validationUpgradeCooldown: 'u32',
1587 validationUpgradeDelay: 'u32'1496 validationUpgradeDelay: 'u32'
1588 },1497 },
1589 /**1498 /**
1590 * Lookup163: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>1499 * Lookup160: polkadot_core_primitives::OutboundHrmpMessage<polkadot_parachain::primitives::Id>
1591 **/1500 **/
1592 PolkadotCorePrimitivesOutboundHrmpMessage: {1501 PolkadotCorePrimitivesOutboundHrmpMessage: {
1593 recipient: 'u32',1502 recipient: 'u32',
1594 data: 'Bytes'1503 data: 'Bytes'
1595 },1504 },
1596 /**1505 /**
1597 * Lookup164: cumulus_pallet_parachain_system::pallet::Call<T>1506 * Lookup161: cumulus_pallet_parachain_system::pallet::Call<T>
1598 **/1507 **/
1599 CumulusPalletParachainSystemCall: {1508 CumulusPalletParachainSystemCall: {
1600 _enum: {1509 _enum: {
1601 set_validation_data: {1510 set_validation_data: {
1612 }1521 }
1613 }1522 }
1614 },1523 },
1615 /**1524 /**
1616 * Lookup165: cumulus_primitives_parachain_inherent::ParachainInherentData1525 * Lookup162: cumulus_primitives_parachain_inherent::ParachainInherentData
1617 **/1526 **/
1618 CumulusPrimitivesParachainInherentParachainInherentData: {1527 CumulusPrimitivesParachainInherentParachainInherentData: {
1619 validationData: 'PolkadotPrimitivesV2PersistedValidationData',1528 validationData: 'PolkadotPrimitivesV2PersistedValidationData',
1620 relayChainState: 'SpTrieStorageProof',1529 relayChainState: 'SpTrieStorageProof',
1621 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',1530 downwardMessages: 'Vec<PolkadotCorePrimitivesInboundDownwardMessage>',
1622 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'1531 horizontalMessages: 'BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>'
1623 },1532 },
1624 /**1533 /**
1625 * Lookup167: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>1534 * Lookup164: polkadot_core_primitives::InboundDownwardMessage<BlockNumber>
1626 **/1535 **/
1627 PolkadotCorePrimitivesInboundDownwardMessage: {1536 PolkadotCorePrimitivesInboundDownwardMessage: {
1628 sentAt: 'u32',1537 sentAt: 'u32',
1629 msg: 'Bytes'1538 msg: 'Bytes'
1630 },1539 },
1631 /**1540 /**
1632 * Lookup170: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>1541 * Lookup167: polkadot_core_primitives::InboundHrmpMessage<BlockNumber>
1633 **/1542 **/
1634 PolkadotCorePrimitivesInboundHrmpMessage: {1543 PolkadotCorePrimitivesInboundHrmpMessage: {
1635 sentAt: 'u32',1544 sentAt: 'u32',
1636 data: 'Bytes'1545 data: 'Bytes'
1637 },1546 },
1638 /**1547 /**
1639 * Lookup173: cumulus_pallet_parachain_system::pallet::Error<T>1548 * Lookup170: cumulus_pallet_parachain_system::pallet::Error<T>
1640 **/1549 **/
1641 CumulusPalletParachainSystemError: {1550 CumulusPalletParachainSystemError: {
1642 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']1551 _enum: ['OverlappingUpgrades', 'ProhibitedByPolkadot', 'TooBig', 'ValidationDataNotAvailable', 'HostConfigurationNotAvailable', 'NotScheduled', 'NothingAuthorized', 'Unauthorized']
1643 },1552 },
1644 /**
1645 * Lookup175: pallet_authorship::UncleEntryItem<BlockNumber, primitive_types::H256, sp_core::crypto::AccountId32>
1646 **/
1647 PalletAuthorshipUncleEntryItem: {
1648 _enum: {
1649 InclusionHeight: 'u32',
1650 Uncle: '(H256,Option<AccountId32>)'
1651 }
1652 },
1653 /**
1654 * Lookup177: pallet_authorship::pallet::Call<T>
1655 **/
1656 PalletAuthorshipCall: {
1657 _enum: {
1658 set_uncles: {
1659 newUncles: 'Vec<SpRuntimeHeader>'
1660 }
1661 }
1662 },
1663 /**
1664 * Lookup179: sp_runtime::generic::header::Header<Number, sp_runtime::traits::BlakeTwo256>
1665 **/
1666 SpRuntimeHeader: {
1667 parentHash: 'H256',
1668 number: 'Compact<u32>',
1669 stateRoot: 'H256',
1670 extrinsicsRoot: 'H256',
1671 digest: 'SpRuntimeDigest'
1672 },
1673 /**
1674 * Lookup180: sp_runtime::traits::BlakeTwo256
1675 **/
1676 SpRuntimeBlakeTwo256: 'Null',
1677 /**
1678 * Lookup181: pallet_authorship::pallet::Error<T>
1679 **/
1680 PalletAuthorshipError: {
1681 _enum: ['InvalidUncleParent', 'UnclesAlreadySet', 'TooManyUncles', 'GenesisUncle', 'TooHighUncle', 'UncleAlreadyIncluded', 'OldUncle']
1682 },
1683 /**
1684 * Lookup184: pallet_collator_selection::pallet::Call<T>
1685 **/
1686 PalletCollatorSelectionCall: {
1687 _enum: {
1688 add_invulnerable: {
1689 _alias: {
1690 new_: 'new',
1691 },
1692 new_: 'AccountId32',
1693 },
1694 remove_invulnerable: {
1695 who: 'AccountId32',
1696 },
1697 get_license: 'Null',
1698 onboard: 'Null',
1699 offboard: 'Null',
1700 release_license: 'Null',
1701 force_release_license: {
1702 who: 'AccountId32'
1703 }
1704 }
1705 },
1706 /**
1707 * Lookup185: pallet_collator_selection::pallet::Error<T>
1708 **/
1709 PalletCollatorSelectionError: {
1710 _enum: ['TooManyCandidates', 'Unknown', 'Permission', 'AlreadyHoldingLicense', 'NoLicense', 'AlreadyCandidate', 'NotCandidate', 'TooManyInvulnerables', 'TooFewInvulnerables', 'AlreadyInvulnerable', 'NotInvulnerable', 'NoAssociatedValidatorId', 'ValidatorNotRegistered']
1711 },
1712 /**
1713 * Lookup188: opal_runtime::runtime_common::SessionKeys
1714 **/
1715 OpalRuntimeRuntimeCommonSessionKeys: {
1716 aura: 'SpConsensusAuraSr25519AppSr25519Public'
1717 },
1718 /**
1719 * Lookup189: sp_consensus_aura::sr25519::app_sr25519::Public
1720 **/
1721 SpConsensusAuraSr25519AppSr25519Public: 'SpCoreSr25519Public',
1722 /**
1723 * Lookup190: sp_core::sr25519::Public
1724 **/
1725 SpCoreSr25519Public: '[u8;32]',
1726 /**
1727 * Lookup193: sp_core::crypto::KeyTypeId
1728 **/
1729 SpCoreCryptoKeyTypeId: '[u8;4]',
1730 /**
1731 * Lookup194: pallet_session::pallet::Call<T>
1732 **/
1733 PalletSessionCall: {
1734 _enum: {
1735 set_keys: {
1736 _alias: {
1737 keys_: 'keys',
1738 },
1739 keys_: 'OpalRuntimeRuntimeCommonSessionKeys',
1740 proof: 'Bytes',
1741 },
1742 purge_keys: 'Null'
1743 }
1744 },
1745 /**
1746 * Lookup195: pallet_session::pallet::Error<T>
1747 **/
1748 PalletSessionError: {
1749 _enum: ['InvalidProof', 'NoAssociatedValidatorId', 'DuplicatedKey', 'NoKeys', 'NoAccount']
1750 },
1751 /**
1752 * Lookup196: pallet_identity::types::Registration<Balance, MaxJudgements, MaxAdditionalFields>
1753 **/
1754 PalletIdentityRegistration: {
1755 judgements: 'Vec<(u32,PalletIdentityJudgement)>',
1756 deposit: 'u128',
1757 info: 'PalletIdentityIdentityInfo'
1758 },
1759 /**
1760 * Lookup199: pallet_identity::types::Judgement<Balance>
1761 **/
1762 PalletIdentityJudgement: {
1763 _enum: {
1764 Unknown: 'Null',
1765 FeePaid: 'u128',
1766 Reasonable: 'Null',
1767 KnownGood: 'Null',
1768 OutOfDate: 'Null',
1769 LowQuality: 'Null',
1770 Erroneous: 'Null'
1771 }
1772 },
1773 /**
1774 * Lookup201: pallet_identity::types::IdentityInfo<FieldLimit>
1775 **/
1776 PalletIdentityIdentityInfo: {
1777 additional: 'Vec<(Data,Data)>',
1778 display: 'Data',
1779 legal: 'Data',
1780 web: 'Data',
1781 riot: 'Data',
1782 email: 'Data',
1783 pgpFingerprint: 'Option<[u8;20]>',
1784 image: 'Data',
1785 twitter: 'Data'
1786 },
1787 /**
1788 * Lookup240: pallet_identity::types::RegistrarInfo<Balance, sp_core::crypto::AccountId32>
1789 **/
1790 PalletIdentityRegistrarInfo: {
1791 account: 'AccountId32',
1792 fee: 'u128',
1793 fields: 'PalletIdentityBitFlags'
1794 },
1795 /**
1796 * Lookup241: pallet_identity::types::BitFlags<pallet_identity::types::IdentityField>
1797 **/
1798 PalletIdentityBitFlags: {
1799 _bitLength: 64,
1800 Display: 1,
1801 Legal: 2,
1802 Web: 4,
1803 Riot: 8,
1804 Email: 16,
1805 PgpFingerprint: 32,
1806 Image: 64,
1807 Twitter: 128
1808 },
1809 /**
1810 * Lookup242: pallet_identity::types::IdentityField
1811 **/
1812 PalletIdentityIdentityField: {
1813 _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']
1814 },
1815 /**
1816 * Lookup244: pallet_identity::pallet::Call<T>
1817 **/
1818 PalletIdentityCall: {
1819 _enum: {
1820 add_registrar: {
1821 account: 'MultiAddress',
1822 },
1823 set_identity: {
1824 info: 'PalletIdentityIdentityInfo',
1825 },
1826 set_subs: {
1827 subs: 'Vec<(AccountId32,Data)>',
1828 },
1829 clear_identity: 'Null',
1830 request_judgement: {
1831 regIndex: 'Compact<u32>',
1832 maxFee: 'Compact<u128>',
1833 },
1834 cancel_request: {
1835 regIndex: 'u32',
1836 },
1837 set_fee: {
1838 index: 'Compact<u32>',
1839 fee: 'Compact<u128>',
1840 },
1841 set_account_id: {
1842 _alias: {
1843 new_: 'new',
1844 },
1845 index: 'Compact<u32>',
1846 new_: 'MultiAddress',
1847 },
1848 set_fields: {
1849 index: 'Compact<u32>',
1850 fields: 'PalletIdentityBitFlags',
1851 },
1852 provide_judgement: {
1853 regIndex: 'Compact<u32>',
1854 target: 'MultiAddress',
1855 judgement: 'PalletIdentityJudgement',
1856 identity: 'H256',
1857 },
1858 kill_identity: {
1859 target: 'MultiAddress',
1860 },
1861 add_sub: {
1862 sub: 'MultiAddress',
1863 data: 'Data',
1864 },
1865 rename_sub: {
1866 sub: 'MultiAddress',
1867 data: 'Data',
1868 },
1869 remove_sub: {
1870 sub: 'MultiAddress',
1871 },
1872 quit_sub: 'Null',
1873 force_insert_identities: {
1874 identities: 'Vec<(AccountId32,PalletIdentityRegistration)>',
1875 },
1876 force_remove_identities: {
1877 identities: 'Vec<AccountId32>'
1878 }
1879 }
1880 },
1881 /**
1882 * Lookup250: pallet_identity::pallet::Error<T>
1883 **/
1884 PalletIdentityError: {
1885 _enum: ['TooManySubAccounts', 'NotFound', 'NotNamed', 'EmptyIndex', 'FeeChanged', 'NoIdentity', 'StickyJudgement', 'JudgementGiven', 'InvalidJudgement', 'InvalidIndex', 'InvalidTarget', 'TooManyFields', 'TooManyRegistrars', 'AlreadyClaimed', 'NotSub', 'NotOwned', 'JudgementForDifferentIdentity', 'JudgementPaymentFailed']
1886 },
1887 /**1553 /**
1888 * Lookup252: pallet_balances::BalanceLock<Balance>1554 * Lookup172: pallet_balances::BalanceLock<Balance>
1889 **/1555 **/
1890 PalletBalancesBalanceLock: {1556 PalletBalancesBalanceLock: {
1891 id: '[u8;8]',1557 id: '[u8;8]',
1892 amount: 'u128',1558 amount: 'u128',
1893 reasons: 'PalletBalancesReasons'1559 reasons: 'PalletBalancesReasons'
1894 },1560 },
1895 /**1561 /**
1896 * Lookup253: pallet_balances::Reasons1562 * Lookup173: pallet_balances::Reasons
1897 **/1563 **/
1898 PalletBalancesReasons: {1564 PalletBalancesReasons: {
1899 _enum: ['Fee', 'Misc', 'All']1565 _enum: ['Fee', 'Misc', 'All']
1900 },1566 },
1901 /**1567 /**
1902 * Lookup256: pallet_balances::ReserveData<ReserveIdentifier, Balance>1568 * Lookup176: pallet_balances::ReserveData<ReserveIdentifier, Balance>
1903 **/1569 **/
1904 PalletBalancesReserveData: {1570 PalletBalancesReserveData: {
1905 id: '[u8;16]',1571 id: '[u8;16]',
1906 amount: 'u128'1572 amount: 'u128'
1907 },1573 },
1908 /**1574 /**
1909 * Lookup258: pallet_balances::pallet::Call<T, I>1575 * Lookup178: pallet_balances::pallet::Call<T, I>
1910 **/1576 **/
1911 PalletBalancesCall: {1577 PalletBalancesCall: {
1912 _enum: {1578 _enum: {
1913 transfer: {1579 transfer: {
1938 }1604 }
1939 }1605 }
1940 },1606 },
1941 /**1607 /**
1942 * Lookup259: pallet_balances::pallet::Error<T, I>1608 * Lookup181: pallet_balances::pallet::Error<T, I>
1943 **/1609 **/
1944 PalletBalancesError: {1610 PalletBalancesError: {
1945 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']1611 _enum: ['VestingBalance', 'LiquidityRestrictions', 'InsufficientBalance', 'ExistentialDeposit', 'KeepAlive', 'ExistingVestingSchedule', 'DeadAccount', 'TooManyReserves']
1946 },1612 },
1947 /**1613 /**
1948 * Lookup261: pallet_timestamp::pallet::Call<T>1614 * Lookup183: pallet_timestamp::pallet::Call<T>
1949 **/1615 **/
1950 PalletTimestampCall: {1616 PalletTimestampCall: {
1951 _enum: {1617 _enum: {
1952 set: {1618 set: {
1953 now: 'Compact<u64>'1619 now: 'Compact<u64>'
1954 }1620 }
1955 }1621 }
1956 },1622 },
1957 /**1623 /**
1958 * Lookup263: pallet_transaction_payment::Releases1624 * Lookup185: pallet_transaction_payment::Releases
1959 **/1625 **/
1960 PalletTransactionPaymentReleases: {1626 PalletTransactionPaymentReleases: {
1961 _enum: ['V1Ancient', 'V2']1627 _enum: ['V1Ancient', 'V2']
1962 },1628 },
1963 /**1629 /**
1964 * Lookup264: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>1630 * Lookup186: pallet_treasury::Proposal<sp_core::crypto::AccountId32, Balance>
1965 **/1631 **/
1966 PalletTreasuryProposal: {1632 PalletTreasuryProposal: {
1967 proposer: 'AccountId32',1633 proposer: 'AccountId32',
1968 value: 'u128',1634 value: 'u128',
1969 beneficiary: 'AccountId32',1635 beneficiary: 'AccountId32',
1970 bond: 'u128'1636 bond: 'u128'
1971 },1637 },
1972 /**1638 /**
1973 * Lookup266: pallet_treasury::pallet::Call<T, I>1639 * Lookup189: pallet_treasury::pallet::Call<T, I>
1974 **/1640 **/
1975 PalletTreasuryCall: {1641 PalletTreasuryCall: {
1976 _enum: {1642 _enum: {
1977 propose_spend: {1643 propose_spend: {
1993 }1659 }
1994 }1660 }
1995 },1661 },
1996 /**1662 /**
1997 * Lookup268: frame_support::PalletId1663 * Lookup191: frame_support::PalletId
1998 **/1664 **/
1999 FrameSupportPalletId: '[u8;8]',1665 FrameSupportPalletId: '[u8;8]',
2000 /**1666 /**
2001 * Lookup269: pallet_treasury::pallet::Error<T, I>1667 * Lookup192: pallet_treasury::pallet::Error<T, I>
2002 **/1668 **/
2003 PalletTreasuryError: {1669 PalletTreasuryError: {
2004 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']1670 _enum: ['InsufficientProposersBalance', 'InvalidIndex', 'TooManyApprovals', 'InsufficientPermission', 'ProposalNotApproved']
2005 },1671 },
2006 /**1672 /**
2007 * Lookup270: pallet_sudo::pallet::Call<T>1673 * Lookup193: pallet_sudo::pallet::Call<T>
2008 **/1674 **/
2009 PalletSudoCall: {1675 PalletSudoCall: {
2010 _enum: {1676 _enum: {
2011 sudo: {1677 sudo: {
2027 }1693 }
2028 }1694 }
2029 },1695 },
2030 /**1696 /**
2031 * Lookup272: orml_vesting::module::Call<T>1697 * Lookup195: orml_vesting::module::Call<T>
2032 **/1698 **/
2033 OrmlVestingModuleCall: {1699 OrmlVestingModuleCall: {
2034 _enum: {1700 _enum: {
2035 claim: 'Null',1701 claim: 'Null',
2046 }1712 }
2047 }1713 }
2048 },1714 },
2049 /**1715 /**
2050 * Lookup274: orml_xtokens::module::Call<T>1716 * Lookup197: orml_xtokens::module::Call<T>
2051 **/1717 **/
2052 OrmlXtokensModuleCall: {1718 OrmlXtokensModuleCall: {
2053 _enum: {1719 _enum: {
2054 transfer: {1720 transfer: {
2089 }1755 }
2090 }1756 }
2091 },1757 },
2092 /**1758 /**
2093 * Lookup275: xcm::VersionedMultiAsset1759 * Lookup198: xcm::VersionedMultiAsset
2094 **/1760 **/
2095 XcmVersionedMultiAsset: {1761 XcmVersionedMultiAsset: {
2096 _enum: {1762 _enum: {
2097 V0: 'XcmV0MultiAsset',1763 V0: 'XcmV0MultiAsset',
2098 V1: 'XcmV1MultiAsset'1764 V1: 'XcmV1MultiAsset'
2099 }1765 }
2100 },1766 },
2101 /**1767 /**
2102 * Lookup278: orml_tokens::module::Call<T>1768 * Lookup201: orml_tokens::module::Call<T>
2103 **/1769 **/
2104 OrmlTokensModuleCall: {1770 OrmlTokensModuleCall: {
2105 _enum: {1771 _enum: {
2106 transfer: {1772 transfer: {
2132 }1798 }
2133 }1799 }
2134 },1800 },
2135 /**1801 /**
2136 * Lookup279: cumulus_pallet_xcmp_queue::pallet::Call<T>1802 * Lookup202: cumulus_pallet_xcmp_queue::pallet::Call<T>
2137 **/1803 **/
2138 CumulusPalletXcmpQueueCall: {1804 CumulusPalletXcmpQueueCall: {
2139 _enum: {1805 _enum: {
2140 service_overweight: {1806 service_overweight: {
2181 }1847 }
2182 }1848 }
2183 },1849 },
2184 /**1850 /**
2185 * Lookup280: pallet_xcm::pallet::Call<T>1851 * Lookup203: pallet_xcm::pallet::Call<T>
2186 **/1852 **/
2187 PalletXcmCall: {1853 PalletXcmCall: {
2188 _enum: {1854 _enum: {
2189 send: {1855 send: {
2235 }1901 }
2236 }1902 }
2237 },1903 },
2238 /**1904 /**
2239 * Lookup281: xcm::VersionedXcm<RuntimeCall>1905 * Lookup204: xcm::VersionedXcm<RuntimeCall>
2240 **/1906 **/
2241 XcmVersionedXcm: {1907 XcmVersionedXcm: {
2242 _enum: {1908 _enum: {
2243 V0: 'XcmV0Xcm',1909 V0: 'XcmV0Xcm',
2244 V1: 'XcmV1Xcm',1910 V1: 'XcmV1Xcm',
2245 V2: 'XcmV2Xcm'1911 V2: 'XcmV2Xcm'
2246 }1912 }
2247 },1913 },
2248 /**1914 /**
2249 * Lookup282: xcm::v0::Xcm<RuntimeCall>1915 * Lookup205: xcm::v0::Xcm<RuntimeCall>
2250 **/1916 **/
2251 XcmV0Xcm: {1917 XcmV0Xcm: {
2252 _enum: {1918 _enum: {
2253 WithdrawAsset: {1919 WithdrawAsset: {
2299 }1965 }
2300 }1966 }
2301 },1967 },
2302 /**1968 /**
2303 * Lookup284: xcm::v0::order::Order<RuntimeCall>1969 * Lookup207: xcm::v0::order::Order<RuntimeCall>
2304 **/1970 **/
2305 XcmV0Order: {1971 XcmV0Order: {
2306 _enum: {1972 _enum: {
2307 Null: 'Null',1973 Null: 'Null',
2342 }2008 }
2343 }2009 }
2344 },2010 },
2345 /**2011 /**
2346 * Lookup286: xcm::v0::Response2012 * Lookup209: xcm::v0::Response
2347 **/2013 **/
2348 XcmV0Response: {2014 XcmV0Response: {
2349 _enum: {2015 _enum: {
2350 Assets: 'Vec<XcmV0MultiAsset>'2016 Assets: 'Vec<XcmV0MultiAsset>'
2351 }2017 }
2352 },2018 },
2353 /**2019 /**
2354 * Lookup287: xcm::v1::Xcm<RuntimeCall>2020 * Lookup210: xcm::v1::Xcm<RuntimeCall>
2355 **/2021 **/
2356 XcmV1Xcm: {2022 XcmV1Xcm: {
2357 _enum: {2023 _enum: {
2358 WithdrawAsset: {2024 WithdrawAsset: {
2409 UnsubscribeVersion: 'Null'2075 UnsubscribeVersion: 'Null'
2410 }2076 }
2411 },2077 },
2412 /**2078 /**
2413 * Lookup289: xcm::v1::order::Order<RuntimeCall>2079 * Lookup212: xcm::v1::order::Order<RuntimeCall>
2414 **/2080 **/
2415 XcmV1Order: {2081 XcmV1Order: {
2416 _enum: {2082 _enum: {
2417 Noop: 'Null',2083 Noop: 'Null',
2454 }2120 }
2455 }2121 }
2456 },2122 },
2457 /**2123 /**
2458 * Lookup291: xcm::v1::Response2124 * Lookup214: xcm::v1::Response
2459 **/2125 **/
2460 XcmV1Response: {2126 XcmV1Response: {
2461 _enum: {2127 _enum: {
2462 Assets: 'XcmV1MultiassetMultiAssets',2128 Assets: 'XcmV1MultiassetMultiAssets',
2463 Version: 'u32'2129 Version: 'u32'
2464 }2130 }
2465 },2131 },
2466 /**2132 /**
2467 * Lookup305: cumulus_pallet_xcm::pallet::Call<T>2133 * Lookup228: cumulus_pallet_xcm::pallet::Call<T>
2468 **/2134 **/
2469 CumulusPalletXcmCall: 'Null',2135 CumulusPalletXcmCall: 'Null',
2470 /**2136 /**
2471 * Lookup306: cumulus_pallet_dmp_queue::pallet::Call<T>2137 * Lookup229: cumulus_pallet_dmp_queue::pallet::Call<T>
2472 **/2138 **/
2473 CumulusPalletDmpQueueCall: {2139 CumulusPalletDmpQueueCall: {
2474 _enum: {2140 _enum: {
2475 service_overweight: {2141 service_overweight: {
2478 }2144 }
2479 }2145 }
2480 },2146 },
2481 /**2147 /**
2482 * Lookup307: pallet_inflation::pallet::Call<T>2148 * Lookup230: pallet_inflation::pallet::Call<T>
2483 **/2149 **/
2484 PalletInflationCall: {2150 PalletInflationCall: {
2485 _enum: {2151 _enum: {
2486 start_inflation: {2152 start_inflation: {
2487 inflationStartRelayBlock: 'u32'2153 inflationStartRelayBlock: 'u32'
2488 }2154 }
2489 }2155 }
2490 },2156 },
2491 /**2157 /**
2492 * Lookup308: pallet_unique::Call<T>2158 * Lookup231: pallet_unique::Call<T>
2493 **/2159 **/
2494 PalletUniqueCall: {2160 PalletUniqueCall: {
2495 _enum: {2161 _enum: {
2496 create_collection: {2162 create_collection: {
2632 }2298 }
2633 }2299 }
2634 },2300 },
2635 /**2301 /**
2636 * Lookup313: up_data_structs::CollectionMode2302 * Lookup236: up_data_structs::CollectionMode
2637 **/2303 **/
2638 UpDataStructsCollectionMode: {2304 UpDataStructsCollectionMode: {
2639 _enum: {2305 _enum: {
2640 NFT: 'Null',2306 NFT: 'Null',
2641 Fungible: 'u8',2307 Fungible: 'u8',
2642 ReFungible: 'Null'2308 ReFungible: 'Null'
2643 }2309 }
2644 },2310 },
2645 /**2311 /**
2646 * Lookup314: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>2312 * Lookup237: up_data_structs::CreateCollectionData<sp_core::crypto::AccountId32>
2647 **/2313 **/
2648 UpDataStructsCreateCollectionData: {2314 UpDataStructsCreateCollectionData: {
2649 mode: 'UpDataStructsCollectionMode',2315 mode: 'UpDataStructsCollectionMode',
2650 access: 'Option<UpDataStructsAccessMode>',2316 access: 'Option<UpDataStructsAccessMode>',
2657 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',2323 tokenPropertyPermissions: 'Vec<UpDataStructsPropertyKeyPermission>',
2658 properties: 'Vec<UpDataStructsProperty>'2324 properties: 'Vec<UpDataStructsProperty>'
2659 },2325 },
2660 /**2326 /**
2661 * Lookup316: up_data_structs::AccessMode2327 * Lookup239: up_data_structs::AccessMode
2662 **/2328 **/
2663 UpDataStructsAccessMode: {2329 UpDataStructsAccessMode: {
2664 _enum: ['Normal', 'AllowList']2330 _enum: ['Normal', 'AllowList']
2665 },2331 },
2666 /**2332 /**
2667 * Lookup318: up_data_structs::CollectionLimits2333 * Lookup241: up_data_structs::CollectionLimits
2668 **/2334 **/
2669 UpDataStructsCollectionLimits: {2335 UpDataStructsCollectionLimits: {
2670 accountTokenOwnershipLimit: 'Option<u32>',2336 accountTokenOwnershipLimit: 'Option<u32>',
2671 sponsoredDataSize: 'Option<u32>',2337 sponsoredDataSize: 'Option<u32>',
2677 ownerCanDestroy: 'Option<bool>',2343 ownerCanDestroy: 'Option<bool>',
2678 transfersEnabled: 'Option<bool>'2344 transfersEnabled: 'Option<bool>'
2679 },2345 },
2680 /**2346 /**
2681 * Lookup320: up_data_structs::SponsoringRateLimit2347 * Lookup243: up_data_structs::SponsoringRateLimit
2682 **/2348 **/
2683 UpDataStructsSponsoringRateLimit: {2349 UpDataStructsSponsoringRateLimit: {
2684 _enum: {2350 _enum: {
2685 SponsoringDisabled: 'Null',2351 SponsoringDisabled: 'Null',
2686 Blocks: 'u32'2352 Blocks: 'u32'
2687 }2353 }
2688 },2354 },
2689 /**2355 /**
2690 * Lookup323: up_data_structs::CollectionPermissions2356 * Lookup246: up_data_structs::CollectionPermissions
2691 **/2357 **/
2692 UpDataStructsCollectionPermissions: {2358 UpDataStructsCollectionPermissions: {
2693 access: 'Option<UpDataStructsAccessMode>',2359 access: 'Option<UpDataStructsAccessMode>',
2694 mintMode: 'Option<bool>',2360 mintMode: 'Option<bool>',
2695 nesting: 'Option<UpDataStructsNestingPermissions>'2361 nesting: 'Option<UpDataStructsNestingPermissions>'
2696 },2362 },
2697 /**2363 /**
2698 * Lookup325: up_data_structs::NestingPermissions2364 * Lookup248: up_data_structs::NestingPermissions
2699 **/2365 **/
2700 UpDataStructsNestingPermissions: {2366 UpDataStructsNestingPermissions: {
2701 tokenOwner: 'bool',2367 tokenOwner: 'bool',
2702 collectionAdmin: 'bool',2368 collectionAdmin: 'bool',
2703 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'2369 restricted: 'Option<UpDataStructsOwnerRestrictedSet>'
2704 },2370 },
2705 /**2371 /**
2706 * Lookup327: up_data_structs::OwnerRestrictedSet2372 * Lookup250: up_data_structs::OwnerRestrictedSet
2707 **/2373 **/
2708 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',2374 UpDataStructsOwnerRestrictedSet: 'BTreeSet<u32>',
2709 /**2375 /**
2710 * Lookup332: up_data_structs::PropertyKeyPermission2376 * Lookup255: up_data_structs::PropertyKeyPermission
2711 **/2377 **/
2712 UpDataStructsPropertyKeyPermission: {2378 UpDataStructsPropertyKeyPermission: {
2713 key: 'Bytes',2379 key: 'Bytes',
2714 permission: 'UpDataStructsPropertyPermission'2380 permission: 'UpDataStructsPropertyPermission'
2715 },2381 },
2716 /**2382 /**
2717 * Lookup333: up_data_structs::PropertyPermission2383 * Lookup256: up_data_structs::PropertyPermission
2718 **/2384 **/
2719 UpDataStructsPropertyPermission: {2385 UpDataStructsPropertyPermission: {
2720 mutable: 'bool',2386 mutable: 'bool',
2721 collectionAdmin: 'bool',2387 collectionAdmin: 'bool',
2722 tokenOwner: 'bool'2388 tokenOwner: 'bool'
2723 },2389 },
2724 /**2390 /**
2725 * Lookup336: up_data_structs::Property2391 * Lookup259: up_data_structs::Property
2726 **/2392 **/
2727 UpDataStructsProperty: {2393 UpDataStructsProperty: {
2728 key: 'Bytes',2394 key: 'Bytes',
2729 value: 'Bytes'2395 value: 'Bytes'
2730 },2396 },
2731 /**2397 /**
2732 * Lookup339: up_data_structs::CreateItemData2398 * Lookup262: up_data_structs::CreateItemData
2733 **/2399 **/
2734 UpDataStructsCreateItemData: {2400 UpDataStructsCreateItemData: {
2735 _enum: {2401 _enum: {
2736 NFT: 'UpDataStructsCreateNftData',2402 NFT: 'UpDataStructsCreateNftData',
2737 Fungible: 'UpDataStructsCreateFungibleData',2403 Fungible: 'UpDataStructsCreateFungibleData',
2738 ReFungible: 'UpDataStructsCreateReFungibleData'2404 ReFungible: 'UpDataStructsCreateReFungibleData'
2739 }2405 }
2740 },2406 },
2741 /**2407 /**
2742 * Lookup340: up_data_structs::CreateNftData2408 * Lookup263: up_data_structs::CreateNftData
2743 **/2409 **/
2744 UpDataStructsCreateNftData: {2410 UpDataStructsCreateNftData: {
2745 properties: 'Vec<UpDataStructsProperty>'2411 properties: 'Vec<UpDataStructsProperty>'
2746 },2412 },
2747 /**2413 /**
2748 * Lookup341: up_data_structs::CreateFungibleData2414 * Lookup264: up_data_structs::CreateFungibleData
2749 **/2415 **/
2750 UpDataStructsCreateFungibleData: {2416 UpDataStructsCreateFungibleData: {
2751 value: 'u128'2417 value: 'u128'
2752 },2418 },
2753 /**2419 /**
2754 * Lookup342: up_data_structs::CreateReFungibleData2420 * Lookup265: up_data_structs::CreateReFungibleData
2755 **/2421 **/
2756 UpDataStructsCreateReFungibleData: {2422 UpDataStructsCreateReFungibleData: {
2757 pieces: 'u128',2423 pieces: 'u128',
2758 properties: 'Vec<UpDataStructsProperty>'2424 properties: 'Vec<UpDataStructsProperty>'
2759 },2425 },
2760 /**2426 /**
2761 * Lookup345: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2427 * Lookup268: up_data_structs::CreateItemExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2762 **/2428 **/
2763 UpDataStructsCreateItemExData: {2429 UpDataStructsCreateItemExData: {
2764 _enum: {2430 _enum: {
2765 NFT: 'Vec<UpDataStructsCreateNftExData>',2431 NFT: 'Vec<UpDataStructsCreateNftExData>',
2768 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'2434 RefungibleMultipleOwners: 'UpDataStructsCreateRefungibleExMultipleOwners'
2769 }2435 }
2770 },2436 },
2771 /**2437 /**
2772 * Lookup347: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2438 * Lookup270: up_data_structs::CreateNftExData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2773 **/2439 **/
2774 UpDataStructsCreateNftExData: {2440 UpDataStructsCreateNftExData: {
2775 properties: 'Vec<UpDataStructsProperty>',2441 properties: 'Vec<UpDataStructsProperty>',
2776 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'2442 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
2777 },2443 },
2778 /**2444 /**
2779 * Lookup354: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2445 * Lookup277: up_data_structs::CreateRefungibleExSingleOwner<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2780 **/2446 **/
2781 UpDataStructsCreateRefungibleExSingleOwner: {2447 UpDataStructsCreateRefungibleExSingleOwner: {
2782 user: 'PalletEvmAccountBasicCrossAccountIdRepr',2448 user: 'PalletEvmAccountBasicCrossAccountIdRepr',
2783 pieces: 'u128',2449 pieces: 'u128',
2784 properties: 'Vec<UpDataStructsProperty>'2450 properties: 'Vec<UpDataStructsProperty>'
2785 },2451 },
2786 /**2452 /**
2787 * Lookup356: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>2453 * Lookup279: up_data_structs::CreateRefungibleExMultipleOwners<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
2788 **/2454 **/
2789 UpDataStructsCreateRefungibleExMultipleOwners: {2455 UpDataStructsCreateRefungibleExMultipleOwners: {
2790 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',2456 users: 'BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>',
2791 properties: 'Vec<UpDataStructsProperty>'2457 properties: 'Vec<UpDataStructsProperty>'
2792 },2458 },
2793 /**2459 /**
2794 * Lookup357: pallet_configuration::pallet::Call<T>2460 * Lookup280: pallet_configuration::pallet::Call<T>
2795 **/2461 **/
2796 PalletConfigurationCall: {2462 PalletConfigurationCall: {
2797 _enum: {2463 _enum: {
2798 set_weight_to_fee_coefficient_override: {2464 set_weight_to_fee_coefficient_override: {
2818 }2484 }
2819 }2485 }
2820 },2486 },
2821 /**2487 /**
2822 * Lookup362: pallet_configuration::AppPromotionConfiguration<BlockNumber>2488 * Lookup285: pallet_configuration::AppPromotionConfiguration<BlockNumber>
2823 **/2489 **/
2824 PalletConfigurationAppPromotionConfiguration: {2490 PalletConfigurationAppPromotionConfiguration: {
2825 recalculationInterval: 'Option<u32>',2491 recalculationInterval: 'Option<u32>',
2826 pendingInterval: 'Option<u32>',2492 pendingInterval: 'Option<u32>',
2827 intervalIncome: 'Option<Perbill>',2493 intervalIncome: 'Option<Perbill>',
2828 maxStakersPerCalculation: 'Option<u8>'2494 maxStakersPerCalculation: 'Option<u8>'
2829 },2495 },
2830 /**2496 /**
2831 * Lookup366: pallet_template_transaction_payment::Call<T>2497 * Lookup289: pallet_template_transaction_payment::Call<T>
2832 **/2498 **/
2833 PalletTemplateTransactionPaymentCall: 'Null',2499 PalletTemplateTransactionPaymentCall: 'Null',
2834 /**2500 /**
2835 * Lookup367: pallet_structure::pallet::Call<T>2501 * Lookup290: pallet_structure::pallet::Call<T>
2836 **/2502 **/
2837 PalletStructureCall: 'Null',2503 PalletStructureCall: 'Null',
2838 /**2504 /**
2839 * Lookup368: pallet_rmrk_core::pallet::Call<T>2505 * Lookup291: pallet_rmrk_core::pallet::Call<T>
2840 **/2506 **/
2841 PalletRmrkCoreCall: {2507 PalletRmrkCoreCall: {
2842 _enum: {2508 _enum: {
2843 create_collection: {2509 create_collection: {
2926 }2592 }
2927 }2593 }
2928 },2594 },
2929 /**2595 /**
2930 * Lookup374: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2596 * Lookup297: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2931 **/2597 **/
2932 RmrkTraitsResourceResourceTypes: {2598 RmrkTraitsResourceResourceTypes: {
2933 _enum: {2599 _enum: {
2934 Basic: 'RmrkTraitsResourceBasicResource',2600 Basic: 'RmrkTraitsResourceBasicResource',
2935 Composable: 'RmrkTraitsResourceComposableResource',2601 Composable: 'RmrkTraitsResourceComposableResource',
2936 Slot: 'RmrkTraitsResourceSlotResource'2602 Slot: 'RmrkTraitsResourceSlotResource'
2937 }2603 }
2938 },2604 },
2939 /**2605 /**
2940 * Lookup376: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2606 * Lookup299: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2941 **/2607 **/
2942 RmrkTraitsResourceBasicResource: {2608 RmrkTraitsResourceBasicResource: {
2943 src: 'Option<Bytes>',2609 src: 'Option<Bytes>',
2944 metadata: 'Option<Bytes>',2610 metadata: 'Option<Bytes>',
2945 license: 'Option<Bytes>',2611 license: 'Option<Bytes>',
2946 thumb: 'Option<Bytes>'2612 thumb: 'Option<Bytes>'
2947 },2613 },
2948 /**2614 /**
2949 * Lookup378: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2615 * Lookup301: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2950 **/2616 **/
2951 RmrkTraitsResourceComposableResource: {2617 RmrkTraitsResourceComposableResource: {
2952 parts: 'Vec<u32>',2618 parts: 'Vec<u32>',
2953 base: 'u32',2619 base: 'u32',
2956 license: 'Option<Bytes>',2622 license: 'Option<Bytes>',
2957 thumb: 'Option<Bytes>'2623 thumb: 'Option<Bytes>'
2958 },2624 },
2959 /**2625 /**
2960 * Lookup379: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2626 * Lookup302: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2961 **/2627 **/
2962 RmrkTraitsResourceSlotResource: {2628 RmrkTraitsResourceSlotResource: {
2963 base: 'u32',2629 base: 'u32',
2964 src: 'Option<Bytes>',2630 src: 'Option<Bytes>',
2967 license: 'Option<Bytes>',2633 license: 'Option<Bytes>',
2968 thumb: 'Option<Bytes>'2634 thumb: 'Option<Bytes>'
2969 },2635 },
2970 /**2636 /**
2971 * Lookup382: pallet_rmrk_equip::pallet::Call<T>2637 * Lookup305: pallet_rmrk_equip::pallet::Call<T>
2972 **/2638 **/
2973 PalletRmrkEquipCall: {2639 PalletRmrkEquipCall: {
2974 _enum: {2640 _enum: {
2975 create_base: {2641 create_base: {
2988 }2654 }
2989 }2655 }
2990 },2656 },
2991 /**2657 /**
2992 * Lookup385: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2658 * Lookup308: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
2993 **/2659 **/
2994 RmrkTraitsPartPartType: {2660 RmrkTraitsPartPartType: {
2995 _enum: {2661 _enum: {
2996 FixedPart: 'RmrkTraitsPartFixedPart',2662 FixedPart: 'RmrkTraitsPartFixedPart',
2997 SlotPart: 'RmrkTraitsPartSlotPart'2663 SlotPart: 'RmrkTraitsPartSlotPart'
2998 }2664 }
2999 },2665 },
3000 /**2666 /**
3001 * Lookup387: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2667 * Lookup310: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3002 **/2668 **/
3003 RmrkTraitsPartFixedPart: {2669 RmrkTraitsPartFixedPart: {
3004 id: 'u32',2670 id: 'u32',
3005 z: 'u32',2671 z: 'u32',
3006 src: 'Bytes'2672 src: 'Bytes'
3007 },2673 },
3008 /**2674 /**
3009 * Lookup388: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2675 * Lookup311: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3010 **/2676 **/
3011 RmrkTraitsPartSlotPart: {2677 RmrkTraitsPartSlotPart: {
3012 id: 'u32',2678 id: 'u32',
3013 equippable: 'RmrkTraitsPartEquippableList',2679 equippable: 'RmrkTraitsPartEquippableList',
3014 src: 'Bytes',2680 src: 'Bytes',
3015 z: 'u32'2681 z: 'u32'
3016 },2682 },
3017 /**2683 /**
3018 * Lookup389: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2684 * Lookup312: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3019 **/2685 **/
3020 RmrkTraitsPartEquippableList: {2686 RmrkTraitsPartEquippableList: {
3021 _enum: {2687 _enum: {
3022 All: 'Null',2688 All: 'Null',
3023 Empty: 'Null',2689 Empty: 'Null',
3024 Custom: 'Vec<u32>'2690 Custom: 'Vec<u32>'
3025 }2691 }
3026 },2692 },
3027 /**2693 /**
3028 * Lookup391: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>2694 * Lookup314: rmrk_traits::theme::Theme<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>, S>>
3029 **/2695 **/
3030 RmrkTraitsTheme: {2696 RmrkTraitsTheme: {
3031 name: 'Bytes',2697 name: 'Bytes',
3032 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2698 properties: 'Vec<RmrkTraitsThemeThemeProperty>',
3033 inherit: 'bool'2699 inherit: 'bool'
3034 },2700 },
3035 /**2701 /**
3036 * Lookup393: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2702 * Lookup316: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3037 **/2703 **/
3038 RmrkTraitsThemeThemeProperty: {2704 RmrkTraitsThemeThemeProperty: {
3039 key: 'Bytes',2705 key: 'Bytes',
3040 value: 'Bytes'2706 value: 'Bytes'
3041 },2707 },
3042 /**2708 /**
3043 * Lookup395: pallet_app_promotion::pallet::Call<T>2709 * Lookup318: pallet_app_promotion::pallet::Call<T>
3044 **/2710 **/
3045 PalletAppPromotionCall: {2711 PalletAppPromotionCall: {
3046 _enum: {2712 _enum: {
3047 set_admin_address: {2713 set_admin_address: {
3068 }2734 }
3069 }2735 }
3070 },2736 },
3071 /**2737 /**
3072 * Lookup396: pallet_foreign_assets::module::Call<T>2738 * Lookup319: pallet_foreign_assets::module::Call<T>
3073 **/2739 **/
3074 PalletForeignAssetsModuleCall: {2740 PalletForeignAssetsModuleCall: {
3075 _enum: {2741 _enum: {
3076 register_foreign_asset: {2742 register_foreign_asset: {
3085 }2751 }
3086 }2752 }
3087 },2753 },
3088 /**2754 /**
3089 * Lookup397: pallet_evm::pallet::Call<T>2755 * Lookup320: pallet_evm::pallet::Call<T>
3090 **/2756 **/
3091 PalletEvmCall: {2757 PalletEvmCall: {
3092 _enum: {2758 _enum: {
3093 withdraw: {2759 withdraw: {
3128 }2794 }
3129 }2795 }
3130 },2796 },
3131 /**2797 /**
3132 * Lookup403: pallet_ethereum::pallet::Call<T>2798 * Lookup326: pallet_ethereum::pallet::Call<T>
3133 **/2799 **/
3134 PalletEthereumCall: {2800 PalletEthereumCall: {
3135 _enum: {2801 _enum: {
3136 transact: {2802 transact: {
3137 transaction: 'EthereumTransactionTransactionV2'2803 transaction: 'EthereumTransactionTransactionV2'
3138 }2804 }
3139 }2805 }
3140 },2806 },
3141 /**2807 /**
3142 * Lookup404: ethereum::transaction::TransactionV22808 * Lookup327: ethereum::transaction::TransactionV2
3143 **/2809 **/
3144 EthereumTransactionTransactionV2: {2810 EthereumTransactionTransactionV2: {
3145 _enum: {2811 _enum: {
3146 Legacy: 'EthereumTransactionLegacyTransaction',2812 Legacy: 'EthereumTransactionLegacyTransaction',
3147 EIP2930: 'EthereumTransactionEip2930Transaction',2813 EIP2930: 'EthereumTransactionEip2930Transaction',
3148 EIP1559: 'EthereumTransactionEip1559Transaction'2814 EIP1559: 'EthereumTransactionEip1559Transaction'
3149 }2815 }
3150 },2816 },
3151 /**2817 /**
3152 * Lookup405: ethereum::transaction::LegacyTransaction2818 * Lookup328: ethereum::transaction::LegacyTransaction
3153 **/2819 **/
3154 EthereumTransactionLegacyTransaction: {2820 EthereumTransactionLegacyTransaction: {
3155 nonce: 'U256',2821 nonce: 'U256',
3156 gasPrice: 'U256',2822 gasPrice: 'U256',
3160 input: 'Bytes',2826 input: 'Bytes',
3161 signature: 'EthereumTransactionTransactionSignature'2827 signature: 'EthereumTransactionTransactionSignature'
3162 },2828 },
3163 /**2829 /**
3164 * Lookup406: ethereum::transaction::TransactionAction2830 * Lookup329: ethereum::transaction::TransactionAction
3165 **/2831 **/
3166 EthereumTransactionTransactionAction: {2832 EthereumTransactionTransactionAction: {
3167 _enum: {2833 _enum: {
3168 Call: 'H160',2834 Call: 'H160',
3169 Create: 'Null'2835 Create: 'Null'
3170 }2836 }
3171 },2837 },
3172 /**2838 /**
3173 * Lookup407: ethereum::transaction::TransactionSignature2839 * Lookup330: ethereum::transaction::TransactionSignature
3174 **/2840 **/
3175 EthereumTransactionTransactionSignature: {2841 EthereumTransactionTransactionSignature: {
3176 v: 'u64',2842 v: 'u64',
3177 r: 'H256',2843 r: 'H256',
3178 s: 'H256'2844 s: 'H256'
3179 },2845 },
3180 /**2846 /**
3181 * Lookup409: ethereum::transaction::EIP2930Transaction2847 * Lookup332: ethereum::transaction::EIP2930Transaction
3182 **/2848 **/
3183 EthereumTransactionEip2930Transaction: {2849 EthereumTransactionEip2930Transaction: {
3184 chainId: 'u64',2850 chainId: 'u64',
3185 nonce: 'U256',2851 nonce: 'U256',
3193 r: 'H256',2859 r: 'H256',
3194 s: 'H256'2860 s: 'H256'
3195 },2861 },
3196 /**2862 /**
3197 * Lookup411: ethereum::transaction::AccessListItem2863 * Lookup334: ethereum::transaction::AccessListItem
3198 **/2864 **/
3199 EthereumTransactionAccessListItem: {2865 EthereumTransactionAccessListItem: {
3200 address: 'H160',2866 address: 'H160',
3201 storageKeys: 'Vec<H256>'2867 storageKeys: 'Vec<H256>'
3202 },2868 },
3203 /**2869 /**
3204 * Lookup412: ethereum::transaction::EIP1559Transaction2870 * Lookup335: ethereum::transaction::EIP1559Transaction
3205 **/2871 **/
3206 EthereumTransactionEip1559Transaction: {2872 EthereumTransactionEip1559Transaction: {
3207 chainId: 'u64',2873 chainId: 'u64',
3208 nonce: 'U256',2874 nonce: 'U256',
3217 r: 'H256',2883 r: 'H256',
3218 s: 'H256'2884 s: 'H256'
3219 },2885 },
3220 /**2886 /**
3221 * Lookup413: pallet_evm_migration::pallet::Call<T>2887 * Lookup336: pallet_evm_migration::pallet::Call<T>
3222 **/2888 **/
3223 PalletEvmMigrationCall: {2889 PalletEvmMigrationCall: {
3224 _enum: {2890 _enum: {
3225 begin: {2891 begin: {
3241 }2907 }
3242 }2908 }
3243 },2909 },
3244 /**2910 /**
3245 * Lookup417: pallet_maintenance::pallet::Call<T>2911 * Lookup340: pallet_maintenance::pallet::Call<T>
3246 **/2912 **/
3247 PalletMaintenanceCall: {2913 PalletMaintenanceCall: {
3248 _enum: ['enable', 'disable']2914 _enum: ['enable', 'disable']
3249 },2915 },
3250 /**2916 /**
3251 * Lookup418: pallet_test_utils::pallet::Call<T>2917 * Lookup341: pallet_test_utils::pallet::Call<T>
3252 **/2918 **/
3253 PalletTestUtilsCall: {2919 PalletTestUtilsCall: {
3254 _enum: {2920 _enum: {
3255 enable: 'Null',2921 enable: 'Null',
3266 }2932 }
3267 }2933 }
3268 },2934 },
3269 /**2935 /**
3270 * Lookup420: pallet_sudo::pallet::Error<T>2936 * Lookup343: pallet_sudo::pallet::Error<T>
3271 **/2937 **/
3272 PalletSudoError: {2938 PalletSudoError: {
3273 _enum: ['RequireSudo']2939 _enum: ['RequireSudo']
3274 },2940 },
3275 /**2941 /**
3276 * Lookup422: orml_vesting::module::Error<T>2942 * Lookup345: orml_vesting::module::Error<T>
3277 **/2943 **/
3278 OrmlVestingModuleError: {2944 OrmlVestingModuleError: {
3279 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2945 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
3280 },2946 },
3281 /**2947 /**
3282 * Lookup423: orml_xtokens::module::Error<T>2948 * Lookup346: orml_xtokens::module::Error<T>
3283 **/2949 **/
3284 OrmlXtokensModuleError: {2950 OrmlXtokensModuleError: {
3285 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2951 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
3286 },2952 },
3287 /**2953 /**
3288 * Lookup426: orml_tokens::BalanceLock<Balance>2954 * Lookup349: orml_tokens::BalanceLock<Balance>
3289 **/2955 **/
3290 OrmlTokensBalanceLock: {2956 OrmlTokensBalanceLock: {
3291 id: '[u8;8]',2957 id: '[u8;8]',
3292 amount: 'u128'2958 amount: 'u128'
3293 },2959 },
3294 /**2960 /**
3295 * Lookup428: orml_tokens::AccountData<Balance>2961 * Lookup351: orml_tokens::AccountData<Balance>
3296 **/2962 **/
3297 OrmlTokensAccountData: {2963 OrmlTokensAccountData: {
3298 free: 'u128',2964 free: 'u128',
3299 reserved: 'u128',2965 reserved: 'u128',
3300 frozen: 'u128'2966 frozen: 'u128'
3301 },2967 },
3302 /**2968 /**
3303 * Lookup430: orml_tokens::ReserveData<ReserveIdentifier, Balance>2969 * Lookup353: orml_tokens::ReserveData<ReserveIdentifier, Balance>
3304 **/2970 **/
3305 OrmlTokensReserveData: {2971 OrmlTokensReserveData: {
3306 id: 'Null',2972 id: 'Null',
3307 amount: 'u128'2973 amount: 'u128'
3308 },2974 },
3309 /**2975 /**
3310 * Lookup432: orml_tokens::module::Error<T>2976 * Lookup355: orml_tokens::module::Error<T>
3311 **/2977 **/
3312 OrmlTokensModuleError: {2978 OrmlTokensModuleError: {
3313 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']2979 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
3314 },2980 },
3315 /**2981 /**
3316 * Lookup434: cumulus_pallet_xcmp_queue::InboundChannelDetails2982 * Lookup357: cumulus_pallet_xcmp_queue::InboundChannelDetails
3317 **/2983 **/
3318 CumulusPalletXcmpQueueInboundChannelDetails: {2984 CumulusPalletXcmpQueueInboundChannelDetails: {
3319 sender: 'u32',2985 sender: 'u32',
3320 state: 'CumulusPalletXcmpQueueInboundState',2986 state: 'CumulusPalletXcmpQueueInboundState',
3321 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'2987 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
3322 },2988 },
3323 /**2989 /**
3324 * Lookup435: cumulus_pallet_xcmp_queue::InboundState2990 * Lookup358: cumulus_pallet_xcmp_queue::InboundState
3325 **/2991 **/
3326 CumulusPalletXcmpQueueInboundState: {2992 CumulusPalletXcmpQueueInboundState: {
3327 _enum: ['Ok', 'Suspended']2993 _enum: ['Ok', 'Suspended']
3328 },2994 },
3329 /**2995 /**
3330 * Lookup438: polkadot_parachain::primitives::XcmpMessageFormat2996 * Lookup361: polkadot_parachain::primitives::XcmpMessageFormat
3331 **/2997 **/
3332 PolkadotParachainPrimitivesXcmpMessageFormat: {2998 PolkadotParachainPrimitivesXcmpMessageFormat: {
3333 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']2999 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
3334 },3000 },
3335 /**3001 /**
3336 * Lookup441: cumulus_pallet_xcmp_queue::OutboundChannelDetails3002 * Lookup364: cumulus_pallet_xcmp_queue::OutboundChannelDetails
3337 **/3003 **/
3338 CumulusPalletXcmpQueueOutboundChannelDetails: {3004 CumulusPalletXcmpQueueOutboundChannelDetails: {
3339 recipient: 'u32',3005 recipient: 'u32',
3340 state: 'CumulusPalletXcmpQueueOutboundState',3006 state: 'CumulusPalletXcmpQueueOutboundState',
3341 signalsExist: 'bool',3007 signalsExist: 'bool',
3342 firstIndex: 'u16',3008 firstIndex: 'u16',
3343 lastIndex: 'u16'3009 lastIndex: 'u16'
3344 },3010 },
3345 /**3011 /**
3346 * Lookup442: cumulus_pallet_xcmp_queue::OutboundState3012 * Lookup365: cumulus_pallet_xcmp_queue::OutboundState
3347 **/3013 **/
3348 CumulusPalletXcmpQueueOutboundState: {3014 CumulusPalletXcmpQueueOutboundState: {
3349 _enum: ['Ok', 'Suspended']3015 _enum: ['Ok', 'Suspended']
3350 },3016 },
3351 /**3017 /**
3352 * Lookup444: cumulus_pallet_xcmp_queue::QueueConfigData3018 * Lookup367: cumulus_pallet_xcmp_queue::QueueConfigData
3353 **/3019 **/
3354 CumulusPalletXcmpQueueQueueConfigData: {3020 CumulusPalletXcmpQueueQueueConfigData: {
3355 suspendThreshold: 'u32',3021 suspendThreshold: 'u32',
3356 dropThreshold: 'u32',3022 dropThreshold: 'u32',
3359 weightRestrictDecay: 'SpWeightsWeightV2Weight',3025 weightRestrictDecay: 'SpWeightsWeightV2Weight',
3360 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3026 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
3361 },3027 },
3362 /**3028 /**
3363 * Lookup446: cumulus_pallet_xcmp_queue::pallet::Error<T>3029 * Lookup369: cumulus_pallet_xcmp_queue::pallet::Error<T>
3364 **/3030 **/
3365 CumulusPalletXcmpQueueError: {3031 CumulusPalletXcmpQueueError: {
3366 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3032 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
3367 },3033 },
3368 /**3034 /**
3369 * Lookup447: pallet_xcm::pallet::Error<T>3035 * Lookup370: pallet_xcm::pallet::Error<T>
3370 **/3036 **/
3371 PalletXcmError: {3037 PalletXcmError: {
3372 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3038 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
3373 },3039 },
3374 /**3040 /**
3375 * Lookup448: cumulus_pallet_xcm::pallet::Error<T>3041 * Lookup371: cumulus_pallet_xcm::pallet::Error<T>
3376 **/3042 **/
3377 CumulusPalletXcmError: 'Null',3043 CumulusPalletXcmError: 'Null',
3378 /**3044 /**
3379 * Lookup449: cumulus_pallet_dmp_queue::ConfigData3045 * Lookup372: cumulus_pallet_dmp_queue::ConfigData
3380 **/3046 **/
3381 CumulusPalletDmpQueueConfigData: {3047 CumulusPalletDmpQueueConfigData: {
3382 maxIndividual: 'SpWeightsWeightV2Weight'3048 maxIndividual: 'SpWeightsWeightV2Weight'
3383 },3049 },
3384 /**3050 /**
3385 * Lookup450: cumulus_pallet_dmp_queue::PageIndexData3051 * Lookup373: cumulus_pallet_dmp_queue::PageIndexData
3386 **/3052 **/
3387 CumulusPalletDmpQueuePageIndexData: {3053 CumulusPalletDmpQueuePageIndexData: {
3388 beginUsed: 'u32',3054 beginUsed: 'u32',
3389 endUsed: 'u32',3055 endUsed: 'u32',
3390 overweightCount: 'u64'3056 overweightCount: 'u64'
3391 },3057 },
3392 /**3058 /**
3393 * Lookup453: cumulus_pallet_dmp_queue::pallet::Error<T>3059 * Lookup376: cumulus_pallet_dmp_queue::pallet::Error<T>
3394 **/3060 **/
3395 CumulusPalletDmpQueueError: {3061 CumulusPalletDmpQueueError: {
3396 _enum: ['Unknown', 'OverLimit']3062 _enum: ['Unknown', 'OverLimit']
3397 },3063 },
3398 /**3064 /**
3399 * Lookup457: pallet_unique::Error<T>3065 * Lookup380: pallet_unique::Error<T>
3400 **/3066 **/
3401 PalletUniqueError: {3067 PalletUniqueError: {
3402 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3068 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
3403 },3069 },
3404 /**3070 /**
3405 * Lookup458: pallet_configuration::pallet::Error<T>3071 * Lookup381: pallet_configuration::pallet::Error<T>
3406 **/3072 **/
3407 PalletConfigurationError: {3073 PalletConfigurationError: {
3408 _enum: ['InconsistentConfiguration']3074 _enum: ['InconsistentConfiguration']
3409 },3075 },
3410 /**3076 /**
3411 * Lookup459: up_data_structs::Collection<sp_core::crypto::AccountId32>3077 * Lookup382: up_data_structs::Collection<sp_core::crypto::AccountId32>
3412 **/3078 **/
3413 UpDataStructsCollection: {3079 UpDataStructsCollection: {
3414 owner: 'AccountId32',3080 owner: 'AccountId32',
3415 mode: 'UpDataStructsCollectionMode',3081 mode: 'UpDataStructsCollectionMode',
3421 permissions: 'UpDataStructsCollectionPermissions',3087 permissions: 'UpDataStructsCollectionPermissions',
3422 flags: '[u8;1]'3088 flags: '[u8;1]'
3423 },3089 },
3424 /**3090 /**
3425 * Lookup460: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3091 * Lookup383: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
3426 **/3092 **/
3427 UpDataStructsSponsorshipStateAccountId32: {3093 UpDataStructsSponsorshipStateAccountId32: {
3428 _enum: {3094 _enum: {
3429 Disabled: 'Null',3095 Disabled: 'Null',
3430 Unconfirmed: 'AccountId32',3096 Unconfirmed: 'AccountId32',
3431 Confirmed: 'AccountId32'3097 Confirmed: 'AccountId32'
3432 }3098 }
3433 },3099 },
3434 /**3100 /**
3435 * Lookup461: up_data_structs::Properties3101 * Lookup385: up_data_structs::Properties
3436 **/3102 **/
3437 UpDataStructsProperties: {3103 UpDataStructsProperties: {
3438 map: 'UpDataStructsPropertiesMapBoundedVec',3104 map: 'UpDataStructsPropertiesMapBoundedVec',
3439 consumedSpace: 'u32',3105 consumedSpace: 'u32',
3440 spaceLimit: 'u32'3106 spaceLimit: 'u32'
3441 },3107 },
3442 /**3108 /**
3443 * Lookup462: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3109 * Lookup386: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3444 **/3110 **/
3445 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3111 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
3446 /**3112 /**
3447 * Lookup467: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3113 * Lookup391: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
3448 **/3114 **/
3449 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3115 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
3450 /**3116 /**
3451 * Lookup474: up_data_structs::CollectionStats3117 * Lookup398: up_data_structs::CollectionStats
3452 **/3118 **/
3453 UpDataStructsCollectionStats: {3119 UpDataStructsCollectionStats: {
3454 created: 'u32',3120 created: 'u32',
3455 destroyed: 'u32',3121 destroyed: 'u32',
3456 alive: 'u32'3122 alive: 'u32'
3457 },3123 },
3458 /**3124 /**
3459 * Lookup475: up_data_structs::TokenChild3125 * Lookup399: up_data_structs::TokenChild
3460 **/3126 **/
3461 UpDataStructsTokenChild: {3127 UpDataStructsTokenChild: {
3462 token: 'u32',3128 token: 'u32',
3463 collection: 'u32'3129 collection: 'u32'
3464 },3130 },
3465 /**3131 /**
3466 * Lookup476: PhantomType::up_data_structs<T>3132 * Lookup400: PhantomType::up_data_structs<T>
3467 **/3133 **/
3468 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild,UpPovEstimateRpcPovInfo);0]',3134 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild,UpPovEstimateRpcPovInfo);0]',
3469 /**3135 /**
3470 * Lookup478: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3136 * Lookup402: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3471 **/3137 **/
3472 UpDataStructsTokenData: {3138 UpDataStructsTokenData: {
3473 properties: 'Vec<UpDataStructsProperty>',3139 properties: 'Vec<UpDataStructsProperty>',
3474 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3140 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',
3475 pieces: 'u128'3141 pieces: 'u128'
3476 },3142 },
3477 /**3143 /**
3478 * Lookup480: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3144 * Lookup404: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
3479 **/3145 **/
3480 UpDataStructsRpcCollection: {3146 UpDataStructsRpcCollection: {
3481 owner: 'AccountId32',3147 owner: 'AccountId32',
3482 mode: 'UpDataStructsCollectionMode',3148 mode: 'UpDataStructsCollectionMode',
3491 readOnly: 'bool',3157 readOnly: 'bool',
3492 flags: 'UpDataStructsRpcCollectionFlags'3158 flags: 'UpDataStructsRpcCollectionFlags'
3493 },3159 },
3494 /**3160 /**
3495 * Lookup481: up_data_structs::RpcCollectionFlags3161 * Lookup405: up_data_structs::RpcCollectionFlags
3496 **/3162 **/
3497 UpDataStructsRpcCollectionFlags: {3163 UpDataStructsRpcCollectionFlags: {
3498 foreign: 'bool',3164 foreign: 'bool',
3499 erc721metadata: 'bool'3165 erc721metadata: 'bool'
3500 },3166 },
3501 /**3167 /**
3502 * Lookup482: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3168 * Lookup406: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>
3503 **/3169 **/
3504 RmrkTraitsCollectionCollectionInfo: {3170 RmrkTraitsCollectionCollectionInfo: {
3505 issuer: 'AccountId32',3171 issuer: 'AccountId32',
3506 metadata: 'Bytes',3172 metadata: 'Bytes',
3507 max: 'Option<u32>',3173 max: 'Option<u32>',
3508 symbol: 'Bytes',3174 symbol: 'Bytes',
3509 nftsCount: 'u32'3175 nftsCount: 'u32'
3510 },3176 },
3511 /**3177 /**
3512 * Lookup483: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3178 * Lookup407: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3513 **/3179 **/
3514 RmrkTraitsNftNftInfo: {3180 RmrkTraitsNftNftInfo: {
3515 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3181 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
3516 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3182 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',
3517 metadata: 'Bytes',3183 metadata: 'Bytes',
3518 equipped: 'bool',3184 equipped: 'bool',
3519 pending: 'bool'3185 pending: 'bool'
3520 },3186 },
3521 /**3187 /**
3522 * Lookup485: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3188 * Lookup409: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
3523 **/3189 **/
3524 RmrkTraitsNftRoyaltyInfo: {3190 RmrkTraitsNftRoyaltyInfo: {
3525 recipient: 'AccountId32',3191 recipient: 'AccountId32',
3526 amount: 'Permill'3192 amount: 'Permill'
3527 },3193 },
3528 /**3194 /**
3529 * Lookup486: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3195 * Lookup410: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3530 **/3196 **/
3531 RmrkTraitsResourceResourceInfo: {3197 RmrkTraitsResourceResourceInfo: {
3532 id: 'u32',3198 id: 'u32',
3533 resource: 'RmrkTraitsResourceResourceTypes',3199 resource: 'RmrkTraitsResourceResourceTypes',
3534 pending: 'bool',3200 pending: 'bool',
3535 pendingRemoval: 'bool'3201 pendingRemoval: 'bool'
3536 },3202 },
3537 /**3203 /**
3538 * Lookup487: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3204 * Lookup411: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3539 **/3205 **/
3540 RmrkTraitsPropertyPropertyInfo: {3206 RmrkTraitsPropertyPropertyInfo: {
3541 key: 'Bytes',3207 key: 'Bytes',
3542 value: 'Bytes'3208 value: 'Bytes'
3543 },3209 },
3544 /**3210 /**
3545 * Lookup488: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3211 * Lookup412: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
3546 **/3212 **/
3547 RmrkTraitsBaseBaseInfo: {3213 RmrkTraitsBaseBaseInfo: {
3548 issuer: 'AccountId32',3214 issuer: 'AccountId32',
3549 baseType: 'Bytes',3215 baseType: 'Bytes',
3550 symbol: 'Bytes'3216 symbol: 'Bytes'
3551 },3217 },
3552 /**3218 /**
3553 * Lookup489: rmrk_traits::nft::NftChild3219 * Lookup413: rmrk_traits::nft::NftChild
3554 **/3220 **/
3555 RmrkTraitsNftNftChild: {3221 RmrkTraitsNftNftChild: {
3556 collectionId: 'u32',3222 collectionId: 'u32',
3557 nftId: 'u32'3223 nftId: 'u32'
3558 },3224 },
3559 /**3225 /**
3560 * Lookup490: up_pov_estimate_rpc::PovInfo3226 * Lookup414: up_pov_estimate_rpc::PovInfo
3561 **/3227 **/
3562 UpPovEstimateRpcPovInfo: {3228 UpPovEstimateRpcPovInfo: {
3563 proofSize: 'u64',3229 proofSize: 'u64',
3564 compactProofSize: 'u64',3230 compactProofSize: 'u64',
3565 compressedProofSize: 'u64',3231 compressedProofSize: 'u64',
3566 results: 'Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>',3232 results: 'Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>',
3567 keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'3233 keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'
3568 },3234 },
3569 /**3235 /**
3570 * Lookup493: sp_runtime::transaction_validity::TransactionValidityError3236 * Lookup417: sp_runtime::transaction_validity::TransactionValidityError
3571 **/3237 **/
3572 SpRuntimeTransactionValidityTransactionValidityError: {3238 SpRuntimeTransactionValidityTransactionValidityError: {
3573 _enum: {3239 _enum: {
3574 Invalid: 'SpRuntimeTransactionValidityInvalidTransaction',3240 Invalid: 'SpRuntimeTransactionValidityInvalidTransaction',
3575 Unknown: 'SpRuntimeTransactionValidityUnknownTransaction'3241 Unknown: 'SpRuntimeTransactionValidityUnknownTransaction'
3576 }3242 }
3577 },3243 },
3578 /**3244 /**
3579 * Lookup494: sp_runtime::transaction_validity::InvalidTransaction3245 * Lookup418: sp_runtime::transaction_validity::InvalidTransaction
3580 **/3246 **/
3581 SpRuntimeTransactionValidityInvalidTransaction: {3247 SpRuntimeTransactionValidityInvalidTransaction: {
3582 _enum: {3248 _enum: {
3583 Call: 'Null',3249 Call: 'Null',
3593 BadSigner: 'Null'3259 BadSigner: 'Null'
3594 }3260 }
3595 },3261 },
3596 /**3262 /**
3597 * Lookup495: sp_runtime::transaction_validity::UnknownTransaction3263 * Lookup419: sp_runtime::transaction_validity::UnknownTransaction
3598 **/3264 **/
3599 SpRuntimeTransactionValidityUnknownTransaction: {3265 SpRuntimeTransactionValidityUnknownTransaction: {
3600 _enum: {3266 _enum: {
3601 CannotLookup: 'Null',3267 CannotLookup: 'Null',
3602 NoUnsignedValidator: 'Null',3268 NoUnsignedValidator: 'Null',
3603 Custom: 'u8'3269 Custom: 'u8'
3604 }3270 }
3605 },3271 },
3606 /**3272 /**
3607 * Lookup497: up_pov_estimate_rpc::TrieKeyValue3273 * Lookup421: up_pov_estimate_rpc::TrieKeyValue
3608 **/3274 **/
3609 UpPovEstimateRpcTrieKeyValue: {3275 UpPovEstimateRpcTrieKeyValue: {
3610 key: 'Bytes',3276 key: 'Bytes',
3611 value: 'Bytes'3277 value: 'Bytes'
3612 },3278 },
3613 /**3279 /**
3614 * Lookup499: pallet_common::pallet::Error<T>3280 * Lookup423: pallet_common::pallet::Error<T>
3615 **/3281 **/
3616 PalletCommonError: {3282 PalletCommonError: {
3617 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']3283 _enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']
3618 },3284 },
3619 /**3285 /**
3620 * Lookup501: pallet_fungible::pallet::Error<T>3286 * Lookup425: pallet_fungible::pallet::Error<T>
3621 **/3287 **/
3622 PalletFungibleError: {3288 PalletFungibleError: {
3623 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']3289 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']
3624 },3290 },
3625 /**3291 /**
3626 * Lookup505: pallet_refungible::pallet::Error<T>3292 * Lookup429: pallet_refungible::pallet::Error<T>
3627 **/3293 **/
3628 PalletRefungibleError: {3294 PalletRefungibleError: {
3629 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3295 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
3630 },3296 },
3631 /**3297 /**
3632 * Lookup506: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3298 * Lookup430: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3633 **/3299 **/
3634 PalletNonfungibleItemData: {3300 PalletNonfungibleItemData: {
3635 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3301 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
3636 },3302 },
3637 /**3303 /**
3638 * Lookup508: up_data_structs::PropertyScope3304 * Lookup432: up_data_structs::PropertyScope
3639 **/3305 **/
3640 UpDataStructsPropertyScope: {3306 UpDataStructsPropertyScope: {
3641 _enum: ['None', 'Rmrk']3307 _enum: ['None', 'Rmrk']
3642 },3308 },
3643 /**3309 /**
3644 * Lookup511: pallet_nonfungible::pallet::Error<T>3310 * Lookup435: pallet_nonfungible::pallet::Error<T>
3645 **/3311 **/
3646 PalletNonfungibleError: {3312 PalletNonfungibleError: {
3647 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3313 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
3648 },3314 },
3649 /**3315 /**
3650 * Lookup512: pallet_structure::pallet::Error<T>3316 * Lookup436: pallet_structure::pallet::Error<T>
3651 **/3317 **/
3652 PalletStructureError: {3318 PalletStructureError: {
3653 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3319 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
3654 },3320 },
3655 /**3321 /**
3656 * Lookup513: pallet_rmrk_core::pallet::Error<T>3322 * Lookup437: pallet_rmrk_core::pallet::Error<T>
3657 **/3323 **/
3658 PalletRmrkCoreError: {3324 PalletRmrkCoreError: {
3659 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3325 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
3660 },3326 },
3661 /**3327 /**
3662 * Lookup515: pallet_rmrk_equip::pallet::Error<T>3328 * Lookup439: pallet_rmrk_equip::pallet::Error<T>
3663 **/3329 **/
3664 PalletRmrkEquipError: {3330 PalletRmrkEquipError: {
3665 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3331 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
3666 },3332 },
3667 /**3333 /**
3668 * Lookup521: pallet_app_promotion::pallet::Error<T>3334 * Lookup445: pallet_app_promotion::pallet::Error<T>
3669 **/3335 **/
3670 PalletAppPromotionError: {3336 PalletAppPromotionError: {
3671 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3337 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
3672 },3338 },
3673 /**3339 /**
3674 * Lookup522: pallet_foreign_assets::module::Error<T>3340 * Lookup446: pallet_foreign_assets::module::Error<T>
3675 **/3341 **/
3676 PalletForeignAssetsModuleError: {3342 PalletForeignAssetsModuleError: {
3677 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3343 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
3678 },3344 },
3679 /**3345 /**
3680 * Lookup524: pallet_evm::pallet::Error<T>3346 * Lookup448: pallet_evm::pallet::Error<T>
3681 **/3347 **/
3682 PalletEvmError: {3348 PalletEvmError: {
3683 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']3349 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']
3684 },3350 },
3685 /**3351 /**
3686 * Lookup527: fp_rpc::TransactionStatus3352 * Lookup451: fp_rpc::TransactionStatus
3687 **/3353 **/
3688 FpRpcTransactionStatus: {3354 FpRpcTransactionStatus: {
3689 transactionHash: 'H256',3355 transactionHash: 'H256',
3690 transactionIndex: 'u32',3356 transactionIndex: 'u32',
3694 logs: 'Vec<EthereumLog>',3360 logs: 'Vec<EthereumLog>',
3695 logsBloom: 'EthbloomBloom'3361 logsBloom: 'EthbloomBloom'
3696 },3362 },
3697 /**3363 /**
3698 * Lookup529: ethbloom::Bloom3364 * Lookup453: ethbloom::Bloom
3699 **/3365 **/
3700 EthbloomBloom: '[u8;256]',3366 EthbloomBloom: '[u8;256]',
3701 /**3367 /**
3702 * Lookup531: ethereum::receipt::ReceiptV33368 * Lookup455: ethereum::receipt::ReceiptV3
3703 **/3369 **/
3704 EthereumReceiptReceiptV3: {3370 EthereumReceiptReceiptV3: {
3705 _enum: {3371 _enum: {
3706 Legacy: 'EthereumReceiptEip658ReceiptData',3372 Legacy: 'EthereumReceiptEip658ReceiptData',
3707 EIP2930: 'EthereumReceiptEip658ReceiptData',3373 EIP2930: 'EthereumReceiptEip658ReceiptData',
3708 EIP1559: 'EthereumReceiptEip658ReceiptData'3374 EIP1559: 'EthereumReceiptEip658ReceiptData'
3709 }3375 }
3710 },3376 },
3711 /**3377 /**
3712 * Lookup532: ethereum::receipt::EIP658ReceiptData3378 * Lookup456: ethereum::receipt::EIP658ReceiptData
3713 **/3379 **/
3714 EthereumReceiptEip658ReceiptData: {3380 EthereumReceiptEip658ReceiptData: {
3715 statusCode: 'u8',3381 statusCode: 'u8',
3716 usedGas: 'U256',3382 usedGas: 'U256',
3717 logsBloom: 'EthbloomBloom',3383 logsBloom: 'EthbloomBloom',
3718 logs: 'Vec<EthereumLog>'3384 logs: 'Vec<EthereumLog>'
3719 },3385 },
3720 /**3386 /**
3721 * Lookup533: ethereum::block::Block<ethereum::transaction::TransactionV2>3387 * Lookup457: ethereum::block::Block<ethereum::transaction::TransactionV2>
3722 **/3388 **/
3723 EthereumBlock: {3389 EthereumBlock: {
3724 header: 'EthereumHeader',3390 header: 'EthereumHeader',
3725 transactions: 'Vec<EthereumTransactionTransactionV2>',3391 transactions: 'Vec<EthereumTransactionTransactionV2>',
3726 ommers: 'Vec<EthereumHeader>'3392 ommers: 'Vec<EthereumHeader>'
3727 },3393 },
3728 /**3394 /**
3729 * Lookup534: ethereum::header::Header3395 * Lookup458: ethereum::header::Header
3730 **/3396 **/
3731 EthereumHeader: {3397 EthereumHeader: {
3732 parentHash: 'H256',3398 parentHash: 'H256',
3733 ommersHash: 'H256',3399 ommersHash: 'H256',
3745 mixHash: 'H256',3411 mixHash: 'H256',
3746 nonce: 'EthereumTypesHashH64'3412 nonce: 'EthereumTypesHashH64'
3747 },3413 },
3748 /**3414 /**
3749 * Lookup535: ethereum_types::hash::H643415 * Lookup459: ethereum_types::hash::H64
3750 **/3416 **/
3751 EthereumTypesHashH64: '[u8;8]',3417 EthereumTypesHashH64: '[u8;8]',
3752 /**3418 /**
3753 * Lookup540: pallet_ethereum::pallet::Error<T>3419 * Lookup464: pallet_ethereum::pallet::Error<T>
3754 **/3420 **/
3755 PalletEthereumError: {3421 PalletEthereumError: {
3756 _enum: ['InvalidSignature', 'PreLogExists']3422 _enum: ['InvalidSignature', 'PreLogExists']
3757 },3423 },
3758 /**3424 /**
3759 * Lookup541: pallet_evm_coder_substrate::pallet::Error<T>3425 * Lookup465: pallet_evm_coder_substrate::pallet::Error<T>
3760 **/3426 **/
3761 PalletEvmCoderSubstrateError: {3427 PalletEvmCoderSubstrateError: {
3762 _enum: ['OutOfGas', 'OutOfFund']3428 _enum: ['OutOfGas', 'OutOfFund']
3763 },3429 },
3764 /**3430 /**
3765 * Lookup542: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3431 * Lookup466: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
3766 **/3432 **/
3767 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3433 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
3768 _enum: {3434 _enum: {
3769 Disabled: 'Null',3435 Disabled: 'Null',
3770 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3436 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',
3771 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3437 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'
3772 }3438 }
3773 },3439 },
3774 /**3440 /**
3775 * Lookup543: pallet_evm_contract_helpers::SponsoringModeT3441 * Lookup467: pallet_evm_contract_helpers::SponsoringModeT
3776 **/3442 **/
3777 PalletEvmContractHelpersSponsoringModeT: {3443 PalletEvmContractHelpersSponsoringModeT: {
3778 _enum: ['Disabled', 'Allowlisted', 'Generous']3444 _enum: ['Disabled', 'Allowlisted', 'Generous']
3779 },3445 },
3780 /**3446 /**
3781 * Lookup549: pallet_evm_contract_helpers::pallet::Error<T>3447 * Lookup473: pallet_evm_contract_helpers::pallet::Error<T>
3782 **/3448 **/
3783 PalletEvmContractHelpersError: {3449 PalletEvmContractHelpersError: {
3784 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3450 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
3785 },3451 },
3786 /**3452 /**
3787 * Lookup550: pallet_evm_migration::pallet::Error<T>3453 * Lookup474: pallet_evm_migration::pallet::Error<T>
3788 **/3454 **/
3789 PalletEvmMigrationError: {3455 PalletEvmMigrationError: {
3790 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3456 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
3791 },3457 },
3792 /**3458 /**
3793 * Lookup551: pallet_maintenance::pallet::Error<T>3459 * Lookup475: pallet_maintenance::pallet::Error<T>
3794 **/3460 **/
3795 PalletMaintenanceError: 'Null',3461 PalletMaintenanceError: 'Null',
3796 /**3462 /**
3797 * Lookup552: pallet_test_utils::pallet::Error<T>3463 * Lookup476: pallet_test_utils::pallet::Error<T>
3798 **/3464 **/
3799 PalletTestUtilsError: {3465 PalletTestUtilsError: {
3800 _enum: ['TestPalletDisabled', 'TriggerRollback']3466 _enum: ['TestPalletDisabled', 'TriggerRollback']
3801 },3467 },
3802 /**3468 /**
3803 * Lookup554: sp_runtime::MultiSignature3469 * Lookup478: sp_runtime::MultiSignature
3804 **/3470 **/
3805 SpRuntimeMultiSignature: {3471 SpRuntimeMultiSignature: {
3806 _enum: {3472 _enum: {
3807 Ed25519: 'SpCoreEd25519Signature',3473 Ed25519: 'SpCoreEd25519Signature',
3808 Sr25519: 'SpCoreSr25519Signature',3474 Sr25519: 'SpCoreSr25519Signature',
3809 Ecdsa: 'SpCoreEcdsaSignature'3475 Ecdsa: 'SpCoreEcdsaSignature'
3810 }3476 }
3811 },3477 },
3812 /**3478 /**
3813 * Lookup555: sp_core::ed25519::Signature3479 * Lookup479: sp_core::ed25519::Signature
3814 **/3480 **/
3815 SpCoreEd25519Signature: '[u8;64]',3481 SpCoreEd25519Signature: '[u8;64]',
3816 /**3482 /**
3817 * Lookup557: sp_core::sr25519::Signature3483 * Lookup481: sp_core::sr25519::Signature
3818 **/3484 **/
3819 SpCoreSr25519Signature: '[u8;64]',3485 SpCoreSr25519Signature: '[u8;64]',
3820 /**3486 /**
3821 * Lookup558: sp_core::ecdsa::Signature3487 * Lookup482: sp_core::ecdsa::Signature
3822 **/3488 **/
3823 SpCoreEcdsaSignature: '[u8;65]',3489 SpCoreEcdsaSignature: '[u8;65]',
3824 /**3490 /**
3825 * Lookup561: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3491 * Lookup485: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
3826 **/3492 **/
3827 FrameSystemExtensionsCheckSpecVersion: 'Null',3493 FrameSystemExtensionsCheckSpecVersion: 'Null',
3828 /**3494 /**
3829 * Lookup562: frame_system::extensions::check_tx_version::CheckTxVersion<T>3495 * Lookup486: frame_system::extensions::check_tx_version::CheckTxVersion<T>
3830 **/3496 **/
3831 FrameSystemExtensionsCheckTxVersion: 'Null',3497 FrameSystemExtensionsCheckTxVersion: 'Null',
3832 /**3498 /**
3833 * Lookup563: frame_system::extensions::check_genesis::CheckGenesis<T>3499 * Lookup487: frame_system::extensions::check_genesis::CheckGenesis<T>
3834 **/3500 **/
3835 FrameSystemExtensionsCheckGenesis: 'Null',3501 FrameSystemExtensionsCheckGenesis: 'Null',
3836 /**3502 /**
3837 * Lookup566: frame_system::extensions::check_nonce::CheckNonce<T>3503 * Lookup490: frame_system::extensions::check_nonce::CheckNonce<T>
3838 **/3504 **/
3839 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3505 FrameSystemExtensionsCheckNonce: 'Compact<u32>',
3840 /**3506 /**
3841 * Lookup567: frame_system::extensions::check_weight::CheckWeight<T>3507 * Lookup491: frame_system::extensions::check_weight::CheckWeight<T>
3842 **/3508 **/
3843 FrameSystemExtensionsCheckWeight: 'Null',3509 FrameSystemExtensionsCheckWeight: 'Null',
3844 /**3510 /**
3845 * Lookup568: opal_runtime::runtime_common::maintenance::CheckMaintenance3511 * Lookup492: opal_runtime::runtime_common::maintenance::CheckMaintenance
3846 **/3512 **/
3847 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3513 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
3848 /**3514 /**
3849 * Lookup569: opal_runtime::runtime_common::data_management::FilterIdentity3515 * Lookup493: opal_runtime::runtime_common::identity::DisableIdentityCalls
3850 **/3516 **/
3851 OpalRuntimeRuntimeCommonDataManagementFilterIdentity: 'Null',3517 OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: 'Null',
3852 /**3518 /**
3853 * Lookup570: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3519 * Lookup494: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
3854 **/3520 **/
3855 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3521 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
3856 /**3522 /**
3857 * Lookup571: opal_runtime::Runtime3523 * Lookup495: opal_runtime::Runtime
3858 **/3524 **/
3859 OpalRuntimeRuntime: 'Null',3525 OpalRuntimeRuntime: 'Null',
3860 /**3526 /**
3861 * Lookup572: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3527 * Lookup496: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
3862 **/3528 **/
3863 PalletEthereumFakeTransactionFinalizer: 'Null'3529 PalletEthereumFakeTransactionFinalizer: 'Null'
3864};3530};
38653531
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, OpalRuntimeRuntimeCommonDataManagementFilterIdentity, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OpalRuntimeRuntimeCommonSessionKeys, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletAuthorshipCall, PalletAuthorshipError, PalletAuthorshipUncleEntryItem, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCollatorSelectionCall, PalletCollatorSelectionError, PalletCollatorSelectionEvent, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, 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, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, 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, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpConsensusAuraSr25519AppSr25519Public, SpCoreCryptoKeyTypeId, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Public, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeBlakeTwo256, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeHeader, 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, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';8import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, 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, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletConfigurationEvent, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, 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, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
99
10declare module '@polkadot/types/types/registry' {10declare module '@polkadot/types/types/registry' {
11 interface InterfaceTypes {11 interface InterfaceTypes {
74 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;74 FrameSystemLimitsWeightsPerClass: FrameSystemLimitsWeightsPerClass;
75 FrameSystemPhase: FrameSystemPhase;75 FrameSystemPhase: FrameSystemPhase;
76 OpalRuntimeRuntime: OpalRuntimeRuntime;76 OpalRuntimeRuntime: OpalRuntimeRuntime;
77 OpalRuntimeRuntimeCommonDataManagementFilterIdentity: OpalRuntimeRuntimeCommonDataManagementFilterIdentity;77 OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls: OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls;
78 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;78 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance;
79 OpalRuntimeRuntimeCommonSessionKeys: OpalRuntimeRuntimeCommonSessionKeys;
80 OrmlTokensAccountData: OrmlTokensAccountData;79 OrmlTokensAccountData: OrmlTokensAccountData;
81 OrmlTokensBalanceLock: OrmlTokensBalanceLock;80 OrmlTokensBalanceLock: OrmlTokensBalanceLock;
82 OrmlTokensModuleCall: OrmlTokensModuleCall;81 OrmlTokensModuleCall: OrmlTokensModuleCall;
93 PalletAppPromotionCall: PalletAppPromotionCall;92 PalletAppPromotionCall: PalletAppPromotionCall;
94 PalletAppPromotionError: PalletAppPromotionError;93 PalletAppPromotionError: PalletAppPromotionError;
95 PalletAppPromotionEvent: PalletAppPromotionEvent;94 PalletAppPromotionEvent: PalletAppPromotionEvent;
96 PalletAuthorshipCall: PalletAuthorshipCall;
97 PalletAuthorshipError: PalletAuthorshipError;
98 PalletAuthorshipUncleEntryItem: PalletAuthorshipUncleEntryItem;
99 PalletBalancesAccountData: PalletBalancesAccountData;95 PalletBalancesAccountData: PalletBalancesAccountData;
100 PalletBalancesBalanceLock: PalletBalancesBalanceLock;96 PalletBalancesBalanceLock: PalletBalancesBalanceLock;
101 PalletBalancesCall: PalletBalancesCall;97 PalletBalancesCall: PalletBalancesCall;
102 PalletBalancesError: PalletBalancesError;98 PalletBalancesError: PalletBalancesError;
103 PalletBalancesEvent: PalletBalancesEvent;99 PalletBalancesEvent: PalletBalancesEvent;
104 PalletBalancesReasons: PalletBalancesReasons;100 PalletBalancesReasons: PalletBalancesReasons;
105 PalletBalancesReserveData: PalletBalancesReserveData;101 PalletBalancesReserveData: PalletBalancesReserveData;
106 PalletCollatorSelectionCall: PalletCollatorSelectionCall;
107 PalletCollatorSelectionError: PalletCollatorSelectionError;
108 PalletCollatorSelectionEvent: PalletCollatorSelectionEvent;
109 PalletCommonError: PalletCommonError;102 PalletCommonError: PalletCommonError;
110 PalletCommonEvent: PalletCommonEvent;103 PalletCommonEvent: PalletCommonEvent;
111 PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;104 PalletConfigurationAppPromotionConfiguration: PalletConfigurationAppPromotionConfiguration;
134 PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;127 PalletForeignAssetsModuleEvent: PalletForeignAssetsModuleEvent;
135 PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;128 PalletForeignAssetsNativeCurrency: PalletForeignAssetsNativeCurrency;
136 PalletFungibleError: PalletFungibleError;129 PalletFungibleError: PalletFungibleError;
137 PalletIdentityBitFlags: PalletIdentityBitFlags;
138 PalletIdentityCall: PalletIdentityCall;
139 PalletIdentityError: PalletIdentityError;
140 PalletIdentityEvent: PalletIdentityEvent;
141 PalletIdentityIdentityField: PalletIdentityIdentityField;
142 PalletIdentityIdentityInfo: PalletIdentityIdentityInfo;
143 PalletIdentityJudgement: PalletIdentityJudgement;
144 PalletIdentityRegistrarInfo: PalletIdentityRegistrarInfo;
145 PalletIdentityRegistration: PalletIdentityRegistration;
146 PalletInflationCall: PalletInflationCall;130 PalletInflationCall: PalletInflationCall;
147 PalletMaintenanceCall: PalletMaintenanceCall;131 PalletMaintenanceCall: PalletMaintenanceCall;
148 PalletMaintenanceError: PalletMaintenanceError;132 PalletMaintenanceError: PalletMaintenanceError;
156 PalletRmrkEquipCall: PalletRmrkEquipCall;140 PalletRmrkEquipCall: PalletRmrkEquipCall;
157 PalletRmrkEquipError: PalletRmrkEquipError;141 PalletRmrkEquipError: PalletRmrkEquipError;
158 PalletRmrkEquipEvent: PalletRmrkEquipEvent;142 PalletRmrkEquipEvent: PalletRmrkEquipEvent;
159 PalletSessionCall: PalletSessionCall;
160 PalletSessionError: PalletSessionError;
161 PalletSessionEvent: PalletSessionEvent;
162 PalletStructureCall: PalletStructureCall;143 PalletStructureCall: PalletStructureCall;
163 PalletStructureError: PalletStructureError;144 PalletStructureError: PalletStructureError;
164 PalletStructureEvent: PalletStructureEvent;145 PalletStructureEvent: PalletStructureEvent;
209 RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;190 RmrkTraitsResourceSlotResource: RmrkTraitsResourceSlotResource;
210 RmrkTraitsTheme: RmrkTraitsTheme;191 RmrkTraitsTheme: RmrkTraitsTheme;
211 RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;192 RmrkTraitsThemeThemeProperty: RmrkTraitsThemeThemeProperty;
212 SpConsensusAuraSr25519AppSr25519Public: SpConsensusAuraSr25519AppSr25519Public;
213 SpCoreCryptoKeyTypeId: SpCoreCryptoKeyTypeId;
214 SpCoreEcdsaSignature: SpCoreEcdsaSignature;193 SpCoreEcdsaSignature: SpCoreEcdsaSignature;
215 SpCoreEd25519Signature: SpCoreEd25519Signature;194 SpCoreEd25519Signature: SpCoreEd25519Signature;
216 SpCoreSr25519Public: SpCoreSr25519Public;
217 SpCoreSr25519Signature: SpCoreSr25519Signature;195 SpCoreSr25519Signature: SpCoreSr25519Signature;
218 SpRuntimeArithmeticError: SpRuntimeArithmeticError;196 SpRuntimeArithmeticError: SpRuntimeArithmeticError;
219 SpRuntimeBlakeTwo256: SpRuntimeBlakeTwo256;
220 SpRuntimeDigest: SpRuntimeDigest;197 SpRuntimeDigest: SpRuntimeDigest;
221 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;198 SpRuntimeDigestDigestItem: SpRuntimeDigestDigestItem;
222 SpRuntimeDispatchError: SpRuntimeDispatchError;199 SpRuntimeDispatchError: SpRuntimeDispatchError;
223 SpRuntimeHeader: SpRuntimeHeader;
224 SpRuntimeModuleError: SpRuntimeModuleError;200 SpRuntimeModuleError: SpRuntimeModuleError;
225 SpRuntimeMultiSignature: SpRuntimeMultiSignature;201 SpRuntimeMultiSignature: SpRuntimeMultiSignature;
226 SpRuntimeTokenError: SpRuntimeTokenError;202 SpRuntimeTokenError: SpRuntimeTokenError;
modifiedtests/src/interfaces/types-lookup.tsdiffbeforeafterboth
5// this is required to allow for ambient/previous definitions5// this is required to allow for ambient/previous definitions
6import '@polkadot/types/lookup';6import '@polkadot/types/lookup';
77
8import type { Data } from '@polkadot/types';
9import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Set, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';8import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';
10import type { ITuple } from '@polkadot/types-codec/types';9import type { ITuple } from '@polkadot/types-codec/types';
11import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';
12import type { Event } from '@polkadot/types/interfaces/system';11import type { Event } from '@polkadot/types/interfaces/system';
197 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';196 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';
198 }197 }
199
200 /** @name PalletCollatorSelectionEvent (30) */
201 interface PalletCollatorSelectionEvent extends Enum {
202 readonly isInvulnerableAdded: boolean;
203 readonly asInvulnerableAdded: {
204 readonly invulnerable: AccountId32;
205 } & Struct;
206 readonly isInvulnerableRemoved: boolean;
207 readonly asInvulnerableRemoved: {
208 readonly invulnerable: AccountId32;
209 } & Struct;
210 readonly isLicenseObtained: boolean;
211 readonly asLicenseObtained: {
212 readonly accountId: AccountId32;
213 readonly deposit: u128;
214 } & Struct;
215 readonly isLicenseReleased: boolean;
216 readonly asLicenseReleased: {
217 readonly accountId: AccountId32;
218 readonly depositReturned: u128;
219 } & Struct;
220 readonly isCandidateAdded: boolean;
221 readonly asCandidateAdded: {
222 readonly accountId: AccountId32;
223 } & Struct;
224 readonly isCandidateRemoved: boolean;
225 readonly asCandidateRemoved: {
226 readonly accountId: AccountId32;
227 } & Struct;
228 readonly type: 'InvulnerableAdded' | 'InvulnerableRemoved' | 'LicenseObtained' | 'LicenseReleased' | 'CandidateAdded' | 'CandidateRemoved';
229 }
230
231 /** @name PalletSessionEvent (31) */
232 interface PalletSessionEvent extends Enum {
233 readonly isNewSession: boolean;
234 readonly asNewSession: {
235 readonly sessionIndex: u32;
236 } & Struct;
237 readonly type: 'NewSession';
238 }
239
240 /** @name PalletIdentityEvent (32) */
241 interface PalletIdentityEvent extends Enum {
242 readonly isIdentitySet: boolean;
243 readonly asIdentitySet: {
244 readonly who: AccountId32;
245 } & Struct;
246 readonly isIdentityCleared: boolean;
247 readonly asIdentityCleared: {
248 readonly who: AccountId32;
249 readonly deposit: u128;
250 } & Struct;
251 readonly isIdentityKilled: boolean;
252 readonly asIdentityKilled: {
253 readonly who: AccountId32;
254 readonly deposit: u128;
255 } & Struct;
256 readonly isIdentitiesInserted: boolean;
257 readonly asIdentitiesInserted: {
258 readonly amount: u32;
259 } & Struct;
260 readonly isIdentitiesRemoved: boolean;
261 readonly asIdentitiesRemoved: {
262 readonly amount: u32;
263 } & Struct;
264 readonly isJudgementRequested: boolean;
265 readonly asJudgementRequested: {
266 readonly who: AccountId32;
267 readonly registrarIndex: u32;
268 } & Struct;
269 readonly isJudgementUnrequested: boolean;
270 readonly asJudgementUnrequested: {
271 readonly who: AccountId32;
272 readonly registrarIndex: u32;
273 } & Struct;
274 readonly isJudgementGiven: boolean;
275 readonly asJudgementGiven: {
276 readonly target: AccountId32;
277 readonly registrarIndex: u32;
278 } & Struct;
279 readonly isRegistrarAdded: boolean;
280 readonly asRegistrarAdded: {
281 readonly registrarIndex: u32;
282 } & Struct;
283 readonly isSubIdentityAdded: boolean;
284 readonly asSubIdentityAdded: {
285 readonly sub: AccountId32;
286 readonly main: AccountId32;
287 readonly deposit: u128;
288 } & Struct;
289 readonly isSubIdentityRemoved: boolean;
290 readonly asSubIdentityRemoved: {
291 readonly sub: AccountId32;
292 readonly main: AccountId32;
293 readonly deposit: u128;
294 } & Struct;
295 readonly isSubIdentityRevoked: boolean;
296 readonly asSubIdentityRevoked: {
297 readonly sub: AccountId32;
298 readonly main: AccountId32;
299 readonly deposit: u128;
300 } & Struct;
301 readonly type: 'IdentitySet' | 'IdentityCleared' | 'IdentityKilled' | 'IdentitiesInserted' | 'IdentitiesRemoved' | 'JudgementRequested' | 'JudgementUnrequested' | 'JudgementGiven' | 'RegistrarAdded' | 'SubIdentityAdded' | 'SubIdentityRemoved' | 'SubIdentityRevoked';
302 }
303198
304 /** @name PalletBalancesEvent (33) */199 /** @name PalletBalancesEvent (30) */
305 interface PalletBalancesEvent extends Enum {200 interface PalletBalancesEvent extends Enum {
306 readonly isEndowed: boolean;201 readonly isEndowed: boolean;
307 readonly asEndowed: {202 readonly asEndowed: {
360 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';255 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';
361 }256 }
362257
363 /** @name FrameSupportTokensMiscBalanceStatus (34) */258 /** @name FrameSupportTokensMiscBalanceStatus (31) */
364 interface FrameSupportTokensMiscBalanceStatus extends Enum {259 interface FrameSupportTokensMiscBalanceStatus extends Enum {
365 readonly isFree: boolean;260 readonly isFree: boolean;
366 readonly isReserved: boolean;261 readonly isReserved: boolean;
367 readonly type: 'Free' | 'Reserved';262 readonly type: 'Free' | 'Reserved';
368 }263 }
369264
370 /** @name PalletTransactionPaymentEvent (35) */265 /** @name PalletTransactionPaymentEvent (32) */
371 interface PalletTransactionPaymentEvent extends Enum {266 interface PalletTransactionPaymentEvent extends Enum {
372 readonly isTransactionFeePaid: boolean;267 readonly isTransactionFeePaid: boolean;
373 readonly asTransactionFeePaid: {268 readonly asTransactionFeePaid: {
378 readonly type: 'TransactionFeePaid';273 readonly type: 'TransactionFeePaid';
379 }274 }
380275
381 /** @name PalletTreasuryEvent (36) */276 /** @name PalletTreasuryEvent (33) */
382 interface PalletTreasuryEvent extends Enum {277 interface PalletTreasuryEvent extends Enum {
383 readonly isProposed: boolean;278 readonly isProposed: boolean;
384 readonly asProposed: {279 readonly asProposed: {
420 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';315 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';
421 }316 }
422317
423 /** @name PalletSudoEvent (37) */318 /** @name PalletSudoEvent (34) */
424 interface PalletSudoEvent extends Enum {319 interface PalletSudoEvent extends Enum {
425 readonly isSudid: boolean;320 readonly isSudid: boolean;
426 readonly asSudid: {321 readonly asSudid: {
437 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';332 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';
438 }333 }
439334
440 /** @name OrmlVestingModuleEvent (41) */335 /** @name OrmlVestingModuleEvent (38) */
441 interface OrmlVestingModuleEvent extends Enum {336 interface OrmlVestingModuleEvent extends Enum {
442 readonly isVestingScheduleAdded: boolean;337 readonly isVestingScheduleAdded: boolean;
443 readonly asVestingScheduleAdded: {338 readonly asVestingScheduleAdded: {
457 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';352 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';
458 }353 }
459354
460 /** @name OrmlVestingVestingSchedule (42) */355 /** @name OrmlVestingVestingSchedule (39) */
461 interface OrmlVestingVestingSchedule extends Struct {356 interface OrmlVestingVestingSchedule extends Struct {
462 readonly start: u32;357 readonly start: u32;
463 readonly period: u32;358 readonly period: u32;
464 readonly periodCount: u32;359 readonly periodCount: u32;
465 readonly perPeriod: Compact<u128>;360 readonly perPeriod: Compact<u128>;
466 }361 }
467362
468 /** @name OrmlXtokensModuleEvent (44) */363 /** @name OrmlXtokensModuleEvent (41) */
469 interface OrmlXtokensModuleEvent extends Enum {364 interface OrmlXtokensModuleEvent extends Enum {
470 readonly isTransferredMultiAssets: boolean;365 readonly isTransferredMultiAssets: boolean;
471 readonly asTransferredMultiAssets: {366 readonly asTransferredMultiAssets: {
477 readonly type: 'TransferredMultiAssets';372 readonly type: 'TransferredMultiAssets';
478 }373 }
479374
480 /** @name XcmV1MultiassetMultiAssets (45) */375 /** @name XcmV1MultiassetMultiAssets (42) */
481 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}376 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}
482377
483 /** @name XcmV1MultiAsset (47) */378 /** @name XcmV1MultiAsset (44) */
484 interface XcmV1MultiAsset extends Struct {379 interface XcmV1MultiAsset extends Struct {
485 readonly id: XcmV1MultiassetAssetId;380 readonly id: XcmV1MultiassetAssetId;
486 readonly fun: XcmV1MultiassetFungibility;381 readonly fun: XcmV1MultiassetFungibility;
487 }382 }
488383
489 /** @name XcmV1MultiassetAssetId (48) */384 /** @name XcmV1MultiassetAssetId (45) */
490 interface XcmV1MultiassetAssetId extends Enum {385 interface XcmV1MultiassetAssetId extends Enum {
491 readonly isConcrete: boolean;386 readonly isConcrete: boolean;
492 readonly asConcrete: XcmV1MultiLocation;387 readonly asConcrete: XcmV1MultiLocation;
495 readonly type: 'Concrete' | 'Abstract';390 readonly type: 'Concrete' | 'Abstract';
496 }391 }
497392
498 /** @name XcmV1MultiLocation (49) */393 /** @name XcmV1MultiLocation (46) */
499 interface XcmV1MultiLocation extends Struct {394 interface XcmV1MultiLocation extends Struct {
500 readonly parents: u8;395 readonly parents: u8;
501 readonly interior: XcmV1MultilocationJunctions;396 readonly interior: XcmV1MultilocationJunctions;
502 }397 }
503398
504 /** @name XcmV1MultilocationJunctions (50) */399 /** @name XcmV1MultilocationJunctions (47) */
505 interface XcmV1MultilocationJunctions extends Enum {400 interface XcmV1MultilocationJunctions extends Enum {
506 readonly isHere: boolean;401 readonly isHere: boolean;
507 readonly isX1: boolean;402 readonly isX1: boolean;
523 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';418 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
524 }419 }
525420
526 /** @name XcmV1Junction (51) */421 /** @name XcmV1Junction (48) */
527 interface XcmV1Junction extends Enum {422 interface XcmV1Junction extends Enum {
528 readonly isParachain: boolean;423 readonly isParachain: boolean;
529 readonly asParachain: Compact<u32>;424 readonly asParachain: Compact<u32>;
557 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';452 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
558 }453 }
559454
560 /** @name XcmV0JunctionNetworkId (53) */455 /** @name XcmV0JunctionNetworkId (50) */
561 interface XcmV0JunctionNetworkId extends Enum {456 interface XcmV0JunctionNetworkId extends Enum {
562 readonly isAny: boolean;457 readonly isAny: boolean;
563 readonly isNamed: boolean;458 readonly isNamed: boolean;
567 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';462 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';
568 }463 }
569464
570 /** @name XcmV0JunctionBodyId (56) */465 /** @name XcmV0JunctionBodyId (53) */
571 interface XcmV0JunctionBodyId extends Enum {466 interface XcmV0JunctionBodyId extends Enum {
572 readonly isUnit: boolean;467 readonly isUnit: boolean;
573 readonly isNamed: boolean;468 readonly isNamed: boolean;
581 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';476 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';
582 }477 }
583478
584 /** @name XcmV0JunctionBodyPart (57) */479 /** @name XcmV0JunctionBodyPart (54) */
585 interface XcmV0JunctionBodyPart extends Enum {480 interface XcmV0JunctionBodyPart extends Enum {
586 readonly isVoice: boolean;481 readonly isVoice: boolean;
587 readonly isMembers: boolean;482 readonly isMembers: boolean;
606 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';501 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';
607 }502 }
608503
609 /** @name XcmV1MultiassetFungibility (58) */504 /** @name XcmV1MultiassetFungibility (55) */
610 interface XcmV1MultiassetFungibility extends Enum {505 interface XcmV1MultiassetFungibility extends Enum {
611 readonly isFungible: boolean;506 readonly isFungible: boolean;
612 readonly asFungible: Compact<u128>;507 readonly asFungible: Compact<u128>;
615 readonly type: 'Fungible' | 'NonFungible';510 readonly type: 'Fungible' | 'NonFungible';
616 }511 }
617512
618 /** @name XcmV1MultiassetAssetInstance (59) */513 /** @name XcmV1MultiassetAssetInstance (56) */
619 interface XcmV1MultiassetAssetInstance extends Enum {514 interface XcmV1MultiassetAssetInstance extends Enum {
620 readonly isUndefined: boolean;515 readonly isUndefined: boolean;
621 readonly isIndex: boolean;516 readonly isIndex: boolean;
633 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';528 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';
634 }529 }
635530
636 /** @name OrmlTokensModuleEvent (62) */531 /** @name OrmlTokensModuleEvent (59) */
637 interface OrmlTokensModuleEvent extends Enum {532 interface OrmlTokensModuleEvent extends Enum {
638 readonly isEndowed: boolean;533 readonly isEndowed: boolean;
639 readonly asEndowed: {534 readonly asEndowed: {
721 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';616 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';
722 }617 }
723618
724 /** @name PalletForeignAssetsAssetIds (63) */619 /** @name PalletForeignAssetsAssetIds (60) */
725 interface PalletForeignAssetsAssetIds extends Enum {620 interface PalletForeignAssetsAssetIds extends Enum {
726 readonly isForeignAssetId: boolean;621 readonly isForeignAssetId: boolean;
727 readonly asForeignAssetId: u32;622 readonly asForeignAssetId: u32;
730 readonly type: 'ForeignAssetId' | 'NativeAssetId';625 readonly type: 'ForeignAssetId' | 'NativeAssetId';
731 }626 }
732627
733 /** @name PalletForeignAssetsNativeCurrency (64) */628 /** @name PalletForeignAssetsNativeCurrency (61) */
734 interface PalletForeignAssetsNativeCurrency extends Enum {629 interface PalletForeignAssetsNativeCurrency extends Enum {
735 readonly isHere: boolean;630 readonly isHere: boolean;
736 readonly isParent: boolean;631 readonly isParent: boolean;
737 readonly type: 'Here' | 'Parent';632 readonly type: 'Here' | 'Parent';
738 }633 }
739634
740 /** @name CumulusPalletXcmpQueueEvent (65) */635 /** @name CumulusPalletXcmpQueueEvent (62) */
741 interface CumulusPalletXcmpQueueEvent extends Enum {636 interface CumulusPalletXcmpQueueEvent extends Enum {
742 readonly isSuccess: boolean;637 readonly isSuccess: boolean;
743 readonly asSuccess: {638 readonly asSuccess: {
781 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';676 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';
782 }677 }
783678
784 /** @name XcmV2TraitsError (67) */679 /** @name XcmV2TraitsError (64) */
785 interface XcmV2TraitsError extends Enum {680 interface XcmV2TraitsError extends Enum {
786 readonly isOverflow: boolean;681 readonly isOverflow: boolean;
787 readonly isUnimplemented: boolean;682 readonly isUnimplemented: boolean;
814 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';709 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';
815 }710 }
816711
817 /** @name PalletXcmEvent (69) */712 /** @name PalletXcmEvent (66) */
818 interface PalletXcmEvent extends Enum {713 interface PalletXcmEvent extends Enum {
819 readonly isAttempted: boolean;714 readonly isAttempted: boolean;
820 readonly asAttempted: XcmV2TraitsOutcome;715 readonly asAttempted: XcmV2TraitsOutcome;
853 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';748 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';
854 }749 }
855750
856 /** @name XcmV2TraitsOutcome (70) */751 /** @name XcmV2TraitsOutcome (67) */
857 interface XcmV2TraitsOutcome extends Enum {752 interface XcmV2TraitsOutcome extends Enum {
858 readonly isComplete: boolean;753 readonly isComplete: boolean;
859 readonly asComplete: u64;754 readonly asComplete: u64;
864 readonly type: 'Complete' | 'Incomplete' | 'Error';759 readonly type: 'Complete' | 'Incomplete' | 'Error';
865 }760 }
866761
867 /** @name XcmV2Xcm (71) */762 /** @name XcmV2Xcm (68) */
868 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}763 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}
869764
870 /** @name XcmV2Instruction (73) */765 /** @name XcmV2Instruction (70) */
871 interface XcmV2Instruction extends Enum {766 interface XcmV2Instruction extends Enum {
872 readonly isWithdrawAsset: boolean;767 readonly isWithdrawAsset: boolean;
873 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;768 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;
987 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';882 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';
988 }883 }
989884
990 /** @name XcmV2Response (74) */885 /** @name XcmV2Response (71) */
991 interface XcmV2Response extends Enum {886 interface XcmV2Response extends Enum {
992 readonly isNull: boolean;887 readonly isNull: boolean;
993 readonly isAssets: boolean;888 readonly isAssets: boolean;
999 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';894 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';
1000 }895 }
1001896
1002 /** @name XcmV0OriginKind (77) */897 /** @name XcmV0OriginKind (74) */
1003 interface XcmV0OriginKind extends Enum {898 interface XcmV0OriginKind extends Enum {
1004 readonly isNative: boolean;899 readonly isNative: boolean;
1005 readonly isSovereignAccount: boolean;900 readonly isSovereignAccount: boolean;
1008 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';903 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';
1009 }904 }
1010905
1011 /** @name XcmDoubleEncoded (78) */906 /** @name XcmDoubleEncoded (75) */
1012 interface XcmDoubleEncoded extends Struct {907 interface XcmDoubleEncoded extends Struct {
1013 readonly encoded: Bytes;908 readonly encoded: Bytes;
1014 }909 }
1015910
1016 /** @name XcmV1MultiassetMultiAssetFilter (79) */911 /** @name XcmV1MultiassetMultiAssetFilter (76) */
1017 interface XcmV1MultiassetMultiAssetFilter extends Enum {912 interface XcmV1MultiassetMultiAssetFilter extends Enum {
1018 readonly isDefinite: boolean;913 readonly isDefinite: boolean;
1019 readonly asDefinite: XcmV1MultiassetMultiAssets;914 readonly asDefinite: XcmV1MultiassetMultiAssets;
1022 readonly type: 'Definite' | 'Wild';917 readonly type: 'Definite' | 'Wild';
1023 }918 }
1024919
1025 /** @name XcmV1MultiassetWildMultiAsset (80) */920 /** @name XcmV1MultiassetWildMultiAsset (77) */
1026 interface XcmV1MultiassetWildMultiAsset extends Enum {921 interface XcmV1MultiassetWildMultiAsset extends Enum {
1027 readonly isAll: boolean;922 readonly isAll: boolean;
1028 readonly isAllOf: boolean;923 readonly isAllOf: boolean;
1033 readonly type: 'All' | 'AllOf';928 readonly type: 'All' | 'AllOf';
1034 }929 }
1035930
1036 /** @name XcmV1MultiassetWildFungibility (81) */931 /** @name XcmV1MultiassetWildFungibility (78) */
1037 interface XcmV1MultiassetWildFungibility extends Enum {932 interface XcmV1MultiassetWildFungibility extends Enum {
1038 readonly isFungible: boolean;933 readonly isFungible: boolean;
1039 readonly isNonFungible: boolean;934 readonly isNonFungible: boolean;
1040 readonly type: 'Fungible' | 'NonFungible';935 readonly type: 'Fungible' | 'NonFungible';
1041 }936 }
1042937
1043 /** @name XcmV2WeightLimit (82) */938 /** @name XcmV2WeightLimit (79) */
1044 interface XcmV2WeightLimit extends Enum {939 interface XcmV2WeightLimit extends Enum {
1045 readonly isUnlimited: boolean;940 readonly isUnlimited: boolean;
1046 readonly isLimited: boolean;941 readonly isLimited: boolean;
1047 readonly asLimited: Compact<u64>;942 readonly asLimited: Compact<u64>;
1048 readonly type: 'Unlimited' | 'Limited';943 readonly type: 'Unlimited' | 'Limited';
1049 }944 }
1050945
1051 /** @name XcmVersionedMultiAssets (84) */946 /** @name XcmVersionedMultiAssets (81) */
1052 interface XcmVersionedMultiAssets extends Enum {947 interface XcmVersionedMultiAssets extends Enum {
1053 readonly isV0: boolean;948 readonly isV0: boolean;
1054 readonly asV0: Vec<XcmV0MultiAsset>;949 readonly asV0: Vec<XcmV0MultiAsset>;
1057 readonly type: 'V0' | 'V1';952 readonly type: 'V0' | 'V1';
1058 }953 }
1059954
1060 /** @name XcmV0MultiAsset (86) */955 /** @name XcmV0MultiAsset (83) */
1061 interface XcmV0MultiAsset extends Enum {956 interface XcmV0MultiAsset extends Enum {
1062 readonly isNone: boolean;957 readonly isNone: boolean;
1063 readonly isAll: boolean;958 readonly isAll: boolean;
1102 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';997 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';
1103 }998 }
1104999
1105 /** @name XcmV0MultiLocation (87) */1000 /** @name XcmV0MultiLocation (84) */
1106 interface XcmV0MultiLocation extends Enum {1001 interface XcmV0MultiLocation extends Enum {
1107 readonly isNull: boolean;1002 readonly isNull: boolean;
1108 readonly isX1: boolean;1003 readonly isX1: boolean;
1124 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1019 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';
1125 }1020 }
11261021
1127 /** @name XcmV0Junction (88) */1022 /** @name XcmV0Junction (85) */
1128 interface XcmV0Junction extends Enum {1023 interface XcmV0Junction extends Enum {
1129 readonly isParent: boolean;1024 readonly isParent: boolean;
1130 readonly isParachain: boolean;1025 readonly isParachain: boolean;
1159 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1054 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';
1160 }1055 }
11611056
1162 /** @name XcmVersionedMultiLocation (89) */1057 /** @name XcmVersionedMultiLocation (86) */
1163 interface XcmVersionedMultiLocation extends Enum {1058 interface XcmVersionedMultiLocation extends Enum {
1164 readonly isV0: boolean;1059 readonly isV0: boolean;
1165 readonly asV0: XcmV0MultiLocation;1060 readonly asV0: XcmV0MultiLocation;
1168 readonly type: 'V0' | 'V1';1063 readonly type: 'V0' | 'V1';
1169 }1064 }
11701065
1171 /** @name CumulusPalletXcmEvent (90) */1066 /** @name CumulusPalletXcmEvent (87) */
1172 interface CumulusPalletXcmEvent extends Enum {1067 interface CumulusPalletXcmEvent extends Enum {
1173 readonly isInvalidFormat: boolean;1068 readonly isInvalidFormat: boolean;
1174 readonly asInvalidFormat: U8aFixed;1069 readonly asInvalidFormat: U8aFixed;
1179 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1074 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';
1180 }1075 }
11811076
1182 /** @name CumulusPalletDmpQueueEvent (91) */1077 /** @name CumulusPalletDmpQueueEvent (88) */
1183 interface CumulusPalletDmpQueueEvent extends Enum {1078 interface CumulusPalletDmpQueueEvent extends Enum {
1184 readonly isInvalidFormat: boolean;1079 readonly isInvalidFormat: boolean;
1185 readonly asInvalidFormat: {1080 readonly asInvalidFormat: {
1214 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1109 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';
1215 }1110 }
12161111
1217 /** @name PalletConfigurationEvent (92) */1112 /** @name PalletConfigurationEvent (89) */
1218 interface PalletConfigurationEvent extends Enum {1113 interface PalletConfigurationEvent extends Enum {
1219 readonly isNewDesiredCollators: boolean;1114 readonly isNewDesiredCollators: boolean;
1220 readonly asNewDesiredCollators: {1115 readonly asNewDesiredCollators: {
1231 readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';1126 readonly type: 'NewDesiredCollators' | 'NewCollatorLicenseBond' | 'NewCollatorKickThreshold';
1232 }1127 }
12331128
1234 /** @name PalletCommonEvent (95) */1129 /** @name PalletCommonEvent (92) */
1235 interface PalletCommonEvent extends Enum {1130 interface PalletCommonEvent extends Enum {
1236 readonly isCollectionCreated: boolean;1131 readonly isCollectionCreated: boolean;
1237 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1132 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;
1280 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1175 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';
1281 }1176 }
12821177
1283 /** @name PalletEvmAccountBasicCrossAccountIdRepr (98) */1178 /** @name PalletEvmAccountBasicCrossAccountIdRepr (95) */
1284 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1179 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {
1285 readonly isSubstrate: boolean;1180 readonly isSubstrate: boolean;
1286 readonly asSubstrate: AccountId32;1181 readonly asSubstrate: AccountId32;
1289 readonly type: 'Substrate' | 'Ethereum';1184 readonly type: 'Substrate' | 'Ethereum';
1290 }1185 }
12911186
1292 /** @name PalletStructureEvent (102) */1187 /** @name PalletStructureEvent (99) */
1293 interface PalletStructureEvent extends Enum {1188 interface PalletStructureEvent extends Enum {
1294 readonly isExecuted: boolean;1189 readonly isExecuted: boolean;
1295 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1190 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;
1296 readonly type: 'Executed';1191 readonly type: 'Executed';
1297 }1192 }
12981193
1299 /** @name PalletRmrkCoreEvent (103) */1194 /** @name PalletRmrkCoreEvent (100) */
1300 interface PalletRmrkCoreEvent extends Enum {1195 interface PalletRmrkCoreEvent extends Enum {
1301 readonly isCollectionCreated: boolean;1196 readonly isCollectionCreated: boolean;
1302 readonly asCollectionCreated: {1197 readonly asCollectionCreated: {
1386 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1281 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';
1387 }1282 }
13881283
1389 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (104) */1284 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */
1390 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1285 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {
1391 readonly isAccountId: boolean;1286 readonly isAccountId: boolean;
1392 readonly asAccountId: AccountId32;1287 readonly asAccountId: AccountId32;
1395 readonly type: 'AccountId' | 'CollectionAndNftTuple';1290 readonly type: 'AccountId' | 'CollectionAndNftTuple';
1396 }1291 }
13971292
1398 /** @name PalletRmrkEquipEvent (107) */1293 /** @name PalletRmrkEquipEvent (104) */
1399 interface PalletRmrkEquipEvent extends Enum {1294 interface PalletRmrkEquipEvent extends Enum {
1400 readonly isBaseCreated: boolean;1295 readonly isBaseCreated: boolean;
1401 readonly asBaseCreated: {1296 readonly asBaseCreated: {
1410 readonly type: 'BaseCreated' | 'EquippablesUpdated';1305 readonly type: 'BaseCreated' | 'EquippablesUpdated';
1411 }1306 }
14121307
1413 /** @name PalletAppPromotionEvent (108) */1308 /** @name PalletAppPromotionEvent (105) */
1414 interface PalletAppPromotionEvent extends Enum {1309 interface PalletAppPromotionEvent extends Enum {
1415 readonly isStakingRecalculation: boolean;1310 readonly isStakingRecalculation: boolean;
1416 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1311 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;
1423 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1318 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';
1424 }1319 }
14251320
1426 /** @name PalletForeignAssetsModuleEvent (109) */1321 /** @name PalletForeignAssetsModuleEvent (106) */
1427 interface PalletForeignAssetsModuleEvent extends Enum {1322 interface PalletForeignAssetsModuleEvent extends Enum {
1428 readonly isForeignAssetRegistered: boolean;1323 readonly isForeignAssetRegistered: boolean;
1429 readonly asForeignAssetRegistered: {1324 readonly asForeignAssetRegistered: {
1450 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1345 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';
1451 }1346 }
14521347
1453 /** @name PalletForeignAssetsModuleAssetMetadata (110) */1348 /** @name PalletForeignAssetsModuleAssetMetadata (107) */
1454 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1349 interface PalletForeignAssetsModuleAssetMetadata extends Struct {
1455 readonly name: Bytes;1350 readonly name: Bytes;
1456 readonly symbol: Bytes;1351 readonly symbol: Bytes;
1457 readonly decimals: u8;1352 readonly decimals: u8;
1458 readonly minimalBalance: u128;1353 readonly minimalBalance: u128;
1459 }1354 }
14601355
1461 /** @name PalletEvmEvent (111) */1356 /** @name PalletEvmEvent (108) */
1462 interface PalletEvmEvent extends Enum {1357 interface PalletEvmEvent extends Enum {
1463 readonly isLog: boolean;1358 readonly isLog: boolean;
1464 readonly asLog: {1359 readonly asLog: {
1483 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1378 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';
1484 }1379 }
14851380
1486 /** @name EthereumLog (112) */1381 /** @name EthereumLog (109) */
1487 interface EthereumLog extends Struct {1382 interface EthereumLog extends Struct {
1488 readonly address: H160;1383 readonly address: H160;
1489 readonly topics: Vec<H256>;1384 readonly topics: Vec<H256>;
1490 readonly data: Bytes;1385 readonly data: Bytes;
1491 }1386 }
14921387
1493 /** @name PalletEthereumEvent (114) */1388 /** @name PalletEthereumEvent (111) */
1494 interface PalletEthereumEvent extends Enum {1389 interface PalletEthereumEvent extends Enum {
1495 readonly isExecuted: boolean;1390 readonly isExecuted: boolean;
1496 readonly asExecuted: {1391 readonly asExecuted: {
1502 readonly type: 'Executed';1397 readonly type: 'Executed';
1503 }1398 }
15041399
1505 /** @name EvmCoreErrorExitReason (115) */1400 /** @name EvmCoreErrorExitReason (112) */
1506 interface EvmCoreErrorExitReason extends Enum {1401 interface EvmCoreErrorExitReason extends Enum {
1507 readonly isSucceed: boolean;1402 readonly isSucceed: boolean;
1508 readonly asSucceed: EvmCoreErrorExitSucceed;1403 readonly asSucceed: EvmCoreErrorExitSucceed;
1515 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1410 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';
1516 }1411 }
15171412
1518 /** @name EvmCoreErrorExitSucceed (116) */1413 /** @name EvmCoreErrorExitSucceed (113) */
1519 interface EvmCoreErrorExitSucceed extends Enum {1414 interface EvmCoreErrorExitSucceed extends Enum {
1520 readonly isStopped: boolean;1415 readonly isStopped: boolean;
1521 readonly isReturned: boolean;1416 readonly isReturned: boolean;
1522 readonly isSuicided: boolean;1417 readonly isSuicided: boolean;
1523 readonly type: 'Stopped' | 'Returned' | 'Suicided';1418 readonly type: 'Stopped' | 'Returned' | 'Suicided';
1524 }1419 }
15251420
1526 /** @name EvmCoreErrorExitError (117) */1421 /** @name EvmCoreErrorExitError (114) */
1527 interface EvmCoreErrorExitError extends Enum {1422 interface EvmCoreErrorExitError extends Enum {
1528 readonly isStackUnderflow: boolean;1423 readonly isStackUnderflow: boolean;
1529 readonly isStackOverflow: boolean;1424 readonly isStackOverflow: boolean;
1544 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1439 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';
1545 }1440 }
15461441
1547 /** @name EvmCoreErrorExitRevert (120) */1442 /** @name EvmCoreErrorExitRevert (117) */
1548 interface EvmCoreErrorExitRevert extends Enum {1443 interface EvmCoreErrorExitRevert extends Enum {
1549 readonly isReverted: boolean;1444 readonly isReverted: boolean;
1550 readonly type: 'Reverted';1445 readonly type: 'Reverted';
1551 }1446 }
15521447
1553 /** @name EvmCoreErrorExitFatal (121) */1448 /** @name EvmCoreErrorExitFatal (118) */
1554 interface EvmCoreErrorExitFatal extends Enum {1449 interface EvmCoreErrorExitFatal extends Enum {
1555 readonly isNotSupported: boolean;1450 readonly isNotSupported: boolean;
1556 readonly isUnhandledInterrupt: boolean;1451 readonly isUnhandledInterrupt: boolean;
1561 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1456 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';
1562 }1457 }
15631458
1564 /** @name PalletEvmContractHelpersEvent (122) */1459 /** @name PalletEvmContractHelpersEvent (119) */
1565 interface PalletEvmContractHelpersEvent extends Enum {1460 interface PalletEvmContractHelpersEvent extends Enum {
1566 readonly isContractSponsorSet: boolean;1461 readonly isContractSponsorSet: boolean;
1567 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1462 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;
1572 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1467 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';
1573 }1468 }
15741469
1575 /** @name PalletEvmMigrationEvent (123) */1470 /** @name PalletEvmMigrationEvent (120) */
1576 interface PalletEvmMigrationEvent extends Enum {1471 interface PalletEvmMigrationEvent extends Enum {
1577 readonly isTestEvent: boolean;1472 readonly isTestEvent: boolean;
1578 readonly type: 'TestEvent';1473 readonly type: 'TestEvent';
1579 }1474 }
15801475
1581 /** @name PalletMaintenanceEvent (124) */1476 /** @name PalletMaintenanceEvent (121) */
1582 interface PalletMaintenanceEvent extends Enum {1477 interface PalletMaintenanceEvent extends Enum {
1583 readonly isMaintenanceEnabled: boolean;1478 readonly isMaintenanceEnabled: boolean;
1584 readonly isMaintenanceDisabled: boolean;1479 readonly isMaintenanceDisabled: boolean;
1585 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1480 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';
1586 }1481 }
15871482
1588 /** @name PalletTestUtilsEvent (125) */1483 /** @name PalletTestUtilsEvent (122) */
1589 interface PalletTestUtilsEvent extends Enum {1484 interface PalletTestUtilsEvent extends Enum {
1590 readonly isValueIsSet: boolean;1485 readonly isValueIsSet: boolean;
1591 readonly isShouldRollback: boolean;1486 readonly isShouldRollback: boolean;
1592 readonly isBatchCompleted: boolean;1487 readonly isBatchCompleted: boolean;
1593 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1488 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';
1594 }1489 }
15951490
1596 /** @name FrameSystemPhase (126) */1491 /** @name FrameSystemPhase (123) */
1597 interface FrameSystemPhase extends Enum {1492 interface FrameSystemPhase extends Enum {
1598 readonly isApplyExtrinsic: boolean;1493 readonly isApplyExtrinsic: boolean;
1599 readonly asApplyExtrinsic: u32;1494 readonly asApplyExtrinsic: u32;
1602 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1497 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';
1603 }1498 }
16041499
1605 /** @name FrameSystemLastRuntimeUpgradeInfo (129) */1500 /** @name FrameSystemLastRuntimeUpgradeInfo (126) */
1606 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1501 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {
1607 readonly specVersion: Compact<u32>;1502 readonly specVersion: Compact<u32>;
1608 readonly specName: Text;1503 readonly specName: Text;
1609 }1504 }
16101505
1611 /** @name FrameSystemCall (130) */1506 /** @name FrameSystemCall (127) */
1612 interface FrameSystemCall extends Enum {1507 interface FrameSystemCall extends Enum {
1613 readonly isRemark: boolean;1508 readonly isRemark: boolean;
1614 readonly asRemark: {1509 readonly asRemark: {
1646 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1541 readonly type: 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';
1647 }1542 }
16481543
1649 /** @name FrameSystemLimitsBlockWeights (134) */1544 /** @name FrameSystemLimitsBlockWeights (131) */
1650 interface FrameSystemLimitsBlockWeights extends Struct {1545 interface FrameSystemLimitsBlockWeights extends Struct {
1651 readonly baseBlock: SpWeightsWeightV2Weight;1546 readonly baseBlock: SpWeightsWeightV2Weight;
1652 readonly maxBlock: SpWeightsWeightV2Weight;1547 readonly maxBlock: SpWeightsWeightV2Weight;
1653 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1548 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;
1654 }1549 }
16551550
1656 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (135) */1551 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (132) */
1657 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1552 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {
1658 readonly normal: FrameSystemLimitsWeightsPerClass;1553 readonly normal: FrameSystemLimitsWeightsPerClass;
1659 readonly operational: FrameSystemLimitsWeightsPerClass;1554 readonly operational: FrameSystemLimitsWeightsPerClass;
1660 readonly mandatory: FrameSystemLimitsWeightsPerClass;1555 readonly mandatory: FrameSystemLimitsWeightsPerClass;
1661 }1556 }
16621557
1663 /** @name FrameSystemLimitsWeightsPerClass (136) */1558 /** @name FrameSystemLimitsWeightsPerClass (133) */
1664 interface FrameSystemLimitsWeightsPerClass extends Struct {1559 interface FrameSystemLimitsWeightsPerClass extends Struct {
1665 readonly baseExtrinsic: SpWeightsWeightV2Weight;1560 readonly baseExtrinsic: SpWeightsWeightV2Weight;
1666 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1561 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;
1667 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1562 readonly maxTotal: Option<SpWeightsWeightV2Weight>;
1668 readonly reserved: Option<SpWeightsWeightV2Weight>;1563 readonly reserved: Option<SpWeightsWeightV2Weight>;
1669 }1564 }
16701565
1671 /** @name FrameSystemLimitsBlockLength (138) */1566 /** @name FrameSystemLimitsBlockLength (135) */
1672 interface FrameSystemLimitsBlockLength extends Struct {1567 interface FrameSystemLimitsBlockLength extends Struct {
1673 readonly max: FrameSupportDispatchPerDispatchClassU32;1568 readonly max: FrameSupportDispatchPerDispatchClassU32;
1674 }1569 }
16751570
1676 /** @name FrameSupportDispatchPerDispatchClassU32 (139) */1571 /** @name FrameSupportDispatchPerDispatchClassU32 (136) */
1677 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1572 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {
1678 readonly normal: u32;1573 readonly normal: u32;
1679 readonly operational: u32;1574 readonly operational: u32;
1680 readonly mandatory: u32;1575 readonly mandatory: u32;
1681 }1576 }
16821577
1683 /** @name SpWeightsRuntimeDbWeight (140) */1578 /** @name SpWeightsRuntimeDbWeight (137) */
1684 interface SpWeightsRuntimeDbWeight extends Struct {1579 interface SpWeightsRuntimeDbWeight extends Struct {
1685 readonly read: u64;1580 readonly read: u64;
1686 readonly write: u64;1581 readonly write: u64;
1687 }1582 }
16881583
1689 /** @name SpVersionRuntimeVersion (141) */1584 /** @name SpVersionRuntimeVersion (138) */
1690 interface SpVersionRuntimeVersion extends Struct {1585 interface SpVersionRuntimeVersion extends Struct {
1691 readonly specName: Text;1586 readonly specName: Text;
1692 readonly implName: Text;1587 readonly implName: Text;
1698 readonly stateVersion: u8;1593 readonly stateVersion: u8;
1699 }1594 }
17001595
1701 /** @name FrameSystemError (146) */1596 /** @name FrameSystemError (143) */
1702 interface FrameSystemError extends Enum {1597 interface FrameSystemError extends Enum {
1703 readonly isInvalidSpecName: boolean;1598 readonly isInvalidSpecName: boolean;
1704 readonly isSpecVersionNeedsToIncrease: boolean;1599 readonly isSpecVersionNeedsToIncrease: boolean;
1709 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1604 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';
1710 }1605 }
17111606
1712 /** @name PolkadotPrimitivesV2PersistedValidationData (147) */1607 /** @name PolkadotPrimitivesV2PersistedValidationData (144) */
1713 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1608 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {
1714 readonly parentHead: Bytes;1609 readonly parentHead: Bytes;
1715 readonly relayParentNumber: u32;1610 readonly relayParentNumber: u32;
1716 readonly relayParentStorageRoot: H256;1611 readonly relayParentStorageRoot: H256;
1717 readonly maxPovSize: u32;1612 readonly maxPovSize: u32;
1718 }1613 }
17191614
1720 /** @name PolkadotPrimitivesV2UpgradeRestriction (150) */1615 /** @name PolkadotPrimitivesV2UpgradeRestriction (147) */
1721 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1616 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {
1722 readonly isPresent: boolean;1617 readonly isPresent: boolean;
1723 readonly type: 'Present';1618 readonly type: 'Present';
1724 }1619 }
17251620
1726 /** @name SpTrieStorageProof (151) */1621 /** @name SpTrieStorageProof (148) */
1727 interface SpTrieStorageProof extends Struct {1622 interface SpTrieStorageProof extends Struct {
1728 readonly trieNodes: BTreeSet<Bytes>;1623 readonly trieNodes: BTreeSet<Bytes>;
1729 }1624 }
17301625
1731 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (153) */1626 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (150) */
1732 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1627 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {
1733 readonly dmqMqcHead: H256;1628 readonly dmqMqcHead: H256;
1734 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1629 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;
1735 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1630 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
1736 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1631 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;
1737 }1632 }
17381633
1739 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (156) */1634 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (153) */
1740 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1635 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {
1741 readonly maxCapacity: u32;1636 readonly maxCapacity: u32;
1742 readonly maxTotalSize: u32;1637 readonly maxTotalSize: u32;
1746 readonly mqcHead: Option<H256>;1641 readonly mqcHead: Option<H256>;
1747 }1642 }
17481643
1749 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (157) */1644 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (154) */
1750 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1645 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {
1751 readonly maxCodeSize: u32;1646 readonly maxCodeSize: u32;
1752 readonly maxHeadDataSize: u32;1647 readonly maxHeadDataSize: u32;
1759 readonly validationUpgradeDelay: u32;1654 readonly validationUpgradeDelay: u32;
1760 }1655 }
17611656
1762 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (163) */1657 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (160) */
1763 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1658 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {
1764 readonly recipient: u32;1659 readonly recipient: u32;
1765 readonly data: Bytes;1660 readonly data: Bytes;
1766 }1661 }
17671662
1768 /** @name CumulusPalletParachainSystemCall (164) */1663 /** @name CumulusPalletParachainSystemCall (161) */
1769 interface CumulusPalletParachainSystemCall extends Enum {1664 interface CumulusPalletParachainSystemCall extends Enum {
1770 readonly isSetValidationData: boolean;1665 readonly isSetValidationData: boolean;
1771 readonly asSetValidationData: {1666 readonly asSetValidationData: {
1786 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1681 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';
1787 }1682 }
17881683
1789 /** @name CumulusPrimitivesParachainInherentParachainInherentData (165) */1684 /** @name CumulusPrimitivesParachainInherentParachainInherentData (162) */
1790 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1685 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {
1791 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1686 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;
1792 readonly relayChainState: SpTrieStorageProof;1687 readonly relayChainState: SpTrieStorageProof;
1793 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1688 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;
1794 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1689 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;
1795 }1690 }
17961691
1797 /** @name PolkadotCorePrimitivesInboundDownwardMessage (167) */1692 /** @name PolkadotCorePrimitivesInboundDownwardMessage (164) */
1798 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1693 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
1799 readonly sentAt: u32;1694 readonly sentAt: u32;
1800 readonly msg: Bytes;1695 readonly msg: Bytes;
1801 }1696 }
18021697
1803 /** @name PolkadotCorePrimitivesInboundHrmpMessage (170) */1698 /** @name PolkadotCorePrimitivesInboundHrmpMessage (167) */
1804 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1699 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {
1805 readonly sentAt: u32;1700 readonly sentAt: u32;
1806 readonly data: Bytes;1701 readonly data: Bytes;
1807 }1702 }
18081703
1809 /** @name CumulusPalletParachainSystemError (173) */1704 /** @name CumulusPalletParachainSystemError (170) */
1810 interface CumulusPalletParachainSystemError extends Enum {1705 interface CumulusPalletParachainSystemError extends Enum {
1811 readonly isOverlappingUpgrades: boolean;1706 readonly isOverlappingUpgrades: boolean;
1812 readonly isProhibitedByPolkadot: boolean;1707 readonly isProhibitedByPolkadot: boolean;
1819 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1714 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';
1820 }1715 }
1821
1822 /** @name PalletAuthorshipUncleEntryItem (175) */
1823 interface PalletAuthorshipUncleEntryItem extends Enum {
1824 readonly isInclusionHeight: boolean;
1825 readonly asInclusionHeight: u32;
1826 readonly isUncle: boolean;
1827 readonly asUncle: ITuple<[H256, Option<AccountId32>]>;
1828 readonly type: 'InclusionHeight' | 'Uncle';
1829 }
1830
1831 /** @name PalletAuthorshipCall (177) */
1832 interface PalletAuthorshipCall extends Enum {
1833 readonly isSetUncles: boolean;
1834 readonly asSetUncles: {
1835 readonly newUncles: Vec<SpRuntimeHeader>;
1836 } & Struct;
1837 readonly type: 'SetUncles';
1838 }
1839
1840 /** @name SpRuntimeHeader (179) */
1841 interface SpRuntimeHeader extends Struct {
1842 readonly parentHash: H256;
1843 readonly number: Compact<u32>;
1844 readonly stateRoot: H256;
1845 readonly extrinsicsRoot: H256;
1846 readonly digest: SpRuntimeDigest;
1847 }
1848
1849 /** @name SpRuntimeBlakeTwo256 (180) */
1850 type SpRuntimeBlakeTwo256 = Null;
1851
1852 /** @name PalletAuthorshipError (181) */
1853 interface PalletAuthorshipError extends Enum {
1854 readonly isInvalidUncleParent: boolean;
1855 readonly isUnclesAlreadySet: boolean;
1856 readonly isTooManyUncles: boolean;
1857 readonly isGenesisUncle: boolean;
1858 readonly isTooHighUncle: boolean;
1859 readonly isUncleAlreadyIncluded: boolean;
1860 readonly isOldUncle: boolean;
1861 readonly type: 'InvalidUncleParent' | 'UnclesAlreadySet' | 'TooManyUncles' | 'GenesisUncle' | 'TooHighUncle' | 'UncleAlreadyIncluded' | 'OldUncle';
1862 }
1863
1864 /** @name PalletCollatorSelectionCall (184) */
1865 interface PalletCollatorSelectionCall extends Enum {
1866 readonly isAddInvulnerable: boolean;
1867 readonly asAddInvulnerable: {
1868 readonly new_: AccountId32;
1869 } & Struct;
1870 readonly isRemoveInvulnerable: boolean;
1871 readonly asRemoveInvulnerable: {
1872 readonly who: AccountId32;
1873 } & Struct;
1874 readonly isGetLicense: boolean;
1875 readonly isOnboard: boolean;
1876 readonly isOffboard: boolean;
1877 readonly isReleaseLicense: boolean;
1878 readonly isForceReleaseLicense: boolean;
1879 readonly asForceReleaseLicense: {
1880 readonly who: AccountId32;
1881 } & Struct;
1882 readonly type: 'AddInvulnerable' | 'RemoveInvulnerable' | 'GetLicense' | 'Onboard' | 'Offboard' | 'ReleaseLicense' | 'ForceReleaseLicense';
1883 }
1884
1885 /** @name PalletCollatorSelectionError (185) */
1886 interface PalletCollatorSelectionError extends Enum {
1887 readonly isTooManyCandidates: boolean;
1888 readonly isUnknown: boolean;
1889 readonly isPermission: boolean;
1890 readonly isAlreadyHoldingLicense: boolean;
1891 readonly isNoLicense: boolean;
1892 readonly isAlreadyCandidate: boolean;
1893 readonly isNotCandidate: boolean;
1894 readonly isTooManyInvulnerables: boolean;
1895 readonly isTooFewInvulnerables: boolean;
1896 readonly isAlreadyInvulnerable: boolean;
1897 readonly isNotInvulnerable: boolean;
1898 readonly isNoAssociatedValidatorId: boolean;
1899 readonly isValidatorNotRegistered: boolean;
1900 readonly type: 'TooManyCandidates' | 'Unknown' | 'Permission' | 'AlreadyHoldingLicense' | 'NoLicense' | 'AlreadyCandidate' | 'NotCandidate' | 'TooManyInvulnerables' | 'TooFewInvulnerables' | 'AlreadyInvulnerable' | 'NotInvulnerable' | 'NoAssociatedValidatorId' | 'ValidatorNotRegistered';
1901 }
1902
1903 /** @name OpalRuntimeRuntimeCommonSessionKeys (188) */
1904 interface OpalRuntimeRuntimeCommonSessionKeys extends Struct {
1905 readonly aura: SpConsensusAuraSr25519AppSr25519Public;
1906 }
1907
1908 /** @name SpConsensusAuraSr25519AppSr25519Public (189) */
1909 interface SpConsensusAuraSr25519AppSr25519Public extends SpCoreSr25519Public {}
1910
1911 /** @name SpCoreSr25519Public (190) */
1912 interface SpCoreSr25519Public extends U8aFixed {}
1913
1914 /** @name SpCoreCryptoKeyTypeId (193) */
1915 interface SpCoreCryptoKeyTypeId extends U8aFixed {}
1916
1917 /** @name PalletSessionCall (194) */
1918 interface PalletSessionCall extends Enum {
1919 readonly isSetKeys: boolean;
1920 readonly asSetKeys: {
1921 readonly keys_: OpalRuntimeRuntimeCommonSessionKeys;
1922 readonly proof: Bytes;
1923 } & Struct;
1924 readonly isPurgeKeys: boolean;
1925 readonly type: 'SetKeys' | 'PurgeKeys';
1926 }
1927
1928 /** @name PalletSessionError (195) */
1929 interface PalletSessionError extends Enum {
1930 readonly isInvalidProof: boolean;
1931 readonly isNoAssociatedValidatorId: boolean;
1932 readonly isDuplicatedKey: boolean;
1933 readonly isNoKeys: boolean;
1934 readonly isNoAccount: boolean;
1935 readonly type: 'InvalidProof' | 'NoAssociatedValidatorId' | 'DuplicatedKey' | 'NoKeys' | 'NoAccount';
1936 }
1937
1938 /** @name PalletIdentityRegistration (196) */
1939 interface PalletIdentityRegistration extends Struct {
1940 readonly judgements: Vec<ITuple<[u32, PalletIdentityJudgement]>>;
1941 readonly deposit: u128;
1942 readonly info: PalletIdentityIdentityInfo;
1943 }
1944
1945 /** @name PalletIdentityJudgement (199) */
1946 interface PalletIdentityJudgement extends Enum {
1947 readonly isUnknown: boolean;
1948 readonly isFeePaid: boolean;
1949 readonly asFeePaid: u128;
1950 readonly isReasonable: boolean;
1951 readonly isKnownGood: boolean;
1952 readonly isOutOfDate: boolean;
1953 readonly isLowQuality: boolean;
1954 readonly isErroneous: boolean;
1955 readonly type: 'Unknown' | 'FeePaid' | 'Reasonable' | 'KnownGood' | 'OutOfDate' | 'LowQuality' | 'Erroneous';
1956 }
1957
1958 /** @name PalletIdentityIdentityInfo (201) */
1959 interface PalletIdentityIdentityInfo extends Struct {
1960 readonly additional: Vec<ITuple<[Data, Data]>>;
1961 readonly display: Data;
1962 readonly legal: Data;
1963 readonly web: Data;
1964 readonly riot: Data;
1965 readonly email: Data;
1966 readonly pgpFingerprint: Option<U8aFixed>;
1967 readonly image: Data;
1968 readonly twitter: Data;
1969 }
1970
1971 /** @name PalletIdentityRegistrarInfo (240) */
1972 interface PalletIdentityRegistrarInfo extends Struct {
1973 readonly account: AccountId32;
1974 readonly fee: u128;
1975 readonly fields: PalletIdentityBitFlags;
1976 }
1977
1978 /** @name PalletIdentityBitFlags (241) */
1979 interface PalletIdentityBitFlags extends Set {
1980 readonly isDisplay: boolean;
1981 readonly isLegal: boolean;
1982 readonly isWeb: boolean;
1983 readonly isRiot: boolean;
1984 readonly isEmail: boolean;
1985 readonly isPgpFingerprint: boolean;
1986 readonly isImage: boolean;
1987 readonly isTwitter: boolean;
1988 }
1989
1990 /** @name PalletIdentityIdentityField (242) */
1991 interface PalletIdentityIdentityField extends Enum {
1992 readonly isDisplay: boolean;
1993 readonly isLegal: boolean;
1994 readonly isWeb: boolean;
1995 readonly isRiot: boolean;
1996 readonly isEmail: boolean;
1997 readonly isPgpFingerprint: boolean;
1998 readonly isImage: boolean;
1999 readonly isTwitter: boolean;
2000 readonly type: 'Display' | 'Legal' | 'Web' | 'Riot' | 'Email' | 'PgpFingerprint' | 'Image' | 'Twitter';
2001 }
2002
2003 /** @name PalletIdentityCall (244) */
2004 interface PalletIdentityCall extends Enum {
2005 readonly isAddRegistrar: boolean;
2006 readonly asAddRegistrar: {
2007 readonly account: MultiAddress;
2008 } & Struct;
2009 readonly isSetIdentity: boolean;
2010 readonly asSetIdentity: {
2011 readonly info: PalletIdentityIdentityInfo;
2012 } & Struct;
2013 readonly isSetSubs: boolean;
2014 readonly asSetSubs: {
2015 readonly subs: Vec<ITuple<[AccountId32, Data]>>;
2016 } & Struct;
2017 readonly isClearIdentity: boolean;
2018 readonly isRequestJudgement: boolean;
2019 readonly asRequestJudgement: {
2020 readonly regIndex: Compact<u32>;
2021 readonly maxFee: Compact<u128>;
2022 } & Struct;
2023 readonly isCancelRequest: boolean;
2024 readonly asCancelRequest: {
2025 readonly regIndex: u32;
2026 } & Struct;
2027 readonly isSetFee: boolean;
2028 readonly asSetFee: {
2029 readonly index: Compact<u32>;
2030 readonly fee: Compact<u128>;
2031 } & Struct;
2032 readonly isSetAccountId: boolean;
2033 readonly asSetAccountId: {
2034 readonly index: Compact<u32>;
2035 readonly new_: MultiAddress;
2036 } & Struct;
2037 readonly isSetFields: boolean;
2038 readonly asSetFields: {
2039 readonly index: Compact<u32>;
2040 readonly fields: PalletIdentityBitFlags;
2041 } & Struct;
2042 readonly isProvideJudgement: boolean;
2043 readonly asProvideJudgement: {
2044 readonly regIndex: Compact<u32>;
2045 readonly target: MultiAddress;
2046 readonly judgement: PalletIdentityJudgement;
2047 readonly identity: H256;
2048 } & Struct;
2049 readonly isKillIdentity: boolean;
2050 readonly asKillIdentity: {
2051 readonly target: MultiAddress;
2052 } & Struct;
2053 readonly isAddSub: boolean;
2054 readonly asAddSub: {
2055 readonly sub: MultiAddress;
2056 readonly data: Data;
2057 } & Struct;
2058 readonly isRenameSub: boolean;
2059 readonly asRenameSub: {
2060 readonly sub: MultiAddress;
2061 readonly data: Data;
2062 } & Struct;
2063 readonly isRemoveSub: boolean;
2064 readonly asRemoveSub: {
2065 readonly sub: MultiAddress;
2066 } & Struct;
2067 readonly isQuitSub: boolean;
2068 readonly isForceInsertIdentities: boolean;
2069 readonly asForceInsertIdentities: {
2070 readonly identities: Vec<ITuple<[AccountId32, PalletIdentityRegistration]>>;
2071 } & Struct;
2072 readonly isForceRemoveIdentities: boolean;
2073 readonly asForceRemoveIdentities: {
2074 readonly identities: Vec<AccountId32>;
2075 } & Struct;
2076 readonly type: 'AddRegistrar' | 'SetIdentity' | 'SetSubs' | 'ClearIdentity' | 'RequestJudgement' | 'CancelRequest' | 'SetFee' | 'SetAccountId' | 'SetFields' | 'ProvideJudgement' | 'KillIdentity' | 'AddSub' | 'RenameSub' | 'RemoveSub' | 'QuitSub' | 'ForceInsertIdentities' | 'ForceRemoveIdentities';
2077 }
2078
2079 /** @name PalletIdentityError (250) */
2080 interface PalletIdentityError extends Enum {
2081 readonly isTooManySubAccounts: boolean;
2082 readonly isNotFound: boolean;
2083 readonly isNotNamed: boolean;
2084 readonly isEmptyIndex: boolean;
2085 readonly isFeeChanged: boolean;
2086 readonly isNoIdentity: boolean;
2087 readonly isStickyJudgement: boolean;
2088 readonly isJudgementGiven: boolean;
2089 readonly isInvalidJudgement: boolean;
2090 readonly isInvalidIndex: boolean;
2091 readonly isInvalidTarget: boolean;
2092 readonly isTooManyFields: boolean;
2093 readonly isTooManyRegistrars: boolean;
2094 readonly isAlreadyClaimed: boolean;
2095 readonly isNotSub: boolean;
2096 readonly isNotOwned: boolean;
2097 readonly isJudgementForDifferentIdentity: boolean;
2098 readonly isJudgementPaymentFailed: boolean;
2099 readonly type: 'TooManySubAccounts' | 'NotFound' | 'NotNamed' | 'EmptyIndex' | 'FeeChanged' | 'NoIdentity' | 'StickyJudgement' | 'JudgementGiven' | 'InvalidJudgement' | 'InvalidIndex' | 'InvalidTarget' | 'TooManyFields' | 'TooManyRegistrars' | 'AlreadyClaimed' | 'NotSub' | 'NotOwned' | 'JudgementForDifferentIdentity' | 'JudgementPaymentFailed';
2100 }
21011716
2102 /** @name PalletBalancesBalanceLock (252) */1717 /** @name PalletBalancesBalanceLock (172) */
2103 interface PalletBalancesBalanceLock extends Struct {1718 interface PalletBalancesBalanceLock extends Struct {
2104 readonly id: U8aFixed;1719 readonly id: U8aFixed;
2105 readonly amount: u128;1720 readonly amount: u128;
2106 readonly reasons: PalletBalancesReasons;1721 readonly reasons: PalletBalancesReasons;
2107 }1722 }
21081723
2109 /** @name PalletBalancesReasons (253) */1724 /** @name PalletBalancesReasons (173) */
2110 interface PalletBalancesReasons extends Enum {1725 interface PalletBalancesReasons extends Enum {
2111 readonly isFee: boolean;1726 readonly isFee: boolean;
2112 readonly isMisc: boolean;1727 readonly isMisc: boolean;
2113 readonly isAll: boolean;1728 readonly isAll: boolean;
2114 readonly type: 'Fee' | 'Misc' | 'All';1729 readonly type: 'Fee' | 'Misc' | 'All';
2115 }1730 }
21161731
2117 /** @name PalletBalancesReserveData (256) */1732 /** @name PalletBalancesReserveData (176) */
2118 interface PalletBalancesReserveData extends Struct {1733 interface PalletBalancesReserveData extends Struct {
2119 readonly id: U8aFixed;1734 readonly id: U8aFixed;
2120 readonly amount: u128;1735 readonly amount: u128;
2121 }1736 }
21221737
2123 /** @name PalletBalancesCall (258) */1738 /** @name PalletBalancesCall (178) */
2124 interface PalletBalancesCall extends Enum {1739 interface PalletBalancesCall extends Enum {
2125 readonly isTransfer: boolean;1740 readonly isTransfer: boolean;
2126 readonly asTransfer: {1741 readonly asTransfer: {
2157 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1772 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';
2158 }1773 }
21591774
2160 /** @name PalletBalancesError (259) */1775 /** @name PalletBalancesError (181) */
2161 interface PalletBalancesError extends Enum {1776 interface PalletBalancesError extends Enum {
2162 readonly isVestingBalance: boolean;1777 readonly isVestingBalance: boolean;
2163 readonly isLiquidityRestrictions: boolean;1778 readonly isLiquidityRestrictions: boolean;
2170 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1785 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';
2171 }1786 }
21721787
2173 /** @name PalletTimestampCall (261) */1788 /** @name PalletTimestampCall (183) */
2174 interface PalletTimestampCall extends Enum {1789 interface PalletTimestampCall extends Enum {
2175 readonly isSet: boolean;1790 readonly isSet: boolean;
2176 readonly asSet: {1791 readonly asSet: {
2179 readonly type: 'Set';1794 readonly type: 'Set';
2180 }1795 }
21811796
2182 /** @name PalletTransactionPaymentReleases (263) */1797 /** @name PalletTransactionPaymentReleases (185) */
2183 interface PalletTransactionPaymentReleases extends Enum {1798 interface PalletTransactionPaymentReleases extends Enum {
2184 readonly isV1Ancient: boolean;1799 readonly isV1Ancient: boolean;
2185 readonly isV2: boolean;1800 readonly isV2: boolean;
2186 readonly type: 'V1Ancient' | 'V2';1801 readonly type: 'V1Ancient' | 'V2';
2187 }1802 }
21881803
2189 /** @name PalletTreasuryProposal (264) */1804 /** @name PalletTreasuryProposal (186) */
2190 interface PalletTreasuryProposal extends Struct {1805 interface PalletTreasuryProposal extends Struct {
2191 readonly proposer: AccountId32;1806 readonly proposer: AccountId32;
2192 readonly value: u128;1807 readonly value: u128;
2193 readonly beneficiary: AccountId32;1808 readonly beneficiary: AccountId32;
2194 readonly bond: u128;1809 readonly bond: u128;
2195 }1810 }
21961811
2197 /** @name PalletTreasuryCall (266) */1812 /** @name PalletTreasuryCall (189) */
2198 interface PalletTreasuryCall extends Enum {1813 interface PalletTreasuryCall extends Enum {
2199 readonly isProposeSpend: boolean;1814 readonly isProposeSpend: boolean;
2200 readonly asProposeSpend: {1815 readonly asProposeSpend: {
2221 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1836 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';
2222 }1837 }
22231838
2224 /** @name FrameSupportPalletId (268) */1839 /** @name FrameSupportPalletId (191) */
2225 interface FrameSupportPalletId extends U8aFixed {}1840 interface FrameSupportPalletId extends U8aFixed {}
22261841
2227 /** @name PalletTreasuryError (269) */1842 /** @name PalletTreasuryError (192) */
2228 interface PalletTreasuryError extends Enum {1843 interface PalletTreasuryError extends Enum {
2229 readonly isInsufficientProposersBalance: boolean;1844 readonly isInsufficientProposersBalance: boolean;
2230 readonly isInvalidIndex: boolean;1845 readonly isInvalidIndex: boolean;
2234 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1849 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';
2235 }1850 }
22361851
2237 /** @name PalletSudoCall (270) */1852 /** @name PalletSudoCall (193) */
2238 interface PalletSudoCall extends Enum {1853 interface PalletSudoCall extends Enum {
2239 readonly isSudo: boolean;1854 readonly isSudo: boolean;
2240 readonly asSudo: {1855 readonly asSudo: {
2257 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1872 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';
2258 }1873 }
22591874
2260 /** @name OrmlVestingModuleCall (272) */1875 /** @name OrmlVestingModuleCall (195) */
2261 interface OrmlVestingModuleCall extends Enum {1876 interface OrmlVestingModuleCall extends Enum {
2262 readonly isClaim: boolean;1877 readonly isClaim: boolean;
2263 readonly isVestedTransfer: boolean;1878 readonly isVestedTransfer: boolean;
2277 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1892 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';
2278 }1893 }
22791894
2280 /** @name OrmlXtokensModuleCall (274) */1895 /** @name OrmlXtokensModuleCall (197) */
2281 interface OrmlXtokensModuleCall extends Enum {1896 interface OrmlXtokensModuleCall extends Enum {
2282 readonly isTransfer: boolean;1897 readonly isTransfer: boolean;
2283 readonly asTransfer: {1898 readonly asTransfer: {
2324 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1939 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';
2325 }1940 }
23261941
2327 /** @name XcmVersionedMultiAsset (275) */1942 /** @name XcmVersionedMultiAsset (198) */
2328 interface XcmVersionedMultiAsset extends Enum {1943 interface XcmVersionedMultiAsset extends Enum {
2329 readonly isV0: boolean;1944 readonly isV0: boolean;
2330 readonly asV0: XcmV0MultiAsset;1945 readonly asV0: XcmV0MultiAsset;
2333 readonly type: 'V0' | 'V1';1948 readonly type: 'V0' | 'V1';
2334 }1949 }
23351950
2336 /** @name OrmlTokensModuleCall (278) */1951 /** @name OrmlTokensModuleCall (201) */
2337 interface OrmlTokensModuleCall extends Enum {1952 interface OrmlTokensModuleCall extends Enum {
2338 readonly isTransfer: boolean;1953 readonly isTransfer: boolean;
2339 readonly asTransfer: {1954 readonly asTransfer: {
2370 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';1985 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';
2371 }1986 }
23721987
2373 /** @name CumulusPalletXcmpQueueCall (279) */1988 /** @name CumulusPalletXcmpQueueCall (202) */
2374 interface CumulusPalletXcmpQueueCall extends Enum {1989 interface CumulusPalletXcmpQueueCall extends Enum {
2375 readonly isServiceOverweight: boolean;1990 readonly isServiceOverweight: boolean;
2376 readonly asServiceOverweight: {1991 readonly asServiceOverweight: {
2406 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2021 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';
2407 }2022 }
24082023
2409 /** @name PalletXcmCall (280) */2024 /** @name PalletXcmCall (203) */
2410 interface PalletXcmCall extends Enum {2025 interface PalletXcmCall extends Enum {
2411 readonly isSend: boolean;2026 readonly isSend: boolean;
2412 readonly asSend: {2027 readonly asSend: {
2468 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2083 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';
2469 }2084 }
24702085
2471 /** @name XcmVersionedXcm (281) */2086 /** @name XcmVersionedXcm (204) */
2472 interface XcmVersionedXcm extends Enum {2087 interface XcmVersionedXcm extends Enum {
2473 readonly isV0: boolean;2088 readonly isV0: boolean;
2474 readonly asV0: XcmV0Xcm;2089 readonly asV0: XcmV0Xcm;
2479 readonly type: 'V0' | 'V1' | 'V2';2094 readonly type: 'V0' | 'V1' | 'V2';
2480 }2095 }
24812096
2482 /** @name XcmV0Xcm (282) */2097 /** @name XcmV0Xcm (205) */
2483 interface XcmV0Xcm extends Enum {2098 interface XcmV0Xcm extends Enum {
2484 readonly isWithdrawAsset: boolean;2099 readonly isWithdrawAsset: boolean;
2485 readonly asWithdrawAsset: {2100 readonly asWithdrawAsset: {
2542 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2157 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';
2543 }2158 }
25442159
2545 /** @name XcmV0Order (284) */2160 /** @name XcmV0Order (207) */
2546 interface XcmV0Order extends Enum {2161 interface XcmV0Order extends Enum {
2547 readonly isNull: boolean;2162 readonly isNull: boolean;
2548 readonly isDepositAsset: boolean;2163 readonly isDepositAsset: boolean;
2590 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2205 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
2591 }2206 }
25922207
2593 /** @name XcmV0Response (286) */2208 /** @name XcmV0Response (209) */
2594 interface XcmV0Response extends Enum {2209 interface XcmV0Response extends Enum {
2595 readonly isAssets: boolean;2210 readonly isAssets: boolean;
2596 readonly asAssets: Vec<XcmV0MultiAsset>;2211 readonly asAssets: Vec<XcmV0MultiAsset>;
2597 readonly type: 'Assets';2212 readonly type: 'Assets';
2598 }2213 }
25992214
2600 /** @name XcmV1Xcm (287) */2215 /** @name XcmV1Xcm (210) */
2601 interface XcmV1Xcm extends Enum {2216 interface XcmV1Xcm extends Enum {
2602 readonly isWithdrawAsset: boolean;2217 readonly isWithdrawAsset: boolean;
2603 readonly asWithdrawAsset: {2218 readonly asWithdrawAsset: {
2666 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2281 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';
2667 }2282 }
26682283
2669 /** @name XcmV1Order (289) */2284 /** @name XcmV1Order (212) */
2670 interface XcmV1Order extends Enum {2285 interface XcmV1Order extends Enum {
2671 readonly isNoop: boolean;2286 readonly isNoop: boolean;
2672 readonly isDepositAsset: boolean;2287 readonly isDepositAsset: boolean;
2716 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2331 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';
2717 }2332 }
27182333
2719 /** @name XcmV1Response (291) */2334 /** @name XcmV1Response (214) */
2720 interface XcmV1Response extends Enum {2335 interface XcmV1Response extends Enum {
2721 readonly isAssets: boolean;2336 readonly isAssets: boolean;
2722 readonly asAssets: XcmV1MultiassetMultiAssets;2337 readonly asAssets: XcmV1MultiassetMultiAssets;
2725 readonly type: 'Assets' | 'Version';2340 readonly type: 'Assets' | 'Version';
2726 }2341 }
27272342
2728 /** @name CumulusPalletXcmCall (305) */2343 /** @name CumulusPalletXcmCall (228) */
2729 type CumulusPalletXcmCall = Null;2344 type CumulusPalletXcmCall = Null;
27302345
2731 /** @name CumulusPalletDmpQueueCall (306) */2346 /** @name CumulusPalletDmpQueueCall (229) */
2732 interface CumulusPalletDmpQueueCall extends Enum {2347 interface CumulusPalletDmpQueueCall extends Enum {
2733 readonly isServiceOverweight: boolean;2348 readonly isServiceOverweight: boolean;
2734 readonly asServiceOverweight: {2349 readonly asServiceOverweight: {
2738 readonly type: 'ServiceOverweight';2353 readonly type: 'ServiceOverweight';
2739 }2354 }
27402355
2741 /** @name PalletInflationCall (307) */2356 /** @name PalletInflationCall (230) */
2742 interface PalletInflationCall extends Enum {2357 interface PalletInflationCall extends Enum {
2743 readonly isStartInflation: boolean;2358 readonly isStartInflation: boolean;
2744 readonly asStartInflation: {2359 readonly asStartInflation: {
2747 readonly type: 'StartInflation';2362 readonly type: 'StartInflation';
2748 }2363 }
27492364
2750 /** @name PalletUniqueCall (308) */2365 /** @name PalletUniqueCall (231) */
2751 interface PalletUniqueCall extends Enum {2366 interface PalletUniqueCall extends Enum {
2752 readonly isCreateCollection: boolean;2367 readonly isCreateCollection: boolean;
2753 readonly asCreateCollection: {2368 readonly asCreateCollection: {
2920 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';2535 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll' | 'ForceRepairCollection' | 'ForceRepairItem';
2921 }2536 }
29222537
2923 /** @name UpDataStructsCollectionMode (313) */2538 /** @name UpDataStructsCollectionMode (236) */
2924 interface UpDataStructsCollectionMode extends Enum {2539 interface UpDataStructsCollectionMode extends Enum {
2925 readonly isNft: boolean;2540 readonly isNft: boolean;
2926 readonly isFungible: boolean;2541 readonly isFungible: boolean;
2929 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2544 readonly type: 'Nft' | 'Fungible' | 'ReFungible';
2930 }2545 }
29312546
2932 /** @name UpDataStructsCreateCollectionData (314) */2547 /** @name UpDataStructsCreateCollectionData (237) */
2933 interface UpDataStructsCreateCollectionData extends Struct {2548 interface UpDataStructsCreateCollectionData extends Struct {
2934 readonly mode: UpDataStructsCollectionMode;2549 readonly mode: UpDataStructsCollectionMode;
2935 readonly access: Option<UpDataStructsAccessMode>;2550 readonly access: Option<UpDataStructsAccessMode>;
2943 readonly properties: Vec<UpDataStructsProperty>;2558 readonly properties: Vec<UpDataStructsProperty>;
2944 }2559 }
29452560
2946 /** @name UpDataStructsAccessMode (316) */2561 /** @name UpDataStructsAccessMode (239) */
2947 interface UpDataStructsAccessMode extends Enum {2562 interface UpDataStructsAccessMode extends Enum {
2948 readonly isNormal: boolean;2563 readonly isNormal: boolean;
2949 readonly isAllowList: boolean;2564 readonly isAllowList: boolean;
2950 readonly type: 'Normal' | 'AllowList';2565 readonly type: 'Normal' | 'AllowList';
2951 }2566 }
29522567
2953 /** @name UpDataStructsCollectionLimits (318) */2568 /** @name UpDataStructsCollectionLimits (241) */
2954 interface UpDataStructsCollectionLimits extends Struct {2569 interface UpDataStructsCollectionLimits extends Struct {
2955 readonly accountTokenOwnershipLimit: Option<u32>;2570 readonly accountTokenOwnershipLimit: Option<u32>;
2956 readonly sponsoredDataSize: Option<u32>;2571 readonly sponsoredDataSize: Option<u32>;
2963 readonly transfersEnabled: Option<bool>;2578 readonly transfersEnabled: Option<bool>;
2964 }2579 }
29652580
2966 /** @name UpDataStructsSponsoringRateLimit (320) */2581 /** @name UpDataStructsSponsoringRateLimit (243) */
2967 interface UpDataStructsSponsoringRateLimit extends Enum {2582 interface UpDataStructsSponsoringRateLimit extends Enum {
2968 readonly isSponsoringDisabled: boolean;2583 readonly isSponsoringDisabled: boolean;
2969 readonly isBlocks: boolean;2584 readonly isBlocks: boolean;
2970 readonly asBlocks: u32;2585 readonly asBlocks: u32;
2971 readonly type: 'SponsoringDisabled' | 'Blocks';2586 readonly type: 'SponsoringDisabled' | 'Blocks';
2972 }2587 }
29732588
2974 /** @name UpDataStructsCollectionPermissions (323) */2589 /** @name UpDataStructsCollectionPermissions (246) */
2975 interface UpDataStructsCollectionPermissions extends Struct {2590 interface UpDataStructsCollectionPermissions extends Struct {
2976 readonly access: Option<UpDataStructsAccessMode>;2591 readonly access: Option<UpDataStructsAccessMode>;
2977 readonly mintMode: Option<bool>;2592 readonly mintMode: Option<bool>;
2978 readonly nesting: Option<UpDataStructsNestingPermissions>;2593 readonly nesting: Option<UpDataStructsNestingPermissions>;
2979 }2594 }
29802595
2981 /** @name UpDataStructsNestingPermissions (325) */2596 /** @name UpDataStructsNestingPermissions (248) */
2982 interface UpDataStructsNestingPermissions extends Struct {2597 interface UpDataStructsNestingPermissions extends Struct {
2983 readonly tokenOwner: bool;2598 readonly tokenOwner: bool;
2984 readonly collectionAdmin: bool;2599 readonly collectionAdmin: bool;
2985 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2600 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;
2986 }2601 }
29872602
2988 /** @name UpDataStructsOwnerRestrictedSet (327) */2603 /** @name UpDataStructsOwnerRestrictedSet (250) */
2989 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}2604 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}
29902605
2991 /** @name UpDataStructsPropertyKeyPermission (332) */2606 /** @name UpDataStructsPropertyKeyPermission (255) */
2992 interface UpDataStructsPropertyKeyPermission extends Struct {2607 interface UpDataStructsPropertyKeyPermission extends Struct {
2993 readonly key: Bytes;2608 readonly key: Bytes;
2994 readonly permission: UpDataStructsPropertyPermission;2609 readonly permission: UpDataStructsPropertyPermission;
2995 }2610 }
29962611
2997 /** @name UpDataStructsPropertyPermission (333) */2612 /** @name UpDataStructsPropertyPermission (256) */
2998 interface UpDataStructsPropertyPermission extends Struct {2613 interface UpDataStructsPropertyPermission extends Struct {
2999 readonly mutable: bool;2614 readonly mutable: bool;
3000 readonly collectionAdmin: bool;2615 readonly collectionAdmin: bool;
3001 readonly tokenOwner: bool;2616 readonly tokenOwner: bool;
3002 }2617 }
30032618
3004 /** @name UpDataStructsProperty (336) */2619 /** @name UpDataStructsProperty (259) */
3005 interface UpDataStructsProperty extends Struct {2620 interface UpDataStructsProperty extends Struct {
3006 readonly key: Bytes;2621 readonly key: Bytes;
3007 readonly value: Bytes;2622 readonly value: Bytes;
3008 }2623 }
30092624
3010 /** @name UpDataStructsCreateItemData (339) */2625 /** @name UpDataStructsCreateItemData (262) */
3011 interface UpDataStructsCreateItemData extends Enum {2626 interface UpDataStructsCreateItemData extends Enum {
3012 readonly isNft: boolean;2627 readonly isNft: boolean;
3013 readonly asNft: UpDataStructsCreateNftData;2628 readonly asNft: UpDataStructsCreateNftData;
3018 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2633 readonly type: 'Nft' | 'Fungible' | 'ReFungible';
3019 }2634 }
30202635
3021 /** @name UpDataStructsCreateNftData (340) */2636 /** @name UpDataStructsCreateNftData (263) */
3022 interface UpDataStructsCreateNftData extends Struct {2637 interface UpDataStructsCreateNftData extends Struct {
3023 readonly properties: Vec<UpDataStructsProperty>;2638 readonly properties: Vec<UpDataStructsProperty>;
3024 }2639 }
30252640
3026 /** @name UpDataStructsCreateFungibleData (341) */2641 /** @name UpDataStructsCreateFungibleData (264) */
3027 interface UpDataStructsCreateFungibleData extends Struct {2642 interface UpDataStructsCreateFungibleData extends Struct {
3028 readonly value: u128;2643 readonly value: u128;
3029 }2644 }
30302645
3031 /** @name UpDataStructsCreateReFungibleData (342) */2646 /** @name UpDataStructsCreateReFungibleData (265) */
3032 interface UpDataStructsCreateReFungibleData extends Struct {2647 interface UpDataStructsCreateReFungibleData extends Struct {
3033 readonly pieces: u128;2648 readonly pieces: u128;
3034 readonly properties: Vec<UpDataStructsProperty>;2649 readonly properties: Vec<UpDataStructsProperty>;
3035 }2650 }
30362651
3037 /** @name UpDataStructsCreateItemExData (345) */2652 /** @name UpDataStructsCreateItemExData (268) */
3038 interface UpDataStructsCreateItemExData extends Enum {2653 interface UpDataStructsCreateItemExData extends Enum {
3039 readonly isNft: boolean;2654 readonly isNft: boolean;
3040 readonly asNft: Vec<UpDataStructsCreateNftExData>;2655 readonly asNft: Vec<UpDataStructsCreateNftExData>;
3047 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2662 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';
3048 }2663 }
30492664
3050 /** @name UpDataStructsCreateNftExData (347) */2665 /** @name UpDataStructsCreateNftExData (270) */
3051 interface UpDataStructsCreateNftExData extends Struct {2666 interface UpDataStructsCreateNftExData extends Struct {
3052 readonly properties: Vec<UpDataStructsProperty>;2667 readonly properties: Vec<UpDataStructsProperty>;
3053 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2668 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
3054 }2669 }
30552670
3056 /** @name UpDataStructsCreateRefungibleExSingleOwner (354) */2671 /** @name UpDataStructsCreateRefungibleExSingleOwner (277) */
3057 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2672 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {
3058 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2673 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;
3059 readonly pieces: u128;2674 readonly pieces: u128;
3060 readonly properties: Vec<UpDataStructsProperty>;2675 readonly properties: Vec<UpDataStructsProperty>;
3061 }2676 }
30622677
3063 /** @name UpDataStructsCreateRefungibleExMultipleOwners (356) */2678 /** @name UpDataStructsCreateRefungibleExMultipleOwners (279) */
3064 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2679 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {
3065 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2680 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;
3066 readonly properties: Vec<UpDataStructsProperty>;2681 readonly properties: Vec<UpDataStructsProperty>;
3067 }2682 }
30682683
3069 /** @name PalletConfigurationCall (357) */2684 /** @name PalletConfigurationCall (280) */
3070 interface PalletConfigurationCall extends Enum {2685 interface PalletConfigurationCall extends Enum {
3071 readonly isSetWeightToFeeCoefficientOverride: boolean;2686 readonly isSetWeightToFeeCoefficientOverride: boolean;
3072 readonly asSetWeightToFeeCoefficientOverride: {2687 readonly asSetWeightToFeeCoefficientOverride: {
3099 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';2714 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations' | 'SetAppPromotionConfigurationOverride' | 'SetCollatorSelectionDesiredCollators' | 'SetCollatorSelectionLicenseBond' | 'SetCollatorSelectionKickThreshold';
3100 }2715 }
31012716
3102 /** @name PalletConfigurationAppPromotionConfiguration (362) */2717 /** @name PalletConfigurationAppPromotionConfiguration (285) */
3103 interface PalletConfigurationAppPromotionConfiguration extends Struct {2718 interface PalletConfigurationAppPromotionConfiguration extends Struct {
3104 readonly recalculationInterval: Option<u32>;2719 readonly recalculationInterval: Option<u32>;
3105 readonly pendingInterval: Option<u32>;2720 readonly pendingInterval: Option<u32>;
3106 readonly intervalIncome: Option<Perbill>;2721 readonly intervalIncome: Option<Perbill>;
3107 readonly maxStakersPerCalculation: Option<u8>;2722 readonly maxStakersPerCalculation: Option<u8>;
3108 }2723 }
31092724
3110 /** @name PalletTemplateTransactionPaymentCall (366) */2725 /** @name PalletTemplateTransactionPaymentCall (289) */
3111 type PalletTemplateTransactionPaymentCall = Null;2726 type PalletTemplateTransactionPaymentCall = Null;
31122727
3113 /** @name PalletStructureCall (367) */2728 /** @name PalletStructureCall (290) */
3114 type PalletStructureCall = Null;2729 type PalletStructureCall = Null;
31152730
3116 /** @name PalletRmrkCoreCall (368) */2731 /** @name PalletRmrkCoreCall (291) */
3117 interface PalletRmrkCoreCall extends Enum {2732 interface PalletRmrkCoreCall extends Enum {
3118 readonly isCreateCollection: boolean;2733 readonly isCreateCollection: boolean;
3119 readonly asCreateCollection: {2734 readonly asCreateCollection: {
3219 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2834 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';
3220 }2835 }
32212836
3222 /** @name RmrkTraitsResourceResourceTypes (374) */2837 /** @name RmrkTraitsResourceResourceTypes (297) */
3223 interface RmrkTraitsResourceResourceTypes extends Enum {2838 interface RmrkTraitsResourceResourceTypes extends Enum {
3224 readonly isBasic: boolean;2839 readonly isBasic: boolean;
3225 readonly asBasic: RmrkTraitsResourceBasicResource;2840 readonly asBasic: RmrkTraitsResourceBasicResource;
3230 readonly type: 'Basic' | 'Composable' | 'Slot';2845 readonly type: 'Basic' | 'Composable' | 'Slot';
3231 }2846 }
32322847
3233 /** @name RmrkTraitsResourceBasicResource (376) */2848 /** @name RmrkTraitsResourceBasicResource (299) */
3234 interface RmrkTraitsResourceBasicResource extends Struct {2849 interface RmrkTraitsResourceBasicResource extends Struct {
3235 readonly src: Option<Bytes>;2850 readonly src: Option<Bytes>;
3236 readonly metadata: Option<Bytes>;2851 readonly metadata: Option<Bytes>;
3237 readonly license: Option<Bytes>;2852 readonly license: Option<Bytes>;
3238 readonly thumb: Option<Bytes>;2853 readonly thumb: Option<Bytes>;
3239 }2854 }
32402855
3241 /** @name RmrkTraitsResourceComposableResource (378) */2856 /** @name RmrkTraitsResourceComposableResource (301) */
3242 interface RmrkTraitsResourceComposableResource extends Struct {2857 interface RmrkTraitsResourceComposableResource extends Struct {
3243 readonly parts: Vec<u32>;2858 readonly parts: Vec<u32>;
3244 readonly base: u32;2859 readonly base: u32;
3248 readonly thumb: Option<Bytes>;2863 readonly thumb: Option<Bytes>;
3249 }2864 }
32502865
3251 /** @name RmrkTraitsResourceSlotResource (379) */2866 /** @name RmrkTraitsResourceSlotResource (302) */
3252 interface RmrkTraitsResourceSlotResource extends Struct {2867 interface RmrkTraitsResourceSlotResource extends Struct {
3253 readonly base: u32;2868 readonly base: u32;
3254 readonly src: Option<Bytes>;2869 readonly src: Option<Bytes>;
3258 readonly thumb: Option<Bytes>;2873 readonly thumb: Option<Bytes>;
3259 }2874 }
32602875
3261 /** @name PalletRmrkEquipCall (382) */2876 /** @name PalletRmrkEquipCall (305) */
3262 interface PalletRmrkEquipCall extends Enum {2877 interface PalletRmrkEquipCall extends Enum {
3263 readonly isCreateBase: boolean;2878 readonly isCreateBase: boolean;
3264 readonly asCreateBase: {2879 readonly asCreateBase: {
3280 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2895 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';
3281 }2896 }
32822897
3283 /** @name RmrkTraitsPartPartType (385) */2898 /** @name RmrkTraitsPartPartType (308) */
3284 interface RmrkTraitsPartPartType extends Enum {2899 interface RmrkTraitsPartPartType extends Enum {
3285 readonly isFixedPart: boolean;2900 readonly isFixedPart: boolean;
3286 readonly asFixedPart: RmrkTraitsPartFixedPart;2901 readonly asFixedPart: RmrkTraitsPartFixedPart;
3289 readonly type: 'FixedPart' | 'SlotPart';2904 readonly type: 'FixedPart' | 'SlotPart';
3290 }2905 }
32912906
3292 /** @name RmrkTraitsPartFixedPart (387) */2907 /** @name RmrkTraitsPartFixedPart (310) */
3293 interface RmrkTraitsPartFixedPart extends Struct {2908 interface RmrkTraitsPartFixedPart extends Struct {
3294 readonly id: u32;2909 readonly id: u32;
3295 readonly z: u32;2910 readonly z: u32;
3296 readonly src: Bytes;2911 readonly src: Bytes;
3297 }2912 }
32982913
3299 /** @name RmrkTraitsPartSlotPart (388) */2914 /** @name RmrkTraitsPartSlotPart (311) */
3300 interface RmrkTraitsPartSlotPart extends Struct {2915 interface RmrkTraitsPartSlotPart extends Struct {
3301 readonly id: u32;2916 readonly id: u32;
3302 readonly equippable: RmrkTraitsPartEquippableList;2917 readonly equippable: RmrkTraitsPartEquippableList;
3303 readonly src: Bytes;2918 readonly src: Bytes;
3304 readonly z: u32;2919 readonly z: u32;
3305 }2920 }
33062921
3307 /** @name RmrkTraitsPartEquippableList (389) */2922 /** @name RmrkTraitsPartEquippableList (312) */
3308 interface RmrkTraitsPartEquippableList extends Enum {2923 interface RmrkTraitsPartEquippableList extends Enum {
3309 readonly isAll: boolean;2924 readonly isAll: boolean;
3310 readonly isEmpty: boolean;2925 readonly isEmpty: boolean;
3313 readonly type: 'All' | 'Empty' | 'Custom';2928 readonly type: 'All' | 'Empty' | 'Custom';
3314 }2929 }
33152930
3316 /** @name RmrkTraitsTheme (391) */2931 /** @name RmrkTraitsTheme (314) */
3317 interface RmrkTraitsTheme extends Struct {2932 interface RmrkTraitsTheme extends Struct {
3318 readonly name: Bytes;2933 readonly name: Bytes;
3319 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2934 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;
3320 readonly inherit: bool;2935 readonly inherit: bool;
3321 }2936 }
33222937
3323 /** @name RmrkTraitsThemeThemeProperty (393) */2938 /** @name RmrkTraitsThemeThemeProperty (316) */
3324 interface RmrkTraitsThemeThemeProperty extends Struct {2939 interface RmrkTraitsThemeThemeProperty extends Struct {
3325 readonly key: Bytes;2940 readonly key: Bytes;
3326 readonly value: Bytes;2941 readonly value: Bytes;
3327 }2942 }
33282943
3329 /** @name PalletAppPromotionCall (395) */2944 /** @name PalletAppPromotionCall (318) */
3330 interface PalletAppPromotionCall extends Enum {2945 interface PalletAppPromotionCall extends Enum {
3331 readonly isSetAdminAddress: boolean;2946 readonly isSetAdminAddress: boolean;
3332 readonly asSetAdminAddress: {2947 readonly asSetAdminAddress: {
3360 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';2975 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';
3361 }2976 }
33622977
3363 /** @name PalletForeignAssetsModuleCall (396) */2978 /** @name PalletForeignAssetsModuleCall (319) */
3364 interface PalletForeignAssetsModuleCall extends Enum {2979 interface PalletForeignAssetsModuleCall extends Enum {
3365 readonly isRegisterForeignAsset: boolean;2980 readonly isRegisterForeignAsset: boolean;
3366 readonly asRegisterForeignAsset: {2981 readonly asRegisterForeignAsset: {
3377 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';2992 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';
3378 }2993 }
33792994
3380 /** @name PalletEvmCall (397) */2995 /** @name PalletEvmCall (320) */
3381 interface PalletEvmCall extends Enum {2996 interface PalletEvmCall extends Enum {
3382 readonly isWithdraw: boolean;2997 readonly isWithdraw: boolean;
3383 readonly asWithdraw: {2998 readonly asWithdraw: {
3422 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3037 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';
3423 }3038 }
34243039
3425 /** @name PalletEthereumCall (403) */3040 /** @name PalletEthereumCall (326) */
3426 interface PalletEthereumCall extends Enum {3041 interface PalletEthereumCall extends Enum {
3427 readonly isTransact: boolean;3042 readonly isTransact: boolean;
3428 readonly asTransact: {3043 readonly asTransact: {
3431 readonly type: 'Transact';3046 readonly type: 'Transact';
3432 }3047 }
34333048
3434 /** @name EthereumTransactionTransactionV2 (404) */3049 /** @name EthereumTransactionTransactionV2 (327) */
3435 interface EthereumTransactionTransactionV2 extends Enum {3050 interface EthereumTransactionTransactionV2 extends Enum {
3436 readonly isLegacy: boolean;3051 readonly isLegacy: boolean;
3437 readonly asLegacy: EthereumTransactionLegacyTransaction;3052 readonly asLegacy: EthereumTransactionLegacyTransaction;
3442 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3057 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
3443 }3058 }
34443059
3445 /** @name EthereumTransactionLegacyTransaction (405) */3060 /** @name EthereumTransactionLegacyTransaction (328) */
3446 interface EthereumTransactionLegacyTransaction extends Struct {3061 interface EthereumTransactionLegacyTransaction extends Struct {
3447 readonly nonce: U256;3062 readonly nonce: U256;
3448 readonly gasPrice: U256;3063 readonly gasPrice: U256;
3453 readonly signature: EthereumTransactionTransactionSignature;3068 readonly signature: EthereumTransactionTransactionSignature;
3454 }3069 }
34553070
3456 /** @name EthereumTransactionTransactionAction (406) */3071 /** @name EthereumTransactionTransactionAction (329) */
3457 interface EthereumTransactionTransactionAction extends Enum {3072 interface EthereumTransactionTransactionAction extends Enum {
3458 readonly isCall: boolean;3073 readonly isCall: boolean;
3459 readonly asCall: H160;3074 readonly asCall: H160;
3460 readonly isCreate: boolean;3075 readonly isCreate: boolean;
3461 readonly type: 'Call' | 'Create';3076 readonly type: 'Call' | 'Create';
3462 }3077 }
34633078
3464 /** @name EthereumTransactionTransactionSignature (407) */3079 /** @name EthereumTransactionTransactionSignature (330) */
3465 interface EthereumTransactionTransactionSignature extends Struct {3080 interface EthereumTransactionTransactionSignature extends Struct {
3466 readonly v: u64;3081 readonly v: u64;
3467 readonly r: H256;3082 readonly r: H256;
3468 readonly s: H256;3083 readonly s: H256;
3469 }3084 }
34703085
3471 /** @name EthereumTransactionEip2930Transaction (409) */3086 /** @name EthereumTransactionEip2930Transaction (332) */
3472 interface EthereumTransactionEip2930Transaction extends Struct {3087 interface EthereumTransactionEip2930Transaction extends Struct {
3473 readonly chainId: u64;3088 readonly chainId: u64;
3474 readonly nonce: U256;3089 readonly nonce: U256;
3483 readonly s: H256;3098 readonly s: H256;
3484 }3099 }
34853100
3486 /** @name EthereumTransactionAccessListItem (411) */3101 /** @name EthereumTransactionAccessListItem (334) */
3487 interface EthereumTransactionAccessListItem extends Struct {3102 interface EthereumTransactionAccessListItem extends Struct {
3488 readonly address: H160;3103 readonly address: H160;
3489 readonly storageKeys: Vec<H256>;3104 readonly storageKeys: Vec<H256>;
3490 }3105 }
34913106
3492 /** @name EthereumTransactionEip1559Transaction (412) */3107 /** @name EthereumTransactionEip1559Transaction (335) */
3493 interface EthereumTransactionEip1559Transaction extends Struct {3108 interface EthereumTransactionEip1559Transaction extends Struct {
3494 readonly chainId: u64;3109 readonly chainId: u64;
3495 readonly nonce: U256;3110 readonly nonce: U256;
3505 readonly s: H256;3120 readonly s: H256;
3506 }3121 }
35073122
3508 /** @name PalletEvmMigrationCall (413) */3123 /** @name PalletEvmMigrationCall (336) */
3509 interface PalletEvmMigrationCall extends Enum {3124 interface PalletEvmMigrationCall extends Enum {
3510 readonly isBegin: boolean;3125 readonly isBegin: boolean;
3511 readonly asBegin: {3126 readonly asBegin: {
3532 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3147 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';
3533 }3148 }
35343149
3535 /** @name PalletMaintenanceCall (417) */3150 /** @name PalletMaintenanceCall (340) */
3536 interface PalletMaintenanceCall extends Enum {3151 interface PalletMaintenanceCall extends Enum {
3537 readonly isEnable: boolean;3152 readonly isEnable: boolean;
3538 readonly isDisable: boolean;3153 readonly isDisable: boolean;
3539 readonly type: 'Enable' | 'Disable';3154 readonly type: 'Enable' | 'Disable';
3540 }3155 }
35413156
3542 /** @name PalletTestUtilsCall (418) */3157 /** @name PalletTestUtilsCall (341) */
3543 interface PalletTestUtilsCall extends Enum {3158 interface PalletTestUtilsCall extends Enum {
3544 readonly isEnable: boolean;3159 readonly isEnable: boolean;
3545 readonly isSetTestValue: boolean;3160 readonly isSetTestValue: boolean;
3559 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';3174 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'JustTakeFee' | 'BatchAll';
3560 }3175 }
35613176
3562 /** @name PalletSudoError (420) */3177 /** @name PalletSudoError (343) */
3563 interface PalletSudoError extends Enum {3178 interface PalletSudoError extends Enum {
3564 readonly isRequireSudo: boolean;3179 readonly isRequireSudo: boolean;
3565 readonly type: 'RequireSudo';3180 readonly type: 'RequireSudo';
3566 }3181 }
35673182
3568 /** @name OrmlVestingModuleError (422) */3183 /** @name OrmlVestingModuleError (345) */
3569 interface OrmlVestingModuleError extends Enum {3184 interface OrmlVestingModuleError extends Enum {
3570 readonly isZeroVestingPeriod: boolean;3185 readonly isZeroVestingPeriod: boolean;
3571 readonly isZeroVestingPeriodCount: boolean;3186 readonly isZeroVestingPeriodCount: boolean;
3576 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3191 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';
3577 }3192 }
35783193
3579 /** @name OrmlXtokensModuleError (423) */3194 /** @name OrmlXtokensModuleError (346) */
3580 interface OrmlXtokensModuleError extends Enum {3195 interface OrmlXtokensModuleError extends Enum {
3581 readonly isAssetHasNoReserve: boolean;3196 readonly isAssetHasNoReserve: boolean;
3582 readonly isNotCrossChainTransfer: boolean;3197 readonly isNotCrossChainTransfer: boolean;
3600 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3215 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';
3601 }3216 }
36023217
3603 /** @name OrmlTokensBalanceLock (426) */3218 /** @name OrmlTokensBalanceLock (349) */
3604 interface OrmlTokensBalanceLock extends Struct {3219 interface OrmlTokensBalanceLock extends Struct {
3605 readonly id: U8aFixed;3220 readonly id: U8aFixed;
3606 readonly amount: u128;3221 readonly amount: u128;
3607 }3222 }
36083223
3609 /** @name OrmlTokensAccountData (428) */3224 /** @name OrmlTokensAccountData (351) */
3610 interface OrmlTokensAccountData extends Struct {3225 interface OrmlTokensAccountData extends Struct {
3611 readonly free: u128;3226 readonly free: u128;
3612 readonly reserved: u128;3227 readonly reserved: u128;
3613 readonly frozen: u128;3228 readonly frozen: u128;
3614 }3229 }
36153230
3616 /** @name OrmlTokensReserveData (430) */3231 /** @name OrmlTokensReserveData (353) */
3617 interface OrmlTokensReserveData extends Struct {3232 interface OrmlTokensReserveData extends Struct {
3618 readonly id: Null;3233 readonly id: Null;
3619 readonly amount: u128;3234 readonly amount: u128;
3620 }3235 }
36213236
3622 /** @name OrmlTokensModuleError (432) */3237 /** @name OrmlTokensModuleError (355) */
3623 interface OrmlTokensModuleError extends Enum {3238 interface OrmlTokensModuleError extends Enum {
3624 readonly isBalanceTooLow: boolean;3239 readonly isBalanceTooLow: boolean;
3625 readonly isAmountIntoBalanceFailed: boolean;3240 readonly isAmountIntoBalanceFailed: boolean;
3632 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3247 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';
3633 }3248 }
36343249
3635 /** @name CumulusPalletXcmpQueueInboundChannelDetails (434) */3250 /** @name CumulusPalletXcmpQueueInboundChannelDetails (357) */
3636 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3251 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {
3637 readonly sender: u32;3252 readonly sender: u32;
3638 readonly state: CumulusPalletXcmpQueueInboundState;3253 readonly state: CumulusPalletXcmpQueueInboundState;
3639 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3254 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;
3640 }3255 }
36413256
3642 /** @name CumulusPalletXcmpQueueInboundState (435) */3257 /** @name CumulusPalletXcmpQueueInboundState (358) */
3643 interface CumulusPalletXcmpQueueInboundState extends Enum {3258 interface CumulusPalletXcmpQueueInboundState extends Enum {
3644 readonly isOk: boolean;3259 readonly isOk: boolean;
3645 readonly isSuspended: boolean;3260 readonly isSuspended: boolean;
3646 readonly type: 'Ok' | 'Suspended';3261 readonly type: 'Ok' | 'Suspended';
3647 }3262 }
36483263
3649 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (438) */3264 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (361) */
3650 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3265 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {
3651 readonly isConcatenatedVersionedXcm: boolean;3266 readonly isConcatenatedVersionedXcm: boolean;
3652 readonly isConcatenatedEncodedBlob: boolean;3267 readonly isConcatenatedEncodedBlob: boolean;
3653 readonly isSignals: boolean;3268 readonly isSignals: boolean;
3654 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3269 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';
3655 }3270 }
36563271
3657 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (441) */3272 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (364) */
3658 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3273 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {
3659 readonly recipient: u32;3274 readonly recipient: u32;
3660 readonly state: CumulusPalletXcmpQueueOutboundState;3275 readonly state: CumulusPalletXcmpQueueOutboundState;
3663 readonly lastIndex: u16;3278 readonly lastIndex: u16;
3664 }3279 }
36653280
3666 /** @name CumulusPalletXcmpQueueOutboundState (442) */3281 /** @name CumulusPalletXcmpQueueOutboundState (365) */
3667 interface CumulusPalletXcmpQueueOutboundState extends Enum {3282 interface CumulusPalletXcmpQueueOutboundState extends Enum {
3668 readonly isOk: boolean;3283 readonly isOk: boolean;
3669 readonly isSuspended: boolean;3284 readonly isSuspended: boolean;
3670 readonly type: 'Ok' | 'Suspended';3285 readonly type: 'Ok' | 'Suspended';
3671 }3286 }
36723287
3673 /** @name CumulusPalletXcmpQueueQueueConfigData (444) */3288 /** @name CumulusPalletXcmpQueueQueueConfigData (367) */
3674 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3289 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {
3675 readonly suspendThreshold: u32;3290 readonly suspendThreshold: u32;
3676 readonly dropThreshold: u32;3291 readonly dropThreshold: u32;
3680 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3295 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;
3681 }3296 }
36823297
3683 /** @name CumulusPalletXcmpQueueError (446) */3298 /** @name CumulusPalletXcmpQueueError (369) */
3684 interface CumulusPalletXcmpQueueError extends Enum {3299 interface CumulusPalletXcmpQueueError extends Enum {
3685 readonly isFailedToSend: boolean;3300 readonly isFailedToSend: boolean;
3686 readonly isBadXcmOrigin: boolean;3301 readonly isBadXcmOrigin: boolean;
3690 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3305 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';
3691 }3306 }
36923307
3693 /** @name PalletXcmError (447) */3308 /** @name PalletXcmError (370) */
3694 interface PalletXcmError extends Enum {3309 interface PalletXcmError extends Enum {
3695 readonly isUnreachable: boolean;3310 readonly isUnreachable: boolean;
3696 readonly isSendFailure: boolean;3311 readonly isSendFailure: boolean;
3708 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3323 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';
3709 }3324 }
37103325
3711 /** @name CumulusPalletXcmError (448) */3326 /** @name CumulusPalletXcmError (371) */
3712 type CumulusPalletXcmError = Null;3327 type CumulusPalletXcmError = Null;
37133328
3714 /** @name CumulusPalletDmpQueueConfigData (449) */3329 /** @name CumulusPalletDmpQueueConfigData (372) */
3715 interface CumulusPalletDmpQueueConfigData extends Struct {3330 interface CumulusPalletDmpQueueConfigData extends Struct {
3716 readonly maxIndividual: SpWeightsWeightV2Weight;3331 readonly maxIndividual: SpWeightsWeightV2Weight;
3717 }3332 }
37183333
3719 /** @name CumulusPalletDmpQueuePageIndexData (450) */3334 /** @name CumulusPalletDmpQueuePageIndexData (373) */
3720 interface CumulusPalletDmpQueuePageIndexData extends Struct {3335 interface CumulusPalletDmpQueuePageIndexData extends Struct {
3721 readonly beginUsed: u32;3336 readonly beginUsed: u32;
3722 readonly endUsed: u32;3337 readonly endUsed: u32;
3723 readonly overweightCount: u64;3338 readonly overweightCount: u64;
3724 }3339 }
37253340
3726 /** @name CumulusPalletDmpQueueError (453) */3341 /** @name CumulusPalletDmpQueueError (376) */
3727 interface CumulusPalletDmpQueueError extends Enum {3342 interface CumulusPalletDmpQueueError extends Enum {
3728 readonly isUnknown: boolean;3343 readonly isUnknown: boolean;
3729 readonly isOverLimit: boolean;3344 readonly isOverLimit: boolean;
3730 readonly type: 'Unknown' | 'OverLimit';3345 readonly type: 'Unknown' | 'OverLimit';
3731 }3346 }
37323347
3733 /** @name PalletUniqueError (457) */3348 /** @name PalletUniqueError (380) */
3734 interface PalletUniqueError extends Enum {3349 interface PalletUniqueError extends Enum {
3735 readonly isCollectionDecimalPointLimitExceeded: boolean;3350 readonly isCollectionDecimalPointLimitExceeded: boolean;
3736 readonly isEmptyArgument: boolean;3351 readonly isEmptyArgument: boolean;
3737 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3352 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;
3738 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3353 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';
3739 }3354 }
37403355
3741 /** @name PalletConfigurationError (458) */3356 /** @name PalletConfigurationError (381) */
3742 interface PalletConfigurationError extends Enum {3357 interface PalletConfigurationError extends Enum {
3743 readonly isInconsistentConfiguration: boolean;3358 readonly isInconsistentConfiguration: boolean;
3744 readonly type: 'InconsistentConfiguration';3359 readonly type: 'InconsistentConfiguration';
3745 }3360 }
37463361
3747 /** @name UpDataStructsCollection (459) */3362 /** @name UpDataStructsCollection (382) */
3748 interface UpDataStructsCollection extends Struct {3363 interface UpDataStructsCollection extends Struct {
3749 readonly owner: AccountId32;3364 readonly owner: AccountId32;
3750 readonly mode: UpDataStructsCollectionMode;3365 readonly mode: UpDataStructsCollectionMode;
3757 readonly flags: U8aFixed;3372 readonly flags: U8aFixed;
3758 }3373 }
37593374
3760 /** @name UpDataStructsSponsorshipStateAccountId32 (460) */3375 /** @name UpDataStructsSponsorshipStateAccountId32 (383) */
3761 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3376 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {
3762 readonly isDisabled: boolean;3377 readonly isDisabled: boolean;
3763 readonly isUnconfirmed: boolean;3378 readonly isUnconfirmed: boolean;
3767 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3382 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
3768 }3383 }
37693384
3770 /** @name UpDataStructsProperties (461) */3385 /** @name UpDataStructsProperties (385) */
3771 interface UpDataStructsProperties extends Struct {3386 interface UpDataStructsProperties extends Struct {
3772 readonly map: UpDataStructsPropertiesMapBoundedVec;3387 readonly map: UpDataStructsPropertiesMapBoundedVec;
3773 readonly consumedSpace: u32;3388 readonly consumedSpace: u32;
3774 readonly spaceLimit: u32;3389 readonly spaceLimit: u32;
3775 }3390 }
37763391
3777 /** @name UpDataStructsPropertiesMapBoundedVec (462) */3392 /** @name UpDataStructsPropertiesMapBoundedVec (386) */
3778 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3393 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}
37793394
3780 /** @name UpDataStructsPropertiesMapPropertyPermission (467) */3395 /** @name UpDataStructsPropertiesMapPropertyPermission (391) */
3781 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3396 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}
37823397
3783 /** @name UpDataStructsCollectionStats (474) */3398 /** @name UpDataStructsCollectionStats (398) */
3784 interface UpDataStructsCollectionStats extends Struct {3399 interface UpDataStructsCollectionStats extends Struct {
3785 readonly created: u32;3400 readonly created: u32;
3786 readonly destroyed: u32;3401 readonly destroyed: u32;
3787 readonly alive: u32;3402 readonly alive: u32;
3788 }3403 }
37893404
3790 /** @name UpDataStructsTokenChild (475) */3405 /** @name UpDataStructsTokenChild (399) */
3791 interface UpDataStructsTokenChild extends Struct {3406 interface UpDataStructsTokenChild extends Struct {
3792 readonly token: u32;3407 readonly token: u32;
3793 readonly collection: u32;3408 readonly collection: u32;
3794 }3409 }
37953410
3796 /** @name PhantomTypeUpDataStructs (476) */3411 /** @name PhantomTypeUpDataStructs (400) */
3797 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild, UpPovEstimateRpcPovInfo]>> {}3412 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild, UpPovEstimateRpcPovInfo]>> {}
37983413
3799 /** @name UpDataStructsTokenData (478) */3414 /** @name UpDataStructsTokenData (402) */
3800 interface UpDataStructsTokenData extends Struct {3415 interface UpDataStructsTokenData extends Struct {
3801 readonly properties: Vec<UpDataStructsProperty>;3416 readonly properties: Vec<UpDataStructsProperty>;
3802 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3417 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;
3803 readonly pieces: u128;3418 readonly pieces: u128;
3804 }3419 }
38053420
3806 /** @name UpDataStructsRpcCollection (480) */3421 /** @name UpDataStructsRpcCollection (404) */
3807 interface UpDataStructsRpcCollection extends Struct {3422 interface UpDataStructsRpcCollection extends Struct {
3808 readonly owner: AccountId32;3423 readonly owner: AccountId32;
3809 readonly mode: UpDataStructsCollectionMode;3424 readonly mode: UpDataStructsCollectionMode;
3819 readonly flags: UpDataStructsRpcCollectionFlags;3434 readonly flags: UpDataStructsRpcCollectionFlags;
3820 }3435 }
38213436
3822 /** @name UpDataStructsRpcCollectionFlags (481) */3437 /** @name UpDataStructsRpcCollectionFlags (405) */
3823 interface UpDataStructsRpcCollectionFlags extends Struct {3438 interface UpDataStructsRpcCollectionFlags extends Struct {
3824 readonly foreign: bool;3439 readonly foreign: bool;
3825 readonly erc721metadata: bool;3440 readonly erc721metadata: bool;
3826 }3441 }
38273442
3828 /** @name RmrkTraitsCollectionCollectionInfo (482) */3443 /** @name RmrkTraitsCollectionCollectionInfo (406) */
3829 interface RmrkTraitsCollectionCollectionInfo extends Struct {3444 interface RmrkTraitsCollectionCollectionInfo extends Struct {
3830 readonly issuer: AccountId32;3445 readonly issuer: AccountId32;
3831 readonly metadata: Bytes;3446 readonly metadata: Bytes;
3834 readonly nftsCount: u32;3449 readonly nftsCount: u32;
3835 }3450 }
38363451
3837 /** @name RmrkTraitsNftNftInfo (483) */3452 /** @name RmrkTraitsNftNftInfo (407) */
3838 interface RmrkTraitsNftNftInfo extends Struct {3453 interface RmrkTraitsNftNftInfo extends Struct {
3839 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3454 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;
3840 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3455 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;
3843 readonly pending: bool;3458 readonly pending: bool;
3844 }3459 }
38453460
3846 /** @name RmrkTraitsNftRoyaltyInfo (485) */3461 /** @name RmrkTraitsNftRoyaltyInfo (409) */
3847 interface RmrkTraitsNftRoyaltyInfo extends Struct {3462 interface RmrkTraitsNftRoyaltyInfo extends Struct {
3848 readonly recipient: AccountId32;3463 readonly recipient: AccountId32;
3849 readonly amount: Permill;3464 readonly amount: Permill;
3850 }3465 }
38513466
3852 /** @name RmrkTraitsResourceResourceInfo (486) */3467 /** @name RmrkTraitsResourceResourceInfo (410) */
3853 interface RmrkTraitsResourceResourceInfo extends Struct {3468 interface RmrkTraitsResourceResourceInfo extends Struct {
3854 readonly id: u32;3469 readonly id: u32;
3855 readonly resource: RmrkTraitsResourceResourceTypes;3470 readonly resource: RmrkTraitsResourceResourceTypes;
3856 readonly pending: bool;3471 readonly pending: bool;
3857 readonly pendingRemoval: bool;3472 readonly pendingRemoval: bool;
3858 }3473 }
38593474
3860 /** @name RmrkTraitsPropertyPropertyInfo (487) */3475 /** @name RmrkTraitsPropertyPropertyInfo (411) */
3861 interface RmrkTraitsPropertyPropertyInfo extends Struct {3476 interface RmrkTraitsPropertyPropertyInfo extends Struct {
3862 readonly key: Bytes;3477 readonly key: Bytes;
3863 readonly value: Bytes;3478 readonly value: Bytes;
3864 }3479 }
38653480
3866 /** @name RmrkTraitsBaseBaseInfo (488) */3481 /** @name RmrkTraitsBaseBaseInfo (412) */
3867 interface RmrkTraitsBaseBaseInfo extends Struct {3482 interface RmrkTraitsBaseBaseInfo extends Struct {
3868 readonly issuer: AccountId32;3483 readonly issuer: AccountId32;
3869 readonly baseType: Bytes;3484 readonly baseType: Bytes;
3870 readonly symbol: Bytes;3485 readonly symbol: Bytes;
3871 }3486 }
38723487
3873 /** @name RmrkTraitsNftNftChild (489) */3488 /** @name RmrkTraitsNftNftChild (413) */
3874 interface RmrkTraitsNftNftChild extends Struct {3489 interface RmrkTraitsNftNftChild extends Struct {
3875 readonly collectionId: u32;3490 readonly collectionId: u32;
3876 readonly nftId: u32;3491 readonly nftId: u32;
3877 }3492 }
38783493
3879 /** @name UpPovEstimateRpcPovInfo (490) */3494 /** @name UpPovEstimateRpcPovInfo (414) */
3880 interface UpPovEstimateRpcPovInfo extends Struct {3495 interface UpPovEstimateRpcPovInfo extends Struct {
3881 readonly proofSize: u64;3496 readonly proofSize: u64;
3882 readonly compactProofSize: u64;3497 readonly compactProofSize: u64;
3885 readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;3500 readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;
3886 }3501 }
38873502
3888 /** @name SpRuntimeTransactionValidityTransactionValidityError (493) */3503 /** @name SpRuntimeTransactionValidityTransactionValidityError (417) */
3889 interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {3504 interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {
3890 readonly isInvalid: boolean;3505 readonly isInvalid: boolean;
3891 readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;3506 readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;
3894 readonly type: 'Invalid' | 'Unknown';3509 readonly type: 'Invalid' | 'Unknown';
3895 }3510 }
38963511
3897 /** @name SpRuntimeTransactionValidityInvalidTransaction (494) */3512 /** @name SpRuntimeTransactionValidityInvalidTransaction (418) */
3898 interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {3513 interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {
3899 readonly isCall: boolean;3514 readonly isCall: boolean;
3900 readonly isPayment: boolean;3515 readonly isPayment: boolean;
3911 readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';3526 readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';
3912 }3527 }
39133528
3914 /** @name SpRuntimeTransactionValidityUnknownTransaction (495) */3529 /** @name SpRuntimeTransactionValidityUnknownTransaction (419) */
3915 interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {3530 interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {
3916 readonly isCannotLookup: boolean;3531 readonly isCannotLookup: boolean;
3917 readonly isNoUnsignedValidator: boolean;3532 readonly isNoUnsignedValidator: boolean;
3920 readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';3535 readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';
3921 }3536 }
39223537
3923 /** @name UpPovEstimateRpcTrieKeyValue (497) */3538 /** @name UpPovEstimateRpcTrieKeyValue (421) */
3924 interface UpPovEstimateRpcTrieKeyValue extends Struct {3539 interface UpPovEstimateRpcTrieKeyValue extends Struct {
3925 readonly key: Bytes;3540 readonly key: Bytes;
3926 readonly value: Bytes;3541 readonly value: Bytes;
3927 }3542 }
39283543
3929 /** @name PalletCommonError (499) */3544 /** @name PalletCommonError (423) */
3930 interface PalletCommonError extends Enum {3545 interface PalletCommonError extends Enum {
3931 readonly isCollectionNotFound: boolean;3546 readonly isCollectionNotFound: boolean;
3932 readonly isMustBeTokenOwner: boolean;3547 readonly isMustBeTokenOwner: boolean;
3967 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';3582 readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
3968 }3583 }
39693584
3970 /** @name PalletFungibleError (501) */3585 /** @name PalletFungibleError (425) */
3971 interface PalletFungibleError extends Enum {3586 interface PalletFungibleError extends Enum {
3972 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3587 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
3973 readonly isFungibleItemsHaveNoId: boolean;3588 readonly isFungibleItemsHaveNoId: boolean;
3979 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';3594 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
3980 }3595 }
39813596
3982 /** @name PalletRefungibleError (505) */3597 /** @name PalletRefungibleError (429) */
3983 interface PalletRefungibleError extends Enum {3598 interface PalletRefungibleError extends Enum {
3984 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3599 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
3985 readonly isWrongRefungiblePieces: boolean;3600 readonly isWrongRefungiblePieces: boolean;
3989 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3604 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
3990 }3605 }
39913606
3992 /** @name PalletNonfungibleItemData (506) */3607 /** @name PalletNonfungibleItemData (430) */
3993 interface PalletNonfungibleItemData extends Struct {3608 interface PalletNonfungibleItemData extends Struct {
3994 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3609 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
3995 }3610 }
39963611
3997 /** @name UpDataStructsPropertyScope (508) */3612 /** @name UpDataStructsPropertyScope (432) */
3998 interface UpDataStructsPropertyScope extends Enum {3613 interface UpDataStructsPropertyScope extends Enum {
3999 readonly isNone: boolean;3614 readonly isNone: boolean;
4000 readonly isRmrk: boolean;3615 readonly isRmrk: boolean;
4001 readonly type: 'None' | 'Rmrk';3616 readonly type: 'None' | 'Rmrk';
4002 }3617 }
40033618
4004 /** @name PalletNonfungibleError (511) */3619 /** @name PalletNonfungibleError (435) */
4005 interface PalletNonfungibleError extends Enum {3620 interface PalletNonfungibleError extends Enum {
4006 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3621 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
4007 readonly isNonfungibleItemsHaveNoAmount: boolean;3622 readonly isNonfungibleItemsHaveNoAmount: boolean;
4008 readonly isCantBurnNftWithChildren: boolean;3623 readonly isCantBurnNftWithChildren: boolean;
4009 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3624 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
4010 }3625 }
40113626
4012 /** @name PalletStructureError (512) */3627 /** @name PalletStructureError (436) */
4013 interface PalletStructureError extends Enum {3628 interface PalletStructureError extends Enum {
4014 readonly isOuroborosDetected: boolean;3629 readonly isOuroborosDetected: boolean;
4015 readonly isDepthLimit: boolean;3630 readonly isDepthLimit: boolean;
4018 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3633 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
4019 }3634 }
40203635
4021 /** @name PalletRmrkCoreError (513) */3636 /** @name PalletRmrkCoreError (437) */
4022 interface PalletRmrkCoreError extends Enum {3637 interface PalletRmrkCoreError extends Enum {
4023 readonly isCorruptedCollectionType: boolean;3638 readonly isCorruptedCollectionType: boolean;
4024 readonly isRmrkPropertyKeyIsTooLong: boolean;3639 readonly isRmrkPropertyKeyIsTooLong: boolean;
4042 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3657 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
4043 }3658 }
40443659
4045 /** @name PalletRmrkEquipError (515) */3660 /** @name PalletRmrkEquipError (439) */
4046 interface PalletRmrkEquipError extends Enum {3661 interface PalletRmrkEquipError extends Enum {
4047 readonly isPermissionError: boolean;3662 readonly isPermissionError: boolean;
4048 readonly isNoAvailableBaseId: boolean;3663 readonly isNoAvailableBaseId: boolean;
4054 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3669 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
4055 }3670 }
40563671
4057 /** @name PalletAppPromotionError (521) */3672 /** @name PalletAppPromotionError (445) */
4058 interface PalletAppPromotionError extends Enum {3673 interface PalletAppPromotionError extends Enum {
4059 readonly isAdminNotSet: boolean;3674 readonly isAdminNotSet: boolean;
4060 readonly isNoPermission: boolean;3675 readonly isNoPermission: boolean;
4065 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3680 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
4066 }3681 }
40673682
4068 /** @name PalletForeignAssetsModuleError (522) */3683 /** @name PalletForeignAssetsModuleError (446) */
4069 interface PalletForeignAssetsModuleError extends Enum {3684 interface PalletForeignAssetsModuleError extends Enum {
4070 readonly isBadLocation: boolean;3685 readonly isBadLocation: boolean;
4071 readonly isMultiLocationExisted: boolean;3686 readonly isMultiLocationExisted: boolean;
4074 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3689 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
4075 }3690 }
40763691
4077 /** @name PalletEvmError (524) */3692 /** @name PalletEvmError (448) */
4078 interface PalletEvmError extends Enum {3693 interface PalletEvmError extends Enum {
4079 readonly isBalanceLow: boolean;3694 readonly isBalanceLow: boolean;
4080 readonly isFeeOverflow: boolean;3695 readonly isFeeOverflow: boolean;
4090 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';3705 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';
4091 }3706 }
40923707
4093 /** @name FpRpcTransactionStatus (527) */3708 /** @name FpRpcTransactionStatus (451) */
4094 interface FpRpcTransactionStatus extends Struct {3709 interface FpRpcTransactionStatus extends Struct {
4095 readonly transactionHash: H256;3710 readonly transactionHash: H256;
4096 readonly transactionIndex: u32;3711 readonly transactionIndex: u32;
4101 readonly logsBloom: EthbloomBloom;3716 readonly logsBloom: EthbloomBloom;
4102 }3717 }
41033718
4104 /** @name EthbloomBloom (529) */3719 /** @name EthbloomBloom (453) */
4105 interface EthbloomBloom extends U8aFixed {}3720 interface EthbloomBloom extends U8aFixed {}
41063721
4107 /** @name EthereumReceiptReceiptV3 (531) */3722 /** @name EthereumReceiptReceiptV3 (455) */
4108 interface EthereumReceiptReceiptV3 extends Enum {3723 interface EthereumReceiptReceiptV3 extends Enum {
4109 readonly isLegacy: boolean;3724 readonly isLegacy: boolean;
4110 readonly asLegacy: EthereumReceiptEip658ReceiptData;3725 readonly asLegacy: EthereumReceiptEip658ReceiptData;
4115 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3730 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
4116 }3731 }
41173732
4118 /** @name EthereumReceiptEip658ReceiptData (532) */3733 /** @name EthereumReceiptEip658ReceiptData (456) */
4119 interface EthereumReceiptEip658ReceiptData extends Struct {3734 interface EthereumReceiptEip658ReceiptData extends Struct {
4120 readonly statusCode: u8;3735 readonly statusCode: u8;
4121 readonly usedGas: U256;3736 readonly usedGas: U256;
4122 readonly logsBloom: EthbloomBloom;3737 readonly logsBloom: EthbloomBloom;
4123 readonly logs: Vec<EthereumLog>;3738 readonly logs: Vec<EthereumLog>;
4124 }3739 }
41253740
4126 /** @name EthereumBlock (533) */3741 /** @name EthereumBlock (457) */
4127 interface EthereumBlock extends Struct {3742 interface EthereumBlock extends Struct {
4128 readonly header: EthereumHeader;3743 readonly header: EthereumHeader;
4129 readonly transactions: Vec<EthereumTransactionTransactionV2>;3744 readonly transactions: Vec<EthereumTransactionTransactionV2>;
4130 readonly ommers: Vec<EthereumHeader>;3745 readonly ommers: Vec<EthereumHeader>;
4131 }3746 }
41323747
4133 /** @name EthereumHeader (534) */3748 /** @name EthereumHeader (458) */
4134 interface EthereumHeader extends Struct {3749 interface EthereumHeader extends Struct {
4135 readonly parentHash: H256;3750 readonly parentHash: H256;
4136 readonly ommersHash: H256;3751 readonly ommersHash: H256;
4149 readonly nonce: EthereumTypesHashH64;3764 readonly nonce: EthereumTypesHashH64;
4150 }3765 }
41513766
4152 /** @name EthereumTypesHashH64 (535) */3767 /** @name EthereumTypesHashH64 (459) */
4153 interface EthereumTypesHashH64 extends U8aFixed {}3768 interface EthereumTypesHashH64 extends U8aFixed {}
41543769
4155 /** @name PalletEthereumError (540) */3770 /** @name PalletEthereumError (464) */
4156 interface PalletEthereumError extends Enum {3771 interface PalletEthereumError extends Enum {
4157 readonly isInvalidSignature: boolean;3772 readonly isInvalidSignature: boolean;
4158 readonly isPreLogExists: boolean;3773 readonly isPreLogExists: boolean;
4159 readonly type: 'InvalidSignature' | 'PreLogExists';3774 readonly type: 'InvalidSignature' | 'PreLogExists';
4160 }3775 }
41613776
4162 /** @name PalletEvmCoderSubstrateError (541) */3777 /** @name PalletEvmCoderSubstrateError (465) */
4163 interface PalletEvmCoderSubstrateError extends Enum {3778 interface PalletEvmCoderSubstrateError extends Enum {
4164 readonly isOutOfGas: boolean;3779 readonly isOutOfGas: boolean;
4165 readonly isOutOfFund: boolean;3780 readonly isOutOfFund: boolean;
4166 readonly type: 'OutOfGas' | 'OutOfFund';3781 readonly type: 'OutOfGas' | 'OutOfFund';
4167 }3782 }
41683783
4169 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (542) */3784 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (466) */
4170 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3785 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
4171 readonly isDisabled: boolean;3786 readonly isDisabled: boolean;
4172 readonly isUnconfirmed: boolean;3787 readonly isUnconfirmed: boolean;
4176 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3791 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
4177 }3792 }
41783793
4179 /** @name PalletEvmContractHelpersSponsoringModeT (543) */3794 /** @name PalletEvmContractHelpersSponsoringModeT (467) */
4180 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3795 interface PalletEvmContractHelpersSponsoringModeT extends Enum {
4181 readonly isDisabled: boolean;3796 readonly isDisabled: boolean;
4182 readonly isAllowlisted: boolean;3797 readonly isAllowlisted: boolean;
4183 readonly isGenerous: boolean;3798 readonly isGenerous: boolean;
4184 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3799 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
4185 }3800 }
41863801
4187 /** @name PalletEvmContractHelpersError (549) */3802 /** @name PalletEvmContractHelpersError (473) */
4188 interface PalletEvmContractHelpersError extends Enum {3803 interface PalletEvmContractHelpersError extends Enum {
4189 readonly isNoPermission: boolean;3804 readonly isNoPermission: boolean;
4190 readonly isNoPendingSponsor: boolean;3805 readonly isNoPendingSponsor: boolean;
4191 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3806 readonly isTooManyMethodsHaveSponsoredLimit: boolean;
4192 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3807 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
4193 }3808 }
41943809
4195 /** @name PalletEvmMigrationError (550) */3810 /** @name PalletEvmMigrationError (474) */
4196 interface PalletEvmMigrationError extends Enum {3811 interface PalletEvmMigrationError extends Enum {
4197 readonly isAccountNotEmpty: boolean;3812 readonly isAccountNotEmpty: boolean;
4198 readonly isAccountIsNotMigrating: boolean;3813 readonly isAccountIsNotMigrating: boolean;
4199 readonly isBadEvent: boolean;3814 readonly isBadEvent: boolean;
4200 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3815 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
4201 }3816 }
42023817
4203 /** @name PalletMaintenanceError (551) */3818 /** @name PalletMaintenanceError (475) */
4204 type PalletMaintenanceError = Null;3819 type PalletMaintenanceError = Null;
42053820
4206 /** @name PalletTestUtilsError (552) */3821 /** @name PalletTestUtilsError (476) */
4207 interface PalletTestUtilsError extends Enum {3822 interface PalletTestUtilsError extends Enum {
4208 readonly isTestPalletDisabled: boolean;3823 readonly isTestPalletDisabled: boolean;
4209 readonly isTriggerRollback: boolean;3824 readonly isTriggerRollback: boolean;
4210 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3825 readonly type: 'TestPalletDisabled' | 'TriggerRollback';
4211 }3826 }
42123827
4213 /** @name SpRuntimeMultiSignature (554) */3828 /** @name SpRuntimeMultiSignature (478) */
4214 interface SpRuntimeMultiSignature extends Enum {3829 interface SpRuntimeMultiSignature extends Enum {
4215 readonly isEd25519: boolean;3830 readonly isEd25519: boolean;
4216 readonly asEd25519: SpCoreEd25519Signature;3831 readonly asEd25519: SpCoreEd25519Signature;
4221 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3836 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
4222 }3837 }
42233838
4224 /** @name SpCoreEd25519Signature (555) */3839 /** @name SpCoreEd25519Signature (479) */
4225 interface SpCoreEd25519Signature extends U8aFixed {}3840 interface SpCoreEd25519Signature extends U8aFixed {}
42263841
4227 /** @name SpCoreSr25519Signature (557) */3842 /** @name SpCoreSr25519Signature (481) */
4228 interface SpCoreSr25519Signature extends U8aFixed {}3843 interface SpCoreSr25519Signature extends U8aFixed {}
42293844
4230 /** @name SpCoreEcdsaSignature (558) */3845 /** @name SpCoreEcdsaSignature (482) */
4231 interface SpCoreEcdsaSignature extends U8aFixed {}3846 interface SpCoreEcdsaSignature extends U8aFixed {}
42323847
4233 /** @name FrameSystemExtensionsCheckSpecVersion (561) */3848 /** @name FrameSystemExtensionsCheckSpecVersion (485) */
4234 type FrameSystemExtensionsCheckSpecVersion = Null;3849 type FrameSystemExtensionsCheckSpecVersion = Null;
42353850
4236 /** @name FrameSystemExtensionsCheckTxVersion (562) */3851 /** @name FrameSystemExtensionsCheckTxVersion (486) */
4237 type FrameSystemExtensionsCheckTxVersion = Null;3852 type FrameSystemExtensionsCheckTxVersion = Null;
42383853
4239 /** @name FrameSystemExtensionsCheckGenesis (563) */3854 /** @name FrameSystemExtensionsCheckGenesis (487) */
4240 type FrameSystemExtensionsCheckGenesis = Null;3855 type FrameSystemExtensionsCheckGenesis = Null;
42413856
4242 /** @name FrameSystemExtensionsCheckNonce (566) */3857 /** @name FrameSystemExtensionsCheckNonce (490) */
4243 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}3858 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
42443859
4245 /** @name FrameSystemExtensionsCheckWeight (567) */3860 /** @name FrameSystemExtensionsCheckWeight (491) */
4246 type FrameSystemExtensionsCheckWeight = Null;3861 type FrameSystemExtensionsCheckWeight = Null;
42473862
4248 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (568) */3863 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (492) */
4249 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;3864 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
42503865
4251 /** @name OpalRuntimeRuntimeCommonDataManagementFilterIdentity (569) */3866 /** @name OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls (493) */
4252 type OpalRuntimeRuntimeCommonDataManagementFilterIdentity = Null;3867 type OpalRuntimeRuntimeCommonIdentityDisableIdentityCalls = Null;
42533868
4254 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (570) */3869 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (494) */
4255 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}3870 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
42563871
4257 /** @name OpalRuntimeRuntime (571) */3872 /** @name OpalRuntimeRuntime (495) */
4258 type OpalRuntimeRuntime = Null;3873 type OpalRuntimeRuntime = Null;
42593874
4260 /** @name PalletEthereumFakeTransactionFinalizer (572) */3875 /** @name PalletEthereumFakeTransactionFinalizer (496) */
4261 type PalletEthereumFakeTransactionFinalizer = Null;3876 type PalletEthereumFakeTransactionFinalizer = Null;
42623877
4263} // declare module3878} // declare module