difftreelog
fix after rebase
in: master
9 files changed
tests/src/interfaces/augment-api-consts.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-consts.ts
+++ b/tests/src/interfaces/augment-api-consts.ts
@@ -81,6 +81,7 @@
configuration: {
defaultMinGasPrice: u64 & AugmentedConst<ApiType>;
defaultWeightToFeeCoefficient: u32 & AugmentedConst<ApiType>;
+ maxOverridedAllowedLocations: u32 & AugmentedConst<ApiType>;
/**
* Generic const
**/
tests/src/interfaces/augment-api-query.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-query.ts
+++ b/tests/src/interfaces/augment-api-query.ts
@@ -162,6 +162,7 @@
configuration: {
minGasPriceOverride: AugmentedQuery<ApiType, () => Observable<u64>, []> & QueryableStorageEntry<ApiType, []>;
weightToFeeCoefficientOverride: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
+ xcmAllowedLocationsOverride: AugmentedQuery<ApiType, () => Observable<Option<Vec<XcmV1MultiLocation>>>, []> & QueryableStorageEntry<ApiType, []>;
/**
* Generic query
**/
tests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-rpc.ts
+++ b/tests/src/interfaces/augment-api-rpc.ts
@@ -16,7 +16,7 @@
import type { BlockHash } from '@polkadot/types/interfaces/chain';
import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';
import type { AuthorityId } from '@polkadot/types/interfaces/consensus';
-import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequestV1 } from '@polkadot/types/interfaces/contracts';
+import type { CodeUploadRequest, CodeUploadResult, ContractCallRequest, ContractExecResult, ContractInstantiateResult, InstantiateRequest } from '@polkadot/types/interfaces/contracts';
import type { BlockStats } from '@polkadot/types/interfaces/dev';
import type { CreatedBlock } from '@polkadot/types/interfaces/engine';
import type { EthAccount, EthCallRequest, EthFeeHistory, EthFilter, EthFilterChanges, EthLog, EthReceipt, EthRichBlock, EthSubKind, EthSubParams, EthSyncStatus, EthTransaction, EthTransactionRequest, EthWork } from '@polkadot/types/interfaces/eth';
@@ -24,7 +24,7 @@
import type { EncodedFinalityProofs, JustificationNotification, ReportedRoundStates } from '@polkadot/types/interfaces/grandpa';
import type { MmrLeafBatchProof, MmrLeafProof } from '@polkadot/types/interfaces/mmr';
import type { StorageKind } from '@polkadot/types/interfaces/offchain';
-import type { FeeDetails, RuntimeDispatchInfoV1 } from '@polkadot/types/interfaces/payment';
+import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
import type { RpcMethods } from '@polkadot/types/interfaces/rpc';
import type { AccountId, AccountId32, BlockNumber, H160, H256, H64, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
import type { MigrationStatusResult, ReadProof, RuntimeVersion, TraceBlockResponse } from '@polkadot/types/interfaces/state';
@@ -174,7 +174,7 @@
* @deprecated Use the runtime interface `api.call.contractsApi.instantiate` instead
* Instantiate a new contract
**/
- instantiate: AugmentedRpc<(request: InstantiateRequestV1 | { origin?: any; value?: any; gasLimit?: any; code?: any; data?: any; salt?: any } | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<ContractInstantiateResult>>;
+ 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>>;
/**
* @deprecated Not available in newer versions of the contracts interfaces
* Returns the projected time a given contract will be able to sustain paying its rent
@@ -426,15 +426,13 @@
};
payment: {
/**
- * @deprecated Use `api.call.transactionPaymentApi.queryFeeDetails` instead
* Query the detailed fee of a given encoded extrinsic
**/
queryFeeDetails: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<FeeDetails>>;
/**
- * @deprecated Use `api.call.transactionPaymentApi.queryInfo` instead
* Retrieves the fee information for an encoded extrinsic
**/
- queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfoV1>>;
+ queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfo>>;
};
rmrk: {
/**
tests/src/interfaces/augment-api-runtime.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-runtime.ts
+++ b/tests/src/interfaces/augment-api-runtime.ts
@@ -6,7 +6,7 @@
import '@polkadot/api-base/types/calls';
import type { ApiTypes, AugmentedCall, DecoratedCallBase } from '@polkadot/api-base/types';
-import type { Bytes, Null, Option, Result, U256, Vec, bool, u256, u32, u64 } from '@polkadot/types-codec';
+import type { Bytes, Null, Option, Result, U256, Vec, bool, u256, u64 } from '@polkadot/types-codec';
import type { AnyNumber, ITuple } from '@polkadot/types-codec/types';
import type { CheckInherentsResult, InherentData } from '@polkadot/types/interfaces/blockbuilder';
import type { BlockHash } from '@polkadot/types/interfaces/chain';
@@ -16,7 +16,6 @@
import type { EvmAccount, EvmCallInfo, EvmCreateInfo } from '@polkadot/types/interfaces/evm';
import type { Extrinsic } from '@polkadot/types/interfaces/extrinsics';
import type { OpaqueMetadata } from '@polkadot/types/interfaces/metadata';
-import type { FeeDetails, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
import type { AccountId, Block, H160, H256, Header, Index, KeyTypeId, Permill, SlotDuration } from '@polkadot/types/interfaces/runtime';
import type { RuntimeVersion } from '@polkadot/types/interfaces/state';
import type { ApplyExtrinsicResult, DispatchError } from '@polkadot/types/interfaces/system';
@@ -224,21 +223,6 @@
* Validate the transaction.
**/
validateTransaction: AugmentedCall<ApiType, (source: TransactionSource | 'InBlock' | 'Local' | 'External' | number | Uint8Array, tx: Extrinsic | IExtrinsic | string | Uint8Array, blockHash: BlockHash | string | Uint8Array) => Observable<TransactionValidity>>;
- /**
- * Generic call
- **/
- [key: string]: DecoratedCallBase<ApiType>;
- };
- /** 0x37c8bb1350a9a2a8/2 */
- transactionPaymentApi: {
- /**
- * The transaction fee details
- **/
- queryFeeDetails: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<FeeDetails>>;
- /**
- * The transaction info
- **/
- queryInfo: AugmentedCall<ApiType, (uxt: Extrinsic | IExtrinsic | string | Uint8Array, len: u32 | AnyNumber | Uint8Array) => Observable<RuntimeDispatchInfo>>;
/**
* Generic call
**/
tests/src/interfaces/augment-api-tx.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-tx.ts
+++ b/tests/src/interfaces/augment-api-tx.ts
@@ -217,6 +217,7 @@
configuration: {
setMinGasPriceOverride: AugmentedSubmittable<(coeff: Option<u64> | null | Uint8Array | u64 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u64>]>;
setWeightToFeeCoefficientOverride: AugmentedSubmittable<(coeff: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [Option<u32>]>;
+ setXcmAllowedLocations: AugmentedSubmittable<(locations: Option<Vec<XcmV1MultiLocation>> | null | Uint8Array | Vec<XcmV1MultiLocation> | (XcmV1MultiLocation | { parents?: any; interior?: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Option<Vec<XcmV1MultiLocation>>]>;
/**
* Generic tx
**/
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -24,7 +24,7 @@
import type { StatementKind } from '@polkadot/types/interfaces/claims';
import type { CollectiveOrigin, MemberCount, ProposalIndex, Votes, VotesTo230 } from '@polkadot/types/interfaces/collective';
import type { AuthorityId, RawVRFOutput } from '@polkadot/types/interfaces/consensus';
-import 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';
+import 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';
import 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';
import type { FundIndex, FundInfo, LastContribution, TrieIndex } from '@polkadot/types/interfaces/crowdloan';
import type { CollationInfo, CollationInfoV1, ConfigData, MessageId, OverweightIndex, PageCounter, PageIndexData } from '@polkadot/types/interfaces/cumulus';
@@ -47,7 +47,7 @@
import type { StorageKind } from '@polkadot/types/interfaces/offchain';
import type { DeferredOffenceOf, Kind, OffenceDetails, Offender, OpaqueTimeSlot, ReportIdOf, Reporter } from '@polkadot/types/interfaces/offences';
import 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';
-import type { FeeDetails, InclusionFee, RuntimeDispatchInfo, RuntimeDispatchInfoV1, RuntimeDispatchInfoV2 } from '@polkadot/types/interfaces/payment';
+import type { FeeDetails, InclusionFee, RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
import type { Approvals } from '@polkadot/types/interfaces/poll';
import type { ProxyAnnouncement, ProxyDefinition, ProxyType } from '@polkadot/types/interfaces/proxy';
import type { AccountStatus, AccountValidity } from '@polkadot/types/interfaces/purchase';
@@ -273,12 +273,10 @@
ContractExecResultTo255: ContractExecResultTo255;
ContractExecResultTo260: ContractExecResultTo260;
ContractExecResultTo267: ContractExecResultTo267;
- ContractExecResultU64: ContractExecResultU64;
ContractInfo: ContractInfo;
ContractInstantiateResult: ContractInstantiateResult;
ContractInstantiateResultTo267: ContractInstantiateResultTo267;
ContractInstantiateResultTo299: ContractInstantiateResultTo299;
- ContractInstantiateResultU64: ContractInstantiateResultU64;
ContractLayoutArray: ContractLayoutArray;
ContractLayoutCell: ContractLayoutCell;
ContractLayoutEnum: ContractLayoutEnum;
@@ -1068,8 +1066,6 @@
RpcMethods: RpcMethods;
RuntimeDbWeight: RuntimeDbWeight;
RuntimeDispatchInfo: RuntimeDispatchInfo;
- RuntimeDispatchInfoV1: RuntimeDispatchInfoV1;
- RuntimeDispatchInfoV2: RuntimeDispatchInfoV2;
RuntimeVersion: RuntimeVersion;
RuntimeVersionApi: RuntimeVersionApi;
RuntimeVersionPartial: RuntimeVersionPartial;
tests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -1333,7 +1333,11 @@
readonly asSetMinGasPriceOverride: {
readonly coeff: Option<u64>;
} & Struct;
- readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';
+ readonly isSetXcmAllowedLocations: boolean;
+ readonly asSetXcmAllowedLocations: {
+ readonly locations: Option<Vec<XcmV1MultiLocation>>;
+ } & Struct;
+ readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride' | 'SetXcmAllowedLocations';
}
/** @name PalletEthereumCall */
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -2527,20 +2527,23 @@
coeff: 'Option<u32>',
},
set_min_gas_price_override: {
- coeff: 'Option<u64>'
+ coeff: 'Option<u64>',
+ },
+ set_xcm_allowed_locations: {
+ locations: 'Option<Vec<XcmV1MultiLocation>>'
}
}
},
/**
- * Lookup288: pallet_template_transaction_payment::Call<T>
+ * Lookup291: pallet_template_transaction_payment::Call<T>
**/
PalletTemplateTransactionPaymentCall: 'Null',
/**
- * Lookup289: pallet_structure::pallet::Call<T>
+ * Lookup292: pallet_structure::pallet::Call<T>
**/
PalletStructureCall: 'Null',
/**
- * Lookup290: pallet_rmrk_core::pallet::Call<T>
+ * Lookup293: pallet_rmrk_core::pallet::Call<T>
**/
PalletRmrkCoreCall: {
_enum: {
@@ -2631,7 +2634,7 @@
}
},
/**
- * Lookup296: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup299: rmrk_traits::resource::ResourceTypes<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceTypes: {
_enum: {
@@ -2641,7 +2644,7 @@
}
},
/**
- * Lookup298: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup301: rmrk_traits::resource::BasicResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceBasicResource: {
src: 'Option<Bytes>',
@@ -2650,7 +2653,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup300: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup303: rmrk_traits::resource::ComposableResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceComposableResource: {
parts: 'Vec<u32>',
@@ -2661,7 +2664,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup301: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup304: rmrk_traits::resource::SlotResource<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceSlotResource: {
base: 'u32',
@@ -2672,7 +2675,7 @@
thumb: 'Option<Bytes>'
},
/**
- * Lookup304: pallet_rmrk_equip::pallet::Call<T>
+ * Lookup307: pallet_rmrk_equip::pallet::Call<T>
**/
PalletRmrkEquipCall: {
_enum: {
@@ -2693,7 +2696,7 @@
}
},
/**
- * Lookup307: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup310: rmrk_traits::part::PartType<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartPartType: {
_enum: {
@@ -2702,7 +2705,7 @@
}
},
/**
- * Lookup309: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup312: rmrk_traits::part::FixedPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartFixedPart: {
id: 'u32',
@@ -2710,7 +2713,7 @@
src: 'Bytes'
},
/**
- * Lookup310: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup313: rmrk_traits::part::SlotPart<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartSlotPart: {
id: 'u32',
@@ -2719,7 +2722,7 @@
z: 'u32'
},
/**
- * Lookup311: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup314: rmrk_traits::part::EquippableList<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPartEquippableList: {
_enum: {
@@ -2729,7 +2732,7 @@
}
},
/**
- * 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>>
+ * 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>>
**/
RmrkTraitsTheme: {
name: 'Bytes',
@@ -2737,14 +2740,14 @@
inherit: 'bool'
},
/**
- * Lookup315: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup318: rmrk_traits::theme::ThemeProperty<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsThemeThemeProperty: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup317: pallet_app_promotion::pallet::Call<T>
+ * Lookup320: pallet_app_promotion::pallet::Call<T>
**/
PalletAppPromotionCall: {
_enum: {
@@ -2773,7 +2776,7 @@
}
},
/**
- * Lookup318: pallet_foreign_assets::module::Call<T>
+ * Lookup321: pallet_foreign_assets::module::Call<T>
**/
PalletForeignAssetsModuleCall: {
_enum: {
@@ -2790,7 +2793,7 @@
}
},
/**
- * Lookup319: pallet_evm::pallet::Call<T>
+ * Lookup322: pallet_evm::pallet::Call<T>
**/
PalletEvmCall: {
_enum: {
@@ -2833,7 +2836,7 @@
}
},
/**
- * Lookup325: pallet_ethereum::pallet::Call<T>
+ * Lookup328: pallet_ethereum::pallet::Call<T>
**/
PalletEthereumCall: {
_enum: {
@@ -2843,7 +2846,7 @@
}
},
/**
- * Lookup326: ethereum::transaction::TransactionV2
+ * Lookup329: ethereum::transaction::TransactionV2
**/
EthereumTransactionTransactionV2: {
_enum: {
@@ -2853,7 +2856,7 @@
}
},
/**
- * Lookup327: ethereum::transaction::LegacyTransaction
+ * Lookup330: ethereum::transaction::LegacyTransaction
**/
EthereumTransactionLegacyTransaction: {
nonce: 'U256',
@@ -2865,7 +2868,7 @@
signature: 'EthereumTransactionTransactionSignature'
},
/**
- * Lookup328: ethereum::transaction::TransactionAction
+ * Lookup331: ethereum::transaction::TransactionAction
**/
EthereumTransactionTransactionAction: {
_enum: {
@@ -2874,7 +2877,7 @@
}
},
/**
- * Lookup329: ethereum::transaction::TransactionSignature
+ * Lookup332: ethereum::transaction::TransactionSignature
**/
EthereumTransactionTransactionSignature: {
v: 'u64',
@@ -2882,7 +2885,7 @@
s: 'H256'
},
/**
- * Lookup331: ethereum::transaction::EIP2930Transaction
+ * Lookup334: ethereum::transaction::EIP2930Transaction
**/
EthereumTransactionEip2930Transaction: {
chainId: 'u64',
@@ -2898,14 +2901,14 @@
s: 'H256'
},
/**
- * Lookup333: ethereum::transaction::AccessListItem
+ * Lookup336: ethereum::transaction::AccessListItem
**/
EthereumTransactionAccessListItem: {
address: 'H160',
storageKeys: 'Vec<H256>'
},
/**
- * Lookup334: ethereum::transaction::EIP1559Transaction
+ * Lookup337: ethereum::transaction::EIP1559Transaction
**/
EthereumTransactionEip1559Transaction: {
chainId: 'u64',
@@ -2922,7 +2925,7 @@
s: 'H256'
},
/**
- * Lookup335: pallet_evm_migration::pallet::Call<T>
+ * Lookup338: pallet_evm_migration::pallet::Call<T>
**/
PalletEvmMigrationCall: {
_enum: {
@@ -2946,13 +2949,13 @@
}
},
/**
- * Lookup339: pallet_maintenance::pallet::Call<T>
+ * Lookup342: pallet_maintenance::pallet::Call<T>
**/
PalletMaintenanceCall: {
_enum: ['enable', 'disable']
},
/**
- * Lookup340: pallet_test_utils::pallet::Call<T>
+ * Lookup343: pallet_test_utils::pallet::Call<T>
**/
PalletTestUtilsCall: {
_enum: {
@@ -2975,32 +2978,32 @@
}
},
/**
- * Lookup342: pallet_sudo::pallet::Error<T>
+ * Lookup345: pallet_sudo::pallet::Error<T>
**/
PalletSudoError: {
_enum: ['RequireSudo']
},
/**
- * Lookup344: orml_vesting::module::Error<T>
+ * Lookup347: orml_vesting::module::Error<T>
**/
OrmlVestingModuleError: {
_enum: ['ZeroVestingPeriod', 'ZeroVestingPeriodCount', 'InsufficientBalanceToLock', 'TooManyVestingSchedules', 'AmountLow', 'MaxVestingSchedulesExceeded']
},
/**
- * Lookup345: orml_xtokens::module::Error<T>
+ * Lookup348: orml_xtokens::module::Error<T>
**/
OrmlXtokensModuleError: {
_enum: ['AssetHasNoReserve', 'NotCrossChainTransfer', 'InvalidDest', 'NotCrossChainTransferableCurrency', 'UnweighableMessage', 'XcmExecutionFailed', 'CannotReanchor', 'InvalidAncestry', 'InvalidAsset', 'DestinationNotInvertible', 'BadVersion', 'DistinctReserveForAssetAndFee', 'ZeroFee', 'ZeroAmount', 'TooManyAssetsBeingSent', 'AssetIndexNonExistent', 'FeeNotEnough', 'NotSupportedMultiLocation', 'MinXcmFeeNotDefined']
},
/**
- * Lookup348: orml_tokens::BalanceLock<Balance>
+ * Lookup351: orml_tokens::BalanceLock<Balance>
**/
OrmlTokensBalanceLock: {
id: '[u8;8]',
amount: 'u128'
},
/**
- * Lookup350: orml_tokens::AccountData<Balance>
+ * Lookup353: orml_tokens::AccountData<Balance>
**/
OrmlTokensAccountData: {
free: 'u128',
@@ -3008,20 +3011,20 @@
frozen: 'u128'
},
/**
- * Lookup352: orml_tokens::ReserveData<ReserveIdentifier, Balance>
+ * Lookup355: orml_tokens::ReserveData<ReserveIdentifier, Balance>
**/
OrmlTokensReserveData: {
id: 'Null',
amount: 'u128'
},
/**
- * Lookup354: orml_tokens::module::Error<T>
+ * Lookup357: orml_tokens::module::Error<T>
**/
OrmlTokensModuleError: {
_enum: ['BalanceTooLow', 'AmountIntoBalanceFailed', 'LiquidityRestrictions', 'MaxLocksExceeded', 'KeepAlive', 'ExistentialDeposit', 'DeadAccount', 'TooManyReserves']
},
/**
- * Lookup356: cumulus_pallet_xcmp_queue::InboundChannelDetails
+ * Lookup359: cumulus_pallet_xcmp_queue::InboundChannelDetails
**/
CumulusPalletXcmpQueueInboundChannelDetails: {
sender: 'u32',
@@ -3029,19 +3032,19 @@
messageMetadata: 'Vec<(u32,PolkadotParachainPrimitivesXcmpMessageFormat)>'
},
/**
- * Lookup357: cumulus_pallet_xcmp_queue::InboundState
+ * Lookup360: cumulus_pallet_xcmp_queue::InboundState
**/
CumulusPalletXcmpQueueInboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup360: polkadot_parachain::primitives::XcmpMessageFormat
+ * Lookup363: polkadot_parachain::primitives::XcmpMessageFormat
**/
PolkadotParachainPrimitivesXcmpMessageFormat: {
_enum: ['ConcatenatedVersionedXcm', 'ConcatenatedEncodedBlob', 'Signals']
},
/**
- * Lookup363: cumulus_pallet_xcmp_queue::OutboundChannelDetails
+ * Lookup366: cumulus_pallet_xcmp_queue::OutboundChannelDetails
**/
CumulusPalletXcmpQueueOutboundChannelDetails: {
recipient: 'u32',
@@ -3051,13 +3054,13 @@
lastIndex: 'u16'
},
/**
- * Lookup364: cumulus_pallet_xcmp_queue::OutboundState
+ * Lookup367: cumulus_pallet_xcmp_queue::OutboundState
**/
CumulusPalletXcmpQueueOutboundState: {
_enum: ['Ok', 'Suspended']
},
/**
- * Lookup366: cumulus_pallet_xcmp_queue::QueueConfigData
+ * Lookup369: cumulus_pallet_xcmp_queue::QueueConfigData
**/
CumulusPalletXcmpQueueQueueConfigData: {
suspendThreshold: 'u32',
@@ -3068,29 +3071,29 @@
xcmpMaxIndividualWeight: 'SpWeightsWeightV2Weight'
},
/**
- * Lookup368: cumulus_pallet_xcmp_queue::pallet::Error<T>
+ * Lookup371: cumulus_pallet_xcmp_queue::pallet::Error<T>
**/
CumulusPalletXcmpQueueError: {
_enum: ['FailedToSend', 'BadXcmOrigin', 'BadXcm', 'BadOverweightIndex', 'WeightOverLimit']
},
/**
- * Lookup369: pallet_xcm::pallet::Error<T>
+ * Lookup372: pallet_xcm::pallet::Error<T>
**/
PalletXcmError: {
_enum: ['Unreachable', 'SendFailure', 'Filtered', 'UnweighableMessage', 'DestinationNotInvertible', 'Empty', 'CannotReanchor', 'TooManyAssets', 'InvalidOrigin', 'BadVersion', 'BadLocation', 'NoSubscription', 'AlreadySubscribed']
},
/**
- * Lookup370: cumulus_pallet_xcm::pallet::Error<T>
+ * Lookup373: cumulus_pallet_xcm::pallet::Error<T>
**/
CumulusPalletXcmError: 'Null',
/**
- * Lookup371: cumulus_pallet_dmp_queue::ConfigData
+ * Lookup374: cumulus_pallet_dmp_queue::ConfigData
**/
CumulusPalletDmpQueueConfigData: {
maxIndividual: 'SpWeightsWeightV2Weight'
},
/**
- * Lookup372: cumulus_pallet_dmp_queue::PageIndexData
+ * Lookup375: cumulus_pallet_dmp_queue::PageIndexData
**/
CumulusPalletDmpQueuePageIndexData: {
beginUsed: 'u32',
@@ -3098,26 +3101,26 @@
overweightCount: 'u64'
},
/**
- * Lookup375: cumulus_pallet_dmp_queue::pallet::Error<T>
+ * Lookup378: cumulus_pallet_dmp_queue::pallet::Error<T>
**/
CumulusPalletDmpQueueError: {
_enum: ['Unknown', 'OverLimit']
},
/**
- * Lookup379: pallet_unique::Error<T>
+ * Lookup382: pallet_unique::Error<T>
**/
PalletUniqueError: {
_enum: ['CollectionDecimalPointLimitExceeded', 'EmptyArgument', 'RepartitionCalledOnNonRefungibleCollection']
},
/**
- * Lookup380: pallet_unique_scheduler_v2::BlockAgenda<T>
+ * Lookup383: pallet_unique_scheduler_v2::BlockAgenda<T>
**/
PalletUniqueSchedulerV2BlockAgenda: {
agenda: 'Vec<Option<PalletUniqueSchedulerV2Scheduled>>',
freePlaces: 'u32'
},
/**
- * Lookup383: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
+ * Lookup386: pallet_unique_scheduler_v2::Scheduled<Name, pallet_unique_scheduler_v2::ScheduledCall<T>, BlockNumber, opal_runtime::OriginCaller, sp_core::crypto::AccountId32>
**/
PalletUniqueSchedulerV2Scheduled: {
maybeId: 'Option<[u8;32]>',
@@ -3127,7 +3130,7 @@
origin: 'OpalRuntimeOriginCaller'
},
/**
- * Lookup384: pallet_unique_scheduler_v2::ScheduledCall<T>
+ * Lookup387: pallet_unique_scheduler_v2::ScheduledCall<T>
**/
PalletUniqueSchedulerV2ScheduledCall: {
_enum: {
@@ -3142,7 +3145,7 @@
}
},
/**
- * Lookup386: opal_runtime::OriginCaller
+ * Lookup389: opal_runtime::OriginCaller
**/
OpalRuntimeOriginCaller: {
_enum: {
@@ -3251,7 +3254,7 @@
}
},
/**
- * Lookup387: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
+ * Lookup390: frame_support::dispatch::RawOrigin<sp_core::crypto::AccountId32>
**/
FrameSupportDispatchRawOrigin: {
_enum: {
@@ -3261,7 +3264,7 @@
}
},
/**
- * Lookup388: pallet_xcm::pallet::Origin
+ * Lookup391: pallet_xcm::pallet::Origin
**/
PalletXcmOrigin: {
_enum: {
@@ -3270,7 +3273,7 @@
}
},
/**
- * Lookup389: cumulus_pallet_xcm::pallet::Origin
+ * Lookup392: cumulus_pallet_xcm::pallet::Origin
**/
CumulusPalletXcmOrigin: {
_enum: {
@@ -3279,7 +3282,7 @@
}
},
/**
- * Lookup390: pallet_ethereum::RawOrigin
+ * Lookup393: pallet_ethereum::RawOrigin
**/
PalletEthereumRawOrigin: {
_enum: {
@@ -3287,17 +3290,17 @@
}
},
/**
- * Lookup391: sp_core::Void
+ * Lookup394: sp_core::Void
**/
SpCoreVoid: 'Null',
/**
- * Lookup393: pallet_unique_scheduler_v2::pallet::Error<T>
+ * Lookup396: pallet_unique_scheduler_v2::pallet::Error<T>
**/
PalletUniqueSchedulerV2Error: {
_enum: ['FailedToSchedule', 'AgendaIsExhausted', 'ScheduledCallCorrupted', 'PreimageNotFound', 'TooBigScheduledCall', 'NotFound', 'TargetBlockNumberInPast', 'Named']
},
/**
- * Lookup394: up_data_structs::Collection<sp_core::crypto::AccountId32>
+ * Lookup397: up_data_structs::Collection<sp_core::crypto::AccountId32>
**/
UpDataStructsCollection: {
owner: 'AccountId32',
@@ -3311,7 +3314,7 @@
flags: '[u8;1]'
},
/**
- * Lookup395: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
+ * Lookup398: up_data_structs::SponsorshipState<sp_core::crypto::AccountId32>
**/
UpDataStructsSponsorshipStateAccountId32: {
_enum: {
@@ -3321,7 +3324,7 @@
}
},
/**
- * Lookup397: up_data_structs::Properties
+ * Lookup400: up_data_structs::Properties
**/
UpDataStructsProperties: {
map: 'UpDataStructsPropertiesMapBoundedVec',
@@ -3329,15 +3332,15 @@
spaceLimit: 'u32'
},
/**
- * Lookup398: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup401: up_data_structs::PropertiesMap<sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
UpDataStructsPropertiesMapBoundedVec: 'BTreeMap<Bytes, Bytes>',
/**
- * Lookup403: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
+ * Lookup406: up_data_structs::PropertiesMap<up_data_structs::PropertyPermission>
**/
UpDataStructsPropertiesMapPropertyPermission: 'BTreeMap<Bytes, UpDataStructsPropertyPermission>',
/**
- * Lookup410: up_data_structs::CollectionStats
+ * Lookup413: up_data_structs::CollectionStats
**/
UpDataStructsCollectionStats: {
created: 'u32',
@@ -3345,18 +3348,18 @@
alive: 'u32'
},
/**
- * Lookup411: up_data_structs::TokenChild
+ * Lookup414: up_data_structs::TokenChild
**/
UpDataStructsTokenChild: {
token: 'u32',
collection: 'u32'
},
/**
- * Lookup412: PhantomType::up_data_structs<T>
+ * Lookup415: PhantomType::up_data_structs<T>
**/
PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
/**
- * Lookup414: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup417: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsTokenData: {
properties: 'Vec<UpDataStructsProperty>',
@@ -3364,7 +3367,7 @@
pieces: 'u128'
},
/**
- * Lookup416: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
+ * Lookup419: up_data_structs::RpcCollection<sp_core::crypto::AccountId32>
**/
UpDataStructsRpcCollection: {
owner: 'AccountId32',
@@ -3381,14 +3384,14 @@
flags: 'UpDataStructsRpcCollectionFlags'
},
/**
- * Lookup417: up_data_structs::RpcCollectionFlags
+ * Lookup420: up_data_structs::RpcCollectionFlags
**/
UpDataStructsRpcCollectionFlags: {
foreign: 'bool',
erc721metadata: 'bool'
},
/**
- * 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>
+ * 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>
**/
RmrkTraitsCollectionCollectionInfo: {
issuer: 'AccountId32',
@@ -3398,7 +3401,7 @@
nftsCount: 'u32'
},
/**
- * Lookup419: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup422: rmrk_traits::nft::NftInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsNftNftInfo: {
owner: 'RmrkTraitsNftAccountIdOrCollectionNftTuple',
@@ -3408,14 +3411,14 @@
pending: 'bool'
},
/**
- * Lookup421: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
+ * Lookup424: rmrk_traits::nft::RoyaltyInfo<sp_core::crypto::AccountId32, sp_arithmetic::per_things::Permill>
**/
RmrkTraitsNftRoyaltyInfo: {
recipient: 'AccountId32',
amount: 'Permill'
},
/**
- * Lookup422: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup425: rmrk_traits::resource::ResourceInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsResourceResourceInfo: {
id: 'u32',
@@ -3424,14 +3427,14 @@
pendingRemoval: 'bool'
},
/**
- * Lookup423: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup426: rmrk_traits::property::PropertyInfo<sp_core::bounded::bounded_vec::BoundedVec<T, S>, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsPropertyPropertyInfo: {
key: 'Bytes',
value: 'Bytes'
},
/**
- * Lookup424: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
+ * Lookup427: rmrk_traits::base::BaseInfo<sp_core::crypto::AccountId32, sp_core::bounded::bounded_vec::BoundedVec<T, S>>
**/
RmrkTraitsBaseBaseInfo: {
issuer: 'AccountId32',
@@ -3439,92 +3442,92 @@
symbol: 'Bytes'
},
/**
- * Lookup425: rmrk_traits::nft::NftChild
+ * Lookup428: rmrk_traits::nft::NftChild
**/
RmrkTraitsNftNftChild: {
collectionId: 'u32',
nftId: 'u32'
},
/**
- * Lookup427: pallet_common::pallet::Error<T>
+ * Lookup430: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
_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']
},
/**
- * Lookup429: pallet_fungible::pallet::Error<T>
+ * Lookup432: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed']
},
/**
- * Lookup430: pallet_refungible::ItemData
+ * Lookup433: pallet_refungible::ItemData
**/
PalletRefungibleItemData: {
constData: 'Bytes'
},
/**
- * Lookup435: pallet_refungible::pallet::Error<T>
+ * Lookup438: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup436: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup439: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup438: up_data_structs::PropertyScope
+ * Lookup441: up_data_structs::PropertyScope
**/
UpDataStructsPropertyScope: {
_enum: ['None', 'Rmrk']
},
/**
- * Lookup440: pallet_nonfungible::pallet::Error<T>
+ * Lookup443: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup441: pallet_structure::pallet::Error<T>
+ * Lookup444: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
},
/**
- * Lookup442: pallet_rmrk_core::pallet::Error<T>
+ * Lookup445: pallet_rmrk_core::pallet::Error<T>
**/
PalletRmrkCoreError: {
_enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
},
/**
- * Lookup444: pallet_rmrk_equip::pallet::Error<T>
+ * Lookup447: pallet_rmrk_equip::pallet::Error<T>
**/
PalletRmrkEquipError: {
_enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
},
/**
- * Lookup450: pallet_app_promotion::pallet::Error<T>
+ * Lookup453: pallet_app_promotion::pallet::Error<T>
**/
PalletAppPromotionError: {
_enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
},
/**
- * Lookup451: pallet_foreign_assets::module::Error<T>
+ * Lookup454: pallet_foreign_assets::module::Error<T>
**/
PalletForeignAssetsModuleError: {
_enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
},
/**
- * Lookup453: pallet_evm::pallet::Error<T>
+ * Lookup456: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy']
},
/**
- * Lookup456: fp_rpc::TransactionStatus
+ * Lookup459: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -3536,11 +3539,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup458: ethbloom::Bloom
+ * Lookup461: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup460: ethereum::receipt::ReceiptV3
+ * Lookup463: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -3550,7 +3553,7 @@
}
},
/**
- * Lookup461: ethereum::receipt::EIP658ReceiptData
+ * Lookup464: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -3559,7 +3562,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup462: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup465: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -3567,7 +3570,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup463: ethereum::header::Header
+ * Lookup466: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -3587,23 +3590,23 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup464: ethereum_types::hash::H64
+ * Lookup467: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup469: pallet_ethereum::pallet::Error<T>
+ * Lookup472: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup470: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup473: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup471: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup474: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
_enum: {
@@ -3613,35 +3616,35 @@
}
},
/**
- * Lookup472: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup475: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup478: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup481: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
},
/**
- * Lookup479: pallet_evm_migration::pallet::Error<T>
+ * Lookup482: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
},
/**
- * Lookup480: pallet_maintenance::pallet::Error<T>
+ * Lookup483: pallet_maintenance::pallet::Error<T>
**/
PalletMaintenanceError: 'Null',
/**
- * Lookup481: pallet_test_utils::pallet::Error<T>
+ * Lookup484: pallet_test_utils::pallet::Error<T>
**/
PalletTestUtilsError: {
_enum: ['TestPalletDisabled', 'TriggerRollback']
},
/**
- * Lookup483: sp_runtime::MultiSignature
+ * Lookup486: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -3651,51 +3654,51 @@
}
},
/**
- * Lookup484: sp_core::ed25519::Signature
+ * Lookup487: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup486: sp_core::sr25519::Signature
+ * Lookup489: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup487: sp_core::ecdsa::Signature
+ * Lookup490: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup490: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup493: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup491: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+ * Lookup494: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: 'Null',
/**
- * Lookup492: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup495: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup495: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup498: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup496: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup499: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup497: opal_runtime::runtime_common::maintenance::CheckMaintenance
+ * Lookup500: opal_runtime::runtime_common::maintenance::CheckMaintenance
**/
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
/**
- * Lookup498: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup501: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup499: opal_runtime::Runtime
+ * Lookup502: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup500: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup503: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
**/
PalletEthereumFakeTransactionFinalizer: 'Null'
};
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth1// Auto-generated via `yarn polkadot-types-from-defs`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/types/lookup';78import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, Text, U256, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';9import type { ITuple } from '@polkadot/types-codec/types';10import type { AccountId32, Call, H160, H256, MultiAddress, Perbill, Permill } from '@polkadot/types/interfaces/runtime';11import type { Event } from '@polkadot/types/interfaces/system';1213declare module '@polkadot/types/lookup' {14 /** @name FrameSystemAccountInfo (3) */15 interface FrameSystemAccountInfo extends Struct {16 readonly nonce: u32;17 readonly consumers: u32;18 readonly providers: u32;19 readonly sufficients: u32;20 readonly data: PalletBalancesAccountData;21 }2223 /** @name PalletBalancesAccountData (5) */24 interface PalletBalancesAccountData extends Struct {25 readonly free: u128;26 readonly reserved: u128;27 readonly miscFrozen: u128;28 readonly feeFrozen: u128;29 }3031 /** @name FrameSupportDispatchPerDispatchClassWeight (7) */32 interface FrameSupportDispatchPerDispatchClassWeight extends Struct {33 readonly normal: SpWeightsWeightV2Weight;34 readonly operational: SpWeightsWeightV2Weight;35 readonly mandatory: SpWeightsWeightV2Weight;36 }3738 /** @name SpWeightsWeightV2Weight (8) */39 interface SpWeightsWeightV2Weight extends Struct {40 readonly refTime: Compact<u64>;41 readonly proofSize: Compact<u64>;42 }4344 /** @name SpRuntimeDigest (13) */45 interface SpRuntimeDigest extends Struct {46 readonly logs: Vec<SpRuntimeDigestDigestItem>;47 }4849 /** @name SpRuntimeDigestDigestItem (15) */50 interface SpRuntimeDigestDigestItem extends Enum {51 readonly isOther: boolean;52 readonly asOther: Bytes;53 readonly isConsensus: boolean;54 readonly asConsensus: ITuple<[U8aFixed, Bytes]>;55 readonly isSeal: boolean;56 readonly asSeal: ITuple<[U8aFixed, Bytes]>;57 readonly isPreRuntime: boolean;58 readonly asPreRuntime: ITuple<[U8aFixed, Bytes]>;59 readonly isRuntimeEnvironmentUpdated: boolean;60 readonly type: 'Other' | 'Consensus' | 'Seal' | 'PreRuntime' | 'RuntimeEnvironmentUpdated';61 }6263 /** @name FrameSystemEventRecord (18) */64 interface FrameSystemEventRecord extends Struct {65 readonly phase: FrameSystemPhase;66 readonly event: Event;67 readonly topics: Vec<H256>;68 }6970 /** @name FrameSystemEvent (20) */71 interface FrameSystemEvent extends Enum {72 readonly isExtrinsicSuccess: boolean;73 readonly asExtrinsicSuccess: {74 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;75 } & Struct;76 readonly isExtrinsicFailed: boolean;77 readonly asExtrinsicFailed: {78 readonly dispatchError: SpRuntimeDispatchError;79 readonly dispatchInfo: FrameSupportDispatchDispatchInfo;80 } & Struct;81 readonly isCodeUpdated: boolean;82 readonly isNewAccount: boolean;83 readonly asNewAccount: {84 readonly account: AccountId32;85 } & Struct;86 readonly isKilledAccount: boolean;87 readonly asKilledAccount: {88 readonly account: AccountId32;89 } & Struct;90 readonly isRemarked: boolean;91 readonly asRemarked: {92 readonly sender: AccountId32;93 readonly hash_: H256;94 } & Struct;95 readonly type: 'ExtrinsicSuccess' | 'ExtrinsicFailed' | 'CodeUpdated' | 'NewAccount' | 'KilledAccount' | 'Remarked';96 }9798 /** @name FrameSupportDispatchDispatchInfo (21) */99 interface FrameSupportDispatchDispatchInfo extends Struct {100 readonly weight: SpWeightsWeightV2Weight;101 readonly class: FrameSupportDispatchDispatchClass;102 readonly paysFee: FrameSupportDispatchPays;103 }104105 /** @name FrameSupportDispatchDispatchClass (22) */106 interface FrameSupportDispatchDispatchClass extends Enum {107 readonly isNormal: boolean;108 readonly isOperational: boolean;109 readonly isMandatory: boolean;110 readonly type: 'Normal' | 'Operational' | 'Mandatory';111 }112113 /** @name FrameSupportDispatchPays (23) */114 interface FrameSupportDispatchPays extends Enum {115 readonly isYes: boolean;116 readonly isNo: boolean;117 readonly type: 'Yes' | 'No';118 }119120 /** @name SpRuntimeDispatchError (24) */121 interface SpRuntimeDispatchError extends Enum {122 readonly isOther: boolean;123 readonly isCannotLookup: boolean;124 readonly isBadOrigin: boolean;125 readonly isModule: boolean;126 readonly asModule: SpRuntimeModuleError;127 readonly isConsumerRemaining: boolean;128 readonly isNoProviders: boolean;129 readonly isTooManyConsumers: boolean;130 readonly isToken: boolean;131 readonly asToken: SpRuntimeTokenError;132 readonly isArithmetic: boolean;133 readonly asArithmetic: SpRuntimeArithmeticError;134 readonly isTransactional: boolean;135 readonly asTransactional: SpRuntimeTransactionalError;136 readonly isExhausted: boolean;137 readonly isCorruption: boolean;138 readonly isUnavailable: boolean;139 readonly type: 'Other' | 'CannotLookup' | 'BadOrigin' | 'Module' | 'ConsumerRemaining' | 'NoProviders' | 'TooManyConsumers' | 'Token' | 'Arithmetic' | 'Transactional' | 'Exhausted' | 'Corruption' | 'Unavailable';140 }141142 /** @name SpRuntimeModuleError (25) */143 interface SpRuntimeModuleError extends Struct {144 readonly index: u8;145 readonly error: U8aFixed;146 }147148 /** @name SpRuntimeTokenError (26) */149 interface SpRuntimeTokenError extends Enum {150 readonly isNoFunds: boolean;151 readonly isWouldDie: boolean;152 readonly isBelowMinimum: boolean;153 readonly isCannotCreate: boolean;154 readonly isUnknownAsset: boolean;155 readonly isFrozen: boolean;156 readonly isUnsupported: boolean;157 readonly type: 'NoFunds' | 'WouldDie' | 'BelowMinimum' | 'CannotCreate' | 'UnknownAsset' | 'Frozen' | 'Unsupported';158 }159160 /** @name SpRuntimeArithmeticError (27) */161 interface SpRuntimeArithmeticError extends Enum {162 readonly isUnderflow: boolean;163 readonly isOverflow: boolean;164 readonly isDivisionByZero: boolean;165 readonly type: 'Underflow' | 'Overflow' | 'DivisionByZero';166 }167168 /** @name SpRuntimeTransactionalError (28) */169 interface SpRuntimeTransactionalError extends Enum {170 readonly isLimitReached: boolean;171 readonly isNoLayer: boolean;172 readonly type: 'LimitReached' | 'NoLayer';173 }174175 /** @name CumulusPalletParachainSystemEvent (29) */176 interface CumulusPalletParachainSystemEvent extends Enum {177 readonly isValidationFunctionStored: boolean;178 readonly isValidationFunctionApplied: boolean;179 readonly asValidationFunctionApplied: {180 readonly relayChainBlockNum: u32;181 } & Struct;182 readonly isValidationFunctionDiscarded: boolean;183 readonly isUpgradeAuthorized: boolean;184 readonly asUpgradeAuthorized: {185 readonly codeHash: H256;186 } & Struct;187 readonly isDownwardMessagesReceived: boolean;188 readonly asDownwardMessagesReceived: {189 readonly count: u32;190 } & Struct;191 readonly isDownwardMessagesProcessed: boolean;192 readonly asDownwardMessagesProcessed: {193 readonly weightUsed: SpWeightsWeightV2Weight;194 readonly dmqHead: H256;195 } & Struct;196 readonly type: 'ValidationFunctionStored' | 'ValidationFunctionApplied' | 'ValidationFunctionDiscarded' | 'UpgradeAuthorized' | 'DownwardMessagesReceived' | 'DownwardMessagesProcessed';197 }198199 /** @name PalletBalancesEvent (30) */200 interface PalletBalancesEvent extends Enum {201 readonly isEndowed: boolean;202 readonly asEndowed: {203 readonly account: AccountId32;204 readonly freeBalance: u128;205 } & Struct;206 readonly isDustLost: boolean;207 readonly asDustLost: {208 readonly account: AccountId32;209 readonly amount: u128;210 } & Struct;211 readonly isTransfer: boolean;212 readonly asTransfer: {213 readonly from: AccountId32;214 readonly to: AccountId32;215 readonly amount: u128;216 } & Struct;217 readonly isBalanceSet: boolean;218 readonly asBalanceSet: {219 readonly who: AccountId32;220 readonly free: u128;221 readonly reserved: u128;222 } & Struct;223 readonly isReserved: boolean;224 readonly asReserved: {225 readonly who: AccountId32;226 readonly amount: u128;227 } & Struct;228 readonly isUnreserved: boolean;229 readonly asUnreserved: {230 readonly who: AccountId32;231 readonly amount: u128;232 } & Struct;233 readonly isReserveRepatriated: boolean;234 readonly asReserveRepatriated: {235 readonly from: AccountId32;236 readonly to: AccountId32;237 readonly amount: u128;238 readonly destinationStatus: FrameSupportTokensMiscBalanceStatus;239 } & Struct;240 readonly isDeposit: boolean;241 readonly asDeposit: {242 readonly who: AccountId32;243 readonly amount: u128;244 } & Struct;245 readonly isWithdraw: boolean;246 readonly asWithdraw: {247 readonly who: AccountId32;248 readonly amount: u128;249 } & Struct;250 readonly isSlashed: boolean;251 readonly asSlashed: {252 readonly who: AccountId32;253 readonly amount: u128;254 } & Struct;255 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'BalanceSet' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'Deposit' | 'Withdraw' | 'Slashed';256 }257258 /** @name FrameSupportTokensMiscBalanceStatus (31) */259 interface FrameSupportTokensMiscBalanceStatus extends Enum {260 readonly isFree: boolean;261 readonly isReserved: boolean;262 readonly type: 'Free' | 'Reserved';263 }264265 /** @name PalletTransactionPaymentEvent (32) */266 interface PalletTransactionPaymentEvent extends Enum {267 readonly isTransactionFeePaid: boolean;268 readonly asTransactionFeePaid: {269 readonly who: AccountId32;270 readonly actualFee: u128;271 readonly tip: u128;272 } & Struct;273 readonly type: 'TransactionFeePaid';274 }275276 /** @name PalletTreasuryEvent (33) */277 interface PalletTreasuryEvent extends Enum {278 readonly isProposed: boolean;279 readonly asProposed: {280 readonly proposalIndex: u32;281 } & Struct;282 readonly isSpending: boolean;283 readonly asSpending: {284 readonly budgetRemaining: u128;285 } & Struct;286 readonly isAwarded: boolean;287 readonly asAwarded: {288 readonly proposalIndex: u32;289 readonly award: u128;290 readonly account: AccountId32;291 } & Struct;292 readonly isRejected: boolean;293 readonly asRejected: {294 readonly proposalIndex: u32;295 readonly slashed: u128;296 } & Struct;297 readonly isBurnt: boolean;298 readonly asBurnt: {299 readonly burntFunds: u128;300 } & Struct;301 readonly isRollover: boolean;302 readonly asRollover: {303 readonly rolloverBalance: u128;304 } & Struct;305 readonly isDeposit: boolean;306 readonly asDeposit: {307 readonly value: u128;308 } & Struct;309 readonly isSpendApproved: boolean;310 readonly asSpendApproved: {311 readonly proposalIndex: u32;312 readonly amount: u128;313 readonly beneficiary: AccountId32;314 } & Struct;315 readonly type: 'Proposed' | 'Spending' | 'Awarded' | 'Rejected' | 'Burnt' | 'Rollover' | 'Deposit' | 'SpendApproved';316 }317318 /** @name PalletSudoEvent (34) */319 interface PalletSudoEvent extends Enum {320 readonly isSudid: boolean;321 readonly asSudid: {322 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;323 } & Struct;324 readonly isKeyChanged: boolean;325 readonly asKeyChanged: {326 readonly oldSudoer: Option<AccountId32>;327 } & Struct;328 readonly isSudoAsDone: boolean;329 readonly asSudoAsDone: {330 readonly sudoResult: Result<Null, SpRuntimeDispatchError>;331 } & Struct;332 readonly type: 'Sudid' | 'KeyChanged' | 'SudoAsDone';333 }334335 /** @name OrmlVestingModuleEvent (38) */336 interface OrmlVestingModuleEvent extends Enum {337 readonly isVestingScheduleAdded: boolean;338 readonly asVestingScheduleAdded: {339 readonly from: AccountId32;340 readonly to: AccountId32;341 readonly vestingSchedule: OrmlVestingVestingSchedule;342 } & Struct;343 readonly isClaimed: boolean;344 readonly asClaimed: {345 readonly who: AccountId32;346 readonly amount: u128;347 } & Struct;348 readonly isVestingSchedulesUpdated: boolean;349 readonly asVestingSchedulesUpdated: {350 readonly who: AccountId32;351 } & Struct;352 readonly type: 'VestingScheduleAdded' | 'Claimed' | 'VestingSchedulesUpdated';353 }354355 /** @name OrmlVestingVestingSchedule (39) */356 interface OrmlVestingVestingSchedule extends Struct {357 readonly start: u32;358 readonly period: u32;359 readonly periodCount: u32;360 readonly perPeriod: Compact<u128>;361 }362363 /** @name OrmlXtokensModuleEvent (41) */364 interface OrmlXtokensModuleEvent extends Enum {365 readonly isTransferredMultiAssets: boolean;366 readonly asTransferredMultiAssets: {367 readonly sender: AccountId32;368 readonly assets: XcmV1MultiassetMultiAssets;369 readonly fee: XcmV1MultiAsset;370 readonly dest: XcmV1MultiLocation;371 } & Struct;372 readonly type: 'TransferredMultiAssets';373 }374375 /** @name XcmV1MultiassetMultiAssets (42) */376 interface XcmV1MultiassetMultiAssets extends Vec<XcmV1MultiAsset> {}377378 /** @name XcmV1MultiAsset (44) */379 interface XcmV1MultiAsset extends Struct {380 readonly id: XcmV1MultiassetAssetId;381 readonly fun: XcmV1MultiassetFungibility;382 }383384 /** @name XcmV1MultiassetAssetId (45) */385 interface XcmV1MultiassetAssetId extends Enum {386 readonly isConcrete: boolean;387 readonly asConcrete: XcmV1MultiLocation;388 readonly isAbstract: boolean;389 readonly asAbstract: Bytes;390 readonly type: 'Concrete' | 'Abstract';391 }392393 /** @name XcmV1MultiLocation (46) */394 interface XcmV1MultiLocation extends Struct {395 readonly parents: u8;396 readonly interior: XcmV1MultilocationJunctions;397 }398399 /** @name XcmV1MultilocationJunctions (47) */400 interface XcmV1MultilocationJunctions extends Enum {401 readonly isHere: boolean;402 readonly isX1: boolean;403 readonly asX1: XcmV1Junction;404 readonly isX2: boolean;405 readonly asX2: ITuple<[XcmV1Junction, XcmV1Junction]>;406 readonly isX3: boolean;407 readonly asX3: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction]>;408 readonly isX4: boolean;409 readonly asX4: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;410 readonly isX5: boolean;411 readonly asX5: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;412 readonly isX6: boolean;413 readonly asX6: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;414 readonly isX7: boolean;415 readonly asX7: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;416 readonly isX8: boolean;417 readonly asX8: ITuple<[XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction, XcmV1Junction]>;418 readonly type: 'Here' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';419 }420421 /** @name XcmV1Junction (48) */422 interface XcmV1Junction extends Enum {423 readonly isParachain: boolean;424 readonly asParachain: Compact<u32>;425 readonly isAccountId32: boolean;426 readonly asAccountId32: {427 readonly network: XcmV0JunctionNetworkId;428 readonly id: U8aFixed;429 } & Struct;430 readonly isAccountIndex64: boolean;431 readonly asAccountIndex64: {432 readonly network: XcmV0JunctionNetworkId;433 readonly index: Compact<u64>;434 } & Struct;435 readonly isAccountKey20: boolean;436 readonly asAccountKey20: {437 readonly network: XcmV0JunctionNetworkId;438 readonly key: U8aFixed;439 } & Struct;440 readonly isPalletInstance: boolean;441 readonly asPalletInstance: u8;442 readonly isGeneralIndex: boolean;443 readonly asGeneralIndex: Compact<u128>;444 readonly isGeneralKey: boolean;445 readonly asGeneralKey: Bytes;446 readonly isOnlyChild: boolean;447 readonly isPlurality: boolean;448 readonly asPlurality: {449 readonly id: XcmV0JunctionBodyId;450 readonly part: XcmV0JunctionBodyPart;451 } & Struct;452 readonly type: 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';453 }454455 /** @name XcmV0JunctionNetworkId (50) */456 interface XcmV0JunctionNetworkId extends Enum {457 readonly isAny: boolean;458 readonly isNamed: boolean;459 readonly asNamed: Bytes;460 readonly isPolkadot: boolean;461 readonly isKusama: boolean;462 readonly type: 'Any' | 'Named' | 'Polkadot' | 'Kusama';463 }464465 /** @name XcmV0JunctionBodyId (53) */466 interface XcmV0JunctionBodyId extends Enum {467 readonly isUnit: boolean;468 readonly isNamed: boolean;469 readonly asNamed: Bytes;470 readonly isIndex: boolean;471 readonly asIndex: Compact<u32>;472 readonly isExecutive: boolean;473 readonly isTechnical: boolean;474 readonly isLegislative: boolean;475 readonly isJudicial: boolean;476 readonly type: 'Unit' | 'Named' | 'Index' | 'Executive' | 'Technical' | 'Legislative' | 'Judicial';477 }478479 /** @name XcmV0JunctionBodyPart (54) */480 interface XcmV0JunctionBodyPart extends Enum {481 readonly isVoice: boolean;482 readonly isMembers: boolean;483 readonly asMembers: {484 readonly count: Compact<u32>;485 } & Struct;486 readonly isFraction: boolean;487 readonly asFraction: {488 readonly nom: Compact<u32>;489 readonly denom: Compact<u32>;490 } & Struct;491 readonly isAtLeastProportion: boolean;492 readonly asAtLeastProportion: {493 readonly nom: Compact<u32>;494 readonly denom: Compact<u32>;495 } & Struct;496 readonly isMoreThanProportion: boolean;497 readonly asMoreThanProportion: {498 readonly nom: Compact<u32>;499 readonly denom: Compact<u32>;500 } & Struct;501 readonly type: 'Voice' | 'Members' | 'Fraction' | 'AtLeastProportion' | 'MoreThanProportion';502 }503504 /** @name XcmV1MultiassetFungibility (55) */505 interface XcmV1MultiassetFungibility extends Enum {506 readonly isFungible: boolean;507 readonly asFungible: Compact<u128>;508 readonly isNonFungible: boolean;509 readonly asNonFungible: XcmV1MultiassetAssetInstance;510 readonly type: 'Fungible' | 'NonFungible';511 }512513 /** @name XcmV1MultiassetAssetInstance (56) */514 interface XcmV1MultiassetAssetInstance extends Enum {515 readonly isUndefined: boolean;516 readonly isIndex: boolean;517 readonly asIndex: Compact<u128>;518 readonly isArray4: boolean;519 readonly asArray4: U8aFixed;520 readonly isArray8: boolean;521 readonly asArray8: U8aFixed;522 readonly isArray16: boolean;523 readonly asArray16: U8aFixed;524 readonly isArray32: boolean;525 readonly asArray32: U8aFixed;526 readonly isBlob: boolean;527 readonly asBlob: Bytes;528 readonly type: 'Undefined' | 'Index' | 'Array4' | 'Array8' | 'Array16' | 'Array32' | 'Blob';529 }530531 /** @name OrmlTokensModuleEvent (59) */532 interface OrmlTokensModuleEvent extends Enum {533 readonly isEndowed: boolean;534 readonly asEndowed: {535 readonly currencyId: PalletForeignAssetsAssetIds;536 readonly who: AccountId32;537 readonly amount: u128;538 } & Struct;539 readonly isDustLost: boolean;540 readonly asDustLost: {541 readonly currencyId: PalletForeignAssetsAssetIds;542 readonly who: AccountId32;543 readonly amount: u128;544 } & Struct;545 readonly isTransfer: boolean;546 readonly asTransfer: {547 readonly currencyId: PalletForeignAssetsAssetIds;548 readonly from: AccountId32;549 readonly to: AccountId32;550 readonly amount: u128;551 } & Struct;552 readonly isReserved: boolean;553 readonly asReserved: {554 readonly currencyId: PalletForeignAssetsAssetIds;555 readonly who: AccountId32;556 readonly amount: u128;557 } & Struct;558 readonly isUnreserved: boolean;559 readonly asUnreserved: {560 readonly currencyId: PalletForeignAssetsAssetIds;561 readonly who: AccountId32;562 readonly amount: u128;563 } & Struct;564 readonly isReserveRepatriated: boolean;565 readonly asReserveRepatriated: {566 readonly currencyId: PalletForeignAssetsAssetIds;567 readonly from: AccountId32;568 readonly to: AccountId32;569 readonly amount: u128;570 readonly status: FrameSupportTokensMiscBalanceStatus;571 } & Struct;572 readonly isBalanceSet: boolean;573 readonly asBalanceSet: {574 readonly currencyId: PalletForeignAssetsAssetIds;575 readonly who: AccountId32;576 readonly free: u128;577 readonly reserved: u128;578 } & Struct;579 readonly isTotalIssuanceSet: boolean;580 readonly asTotalIssuanceSet: {581 readonly currencyId: PalletForeignAssetsAssetIds;582 readonly amount: u128;583 } & Struct;584 readonly isWithdrawn: boolean;585 readonly asWithdrawn: {586 readonly currencyId: PalletForeignAssetsAssetIds;587 readonly who: AccountId32;588 readonly amount: u128;589 } & Struct;590 readonly isSlashed: boolean;591 readonly asSlashed: {592 readonly currencyId: PalletForeignAssetsAssetIds;593 readonly who: AccountId32;594 readonly freeAmount: u128;595 readonly reservedAmount: u128;596 } & Struct;597 readonly isDeposited: boolean;598 readonly asDeposited: {599 readonly currencyId: PalletForeignAssetsAssetIds;600 readonly who: AccountId32;601 readonly amount: u128;602 } & Struct;603 readonly isLockSet: boolean;604 readonly asLockSet: {605 readonly lockId: U8aFixed;606 readonly currencyId: PalletForeignAssetsAssetIds;607 readonly who: AccountId32;608 readonly amount: u128;609 } & Struct;610 readonly isLockRemoved: boolean;611 readonly asLockRemoved: {612 readonly lockId: U8aFixed;613 readonly currencyId: PalletForeignAssetsAssetIds;614 readonly who: AccountId32;615 } & Struct;616 readonly type: 'Endowed' | 'DustLost' | 'Transfer' | 'Reserved' | 'Unreserved' | 'ReserveRepatriated' | 'BalanceSet' | 'TotalIssuanceSet' | 'Withdrawn' | 'Slashed' | 'Deposited' | 'LockSet' | 'LockRemoved';617 }618619 /** @name PalletForeignAssetsAssetIds (60) */620 interface PalletForeignAssetsAssetIds extends Enum {621 readonly isForeignAssetId: boolean;622 readonly asForeignAssetId: u32;623 readonly isNativeAssetId: boolean;624 readonly asNativeAssetId: PalletForeignAssetsNativeCurrency;625 readonly type: 'ForeignAssetId' | 'NativeAssetId';626 }627628 /** @name PalletForeignAssetsNativeCurrency (61) */629 interface PalletForeignAssetsNativeCurrency extends Enum {630 readonly isHere: boolean;631 readonly isParent: boolean;632 readonly type: 'Here' | 'Parent';633 }634635 /** @name CumulusPalletXcmpQueueEvent (62) */636 interface CumulusPalletXcmpQueueEvent extends Enum {637 readonly isSuccess: boolean;638 readonly asSuccess: {639 readonly messageHash: Option<H256>;640 readonly weight: SpWeightsWeightV2Weight;641 } & Struct;642 readonly isFail: boolean;643 readonly asFail: {644 readonly messageHash: Option<H256>;645 readonly error: XcmV2TraitsError;646 readonly weight: SpWeightsWeightV2Weight;647 } & Struct;648 readonly isBadVersion: boolean;649 readonly asBadVersion: {650 readonly messageHash: Option<H256>;651 } & Struct;652 readonly isBadFormat: boolean;653 readonly asBadFormat: {654 readonly messageHash: Option<H256>;655 } & Struct;656 readonly isUpwardMessageSent: boolean;657 readonly asUpwardMessageSent: {658 readonly messageHash: Option<H256>;659 } & Struct;660 readonly isXcmpMessageSent: boolean;661 readonly asXcmpMessageSent: {662 readonly messageHash: Option<H256>;663 } & Struct;664 readonly isOverweightEnqueued: boolean;665 readonly asOverweightEnqueued: {666 readonly sender: u32;667 readonly sentAt: u32;668 readonly index: u64;669 readonly required: SpWeightsWeightV2Weight;670 } & Struct;671 readonly isOverweightServiced: boolean;672 readonly asOverweightServiced: {673 readonly index: u64;674 readonly used: SpWeightsWeightV2Weight;675 } & Struct;676 readonly type: 'Success' | 'Fail' | 'BadVersion' | 'BadFormat' | 'UpwardMessageSent' | 'XcmpMessageSent' | 'OverweightEnqueued' | 'OverweightServiced';677 }678679 /** @name XcmV2TraitsError (64) */680 interface XcmV2TraitsError extends Enum {681 readonly isOverflow: boolean;682 readonly isUnimplemented: boolean;683 readonly isUntrustedReserveLocation: boolean;684 readonly isUntrustedTeleportLocation: boolean;685 readonly isMultiLocationFull: boolean;686 readonly isMultiLocationNotInvertible: boolean;687 readonly isBadOrigin: boolean;688 readonly isInvalidLocation: boolean;689 readonly isAssetNotFound: boolean;690 readonly isFailedToTransactAsset: boolean;691 readonly isNotWithdrawable: boolean;692 readonly isLocationCannotHold: boolean;693 readonly isExceedsMaxMessageSize: boolean;694 readonly isDestinationUnsupported: boolean;695 readonly isTransport: boolean;696 readonly isUnroutable: boolean;697 readonly isUnknownClaim: boolean;698 readonly isFailedToDecode: boolean;699 readonly isMaxWeightInvalid: boolean;700 readonly isNotHoldingFees: boolean;701 readonly isTooExpensive: boolean;702 readonly isTrap: boolean;703 readonly asTrap: u64;704 readonly isUnhandledXcmVersion: boolean;705 readonly isWeightLimitReached: boolean;706 readonly asWeightLimitReached: u64;707 readonly isBarrier: boolean;708 readonly isWeightNotComputable: boolean;709 readonly type: 'Overflow' | 'Unimplemented' | 'UntrustedReserveLocation' | 'UntrustedTeleportLocation' | 'MultiLocationFull' | 'MultiLocationNotInvertible' | 'BadOrigin' | 'InvalidLocation' | 'AssetNotFound' | 'FailedToTransactAsset' | 'NotWithdrawable' | 'LocationCannotHold' | 'ExceedsMaxMessageSize' | 'DestinationUnsupported' | 'Transport' | 'Unroutable' | 'UnknownClaim' | 'FailedToDecode' | 'MaxWeightInvalid' | 'NotHoldingFees' | 'TooExpensive' | 'Trap' | 'UnhandledXcmVersion' | 'WeightLimitReached' | 'Barrier' | 'WeightNotComputable';710 }711712 /** @name PalletXcmEvent (66) */713 interface PalletXcmEvent extends Enum {714 readonly isAttempted: boolean;715 readonly asAttempted: XcmV2TraitsOutcome;716 readonly isSent: boolean;717 readonly asSent: ITuple<[XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;718 readonly isUnexpectedResponse: boolean;719 readonly asUnexpectedResponse: ITuple<[XcmV1MultiLocation, u64]>;720 readonly isResponseReady: boolean;721 readonly asResponseReady: ITuple<[u64, XcmV2Response]>;722 readonly isNotified: boolean;723 readonly asNotified: ITuple<[u64, u8, u8]>;724 readonly isNotifyOverweight: boolean;725 readonly asNotifyOverweight: ITuple<[u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;726 readonly isNotifyDispatchError: boolean;727 readonly asNotifyDispatchError: ITuple<[u64, u8, u8]>;728 readonly isNotifyDecodeFailed: boolean;729 readonly asNotifyDecodeFailed: ITuple<[u64, u8, u8]>;730 readonly isInvalidResponder: boolean;731 readonly asInvalidResponder: ITuple<[XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;732 readonly isInvalidResponderVersion: boolean;733 readonly asInvalidResponderVersion: ITuple<[XcmV1MultiLocation, u64]>;734 readonly isResponseTaken: boolean;735 readonly asResponseTaken: u64;736 readonly isAssetsTrapped: boolean;737 readonly asAssetsTrapped: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;738 readonly isVersionChangeNotified: boolean;739 readonly asVersionChangeNotified: ITuple<[XcmV1MultiLocation, u32]>;740 readonly isSupportedVersionChanged: boolean;741 readonly asSupportedVersionChanged: ITuple<[XcmV1MultiLocation, u32]>;742 readonly isNotifyTargetSendFail: boolean;743 readonly asNotifyTargetSendFail: ITuple<[XcmV1MultiLocation, u64, XcmV2TraitsError]>;744 readonly isNotifyTargetMigrationFail: boolean;745 readonly asNotifyTargetMigrationFail: ITuple<[XcmVersionedMultiLocation, u64]>;746 readonly isAssetsClaimed: boolean;747 readonly asAssetsClaimed: ITuple<[H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;748 readonly type: 'Attempted' | 'Sent' | 'UnexpectedResponse' | 'ResponseReady' | 'Notified' | 'NotifyOverweight' | 'NotifyDispatchError' | 'NotifyDecodeFailed' | 'InvalidResponder' | 'InvalidResponderVersion' | 'ResponseTaken' | 'AssetsTrapped' | 'VersionChangeNotified' | 'SupportedVersionChanged' | 'NotifyTargetSendFail' | 'NotifyTargetMigrationFail' | 'AssetsClaimed';749 }750751 /** @name XcmV2TraitsOutcome (67) */752 interface XcmV2TraitsOutcome extends Enum {753 readonly isComplete: boolean;754 readonly asComplete: u64;755 readonly isIncomplete: boolean;756 readonly asIncomplete: ITuple<[u64, XcmV2TraitsError]>;757 readonly isError: boolean;758 readonly asError: XcmV2TraitsError;759 readonly type: 'Complete' | 'Incomplete' | 'Error';760 }761762 /** @name XcmV2Xcm (68) */763 interface XcmV2Xcm extends Vec<XcmV2Instruction> {}764765 /** @name XcmV2Instruction (70) */766 interface XcmV2Instruction extends Enum {767 readonly isWithdrawAsset: boolean;768 readonly asWithdrawAsset: XcmV1MultiassetMultiAssets;769 readonly isReserveAssetDeposited: boolean;770 readonly asReserveAssetDeposited: XcmV1MultiassetMultiAssets;771 readonly isReceiveTeleportedAsset: boolean;772 readonly asReceiveTeleportedAsset: XcmV1MultiassetMultiAssets;773 readonly isQueryResponse: boolean;774 readonly asQueryResponse: {775 readonly queryId: Compact<u64>;776 readonly response: XcmV2Response;777 readonly maxWeight: Compact<u64>;778 } & Struct;779 readonly isTransferAsset: boolean;780 readonly asTransferAsset: {781 readonly assets: XcmV1MultiassetMultiAssets;782 readonly beneficiary: XcmV1MultiLocation;783 } & Struct;784 readonly isTransferReserveAsset: boolean;785 readonly asTransferReserveAsset: {786 readonly assets: XcmV1MultiassetMultiAssets;787 readonly dest: XcmV1MultiLocation;788 readonly xcm: XcmV2Xcm;789 } & Struct;790 readonly isTransact: boolean;791 readonly asTransact: {792 readonly originType: XcmV0OriginKind;793 readonly requireWeightAtMost: Compact<u64>;794 readonly call: XcmDoubleEncoded;795 } & Struct;796 readonly isHrmpNewChannelOpenRequest: boolean;797 readonly asHrmpNewChannelOpenRequest: {798 readonly sender: Compact<u32>;799 readonly maxMessageSize: Compact<u32>;800 readonly maxCapacity: Compact<u32>;801 } & Struct;802 readonly isHrmpChannelAccepted: boolean;803 readonly asHrmpChannelAccepted: {804 readonly recipient: Compact<u32>;805 } & Struct;806 readonly isHrmpChannelClosing: boolean;807 readonly asHrmpChannelClosing: {808 readonly initiator: Compact<u32>;809 readonly sender: Compact<u32>;810 readonly recipient: Compact<u32>;811 } & Struct;812 readonly isClearOrigin: boolean;813 readonly isDescendOrigin: boolean;814 readonly asDescendOrigin: XcmV1MultilocationJunctions;815 readonly isReportError: boolean;816 readonly asReportError: {817 readonly queryId: Compact<u64>;818 readonly dest: XcmV1MultiLocation;819 readonly maxResponseWeight: Compact<u64>;820 } & Struct;821 readonly isDepositAsset: boolean;822 readonly asDepositAsset: {823 readonly assets: XcmV1MultiassetMultiAssetFilter;824 readonly maxAssets: Compact<u32>;825 readonly beneficiary: XcmV1MultiLocation;826 } & Struct;827 readonly isDepositReserveAsset: boolean;828 readonly asDepositReserveAsset: {829 readonly assets: XcmV1MultiassetMultiAssetFilter;830 readonly maxAssets: Compact<u32>;831 readonly dest: XcmV1MultiLocation;832 readonly xcm: XcmV2Xcm;833 } & Struct;834 readonly isExchangeAsset: boolean;835 readonly asExchangeAsset: {836 readonly give: XcmV1MultiassetMultiAssetFilter;837 readonly receive: XcmV1MultiassetMultiAssets;838 } & Struct;839 readonly isInitiateReserveWithdraw: boolean;840 readonly asInitiateReserveWithdraw: {841 readonly assets: XcmV1MultiassetMultiAssetFilter;842 readonly reserve: XcmV1MultiLocation;843 readonly xcm: XcmV2Xcm;844 } & Struct;845 readonly isInitiateTeleport: boolean;846 readonly asInitiateTeleport: {847 readonly assets: XcmV1MultiassetMultiAssetFilter;848 readonly dest: XcmV1MultiLocation;849 readonly xcm: XcmV2Xcm;850 } & Struct;851 readonly isQueryHolding: boolean;852 readonly asQueryHolding: {853 readonly queryId: Compact<u64>;854 readonly dest: XcmV1MultiLocation;855 readonly assets: XcmV1MultiassetMultiAssetFilter;856 readonly maxResponseWeight: Compact<u64>;857 } & Struct;858 readonly isBuyExecution: boolean;859 readonly asBuyExecution: {860 readonly fees: XcmV1MultiAsset;861 readonly weightLimit: XcmV2WeightLimit;862 } & Struct;863 readonly isRefundSurplus: boolean;864 readonly isSetErrorHandler: boolean;865 readonly asSetErrorHandler: XcmV2Xcm;866 readonly isSetAppendix: boolean;867 readonly asSetAppendix: XcmV2Xcm;868 readonly isClearError: boolean;869 readonly isClaimAsset: boolean;870 readonly asClaimAsset: {871 readonly assets: XcmV1MultiassetMultiAssets;872 readonly ticket: XcmV1MultiLocation;873 } & Struct;874 readonly isTrap: boolean;875 readonly asTrap: Compact<u64>;876 readonly isSubscribeVersion: boolean;877 readonly asSubscribeVersion: {878 readonly queryId: Compact<u64>;879 readonly maxResponseWeight: Compact<u64>;880 } & Struct;881 readonly isUnsubscribeVersion: boolean;882 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'ClearOrigin' | 'DescendOrigin' | 'ReportError' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution' | 'RefundSurplus' | 'SetErrorHandler' | 'SetAppendix' | 'ClearError' | 'ClaimAsset' | 'Trap' | 'SubscribeVersion' | 'UnsubscribeVersion';883 }884885 /** @name XcmV2Response (71) */886 interface XcmV2Response extends Enum {887 readonly isNull: boolean;888 readonly isAssets: boolean;889 readonly asAssets: XcmV1MultiassetMultiAssets;890 readonly isExecutionResult: boolean;891 readonly asExecutionResult: Option<ITuple<[u32, XcmV2TraitsError]>>;892 readonly isVersion: boolean;893 readonly asVersion: u32;894 readonly type: 'Null' | 'Assets' | 'ExecutionResult' | 'Version';895 }896897 /** @name XcmV0OriginKind (74) */898 interface XcmV0OriginKind extends Enum {899 readonly isNative: boolean;900 readonly isSovereignAccount: boolean;901 readonly isSuperuser: boolean;902 readonly isXcm: boolean;903 readonly type: 'Native' | 'SovereignAccount' | 'Superuser' | 'Xcm';904 }905906 /** @name XcmDoubleEncoded (75) */907 interface XcmDoubleEncoded extends Struct {908 readonly encoded: Bytes;909 }910911 /** @name XcmV1MultiassetMultiAssetFilter (76) */912 interface XcmV1MultiassetMultiAssetFilter extends Enum {913 readonly isDefinite: boolean;914 readonly asDefinite: XcmV1MultiassetMultiAssets;915 readonly isWild: boolean;916 readonly asWild: XcmV1MultiassetWildMultiAsset;917 readonly type: 'Definite' | 'Wild';918 }919920 /** @name XcmV1MultiassetWildMultiAsset (77) */921 interface XcmV1MultiassetWildMultiAsset extends Enum {922 readonly isAll: boolean;923 readonly isAllOf: boolean;924 readonly asAllOf: {925 readonly id: XcmV1MultiassetAssetId;926 readonly fun: XcmV1MultiassetWildFungibility;927 } & Struct;928 readonly type: 'All' | 'AllOf';929 }930931 /** @name XcmV1MultiassetWildFungibility (78) */932 interface XcmV1MultiassetWildFungibility extends Enum {933 readonly isFungible: boolean;934 readonly isNonFungible: boolean;935 readonly type: 'Fungible' | 'NonFungible';936 }937938 /** @name XcmV2WeightLimit (79) */939 interface XcmV2WeightLimit extends Enum {940 readonly isUnlimited: boolean;941 readonly isLimited: boolean;942 readonly asLimited: Compact<u64>;943 readonly type: 'Unlimited' | 'Limited';944 }945946 /** @name XcmVersionedMultiAssets (81) */947 interface XcmVersionedMultiAssets extends Enum {948 readonly isV0: boolean;949 readonly asV0: Vec<XcmV0MultiAsset>;950 readonly isV1: boolean;951 readonly asV1: XcmV1MultiassetMultiAssets;952 readonly type: 'V0' | 'V1';953 }954955 /** @name XcmV0MultiAsset (83) */956 interface XcmV0MultiAsset extends Enum {957 readonly isNone: boolean;958 readonly isAll: boolean;959 readonly isAllFungible: boolean;960 readonly isAllNonFungible: boolean;961 readonly isAllAbstractFungible: boolean;962 readonly asAllAbstractFungible: {963 readonly id: Bytes;964 } & Struct;965 readonly isAllAbstractNonFungible: boolean;966 readonly asAllAbstractNonFungible: {967 readonly class: Bytes;968 } & Struct;969 readonly isAllConcreteFungible: boolean;970 readonly asAllConcreteFungible: {971 readonly id: XcmV0MultiLocation;972 } & Struct;973 readonly isAllConcreteNonFungible: boolean;974 readonly asAllConcreteNonFungible: {975 readonly class: XcmV0MultiLocation;976 } & Struct;977 readonly isAbstractFungible: boolean;978 readonly asAbstractFungible: {979 readonly id: Bytes;980 readonly amount: Compact<u128>;981 } & Struct;982 readonly isAbstractNonFungible: boolean;983 readonly asAbstractNonFungible: {984 readonly class: Bytes;985 readonly instance: XcmV1MultiassetAssetInstance;986 } & Struct;987 readonly isConcreteFungible: boolean;988 readonly asConcreteFungible: {989 readonly id: XcmV0MultiLocation;990 readonly amount: Compact<u128>;991 } & Struct;992 readonly isConcreteNonFungible: boolean;993 readonly asConcreteNonFungible: {994 readonly class: XcmV0MultiLocation;995 readonly instance: XcmV1MultiassetAssetInstance;996 } & Struct;997 readonly type: 'None' | 'All' | 'AllFungible' | 'AllNonFungible' | 'AllAbstractFungible' | 'AllAbstractNonFungible' | 'AllConcreteFungible' | 'AllConcreteNonFungible' | 'AbstractFungible' | 'AbstractNonFungible' | 'ConcreteFungible' | 'ConcreteNonFungible';998 }9991000 /** @name XcmV0MultiLocation (84) */1001 interface XcmV0MultiLocation extends Enum {1002 readonly isNull: boolean;1003 readonly isX1: boolean;1004 readonly asX1: XcmV0Junction;1005 readonly isX2: boolean;1006 readonly asX2: ITuple<[XcmV0Junction, XcmV0Junction]>;1007 readonly isX3: boolean;1008 readonly asX3: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1009 readonly isX4: boolean;1010 readonly asX4: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1011 readonly isX5: boolean;1012 readonly asX5: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1013 readonly isX6: boolean;1014 readonly asX6: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1015 readonly isX7: boolean;1016 readonly asX7: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1017 readonly isX8: boolean;1018 readonly asX8: ITuple<[XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction, XcmV0Junction]>;1019 readonly type: 'Null' | 'X1' | 'X2' | 'X3' | 'X4' | 'X5' | 'X6' | 'X7' | 'X8';1020 }10211022 /** @name XcmV0Junction (85) */1023 interface XcmV0Junction extends Enum {1024 readonly isParent: boolean;1025 readonly isParachain: boolean;1026 readonly asParachain: Compact<u32>;1027 readonly isAccountId32: boolean;1028 readonly asAccountId32: {1029 readonly network: XcmV0JunctionNetworkId;1030 readonly id: U8aFixed;1031 } & Struct;1032 readonly isAccountIndex64: boolean;1033 readonly asAccountIndex64: {1034 readonly network: XcmV0JunctionNetworkId;1035 readonly index: Compact<u64>;1036 } & Struct;1037 readonly isAccountKey20: boolean;1038 readonly asAccountKey20: {1039 readonly network: XcmV0JunctionNetworkId;1040 readonly key: U8aFixed;1041 } & Struct;1042 readonly isPalletInstance: boolean;1043 readonly asPalletInstance: u8;1044 readonly isGeneralIndex: boolean;1045 readonly asGeneralIndex: Compact<u128>;1046 readonly isGeneralKey: boolean;1047 readonly asGeneralKey: Bytes;1048 readonly isOnlyChild: boolean;1049 readonly isPlurality: boolean;1050 readonly asPlurality: {1051 readonly id: XcmV0JunctionBodyId;1052 readonly part: XcmV0JunctionBodyPart;1053 } & Struct;1054 readonly type: 'Parent' | 'Parachain' | 'AccountId32' | 'AccountIndex64' | 'AccountKey20' | 'PalletInstance' | 'GeneralIndex' | 'GeneralKey' | 'OnlyChild' | 'Plurality';1055 }10561057 /** @name XcmVersionedMultiLocation (86) */1058 interface XcmVersionedMultiLocation extends Enum {1059 readonly isV0: boolean;1060 readonly asV0: XcmV0MultiLocation;1061 readonly isV1: boolean;1062 readonly asV1: XcmV1MultiLocation;1063 readonly type: 'V0' | 'V1';1064 }10651066 /** @name CumulusPalletXcmEvent (87) */1067 interface CumulusPalletXcmEvent extends Enum {1068 readonly isInvalidFormat: boolean;1069 readonly asInvalidFormat: U8aFixed;1070 readonly isUnsupportedVersion: boolean;1071 readonly asUnsupportedVersion: U8aFixed;1072 readonly isExecutedDownward: boolean;1073 readonly asExecutedDownward: ITuple<[U8aFixed, XcmV2TraitsOutcome]>;1074 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward';1075 }10761077 /** @name CumulusPalletDmpQueueEvent (88) */1078 interface CumulusPalletDmpQueueEvent extends Enum {1079 readonly isInvalidFormat: boolean;1080 readonly asInvalidFormat: {1081 readonly messageId: U8aFixed;1082 } & Struct;1083 readonly isUnsupportedVersion: boolean;1084 readonly asUnsupportedVersion: {1085 readonly messageId: U8aFixed;1086 } & Struct;1087 readonly isExecutedDownward: boolean;1088 readonly asExecutedDownward: {1089 readonly messageId: U8aFixed;1090 readonly outcome: XcmV2TraitsOutcome;1091 } & Struct;1092 readonly isWeightExhausted: boolean;1093 readonly asWeightExhausted: {1094 readonly messageId: U8aFixed;1095 readonly remainingWeight: SpWeightsWeightV2Weight;1096 readonly requiredWeight: SpWeightsWeightV2Weight;1097 } & Struct;1098 readonly isOverweightEnqueued: boolean;1099 readonly asOverweightEnqueued: {1100 readonly messageId: U8aFixed;1101 readonly overweightIndex: u64;1102 readonly requiredWeight: SpWeightsWeightV2Weight;1103 } & Struct;1104 readonly isOverweightServiced: boolean;1105 readonly asOverweightServiced: {1106 readonly overweightIndex: u64;1107 readonly weightUsed: SpWeightsWeightV2Weight;1108 } & Struct;1109 readonly type: 'InvalidFormat' | 'UnsupportedVersion' | 'ExecutedDownward' | 'WeightExhausted' | 'OverweightEnqueued' | 'OverweightServiced';1110 }11111112 /** @name PalletUniqueSchedulerV2Event (89) */1113 interface PalletUniqueSchedulerV2Event extends Enum {1114 readonly isScheduled: boolean;1115 readonly asScheduled: {1116 readonly when: u32;1117 readonly index: u32;1118 } & Struct;1119 readonly isCanceled: boolean;1120 readonly asCanceled: {1121 readonly when: u32;1122 readonly index: u32;1123 } & Struct;1124 readonly isDispatched: boolean;1125 readonly asDispatched: {1126 readonly task: ITuple<[u32, u32]>;1127 readonly id: Option<U8aFixed>;1128 readonly result: Result<Null, SpRuntimeDispatchError>;1129 } & Struct;1130 readonly isPriorityChanged: boolean;1131 readonly asPriorityChanged: {1132 readonly task: ITuple<[u32, u32]>;1133 readonly priority: u8;1134 } & Struct;1135 readonly isCallUnavailable: boolean;1136 readonly asCallUnavailable: {1137 readonly task: ITuple<[u32, u32]>;1138 readonly id: Option<U8aFixed>;1139 } & Struct;1140 readonly isPermanentlyOverweight: boolean;1141 readonly asPermanentlyOverweight: {1142 readonly task: ITuple<[u32, u32]>;1143 readonly id: Option<U8aFixed>;1144 } & Struct;1145 readonly type: 'Scheduled' | 'Canceled' | 'Dispatched' | 'PriorityChanged' | 'CallUnavailable' | 'PermanentlyOverweight';1146 }11471148 /** @name PalletCommonEvent (92) */1149 interface PalletCommonEvent extends Enum {1150 readonly isCollectionCreated: boolean;1151 readonly asCollectionCreated: ITuple<[u32, u8, AccountId32]>;1152 readonly isCollectionDestroyed: boolean;1153 readonly asCollectionDestroyed: u32;1154 readonly isItemCreated: boolean;1155 readonly asItemCreated: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1156 readonly isItemDestroyed: boolean;1157 readonly asItemDestroyed: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1158 readonly isTransfer: boolean;1159 readonly asTransfer: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1160 readonly isApproved: boolean;1161 readonly asApproved: ITuple<[u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;1162 readonly isApprovedForAll: boolean;1163 readonly asApprovedForAll: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;1164 readonly isCollectionPropertySet: boolean;1165 readonly asCollectionPropertySet: ITuple<[u32, Bytes]>;1166 readonly isCollectionPropertyDeleted: boolean;1167 readonly asCollectionPropertyDeleted: ITuple<[u32, Bytes]>;1168 readonly isTokenPropertySet: boolean;1169 readonly asTokenPropertySet: ITuple<[u32, u32, Bytes]>;1170 readonly isTokenPropertyDeleted: boolean;1171 readonly asTokenPropertyDeleted: ITuple<[u32, u32, Bytes]>;1172 readonly isPropertyPermissionSet: boolean;1173 readonly asPropertyPermissionSet: ITuple<[u32, Bytes]>;1174 readonly isAllowListAddressAdded: boolean;1175 readonly asAllowListAddressAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1176 readonly isAllowListAddressRemoved: boolean;1177 readonly asAllowListAddressRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1178 readonly isCollectionAdminAdded: boolean;1179 readonly asCollectionAdminAdded: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1180 readonly isCollectionAdminRemoved: boolean;1181 readonly asCollectionAdminRemoved: ITuple<[u32, PalletEvmAccountBasicCrossAccountIdRepr]>;1182 readonly isCollectionLimitSet: boolean;1183 readonly asCollectionLimitSet: u32;1184 readonly isCollectionOwnerChanged: boolean;1185 readonly asCollectionOwnerChanged: ITuple<[u32, AccountId32]>;1186 readonly isCollectionPermissionSet: boolean;1187 readonly asCollectionPermissionSet: u32;1188 readonly isCollectionSponsorSet: boolean;1189 readonly asCollectionSponsorSet: ITuple<[u32, AccountId32]>;1190 readonly isSponsorshipConfirmed: boolean;1191 readonly asSponsorshipConfirmed: ITuple<[u32, AccountId32]>;1192 readonly isCollectionSponsorRemoved: boolean;1193 readonly asCollectionSponsorRemoved: u32;1194 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'ItemCreated' | 'ItemDestroyed' | 'Transfer' | 'Approved' | 'ApprovedForAll' | 'CollectionPropertySet' | 'CollectionPropertyDeleted' | 'TokenPropertySet' | 'TokenPropertyDeleted' | 'PropertyPermissionSet' | 'AllowListAddressAdded' | 'AllowListAddressRemoved' | 'CollectionAdminAdded' | 'CollectionAdminRemoved' | 'CollectionLimitSet' | 'CollectionOwnerChanged' | 'CollectionPermissionSet' | 'CollectionSponsorSet' | 'SponsorshipConfirmed' | 'CollectionSponsorRemoved';1195 }11961197 /** @name PalletEvmAccountBasicCrossAccountIdRepr (95) */1198 interface PalletEvmAccountBasicCrossAccountIdRepr extends Enum {1199 readonly isSubstrate: boolean;1200 readonly asSubstrate: AccountId32;1201 readonly isEthereum: boolean;1202 readonly asEthereum: H160;1203 readonly type: 'Substrate' | 'Ethereum';1204 }12051206 /** @name PalletStructureEvent (99) */1207 interface PalletStructureEvent extends Enum {1208 readonly isExecuted: boolean;1209 readonly asExecuted: Result<Null, SpRuntimeDispatchError>;1210 readonly type: 'Executed';1211 }12121213 /** @name PalletRmrkCoreEvent (100) */1214 interface PalletRmrkCoreEvent extends Enum {1215 readonly isCollectionCreated: boolean;1216 readonly asCollectionCreated: {1217 readonly issuer: AccountId32;1218 readonly collectionId: u32;1219 } & Struct;1220 readonly isCollectionDestroyed: boolean;1221 readonly asCollectionDestroyed: {1222 readonly issuer: AccountId32;1223 readonly collectionId: u32;1224 } & Struct;1225 readonly isIssuerChanged: boolean;1226 readonly asIssuerChanged: {1227 readonly oldIssuer: AccountId32;1228 readonly newIssuer: AccountId32;1229 readonly collectionId: u32;1230 } & Struct;1231 readonly isCollectionLocked: boolean;1232 readonly asCollectionLocked: {1233 readonly issuer: AccountId32;1234 readonly collectionId: u32;1235 } & Struct;1236 readonly isNftMinted: boolean;1237 readonly asNftMinted: {1238 readonly owner: AccountId32;1239 readonly collectionId: u32;1240 readonly nftId: u32;1241 } & Struct;1242 readonly isNftBurned: boolean;1243 readonly asNftBurned: {1244 readonly owner: AccountId32;1245 readonly nftId: u32;1246 } & Struct;1247 readonly isNftSent: boolean;1248 readonly asNftSent: {1249 readonly sender: AccountId32;1250 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1251 readonly collectionId: u32;1252 readonly nftId: u32;1253 readonly approvalRequired: bool;1254 } & Struct;1255 readonly isNftAccepted: boolean;1256 readonly asNftAccepted: {1257 readonly sender: AccountId32;1258 readonly recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple;1259 readonly collectionId: u32;1260 readonly nftId: u32;1261 } & Struct;1262 readonly isNftRejected: boolean;1263 readonly asNftRejected: {1264 readonly sender: AccountId32;1265 readonly collectionId: u32;1266 readonly nftId: u32;1267 } & Struct;1268 readonly isPropertySet: boolean;1269 readonly asPropertySet: {1270 readonly collectionId: u32;1271 readonly maybeNftId: Option<u32>;1272 readonly key: Bytes;1273 readonly value: Bytes;1274 } & Struct;1275 readonly isResourceAdded: boolean;1276 readonly asResourceAdded: {1277 readonly nftId: u32;1278 readonly resourceId: u32;1279 } & Struct;1280 readonly isResourceRemoval: boolean;1281 readonly asResourceRemoval: {1282 readonly nftId: u32;1283 readonly resourceId: u32;1284 } & Struct;1285 readonly isResourceAccepted: boolean;1286 readonly asResourceAccepted: {1287 readonly nftId: u32;1288 readonly resourceId: u32;1289 } & Struct;1290 readonly isResourceRemovalAccepted: boolean;1291 readonly asResourceRemovalAccepted: {1292 readonly nftId: u32;1293 readonly resourceId: u32;1294 } & Struct;1295 readonly isPrioritySet: boolean;1296 readonly asPrioritySet: {1297 readonly collectionId: u32;1298 readonly nftId: u32;1299 } & Struct;1300 readonly type: 'CollectionCreated' | 'CollectionDestroyed' | 'IssuerChanged' | 'CollectionLocked' | 'NftMinted' | 'NftBurned' | 'NftSent' | 'NftAccepted' | 'NftRejected' | 'PropertySet' | 'ResourceAdded' | 'ResourceRemoval' | 'ResourceAccepted' | 'ResourceRemovalAccepted' | 'PrioritySet';1301 }13021303 /** @name RmrkTraitsNftAccountIdOrCollectionNftTuple (101) */1304 interface RmrkTraitsNftAccountIdOrCollectionNftTuple extends Enum {1305 readonly isAccountId: boolean;1306 readonly asAccountId: AccountId32;1307 readonly isCollectionAndNftTuple: boolean;1308 readonly asCollectionAndNftTuple: ITuple<[u32, u32]>;1309 readonly type: 'AccountId' | 'CollectionAndNftTuple';1310 }13111312 /** @name PalletRmrkEquipEvent (105) */1313 interface PalletRmrkEquipEvent extends Enum {1314 readonly isBaseCreated: boolean;1315 readonly asBaseCreated: {1316 readonly issuer: AccountId32;1317 readonly baseId: u32;1318 } & Struct;1319 readonly isEquippablesUpdated: boolean;1320 readonly asEquippablesUpdated: {1321 readonly baseId: u32;1322 readonly slotId: u32;1323 } & Struct;1324 readonly type: 'BaseCreated' | 'EquippablesUpdated';1325 }13261327 /** @name PalletAppPromotionEvent (106) */1328 interface PalletAppPromotionEvent extends Enum {1329 readonly isStakingRecalculation: boolean;1330 readonly asStakingRecalculation: ITuple<[AccountId32, u128, u128]>;1331 readonly isStake: boolean;1332 readonly asStake: ITuple<[AccountId32, u128]>;1333 readonly isUnstake: boolean;1334 readonly asUnstake: ITuple<[AccountId32, u128]>;1335 readonly isSetAdmin: boolean;1336 readonly asSetAdmin: AccountId32;1337 readonly type: 'StakingRecalculation' | 'Stake' | 'Unstake' | 'SetAdmin';1338 }13391340 /** @name PalletForeignAssetsModuleEvent (107) */1341 interface PalletForeignAssetsModuleEvent extends Enum {1342 readonly isForeignAssetRegistered: boolean;1343 readonly asForeignAssetRegistered: {1344 readonly assetId: u32;1345 readonly assetAddress: XcmV1MultiLocation;1346 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1347 } & Struct;1348 readonly isForeignAssetUpdated: boolean;1349 readonly asForeignAssetUpdated: {1350 readonly assetId: u32;1351 readonly assetAddress: XcmV1MultiLocation;1352 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1353 } & Struct;1354 readonly isAssetRegistered: boolean;1355 readonly asAssetRegistered: {1356 readonly assetId: PalletForeignAssetsAssetIds;1357 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1358 } & Struct;1359 readonly isAssetUpdated: boolean;1360 readonly asAssetUpdated: {1361 readonly assetId: PalletForeignAssetsAssetIds;1362 readonly metadata: PalletForeignAssetsModuleAssetMetadata;1363 } & Struct;1364 readonly type: 'ForeignAssetRegistered' | 'ForeignAssetUpdated' | 'AssetRegistered' | 'AssetUpdated';1365 }13661367 /** @name PalletForeignAssetsModuleAssetMetadata (108) */1368 interface PalletForeignAssetsModuleAssetMetadata extends Struct {1369 readonly name: Bytes;1370 readonly symbol: Bytes;1371 readonly decimals: u8;1372 readonly minimalBalance: u128;1373 }13741375 /** @name PalletEvmEvent (109) */1376 interface PalletEvmEvent extends Enum {1377 readonly isLog: boolean;1378 readonly asLog: {1379 readonly log: EthereumLog;1380 } & Struct;1381 readonly isCreated: boolean;1382 readonly asCreated: {1383 readonly address: H160;1384 } & Struct;1385 readonly isCreatedFailed: boolean;1386 readonly asCreatedFailed: {1387 readonly address: H160;1388 } & Struct;1389 readonly isExecuted: boolean;1390 readonly asExecuted: {1391 readonly address: H160;1392 } & Struct;1393 readonly isExecutedFailed: boolean;1394 readonly asExecutedFailed: {1395 readonly address: H160;1396 } & Struct;1397 readonly type: 'Log' | 'Created' | 'CreatedFailed' | 'Executed' | 'ExecutedFailed';1398 }13991400 /** @name EthereumLog (110) */1401 interface EthereumLog extends Struct {1402 readonly address: H160;1403 readonly topics: Vec<H256>;1404 readonly data: Bytes;1405 }14061407 /** @name PalletEthereumEvent (112) */1408 interface PalletEthereumEvent extends Enum {1409 readonly isExecuted: boolean;1410 readonly asExecuted: {1411 readonly from: H160;1412 readonly to: H160;1413 readonly transactionHash: H256;1414 readonly exitReason: EvmCoreErrorExitReason;1415 } & Struct;1416 readonly type: 'Executed';1417 }14181419 /** @name EvmCoreErrorExitReason (113) */1420 interface EvmCoreErrorExitReason extends Enum {1421 readonly isSucceed: boolean;1422 readonly asSucceed: EvmCoreErrorExitSucceed;1423 readonly isError: boolean;1424 readonly asError: EvmCoreErrorExitError;1425 readonly isRevert: boolean;1426 readonly asRevert: EvmCoreErrorExitRevert;1427 readonly isFatal: boolean;1428 readonly asFatal: EvmCoreErrorExitFatal;1429 readonly type: 'Succeed' | 'Error' | 'Revert' | 'Fatal';1430 }14311432 /** @name EvmCoreErrorExitSucceed (114) */1433 interface EvmCoreErrorExitSucceed extends Enum {1434 readonly isStopped: boolean;1435 readonly isReturned: boolean;1436 readonly isSuicided: boolean;1437 readonly type: 'Stopped' | 'Returned' | 'Suicided';1438 }14391440 /** @name EvmCoreErrorExitError (115) */1441 interface EvmCoreErrorExitError extends Enum {1442 readonly isStackUnderflow: boolean;1443 readonly isStackOverflow: boolean;1444 readonly isInvalidJump: boolean;1445 readonly isInvalidRange: boolean;1446 readonly isDesignatedInvalid: boolean;1447 readonly isCallTooDeep: boolean;1448 readonly isCreateCollision: boolean;1449 readonly isCreateContractLimit: boolean;1450 readonly isOutOfOffset: boolean;1451 readonly isOutOfGas: boolean;1452 readonly isOutOfFund: boolean;1453 readonly isPcUnderflow: boolean;1454 readonly isCreateEmpty: boolean;1455 readonly isOther: boolean;1456 readonly asOther: Text;1457 readonly isInvalidCode: boolean;1458 readonly type: 'StackUnderflow' | 'StackOverflow' | 'InvalidJump' | 'InvalidRange' | 'DesignatedInvalid' | 'CallTooDeep' | 'CreateCollision' | 'CreateContractLimit' | 'OutOfOffset' | 'OutOfGas' | 'OutOfFund' | 'PcUnderflow' | 'CreateEmpty' | 'Other' | 'InvalidCode';1459 }14601461 /** @name EvmCoreErrorExitRevert (118) */1462 interface EvmCoreErrorExitRevert extends Enum {1463 readonly isReverted: boolean;1464 readonly type: 'Reverted';1465 }14661467 /** @name EvmCoreErrorExitFatal (119) */1468 interface EvmCoreErrorExitFatal extends Enum {1469 readonly isNotSupported: boolean;1470 readonly isUnhandledInterrupt: boolean;1471 readonly isCallErrorAsFatal: boolean;1472 readonly asCallErrorAsFatal: EvmCoreErrorExitError;1473 readonly isOther: boolean;1474 readonly asOther: Text;1475 readonly type: 'NotSupported' | 'UnhandledInterrupt' | 'CallErrorAsFatal' | 'Other';1476 }14771478 /** @name PalletEvmContractHelpersEvent (120) */1479 interface PalletEvmContractHelpersEvent extends Enum {1480 readonly isContractSponsorSet: boolean;1481 readonly asContractSponsorSet: ITuple<[H160, AccountId32]>;1482 readonly isContractSponsorshipConfirmed: boolean;1483 readonly asContractSponsorshipConfirmed: ITuple<[H160, AccountId32]>;1484 readonly isContractSponsorRemoved: boolean;1485 readonly asContractSponsorRemoved: H160;1486 readonly type: 'ContractSponsorSet' | 'ContractSponsorshipConfirmed' | 'ContractSponsorRemoved';1487 }14881489 /** @name PalletEvmMigrationEvent (121) */1490 interface PalletEvmMigrationEvent extends Enum {1491 readonly isTestEvent: boolean;1492 readonly type: 'TestEvent';1493 }14941495 /** @name PalletMaintenanceEvent (122) */1496 interface PalletMaintenanceEvent extends Enum {1497 readonly isMaintenanceEnabled: boolean;1498 readonly isMaintenanceDisabled: boolean;1499 readonly type: 'MaintenanceEnabled' | 'MaintenanceDisabled';1500 }15011502 /** @name PalletTestUtilsEvent (123) */1503 interface PalletTestUtilsEvent extends Enum {1504 readonly isValueIsSet: boolean;1505 readonly isShouldRollback: boolean;1506 readonly isBatchCompleted: boolean;1507 readonly type: 'ValueIsSet' | 'ShouldRollback' | 'BatchCompleted';1508 }15091510 /** @name FrameSystemPhase (124) */1511 interface FrameSystemPhase extends Enum {1512 readonly isApplyExtrinsic: boolean;1513 readonly asApplyExtrinsic: u32;1514 readonly isFinalization: boolean;1515 readonly isInitialization: boolean;1516 readonly type: 'ApplyExtrinsic' | 'Finalization' | 'Initialization';1517 }15181519 /** @name FrameSystemLastRuntimeUpgradeInfo (126) */1520 interface FrameSystemLastRuntimeUpgradeInfo extends Struct {1521 readonly specVersion: Compact<u32>;1522 readonly specName: Text;1523 }15241525 /** @name FrameSystemCall (127) */1526 interface FrameSystemCall extends Enum {1527 readonly isFillBlock: boolean;1528 readonly asFillBlock: {1529 readonly ratio: Perbill;1530 } & Struct;1531 readonly isRemark: boolean;1532 readonly asRemark: {1533 readonly remark: Bytes;1534 } & Struct;1535 readonly isSetHeapPages: boolean;1536 readonly asSetHeapPages: {1537 readonly pages: u64;1538 } & Struct;1539 readonly isSetCode: boolean;1540 readonly asSetCode: {1541 readonly code: Bytes;1542 } & Struct;1543 readonly isSetCodeWithoutChecks: boolean;1544 readonly asSetCodeWithoutChecks: {1545 readonly code: Bytes;1546 } & Struct;1547 readonly isSetStorage: boolean;1548 readonly asSetStorage: {1549 readonly items: Vec<ITuple<[Bytes, Bytes]>>;1550 } & Struct;1551 readonly isKillStorage: boolean;1552 readonly asKillStorage: {1553 readonly keys_: Vec<Bytes>;1554 } & Struct;1555 readonly isKillPrefix: boolean;1556 readonly asKillPrefix: {1557 readonly prefix: Bytes;1558 readonly subkeys: u32;1559 } & Struct;1560 readonly isRemarkWithEvent: boolean;1561 readonly asRemarkWithEvent: {1562 readonly remark: Bytes;1563 } & Struct;1564 readonly type: 'FillBlock' | 'Remark' | 'SetHeapPages' | 'SetCode' | 'SetCodeWithoutChecks' | 'SetStorage' | 'KillStorage' | 'KillPrefix' | 'RemarkWithEvent';1565 }15661567 /** @name FrameSystemLimitsBlockWeights (132) */1568 interface FrameSystemLimitsBlockWeights extends Struct {1569 readonly baseBlock: SpWeightsWeightV2Weight;1570 readonly maxBlock: SpWeightsWeightV2Weight;1571 readonly perClass: FrameSupportDispatchPerDispatchClassWeightsPerClass;1572 }15731574 /** @name FrameSupportDispatchPerDispatchClassWeightsPerClass (133) */1575 interface FrameSupportDispatchPerDispatchClassWeightsPerClass extends Struct {1576 readonly normal: FrameSystemLimitsWeightsPerClass;1577 readonly operational: FrameSystemLimitsWeightsPerClass;1578 readonly mandatory: FrameSystemLimitsWeightsPerClass;1579 }15801581 /** @name FrameSystemLimitsWeightsPerClass (134) */1582 interface FrameSystemLimitsWeightsPerClass extends Struct {1583 readonly baseExtrinsic: SpWeightsWeightV2Weight;1584 readonly maxExtrinsic: Option<SpWeightsWeightV2Weight>;1585 readonly maxTotal: Option<SpWeightsWeightV2Weight>;1586 readonly reserved: Option<SpWeightsWeightV2Weight>;1587 }15881589 /** @name FrameSystemLimitsBlockLength (136) */1590 interface FrameSystemLimitsBlockLength extends Struct {1591 readonly max: FrameSupportDispatchPerDispatchClassU32;1592 }15931594 /** @name FrameSupportDispatchPerDispatchClassU32 (137) */1595 interface FrameSupportDispatchPerDispatchClassU32 extends Struct {1596 readonly normal: u32;1597 readonly operational: u32;1598 readonly mandatory: u32;1599 }16001601 /** @name SpWeightsRuntimeDbWeight (138) */1602 interface SpWeightsRuntimeDbWeight extends Struct {1603 readonly read: u64;1604 readonly write: u64;1605 }16061607 /** @name SpVersionRuntimeVersion (139) */1608 interface SpVersionRuntimeVersion extends Struct {1609 readonly specName: Text;1610 readonly implName: Text;1611 readonly authoringVersion: u32;1612 readonly specVersion: u32;1613 readonly implVersion: u32;1614 readonly apis: Vec<ITuple<[U8aFixed, u32]>>;1615 readonly transactionVersion: u32;1616 readonly stateVersion: u8;1617 }16181619 /** @name FrameSystemError (144) */1620 interface FrameSystemError extends Enum {1621 readonly isInvalidSpecName: boolean;1622 readonly isSpecVersionNeedsToIncrease: boolean;1623 readonly isFailedToExtractRuntimeVersion: boolean;1624 readonly isNonDefaultComposite: boolean;1625 readonly isNonZeroRefCount: boolean;1626 readonly isCallFiltered: boolean;1627 readonly type: 'InvalidSpecName' | 'SpecVersionNeedsToIncrease' | 'FailedToExtractRuntimeVersion' | 'NonDefaultComposite' | 'NonZeroRefCount' | 'CallFiltered';1628 }16291630 /** @name PolkadotPrimitivesV2PersistedValidationData (145) */1631 interface PolkadotPrimitivesV2PersistedValidationData extends Struct {1632 readonly parentHead: Bytes;1633 readonly relayParentNumber: u32;1634 readonly relayParentStorageRoot: H256;1635 readonly maxPovSize: u32;1636 }16371638 /** @name PolkadotPrimitivesV2UpgradeRestriction (148) */1639 interface PolkadotPrimitivesV2UpgradeRestriction extends Enum {1640 readonly isPresent: boolean;1641 readonly type: 'Present';1642 }16431644 /** @name SpTrieStorageProof (149) */1645 interface SpTrieStorageProof extends Struct {1646 readonly trieNodes: BTreeSet<Bytes>;1647 }16481649 /** @name CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot (151) */1650 interface CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot extends Struct {1651 readonly dmqMqcHead: H256;1652 readonly relayDispatchQueueSize: ITuple<[u32, u32]>;1653 readonly ingressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1654 readonly egressChannels: Vec<ITuple<[u32, PolkadotPrimitivesV2AbridgedHrmpChannel]>>;1655 }16561657 /** @name PolkadotPrimitivesV2AbridgedHrmpChannel (154) */1658 interface PolkadotPrimitivesV2AbridgedHrmpChannel extends Struct {1659 readonly maxCapacity: u32;1660 readonly maxTotalSize: u32;1661 readonly maxMessageSize: u32;1662 readonly msgCount: u32;1663 readonly totalSize: u32;1664 readonly mqcHead: Option<H256>;1665 }16661667 /** @name PolkadotPrimitivesV2AbridgedHostConfiguration (155) */1668 interface PolkadotPrimitivesV2AbridgedHostConfiguration extends Struct {1669 readonly maxCodeSize: u32;1670 readonly maxHeadDataSize: u32;1671 readonly maxUpwardQueueCount: u32;1672 readonly maxUpwardQueueSize: u32;1673 readonly maxUpwardMessageSize: u32;1674 readonly maxUpwardMessageNumPerCandidate: u32;1675 readonly hrmpMaxMessageNumPerCandidate: u32;1676 readonly validationUpgradeCooldown: u32;1677 readonly validationUpgradeDelay: u32;1678 }16791680 /** @name PolkadotCorePrimitivesOutboundHrmpMessage (161) */1681 interface PolkadotCorePrimitivesOutboundHrmpMessage extends Struct {1682 readonly recipient: u32;1683 readonly data: Bytes;1684 }16851686 /** @name CumulusPalletParachainSystemCall (162) */1687 interface CumulusPalletParachainSystemCall extends Enum {1688 readonly isSetValidationData: boolean;1689 readonly asSetValidationData: {1690 readonly data: CumulusPrimitivesParachainInherentParachainInherentData;1691 } & Struct;1692 readonly isSudoSendUpwardMessage: boolean;1693 readonly asSudoSendUpwardMessage: {1694 readonly message: Bytes;1695 } & Struct;1696 readonly isAuthorizeUpgrade: boolean;1697 readonly asAuthorizeUpgrade: {1698 readonly codeHash: H256;1699 } & Struct;1700 readonly isEnactAuthorizedUpgrade: boolean;1701 readonly asEnactAuthorizedUpgrade: {1702 readonly code: Bytes;1703 } & Struct;1704 readonly type: 'SetValidationData' | 'SudoSendUpwardMessage' | 'AuthorizeUpgrade' | 'EnactAuthorizedUpgrade';1705 }17061707 /** @name CumulusPrimitivesParachainInherentParachainInherentData (163) */1708 interface CumulusPrimitivesParachainInherentParachainInherentData extends Struct {1709 readonly validationData: PolkadotPrimitivesV2PersistedValidationData;1710 readonly relayChainState: SpTrieStorageProof;1711 readonly downwardMessages: Vec<PolkadotCorePrimitivesInboundDownwardMessage>;1712 readonly horizontalMessages: BTreeMap<u32, Vec<PolkadotCorePrimitivesInboundHrmpMessage>>;1713 }17141715 /** @name PolkadotCorePrimitivesInboundDownwardMessage (165) */1716 interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {1717 readonly sentAt: u32;1718 readonly msg: Bytes;1719 }17201721 /** @name PolkadotCorePrimitivesInboundHrmpMessage (168) */1722 interface PolkadotCorePrimitivesInboundHrmpMessage extends Struct {1723 readonly sentAt: u32;1724 readonly data: Bytes;1725 }17261727 /** @name CumulusPalletParachainSystemError (171) */1728 interface CumulusPalletParachainSystemError extends Enum {1729 readonly isOverlappingUpgrades: boolean;1730 readonly isProhibitedByPolkadot: boolean;1731 readonly isTooBig: boolean;1732 readonly isValidationDataNotAvailable: boolean;1733 readonly isHostConfigurationNotAvailable: boolean;1734 readonly isNotScheduled: boolean;1735 readonly isNothingAuthorized: boolean;1736 readonly isUnauthorized: boolean;1737 readonly type: 'OverlappingUpgrades' | 'ProhibitedByPolkadot' | 'TooBig' | 'ValidationDataNotAvailable' | 'HostConfigurationNotAvailable' | 'NotScheduled' | 'NothingAuthorized' | 'Unauthorized';1738 }17391740 /** @name PalletBalancesBalanceLock (173) */1741 interface PalletBalancesBalanceLock extends Struct {1742 readonly id: U8aFixed;1743 readonly amount: u128;1744 readonly reasons: PalletBalancesReasons;1745 }17461747 /** @name PalletBalancesReasons (174) */1748 interface PalletBalancesReasons extends Enum {1749 readonly isFee: boolean;1750 readonly isMisc: boolean;1751 readonly isAll: boolean;1752 readonly type: 'Fee' | 'Misc' | 'All';1753 }17541755 /** @name PalletBalancesReserveData (177) */1756 interface PalletBalancesReserveData extends Struct {1757 readonly id: U8aFixed;1758 readonly amount: u128;1759 }17601761 /** @name PalletBalancesReleases (179) */1762 interface PalletBalancesReleases extends Enum {1763 readonly isV100: boolean;1764 readonly isV200: boolean;1765 readonly type: 'V100' | 'V200';1766 }17671768 /** @name PalletBalancesCall (180) */1769 interface PalletBalancesCall extends Enum {1770 readonly isTransfer: boolean;1771 readonly asTransfer: {1772 readonly dest: MultiAddress;1773 readonly value: Compact<u128>;1774 } & Struct;1775 readonly isSetBalance: boolean;1776 readonly asSetBalance: {1777 readonly who: MultiAddress;1778 readonly newFree: Compact<u128>;1779 readonly newReserved: Compact<u128>;1780 } & Struct;1781 readonly isForceTransfer: boolean;1782 readonly asForceTransfer: {1783 readonly source: MultiAddress;1784 readonly dest: MultiAddress;1785 readonly value: Compact<u128>;1786 } & Struct;1787 readonly isTransferKeepAlive: boolean;1788 readonly asTransferKeepAlive: {1789 readonly dest: MultiAddress;1790 readonly value: Compact<u128>;1791 } & Struct;1792 readonly isTransferAll: boolean;1793 readonly asTransferAll: {1794 readonly dest: MultiAddress;1795 readonly keepAlive: bool;1796 } & Struct;1797 readonly isForceUnreserve: boolean;1798 readonly asForceUnreserve: {1799 readonly who: MultiAddress;1800 readonly amount: u128;1801 } & Struct;1802 readonly type: 'Transfer' | 'SetBalance' | 'ForceTransfer' | 'TransferKeepAlive' | 'TransferAll' | 'ForceUnreserve';1803 }18041805 /** @name PalletBalancesError (183) */1806 interface PalletBalancesError extends Enum {1807 readonly isVestingBalance: boolean;1808 readonly isLiquidityRestrictions: boolean;1809 readonly isInsufficientBalance: boolean;1810 readonly isExistentialDeposit: boolean;1811 readonly isKeepAlive: boolean;1812 readonly isExistingVestingSchedule: boolean;1813 readonly isDeadAccount: boolean;1814 readonly isTooManyReserves: boolean;1815 readonly type: 'VestingBalance' | 'LiquidityRestrictions' | 'InsufficientBalance' | 'ExistentialDeposit' | 'KeepAlive' | 'ExistingVestingSchedule' | 'DeadAccount' | 'TooManyReserves';1816 }18171818 /** @name PalletTimestampCall (185) */1819 interface PalletTimestampCall extends Enum {1820 readonly isSet: boolean;1821 readonly asSet: {1822 readonly now: Compact<u64>;1823 } & Struct;1824 readonly type: 'Set';1825 }18261827 /** @name PalletTransactionPaymentReleases (187) */1828 interface PalletTransactionPaymentReleases extends Enum {1829 readonly isV1Ancient: boolean;1830 readonly isV2: boolean;1831 readonly type: 'V1Ancient' | 'V2';1832 }18331834 /** @name PalletTreasuryProposal (188) */1835 interface PalletTreasuryProposal extends Struct {1836 readonly proposer: AccountId32;1837 readonly value: u128;1838 readonly beneficiary: AccountId32;1839 readonly bond: u128;1840 }18411842 /** @name PalletTreasuryCall (191) */1843 interface PalletTreasuryCall extends Enum {1844 readonly isProposeSpend: boolean;1845 readonly asProposeSpend: {1846 readonly value: Compact<u128>;1847 readonly beneficiary: MultiAddress;1848 } & Struct;1849 readonly isRejectProposal: boolean;1850 readonly asRejectProposal: {1851 readonly proposalId: Compact<u32>;1852 } & Struct;1853 readonly isApproveProposal: boolean;1854 readonly asApproveProposal: {1855 readonly proposalId: Compact<u32>;1856 } & Struct;1857 readonly isSpend: boolean;1858 readonly asSpend: {1859 readonly amount: Compact<u128>;1860 readonly beneficiary: MultiAddress;1861 } & Struct;1862 readonly isRemoveApproval: boolean;1863 readonly asRemoveApproval: {1864 readonly proposalId: Compact<u32>;1865 } & Struct;1866 readonly type: 'ProposeSpend' | 'RejectProposal' | 'ApproveProposal' | 'Spend' | 'RemoveApproval';1867 }18681869 /** @name FrameSupportPalletId (194) */1870 interface FrameSupportPalletId extends U8aFixed {}18711872 /** @name PalletTreasuryError (195) */1873 interface PalletTreasuryError extends Enum {1874 readonly isInsufficientProposersBalance: boolean;1875 readonly isInvalidIndex: boolean;1876 readonly isTooManyApprovals: boolean;1877 readonly isInsufficientPermission: boolean;1878 readonly isProposalNotApproved: boolean;1879 readonly type: 'InsufficientProposersBalance' | 'InvalidIndex' | 'TooManyApprovals' | 'InsufficientPermission' | 'ProposalNotApproved';1880 }18811882 /** @name PalletSudoCall (196) */1883 interface PalletSudoCall extends Enum {1884 readonly isSudo: boolean;1885 readonly asSudo: {1886 readonly call: Call;1887 } & Struct;1888 readonly isSudoUncheckedWeight: boolean;1889 readonly asSudoUncheckedWeight: {1890 readonly call: Call;1891 readonly weight: SpWeightsWeightV2Weight;1892 } & Struct;1893 readonly isSetKey: boolean;1894 readonly asSetKey: {1895 readonly new_: MultiAddress;1896 } & Struct;1897 readonly isSudoAs: boolean;1898 readonly asSudoAs: {1899 readonly who: MultiAddress;1900 readonly call: Call;1901 } & Struct;1902 readonly type: 'Sudo' | 'SudoUncheckedWeight' | 'SetKey' | 'SudoAs';1903 }19041905 /** @name OrmlVestingModuleCall (198) */1906 interface OrmlVestingModuleCall extends Enum {1907 readonly isClaim: boolean;1908 readonly isVestedTransfer: boolean;1909 readonly asVestedTransfer: {1910 readonly dest: MultiAddress;1911 readonly schedule: OrmlVestingVestingSchedule;1912 } & Struct;1913 readonly isUpdateVestingSchedules: boolean;1914 readonly asUpdateVestingSchedules: {1915 readonly who: MultiAddress;1916 readonly vestingSchedules: Vec<OrmlVestingVestingSchedule>;1917 } & Struct;1918 readonly isClaimFor: boolean;1919 readonly asClaimFor: {1920 readonly dest: MultiAddress;1921 } & Struct;1922 readonly type: 'Claim' | 'VestedTransfer' | 'UpdateVestingSchedules' | 'ClaimFor';1923 }19241925 /** @name OrmlXtokensModuleCall (200) */1926 interface OrmlXtokensModuleCall extends Enum {1927 readonly isTransfer: boolean;1928 readonly asTransfer: {1929 readonly currencyId: PalletForeignAssetsAssetIds;1930 readonly amount: u128;1931 readonly dest: XcmVersionedMultiLocation;1932 readonly destWeightLimit: XcmV2WeightLimit;1933 } & Struct;1934 readonly isTransferMultiasset: boolean;1935 readonly asTransferMultiasset: {1936 readonly asset: XcmVersionedMultiAsset;1937 readonly dest: XcmVersionedMultiLocation;1938 readonly destWeightLimit: XcmV2WeightLimit;1939 } & Struct;1940 readonly isTransferWithFee: boolean;1941 readonly asTransferWithFee: {1942 readonly currencyId: PalletForeignAssetsAssetIds;1943 readonly amount: u128;1944 readonly fee: u128;1945 readonly dest: XcmVersionedMultiLocation;1946 readonly destWeightLimit: XcmV2WeightLimit;1947 } & Struct;1948 readonly isTransferMultiassetWithFee: boolean;1949 readonly asTransferMultiassetWithFee: {1950 readonly asset: XcmVersionedMultiAsset;1951 readonly fee: XcmVersionedMultiAsset;1952 readonly dest: XcmVersionedMultiLocation;1953 readonly destWeightLimit: XcmV2WeightLimit;1954 } & Struct;1955 readonly isTransferMulticurrencies: boolean;1956 readonly asTransferMulticurrencies: {1957 readonly currencies: Vec<ITuple<[PalletForeignAssetsAssetIds, u128]>>;1958 readonly feeItem: u32;1959 readonly dest: XcmVersionedMultiLocation;1960 readonly destWeightLimit: XcmV2WeightLimit;1961 } & Struct;1962 readonly isTransferMultiassets: boolean;1963 readonly asTransferMultiassets: {1964 readonly assets: XcmVersionedMultiAssets;1965 readonly feeItem: u32;1966 readonly dest: XcmVersionedMultiLocation;1967 readonly destWeightLimit: XcmV2WeightLimit;1968 } & Struct;1969 readonly type: 'Transfer' | 'TransferMultiasset' | 'TransferWithFee' | 'TransferMultiassetWithFee' | 'TransferMulticurrencies' | 'TransferMultiassets';1970 }19711972 /** @name XcmVersionedMultiAsset (201) */1973 interface XcmVersionedMultiAsset extends Enum {1974 readonly isV0: boolean;1975 readonly asV0: XcmV0MultiAsset;1976 readonly isV1: boolean;1977 readonly asV1: XcmV1MultiAsset;1978 readonly type: 'V0' | 'V1';1979 }19801981 /** @name OrmlTokensModuleCall (204) */1982 interface OrmlTokensModuleCall extends Enum {1983 readonly isTransfer: boolean;1984 readonly asTransfer: {1985 readonly dest: MultiAddress;1986 readonly currencyId: PalletForeignAssetsAssetIds;1987 readonly amount: Compact<u128>;1988 } & Struct;1989 readonly isTransferAll: boolean;1990 readonly asTransferAll: {1991 readonly dest: MultiAddress;1992 readonly currencyId: PalletForeignAssetsAssetIds;1993 readonly keepAlive: bool;1994 } & Struct;1995 readonly isTransferKeepAlive: boolean;1996 readonly asTransferKeepAlive: {1997 readonly dest: MultiAddress;1998 readonly currencyId: PalletForeignAssetsAssetIds;1999 readonly amount: Compact<u128>;2000 } & Struct;2001 readonly isForceTransfer: boolean;2002 readonly asForceTransfer: {2003 readonly source: MultiAddress;2004 readonly dest: MultiAddress;2005 readonly currencyId: PalletForeignAssetsAssetIds;2006 readonly amount: Compact<u128>;2007 } & Struct;2008 readonly isSetBalance: boolean;2009 readonly asSetBalance: {2010 readonly who: MultiAddress;2011 readonly currencyId: PalletForeignAssetsAssetIds;2012 readonly newFree: Compact<u128>;2013 readonly newReserved: Compact<u128>;2014 } & Struct;2015 readonly type: 'Transfer' | 'TransferAll' | 'TransferKeepAlive' | 'ForceTransfer' | 'SetBalance';2016 }20172018 /** @name CumulusPalletXcmpQueueCall (205) */2019 interface CumulusPalletXcmpQueueCall extends Enum {2020 readonly isServiceOverweight: boolean;2021 readonly asServiceOverweight: {2022 readonly index: u64;2023 readonly weightLimit: u64;2024 } & Struct;2025 readonly isSuspendXcmExecution: boolean;2026 readonly isResumeXcmExecution: boolean;2027 readonly isUpdateSuspendThreshold: boolean;2028 readonly asUpdateSuspendThreshold: {2029 readonly new_: u32;2030 } & Struct;2031 readonly isUpdateDropThreshold: boolean;2032 readonly asUpdateDropThreshold: {2033 readonly new_: u32;2034 } & Struct;2035 readonly isUpdateResumeThreshold: boolean;2036 readonly asUpdateResumeThreshold: {2037 readonly new_: u32;2038 } & Struct;2039 readonly isUpdateThresholdWeight: boolean;2040 readonly asUpdateThresholdWeight: {2041 readonly new_: u64;2042 } & Struct;2043 readonly isUpdateWeightRestrictDecay: boolean;2044 readonly asUpdateWeightRestrictDecay: {2045 readonly new_: u64;2046 } & Struct;2047 readonly isUpdateXcmpMaxIndividualWeight: boolean;2048 readonly asUpdateXcmpMaxIndividualWeight: {2049 readonly new_: u64;2050 } & Struct;2051 readonly type: 'ServiceOverweight' | 'SuspendXcmExecution' | 'ResumeXcmExecution' | 'UpdateSuspendThreshold' | 'UpdateDropThreshold' | 'UpdateResumeThreshold' | 'UpdateThresholdWeight' | 'UpdateWeightRestrictDecay' | 'UpdateXcmpMaxIndividualWeight';2052 }20532054 /** @name PalletXcmCall (206) */2055 interface PalletXcmCall extends Enum {2056 readonly isSend: boolean;2057 readonly asSend: {2058 readonly dest: XcmVersionedMultiLocation;2059 readonly message: XcmVersionedXcm;2060 } & Struct;2061 readonly isTeleportAssets: boolean;2062 readonly asTeleportAssets: {2063 readonly dest: XcmVersionedMultiLocation;2064 readonly beneficiary: XcmVersionedMultiLocation;2065 readonly assets: XcmVersionedMultiAssets;2066 readonly feeAssetItem: u32;2067 } & Struct;2068 readonly isReserveTransferAssets: boolean;2069 readonly asReserveTransferAssets: {2070 readonly dest: XcmVersionedMultiLocation;2071 readonly beneficiary: XcmVersionedMultiLocation;2072 readonly assets: XcmVersionedMultiAssets;2073 readonly feeAssetItem: u32;2074 } & Struct;2075 readonly isExecute: boolean;2076 readonly asExecute: {2077 readonly message: XcmVersionedXcm;2078 readonly maxWeight: u64;2079 } & Struct;2080 readonly isForceXcmVersion: boolean;2081 readonly asForceXcmVersion: {2082 readonly location: XcmV1MultiLocation;2083 readonly xcmVersion: u32;2084 } & Struct;2085 readonly isForceDefaultXcmVersion: boolean;2086 readonly asForceDefaultXcmVersion: {2087 readonly maybeXcmVersion: Option<u32>;2088 } & Struct;2089 readonly isForceSubscribeVersionNotify: boolean;2090 readonly asForceSubscribeVersionNotify: {2091 readonly location: XcmVersionedMultiLocation;2092 } & Struct;2093 readonly isForceUnsubscribeVersionNotify: boolean;2094 readonly asForceUnsubscribeVersionNotify: {2095 readonly location: XcmVersionedMultiLocation;2096 } & Struct;2097 readonly isLimitedReserveTransferAssets: boolean;2098 readonly asLimitedReserveTransferAssets: {2099 readonly dest: XcmVersionedMultiLocation;2100 readonly beneficiary: XcmVersionedMultiLocation;2101 readonly assets: XcmVersionedMultiAssets;2102 readonly feeAssetItem: u32;2103 readonly weightLimit: XcmV2WeightLimit;2104 } & Struct;2105 readonly isLimitedTeleportAssets: boolean;2106 readonly asLimitedTeleportAssets: {2107 readonly dest: XcmVersionedMultiLocation;2108 readonly beneficiary: XcmVersionedMultiLocation;2109 readonly assets: XcmVersionedMultiAssets;2110 readonly feeAssetItem: u32;2111 readonly weightLimit: XcmV2WeightLimit;2112 } & Struct;2113 readonly type: 'Send' | 'TeleportAssets' | 'ReserveTransferAssets' | 'Execute' | 'ForceXcmVersion' | 'ForceDefaultXcmVersion' | 'ForceSubscribeVersionNotify' | 'ForceUnsubscribeVersionNotify' | 'LimitedReserveTransferAssets' | 'LimitedTeleportAssets';2114 }21152116 /** @name XcmVersionedXcm (207) */2117 interface XcmVersionedXcm extends Enum {2118 readonly isV0: boolean;2119 readonly asV0: XcmV0Xcm;2120 readonly isV1: boolean;2121 readonly asV1: XcmV1Xcm;2122 readonly isV2: boolean;2123 readonly asV2: XcmV2Xcm;2124 readonly type: 'V0' | 'V1' | 'V2';2125 }21262127 /** @name XcmV0Xcm (208) */2128 interface XcmV0Xcm extends Enum {2129 readonly isWithdrawAsset: boolean;2130 readonly asWithdrawAsset: {2131 readonly assets: Vec<XcmV0MultiAsset>;2132 readonly effects: Vec<XcmV0Order>;2133 } & Struct;2134 readonly isReserveAssetDeposit: boolean;2135 readonly asReserveAssetDeposit: {2136 readonly assets: Vec<XcmV0MultiAsset>;2137 readonly effects: Vec<XcmV0Order>;2138 } & Struct;2139 readonly isTeleportAsset: boolean;2140 readonly asTeleportAsset: {2141 readonly assets: Vec<XcmV0MultiAsset>;2142 readonly effects: Vec<XcmV0Order>;2143 } & Struct;2144 readonly isQueryResponse: boolean;2145 readonly asQueryResponse: {2146 readonly queryId: Compact<u64>;2147 readonly response: XcmV0Response;2148 } & Struct;2149 readonly isTransferAsset: boolean;2150 readonly asTransferAsset: {2151 readonly assets: Vec<XcmV0MultiAsset>;2152 readonly dest: XcmV0MultiLocation;2153 } & Struct;2154 readonly isTransferReserveAsset: boolean;2155 readonly asTransferReserveAsset: {2156 readonly assets: Vec<XcmV0MultiAsset>;2157 readonly dest: XcmV0MultiLocation;2158 readonly effects: Vec<XcmV0Order>;2159 } & Struct;2160 readonly isTransact: boolean;2161 readonly asTransact: {2162 readonly originType: XcmV0OriginKind;2163 readonly requireWeightAtMost: u64;2164 readonly call: XcmDoubleEncoded;2165 } & Struct;2166 readonly isHrmpNewChannelOpenRequest: boolean;2167 readonly asHrmpNewChannelOpenRequest: {2168 readonly sender: Compact<u32>;2169 readonly maxMessageSize: Compact<u32>;2170 readonly maxCapacity: Compact<u32>;2171 } & Struct;2172 readonly isHrmpChannelAccepted: boolean;2173 readonly asHrmpChannelAccepted: {2174 readonly recipient: Compact<u32>;2175 } & Struct;2176 readonly isHrmpChannelClosing: boolean;2177 readonly asHrmpChannelClosing: {2178 readonly initiator: Compact<u32>;2179 readonly sender: Compact<u32>;2180 readonly recipient: Compact<u32>;2181 } & Struct;2182 readonly isRelayedFrom: boolean;2183 readonly asRelayedFrom: {2184 readonly who: XcmV0MultiLocation;2185 readonly message: XcmV0Xcm;2186 } & Struct;2187 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposit' | 'TeleportAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom';2188 }21892190 /** @name XcmV0Order (210) */2191 interface XcmV0Order extends Enum {2192 readonly isNull: boolean;2193 readonly isDepositAsset: boolean;2194 readonly asDepositAsset: {2195 readonly assets: Vec<XcmV0MultiAsset>;2196 readonly dest: XcmV0MultiLocation;2197 } & Struct;2198 readonly isDepositReserveAsset: boolean;2199 readonly asDepositReserveAsset: {2200 readonly assets: Vec<XcmV0MultiAsset>;2201 readonly dest: XcmV0MultiLocation;2202 readonly effects: Vec<XcmV0Order>;2203 } & Struct;2204 readonly isExchangeAsset: boolean;2205 readonly asExchangeAsset: {2206 readonly give: Vec<XcmV0MultiAsset>;2207 readonly receive: Vec<XcmV0MultiAsset>;2208 } & Struct;2209 readonly isInitiateReserveWithdraw: boolean;2210 readonly asInitiateReserveWithdraw: {2211 readonly assets: Vec<XcmV0MultiAsset>;2212 readonly reserve: XcmV0MultiLocation;2213 readonly effects: Vec<XcmV0Order>;2214 } & Struct;2215 readonly isInitiateTeleport: boolean;2216 readonly asInitiateTeleport: {2217 readonly assets: Vec<XcmV0MultiAsset>;2218 readonly dest: XcmV0MultiLocation;2219 readonly effects: Vec<XcmV0Order>;2220 } & Struct;2221 readonly isQueryHolding: boolean;2222 readonly asQueryHolding: {2223 readonly queryId: Compact<u64>;2224 readonly dest: XcmV0MultiLocation;2225 readonly assets: Vec<XcmV0MultiAsset>;2226 } & Struct;2227 readonly isBuyExecution: boolean;2228 readonly asBuyExecution: {2229 readonly fees: XcmV0MultiAsset;2230 readonly weight: u64;2231 readonly debt: u64;2232 readonly haltOnError: bool;2233 readonly xcm: Vec<XcmV0Xcm>;2234 } & Struct;2235 readonly type: 'Null' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2236 }22372238 /** @name XcmV0Response (212) */2239 interface XcmV0Response extends Enum {2240 readonly isAssets: boolean;2241 readonly asAssets: Vec<XcmV0MultiAsset>;2242 readonly type: 'Assets';2243 }22442245 /** @name XcmV1Xcm (213) */2246 interface XcmV1Xcm extends Enum {2247 readonly isWithdrawAsset: boolean;2248 readonly asWithdrawAsset: {2249 readonly assets: XcmV1MultiassetMultiAssets;2250 readonly effects: Vec<XcmV1Order>;2251 } & Struct;2252 readonly isReserveAssetDeposited: boolean;2253 readonly asReserveAssetDeposited: {2254 readonly assets: XcmV1MultiassetMultiAssets;2255 readonly effects: Vec<XcmV1Order>;2256 } & Struct;2257 readonly isReceiveTeleportedAsset: boolean;2258 readonly asReceiveTeleportedAsset: {2259 readonly assets: XcmV1MultiassetMultiAssets;2260 readonly effects: Vec<XcmV1Order>;2261 } & Struct;2262 readonly isQueryResponse: boolean;2263 readonly asQueryResponse: {2264 readonly queryId: Compact<u64>;2265 readonly response: XcmV1Response;2266 } & Struct;2267 readonly isTransferAsset: boolean;2268 readonly asTransferAsset: {2269 readonly assets: XcmV1MultiassetMultiAssets;2270 readonly beneficiary: XcmV1MultiLocation;2271 } & Struct;2272 readonly isTransferReserveAsset: boolean;2273 readonly asTransferReserveAsset: {2274 readonly assets: XcmV1MultiassetMultiAssets;2275 readonly dest: XcmV1MultiLocation;2276 readonly effects: Vec<XcmV1Order>;2277 } & Struct;2278 readonly isTransact: boolean;2279 readonly asTransact: {2280 readonly originType: XcmV0OriginKind;2281 readonly requireWeightAtMost: u64;2282 readonly call: XcmDoubleEncoded;2283 } & Struct;2284 readonly isHrmpNewChannelOpenRequest: boolean;2285 readonly asHrmpNewChannelOpenRequest: {2286 readonly sender: Compact<u32>;2287 readonly maxMessageSize: Compact<u32>;2288 readonly maxCapacity: Compact<u32>;2289 } & Struct;2290 readonly isHrmpChannelAccepted: boolean;2291 readonly asHrmpChannelAccepted: {2292 readonly recipient: Compact<u32>;2293 } & Struct;2294 readonly isHrmpChannelClosing: boolean;2295 readonly asHrmpChannelClosing: {2296 readonly initiator: Compact<u32>;2297 readonly sender: Compact<u32>;2298 readonly recipient: Compact<u32>;2299 } & Struct;2300 readonly isRelayedFrom: boolean;2301 readonly asRelayedFrom: {2302 readonly who: XcmV1MultilocationJunctions;2303 readonly message: XcmV1Xcm;2304 } & Struct;2305 readonly isSubscribeVersion: boolean;2306 readonly asSubscribeVersion: {2307 readonly queryId: Compact<u64>;2308 readonly maxResponseWeight: Compact<u64>;2309 } & Struct;2310 readonly isUnsubscribeVersion: boolean;2311 readonly type: 'WithdrawAsset' | 'ReserveAssetDeposited' | 'ReceiveTeleportedAsset' | 'QueryResponse' | 'TransferAsset' | 'TransferReserveAsset' | 'Transact' | 'HrmpNewChannelOpenRequest' | 'HrmpChannelAccepted' | 'HrmpChannelClosing' | 'RelayedFrom' | 'SubscribeVersion' | 'UnsubscribeVersion';2312 }23132314 /** @name XcmV1Order (215) */2315 interface XcmV1Order extends Enum {2316 readonly isNoop: boolean;2317 readonly isDepositAsset: boolean;2318 readonly asDepositAsset: {2319 readonly assets: XcmV1MultiassetMultiAssetFilter;2320 readonly maxAssets: u32;2321 readonly beneficiary: XcmV1MultiLocation;2322 } & Struct;2323 readonly isDepositReserveAsset: boolean;2324 readonly asDepositReserveAsset: {2325 readonly assets: XcmV1MultiassetMultiAssetFilter;2326 readonly maxAssets: u32;2327 readonly dest: XcmV1MultiLocation;2328 readonly effects: Vec<XcmV1Order>;2329 } & Struct;2330 readonly isExchangeAsset: boolean;2331 readonly asExchangeAsset: {2332 readonly give: XcmV1MultiassetMultiAssetFilter;2333 readonly receive: XcmV1MultiassetMultiAssets;2334 } & Struct;2335 readonly isInitiateReserveWithdraw: boolean;2336 readonly asInitiateReserveWithdraw: {2337 readonly assets: XcmV1MultiassetMultiAssetFilter;2338 readonly reserve: XcmV1MultiLocation;2339 readonly effects: Vec<XcmV1Order>;2340 } & Struct;2341 readonly isInitiateTeleport: boolean;2342 readonly asInitiateTeleport: {2343 readonly assets: XcmV1MultiassetMultiAssetFilter;2344 readonly dest: XcmV1MultiLocation;2345 readonly effects: Vec<XcmV1Order>;2346 } & Struct;2347 readonly isQueryHolding: boolean;2348 readonly asQueryHolding: {2349 readonly queryId: Compact<u64>;2350 readonly dest: XcmV1MultiLocation;2351 readonly assets: XcmV1MultiassetMultiAssetFilter;2352 } & Struct;2353 readonly isBuyExecution: boolean;2354 readonly asBuyExecution: {2355 readonly fees: XcmV1MultiAsset;2356 readonly weight: u64;2357 readonly debt: u64;2358 readonly haltOnError: bool;2359 readonly instructions: Vec<XcmV1Xcm>;2360 } & Struct;2361 readonly type: 'Noop' | 'DepositAsset' | 'DepositReserveAsset' | 'ExchangeAsset' | 'InitiateReserveWithdraw' | 'InitiateTeleport' | 'QueryHolding' | 'BuyExecution';2362 }23632364 /** @name XcmV1Response (217) */2365 interface XcmV1Response extends Enum {2366 readonly isAssets: boolean;2367 readonly asAssets: XcmV1MultiassetMultiAssets;2368 readonly isVersion: boolean;2369 readonly asVersion: u32;2370 readonly type: 'Assets' | 'Version';2371 }23722373 /** @name CumulusPalletXcmCall (231) */2374 type CumulusPalletXcmCall = Null;23752376 /** @name CumulusPalletDmpQueueCall (232) */2377 interface CumulusPalletDmpQueueCall extends Enum {2378 readonly isServiceOverweight: boolean;2379 readonly asServiceOverweight: {2380 readonly index: u64;2381 readonly weightLimit: u64;2382 } & Struct;2383 readonly type: 'ServiceOverweight';2384 }23852386 /** @name PalletInflationCall (233) */2387 interface PalletInflationCall extends Enum {2388 readonly isStartInflation: boolean;2389 readonly asStartInflation: {2390 readonly inflationStartRelayBlock: u32;2391 } & Struct;2392 readonly type: 'StartInflation';2393 }23942395 /** @name PalletUniqueCall (234) */2396 interface PalletUniqueCall extends Enum {2397 readonly isCreateCollection: boolean;2398 readonly asCreateCollection: {2399 readonly collectionName: Vec<u16>;2400 readonly collectionDescription: Vec<u16>;2401 readonly tokenPrefix: Bytes;2402 readonly mode: UpDataStructsCollectionMode;2403 } & Struct;2404 readonly isCreateCollectionEx: boolean;2405 readonly asCreateCollectionEx: {2406 readonly data: UpDataStructsCreateCollectionData;2407 } & Struct;2408 readonly isDestroyCollection: boolean;2409 readonly asDestroyCollection: {2410 readonly collectionId: u32;2411 } & Struct;2412 readonly isAddToAllowList: boolean;2413 readonly asAddToAllowList: {2414 readonly collectionId: u32;2415 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2416 } & Struct;2417 readonly isRemoveFromAllowList: boolean;2418 readonly asRemoveFromAllowList: {2419 readonly collectionId: u32;2420 readonly address: PalletEvmAccountBasicCrossAccountIdRepr;2421 } & Struct;2422 readonly isChangeCollectionOwner: boolean;2423 readonly asChangeCollectionOwner: {2424 readonly collectionId: u32;2425 readonly newOwner: AccountId32;2426 } & Struct;2427 readonly isAddCollectionAdmin: boolean;2428 readonly asAddCollectionAdmin: {2429 readonly collectionId: u32;2430 readonly newAdminId: PalletEvmAccountBasicCrossAccountIdRepr;2431 } & Struct;2432 readonly isRemoveCollectionAdmin: boolean;2433 readonly asRemoveCollectionAdmin: {2434 readonly collectionId: u32;2435 readonly accountId: PalletEvmAccountBasicCrossAccountIdRepr;2436 } & Struct;2437 readonly isSetCollectionSponsor: boolean;2438 readonly asSetCollectionSponsor: {2439 readonly collectionId: u32;2440 readonly newSponsor: AccountId32;2441 } & Struct;2442 readonly isConfirmSponsorship: boolean;2443 readonly asConfirmSponsorship: {2444 readonly collectionId: u32;2445 } & Struct;2446 readonly isRemoveCollectionSponsor: boolean;2447 readonly asRemoveCollectionSponsor: {2448 readonly collectionId: u32;2449 } & Struct;2450 readonly isCreateItem: boolean;2451 readonly asCreateItem: {2452 readonly collectionId: u32;2453 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2454 readonly data: UpDataStructsCreateItemData;2455 } & Struct;2456 readonly isCreateMultipleItems: boolean;2457 readonly asCreateMultipleItems: {2458 readonly collectionId: u32;2459 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2460 readonly itemsData: Vec<UpDataStructsCreateItemData>;2461 } & Struct;2462 readonly isSetCollectionProperties: boolean;2463 readonly asSetCollectionProperties: {2464 readonly collectionId: u32;2465 readonly properties: Vec<UpDataStructsProperty>;2466 } & Struct;2467 readonly isDeleteCollectionProperties: boolean;2468 readonly asDeleteCollectionProperties: {2469 readonly collectionId: u32;2470 readonly propertyKeys: Vec<Bytes>;2471 } & Struct;2472 readonly isSetTokenProperties: boolean;2473 readonly asSetTokenProperties: {2474 readonly collectionId: u32;2475 readonly tokenId: u32;2476 readonly properties: Vec<UpDataStructsProperty>;2477 } & Struct;2478 readonly isDeleteTokenProperties: boolean;2479 readonly asDeleteTokenProperties: {2480 readonly collectionId: u32;2481 readonly tokenId: u32;2482 readonly propertyKeys: Vec<Bytes>;2483 } & Struct;2484 readonly isSetTokenPropertyPermissions: boolean;2485 readonly asSetTokenPropertyPermissions: {2486 readonly collectionId: u32;2487 readonly propertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2488 } & Struct;2489 readonly isCreateMultipleItemsEx: boolean;2490 readonly asCreateMultipleItemsEx: {2491 readonly collectionId: u32;2492 readonly data: UpDataStructsCreateItemExData;2493 } & Struct;2494 readonly isSetTransfersEnabledFlag: boolean;2495 readonly asSetTransfersEnabledFlag: {2496 readonly collectionId: u32;2497 readonly value: bool;2498 } & Struct;2499 readonly isBurnItem: boolean;2500 readonly asBurnItem: {2501 readonly collectionId: u32;2502 readonly itemId: u32;2503 readonly value: u128;2504 } & Struct;2505 readonly isBurnFrom: boolean;2506 readonly asBurnFrom: {2507 readonly collectionId: u32;2508 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2509 readonly itemId: u32;2510 readonly value: u128;2511 } & Struct;2512 readonly isTransfer: boolean;2513 readonly asTransfer: {2514 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2515 readonly collectionId: u32;2516 readonly itemId: u32;2517 readonly value: u128;2518 } & Struct;2519 readonly isApprove: boolean;2520 readonly asApprove: {2521 readonly spender: PalletEvmAccountBasicCrossAccountIdRepr;2522 readonly collectionId: u32;2523 readonly itemId: u32;2524 readonly amount: u128;2525 } & Struct;2526 readonly isTransferFrom: boolean;2527 readonly asTransferFrom: {2528 readonly from: PalletEvmAccountBasicCrossAccountIdRepr;2529 readonly recipient: PalletEvmAccountBasicCrossAccountIdRepr;2530 readonly collectionId: u32;2531 readonly itemId: u32;2532 readonly value: u128;2533 } & Struct;2534 readonly isSetCollectionLimits: boolean;2535 readonly asSetCollectionLimits: {2536 readonly collectionId: u32;2537 readonly newLimit: UpDataStructsCollectionLimits;2538 } & Struct;2539 readonly isSetCollectionPermissions: boolean;2540 readonly asSetCollectionPermissions: {2541 readonly collectionId: u32;2542 readonly newPermission: UpDataStructsCollectionPermissions;2543 } & Struct;2544 readonly isRepartition: boolean;2545 readonly asRepartition: {2546 readonly collectionId: u32;2547 readonly tokenId: u32;2548 readonly amount: u128;2549 } & Struct;2550 readonly isSetAllowanceForAll: boolean;2551 readonly asSetAllowanceForAll: {2552 readonly collectionId: u32;2553 readonly operator: PalletEvmAccountBasicCrossAccountIdRepr;2554 readonly approve: bool;2555 } & Struct;2556 readonly type: 'CreateCollection' | 'CreateCollectionEx' | 'DestroyCollection' | 'AddToAllowList' | 'RemoveFromAllowList' | 'ChangeCollectionOwner' | 'AddCollectionAdmin' | 'RemoveCollectionAdmin' | 'SetCollectionSponsor' | 'ConfirmSponsorship' | 'RemoveCollectionSponsor' | 'CreateItem' | 'CreateMultipleItems' | 'SetCollectionProperties' | 'DeleteCollectionProperties' | 'SetTokenProperties' | 'DeleteTokenProperties' | 'SetTokenPropertyPermissions' | 'CreateMultipleItemsEx' | 'SetTransfersEnabledFlag' | 'BurnItem' | 'BurnFrom' | 'Transfer' | 'Approve' | 'TransferFrom' | 'SetCollectionLimits' | 'SetCollectionPermissions' | 'Repartition' | 'SetAllowanceForAll';2557 }25582559 /** @name UpDataStructsCollectionMode (239) */2560 interface UpDataStructsCollectionMode extends Enum {2561 readonly isNft: boolean;2562 readonly isFungible: boolean;2563 readonly asFungible: u8;2564 readonly isReFungible: boolean;2565 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2566 }25672568 /** @name UpDataStructsCreateCollectionData (240) */2569 interface UpDataStructsCreateCollectionData extends Struct {2570 readonly mode: UpDataStructsCollectionMode;2571 readonly access: Option<UpDataStructsAccessMode>;2572 readonly name: Vec<u16>;2573 readonly description: Vec<u16>;2574 readonly tokenPrefix: Bytes;2575 readonly pendingSponsor: Option<AccountId32>;2576 readonly limits: Option<UpDataStructsCollectionLimits>;2577 readonly permissions: Option<UpDataStructsCollectionPermissions>;2578 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;2579 readonly properties: Vec<UpDataStructsProperty>;2580 }25812582 /** @name UpDataStructsAccessMode (242) */2583 interface UpDataStructsAccessMode extends Enum {2584 readonly isNormal: boolean;2585 readonly isAllowList: boolean;2586 readonly type: 'Normal' | 'AllowList';2587 }25882589 /** @name UpDataStructsCollectionLimits (244) */2590 interface UpDataStructsCollectionLimits extends Struct {2591 readonly accountTokenOwnershipLimit: Option<u32>;2592 readonly sponsoredDataSize: Option<u32>;2593 readonly sponsoredDataRateLimit: Option<UpDataStructsSponsoringRateLimit>;2594 readonly tokenLimit: Option<u32>;2595 readonly sponsorTransferTimeout: Option<u32>;2596 readonly sponsorApproveTimeout: Option<u32>;2597 readonly ownerCanTransfer: Option<bool>;2598 readonly ownerCanDestroy: Option<bool>;2599 readonly transfersEnabled: Option<bool>;2600 }26012602 /** @name UpDataStructsSponsoringRateLimit (246) */2603 interface UpDataStructsSponsoringRateLimit extends Enum {2604 readonly isSponsoringDisabled: boolean;2605 readonly isBlocks: boolean;2606 readonly asBlocks: u32;2607 readonly type: 'SponsoringDisabled' | 'Blocks';2608 }26092610 /** @name UpDataStructsCollectionPermissions (249) */2611 interface UpDataStructsCollectionPermissions extends Struct {2612 readonly access: Option<UpDataStructsAccessMode>;2613 readonly mintMode: Option<bool>;2614 readonly nesting: Option<UpDataStructsNestingPermissions>;2615 }26162617 /** @name UpDataStructsNestingPermissions (251) */2618 interface UpDataStructsNestingPermissions extends Struct {2619 readonly tokenOwner: bool;2620 readonly collectionAdmin: bool;2621 readonly restricted: Option<UpDataStructsOwnerRestrictedSet>;2622 }26232624 /** @name UpDataStructsOwnerRestrictedSet (253) */2625 interface UpDataStructsOwnerRestrictedSet extends BTreeSet<u32> {}26262627 /** @name UpDataStructsPropertyKeyPermission (258) */2628 interface UpDataStructsPropertyKeyPermission extends Struct {2629 readonly key: Bytes;2630 readonly permission: UpDataStructsPropertyPermission;2631 }26322633 /** @name UpDataStructsPropertyPermission (259) */2634 interface UpDataStructsPropertyPermission extends Struct {2635 readonly mutable: bool;2636 readonly collectionAdmin: bool;2637 readonly tokenOwner: bool;2638 }26392640 /** @name UpDataStructsProperty (262) */2641 interface UpDataStructsProperty extends Struct {2642 readonly key: Bytes;2643 readonly value: Bytes;2644 }26452646 /** @name UpDataStructsCreateItemData (265) */2647 interface UpDataStructsCreateItemData extends Enum {2648 readonly isNft: boolean;2649 readonly asNft: UpDataStructsCreateNftData;2650 readonly isFungible: boolean;2651 readonly asFungible: UpDataStructsCreateFungibleData;2652 readonly isReFungible: boolean;2653 readonly asReFungible: UpDataStructsCreateReFungibleData;2654 readonly type: 'Nft' | 'Fungible' | 'ReFungible';2655 }26562657 /** @name UpDataStructsCreateNftData (266) */2658 interface UpDataStructsCreateNftData extends Struct {2659 readonly properties: Vec<UpDataStructsProperty>;2660 }26612662 /** @name UpDataStructsCreateFungibleData (267) */2663 interface UpDataStructsCreateFungibleData extends Struct {2664 readonly value: u128;2665 }26662667 /** @name UpDataStructsCreateReFungibleData (268) */2668 interface UpDataStructsCreateReFungibleData extends Struct {2669 readonly pieces: u128;2670 readonly properties: Vec<UpDataStructsProperty>;2671 }26722673 /** @name UpDataStructsCreateItemExData (271) */2674 interface UpDataStructsCreateItemExData extends Enum {2675 readonly isNft: boolean;2676 readonly asNft: Vec<UpDataStructsCreateNftExData>;2677 readonly isFungible: boolean;2678 readonly asFungible: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2679 readonly isRefungibleMultipleItems: boolean;2680 readonly asRefungibleMultipleItems: Vec<UpDataStructsCreateRefungibleExSingleOwner>;2681 readonly isRefungibleMultipleOwners: boolean;2682 readonly asRefungibleMultipleOwners: UpDataStructsCreateRefungibleExMultipleOwners;2683 readonly type: 'Nft' | 'Fungible' | 'RefungibleMultipleItems' | 'RefungibleMultipleOwners';2684 }26852686 /** @name UpDataStructsCreateNftExData (273) */2687 interface UpDataStructsCreateNftExData extends Struct {2688 readonly properties: Vec<UpDataStructsProperty>;2689 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;2690 }26912692 /** @name UpDataStructsCreateRefungibleExSingleOwner (280) */2693 interface UpDataStructsCreateRefungibleExSingleOwner extends Struct {2694 readonly user: PalletEvmAccountBasicCrossAccountIdRepr;2695 readonly pieces: u128;2696 readonly properties: Vec<UpDataStructsProperty>;2697 }26982699 /** @name UpDataStructsCreateRefungibleExMultipleOwners (282) */2700 interface UpDataStructsCreateRefungibleExMultipleOwners extends Struct {2701 readonly users: BTreeMap<PalletEvmAccountBasicCrossAccountIdRepr, u128>;2702 readonly properties: Vec<UpDataStructsProperty>;2703 }27042705 /** @name PalletUniqueSchedulerV2Call (283) */2706 interface PalletUniqueSchedulerV2Call extends Enum {2707 readonly isSchedule: boolean;2708 readonly asSchedule: {2709 readonly when: u32;2710 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2711 readonly priority: Option<u8>;2712 readonly call: Call;2713 } & Struct;2714 readonly isCancel: boolean;2715 readonly asCancel: {2716 readonly when: u32;2717 readonly index: u32;2718 } & Struct;2719 readonly isScheduleNamed: boolean;2720 readonly asScheduleNamed: {2721 readonly id: U8aFixed;2722 readonly when: u32;2723 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2724 readonly priority: Option<u8>;2725 readonly call: Call;2726 } & Struct;2727 readonly isCancelNamed: boolean;2728 readonly asCancelNamed: {2729 readonly id: U8aFixed;2730 } & Struct;2731 readonly isScheduleAfter: boolean;2732 readonly asScheduleAfter: {2733 readonly after: u32;2734 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2735 readonly priority: Option<u8>;2736 readonly call: Call;2737 } & Struct;2738 readonly isScheduleNamedAfter: boolean;2739 readonly asScheduleNamedAfter: {2740 readonly id: U8aFixed;2741 readonly after: u32;2742 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;2743 readonly priority: Option<u8>;2744 readonly call: Call;2745 } & Struct;2746 readonly isChangeNamedPriority: boolean;2747 readonly asChangeNamedPriority: {2748 readonly id: U8aFixed;2749 readonly priority: u8;2750 } & Struct;2751 readonly type: 'Schedule' | 'Cancel' | 'ScheduleNamed' | 'CancelNamed' | 'ScheduleAfter' | 'ScheduleNamedAfter' | 'ChangeNamedPriority';2752 }27532754 /** @name PalletConfigurationCall (286) */2755 interface PalletConfigurationCall extends Enum {2756 readonly isSetWeightToFeeCoefficientOverride: boolean;2757 readonly asSetWeightToFeeCoefficientOverride: {2758 readonly coeff: Option<u32>;2759 } & Struct;2760 readonly isSetMinGasPriceOverride: boolean;2761 readonly asSetMinGasPriceOverride: {2762 readonly coeff: Option<u64>;2763 } & Struct;2764 readonly type: 'SetWeightToFeeCoefficientOverride' | 'SetMinGasPriceOverride';2765 }27662767 /** @name PalletTemplateTransactionPaymentCall (288) */2768 type PalletTemplateTransactionPaymentCall = Null;27692770 /** @name PalletStructureCall (289) */2771 type PalletStructureCall = Null;27722773 /** @name PalletRmrkCoreCall (290) */2774 interface PalletRmrkCoreCall extends Enum {2775 readonly isCreateCollection: boolean;2776 readonly asCreateCollection: {2777 readonly metadata: Bytes;2778 readonly max: Option<u32>;2779 readonly symbol: Bytes;2780 } & Struct;2781 readonly isDestroyCollection: boolean;2782 readonly asDestroyCollection: {2783 readonly collectionId: u32;2784 } & Struct;2785 readonly isChangeCollectionIssuer: boolean;2786 readonly asChangeCollectionIssuer: {2787 readonly collectionId: u32;2788 readonly newIssuer: MultiAddress;2789 } & Struct;2790 readonly isLockCollection: boolean;2791 readonly asLockCollection: {2792 readonly collectionId: u32;2793 } & Struct;2794 readonly isMintNft: boolean;2795 readonly asMintNft: {2796 readonly owner: Option<AccountId32>;2797 readonly collectionId: u32;2798 readonly recipient: Option<AccountId32>;2799 readonly royaltyAmount: Option<Permill>;2800 readonly metadata: Bytes;2801 readonly transferable: bool;2802 readonly resources: Option<Vec<RmrkTraitsResourceResourceTypes>>;2803 } & Struct;2804 readonly isBurnNft: boolean;2805 readonly asBurnNft: {2806 readonly collectionId: u32;2807 readonly nftId: u32;2808 readonly maxBurns: u32;2809 } & Struct;2810 readonly isSend: boolean;2811 readonly asSend: {2812 readonly rmrkCollectionId: u32;2813 readonly rmrkNftId: u32;2814 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2815 } & Struct;2816 readonly isAcceptNft: boolean;2817 readonly asAcceptNft: {2818 readonly rmrkCollectionId: u32;2819 readonly rmrkNftId: u32;2820 readonly newOwner: RmrkTraitsNftAccountIdOrCollectionNftTuple;2821 } & Struct;2822 readonly isRejectNft: boolean;2823 readonly asRejectNft: {2824 readonly rmrkCollectionId: u32;2825 readonly rmrkNftId: u32;2826 } & Struct;2827 readonly isAcceptResource: boolean;2828 readonly asAcceptResource: {2829 readonly rmrkCollectionId: u32;2830 readonly rmrkNftId: u32;2831 readonly resourceId: u32;2832 } & Struct;2833 readonly isAcceptResourceRemoval: boolean;2834 readonly asAcceptResourceRemoval: {2835 readonly rmrkCollectionId: u32;2836 readonly rmrkNftId: u32;2837 readonly resourceId: u32;2838 } & Struct;2839 readonly isSetProperty: boolean;2840 readonly asSetProperty: {2841 readonly rmrkCollectionId: Compact<u32>;2842 readonly maybeNftId: Option<u32>;2843 readonly key: Bytes;2844 readonly value: Bytes;2845 } & Struct;2846 readonly isSetPriority: boolean;2847 readonly asSetPriority: {2848 readonly rmrkCollectionId: u32;2849 readonly rmrkNftId: u32;2850 readonly priorities: Vec<u32>;2851 } & Struct;2852 readonly isAddBasicResource: boolean;2853 readonly asAddBasicResource: {2854 readonly rmrkCollectionId: u32;2855 readonly nftId: u32;2856 readonly resource: RmrkTraitsResourceBasicResource;2857 } & Struct;2858 readonly isAddComposableResource: boolean;2859 readonly asAddComposableResource: {2860 readonly rmrkCollectionId: u32;2861 readonly nftId: u32;2862 readonly resource: RmrkTraitsResourceComposableResource;2863 } & Struct;2864 readonly isAddSlotResource: boolean;2865 readonly asAddSlotResource: {2866 readonly rmrkCollectionId: u32;2867 readonly nftId: u32;2868 readonly resource: RmrkTraitsResourceSlotResource;2869 } & Struct;2870 readonly isRemoveResource: boolean;2871 readonly asRemoveResource: {2872 readonly rmrkCollectionId: u32;2873 readonly nftId: u32;2874 readonly resourceId: u32;2875 } & Struct;2876 readonly type: 'CreateCollection' | 'DestroyCollection' | 'ChangeCollectionIssuer' | 'LockCollection' | 'MintNft' | 'BurnNft' | 'Send' | 'AcceptNft' | 'RejectNft' | 'AcceptResource' | 'AcceptResourceRemoval' | 'SetProperty' | 'SetPriority' | 'AddBasicResource' | 'AddComposableResource' | 'AddSlotResource' | 'RemoveResource';2877 }28782879 /** @name RmrkTraitsResourceResourceTypes (296) */2880 interface RmrkTraitsResourceResourceTypes extends Enum {2881 readonly isBasic: boolean;2882 readonly asBasic: RmrkTraitsResourceBasicResource;2883 readonly isComposable: boolean;2884 readonly asComposable: RmrkTraitsResourceComposableResource;2885 readonly isSlot: boolean;2886 readonly asSlot: RmrkTraitsResourceSlotResource;2887 readonly type: 'Basic' | 'Composable' | 'Slot';2888 }28892890 /** @name RmrkTraitsResourceBasicResource (298) */2891 interface RmrkTraitsResourceBasicResource extends Struct {2892 readonly src: Option<Bytes>;2893 readonly metadata: Option<Bytes>;2894 readonly license: Option<Bytes>;2895 readonly thumb: Option<Bytes>;2896 }28972898 /** @name RmrkTraitsResourceComposableResource (300) */2899 interface RmrkTraitsResourceComposableResource extends Struct {2900 readonly parts: Vec<u32>;2901 readonly base: u32;2902 readonly src: Option<Bytes>;2903 readonly metadata: Option<Bytes>;2904 readonly license: Option<Bytes>;2905 readonly thumb: Option<Bytes>;2906 }29072908 /** @name RmrkTraitsResourceSlotResource (301) */2909 interface RmrkTraitsResourceSlotResource extends Struct {2910 readonly base: u32;2911 readonly src: Option<Bytes>;2912 readonly metadata: Option<Bytes>;2913 readonly slot: u32;2914 readonly license: Option<Bytes>;2915 readonly thumb: Option<Bytes>;2916 }29172918 /** @name PalletRmrkEquipCall (304) */2919 interface PalletRmrkEquipCall extends Enum {2920 readonly isCreateBase: boolean;2921 readonly asCreateBase: {2922 readonly baseType: Bytes;2923 readonly symbol: Bytes;2924 readonly parts: Vec<RmrkTraitsPartPartType>;2925 } & Struct;2926 readonly isThemeAdd: boolean;2927 readonly asThemeAdd: {2928 readonly baseId: u32;2929 readonly theme: RmrkTraitsTheme;2930 } & Struct;2931 readonly isEquippable: boolean;2932 readonly asEquippable: {2933 readonly baseId: u32;2934 readonly slotId: u32;2935 readonly equippables: RmrkTraitsPartEquippableList;2936 } & Struct;2937 readonly type: 'CreateBase' | 'ThemeAdd' | 'Equippable';2938 }29392940 /** @name RmrkTraitsPartPartType (307) */2941 interface RmrkTraitsPartPartType extends Enum {2942 readonly isFixedPart: boolean;2943 readonly asFixedPart: RmrkTraitsPartFixedPart;2944 readonly isSlotPart: boolean;2945 readonly asSlotPart: RmrkTraitsPartSlotPart;2946 readonly type: 'FixedPart' | 'SlotPart';2947 }29482949 /** @name RmrkTraitsPartFixedPart (309) */2950 interface RmrkTraitsPartFixedPart extends Struct {2951 readonly id: u32;2952 readonly z: u32;2953 readonly src: Bytes;2954 }29552956 /** @name RmrkTraitsPartSlotPart (310) */2957 interface RmrkTraitsPartSlotPart extends Struct {2958 readonly id: u32;2959 readonly equippable: RmrkTraitsPartEquippableList;2960 readonly src: Bytes;2961 readonly z: u32;2962 }29632964 /** @name RmrkTraitsPartEquippableList (311) */2965 interface RmrkTraitsPartEquippableList extends Enum {2966 readonly isAll: boolean;2967 readonly isEmpty: boolean;2968 readonly isCustom: boolean;2969 readonly asCustom: Vec<u32>;2970 readonly type: 'All' | 'Empty' | 'Custom';2971 }29722973 /** @name RmrkTraitsTheme (313) */2974 interface RmrkTraitsTheme extends Struct {2975 readonly name: Bytes;2976 readonly properties: Vec<RmrkTraitsThemeThemeProperty>;2977 readonly inherit: bool;2978 }29792980 /** @name RmrkTraitsThemeThemeProperty (315) */2981 interface RmrkTraitsThemeThemeProperty extends Struct {2982 readonly key: Bytes;2983 readonly value: Bytes;2984 }29852986 /** @name PalletAppPromotionCall (317) */2987 interface PalletAppPromotionCall extends Enum {2988 readonly isSetAdminAddress: boolean;2989 readonly asSetAdminAddress: {2990 readonly admin: PalletEvmAccountBasicCrossAccountIdRepr;2991 } & Struct;2992 readonly isStake: boolean;2993 readonly asStake: {2994 readonly amount: u128;2995 } & Struct;2996 readonly isUnstake: boolean;2997 readonly isSponsorCollection: boolean;2998 readonly asSponsorCollection: {2999 readonly collectionId: u32;3000 } & Struct;3001 readonly isStopSponsoringCollection: boolean;3002 readonly asStopSponsoringCollection: {3003 readonly collectionId: u32;3004 } & Struct;3005 readonly isSponsorContract: boolean;3006 readonly asSponsorContract: {3007 readonly contractId: H160;3008 } & Struct;3009 readonly isStopSponsoringContract: boolean;3010 readonly asStopSponsoringContract: {3011 readonly contractId: H160;3012 } & Struct;3013 readonly isPayoutStakers: boolean;3014 readonly asPayoutStakers: {3015 readonly stakersNumber: Option<u8>;3016 } & Struct;3017 readonly type: 'SetAdminAddress' | 'Stake' | 'Unstake' | 'SponsorCollection' | 'StopSponsoringCollection' | 'SponsorContract' | 'StopSponsoringContract' | 'PayoutStakers';3018 }30193020 /** @name PalletForeignAssetsModuleCall (318) */3021 interface PalletForeignAssetsModuleCall extends Enum {3022 readonly isRegisterForeignAsset: boolean;3023 readonly asRegisterForeignAsset: {3024 readonly owner: AccountId32;3025 readonly location: XcmVersionedMultiLocation;3026 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3027 } & Struct;3028 readonly isUpdateForeignAsset: boolean;3029 readonly asUpdateForeignAsset: {3030 readonly foreignAssetId: u32;3031 readonly location: XcmVersionedMultiLocation;3032 readonly metadata: PalletForeignAssetsModuleAssetMetadata;3033 } & Struct;3034 readonly type: 'RegisterForeignAsset' | 'UpdateForeignAsset';3035 }30363037 /** @name PalletEvmCall (319) */3038 interface PalletEvmCall extends Enum {3039 readonly isWithdraw: boolean;3040 readonly asWithdraw: {3041 readonly address: H160;3042 readonly value: u128;3043 } & Struct;3044 readonly isCall: boolean;3045 readonly asCall: {3046 readonly source: H160;3047 readonly target: H160;3048 readonly input: Bytes;3049 readonly value: U256;3050 readonly gasLimit: u64;3051 readonly maxFeePerGas: U256;3052 readonly maxPriorityFeePerGas: Option<U256>;3053 readonly nonce: Option<U256>;3054 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3055 } & Struct;3056 readonly isCreate: boolean;3057 readonly asCreate: {3058 readonly source: H160;3059 readonly init: Bytes;3060 readonly value: U256;3061 readonly gasLimit: u64;3062 readonly maxFeePerGas: U256;3063 readonly maxPriorityFeePerGas: Option<U256>;3064 readonly nonce: Option<U256>;3065 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3066 } & Struct;3067 readonly isCreate2: boolean;3068 readonly asCreate2: {3069 readonly source: H160;3070 readonly init: Bytes;3071 readonly salt: H256;3072 readonly value: U256;3073 readonly gasLimit: u64;3074 readonly maxFeePerGas: U256;3075 readonly maxPriorityFeePerGas: Option<U256>;3076 readonly nonce: Option<U256>;3077 readonly accessList: Vec<ITuple<[H160, Vec<H256>]>>;3078 } & Struct;3079 readonly type: 'Withdraw' | 'Call' | 'Create' | 'Create2';3080 }30813082 /** @name PalletEthereumCall (325) */3083 interface PalletEthereumCall extends Enum {3084 readonly isTransact: boolean;3085 readonly asTransact: {3086 readonly transaction: EthereumTransactionTransactionV2;3087 } & Struct;3088 readonly type: 'Transact';3089 }30903091 /** @name EthereumTransactionTransactionV2 (326) */3092 interface EthereumTransactionTransactionV2 extends Enum {3093 readonly isLegacy: boolean;3094 readonly asLegacy: EthereumTransactionLegacyTransaction;3095 readonly isEip2930: boolean;3096 readonly asEip2930: EthereumTransactionEip2930Transaction;3097 readonly isEip1559: boolean;3098 readonly asEip1559: EthereumTransactionEip1559Transaction;3099 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3100 }31013102 /** @name EthereumTransactionLegacyTransaction (327) */3103 interface EthereumTransactionLegacyTransaction extends Struct {3104 readonly nonce: U256;3105 readonly gasPrice: U256;3106 readonly gasLimit: U256;3107 readonly action: EthereumTransactionTransactionAction;3108 readonly value: U256;3109 readonly input: Bytes;3110 readonly signature: EthereumTransactionTransactionSignature;3111 }31123113 /** @name EthereumTransactionTransactionAction (328) */3114 interface EthereumTransactionTransactionAction extends Enum {3115 readonly isCall: boolean;3116 readonly asCall: H160;3117 readonly isCreate: boolean;3118 readonly type: 'Call' | 'Create';3119 }31203121 /** @name EthereumTransactionTransactionSignature (329) */3122 interface EthereumTransactionTransactionSignature extends Struct {3123 readonly v: u64;3124 readonly r: H256;3125 readonly s: H256;3126 }31273128 /** @name EthereumTransactionEip2930Transaction (331) */3129 interface EthereumTransactionEip2930Transaction extends Struct {3130 readonly chainId: u64;3131 readonly nonce: U256;3132 readonly gasPrice: U256;3133 readonly gasLimit: U256;3134 readonly action: EthereumTransactionTransactionAction;3135 readonly value: U256;3136 readonly input: Bytes;3137 readonly accessList: Vec<EthereumTransactionAccessListItem>;3138 readonly oddYParity: bool;3139 readonly r: H256;3140 readonly s: H256;3141 }31423143 /** @name EthereumTransactionAccessListItem (333) */3144 interface EthereumTransactionAccessListItem extends Struct {3145 readonly address: H160;3146 readonly storageKeys: Vec<H256>;3147 }31483149 /** @name EthereumTransactionEip1559Transaction (334) */3150 interface EthereumTransactionEip1559Transaction extends Struct {3151 readonly chainId: u64;3152 readonly nonce: U256;3153 readonly maxPriorityFeePerGas: U256;3154 readonly maxFeePerGas: U256;3155 readonly gasLimit: U256;3156 readonly action: EthereumTransactionTransactionAction;3157 readonly value: U256;3158 readonly input: Bytes;3159 readonly accessList: Vec<EthereumTransactionAccessListItem>;3160 readonly oddYParity: bool;3161 readonly r: H256;3162 readonly s: H256;3163 }31643165 /** @name PalletEvmMigrationCall (335) */3166 interface PalletEvmMigrationCall extends Enum {3167 readonly isBegin: boolean;3168 readonly asBegin: {3169 readonly address: H160;3170 } & Struct;3171 readonly isSetData: boolean;3172 readonly asSetData: {3173 readonly address: H160;3174 readonly data: Vec<ITuple<[H256, H256]>>;3175 } & Struct;3176 readonly isFinish: boolean;3177 readonly asFinish: {3178 readonly address: H160;3179 readonly code: Bytes;3180 } & Struct;3181 readonly isInsertEthLogs: boolean;3182 readonly asInsertEthLogs: {3183 readonly logs: Vec<EthereumLog>;3184 } & Struct;3185 readonly isInsertEvents: boolean;3186 readonly asInsertEvents: {3187 readonly events: Vec<Bytes>;3188 } & Struct;3189 readonly type: 'Begin' | 'SetData' | 'Finish' | 'InsertEthLogs' | 'InsertEvents';3190 }31913192 /** @name PalletMaintenanceCall (339) */3193 interface PalletMaintenanceCall extends Enum {3194 readonly isEnable: boolean;3195 readonly isDisable: boolean;3196 readonly type: 'Enable' | 'Disable';3197 }31983199 /** @name PalletTestUtilsCall (340) */3200 interface PalletTestUtilsCall extends Enum {3201 readonly isEnable: boolean;3202 readonly isSetTestValue: boolean;3203 readonly asSetTestValue: {3204 readonly value: u32;3205 } & Struct;3206 readonly isSetTestValueAndRollback: boolean;3207 readonly asSetTestValueAndRollback: {3208 readonly value: u32;3209 } & Struct;3210 readonly isIncTestValue: boolean;3211 readonly isSelfCancelingInc: boolean;3212 readonly asSelfCancelingInc: {3213 readonly id: U8aFixed;3214 readonly maxTestValue: u32;3215 } & Struct;3216 readonly isJustTakeFee: boolean;3217 readonly isBatchAll: boolean;3218 readonly asBatchAll: {3219 readonly calls: Vec<Call>;3220 } & Struct;3221 readonly type: 'Enable' | 'SetTestValue' | 'SetTestValueAndRollback' | 'IncTestValue' | 'SelfCancelingInc' | 'JustTakeFee' | 'BatchAll';3222 }32233224 /** @name PalletSudoError (342) */3225 interface PalletSudoError extends Enum {3226 readonly isRequireSudo: boolean;3227 readonly type: 'RequireSudo';3228 }32293230 /** @name OrmlVestingModuleError (344) */3231 interface OrmlVestingModuleError extends Enum {3232 readonly isZeroVestingPeriod: boolean;3233 readonly isZeroVestingPeriodCount: boolean;3234 readonly isInsufficientBalanceToLock: boolean;3235 readonly isTooManyVestingSchedules: boolean;3236 readonly isAmountLow: boolean;3237 readonly isMaxVestingSchedulesExceeded: boolean;3238 readonly type: 'ZeroVestingPeriod' | 'ZeroVestingPeriodCount' | 'InsufficientBalanceToLock' | 'TooManyVestingSchedules' | 'AmountLow' | 'MaxVestingSchedulesExceeded';3239 }32403241 /** @name OrmlXtokensModuleError (345) */3242 interface OrmlXtokensModuleError extends Enum {3243 readonly isAssetHasNoReserve: boolean;3244 readonly isNotCrossChainTransfer: boolean;3245 readonly isInvalidDest: boolean;3246 readonly isNotCrossChainTransferableCurrency: boolean;3247 readonly isUnweighableMessage: boolean;3248 readonly isXcmExecutionFailed: boolean;3249 readonly isCannotReanchor: boolean;3250 readonly isInvalidAncestry: boolean;3251 readonly isInvalidAsset: boolean;3252 readonly isDestinationNotInvertible: boolean;3253 readonly isBadVersion: boolean;3254 readonly isDistinctReserveForAssetAndFee: boolean;3255 readonly isZeroFee: boolean;3256 readonly isZeroAmount: boolean;3257 readonly isTooManyAssetsBeingSent: boolean;3258 readonly isAssetIndexNonExistent: boolean;3259 readonly isFeeNotEnough: boolean;3260 readonly isNotSupportedMultiLocation: boolean;3261 readonly isMinXcmFeeNotDefined: boolean;3262 readonly type: 'AssetHasNoReserve' | 'NotCrossChainTransfer' | 'InvalidDest' | 'NotCrossChainTransferableCurrency' | 'UnweighableMessage' | 'XcmExecutionFailed' | 'CannotReanchor' | 'InvalidAncestry' | 'InvalidAsset' | 'DestinationNotInvertible' | 'BadVersion' | 'DistinctReserveForAssetAndFee' | 'ZeroFee' | 'ZeroAmount' | 'TooManyAssetsBeingSent' | 'AssetIndexNonExistent' | 'FeeNotEnough' | 'NotSupportedMultiLocation' | 'MinXcmFeeNotDefined';3263 }32643265 /** @name OrmlTokensBalanceLock (348) */3266 interface OrmlTokensBalanceLock extends Struct {3267 readonly id: U8aFixed;3268 readonly amount: u128;3269 }32703271 /** @name OrmlTokensAccountData (350) */3272 interface OrmlTokensAccountData extends Struct {3273 readonly free: u128;3274 readonly reserved: u128;3275 readonly frozen: u128;3276 }32773278 /** @name OrmlTokensReserveData (352) */3279 interface OrmlTokensReserveData extends Struct {3280 readonly id: Null;3281 readonly amount: u128;3282 }32833284 /** @name OrmlTokensModuleError (354) */3285 interface OrmlTokensModuleError extends Enum {3286 readonly isBalanceTooLow: boolean;3287 readonly isAmountIntoBalanceFailed: boolean;3288 readonly isLiquidityRestrictions: boolean;3289 readonly isMaxLocksExceeded: boolean;3290 readonly isKeepAlive: boolean;3291 readonly isExistentialDeposit: boolean;3292 readonly isDeadAccount: boolean;3293 readonly isTooManyReserves: boolean;3294 readonly type: 'BalanceTooLow' | 'AmountIntoBalanceFailed' | 'LiquidityRestrictions' | 'MaxLocksExceeded' | 'KeepAlive' | 'ExistentialDeposit' | 'DeadAccount' | 'TooManyReserves';3295 }32963297 /** @name CumulusPalletXcmpQueueInboundChannelDetails (356) */3298 interface CumulusPalletXcmpQueueInboundChannelDetails extends Struct {3299 readonly sender: u32;3300 readonly state: CumulusPalletXcmpQueueInboundState;3301 readonly messageMetadata: Vec<ITuple<[u32, PolkadotParachainPrimitivesXcmpMessageFormat]>>;3302 }33033304 /** @name CumulusPalletXcmpQueueInboundState (357) */3305 interface CumulusPalletXcmpQueueInboundState extends Enum {3306 readonly isOk: boolean;3307 readonly isSuspended: boolean;3308 readonly type: 'Ok' | 'Suspended';3309 }33103311 /** @name PolkadotParachainPrimitivesXcmpMessageFormat (360) */3312 interface PolkadotParachainPrimitivesXcmpMessageFormat extends Enum {3313 readonly isConcatenatedVersionedXcm: boolean;3314 readonly isConcatenatedEncodedBlob: boolean;3315 readonly isSignals: boolean;3316 readonly type: 'ConcatenatedVersionedXcm' | 'ConcatenatedEncodedBlob' | 'Signals';3317 }33183319 /** @name CumulusPalletXcmpQueueOutboundChannelDetails (363) */3320 interface CumulusPalletXcmpQueueOutboundChannelDetails extends Struct {3321 readonly recipient: u32;3322 readonly state: CumulusPalletXcmpQueueOutboundState;3323 readonly signalsExist: bool;3324 readonly firstIndex: u16;3325 readonly lastIndex: u16;3326 }33273328 /** @name CumulusPalletXcmpQueueOutboundState (364) */3329 interface CumulusPalletXcmpQueueOutboundState extends Enum {3330 readonly isOk: boolean;3331 readonly isSuspended: boolean;3332 readonly type: 'Ok' | 'Suspended';3333 }33343335 /** @name CumulusPalletXcmpQueueQueueConfigData (366) */3336 interface CumulusPalletXcmpQueueQueueConfigData extends Struct {3337 readonly suspendThreshold: u32;3338 readonly dropThreshold: u32;3339 readonly resumeThreshold: u32;3340 readonly thresholdWeight: SpWeightsWeightV2Weight;3341 readonly weightRestrictDecay: SpWeightsWeightV2Weight;3342 readonly xcmpMaxIndividualWeight: SpWeightsWeightV2Weight;3343 }33443345 /** @name CumulusPalletXcmpQueueError (368) */3346 interface CumulusPalletXcmpQueueError extends Enum {3347 readonly isFailedToSend: boolean;3348 readonly isBadXcmOrigin: boolean;3349 readonly isBadXcm: boolean;3350 readonly isBadOverweightIndex: boolean;3351 readonly isWeightOverLimit: boolean;3352 readonly type: 'FailedToSend' | 'BadXcmOrigin' | 'BadXcm' | 'BadOverweightIndex' | 'WeightOverLimit';3353 }33543355 /** @name PalletXcmError (369) */3356 interface PalletXcmError extends Enum {3357 readonly isUnreachable: boolean;3358 readonly isSendFailure: boolean;3359 readonly isFiltered: boolean;3360 readonly isUnweighableMessage: boolean;3361 readonly isDestinationNotInvertible: boolean;3362 readonly isEmpty: boolean;3363 readonly isCannotReanchor: boolean;3364 readonly isTooManyAssets: boolean;3365 readonly isInvalidOrigin: boolean;3366 readonly isBadVersion: boolean;3367 readonly isBadLocation: boolean;3368 readonly isNoSubscription: boolean;3369 readonly isAlreadySubscribed: boolean;3370 readonly type: 'Unreachable' | 'SendFailure' | 'Filtered' | 'UnweighableMessage' | 'DestinationNotInvertible' | 'Empty' | 'CannotReanchor' | 'TooManyAssets' | 'InvalidOrigin' | 'BadVersion' | 'BadLocation' | 'NoSubscription' | 'AlreadySubscribed';3371 }33723373 /** @name CumulusPalletXcmError (370) */3374 type CumulusPalletXcmError = Null;33753376 /** @name CumulusPalletDmpQueueConfigData (371) */3377 interface CumulusPalletDmpQueueConfigData extends Struct {3378 readonly maxIndividual: SpWeightsWeightV2Weight;3379 }33803381 /** @name CumulusPalletDmpQueuePageIndexData (372) */3382 interface CumulusPalletDmpQueuePageIndexData extends Struct {3383 readonly beginUsed: u32;3384 readonly endUsed: u32;3385 readonly overweightCount: u64;3386 }33873388 /** @name CumulusPalletDmpQueueError (375) */3389 interface CumulusPalletDmpQueueError extends Enum {3390 readonly isUnknown: boolean;3391 readonly isOverLimit: boolean;3392 readonly type: 'Unknown' | 'OverLimit';3393 }33943395 /** @name PalletUniqueError (379) */3396 interface PalletUniqueError extends Enum {3397 readonly isCollectionDecimalPointLimitExceeded: boolean;3398 readonly isEmptyArgument: boolean;3399 readonly isRepartitionCalledOnNonRefungibleCollection: boolean;3400 readonly type: 'CollectionDecimalPointLimitExceeded' | 'EmptyArgument' | 'RepartitionCalledOnNonRefungibleCollection';3401 }34023403 /** @name PalletUniqueSchedulerV2BlockAgenda (380) */3404 interface PalletUniqueSchedulerV2BlockAgenda extends Struct {3405 readonly agenda: Vec<Option<PalletUniqueSchedulerV2Scheduled>>;3406 readonly freePlaces: u32;3407 }34083409 /** @name PalletUniqueSchedulerV2Scheduled (383) */3410 interface PalletUniqueSchedulerV2Scheduled extends Struct {3411 readonly maybeId: Option<U8aFixed>;3412 readonly priority: u8;3413 readonly call: PalletUniqueSchedulerV2ScheduledCall;3414 readonly maybePeriodic: Option<ITuple<[u32, u32]>>;3415 readonly origin: OpalRuntimeOriginCaller;3416 }34173418 /** @name PalletUniqueSchedulerV2ScheduledCall (384) */3419 interface PalletUniqueSchedulerV2ScheduledCall extends Enum {3420 readonly isInline: boolean;3421 readonly asInline: Bytes;3422 readonly isPreimageLookup: boolean;3423 readonly asPreimageLookup: {3424 readonly hash_: H256;3425 readonly unboundedLen: u32;3426 } & Struct;3427 readonly type: 'Inline' | 'PreimageLookup';3428 }34293430 /** @name OpalRuntimeOriginCaller (386) */3431 interface OpalRuntimeOriginCaller extends Enum {3432 readonly isSystem: boolean;3433 readonly asSystem: FrameSupportDispatchRawOrigin;3434 readonly isVoid: boolean;3435 readonly isPolkadotXcm: boolean;3436 readonly asPolkadotXcm: PalletXcmOrigin;3437 readonly isCumulusXcm: boolean;3438 readonly asCumulusXcm: CumulusPalletXcmOrigin;3439 readonly isEthereum: boolean;3440 readonly asEthereum: PalletEthereumRawOrigin;3441 readonly type: 'System' | 'Void' | 'PolkadotXcm' | 'CumulusXcm' | 'Ethereum';3442 }34433444 /** @name FrameSupportDispatchRawOrigin (387) */3445 interface FrameSupportDispatchRawOrigin extends Enum {3446 readonly isRoot: boolean;3447 readonly isSigned: boolean;3448 readonly asSigned: AccountId32;3449 readonly isNone: boolean;3450 readonly type: 'Root' | 'Signed' | 'None';3451 }34523453 /** @name PalletXcmOrigin (388) */3454 interface PalletXcmOrigin extends Enum {3455 readonly isXcm: boolean;3456 readonly asXcm: XcmV1MultiLocation;3457 readonly isResponse: boolean;3458 readonly asResponse: XcmV1MultiLocation;3459 readonly type: 'Xcm' | 'Response';3460 }34613462 /** @name CumulusPalletXcmOrigin (389) */3463 interface CumulusPalletXcmOrigin extends Enum {3464 readonly isRelay: boolean;3465 readonly isSiblingParachain: boolean;3466 readonly asSiblingParachain: u32;3467 readonly type: 'Relay' | 'SiblingParachain';3468 }34693470 /** @name PalletEthereumRawOrigin (390) */3471 interface PalletEthereumRawOrigin extends Enum {3472 readonly isEthereumTransaction: boolean;3473 readonly asEthereumTransaction: H160;3474 readonly type: 'EthereumTransaction';3475 }34763477 /** @name SpCoreVoid (391) */3478 type SpCoreVoid = Null;34793480 /** @name PalletUniqueSchedulerV2Error (393) */3481 interface PalletUniqueSchedulerV2Error extends Enum {3482 readonly isFailedToSchedule: boolean;3483 readonly isAgendaIsExhausted: boolean;3484 readonly isScheduledCallCorrupted: boolean;3485 readonly isPreimageNotFound: boolean;3486 readonly isTooBigScheduledCall: boolean;3487 readonly isNotFound: boolean;3488 readonly isTargetBlockNumberInPast: boolean;3489 readonly isNamed: boolean;3490 readonly type: 'FailedToSchedule' | 'AgendaIsExhausted' | 'ScheduledCallCorrupted' | 'PreimageNotFound' | 'TooBigScheduledCall' | 'NotFound' | 'TargetBlockNumberInPast' | 'Named';3491 }34923493 /** @name UpDataStructsCollection (394) */3494 interface UpDataStructsCollection extends Struct {3495 readonly owner: AccountId32;3496 readonly mode: UpDataStructsCollectionMode;3497 readonly name: Vec<u16>;3498 readonly description: Vec<u16>;3499 readonly tokenPrefix: Bytes;3500 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3501 readonly limits: UpDataStructsCollectionLimits;3502 readonly permissions: UpDataStructsCollectionPermissions;3503 readonly flags: U8aFixed;3504 }35053506 /** @name UpDataStructsSponsorshipStateAccountId32 (395) */3507 interface UpDataStructsSponsorshipStateAccountId32 extends Enum {3508 readonly isDisabled: boolean;3509 readonly isUnconfirmed: boolean;3510 readonly asUnconfirmed: AccountId32;3511 readonly isConfirmed: boolean;3512 readonly asConfirmed: AccountId32;3513 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3514 }35153516 /** @name UpDataStructsProperties (397) */3517 interface UpDataStructsProperties extends Struct {3518 readonly map: UpDataStructsPropertiesMapBoundedVec;3519 readonly consumedSpace: u32;3520 readonly spaceLimit: u32;3521 }35223523 /** @name UpDataStructsPropertiesMapBoundedVec (398) */3524 interface UpDataStructsPropertiesMapBoundedVec extends BTreeMap<Bytes, Bytes> {}35253526 /** @name UpDataStructsPropertiesMapPropertyPermission (403) */3527 interface UpDataStructsPropertiesMapPropertyPermission extends BTreeMap<Bytes, UpDataStructsPropertyPermission> {}35283529 /** @name UpDataStructsCollectionStats (410) */3530 interface UpDataStructsCollectionStats extends Struct {3531 readonly created: u32;3532 readonly destroyed: u32;3533 readonly alive: u32;3534 }35353536 /** @name UpDataStructsTokenChild (411) */3537 interface UpDataStructsTokenChild extends Struct {3538 readonly token: u32;3539 readonly collection: u32;3540 }35413542 /** @name PhantomTypeUpDataStructs (412) */3543 interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}35443545 /** @name UpDataStructsTokenData (414) */3546 interface UpDataStructsTokenData extends Struct {3547 readonly properties: Vec<UpDataStructsProperty>;3548 readonly owner: Option<PalletEvmAccountBasicCrossAccountIdRepr>;3549 readonly pieces: u128;3550 }35513552 /** @name UpDataStructsRpcCollection (416) */3553 interface UpDataStructsRpcCollection extends Struct {3554 readonly owner: AccountId32;3555 readonly mode: UpDataStructsCollectionMode;3556 readonly name: Vec<u16>;3557 readonly description: Vec<u16>;3558 readonly tokenPrefix: Bytes;3559 readonly sponsorship: UpDataStructsSponsorshipStateAccountId32;3560 readonly limits: UpDataStructsCollectionLimits;3561 readonly permissions: UpDataStructsCollectionPermissions;3562 readonly tokenPropertyPermissions: Vec<UpDataStructsPropertyKeyPermission>;3563 readonly properties: Vec<UpDataStructsProperty>;3564 readonly readOnly: bool;3565 readonly flags: UpDataStructsRpcCollectionFlags;3566 }35673568 /** @name UpDataStructsRpcCollectionFlags (417) */3569 interface UpDataStructsRpcCollectionFlags extends Struct {3570 readonly foreign: bool;3571 readonly erc721metadata: bool;3572 }35733574 /** @name RmrkTraitsCollectionCollectionInfo (418) */3575 interface RmrkTraitsCollectionCollectionInfo extends Struct {3576 readonly issuer: AccountId32;3577 readonly metadata: Bytes;3578 readonly max: Option<u32>;3579 readonly symbol: Bytes;3580 readonly nftsCount: u32;3581 }35823583 /** @name RmrkTraitsNftNftInfo (419) */3584 interface RmrkTraitsNftNftInfo extends Struct {3585 readonly owner: RmrkTraitsNftAccountIdOrCollectionNftTuple;3586 readonly royalty: Option<RmrkTraitsNftRoyaltyInfo>;3587 readonly metadata: Bytes;3588 readonly equipped: bool;3589 readonly pending: bool;3590 }35913592 /** @name RmrkTraitsNftRoyaltyInfo (421) */3593 interface RmrkTraitsNftRoyaltyInfo extends Struct {3594 readonly recipient: AccountId32;3595 readonly amount: Permill;3596 }35973598 /** @name RmrkTraitsResourceResourceInfo (422) */3599 interface RmrkTraitsResourceResourceInfo extends Struct {3600 readonly id: u32;3601 readonly resource: RmrkTraitsResourceResourceTypes;3602 readonly pending: bool;3603 readonly pendingRemoval: bool;3604 }36053606 /** @name RmrkTraitsPropertyPropertyInfo (423) */3607 interface RmrkTraitsPropertyPropertyInfo extends Struct {3608 readonly key: Bytes;3609 readonly value: Bytes;3610 }36113612 /** @name RmrkTraitsBaseBaseInfo (424) */3613 interface RmrkTraitsBaseBaseInfo extends Struct {3614 readonly issuer: AccountId32;3615 readonly baseType: Bytes;3616 readonly symbol: Bytes;3617 }36183619 /** @name RmrkTraitsNftNftChild (425) */3620 interface RmrkTraitsNftNftChild extends Struct {3621 readonly collectionId: u32;3622 readonly nftId: u32;3623 }36243625 /** @name PalletCommonError (427) */3626 interface PalletCommonError extends Enum {3627 readonly isCollectionNotFound: boolean;3628 readonly isMustBeTokenOwner: boolean;3629 readonly isNoPermission: boolean;3630 readonly isCantDestroyNotEmptyCollection: boolean;3631 readonly isPublicMintingNotAllowed: boolean;3632 readonly isAddressNotInAllowlist: boolean;3633 readonly isCollectionNameLimitExceeded: boolean;3634 readonly isCollectionDescriptionLimitExceeded: boolean;3635 readonly isCollectionTokenPrefixLimitExceeded: boolean;3636 readonly isTotalCollectionsLimitExceeded: boolean;3637 readonly isCollectionAdminCountExceeded: boolean;3638 readonly isCollectionLimitBoundsExceeded: boolean;3639 readonly isOwnerPermissionsCantBeReverted: boolean;3640 readonly isTransferNotAllowed: boolean;3641 readonly isAccountTokenLimitExceeded: boolean;3642 readonly isCollectionTokenLimitExceeded: boolean;3643 readonly isMetadataFlagFrozen: boolean;3644 readonly isTokenNotFound: boolean;3645 readonly isTokenValueTooLow: boolean;3646 readonly isApprovedValueTooLow: boolean;3647 readonly isCantApproveMoreThanOwned: boolean;3648 readonly isAddressIsZero: boolean;3649 readonly isUnsupportedOperation: boolean;3650 readonly isNotSufficientFounds: boolean;3651 readonly isUserIsNotAllowedToNest: boolean;3652 readonly isSourceCollectionIsNotAllowedToNest: boolean;3653 readonly isCollectionFieldSizeExceeded: boolean;3654 readonly isNoSpaceForProperty: boolean;3655 readonly isPropertyLimitReached: boolean;3656 readonly isPropertyKeyIsTooLong: boolean;3657 readonly isInvalidCharacterInPropertyKey: boolean;3658 readonly isEmptyPropertyKey: boolean;3659 readonly isCollectionIsExternal: boolean;3660 readonly isCollectionIsInternal: boolean;3661 readonly isConfirmSponsorshipFail: boolean;3662 readonly isUserIsNotCollectionAdmin: 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';3664 }36653666 /** @name PalletFungibleError (429) */3667 interface PalletFungibleError extends Enum {3668 readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;3669 readonly isFungibleItemsHaveNoId: boolean;3670 readonly isFungibleItemsDontHaveData: boolean;3671 readonly isFungibleDisallowsNesting: boolean;3672 readonly isSettingPropertiesNotAllowed: boolean;3673 readonly isSettingAllowanceForAllNotAllowed: boolean;3674 readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed';3675 }36763677 /** @name PalletRefungibleItemData (430) */3678 interface PalletRefungibleItemData extends Struct {3679 readonly constData: Bytes;3680 }36813682 /** @name PalletRefungibleError (435) */3683 interface PalletRefungibleError extends Enum {3684 readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;3685 readonly isWrongRefungiblePieces: boolean;3686 readonly isRepartitionWhileNotOwningAllPieces: boolean;3687 readonly isRefungibleDisallowsNesting: boolean;3688 readonly isSettingPropertiesNotAllowed: boolean;3689 readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';3690 }36913692 /** @name PalletNonfungibleItemData (436) */3693 interface PalletNonfungibleItemData extends Struct {3694 readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;3695 }36963697 /** @name UpDataStructsPropertyScope (438) */3698 interface UpDataStructsPropertyScope extends Enum {3699 readonly isNone: boolean;3700 readonly isRmrk: boolean;3701 readonly type: 'None' | 'Rmrk';3702 }37033704 /** @name PalletNonfungibleError (440) */3705 interface PalletNonfungibleError extends Enum {3706 readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;3707 readonly isNonfungibleItemsHaveNoAmount: boolean;3708 readonly isCantBurnNftWithChildren: boolean;3709 readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';3710 }37113712 /** @name PalletStructureError (441) */3713 interface PalletStructureError extends Enum {3714 readonly isOuroborosDetected: boolean;3715 readonly isDepthLimit: boolean;3716 readonly isBreadthLimit: boolean;3717 readonly isTokenNotFound: boolean;3718 readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';3719 }37203721 /** @name PalletRmrkCoreError (442) */3722 interface PalletRmrkCoreError extends Enum {3723 readonly isCorruptedCollectionType: boolean;3724 readonly isRmrkPropertyKeyIsTooLong: boolean;3725 readonly isRmrkPropertyValueIsTooLong: boolean;3726 readonly isRmrkPropertyIsNotFound: boolean;3727 readonly isUnableToDecodeRmrkData: boolean;3728 readonly isCollectionNotEmpty: boolean;3729 readonly isNoAvailableCollectionId: boolean;3730 readonly isNoAvailableNftId: boolean;3731 readonly isCollectionUnknown: boolean;3732 readonly isNoPermission: boolean;3733 readonly isNonTransferable: boolean;3734 readonly isCollectionFullOrLocked: boolean;3735 readonly isResourceDoesntExist: boolean;3736 readonly isCannotSendToDescendentOrSelf: boolean;3737 readonly isCannotAcceptNonOwnedNft: boolean;3738 readonly isCannotRejectNonOwnedNft: boolean;3739 readonly isCannotRejectNonPendingNft: boolean;3740 readonly isResourceNotPending: boolean;3741 readonly isNoAvailableResourceId: boolean;3742 readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';3743 }37443745 /** @name PalletRmrkEquipError (444) */3746 interface PalletRmrkEquipError extends Enum {3747 readonly isPermissionError: boolean;3748 readonly isNoAvailableBaseId: boolean;3749 readonly isNoAvailablePartId: boolean;3750 readonly isBaseDoesntExist: boolean;3751 readonly isNeedsDefaultThemeFirst: boolean;3752 readonly isPartDoesntExist: boolean;3753 readonly isNoEquippableOnFixedPart: boolean;3754 readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';3755 }37563757 /** @name PalletAppPromotionError (450) */3758 interface PalletAppPromotionError extends Enum {3759 readonly isAdminNotSet: boolean;3760 readonly isNoPermission: boolean;3761 readonly isNotSufficientFunds: boolean;3762 readonly isPendingForBlockOverflow: boolean;3763 readonly isSponsorNotSet: boolean;3764 readonly isIncorrectLockedBalanceOperation: boolean;3765 readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';3766 }37673768 /** @name PalletForeignAssetsModuleError (451) */3769 interface PalletForeignAssetsModuleError extends Enum {3770 readonly isBadLocation: boolean;3771 readonly isMultiLocationExisted: boolean;3772 readonly isAssetIdNotExists: boolean;3773 readonly isAssetIdExisted: boolean;3774 readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';3775 }37763777 /** @name PalletEvmError (453) */3778 interface PalletEvmError extends Enum {3779 readonly isBalanceLow: boolean;3780 readonly isFeeOverflow: boolean;3781 readonly isPaymentOverflow: boolean;3782 readonly isWithdrawFailed: boolean;3783 readonly isGasPriceTooLow: boolean;3784 readonly isInvalidNonce: boolean;3785 readonly isGasLimitTooLow: boolean;3786 readonly isGasLimitTooHigh: boolean;3787 readonly isUndefined: boolean;3788 readonly isReentrancy: boolean;3789 readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy';3790 }37913792 /** @name FpRpcTransactionStatus (456) */3793 interface FpRpcTransactionStatus extends Struct {3794 readonly transactionHash: H256;3795 readonly transactionIndex: u32;3796 readonly from: H160;3797 readonly to: Option<H160>;3798 readonly contractAddress: Option<H160>;3799 readonly logs: Vec<EthereumLog>;3800 readonly logsBloom: EthbloomBloom;3801 }38023803 /** @name EthbloomBloom (458) */3804 interface EthbloomBloom extends U8aFixed {}38053806 /** @name EthereumReceiptReceiptV3 (460) */3807 interface EthereumReceiptReceiptV3 extends Enum {3808 readonly isLegacy: boolean;3809 readonly asLegacy: EthereumReceiptEip658ReceiptData;3810 readonly isEip2930: boolean;3811 readonly asEip2930: EthereumReceiptEip658ReceiptData;3812 readonly isEip1559: boolean;3813 readonly asEip1559: EthereumReceiptEip658ReceiptData;3814 readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';3815 }38163817 /** @name EthereumReceiptEip658ReceiptData (461) */3818 interface EthereumReceiptEip658ReceiptData extends Struct {3819 readonly statusCode: u8;3820 readonly usedGas: U256;3821 readonly logsBloom: EthbloomBloom;3822 readonly logs: Vec<EthereumLog>;3823 }38243825 /** @name EthereumBlock (462) */3826 interface EthereumBlock extends Struct {3827 readonly header: EthereumHeader;3828 readonly transactions: Vec<EthereumTransactionTransactionV2>;3829 readonly ommers: Vec<EthereumHeader>;3830 }38313832 /** @name EthereumHeader (463) */3833 interface EthereumHeader extends Struct {3834 readonly parentHash: H256;3835 readonly ommersHash: H256;3836 readonly beneficiary: H160;3837 readonly stateRoot: H256;3838 readonly transactionsRoot: H256;3839 readonly receiptsRoot: H256;3840 readonly logsBloom: EthbloomBloom;3841 readonly difficulty: U256;3842 readonly number: U256;3843 readonly gasLimit: U256;3844 readonly gasUsed: U256;3845 readonly timestamp: u64;3846 readonly extraData: Bytes;3847 readonly mixHash: H256;3848 readonly nonce: EthereumTypesHashH64;3849 }38503851 /** @name EthereumTypesHashH64 (464) */3852 interface EthereumTypesHashH64 extends U8aFixed {}38533854 /** @name PalletEthereumError (469) */3855 interface PalletEthereumError extends Enum {3856 readonly isInvalidSignature: boolean;3857 readonly isPreLogExists: boolean;3858 readonly type: 'InvalidSignature' | 'PreLogExists';3859 }38603861 /** @name PalletEvmCoderSubstrateError (470) */3862 interface PalletEvmCoderSubstrateError extends Enum {3863 readonly isOutOfGas: boolean;3864 readonly isOutOfFund: boolean;3865 readonly type: 'OutOfGas' | 'OutOfFund';3866 }38673868 /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (471) */3869 interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {3870 readonly isDisabled: boolean;3871 readonly isUnconfirmed: boolean;3872 readonly asUnconfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3873 readonly isConfirmed: boolean;3874 readonly asConfirmed: PalletEvmAccountBasicCrossAccountIdRepr;3875 readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';3876 }38773878 /** @name PalletEvmContractHelpersSponsoringModeT (472) */3879 interface PalletEvmContractHelpersSponsoringModeT extends Enum {3880 readonly isDisabled: boolean;3881 readonly isAllowlisted: boolean;3882 readonly isGenerous: boolean;3883 readonly type: 'Disabled' | 'Allowlisted' | 'Generous';3884 }38853886 /** @name PalletEvmContractHelpersError (478) */3887 interface PalletEvmContractHelpersError extends Enum {3888 readonly isNoPermission: boolean;3889 readonly isNoPendingSponsor: boolean;3890 readonly isTooManyMethodsHaveSponsoredLimit: boolean;3891 readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';3892 }38933894 /** @name PalletEvmMigrationError (479) */3895 interface PalletEvmMigrationError extends Enum {3896 readonly isAccountNotEmpty: boolean;3897 readonly isAccountIsNotMigrating: boolean;3898 readonly isBadEvent: boolean;3899 readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';3900 }39013902 /** @name PalletMaintenanceError (480) */3903 type PalletMaintenanceError = Null;39043905 /** @name PalletTestUtilsError (481) */3906 interface PalletTestUtilsError extends Enum {3907 readonly isTestPalletDisabled: boolean;3908 readonly isTriggerRollback: boolean;3909 readonly type: 'TestPalletDisabled' | 'TriggerRollback';3910 }39113912 /** @name SpRuntimeMultiSignature (483) */3913 interface SpRuntimeMultiSignature extends Enum {3914 readonly isEd25519: boolean;3915 readonly asEd25519: SpCoreEd25519Signature;3916 readonly isSr25519: boolean;3917 readonly asSr25519: SpCoreSr25519Signature;3918 readonly isEcdsa: boolean;3919 readonly asEcdsa: SpCoreEcdsaSignature;3920 readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';3921 }39223923 /** @name SpCoreEd25519Signature (484) */3924 interface SpCoreEd25519Signature extends U8aFixed {}39253926 /** @name SpCoreSr25519Signature (486) */3927 interface SpCoreSr25519Signature extends U8aFixed {}39283929 /** @name SpCoreEcdsaSignature (487) */3930 interface SpCoreEcdsaSignature extends U8aFixed {}39313932 /** @name FrameSystemExtensionsCheckSpecVersion (490) */3933 type FrameSystemExtensionsCheckSpecVersion = Null;39343935 /** @name FrameSystemExtensionsCheckTxVersion (491) */3936 type FrameSystemExtensionsCheckTxVersion = Null;39373938 /** @name FrameSystemExtensionsCheckGenesis (492) */3939 type FrameSystemExtensionsCheckGenesis = Null;39403941 /** @name FrameSystemExtensionsCheckNonce (495) */3942 interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}39433944 /** @name FrameSystemExtensionsCheckWeight (496) */3945 type FrameSystemExtensionsCheckWeight = Null;39463947 /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (497) */3948 type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;39493950 /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (498) */3951 interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}39523953 /** @name OpalRuntimeRuntime (499) */3954 type OpalRuntimeRuntime = Null;39553956 /** @name PalletEthereumFakeTransactionFinalizer (500) */3957 type PalletEthereumFakeTransactionFinalizer = Null;39583959} // declare module