difftreelog
fix after rebase
in: master
9 files changed
tests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth81 configuration: {81 configuration: {82 defaultMinGasPrice: u64 & AugmentedConst<ApiType>;82 defaultMinGasPrice: u64 & AugmentedConst<ApiType>;83 defaultWeightToFeeCoefficient: u32 & AugmentedConst<ApiType>;83 defaultWeightToFeeCoefficient: u32 & AugmentedConst<ApiType>;84 maxOverridedAllowedLocations: u32 & AugmentedConst<ApiType>;84 /**85 /**85 * Generic const86 * Generic const86 **/87 **/tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth162 configuration: {162 configuration: {163 minGasPriceOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;163 minGasPriceOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;164 weightToFeeCoefficientOverride: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;164 weightToFeeCoefficientOverride: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;165 xcmAllowedLocationsOverride: AugmentedQuery<ApiType, () => Observable<Option<Vec<XcmV1MultiLocation>>>, []> & QueryableStorageEntry<ApiType, []>;165 /**166 /**166 * Generic query167 * Generic query167 **/168 **/tests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth16import type { BlockHash } from '@polkadot/types/interfaces/chain';16import type { BlockHash } from '@polkadot/types/interfaces/chain';17import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';17import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';18import type { AuthorityId } from '@polkadot/types/interfaces/consensus';18import type { AuthorityId } from '@polkadot/types/interfaces/consensus';19import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequestV1 } from '@polkadot/types/interfaces/contracts';19import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequest } from '@polkadot/types/interfaces/contracts';20import type { BlockStats } from '@polkadot/types/interfaces/dev';20import type { BlockStats } from '@polkadot/types/interfaces/dev';21import type { CreatedBlock } from '@polkadot/types/interfaces/engine';21import type { CreatedBlock } from '@polkadot/types/interfaces/engine';22import type { EthAccount, EthCallRequest, EthFeeHistory, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';22import type { EthAccount, EthCallRequest, EthFeeHistory, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';23import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';23import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';24import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from '@polkadot/types/interfaces/grandpa';24import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from '@polkadot/types/interfaces/grandpa';25import type { MmrLeafBatchProof, MmrLeafProof } from '@polkadot/types/interfaces/mmr';25import type { MmrLeafBatchProof, MmrLeafProof } from '@polkadot/types/interfaces/mmr';26import type { StorageKind } from '@polkadot/types/interfaces/offchain';26import type { StorageKind } from '@polkadot/types/interfaces/offchain';27import type { FeeDetails, RuntimeDispatchInfoV1 } from '@polkadot/types/interfaces/payment';27import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';28import type { RpcMethods } from '@polkadot/types/interfaces/rpc';28import type { RpcMethods } from '@polkadot/types/interfaces/rpc';29import type { AccountId, AccountId32, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';29import type { AccountId, AccountId32, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';30import type { MigrationStatusResult, ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';30import type { MigrationStatusResult, ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';174 * @deprecated Use the runtime interface `api.call.contractsApi.instantiate` instead174 * @deprecated Use the runtime interface `api.call.contractsApi.instantiate` instead175 * Instantiate a new contract175 * Instantiate a new contract176 **/176 **/177 instantiate: AugmentedRpc<(request: InstantiateRequestV1 | { origin?: any; value?: any; gasLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;177 instantiate: AugmentedRpc<(request: InstantiateRequest | { origin?: any; value?: any; gasLimit?: any; storageDepositLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;178 /**178 /**179 * @deprecated Not available in newer versions of the contracts interfaces179 * @deprecated Not available in newer versions of the contracts interfaces180 * Returns the projected time a given contract will be able to sustain paying its rent180 * Returns the projected time a given contract will be able to sustain paying its rent425 localStorageSet: AugmentedRpc<(kind: StorageKind | 'PERSISTENT' | 'LOCAL' | number | Uint8Array, key: Bytes | string | Uint8Array, value: Bytes | string | Uint8Array) => Observable<Null>>;425 localStorageSet: AugmentedRpc<(kind: StorageKind | 'PERSISTENT' | 'LOCAL' | number | Uint8Array, key: Bytes | string | Uint8Array, value: Bytes | string | Uint8Array) => Observable<Null>>;426 };426 };427 payment: {427 payment: {428 /**428 /**429 * @deprecated Use `api.call.transactionPaymentApi.queryFeeDetails` instead429 * Query the detailed fee of a given encoded extrinsic430 * Query the detailed fee of a given encoded extrinsic430 **/431 **/432 queryFeeDetails: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<FeeDetails>>;431 queryFeeDetails: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<FeeDetails>>;433 /**432 /**434 * @deprecated Use `api.call.transactionPaymentApi.queryInfo` instead433 * Retrieves the fee information for an encoded extrinsic435 * Retrieves the fee information for an encoded extrinsic434 **/436 **/437 queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfoV1>>;435 queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfo>>;438 };436 };439 rmrk: {437 rmrk: {440 /**438 /**tests/src/interfaces/augment-api-runtime.tsdiffbeforeafterboth6import '@polkadot/api-base/types/calls';6import '@polkadot/api-base/types/calls';778import type { ApiTypes, AugmentedCall, DecoratedCallBase } from '@polkadot/api-base/types';8import type { ApiTypes, AugmentedCall, DecoratedCallBase } from '@polkadot/api-base/types';9import type { Bytes, Null, Option, Result, U256, Vec, bool, u256, u32, u64 } from '@polkadot/types-codec';9import type { Bytes, Null, Option, Result, U256, Vec, bool, u256, u64 } from '@polkadot/types-codec';10import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';10import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';11import type { CheckInherentsResult, InherentData } from '@polkadot/types/interfaces/blockbuilder';11import type { CheckInherentsResult, InherentData } from '@polkadot/types/interfaces/blockbuilder';12import type { BlockHash } from '@polkadot/types/interfaces/chain';12import type { BlockHash } from '@polkadot/types/interfaces/chain';16import type { EvmAccount, EvmCallInfo, EvmCreateInfo } from '@polkadot/types/interfaces/evm';16import type { EvmAccount, EvmCallInfo, EvmCreateInfo } from '@polkadot/types/interfaces/evm';17import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';17import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';18import type { OpaqueMetadata } from '@polkadot/types/interfaces/metadata';18import type { OpaqueMetadata } from '@polkadot/types/interfaces/metadata';19import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';20import type { AccountId, Block, H160, H256, Header, Index, KeyTypeId, Permill, SlotDuration } from '@polkadot/types/interfaces/runtime';19import type { AccountId, Block, H160, H256, Header, Index, KeyTypeId, Permill, SlotDuration } from '@polkadot/types/interfaces/runtime';21import type { RuntimeVersion } from '@polkadot/types/interfaces/state';20import type { RuntimeVersion } from '@polkadot/types/interfaces/state';22import type { ApplyExtrinsicResult, DispatchError } from '@polkadot/types/interfaces/system';21import type { ApplyExtrinsicResult, DispatchError } from '@polkadot/types/interfaces/system';229 **/228 **/230 [key: string]: DecoratedCallBase<ApiType>;229 [key: string]: DecoratedCallBase<ApiType>;231 };230 };232 /** 0x37c8bb1350a9a2a8/2 */233 transactionPaymentApi: {234 /**235 * The transaction fee details236 **/237 queryFeeDetails: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<FeeDetails>>;238 /**239 * The transaction info240 **/241 queryInfo: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<RuntimeDispatchInfo>>;242 /**243 * Generic call244 **/245 [key: string]: DecoratedCallBase<ApiType>;246 };247 } // AugmentedCalls231 } // AugmentedCalls248} // declare module232} // declare module249233tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth217 configuration: {217 configuration: {218 setMinGasPriceOverride: AugmentedSubmittable<(coeff: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;218 setMinGasPriceOverride: AugmentedSubmittable<(coeff: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;219 setWeightToFeeCoefficientOverride: AugmentedSubmittable<(coeff: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;219 setWeightToFeeCoefficientOverride: AugmentedSubmittable<(coeff: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;220 setXcmAllowedLocations: AugmentedSubmittable<(locations: Option<Vec<XcmV1MultiLocation>> | null | Uint8Array | Vec<XcmV1MultiLocation> | (XcmV1MultiLocation | { parents?: any; interior?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Option<Vec<XcmV1MultiLocation>>]>;220 /**221 /**221 * Generic tx222 * Generic tx222 **/223 **/tests/src/interfaces/augment-types.tsdiffbeforeafterboth24import type { StatementKind } from '@polkadot/types/interfaces/claims';24import type { StatementKind } from '@polkadot/types/interfaces/claims';25import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';25import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';26import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';26import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';27import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractExecResultU64, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractInstantiateResultU64, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';27import type { AliveContractInfo, CodeHash, CodeSource, CodeUploadRequest, CodeUploadResult, CodeUploadResultValue, ContractCallFlags, ContractCallRequest, ContractExecResult, ContractExecResultOk, ContractExecResultResult, ContractExecResultSuccessTo255, ContractExecResultSuccessTo260, ContractExecResultTo255, ContractExecResultTo260, ContractExecResultTo267, ContractInfo, ContractInstantiateResult, ContractInstantiateResultTo267, ContractInstantiateResultTo299, ContractReturnFlags, ContractStorageKey, DeletedContract, ExecReturnValue, Gas, HostFnWeights, HostFnWeightsTo264, InstantiateRequest, InstantiateRequestV1, InstantiateRequestV2, InstantiateReturnValue, InstantiateReturnValueOk, InstantiateReturnValueTo267, InstructionWeights, Limits, LimitsTo264, PrefabWasmModule, RentProjection, Schedule, ScheduleTo212, ScheduleTo258, ScheduleTo264, SeedOf, StorageDeposit, TombstoneContractInfo, TrieId } from '@polkadot/types/interfaces/contracts';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';28import type { ContractConstructorSpecLatest, ContractConstructorSpecV0, ContractConstructorSpecV1, ContractConstructorSpecV2, ContractConstructorSpecV3, ContractContractSpecV0, ContractContractSpecV1, ContractContractSpecV2, ContractContractSpecV3, ContractContractSpecV4, ContractCryptoHasher, ContractDiscriminant, ContractDisplayName, ContractEventParamSpecLatest, ContractEventParamSpecV0, ContractEventParamSpecV2, ContractEventSpecLatest, ContractEventSpecV0, ContractEventSpecV1, ContractEventSpecV2, ContractLayoutArray, ContractLayoutCell, ContractLayoutEnum, ContractLayoutHash, ContractLayoutHashingStrategy, ContractLayoutKey, ContractLayoutStruct, ContractLayoutStructField, ContractMessageParamSpecLatest, ContractMessageParamSpecV0, ContractMessageParamSpecV2, ContractMessageSpecLatest, ContractMessageSpecV0, ContractMessageSpecV1, ContractMessageSpecV2, ContractMetadata, ContractMetadataLatest, ContractMetadataV0, ContractMetadataV1, ContractMetadataV2, ContractMetadataV3, ContractMetadataV4, ContractProject, ContractProjectContract, ContractProjectInfo, ContractProjectSource, ContractProjectV0, ContractSelector, ContractStorageLayout, ContractTypeSpec } from '@polkadot/types/interfaces/contractsAbi';29import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';29import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';30import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';30import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';47import type { StorageKind } from '@polkadot/types/interfaces/offchain';47import type { StorageKind } from '@polkadot/types/interfaces/offchain';48import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';48import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';49import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';49import type { AbridgedCandidateReceipt, AbridgedHostConfiguration, AbridgedHrmpChannel, AssignmentId, AssignmentKind, AttestedCandidate, AuctionIndex, AuthorityDiscoveryId, AvailabilityBitfield, AvailabilityBitfieldRecord, BackedCandidate, Bidder, BufferedSessionChange, CandidateCommitments, CandidateDescriptor, CandidateEvent, CandidateHash, CandidateInfo, CandidatePendingAvailability, CandidateReceipt, CollatorId, CollatorSignature, CommittedCandidateReceipt, CoreAssignment, CoreIndex, CoreOccupied, CoreState, DisputeLocation, DisputeResult, DisputeState, DisputeStatement, DisputeStatementSet, DoubleVoteReport, DownwardMessage, ExplicitDisputeStatement, GlobalValidationData, GlobalValidationSchedule, GroupIndex, GroupRotationInfo, HeadData, HostConfiguration, HrmpChannel, HrmpChannelId, HrmpOpenChannelRequest, InboundDownwardMessage, InboundHrmpMessage, InboundHrmpMessages, IncomingParachain, IncomingParachainDeploy, IncomingParachainFixed, InvalidDisputeStatementKind, LeasePeriod, LeasePeriodOf, LocalValidationData, MessageIngestionType, MessageQueueChain, MessagingStateSnapshot, MessagingStateSnapshotEgressEntry, MultiDisputeStatementSet, NewBidder, OccupiedCore, OccupiedCoreAssumption, OldV1SessionInfo, OutboundHrmpMessage, ParaGenesisArgs, ParaId, ParaInfo, ParaLifecycle, ParaPastCodeMeta, ParaScheduling, ParaValidatorIndex, ParachainDispatchOrigin, ParachainInherentData, ParachainProposal, ParachainsInherentData, ParathreadClaim, ParathreadClaimQueue, ParathreadEntry, PersistedValidationData, PvfCheckStatement, QueuedParathread, RegisteredParachainInfo, RelayBlockNumber, RelayChainBlockNumber, RelayChainHash, RelayHash, Remark, ReplacementTimes, Retriable, ScheduledCore, Scheduling, ScrapedOnChainVotes, ServiceQuality, SessionInfo, SessionInfoValidatorGroup, SignedAvailabilityBitfield, SignedAvailabilityBitfields, SigningContext, SlotRange, SlotRange10, Statement, SubId, SystemInherentData, TransientValidationData, UpgradeGoAhead, UpgradeRestriction, UpwardMessage, ValidDisputeStatementKind, ValidationCode, ValidationCodeHash, ValidationData, ValidationDataType, ValidationFunctionParams, ValidatorSignature, ValidityAttestation, VecInboundHrmpMessage, WinnersData, WinnersData10, WinnersDataTuple, WinnersDataTuple10, WinningData, WinningData10, WinningDataEntry } from '@polkadot/types/interfaces/parachains';50import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } from '@polkadot/types/interfaces/payment';50import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';51import type { Approvals } from '@polkadot/types/interfaces/poll';51import type { Approvals } from '@polkadot/types/interfaces/poll';52import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';52import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';53import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';273 ContractExecResultTo255: ContractExecResultTo255;273 ContractExecResultTo255: ContractExecResultTo255;274 ContractExecResultTo260: ContractExecResultTo260;274 ContractExecResultTo260: ContractExecResultTo260;275 ContractExecResultTo267: ContractExecResultTo267;275 ContractExecResultTo267: ContractExecResultTo267;276 ContractExecResultU64: ContractExecResultU64;277 ContractInfo: ContractInfo;276 ContractInfo: ContractInfo;278 ContractInstantiateResult: ContractInstantiateResult;277 ContractInstantiateResult: ContractInstantiateResult;279 ContractInstantiateResultTo267: ContractInstantiateResultTo267;278 ContractInstantiateResultTo267: ContractInstantiateResultTo267;280 ContractInstantiateResultTo299: ContractInstantiateResultTo299;279 ContractInstantiateResultTo299: ContractInstantiateResultTo299;281 ContractInstantiateResultU64: ContractInstantiateResultU64;282 ContractLayoutArray: ContractLayoutArray;280 ContractLayoutArray: ContractLayoutArray;283 ContractLayoutCell: ContractLayoutCell;281 ContractLayoutCell: ContractLayoutCell;284 ContractLayoutEnum: ContractLayoutEnum;282 ContractLayoutEnum: ContractLayoutEnum;1068 RpcMethods: RpcMethods;1066 RpcMethods: RpcMethods;1069 RuntimeDbWeight: RuntimeDbWeight;1067 RuntimeDbWeight: RuntimeDbWeight;1070 RuntimeDispatchInfo: RuntimeDispatchInfo;1068 RuntimeDispatchInfo: RuntimeDispatchInfo;1071 RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;1072 RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;1073 RuntimeVersion: RuntimeVersion;1069 RuntimeVersion: RuntimeVersion;1074 RuntimeVersionApi: RuntimeVersionApi;1070 RuntimeVersionApi: RuntimeVersionApi;1075 RuntimeVersionPartial: RuntimeVersionPartial;1071 RuntimeVersionPartial: RuntimeVersionPartial;tests/src/interfaces/default/types.tsdiffbeforeafterboth1333 readonly asSetMinGasPriceOverride: {1333 readonly asSetMinGasPriceOverride: {1334 readonly coeff: Option<u64>;1334 readonly coeff: Option<u64>;1335 } & Struct;1335 } & Struct;1336 readonly isSetXcmAllowedLocations: boolean;1337 readonly asSetXcmAllowedLocations: {1338 readonly locations: Option<Vec<XcmV1MultiLocation>>;1339 } & Struct;1336 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';1340 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';1337}1341}133813421339/** @name PalletEthereumCall */1343/** @name PalletEthereumCall */tests/src/interfaces/lookup.tsdiffbeforeafterboth2528 },2528 },2529 set_min_gas_price_override: {2529 set_min_gas_price_override: {2530 coeff: 'Option<u64>'2530 coeff: 'Option<u64>',2531 }2531 },2532 set_xcm_allowed_locations: {2533 locations: 'Option<Vec<XcmV1MultiLocation>>'2534 }2532 }2535 }2533 },2536 },2534 /**2537 /**2535 * Lookup288: pallet_template_transaction_payment::Call<T>2538 * Lookup291: pallet_template_transaction_payment::Call<T>2536 **/2539 **/2537 PalletTemplateTransactionPaymentCall: 'Null',2540 PalletTemplateTransactionPaymentCall: 'Null',2538 /**2541 /**2539 * Lookup289: pallet_structure::pallet::Call<T>2542 * Lookup292: pallet_structure::pallet::Call<T>2540 **/2543 **/2541 PalletStructureCall: 'Null',2544 PalletStructureCall: 'Null',2542 /**2545 /**2543 * Lookup290: pallet_rmrk_core::pallet::Call<T>2546 * Lookup293: pallet_rmrk_core::pallet::Call<T>2544 **/2547 **/2545 PalletRmrkCoreCall: {2548 PalletRmrkCoreCall: {2546 _enum: {2549 _enum: {2547 create_collection: {2550 create_collection: {2630 }2633 }2631 }2634 }2632 },2635 },2633 /**2636 /**2634 * Lookup296: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2637 * Lookup299: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2635 **/2638 **/2636 RmrkTraitsResourceResourceTypes: {2639 RmrkTraitsResourceResourceTypes: {2637 _enum: {2640 _enum: {2638 Basic: 'RmrkTraitsResourceBasicResource',2641 Basic: 'RmrkTraitsResourceBasicResource',2639 Composable: 'RmrkTraitsResourceComposableResource',2642 Composable: 'RmrkTraitsResourceComposableResource',2640 Slot: 'RmrkTraitsResourceSlotResource'2643 Slot: 'RmrkTraitsResourceSlotResource'2641 }2644 }2642 },2645 },2643 /**2646 /**2644 * Lookup298: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2647 * Lookup301: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2645 **/2648 **/2646 RmrkTraitsResourceBasicResource: {2649 RmrkTraitsResourceBasicResource: {2647 src: 'Option<Bytes>',2650 src: 'Option<Bytes>',2648 metadata: 'Option<Bytes>',2651 metadata: 'Option<Bytes>',2649 license: 'Option<Bytes>',2652 license: 'Option<Bytes>',2650 thumb: 'Option<Bytes>'2653 thumb: 'Option<Bytes>'2651 },2654 },2652 /**2655 /**2653 * Lookup300: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2656 * Lookup303: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2654 **/2657 **/2655 RmrkTraitsResourceComposableResource: {2658 RmrkTraitsResourceComposableResource: {2656 parts: 'Vec<u32>',2659 parts: 'Vec<u32>',2657 base: 'u32',2660 base: 'u32',2660 license: 'Option<Bytes>',2663 license: 'Option<Bytes>',2661 thumb: 'Option<Bytes>'2664 thumb: 'Option<Bytes>'2662 },2665 },2663 /**2666 /**2664 * Lookup301: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2667 * Lookup304: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2665 **/2668 **/2666 RmrkTraitsResourceSlotResource: {2669 RmrkTraitsResourceSlotResource: {2667 base: 'u32',2670 base: 'u32',2668 src: 'Option<Bytes>',2671 src: 'Option<Bytes>',2671 license: 'Option<Bytes>',2674 license: 'Option<Bytes>',2672 thumb: 'Option<Bytes>'2675 thumb: 'Option<Bytes>'2673 },2676 },2674 /**2677 /**2675 * Lookup304: pallet_rmrk_equip::pallet::Call<T>2678 * Lookup307: pallet_rmrk_equip::pallet::Call<T>2676 **/2679 **/2677 PalletRmrkEquipCall: {2680 PalletRmrkEquipCall: {2678 _enum: {2681 _enum: {2679 create_base: {2682 create_base: {2692 }2695 }2693 }2696 }2694 },2697 },2695 /**2698 /**2696 * Lookup307: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2699 * Lookup310: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2697 **/2700 **/2698 RmrkTraitsPartPartType: {2701 RmrkTraitsPartPartType: {2699 _enum: {2702 _enum: {2700 FixedPart: 'RmrkTraitsPartFixedPart',2703 FixedPart: 'RmrkTraitsPartFixedPart',2701 SlotPart: 'RmrkTraitsPartSlotPart'2704 SlotPart: 'RmrkTraitsPartSlotPart'2702 }2705 }2703 },2706 },2704 /**2707 /**2705 * Lookup309: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2708 * Lookup312: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2706 **/2709 **/2707 RmrkTraitsPartFixedPart: {2710 RmrkTraitsPartFixedPart: {2708 id: 'u32',2711 id: 'u32',2709 z: 'u32',2712 z: 'u32',2710 src: 'Bytes'2713 src: 'Bytes'2711 },2714 },2712 /**2715 /**2713 * Lookup310: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2716 * Lookup313: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>2714 **/2717 **/2715 RmrkTraitsPartSlotPart: {2718 RmrkTraitsPartSlotPart: {2716 id: 'u32',2719 id: 'u32',2717 equippable: 'RmrkTraitsPartEquippableList',2720 equippable: 'RmrkTraitsPartEquippableList',2718 src: 'Bytes',2721 src: 'Bytes',2719 z: 'u32'2722 z: 'u32'2720 },2723 },2721 /**2724 /**2722 * Lookup311: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2725 * Lookup314: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2723 **/2726 **/2724 RmrkTraitsPartEquippableList: {2727 RmrkTraitsPartEquippableList: {2725 _enum: {2728 _enum: {2726 All: 'Null',2729 All: 'Null',2727 Empty: 'Null',2730 Empty: 'Null',2728 Custom: 'Vec<u32>'2731 Custom: 'Vec<u32>'2729 }2732 }2730 },2733 },2731 /**2734 /**2732 * Lookup313: 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>>2735 * Lookup316: 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>>2733 **/2736 **/2734 RmrkTraitsTheme: {2737 RmrkTraitsTheme: {2735 name: 'Bytes',2738 name: 'Bytes',2736 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2739 properties: 'Vec<RmrkTraitsThemeThemeProperty>',2737 inherit: 'bool'2740 inherit: 'bool'2738 },2741 },2739 /**2742 /**2740 * Lookup315: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2743 * Lookup318: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>2741 **/2744 **/2742 RmrkTraitsThemeThemeProperty: {2745 RmrkTraitsThemeThemeProperty: {2743 key: 'Bytes',2746 key: 'Bytes',2744 value: 'Bytes'2747 value: 'Bytes'2745 },2748 },2746 /**2749 /**2747 * Lookup317: pallet_app_promotion::pallet::Call<T>2750 * Lookup320: pallet_app_promotion::pallet::Call<T>2748 **/2751 **/2749 PalletAppPromotionCall: {2752 PalletAppPromotionCall: {2750 _enum: {2753 _enum: {2751 set_admin_address: {2754 set_admin_address: {2772 }2775 }2773 }2776 }2774 },2777 },2775 /**2778 /**2776 * Lookup318: pallet_foreign_assets::module::Call<T>2779 * Lookup321: pallet_foreign_assets::module::Call<T>2777 **/2780 **/2778 PalletForeignAssetsModuleCall: {2781 PalletForeignAssetsModuleCall: {2779 _enum: {2782 _enum: {2780 register_foreign_asset: {2783 register_foreign_asset: {2789 }2792 }2790 }2793 }2791 },2794 },2792 /**2795 /**2793 * Lookup319: pallet_evm::pallet::Call<T>2796 * Lookup322: pallet_evm::pallet::Call<T>2794 **/2797 **/2795 PalletEvmCall: {2798 PalletEvmCall: {2796 _enum: {2799 _enum: {2797 withdraw: {2800 withdraw: {2832 }2835 }2833 }2836 }2834 },2837 },2835 /**2838 /**2836 * Lookup325: pallet_ethereum::pallet::Call<T>2839 * Lookup328: pallet_ethereum::pallet::Call<T>2837 **/2840 **/2838 PalletEthereumCall: {2841 PalletEthereumCall: {2839 _enum: {2842 _enum: {2840 transact: {2843 transact: {2841 transaction: 'EthereumTransactionTransactionV2'2844 transaction: 'EthereumTransactionTransactionV2'2842 }2845 }2843 }2846 }2844 },2847 },2845 /**2848 /**2846 * Lookup326: ethereum::transaction::TransactionV22849 * Lookup329: ethereum::transaction::TransactionV22847 **/2850 **/2848 EthereumTransactionTransactionV2: {2851 EthereumTransactionTransactionV2: {2849 _enum: {2852 _enum: {2850 Legacy: 'EthereumTransactionLegacyTransaction',2853 Legacy: 'EthereumTransactionLegacyTransaction',2851 EIP2930: 'EthereumTransactionEip2930Transaction',2854 EIP2930: 'EthereumTransactionEip2930Transaction',2852 EIP1559: 'EthereumTransactionEip1559Transaction'2855 EIP1559: 'EthereumTransactionEip1559Transaction'2853 }2856 }2854 },2857 },2855 /**2858 /**2856 * Lookup327: ethereum::transaction::LegacyTransaction2859 * Lookup330: ethereum::transaction::LegacyTransaction2857 **/2860 **/2858 EthereumTransactionLegacyTransaction: {2861 EthereumTransactionLegacyTransaction: {2859 nonce: 'U256',2862 nonce: 'U256',2860 gasPrice: 'U256',2863 gasPrice: 'U256',2864 input: 'Bytes',2867 input: 'Bytes',2865 signature: 'EthereumTransactionTransactionSignature'2868 signature: 'EthereumTransactionTransactionSignature'2866 },2869 },2867 /**2870 /**2868 * Lookup328: ethereum::transaction::TransactionAction2871 * Lookup331: ethereum::transaction::TransactionAction2869 **/2872 **/2870 EthereumTransactionTransactionAction: {2873 EthereumTransactionTransactionAction: {2871 _enum: {2874 _enum: {2872 Call: 'H160',2875 Call: 'H160',2873 Create: 'Null'2876 Create: 'Null'2874 }2877 }2875 },2878 },2876 /**2879 /**2877 * Lookup329: ethereum::transaction::TransactionSignature2880 * Lookup332: ethereum::transaction::TransactionSignature2878 **/2881 **/2879 EthereumTransactionTransactionSignature: {2882 EthereumTransactionTransactionSignature: {2880 v: 'u64',2883 v: 'u64',2881 r: 'H256',2884 r: 'H256',2882 s: 'H256'2885 s: 'H256'2883 },2886 },2884 /**2887 /**2885 * Lookup331: ethereum::transaction::EIP2930Transaction2888 * Lookup334: ethereum::transaction::EIP2930Transaction2886 **/2889 **/2887 EthereumTransactionEip2930Transaction: {2890 EthereumTransactionEip2930Transaction: {2888 chainId: 'u64',2891 chainId: 'u64',2889 nonce: 'U256',2892 nonce: 'U256',2897 r: 'H256',2900 r: 'H256',2898 s: 'H256'2901 s: 'H256'2899 },2902 },2900 /**2903 /**2901 * Lookup333: ethereum::transaction::AccessListItem2904 * Lookup336: ethereum::transaction::AccessListItem2902 **/2905 **/2903 EthereumTransactionAccessListItem: {2906 EthereumTransactionAccessListItem: {2904 address: 'H160',2907 address: 'H160',2905 storageKeys: 'Vec<H256>'2908 storageKeys: 'Vec<H256>'2906 },2909 },2907 /**2910 /**2908 * Lookup334: ethereum::transaction::EIP1559Transaction2911 * Lookup337: ethereum::transaction::EIP1559Transaction2909 **/2912 **/2910 EthereumTransactionEip1559Transaction: {2913 EthereumTransactionEip1559Transaction: {2911 chainId: 'u64',2914 chainId: 'u64',2912 nonce: 'U256',2915 nonce: 'U256',2921 r: 'H256',2924 r: 'H256',2922 s: 'H256'2925 s: 'H256'2923 },2926 },2924 /**2927 /**2925 * Lookup335: pallet_evm_migration::pallet::Call<T>2928 * Lookup338: pallet_evm_migration::pallet::Call<T>2926 **/2929 **/2927 PalletEvmMigrationCall: {2930 PalletEvmMigrationCall: {2928 _enum: {2931 _enum: {2929 begin: {2932 begin: {2945 }2948 }2946 }2949 }2947 },2950 },2948 /**2951 /**2949 * Lookup339: pallet_maintenance::pallet::Call<T>2952 * Lookup342: pallet_maintenance::pallet::Call<T>2950 **/2953 **/2951 PalletMaintenanceCall: {2954 PalletMaintenanceCall: {2952 _enum: ['enable', 'disable']2955 _enum: ['enable', 'disable']2953 },2956 },2954 /**2957 /**2955 * Lookup340: pallet_test_utils::pallet::Call<T>2958 * Lookup343: pallet_test_utils::pallet::Call<T>2956 **/2959 **/2957 PalletTestUtilsCall: {2960 PalletTestUtilsCall: {2958 _enum: {2961 _enum: {2959 enable: 'Null',2962 enable: 'Null',2974 }2977 }2975 }2978 }2976 },2979 },2977 /**2980 /**2978 * Lookup342: pallet_sudo::pallet::Error<T>2981 * Lookup345: pallet_sudo::pallet::Error<T>2979 **/2982 **/2980 PalletSudoError: {2983 PalletSudoError: {2981 _enum: ['RequireSudo']2984 _enum: ['RequireSudo']2982 },2985 },2983 /**2986 /**2984 * Lookup344: orml_vesting::module::Error<T>2987 * Lookup347: orml_vesting::module::Error<T>2985 **/2988 **/2986 OrmlVestingModuleError: {2989 OrmlVestingModuleError: {2987 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2990 _enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']2988 },2991 },2989 /**2992 /**2990 * Lookup345: orml_xtokens::module::Error<T>2993 * Lookup348: orml_xtokens::module::Error<T>2991 **/2994 **/2992 OrmlXtokensModuleError: {2995 OrmlXtokensModuleError: {2993 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2996 _enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']2994 },2997 },2995 /**2998 /**2996 * Lookup348: orml_tokens::BalanceLock<Balance>2999 * Lookup351: orml_tokens::BalanceLock<Balance>2997 **/3000 **/2998 OrmlTokensBalanceLock: {3001 OrmlTokensBalanceLock: {2999 id: '[u8;8]',3002 id: '[u8;8]',3000 amount: 'u128'3003 amount: 'u128'3001 },3004 },3002 /**3005 /**3003 * Lookup350: orml_tokens::AccountData<Balance>3006 * Lookup353: orml_tokens::AccountData<Balance>3004 **/3007 **/3005 OrmlTokensAccountData: {3008 OrmlTokensAccountData: {3006 free: 'u128',3009 free: 'u128',3007 reserved: 'u128',3010 reserved: 'u128',3008 frozen: 'u128'3011 frozen: 'u128'3009 },3012 },3010 /**3013 /**3011 * Lookup352: orml_tokens::ReserveData<ReserveIdentifier, Balance>3014 * Lookup355: orml_tokens::ReserveData<ReserveIdentifier, Balance>3012 **/3015 **/3013 OrmlTokensReserveData: {3016 OrmlTokensReserveData: {3014 id: 'Null',3017 id: 'Null',3015 amount: 'u128'3018 amount: 'u128'3016 },3019 },3017 /**3020 /**3018 * Lookup354: orml_tokens::module::Error<T>3021 * Lookup357: orml_tokens::module::Error<T>3019 **/3022 **/3020 OrmlTokensModuleError: {3023 OrmlTokensModuleError: {3021 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']3024 _enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']3022 },3025 },3023 /**3026 /**3024 * Lookup356: cumulus_pallet_xcmp_queue::InboundChannelDetails3027 * Lookup359: cumulus_pallet_xcmp_queue::InboundChannelDetails3025 **/3028 **/3026 CumulusPalletXcmpQueueInboundChannelDetails: {3029 CumulusPalletXcmpQueueInboundChannelDetails: {3027 sender: 'u32',3030 sender: 'u32',3028 state: 'CumulusPalletXcmpQueueInboundState',3031 state: 'CumulusPalletXcmpQueueInboundState',3029 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'3032 messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'3030 },3033 },3031 /**3034 /**3032 * Lookup357: cumulus_pallet_xcmp_queue::InboundState3035 * Lookup360: cumulus_pallet_xcmp_queue::InboundState3033 **/3036 **/3034 CumulusPalletXcmpQueueInboundState: {3037 CumulusPalletXcmpQueueInboundState: {3035 _enum: ['Ok', 'Suspended']3038 _enum: ['Ok', 'Suspended']3036 },3039 },3037 /**3040 /**3038 * Lookup360: polkadot_parachain::primitives::XcmpMessageFormat3041 * Lookup363: polkadot_parachain::primitives::XcmpMessageFormat3039 **/3042 **/3040 PolkadotParachainPrimitivesXcmpMessageFormat: {3043 PolkadotParachainPrimitivesXcmpMessageFormat: {3041 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3044 _enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']3042 },3045 },3043 /**3046 /**3044 * Lookup363: cumulus_pallet_xcmp_queue::OutboundChannelDetails3047 * Lookup366: cumulus_pallet_xcmp_queue::OutboundChannelDetails3045 **/3048 **/3046 CumulusPalletXcmpQueueOutboundChannelDetails: {3049 CumulusPalletXcmpQueueOutboundChannelDetails: {3047 recipient: 'u32',3050 recipient: 'u32',3048 state: 'CumulusPalletXcmpQueueOutboundState',3051 state: 'CumulusPalletXcmpQueueOutboundState',3049 signalsExist: 'bool',3052 signalsExist: 'bool',3050 firstIndex: 'u16',3053 firstIndex: 'u16',3051 lastIndex: 'u16'3054 lastIndex: 'u16'3052 },3055 },3053 /**3056 /**3054 * Lookup364: cumulus_pallet_xcmp_queue::OutboundState3057 * Lookup367: cumulus_pallet_xcmp_queue::OutboundState3055 **/3058 **/3056 CumulusPalletXcmpQueueOutboundState: {3059 CumulusPalletXcmpQueueOutboundState: {3057 _enum: ['Ok', 'Suspended']3060 _enum: ['Ok', 'Suspended']3058 },3061 },3059 /**3062 /**3060 * Lookup366: cumulus_pallet_xcmp_queue::QueueConfigData3063 * Lookup369: cumulus_pallet_xcmp_queue::QueueConfigData3061 **/3064 **/3062 CumulusPalletXcmpQueueQueueConfigData: {3065 CumulusPalletXcmpQueueQueueConfigData: {3063 suspendThreshold: 'u32',3066 suspendThreshold: 'u32',3064 dropThreshold: 'u32',3067 dropThreshold: 'u32',3067 weightRestrictDecay: 'SpWeightsWeightV2Weight',3070 weightRestrictDecay: 'SpWeightsWeightV2Weight',3068 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3071 xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'3069 },3072 },3070 /**3073 /**3071 * Lookup368: cumulus_pallet_xcmp_queue::pallet::Error<T>3074 * Lookup371: cumulus_pallet_xcmp_queue::pallet::Error<T>3072 **/3075 **/3073 CumulusPalletXcmpQueueError: {3076 CumulusPalletXcmpQueueError: {3074 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3077 _enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']3075 },3078 },3076 /**3079 /**3077 * Lookup369: pallet_xcm::pallet::Error<T>3080 * Lookup372: pallet_xcm::pallet::Error<T>3078 **/3081 **/3079 PalletXcmError: {3082 PalletXcmError: {3080 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3083 _enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']3081 },3084 },3082 /**3085 /**3083 * Lookup370: cumulus_pallet_xcm::pallet::Error<T>3086 * Lookup373: cumulus_pallet_xcm::pallet::Error<T>3084 **/3087 **/3085 CumulusPalletXcmError: 'Null',3088 CumulusPalletXcmError: 'Null',3086 /**3089 /**3087 * Lookup371: cumulus_pallet_dmp_queue::ConfigData3090 * Lookup374: cumulus_pallet_dmp_queue::ConfigData3088 **/3091 **/3089 CumulusPalletDmpQueueConfigData: {3092 CumulusPalletDmpQueueConfigData: {3090 maxIndividual: 'SpWeightsWeightV2Weight'3093 maxIndividual: 'SpWeightsWeightV2Weight'3091 },3094 },3092 /**3095 /**3093 * Lookup372: cumulus_pallet_dmp_queue::PageIndexData3096 * Lookup375: cumulus_pallet_dmp_queue::PageIndexData3094 **/3097 **/3095 CumulusPalletDmpQueuePageIndexData: {3098 CumulusPalletDmpQueuePageIndexData: {3096 beginUsed: 'u32',3099 beginUsed: 'u32',3097 endUsed: 'u32',3100 endUsed: 'u32',3098 overweightCount: 'u64'3101 overweightCount: 'u64'3099 },3102 },3100 /**3103 /**3101 * Lookup375: cumulus_pallet_dmp_queue::pallet::Error<T>3104 * Lookup378: cumulus_pallet_dmp_queue::pallet::Error<T>3102 **/3105 **/3103 CumulusPalletDmpQueueError: {3106 CumulusPalletDmpQueueError: {3104 _enum: ['Unknown', 'OverLimit']3107 _enum: ['Unknown', 'OverLimit']3105 },3108 },3106 /**3109 /**3107 * Lookup379: pallet_unique::Error<T>3110 * Lookup382: pallet_unique::Error<T>3108 **/3111 **/3109 PalletUniqueError: {3112 PalletUniqueError: {3110 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3113 _enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']3111 },3114 },3112 /**3115 /**3113 * Lookup380: pallet_unique_scheduler_v2::BlockAgenda<T>3116 * Lookup383: pallet_unique_scheduler_v2::BlockAgenda<T>3114 **/3117 **/3115 PalletUniqueSchedulerV2BlockAgenda: {3118 PalletUniqueSchedulerV2BlockAgenda: {3116 agenda: 'Vec<Option<PalletUniqueSchedulerV2Scheduled>>',3119 agenda: 'Vec<Option<PalletUniqueSchedulerV2Scheduled>>',3117 freePlaces: 'u32'3120 freePlaces: 'u32'3118 },3121 },3119 /**3122 /**3120 * Lookup383: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>3123 * Lookup386: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>3121 **/3124 **/3122 PalletUniqueSchedulerV2Scheduled: {3125 PalletUniqueSchedulerV2Scheduled: {3123 maybeId: 'Option<[u8;32]>',3126 maybeId: 'Option<[u8;32]>',3124 priority: 'u8',3127 priority: 'u8',3125 call: 'PalletUniqueSchedulerV2ScheduledCall',3128 call: 'PalletUniqueSchedulerV2ScheduledCall',3126 maybePeriodic: 'Option<(u32,u32)>',3129 maybePeriodic: 'Option<(u32,u32)>',3127 origin: 'OpalRuntimeOriginCaller'3130 origin: 'OpalRuntimeOriginCaller'3128 },3131 },3129 /**3132 /**3130 * Lookup384: pallet_unique_scheduler_v2::ScheduledCall<T>3133 * Lookup387: pallet_unique_scheduler_v2::ScheduledCall<T>3131 **/3134 **/3132 PalletUniqueSchedulerV2ScheduledCall: {3135 PalletUniqueSchedulerV2ScheduledCall: {3133 _enum: {3136 _enum: {3134 Inline: 'Bytes',3137 Inline: 'Bytes',3141 }3144 }3142 }3145 }3143 },3146 },3144 /**3147 /**3145 * Lookup386: opal_runtime::OriginCaller3148 * Lookup389: opal_runtime::OriginCaller3146 **/3149 **/3147 OpalRuntimeOriginCaller: {3150 OpalRuntimeOriginCaller: {3148 _enum: {3151 _enum: {3149 system: 'FrameSupportDispatchRawOrigin',3152 system: 'FrameSupportDispatchRawOrigin',3250 Ethereum: 'PalletEthereumRawOrigin'3253 Ethereum: 'PalletEthereumRawOrigin'3251 }3254 }3252 },3255 },3253 /**3256 /**3254 * Lookup387: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>3257 * Lookup390: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>3255 **/3258 **/3256 FrameSupportDispatchRawOrigin: {3259 FrameSupportDispatchRawOrigin: {3257 _enum: {3260 _enum: {3258 Root: 'Null',3261 Root: 'Null',3259 Signed: 'AccountId32',3262 Signed: 'AccountId32',3260 None: 'Null'3263 None: 'Null'3261 }3264 }3262 },3265 },3263 /**3266 /**3264 * Lookup388: pallet_xcm::pallet::Origin3267 * Lookup391: pallet_xcm::pallet::Origin3265 **/3268 **/3266 PalletXcmOrigin: {3269 PalletXcmOrigin: {3267 _enum: {3270 _enum: {3268 Xcm: 'XcmV1MultiLocation',3271 Xcm: 'XcmV1MultiLocation',3269 Response: 'XcmV1MultiLocation'3272 Response: 'XcmV1MultiLocation'3270 }3273 }3271 },3274 },3272 /**3275 /**3273 * Lookup389: cumulus_pallet_xcm::pallet::Origin3276 * Lookup392: cumulus_pallet_xcm::pallet::Origin3274 **/3277 **/3275 CumulusPalletXcmOrigin: {3278 CumulusPalletXcmOrigin: {3276 _enum: {3279 _enum: {3277 Relay: 'Null',3280 Relay: 'Null',3278 SiblingParachain: 'u32'3281 SiblingParachain: 'u32'3279 }3282 }3280 },3283 },3281 /**3284 /**3282 * Lookup390: pallet_ethereum::RawOrigin3285 * Lookup393: pallet_ethereum::RawOrigin3283 **/3286 **/3284 PalletEthereumRawOrigin: {3287 PalletEthereumRawOrigin: {3285 _enum: {3288 _enum: {3286 EthereumTransaction: 'H160'3289 EthereumTransaction: 'H160'3287 }3290 }3288 },3291 },3289 /**3292 /**3290 * Lookup391: sp_core::Void3293 * Lookup394: sp_core::Void3291 **/3294 **/3292 SpCoreVoid: 'Null',3295 SpCoreVoid: 'Null',3293 /**3296 /**3294 * Lookup393: pallet_unique_scheduler_v2::pallet::Error<T>3297 * Lookup396: pallet_unique_scheduler_v2::pallet::Error<T>3295 **/3298 **/3296 PalletUniqueSchedulerV2Error: {3299 PalletUniqueSchedulerV2Error: {3297 _enum: ['FailedToSchedule', 'AgendaIsExhausted', 'ScheduledCallCorrupted', 'PreimageNotFound', 'TooBigScheduledCall', 'NotFound', 'TargetBlockNumberInPast', 'Named']3300 _enum: ['FailedToSchedule', 'AgendaIsExhausted', 'ScheduledCallCorrupted', 'PreimageNotFound', 'TooBigScheduledCall', 'NotFound', 'TargetBlockNumberInPast', 'Named']3298 },3301 },3299 /**3302 /**3300 * Lookup394: up_data_structs::Collection<sp_core::crypto::AccountId32>3303 * Lookup397: up_data_structs::Collection<sp_core::crypto::AccountId32>3301 **/3304 **/3302 UpDataStructsCollection: {3305 UpDataStructsCollection: {3303 owner: 'AccountId32',3306 owner: 'AccountId32',3304 mode: 'UpDataStructsCollectionMode',3307 mode: 'UpDataStructsCollectionMode',3310 permissions: 'UpDataStructsCollectionPermissions',3313 permissions: 'UpDataStructsCollectionPermissions',3311 flags: '[u8;1]'3314 flags: '[u8;1]'3312 },3315 },3313 /**3316 /**3314 * Lookup395: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3317 * Lookup398: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>3315 **/3318 **/3316 UpDataStructsSponsorshipStateAccountId32: {3319 UpDataStructsSponsorshipStateAccountId32: {3317 _enum: {3320 _enum: {3318 Disabled: 'Null',3321 Disabled: 'Null',3319 Unconfirmed: 'AccountId32',3322 Unconfirmed: 'AccountId32',3320 Confirmed: 'AccountId32'3323 Confirmed: 'AccountId32'3321 }3324 }3322 },3325 },3323 /**3326 /**3324 * Lookup397: up_data_structs::Properties3327 * Lookup400: up_data_structs::Properties3325 **/3328 **/3326 UpDataStructsProperties: {3329 UpDataStructsProperties: {3327 map: 'UpDataStructsPropertiesMapBoundedVec',3330 map: 'UpDataStructsPropertiesMapBoundedVec',3328 consumedSpace: 'u32',3331 consumedSpace: 'u32',3329 spaceLimit: 'u32'3332 spaceLimit: 'u32'3330 },3333 },3331 /**3334 /**3332 * Lookup398: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3335 * Lookup401: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>3333 **/3336 **/3334 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3337 UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',3335 /**3338 /**3336 * Lookup403: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3339 * Lookup406: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>3337 **/3340 **/3338 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3341 UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',3339 /**3342 /**3340 * Lookup410: up_data_structs::CollectionStats3343 * Lookup413: up_data_structs::CollectionStats3341 **/3344 **/3342 UpDataStructsCollectionStats: {3345 UpDataStructsCollectionStats: {3343 created: 'u32',3346 created: 'u32',3344 destroyed: 'u32',3347 destroyed: 'u32',3345 alive: 'u32'3348 alive: 'u32'3346 },3349 },3347 /**3350 /**3348 * Lookup411: up_data_structs::TokenChild3351 * Lookup414: up_data_structs::TokenChild3349 **/3352 **/3350 UpDataStructsTokenChild: {3353 UpDataStructsTokenChild: {3351 token: 'u32',3354 token: 'u32',3352 collection: 'u32'3355 collection: 'u32'3353 },3356 },3354 /**3357 /**3355 * Lookup412: PhantomType::up_data_structs<T>3358 * Lookup415: PhantomType::up_data_structs<T>3356 **/3359 **/3357 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3360 PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',3358 /**3361 /**3359 * Lookup414: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3362 * Lookup417: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3360 **/3363 **/3361 UpDataStructsTokenData: {3364 UpDataStructsTokenData: {3362 properties: 'Vec<UpDataStructsProperty>',3365 properties: 'Vec<UpDataStructsProperty>',3363 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3366 owner: 'Option<PalletEvmAccountBasicCrossAccountIdRepr>',3364 pieces: 'u128'3367 pieces: 'u128'3365 },3368 },3366 /**3369 /**3367 * Lookup416: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3370 * Lookup419: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>3368 **/3371 **/3369 UpDataStructsRpcCollection: {3372 UpDataStructsRpcCollection: {3370 owner: 'AccountId32',3373 owner: 'AccountId32',3371 mode: 'UpDataStructsCollectionMode',3374 mode: 'UpDataStructsCollectionMode',3380 readOnly: 'bool',3383 readOnly: 'bool',3381 flags: 'UpDataStructsRpcCollectionFlags'3384 flags: 'UpDataStructsRpcCollectionFlags'3382 },3385 },3383 /**3386 /**3384 * Lookup417: up_data_structs::RpcCollectionFlags3387 * Lookup420: up_data_structs::RpcCollectionFlags3385 **/3388 **/3386 UpDataStructsRpcCollectionFlags: {3389 UpDataStructsRpcCollectionFlags: {3387 foreign: 'bool',3390 foreign: 'bool',3388 erc721metadata: 'bool'3391 erc721metadata: 'bool'3389 },3392 },3390 /**3393 /**3391 * Lookup418: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3394 * Lookup421: rmrk_traits::collection::CollectionInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::crypto::AccountId32>3392 **/3395 **/3393 RmrkTraitsCollectionCollectionInfo: {3396 RmrkTraitsCollectionCollectionInfo: {3394 issuer: 'AccountId32',3397 issuer: 'AccountId32',3395 metadata: 'Bytes',3398 metadata: 'Bytes',3396 max: 'Option<u32>',3399 max: 'Option<u32>',3397 symbol: 'Bytes',3400 symbol: 'Bytes',3398 nftsCount: 'u32'3401 nftsCount: 'u32'3399 },3402 },3400 /**3403 /**3401 * Lookup419: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3404 * Lookup422: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3402 **/3405 **/3403 RmrkTraitsNftNftInfo: {3406 RmrkTraitsNftNftInfo: {3404 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3407 owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',3405 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3408 royalty: 'Option<RmrkTraitsNftRoyaltyInfo>',3406 metadata: 'Bytes',3409 metadata: 'Bytes',3407 equipped: 'bool',3410 equipped: 'bool',3408 pending: 'bool'3411 pending: 'bool'3409 },3412 },3410 /**3413 /**3411 * Lookup421: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3414 * Lookup424: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>3412 **/3415 **/3413 RmrkTraitsNftRoyaltyInfo: {3416 RmrkTraitsNftRoyaltyInfo: {3414 recipient: 'AccountId32',3417 recipient: 'AccountId32',3415 amount: 'Permill'3418 amount: 'Permill'3416 },3419 },3417 /**3420 /**3418 * Lookup422: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3421 * Lookup425: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3419 **/3422 **/3420 RmrkTraitsResourceResourceInfo: {3423 RmrkTraitsResourceResourceInfo: {3421 id: 'u32',3424 id: 'u32',3422 resource: 'RmrkTraitsResourceResourceTypes',3425 resource: 'RmrkTraitsResourceResourceTypes',3423 pending: 'bool',3426 pending: 'bool',3424 pendingRemoval: 'bool'3427 pendingRemoval: 'bool'3425 },3428 },3426 /**3429 /**3427 * Lookup423: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3430 * Lookup426: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3428 **/3431 **/3429 RmrkTraitsPropertyPropertyInfo: {3432 RmrkTraitsPropertyPropertyInfo: {3430 key: 'Bytes',3433 key: 'Bytes',3431 value: 'Bytes'3434 value: 'Bytes'3432 },3435 },3433 /**3436 /**3434 * Lookup424: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3437 * Lookup427: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>3435 **/3438 **/3436 RmrkTraitsBaseBaseInfo: {3439 RmrkTraitsBaseBaseInfo: {3437 issuer: 'AccountId32',3440 issuer: 'AccountId32',3438 baseType: 'Bytes',3441 baseType: 'Bytes',3439 symbol: 'Bytes'3442 symbol: 'Bytes'3440 },3443 },3441 /**3444 /**3442 * Lookup425: rmrk_traits::nft::NftChild3445 * Lookup428: rmrk_traits::nft::NftChild3443 **/3446 **/3444 RmrkTraitsNftNftChild: {3447 RmrkTraitsNftNftChild: {3445 collectionId: 'u32',3448 collectionId: 'u32',3446 nftId: 'u32'3449 nftId: 'u32'3447 },3450 },3448 /**3451 /**3449 * Lookup427: pallet_common::pallet::Error<T>3452 * Lookup430: pallet_common::pallet::Error<T>3450 **/3453 **/3451 PalletCommonError: {3454 PalletCommonError: {3452 _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']3455 _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']3453 },3456 },3454 /**3457 /**3455 * Lookup429: pallet_fungible::pallet::Error<T>3458 * Lookup432: pallet_fungible::pallet::Error<T>3456 **/3459 **/3457 PalletFungibleError: {3460 PalletFungibleError: {3458 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']3461 _enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']3459 },3462 },3460 /**3463 /**3461 * Lookup430: pallet_refungible::ItemData3464 * Lookup433: pallet_refungible::ItemData3462 **/3465 **/3463 PalletRefungibleItemData: {3466 PalletRefungibleItemData: {3464 constData: 'Bytes'3467 constData: 'Bytes'3465 },3468 },3466 /**3469 /**3467 * Lookup435: pallet_refungible::pallet::Error<T>3470 * Lookup438: pallet_refungible::pallet::Error<T>3468 **/3471 **/3469 PalletRefungibleError: {3472 PalletRefungibleError: {3470 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3473 _enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']3471 },3474 },3472 /**3475 /**3473 * Lookup436: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3476 * Lookup439: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3474 **/3477 **/3475 PalletNonfungibleItemData: {3478 PalletNonfungibleItemData: {3476 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3479 owner: 'PalletEvmAccountBasicCrossAccountIdRepr'3477 },3480 },3478 /**3481 /**3479 * Lookup438: up_data_structs::PropertyScope3482 * Lookup441: up_data_structs::PropertyScope3480 **/3483 **/3481 UpDataStructsPropertyScope: {3484 UpDataStructsPropertyScope: {3482 _enum: ['None', 'Rmrk']3485 _enum: ['None', 'Rmrk']3483 },3486 },3484 /**3487 /**3485 * Lookup440: pallet_nonfungible::pallet::Error<T>3488 * Lookup443: pallet_nonfungible::pallet::Error<T>3486 **/3489 **/3487 PalletNonfungibleError: {3490 PalletNonfungibleError: {3488 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3491 _enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']3489 },3492 },3490 /**3493 /**3491 * Lookup441: pallet_structure::pallet::Error<T>3494 * Lookup444: pallet_structure::pallet::Error<T>3492 **/3495 **/3493 PalletStructureError: {3496 PalletStructureError: {3494 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3497 _enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']3495 },3498 },3496 /**3499 /**3497 * Lookup442: pallet_rmrk_core::pallet::Error<T>3500 * Lookup445: pallet_rmrk_core::pallet::Error<T>3498 **/3501 **/3499 PalletRmrkCoreError: {3502 PalletRmrkCoreError: {3500 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3503 _enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']3501 },3504 },3502 /**3505 /**3503 * Lookup444: pallet_rmrk_equip::pallet::Error<T>3506 * Lookup447: pallet_rmrk_equip::pallet::Error<T>3504 **/3507 **/3505 PalletRmrkEquipError: {3508 PalletRmrkEquipError: {3506 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3509 _enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']3507 },3510 },3508 /**3511 /**3509 * Lookup450: pallet_app_promotion::pallet::Error<T>3512 * Lookup453: pallet_app_promotion::pallet::Error<T>3510 **/3513 **/3511 PalletAppPromotionError: {3514 PalletAppPromotionError: {3512 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3515 _enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']3513 },3516 },3514 /**3517 /**3515 * Lookup451: pallet_foreign_assets::module::Error<T>3518 * Lookup454: pallet_foreign_assets::module::Error<T>3516 **/3519 **/3517 PalletForeignAssetsModuleError: {3520 PalletForeignAssetsModuleError: {3518 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3521 _enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']3519 },3522 },3520 /**3523 /**3521 * Lookup453: pallet_evm::pallet::Error<T>3524 * Lookup456: pallet_evm::pallet::Error<T>3522 **/3525 **/3523 PalletEvmError: {3526 PalletEvmError: {3524 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']3527 _enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']3525 },3528 },3526 /**3529 /**3527 * Lookup456: fp_rpc::TransactionStatus3530 * Lookup459: fp_rpc::TransactionStatus3528 **/3531 **/3529 FpRpcTransactionStatus: {3532 FpRpcTransactionStatus: {3530 transactionHash: 'H256',3533 transactionHash: 'H256',3531 transactionIndex: 'u32',3534 transactionIndex: 'u32',3535 logs: 'Vec<EthereumLog>',3538 logs: 'Vec<EthereumLog>',3536 logsBloom: 'EthbloomBloom'3539 logsBloom: 'EthbloomBloom'3537 },3540 },3538 /**3541 /**3539 * Lookup458: ethbloom::Bloom3542 * Lookup461: ethbloom::Bloom3540 **/3543 **/3541 EthbloomBloom: '[u8;256]',3544 EthbloomBloom: '[u8;256]',3542 /**3545 /**3543 * Lookup460: ethereum::receipt::ReceiptV33546 * Lookup463: ethereum::receipt::ReceiptV33544 **/3547 **/3545 EthereumReceiptReceiptV3: {3548 EthereumReceiptReceiptV3: {3546 _enum: {3549 _enum: {3547 Legacy: 'EthereumReceiptEip658ReceiptData',3550 Legacy: 'EthereumReceiptEip658ReceiptData',3548 EIP2930: 'EthereumReceiptEip658ReceiptData',3551 EIP2930: 'EthereumReceiptEip658ReceiptData',3549 EIP1559: 'EthereumReceiptEip658ReceiptData'3552 EIP1559: 'EthereumReceiptEip658ReceiptData'3550 }3553 }3551 },3554 },3552 /**3555 /**3553 * Lookup461: ethereum::receipt::EIP658ReceiptData3556 * Lookup464: ethereum::receipt::EIP658ReceiptData3554 **/3557 **/3555 EthereumReceiptEip658ReceiptData: {3558 EthereumReceiptEip658ReceiptData: {3556 statusCode: 'u8',3559 statusCode: 'u8',3557 usedGas: 'U256',3560 usedGas: 'U256',3558 logsBloom: 'EthbloomBloom',3561 logsBloom: 'EthbloomBloom',3559 logs: 'Vec<EthereumLog>'3562 logs: 'Vec<EthereumLog>'3560 },3563 },3561 /**3564 /**3562 * Lookup462: ethereum::block::Block<ethereum::transaction::TransactionV2>3565 * Lookup465: ethereum::block::Block<ethereum::transaction::TransactionV2>3563 **/3566 **/3564 EthereumBlock: {3567 EthereumBlock: {3565 header: 'EthereumHeader',3568 header: 'EthereumHeader',3566 transactions: 'Vec<EthereumTransactionTransactionV2>',3569 transactions: 'Vec<EthereumTransactionTransactionV2>',3567 ommers: 'Vec<EthereumHeader>'3570 ommers: 'Vec<EthereumHeader>'3568 },3571 },3569 /**3572 /**3570 * Lookup463: ethereum::header::Header3573 * Lookup466: ethereum::header::Header3571 **/3574 **/3572 EthereumHeader: {3575 EthereumHeader: {3573 parentHash: 'H256',3576 parentHash: 'H256',3574 ommersHash: 'H256',3577 ommersHash: 'H256',3586 mixHash: 'H256',3589 mixHash: 'H256',3587 nonce: 'EthereumTypesHashH64'3590 nonce: 'EthereumTypesHashH64'3588 },3591 },3589 /**3592 /**3590 * Lookup464: ethereum_types::hash::H643593 * Lookup467: ethereum_types::hash::H643591 **/3594 **/3592 EthereumTypesHashH64: '[u8;8]',3595 EthereumTypesHashH64: '[u8;8]',3593 /**3596 /**3594 * Lookup469: pallet_ethereum::pallet::Error<T>3597 * Lookup472: pallet_ethereum::pallet::Error<T>3595 **/3598 **/3596 PalletEthereumError: {3599 PalletEthereumError: {3597 _enum: ['InvalidSignature', 'PreLogExists']3600 _enum: ['InvalidSignature', 'PreLogExists']3598 },3601 },3599 /**3602 /**3600 * Lookup470: pallet_evm_coder_substrate::pallet::Error<T>3603 * Lookup473: pallet_evm_coder_substrate::pallet::Error<T>3601 **/3604 **/3602 PalletEvmCoderSubstrateError: {3605 PalletEvmCoderSubstrateError: {3603 _enum: ['OutOfGas', 'OutOfFund']3606 _enum: ['OutOfGas', 'OutOfFund']3604 },3607 },3605 /**3608 /**3606 * Lookup471: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3609 * Lookup474: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>3607 **/3610 **/3608 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3611 UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {3609 _enum: {3612 _enum: {3610 Disabled: 'Null',3613 Disabled: 'Null',3611 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3614 Unconfirmed: 'PalletEvmAccountBasicCrossAccountIdRepr',3612 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3615 Confirmed: 'PalletEvmAccountBasicCrossAccountIdRepr'3613 }3616 }3614 },3617 },3615 /**3618 /**3616 * Lookup472: pallet_evm_contract_helpers::SponsoringModeT3619 * Lookup475: pallet_evm_contract_helpers::SponsoringModeT3617 **/3620 **/3618 PalletEvmContractHelpersSponsoringModeT: {3621 PalletEvmContractHelpersSponsoringModeT: {3619 _enum: ['Disabled', 'Allowlisted', 'Generous']3622 _enum: ['Disabled', 'Allowlisted', 'Generous']3620 },3623 },3621 /**3624 /**3622 * Lookup478: pallet_evm_contract_helpers::pallet::Error<T>3625 * Lookup481: pallet_evm_contract_helpers::pallet::Error<T>3623 **/3626 **/3624 PalletEvmContractHelpersError: {3627 PalletEvmContractHelpersError: {3625 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3628 _enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']3626 },3629 },3627 /**3630 /**3628 * Lookup479: pallet_evm_migration::pallet::Error<T>3631 * Lookup482: pallet_evm_migration::pallet::Error<T>3629 **/3632 **/3630 PalletEvmMigrationError: {3633 PalletEvmMigrationError: {3631 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3634 _enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']3632 },3635 },3633 /**3636 /**3634 * Lookup480: pallet_maintenance::pallet::Error<T>3637 * Lookup483: pallet_maintenance::pallet::Error<T>3635 **/3638 **/3636 PalletMaintenanceError: 'Null',3639 PalletMaintenanceError: 'Null',3637 /**3640 /**3638 * Lookup481: pallet_test_utils::pallet::Error<T>3641 * Lookup484: pallet_test_utils::pallet::Error<T>3639 **/3642 **/3640 PalletTestUtilsError: {3643 PalletTestUtilsError: {3641 _enum: ['TestPalletDisabled', 'TriggerRollback']3644 _enum: ['TestPalletDisabled', 'TriggerRollback']3642 },3645 },3643 /**3646 /**3644 * Lookup483: sp_runtime::MultiSignature3647 * Lookup486: sp_runtime::MultiSignature3645 **/3648 **/3646 SpRuntimeMultiSignature: {3649 SpRuntimeMultiSignature: {3647 _enum: {3650 _enum: {3648 Ed25519: 'SpCoreEd25519Signature',3651 Ed25519: 'SpCoreEd25519Signature',3649 Sr25519: 'SpCoreSr25519Signature',3652 Sr25519: 'SpCoreSr25519Signature',3650 Ecdsa: 'SpCoreEcdsaSignature'3653 Ecdsa: 'SpCoreEcdsaSignature'3651 }3654 }3652 },3655 },3653 /**3656 /**3654 * Lookup484: sp_core::ed25519::Signature3657 * Lookup487: sp_core::ed25519::Signature3655 **/3658 **/3656 SpCoreEd25519Signature: '[u8;64]',3659 SpCoreEd25519Signature: '[u8;64]',3657 /**3660 /**3658 * Lookup486: sp_core::sr25519::Signature3661 * Lookup489: sp_core::sr25519::Signature3659 **/3662 **/3660 SpCoreSr25519Signature: '[u8;64]',3663 SpCoreSr25519Signature: '[u8;64]',3661 /**3664 /**3662 * Lookup487: sp_core::ecdsa::Signature3665 * Lookup490: sp_core::ecdsa::Signature3663 **/3666 **/3664 SpCoreEcdsaSignature: '[u8;65]',3667 SpCoreEcdsaSignature: '[u8;65]',3665 /**3668 /**3666 * Lookup490: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3669 * Lookup493: frame_system::extensions::check_spec_version::CheckSpecVersion<T>3667 **/3670 **/3668 FrameSystemExtensionsCheckSpecVersion: 'Null',3671 FrameSystemExtensionsCheckSpecVersion: 'Null',3669 /**3672 /**3670 * Lookup491: frame_system::extensions::check_tx_version::CheckTxVersion<T>3673 * Lookup494: frame_system::extensions::check_tx_version::CheckTxVersion<T>3671 **/3674 **/3672 FrameSystemExtensionsCheckTxVersion: 'Null',3675 FrameSystemExtensionsCheckTxVersion: 'Null',3673 /**3676 /**3674 * Lookup492: frame_system::extensions::check_genesis::CheckGenesis<T>3677 * Lookup495: frame_system::extensions::check_genesis::CheckGenesis<T>3675 **/3678 **/3676 FrameSystemExtensionsCheckGenesis: 'Null',3679 FrameSystemExtensionsCheckGenesis: 'Null',3677 /**3680 /**3678 * Lookup495: frame_system::extensions::check_nonce::CheckNonce<T>3681 * Lookup498: frame_system::extensions::check_nonce::CheckNonce<T>3679 **/3682 **/3680 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3683 FrameSystemExtensionsCheckNonce: 'Compact<u32>',3681 /**3684 /**3682 * Lookup496: frame_system::extensions::check_weight::CheckWeight<T>3685 * Lookup499: frame_system::extensions::check_weight::CheckWeight<T>3683 **/3686 **/3684 FrameSystemExtensionsCheckWeight: 'Null',3687 FrameSystemExtensionsCheckWeight: 'Null',3685 /**3688 /**3686 * Lookup497: opal_runtime::runtime_common::maintenance::CheckMaintenance3689 * Lookup500: opal_runtime::runtime_common::maintenance::CheckMaintenance3687 **/3690 **/3688 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3691 OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',3689 /**3692 /**3690 * Lookup498: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3693 * Lookup501: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>3691 **/3694 **/3692 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3695 PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',3693 /**3696 /**3694 * Lookup499: opal_runtime::Runtime3697 * Lookup502: opal_runtime::Runtime3695 **/3698 **/3696 OpalRuntimeRuntime: 'Null',3699 OpalRuntimeRuntime: 'Null',3697 /**3700 /**3698 * Lookup500: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3701 * Lookup503: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>3699 **/3702 **/3700 PalletEthereumFakeTransactionFinalizer: 'Null'3703 PalletEthereumFakeTransactionFinalizer: 'Null'3701};3704};37023705tests/src/interfaces/types-lookup.tsdiffbeforeafterboth2761 readonly asSetMinGasPriceOverride: {2761 readonly asSetMinGasPriceOverride: {2762 readonly coeff: Option<u64>;2762 readonly coeff: Option<u64>;2763 } & Struct;2763 } & Struct;2764 readonly isSetXcmAllowedLocations: boolean;2765 readonly asSetXcmAllowedLocations: {2766 readonly locations: Option<Vec<XcmV1MultiLocation>>;2767 } & Struct;2764 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2768 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';2765 }2769 }276627702767 /** @name PalletTemplateTransactionPaymentCall (288) */2771 /** @name PalletTemplateTransactionPaymentCall (291) */2768 type PalletTemplateTransactionPaymentCall = Null;2772 type PalletTemplateTransactionPaymentCall = Null;276927732770 /** @name PalletStructureCall (289) */2774 /** @name PalletStructureCall (292) */2771 type PalletStructureCall = Null;2775 type PalletStructureCall = Null;277227762773 /** @name PalletRmrkCoreCall (290) */2777 /** @name PalletRmrkCoreCall (293) */2774 interface PalletRmrkCoreCall extends Enum {2778 interface PalletRmrkCoreCall extends Enum {2775 readonly isCreateCollection: boolean;2779 readonly isCreateCollection: boolean;2776 readonly asCreateCollection: {2780 readonly asCreateCollection: {2876 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2880 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2877 }2881 }287828822879 /** @name RmrkTraitsResourceResourceTypes (296) */2883 /** @name RmrkTraitsResourceResourceTypes (299) */2880 interface RmrkTraitsResourceResourceTypes extends Enum {2884 interface RmrkTraitsResourceResourceTypes extends Enum {2881 readonly isBasic: boolean;2885 readonly isBasic: boolean;2882 readonly asBasic: RmrkTraitsResourceBasicResource;2886 readonly asBasic: RmrkTraitsResourceBasicResource;2887 readonly type: 'Basic' | 'Composable' | 'Slot';2891 readonly type: 'Basic' | 'Composable' | 'Slot';2888 }2892 }288928932890 /** @name RmrkTraitsResourceBasicResource (298) */2894 /** @name RmrkTraitsResourceBasicResource (301) */2891 interface RmrkTraitsResourceBasicResource extends Struct {2895 interface RmrkTraitsResourceBasicResource extends Struct {2892 readonly src: Option<Bytes>;2896 readonly src: Option<Bytes>;2893 readonly metadata: Option<Bytes>;2897 readonly metadata: Option<Bytes>;2894 readonly license: Option<Bytes>;2898 readonly license: Option<Bytes>;2895 readonly thumb: Option<Bytes>;2899 readonly thumb: Option<Bytes>;2896 }2900 }289729012898 /** @name RmrkTraitsResourceComposableResource (300) */2902 /** @name RmrkTraitsResourceComposableResource (303) */2899 interface RmrkTraitsResourceComposableResource extends Struct {2903 interface RmrkTraitsResourceComposableResource extends Struct {2900 readonly parts: Vec<u32>;2904 readonly parts: Vec<u32>;2901 readonly base: u32;2905 readonly base: u32;2905 readonly thumb: Option<Bytes>;2909 readonly thumb: Option<Bytes>;2906 }2910 }290729112908 /** @name RmrkTraitsResourceSlotResource (301) */2912 /** @name RmrkTraitsResourceSlotResource (304) */2909 interface RmrkTraitsResourceSlotResource extends Struct {2913 interface RmrkTraitsResourceSlotResource extends Struct {2910 readonly base: u32;2914 readonly base: u32;2911 readonly src: Option<Bytes>;2915 readonly src: Option<Bytes>;2915 readonly thumb: Option<Bytes>;2919 readonly thumb: Option<Bytes>;2916 }2920 }291729212918 /** @name PalletRmrkEquipCall (304) */2922 /** @name PalletRmrkEquipCall (307) */2919 interface PalletRmrkEquipCall extends Enum {2923 interface PalletRmrkEquipCall extends Enum {2920 readonly isCreateBase: boolean;2924 readonly isCreateBase: boolean;2921 readonly asCreateBase: {2925 readonly asCreateBase: {2937 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2941 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2938 }2942 }293929432940 /** @name RmrkTraitsPartPartType (307) */2944 /** @name RmrkTraitsPartPartType (310) */2941 interface RmrkTraitsPartPartType extends Enum {2945 interface RmrkTraitsPartPartType extends Enum {2942 readonly isFixedPart: boolean;2946 readonly isFixedPart: boolean;2943 readonly asFixedPart: RmrkTraitsPartFixedPart;2947 readonly asFixedPart: RmrkTraitsPartFixedPart;2946 readonly type: 'FixedPart' | 'SlotPart';2950 readonly type: 'FixedPart' | 'SlotPart';2947 }2951 }294829522949 /** @name RmrkTraitsPartFixedPart (309) */2953 /** @name RmrkTraitsPartFixedPart (312) */2950 interface RmrkTraitsPartFixedPart extends Struct {2954 interface RmrkTraitsPartFixedPart extends Struct {2951 readonly id: u32;2955 readonly id: u32;2952 readonly z: u32;2956 readonly z: u32;2953 readonly src: Bytes;2957 readonly src: Bytes;2954 }2958 }295529592956 /** @name RmrkTraitsPartSlotPart (310) */2960 /** @name RmrkTraitsPartSlotPart (313) */2957 interface RmrkTraitsPartSlotPart extends Struct {2961 interface RmrkTraitsPartSlotPart extends Struct {2958 readonly id: u32;2962 readonly id: u32;2959 readonly equippable: RmrkTraitsPartEquippableList;2963 readonly equippable: RmrkTraitsPartEquippableList;2960 readonly src: Bytes;2964 readonly src: Bytes;2961 readonly z: u32;2965 readonly z: u32;2962 }2966 }296329672964 /** @name RmrkTraitsPartEquippableList (311) */2968 /** @name RmrkTraitsPartEquippableList (314) */2965 interface RmrkTraitsPartEquippableList extends Enum {2969 interface RmrkTraitsPartEquippableList extends Enum {2966 readonly isAll: boolean;2970 readonly isAll: boolean;2967 readonly isEmpty: boolean;2971 readonly isEmpty: boolean;2970 readonly type: 'All' | 'Empty' | 'Custom';2974 readonly type: 'All' | 'Empty' | 'Custom';2971 }2975 }297229762973 /** @name RmrkTraitsTheme (313) */2977 /** @name RmrkTraitsTheme (316) */2974 interface RmrkTraitsTheme extends Struct {2978 interface RmrkTraitsTheme extends Struct {2975 readonly name: Bytes;2979 readonly name: Bytes;2976 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2980 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2977 readonly inherit: bool;2981 readonly inherit: bool;2978 }2982 }297929832980 /** @name RmrkTraitsThemeThemeProperty (315) */2984 /** @name RmrkTraitsThemeThemeProperty (318) */2981 interface RmrkTraitsThemeThemeProperty extends Struct {2985 interface RmrkTraitsThemeThemeProperty extends Struct {2982 readonly key: Bytes;2986 readonly key: Bytes;2983 readonly value: Bytes;2987 readonly value: Bytes;2984 }2988 }298529892986 /** @name PalletAppPromotionCall (317) */2990 /** @name PalletAppPromotionCall (320) */2987 interface PalletAppPromotionCall extends Enum {2991 interface PalletAppPromotionCall extends Enum {2988 readonly isSetAdminAddress: boolean;2992 readonly isSetAdminAddress: boolean;2989 readonly asSetAdminAddress: {2993 readonly asSetAdminAddress: {3017 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';3021 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';3018 }3022 }301930233020 /** @name PalletForeignAssetsModuleCall (318) */3024 /** @name PalletForeignAssetsModuleCall (321) */3021 interface PalletForeignAssetsModuleCall extends Enum {3025 interface PalletForeignAssetsModuleCall extends Enum {3022 readonly isRegisterForeignAsset: boolean;3026 readonly isRegisterForeignAsset: boolean;3023 readonly asRegisterForeignAsset: {3027 readonly asRegisterForeignAsset: {3034 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3038 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3035 }3039 }303630403037 /** @name PalletEvmCall (319) */3041 /** @name PalletEvmCall (322) */3038 interface PalletEvmCall extends Enum {3042 interface PalletEvmCall extends Enum {3039 readonly isWithdraw: boolean;3043 readonly isWithdraw: boolean;3040 readonly asWithdraw: {3044 readonly asWithdraw: {3079 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3083 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3080 }3084 }308130853082 /** @name PalletEthereumCall (325) */3086 /** @name PalletEthereumCall (328) */3083 interface PalletEthereumCall extends Enum {3087 interface PalletEthereumCall extends Enum {3084 readonly isTransact: boolean;3088 readonly isTransact: boolean;3085 readonly asTransact: {3089 readonly asTransact: {3088 readonly type: 'Transact';3092 readonly type: 'Transact';3089 }3093 }309030943091 /** @name EthereumTransactionTransactionV2 (326) */3095 /** @name EthereumTransactionTransactionV2 (329) */3092 interface EthereumTransactionTransactionV2 extends Enum {3096 interface EthereumTransactionTransactionV2 extends Enum {3093 readonly isLegacy: boolean;3097 readonly isLegacy: boolean;3094 readonly asLegacy: EthereumTransactionLegacyTransaction;3098 readonly asLegacy: EthereumTransactionLegacyTransaction;3099 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3103 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3100 }3104 }310131053102 /** @name EthereumTransactionLegacyTransaction (327) */3106 /** @name EthereumTransactionLegacyTransaction (330) */3103 interface EthereumTransactionLegacyTransaction extends Struct {3107 interface EthereumTransactionLegacyTransaction extends Struct {3104 readonly nonce: U256;3108 readonly nonce: U256;3105 readonly gasPrice: U256;3109 readonly gasPrice: U256;3110 readonly signature: EthereumTransactionTransactionSignature;3114 readonly signature: EthereumTransactionTransactionSignature;3111 }3115 }311231163113 /** @name EthereumTransactionTransactionAction (328) */3117 /** @name EthereumTransactionTransactionAction (331) */3114 interface EthereumTransactionTransactionAction extends Enum {3118 interface EthereumTransactionTransactionAction extends Enum {3115 readonly isCall: boolean;3119 readonly isCall: boolean;3116 readonly asCall: H160;3120 readonly asCall: H160;3117 readonly isCreate: boolean;3121 readonly isCreate: boolean;3118 readonly type: 'Call' | 'Create';3122 readonly type: 'Call' | 'Create';3119 }3123 }312031243121 /** @name EthereumTransactionTransactionSignature (329) */3125 /** @name EthereumTransactionTransactionSignature (332) */3122 interface EthereumTransactionTransactionSignature extends Struct {3126 interface EthereumTransactionTransactionSignature extends Struct {3123 readonly v: u64;3127 readonly v: u64;3124 readonly r: H256;3128 readonly r: H256;3125 readonly s: H256;3129 readonly s: H256;3126 }3130 }312731313128 /** @name EthereumTransactionEip2930Transaction (331) */3132 /** @name EthereumTransactionEip2930Transaction (334) */3129 interface EthereumTransactionEip2930Transaction extends Struct {3133 interface EthereumTransactionEip2930Transaction extends Struct {3130 readonly chainId: u64;3134 readonly chainId: u64;3131 readonly nonce: U256;3135 readonly nonce: U256;3140 readonly s: H256;3144 readonly s: H256;3141 }3145 }314231463143 /** @name EthereumTransactionAccessListItem (333) */3147 /** @name EthereumTransactionAccessListItem (336) */3144 interface EthereumTransactionAccessListItem extends Struct {3148 interface EthereumTransactionAccessListItem extends Struct {3145 readonly address: H160;3149 readonly address: H160;3146 readonly storageKeys: Vec<H256>;3150 readonly storageKeys: Vec<H256>;3147 }3151 }314831523149 /** @name EthereumTransactionEip1559Transaction (334) */3153 /** @name EthereumTransactionEip1559Transaction (337) */3150 interface EthereumTransactionEip1559Transaction extends Struct {3154 interface EthereumTransactionEip1559Transaction extends Struct {3151 readonly chainId: u64;3155 readonly chainId: u64;3152 readonly nonce: U256;3156 readonly nonce: U256;3162 readonly s: H256;3166 readonly s: H256;3163 }3167 }316431683165 /** @name PalletEvmMigrationCall (335) */3169 /** @name PalletEvmMigrationCall (338) */3166 interface PalletEvmMigrationCall extends Enum {3170 interface PalletEvmMigrationCall extends Enum {3167 readonly isBegin: boolean;3171 readonly isBegin: boolean;3168 readonly asBegin: {3172 readonly asBegin: {3189 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3193 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3190 }3194 }319131953192 /** @name PalletMaintenanceCall (339) */3196 /** @name PalletMaintenanceCall (342) */3193 interface PalletMaintenanceCall extends Enum {3197 interface PalletMaintenanceCall extends Enum {3194 readonly isEnable: boolean;3198 readonly isEnable: boolean;3195 readonly isDisable: boolean;3199 readonly isDisable: boolean;3196 readonly type: 'Enable' | 'Disable';3200 readonly type: 'Enable' | 'Disable';3197 }3201 }319832023199 /** @name PalletTestUtilsCall (340) */3203 /** @name PalletTestUtilsCall (343) */3200 interface PalletTestUtilsCall extends Enum {3204 interface PalletTestUtilsCall extends Enum {3201 readonly isEnable: boolean;3205 readonly isEnable: boolean;3202 readonly isSetTestValue: boolean;3206 readonly isSetTestValue: boolean;3221 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';3225 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';3222 }3226 }322332273224 /** @name PalletSudoError (342) */3228 /** @name PalletSudoError (345) */3225 interface PalletSudoError extends Enum {3229 interface PalletSudoError extends Enum {3226 readonly isRequireSudo: boolean;3230 readonly isRequireSudo: boolean;3227 readonly type: 'RequireSudo';3231 readonly type: 'RequireSudo';3228 }3232 }322932333230 /** @name OrmlVestingModuleError (344) */3234 /** @name OrmlVestingModuleError (347) */3231 interface OrmlVestingModuleError extends Enum {3235 interface OrmlVestingModuleError extends Enum {3232 readonly isZeroVestingPeriod: boolean;3236 readonly isZeroVestingPeriod: boolean;3233 readonly isZeroVestingPeriodCount: boolean;3237 readonly isZeroVestingPeriodCount: boolean;3238 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3242 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3239 }3243 }324032443241 /** @name OrmlXtokensModuleError (345) */3245 /** @name OrmlXtokensModuleError (348) */3242 interface OrmlXtokensModuleError extends Enum {3246 interface OrmlXtokensModuleError extends Enum {3243 readonly isAssetHasNoReserve: boolean;3247 readonly isAssetHasNoReserve: boolean;3244 readonly isNotCrossChainTransfer: boolean;3248 readonly isNotCrossChainTransfer: boolean;3262 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3266 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3263 }3267 }326432683265 /** @name OrmlTokensBalanceLock (348) */3269 /** @name OrmlTokensBalanceLock (351) */3266 interface OrmlTokensBalanceLock extends Struct {3270 interface OrmlTokensBalanceLock extends Struct {3267 readonly id: U8aFixed;3271 readonly id: U8aFixed;3268 readonly amount: u128;3272 readonly amount: u128;3269 }3273 }327032743271 /** @name OrmlTokensAccountData (350) */3275 /** @name OrmlTokensAccountData (353) */3272 interface OrmlTokensAccountData extends Struct {3276 interface OrmlTokensAccountData extends Struct {3273 readonly free: u128;3277 readonly free: u128;3274 readonly reserved: u128;3278 readonly reserved: u128;3275 readonly frozen: u128;3279 readonly frozen: u128;3276 }3280 }327732813278 /** @name OrmlTokensReserveData (352) */3282 /** @name OrmlTokensReserveData (355) */3279 interface OrmlTokensReserveData extends Struct {3283 interface OrmlTokensReserveData extends Struct {3280 readonly id: Null;3284 readonly id: Null;3281 readonly amount: u128;3285 readonly amount: u128;3282 }3286 }328332873284 /** @name OrmlTokensModuleError (354) */3288 /** @name OrmlTokensModuleError (357) */3285 interface OrmlTokensModuleError extends Enum {3289 interface OrmlTokensModuleError extends Enum {3286 readonly isBalanceTooLow: boolean;3290 readonly isBalanceTooLow: boolean;3287 readonly isAmountIntoBalanceFailed: boolean;3291 readonly isAmountIntoBalanceFailed: boolean;3294 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3298 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3295 }3299 }329633003297 /** @name CumulusPalletXcmpQueueInboundChannelDetails (356) */3301 /** @name CumulusPalletXcmpQueueInboundChannelDetails (359) */3298 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3302 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3299 readonly sender: u32;3303 readonly sender: u32;3300 readonly state: CumulusPalletXcmpQueueInboundState;3304 readonly state: CumulusPalletXcmpQueueInboundState;3301 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3305 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3302 }3306 }330333073304 /** @name CumulusPalletXcmpQueueInboundState (357) */3308 /** @name CumulusPalletXcmpQueueInboundState (360) */3305 interface CumulusPalletXcmpQueueInboundState extends Enum {3309 interface CumulusPalletXcmpQueueInboundState extends Enum {3306 readonly isOk: boolean;3310 readonly isOk: boolean;3307 readonly isSuspended: boolean;3311 readonly isSuspended: boolean;3308 readonly type: 'Ok' | 'Suspended';3312 readonly type: 'Ok' | 'Suspended';3309 }3313 }331033143311 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (360) */3315 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (363) */3312 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3316 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3313 readonly isConcatenatedVersionedXcm: boolean;3317 readonly isConcatenatedVersionedXcm: boolean;3314 readonly isConcatenatedEncodedBlob: boolean;3318 readonly isConcatenatedEncodedBlob: boolean;3315 readonly isSignals: boolean;3319 readonly isSignals: boolean;3316 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3320 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3317 }3321 }331833223319 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (363) */3323 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (366) */3320 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3324 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3321 readonly recipient: u32;3325 readonly recipient: u32;3322 readonly state: CumulusPalletXcmpQueueOutboundState;3326 readonly state: CumulusPalletXcmpQueueOutboundState;3325 readonly lastIndex: u16;3329 readonly lastIndex: u16;3326 }3330 }332733313328 /** @name CumulusPalletXcmpQueueOutboundState (364) */3332 /** @name CumulusPalletXcmpQueueOutboundState (367) */3329 interface CumulusPalletXcmpQueueOutboundState extends Enum {3333 interface CumulusPalletXcmpQueueOutboundState extends Enum {3330 readonly isOk: boolean;3334 readonly isOk: boolean;3331 readonly isSuspended: boolean;3335 readonly isSuspended: boolean;3332 readonly type: 'Ok' | 'Suspended';3336 readonly type: 'Ok' | 'Suspended';3333 }3337 }333433383335 /** @name CumulusPalletXcmpQueueQueueConfigData (366) */3339 /** @name CumulusPalletXcmpQueueQueueConfigData (369) */3336 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3340 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3337 readonly suspendThreshold: u32;3341 readonly suspendThreshold: u32;3338 readonly dropThreshold: u32;3342 readonly dropThreshold: u32;3342 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3346 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3343 }3347 }334433483345 /** @name CumulusPalletXcmpQueueError (368) */3349 /** @name CumulusPalletXcmpQueueError (371) */3346 interface CumulusPalletXcmpQueueError extends Enum {3350 interface CumulusPalletXcmpQueueError extends Enum {3347 readonly isFailedToSend: boolean;3351 readonly isFailedToSend: boolean;3348 readonly isBadXcmOrigin: boolean;3352 readonly isBadXcmOrigin: boolean;3352 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3356 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3353 }3357 }335433583355 /** @name PalletXcmError (369) */3359 /** @name PalletXcmError (372) */3356 interface PalletXcmError extends Enum {3360 interface PalletXcmError extends Enum {3357 readonly isUnreachable: boolean;3361 readonly isUnreachable: boolean;3358 readonly isSendFailure: boolean;3362 readonly isSendFailure: boolean;3370 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3374 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3371 }3375 }337233763373 /** @name CumulusPalletXcmError (370) */3377 /** @name CumulusPalletXcmError (373) */3374 type CumulusPalletXcmError = Null;3378 type CumulusPalletXcmError = Null;337533793376 /** @name CumulusPalletDmpQueueConfigData (371) */3380 /** @name CumulusPalletDmpQueueConfigData (374) */3377 interface CumulusPalletDmpQueueConfigData extends Struct {3381 interface CumulusPalletDmpQueueConfigData extends Struct {3378 readonly maxIndividual: SpWeightsWeightV2Weight;3382 readonly maxIndividual: SpWeightsWeightV2Weight;3379 }3383 }338033843381 /** @name CumulusPalletDmpQueuePageIndexData (372) */3385 /** @name CumulusPalletDmpQueuePageIndexData (375) */3382 interface CumulusPalletDmpQueuePageIndexData extends Struct {3386 interface CumulusPalletDmpQueuePageIndexData extends Struct {3383 readonly beginUsed: u32;3387 readonly beginUsed: u32;3384 readonly endUsed: u32;3388 readonly endUsed: u32;3385 readonly overweightCount: u64;3389 readonly overweightCount: u64;3386 }3390 }338733913388 /** @name CumulusPalletDmpQueueError (375) */3392 /** @name CumulusPalletDmpQueueError (378) */3389 interface CumulusPalletDmpQueueError extends Enum {3393 interface CumulusPalletDmpQueueError extends Enum {3390 readonly isUnknown: boolean;3394 readonly isUnknown: boolean;3391 readonly isOverLimit: boolean;3395 readonly isOverLimit: boolean;3392 readonly type: 'Unknown' | 'OverLimit';3396 readonly type: 'Unknown' | 'OverLimit';3393 }3397 }339433983395 /** @name PalletUniqueError (379) */3399 /** @name PalletUniqueError (382) */3396 interface PalletUniqueError extends Enum {3400 interface PalletUniqueError extends Enum {3397 readonly isCollectionDecimalPointLimitExceeded: boolean;3401 readonly isCollectionDecimalPointLimitExceeded: boolean;3398 readonly isEmptyArgument: boolean;3402 readonly isEmptyArgument: boolean;3399 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3403 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3400 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3404 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3401 }3405 }340234063403 /** @name PalletUniqueSchedulerV2BlockAgenda (380) */3407 /** @name PalletUniqueSchedulerV2BlockAgenda (383) */3404 interface PalletUniqueSchedulerV2BlockAgenda extends Struct {3408 interface PalletUniqueSchedulerV2BlockAgenda extends Struct {3405 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;3409 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;3406 readonly freePlaces: u32;3410 readonly freePlaces: u32;3407 }3411 }340834123409 /** @name PalletUniqueSchedulerV2Scheduled (383) */3413 /** @name PalletUniqueSchedulerV2Scheduled (386) */3410 interface PalletUniqueSchedulerV2Scheduled extends Struct {3414 interface PalletUniqueSchedulerV2Scheduled extends Struct {3411 readonly maybeId: Option<U8aFixed>;3415 readonly maybeId: Option<U8aFixed>;3412 readonly priority: u8;3416 readonly priority: u8;3415 readonly origin: OpalRuntimeOriginCaller;3419 readonly origin: OpalRuntimeOriginCaller;3416 }3420 }341734213418 /** @name PalletUniqueSchedulerV2ScheduledCall (384) */3422 /** @name PalletUniqueSchedulerV2ScheduledCall (387) */3419 interface PalletUniqueSchedulerV2ScheduledCall extends Enum {3423 interface PalletUniqueSchedulerV2ScheduledCall extends Enum {3420 readonly isInline: boolean;3424 readonly isInline: boolean;3421 readonly asInline: Bytes;3425 readonly asInline: Bytes;3427 readonly type: 'Inline' | 'PreimageLookup';3431 readonly type: 'Inline' | 'PreimageLookup';3428 }3432 }342934333430 /** @name OpalRuntimeOriginCaller (386) */3434 /** @name OpalRuntimeOriginCaller (389) */3431 interface OpalRuntimeOriginCaller extends Enum {3435 interface OpalRuntimeOriginCaller extends Enum {3432 readonly isSystem: boolean;3436 readonly isSystem: boolean;3433 readonly asSystem: FrameSupportDispatchRawOrigin;3437 readonly asSystem: FrameSupportDispatchRawOrigin;3441 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3445 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3442 }3446 }344334473444 /** @name FrameSupportDispatchRawOrigin (387) */3448 /** @name FrameSupportDispatchRawOrigin (390) */3445 interface FrameSupportDispatchRawOrigin extends Enum {3449 interface FrameSupportDispatchRawOrigin extends Enum {3446 readonly isRoot: boolean;3450 readonly isRoot: boolean;3447 readonly isSigned: boolean;3451 readonly isSigned: boolean;3450 readonly type: 'Root' | 'Signed' | 'None';3454 readonly type: 'Root' | 'Signed' | 'None';3451 }3455 }345234563453 /** @name PalletXcmOrigin (388) */3457 /** @name PalletXcmOrigin (391) */3454 interface PalletXcmOrigin extends Enum {3458 interface PalletXcmOrigin extends Enum {3455 readonly isXcm: boolean;3459 readonly isXcm: boolean;3456 readonly asXcm: XcmV1MultiLocation;3460 readonly asXcm: XcmV1MultiLocation;3459 readonly type: 'Xcm' | 'Response';3463 readonly type: 'Xcm' | 'Response';3460 }3464 }346134653462 /** @name CumulusPalletXcmOrigin (389) */3466 /** @name CumulusPalletXcmOrigin (392) */3463 interface CumulusPalletXcmOrigin extends Enum {3467 interface CumulusPalletXcmOrigin extends Enum {3464 readonly isRelay: boolean;3468 readonly isRelay: boolean;3465 readonly isSiblingParachain: boolean;3469 readonly isSiblingParachain: boolean;3466 readonly asSiblingParachain: u32;3470 readonly asSiblingParachain: u32;3467 readonly type: 'Relay' | 'SiblingParachain';3471 readonly type: 'Relay' | 'SiblingParachain';3468 }3472 }346934733470 /** @name PalletEthereumRawOrigin (390) */3474 /** @name PalletEthereumRawOrigin (393) */3471 interface PalletEthereumRawOrigin extends Enum {3475 interface PalletEthereumRawOrigin extends Enum {3472 readonly isEthereumTransaction: boolean;3476 readonly isEthereumTransaction: boolean;3473 readonly asEthereumTransaction: H160;3477 readonly asEthereumTransaction: H160;3474 readonly type: 'EthereumTransaction';3478 readonly type: 'EthereumTransaction';3475 }3479 }347634803477 /** @name SpCoreVoid (391) */3481 /** @name SpCoreVoid (394) */3478 type SpCoreVoid = Null;3482 type SpCoreVoid = Null;347934833480 /** @name PalletUniqueSchedulerV2Error (393) */3484 /** @name PalletUniqueSchedulerV2Error (396) */3481 interface PalletUniqueSchedulerV2Error extends Enum {3485 interface PalletUniqueSchedulerV2Error extends Enum {3482 readonly isFailedToSchedule: boolean;3486 readonly isFailedToSchedule: boolean;3483 readonly isAgendaIsExhausted: boolean;3487 readonly isAgendaIsExhausted: boolean;3490 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';3494 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';3491 }3495 }349234963493 /** @name UpDataStructsCollection (394) */3497 /** @name UpDataStructsCollection (397) */3494 interface UpDataStructsCollection extends Struct {3498 interface UpDataStructsCollection extends Struct {3495 readonly owner: AccountId32;3499 readonly owner: AccountId32;3496 readonly mode: UpDataStructsCollectionMode;3500 readonly mode: UpDataStructsCollectionMode;3503 readonly flags: U8aFixed;3507 readonly flags: U8aFixed;3504 }3508 }350535093506 /** @name UpDataStructsSponsorshipStateAccountId32 (395) */3510 /** @name UpDataStructsSponsorshipStateAccountId32 (398) */3507 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3511 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3508 readonly isDisabled: boolean;3512 readonly isDisabled: boolean;3509 readonly isUnconfirmed: boolean;3513 readonly isUnconfirmed: boolean;3513 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3517 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3514 }3518 }351535193516 /** @name UpDataStructsProperties (397) */3520 /** @name UpDataStructsProperties (400) */3517 interface UpDataStructsProperties extends Struct {3521 interface UpDataStructsProperties extends Struct {3518 readonly map: UpDataStructsPropertiesMapBoundedVec;3522 readonly map: UpDataStructsPropertiesMapBoundedVec;3519 readonly consumedSpace: u32;3523 readonly consumedSpace: u32;3520 readonly spaceLimit: u32;3524 readonly spaceLimit: u32;3521 }3525 }352235263523 /** @name UpDataStructsPropertiesMapBoundedVec (398) */3527 /** @name UpDataStructsPropertiesMapBoundedVec (401) */3524 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}3528 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}352535293526 /** @name UpDataStructsPropertiesMapPropertyPermission (403) */3530 /** @name UpDataStructsPropertiesMapPropertyPermission (406) */3527 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}3531 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}352835323529 /** @name UpDataStructsCollectionStats (410) */3533 /** @name UpDataStructsCollectionStats (413) */3530 interface UpDataStructsCollectionStats extends Struct {3534 interface UpDataStructsCollectionStats extends Struct {3531 readonly created: u32;3535 readonly created: u32;3532 readonly destroyed: u32;3536 readonly destroyed: u32;3533 readonly alive: u32;3537 readonly alive: u32;3534 }3538 }353535393536 /** @name UpDataStructsTokenChild (411) */3540 /** @name UpDataStructsTokenChild (414) */3537 interface UpDataStructsTokenChild extends Struct {3541 interface UpDataStructsTokenChild extends Struct {3538 readonly token: u32;3542 readonly token: u32;3539 readonly collection: u32;3543 readonly collection: u32;3540 }3544 }354135453542 /** @name PhantomTypeUpDataStructs (412) */3546 /** @name PhantomTypeUpDataStructs (415) */3543 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}3547 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}354435483545 /** @name UpDataStructsTokenData (414) */3549 /** @name UpDataStructsTokenData (417) */3546 interface UpDataStructsTokenData extends Struct {3550 interface UpDataStructsTokenData extends Struct {3547 readonly properties: Vec<UpDataStructsProperty>;3551 readonly properties: Vec<UpDataStructsProperty>;3548 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3552 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3549 readonly pieces: u128;3553 readonly pieces: u128;3550 }3554 }355135553552 /** @name UpDataStructsRpcCollection (416) */3556 /** @name UpDataStructsRpcCollection (419) */3553 interface UpDataStructsRpcCollection extends Struct {3557 interface UpDataStructsRpcCollection extends Struct {3554 readonly owner: AccountId32;3558 readonly owner: AccountId32;3555 readonly mode: UpDataStructsCollectionMode;3559 readonly mode: UpDataStructsCollectionMode;3565 readonly flags: UpDataStructsRpcCollectionFlags;3569 readonly flags: UpDataStructsRpcCollectionFlags;3566 }3570 }356735713568 /** @name UpDataStructsRpcCollectionFlags (417) */3572 /** @name UpDataStructsRpcCollectionFlags (420) */3569 interface UpDataStructsRpcCollectionFlags extends Struct {3573 interface UpDataStructsRpcCollectionFlags extends Struct {3570 readonly foreign: bool;3574 readonly foreign: bool;3571 readonly erc721metadata: bool;3575 readonly erc721metadata: bool;3572 }3576 }357335773574 /** @name RmrkTraitsCollectionCollectionInfo (418) */3578 /** @name RmrkTraitsCollectionCollectionInfo (421) */3575 interface RmrkTraitsCollectionCollectionInfo extends Struct {3579 interface RmrkTraitsCollectionCollectionInfo extends Struct {3576 readonly issuer: AccountId32;3580 readonly issuer: AccountId32;3577 readonly metadata: Bytes;3581 readonly metadata: Bytes;3580 readonly nftsCount: u32;3584 readonly nftsCount: u32;3581 }3585 }358235863583 /** @name RmrkTraitsNftNftInfo (419) */3587 /** @name RmrkTraitsNftNftInfo (422) */3584 interface RmrkTraitsNftNftInfo extends Struct {3588 interface RmrkTraitsNftNftInfo extends Struct {3585 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3589 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3586 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3590 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3589 readonly pending: bool;3593 readonly pending: bool;3590 }3594 }359135953592 /** @name RmrkTraitsNftRoyaltyInfo (421) */3596 /** @name RmrkTraitsNftRoyaltyInfo (424) */3593 interface RmrkTraitsNftRoyaltyInfo extends Struct {3597 interface RmrkTraitsNftRoyaltyInfo extends Struct {3594 readonly recipient: AccountId32;3598 readonly recipient: AccountId32;3595 readonly amount: Permill;3599 readonly amount: Permill;3596 }3600 }359736013598 /** @name RmrkTraitsResourceResourceInfo (422) */3602 /** @name RmrkTraitsResourceResourceInfo (425) */3599 interface RmrkTraitsResourceResourceInfo extends Struct {3603 interface RmrkTraitsResourceResourceInfo extends Struct {3600 readonly id: u32;3604 readonly id: u32;3601 readonly resource: RmrkTraitsResourceResourceTypes;3605 readonly resource: RmrkTraitsResourceResourceTypes;3602 readonly pending: bool;3606 readonly pending: bool;3603 readonly pendingRemoval: bool;3607 readonly pendingRemoval: bool;3604 }3608 }360536093606 /** @name RmrkTraitsPropertyPropertyInfo (423) */3610 /** @name RmrkTraitsPropertyPropertyInfo (426) */3607 interface RmrkTraitsPropertyPropertyInfo extends Struct {3611 interface RmrkTraitsPropertyPropertyInfo extends Struct {3608 readonly key: Bytes;3612 readonly key: Bytes;3609 readonly value: Bytes;3613 readonly value: Bytes;3610 }3614 }361136153612 /** @name RmrkTraitsBaseBaseInfo (424) */3616 /** @name RmrkTraitsBaseBaseInfo (427) */3613 interface RmrkTraitsBaseBaseInfo extends Struct {3617 interface RmrkTraitsBaseBaseInfo extends Struct {3614 readonly issuer: AccountId32;3618 readonly issuer: AccountId32;3615 readonly baseType: Bytes;3619 readonly baseType: Bytes;3616 readonly symbol: Bytes;3620 readonly symbol: Bytes;3617 }3621 }361836223619 /** @name RmrkTraitsNftNftChild (425) */3623 /** @name RmrkTraitsNftNftChild (428) */3620 interface RmrkTraitsNftNftChild extends Struct {3624 interface RmrkTraitsNftNftChild extends Struct {3621 readonly collectionId: u32;3625 readonly collectionId: u32;3622 readonly nftId: u32;3626 readonly nftId: u32;3623 }3627 }362436283625 /** @name PalletCommonError (427) */3629 /** @name PalletCommonError (430) */3626 interface PalletCommonError extends Enum {3630 interface PalletCommonError extends Enum {3627 readonly isCollectionNotFound: boolean;3631 readonly isCollectionNotFound: boolean;3628 readonly isMustBeTokenOwner: boolean;3632 readonly isMustBeTokenOwner: boolean;3663 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';3667 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';3664 }3668 }366536693666 /** @name PalletFungibleError (429) */3670 /** @name PalletFungibleError (432) */3667 interface PalletFungibleError extends Enum {3671 interface PalletFungibleError extends Enum {3668 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3672 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3669 readonly isFungibleItemsHaveNoId: boolean;3673 readonly isFungibleItemsHaveNoId: boolean;3674 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';3678 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';3675 }3679 }367636803677 /** @name PalletRefungibleItemData (430) */3681 /** @name PalletRefungibleItemData (433) */3678 interface PalletRefungibleItemData extends Struct {3682 interface PalletRefungibleItemData extends Struct {3679 readonly constData: Bytes;3683 readonly constData: Bytes;3680 }3684 }368136853682 /** @name PalletRefungibleError (435) */3686 /** @name PalletRefungibleError (438) */3683 interface PalletRefungibleError extends Enum {3687 interface PalletRefungibleError extends Enum {3684 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3688 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3685 readonly isWrongRefungiblePieces: boolean;3689 readonly isWrongRefungiblePieces: boolean;3689 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3693 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3690 }3694 }369136953692 /** @name PalletNonfungibleItemData (436) */3696 /** @name PalletNonfungibleItemData (439) */3693 interface PalletNonfungibleItemData extends Struct {3697 interface PalletNonfungibleItemData extends Struct {3694 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3698 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3695 }3699 }369637003697 /** @name UpDataStructsPropertyScope (438) */3701 /** @name UpDataStructsPropertyScope (441) */3698 interface UpDataStructsPropertyScope extends Enum {3702 interface UpDataStructsPropertyScope extends Enum {3699 readonly isNone: boolean;3703 readonly isNone: boolean;3700 readonly isRmrk: boolean;3704 readonly isRmrk: boolean;3701 readonly type: 'None' | 'Rmrk';3705 readonly type: 'None' | 'Rmrk';3702 }3706 }370337073704 /** @name PalletNonfungibleError (440) */3708 /** @name PalletNonfungibleError (443) */3705 interface PalletNonfungibleError extends Enum {3709 interface PalletNonfungibleError extends Enum {3706 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3710 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3707 readonly isNonfungibleItemsHaveNoAmount: boolean;3711 readonly isNonfungibleItemsHaveNoAmount: boolean;3708 readonly isCantBurnNftWithChildren: boolean;3712 readonly isCantBurnNftWithChildren: boolean;3709 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3713 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3710 }3714 }371137153712 /** @name PalletStructureError (441) */3716 /** @name PalletStructureError (444) */3713 interface PalletStructureError extends Enum {3717 interface PalletStructureError extends Enum {3714 readonly isOuroborosDetected: boolean;3718 readonly isOuroborosDetected: boolean;3715 readonly isDepthLimit: boolean;3719 readonly isDepthLimit: boolean;3718 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3722 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3719 }3723 }372037243721 /** @name PalletRmrkCoreError (442) */3725 /** @name PalletRmrkCoreError (445) */3722 interface PalletRmrkCoreError extends Enum {3726 interface PalletRmrkCoreError extends Enum {3723 readonly isCorruptedCollectionType: boolean;3727 readonly isCorruptedCollectionType: boolean;3724 readonly isRmrkPropertyKeyIsTooLong: boolean;3728 readonly isRmrkPropertyKeyIsTooLong: boolean;3742 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3746 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3743 }3747 }374437483745 /** @name PalletRmrkEquipError (444) */3749 /** @name PalletRmrkEquipError (447) */3746 interface PalletRmrkEquipError extends Enum {3750 interface PalletRmrkEquipError extends Enum {3747 readonly isPermissionError: boolean;3751 readonly isPermissionError: boolean;3748 readonly isNoAvailableBaseId: boolean;3752 readonly isNoAvailableBaseId: boolean;3754 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3758 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3755 }3759 }375637603757 /** @name PalletAppPromotionError (450) */3761 /** @name PalletAppPromotionError (453) */3758 interface PalletAppPromotionError extends Enum {3762 interface PalletAppPromotionError extends Enum {3759 readonly isAdminNotSet: boolean;3763 readonly isAdminNotSet: boolean;3760 readonly isNoPermission: boolean;3764 readonly isNoPermission: boolean;3765 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3769 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3766 }3770 }376737713768 /** @name PalletForeignAssetsModuleError (451) */3772 /** @name PalletForeignAssetsModuleError (454) */3769 interface PalletForeignAssetsModuleError extends Enum {3773 interface PalletForeignAssetsModuleError extends Enum {3770 readonly isBadLocation: boolean;3774 readonly isBadLocation: boolean;3771 readonly isMultiLocationExisted: boolean;3775 readonly isMultiLocationExisted: boolean;3774 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3778 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3775 }3779 }377637803777 /** @name PalletEvmError (453) */3781 /** @name PalletEvmError (456) */3778 interface PalletEvmError extends Enum {3782 interface PalletEvmError extends Enum {3779 readonly isBalanceLow: boolean;3783 readonly isBalanceLow: boolean;3780 readonly isFeeOverflow: boolean;3784 readonly isFeeOverflow: boolean;3789 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3793 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3790 }3794 }379137953792 /** @name FpRpcTransactionStatus (456) */3796 /** @name FpRpcTransactionStatus (459) */3793 interface FpRpcTransactionStatus extends Struct {3797 interface FpRpcTransactionStatus extends Struct {3794 readonly transactionHash: H256;3798 readonly transactionHash: H256;3795 readonly transactionIndex: u32;3799 readonly transactionIndex: u32;3800 readonly logsBloom: EthbloomBloom;3804 readonly logsBloom: EthbloomBloom;3801 }3805 }380238063803 /** @name EthbloomBloom (458) */3807 /** @name EthbloomBloom (461) */3804 interface EthbloomBloom extends U8aFixed {}3808 interface EthbloomBloom extends U8aFixed {}380538093806 /** @name EthereumReceiptReceiptV3 (460) */3810 /** @name EthereumReceiptReceiptV3 (463) */3807 interface EthereumReceiptReceiptV3 extends Enum {3811 interface EthereumReceiptReceiptV3 extends Enum {3808 readonly isLegacy: boolean;3812 readonly isLegacy: boolean;3809 readonly asLegacy: EthereumReceiptEip658ReceiptData;3813 readonly asLegacy: EthereumReceiptEip658ReceiptData;3814 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3818 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3815 }3819 }381638203817 /** @name EthereumReceiptEip658ReceiptData (461) */3821 /** @name EthereumReceiptEip658ReceiptData (464) */3818 interface EthereumReceiptEip658ReceiptData extends Struct {3822 interface EthereumReceiptEip658ReceiptData extends Struct {3819 readonly statusCode: u8;3823 readonly statusCode: u8;3820 readonly usedGas: U256;3824 readonly usedGas: U256;3821 readonly logsBloom: EthbloomBloom;3825 readonly logsBloom: EthbloomBloom;3822 readonly logs: Vec<EthereumLog>;3826 readonly logs: Vec<EthereumLog>;3823 }3827 }382438283825 /** @name EthereumBlock (462) */3829 /** @name EthereumBlock (465) */3826 interface EthereumBlock extends Struct {3830 interface EthereumBlock extends Struct {3827 readonly header: EthereumHeader;3831 readonly header: EthereumHeader;3828 readonly transactions: Vec<EthereumTransactionTransactionV2>;3832 readonly transactions: Vec<EthereumTransactionTransactionV2>;3829 readonly ommers: Vec<EthereumHeader>;3833 readonly ommers: Vec<EthereumHeader>;3830 }3834 }383138353832 /** @name EthereumHeader (463) */3836 /** @name EthereumHeader (466) */3833 interface EthereumHeader extends Struct {3837 interface EthereumHeader extends Struct {3834 readonly parentHash: H256;3838 readonly parentHash: H256;3835 readonly ommersHash: H256;3839 readonly ommersHash: H256;3848 readonly nonce: EthereumTypesHashH64;3852 readonly nonce: EthereumTypesHashH64;3849 }3853 }385038543851 /** @name EthereumTypesHashH64 (464) */3855 /** @name EthereumTypesHashH64 (467) */3852 interface EthereumTypesHashH64 extends U8aFixed {}3856 interface EthereumTypesHashH64 extends U8aFixed {}385338573854 /** @name PalletEthereumError (469) */3858 /** @name PalletEthereumError (472) */3855 interface PalletEthereumError extends Enum {3859 interface PalletEthereumError extends Enum {3856 readonly isInvalidSignature: boolean;3860 readonly isInvalidSignature: boolean;3857 readonly isPreLogExists: boolean;3861 readonly isPreLogExists: boolean;3858 readonly type: 'InvalidSignature' | 'PreLogExists';3862 readonly type: 'InvalidSignature' | 'PreLogExists';3859 }3863 }386038643861 /** @name PalletEvmCoderSubstrateError (470) */3865 /** @name PalletEvmCoderSubstrateError (473) */3862 interface PalletEvmCoderSubstrateError extends Enum {3866 interface PalletEvmCoderSubstrateError extends Enum {3863 readonly isOutOfGas: boolean;3867 readonly isOutOfGas: boolean;3864 readonly isOutOfFund: boolean;3868 readonly isOutOfFund: boolean;3865 readonly type: 'OutOfGas' | 'OutOfFund';3869 readonly type: 'OutOfGas' | 'OutOfFund';3866 }3870 }386738713868 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (471) */3872 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (474) */3869 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3873 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3870 readonly isDisabled: boolean;3874 readonly isDisabled: boolean;3871 readonly isUnconfirmed: boolean;3875 readonly isUnconfirmed: boolean;3875 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3879 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3876 }3880 }387738813878 /** @name PalletEvmContractHelpersSponsoringModeT (472) */3882 /** @name PalletEvmContractHelpersSponsoringModeT (475) */3879 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3883 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3880 readonly isDisabled: boolean;3884 readonly isDisabled: boolean;3881 readonly isAllowlisted: boolean;3885 readonly isAllowlisted: boolean;3882 readonly isGenerous: boolean;3886 readonly isGenerous: boolean;3883 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3887 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3884 }3888 }388538893886 /** @name PalletEvmContractHelpersError (478) */3890 /** @name PalletEvmContractHelpersError (481) */3887 interface PalletEvmContractHelpersError extends Enum {3891 interface PalletEvmContractHelpersError extends Enum {3888 readonly isNoPermission: boolean;3892 readonly isNoPermission: boolean;3889 readonly isNoPendingSponsor: boolean;3893 readonly isNoPendingSponsor: boolean;3890 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3894 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3891 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3895 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3892 }3896 }389338973894 /** @name PalletEvmMigrationError (479) */3898 /** @name PalletEvmMigrationError (482) */3895 interface PalletEvmMigrationError extends Enum {3899 interface PalletEvmMigrationError extends Enum {3896 readonly isAccountNotEmpty: boolean;3900 readonly isAccountNotEmpty: boolean;3897 readonly isAccountIsNotMigrating: boolean;3901 readonly isAccountIsNotMigrating: boolean;3898 readonly isBadEvent: boolean;3902 readonly isBadEvent: boolean;3899 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3903 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3900 }3904 }390139053902 /** @name PalletMaintenanceError (480) */3906 /** @name PalletMaintenanceError (483) */3903 type PalletMaintenanceError = Null;3907 type PalletMaintenanceError = Null;390439083905 /** @name PalletTestUtilsError (481) */3909 /** @name PalletTestUtilsError (484) */3906 interface PalletTestUtilsError extends Enum {3910 interface PalletTestUtilsError extends Enum {3907 readonly isTestPalletDisabled: boolean;3911 readonly isTestPalletDisabled: boolean;3908 readonly isTriggerRollback: boolean;3912 readonly isTriggerRollback: boolean;3909 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3913 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3910 }3914 }391139153912 /** @name SpRuntimeMultiSignature (483) */3916 /** @name SpRuntimeMultiSignature (486) */3913 interface SpRuntimeMultiSignature extends Enum {3917 interface SpRuntimeMultiSignature extends Enum {3914 readonly isEd25519: boolean;3918 readonly isEd25519: boolean;3915 readonly asEd25519: SpCoreEd25519Signature;3919 readonly asEd25519: SpCoreEd25519Signature;3920 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3924 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3921 }3925 }392239263923 /** @name SpCoreEd25519Signature (484) */3927 /** @name SpCoreEd25519Signature (487) */3924 interface SpCoreEd25519Signature extends U8aFixed {}3928 interface SpCoreEd25519Signature extends U8aFixed {}392539293926 /** @name SpCoreSr25519Signature (486) */3930 /** @name SpCoreSr25519Signature (489) */3927 interface SpCoreSr25519Signature extends U8aFixed {}3931 interface SpCoreSr25519Signature extends U8aFixed {}392839323929 /** @name SpCoreEcdsaSignature (487) */3933 /** @name SpCoreEcdsaSignature (490) */3930 interface SpCoreEcdsaSignature extends U8aFixed {}3934 interface SpCoreEcdsaSignature extends U8aFixed {}393139353932 /** @name FrameSystemExtensionsCheckSpecVersion (490) */3936 /** @name FrameSystemExtensionsCheckSpecVersion (493) */3933 type FrameSystemExtensionsCheckSpecVersion = Null;3937 type FrameSystemExtensionsCheckSpecVersion = Null;393439383935 /** @name FrameSystemExtensionsCheckTxVersion (491) */3939 /** @name FrameSystemExtensionsCheckTxVersion (494) */3936 type FrameSystemExtensionsCheckTxVersion = Null;3940 type FrameSystemExtensionsCheckTxVersion = Null;393739413938 /** @name FrameSystemExtensionsCheckGenesis (492) */3942 /** @name FrameSystemExtensionsCheckGenesis (495) */3939 type FrameSystemExtensionsCheckGenesis = Null;3943 type FrameSystemExtensionsCheckGenesis = Null;394039443941 /** @name FrameSystemExtensionsCheckNonce (495) */3945 /** @name FrameSystemExtensionsCheckNonce (498) */3942 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}3946 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}394339473944 /** @name FrameSystemExtensionsCheckWeight (496) */3948 /** @name FrameSystemExtensionsCheckWeight (499) */3945 type FrameSystemExtensionsCheckWeight = Null;3949 type FrameSystemExtensionsCheckWeight = Null;394639503947 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (497) */3951 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (500) */3948 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;3952 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;394939533950 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (498) */3954 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (501) */3951 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}3955 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}395239563953 /** @name OpalRuntimeRuntime (499) */3957 /** @name OpalRuntimeRuntime (502) */3954 type OpalRuntimeRuntime = Null;3958 type OpalRuntimeRuntime = Null;395539593956 /** @name PalletEthereumFakeTransactionFinalizer (500) */3960 /** @name PalletEthereumFakeTransactionFinalizer (503) */3957 type PalletEthereumFakeTransactionFinalizer = Null;3961 type PalletEthereumFakeTransactionFinalizer = Null;395839623959} // declare module3963} // declare module